diff --git a/Assets/ChasePowerUp.cs b/Assets/ChasePowerUp.cs new file mode 100644 index 0000000..7d43475 --- /dev/null +++ b/Assets/ChasePowerUp.cs @@ -0,0 +1,37 @@ +using System.Collections; +using UnityEngine; + +public class ChasePowerUp : MonoBehaviour +{ + public float speedBoostAmount = 3f; // How much to boost the speed + public float duration = 5f; // Duration of the speed boost + + private void OnTriggerEnter(Collider other) + { + if (other.CompareTag("Player")) + { + ChasePlayerController player = other.GetComponent(); + if (player != null) + { + StartCoroutine(ApplySpeedBoost(player)); + } + + // Optionally destroy the power-up after pickup + Destroy(gameObject); + } + } + + private IEnumerator ApplySpeedBoost(ChasePlayerController player) + { + float originalSpeed = player.moveSpeed; + player.moveSpeed -= speedBoostAmount; + + // Optional: trigger visual/audio effect here + Debug.Log("Speed Boost Activated!"); + + yield return new WaitForSeconds(duration); + + player.moveSpeed = originalSpeed; + Debug.Log("Speed Boost Ended"); + } +} diff --git a/Assets/ChasePowerUp.cs.meta b/Assets/ChasePowerUp.cs.meta new file mode 100644 index 0000000..506b707 --- /dev/null +++ b/Assets/ChasePowerUp.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4ca4301ea06e47b429d3186c76cd25e9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ChaseTheWolf/Fbx/Chasing The Wolf 1.fbx b/Assets/ChaseTheWolf/Fbx/Chasing The Wolf 1.fbx new file mode 100644 index 0000000..fa029f0 Binary files /dev/null and b/Assets/ChaseTheWolf/Fbx/Chasing The Wolf 1.fbx differ diff --git a/Assets/ChaseTheWolf/Fbx/Chasing The Wolf 1.fbx.meta b/Assets/ChaseTheWolf/Fbx/Chasing The Wolf 1.fbx.meta new file mode 100644 index 0000000..7fca5ae --- /dev/null +++ b/Assets/ChaseTheWolf/Fbx/Chasing The Wolf 1.fbx.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: 672aa84817b45ba4aa212666c86e0d4a +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jump (1) (1).fbx b/Assets/Jump (1) (1).fbx new file mode 100644 index 0000000..69824d8 Binary files /dev/null and b/Assets/Jump (1) (1).fbx differ diff --git a/Assets/Jump (1) (1).fbx.meta b/Assets/Jump (1) (1).fbx.meta new file mode 100644 index 0000000..8ed0c91 --- /dev/null +++ b/Assets/Jump (1) (1).fbx.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: ce73201a2d24a0449b302656efafa988 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Folder.meta b/Assets/New Folder.meta new file mode 100644 index 0000000..f5c823e --- /dev/null +++ b/Assets/New Folder.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: da068b799a1ef32479bec89ec22d4c31 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Folder/Jump (1) (1).fbx b/Assets/New Folder/Jump (1) (1).fbx new file mode 100644 index 0000000..69824d8 Binary files /dev/null and b/Assets/New Folder/Jump (1) (1).fbx differ diff --git a/Assets/New Folder/Jump (1) (1).fbx.meta b/Assets/New Folder/Jump (1) (1).fbx.meta new file mode 100644 index 0000000..95191b4 --- /dev/null +++ b/Assets/New Folder/Jump (1) (1).fbx.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: c6423205acb300a4da51d4d442879d2d +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Folder/Roll Jump-2.fbx b/Assets/New Folder/Roll Jump-2.fbx new file mode 100644 index 0000000..93ba2c7 Binary files /dev/null and b/Assets/New Folder/Roll Jump-2.fbx differ diff --git a/Assets/New Folder/Roll Jump-2.fbx.meta b/Assets/New Folder/Roll Jump-2.fbx.meta new file mode 100644 index 0000000..2f498bf --- /dev/null +++ b/Assets/New Folder/Roll Jump-2.fbx.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: 6657f3c6fd0e89a44a299305c6a141f3 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Folder/Run_name_fix (1) (1) (1) (1).fbx b/Assets/New Folder/Run_name_fix (1) (1) (1) (1).fbx new file mode 100644 index 0000000..23ecd31 Binary files /dev/null and b/Assets/New Folder/Run_name_fix (1) (1) (1) (1).fbx differ diff --git a/Assets/New Folder/Run_name_fix (1) (1) (1) (1).fbx.meta b/Assets/New Folder/Run_name_fix (1) (1) (1) (1).fbx.meta new file mode 100644 index 0000000..9d6ac8a --- /dev/null +++ b/Assets/New Folder/Run_name_fix (1) (1) (1) (1).fbx.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: aeb60cdfc99bf92448b7156957fff8ba +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Folder/Run_name_fix (1) (1) (1).fbx b/Assets/New Folder/Run_name_fix (1) (1) (1).fbx new file mode 100644 index 0000000..23ecd31 Binary files /dev/null and b/Assets/New Folder/Run_name_fix (1) (1) (1).fbx differ diff --git a/Assets/New Folder/Run_name_fix (1) (1) (1).fbx.meta b/Assets/New Folder/Run_name_fix (1) (1) (1).fbx.meta new file mode 100644 index 0000000..96bfc37 --- /dev/null +++ b/Assets/New Folder/Run_name_fix (1) (1) (1).fbx.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: a81a8bb1c6790e4499a025dd64d1014e +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Folder/Zibu_Blueberry_Blast (1).fbx b/Assets/New Folder/Zibu_Blueberry_Blast (1).fbx new file mode 100644 index 0000000..0c25b3e Binary files /dev/null and b/Assets/New Folder/Zibu_Blueberry_Blast (1).fbx differ diff --git a/Assets/New Folder/Zibu_Blueberry_Blast (1).fbx.meta b/Assets/New Folder/Zibu_Blueberry_Blast (1).fbx.meta new file mode 100644 index 0000000..4a9f99b --- /dev/null +++ b/Assets/New Folder/Zibu_Blueberry_Blast (1).fbx.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: 1e5bb064722ab8449bd3947e14d2b3c5 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Folder/Zibu_Shu_Charge.fbx b/Assets/New Folder/Zibu_Shu_Charge.fbx new file mode 100644 index 0000000..6da88a5 Binary files /dev/null and b/Assets/New Folder/Zibu_Shu_Charge.fbx differ diff --git a/Assets/New Folder/Zibu_Shu_Charge.fbx.meta b/Assets/New Folder/Zibu_Shu_Charge.fbx.meta new file mode 100644 index 0000000..a41345e --- /dev/null +++ b/Assets/New Folder/Zibu_Shu_Charge.fbx.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: 864d778a9599e2e4cab1520009f3b91e +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/New Physic Material.physicMaterial b/Assets/New Physic Material.physicMaterial index a9d2d22..a4654e9 100644 --- a/Assets/New Physic Material.physicMaterial +++ b/Assets/New Physic Material.physicMaterial @@ -9,6 +9,6 @@ PhysicMaterial: m_Name: New Physic Material dynamicFriction: 0 staticFriction: 0 - bounciness: 0 + bounciness: 1 frictionCombine: 2 bounceCombine: 2 diff --git a/Assets/Prefabs/BeamLine.prefab b/Assets/Prefabs/BeamLine.prefab new file mode 100644 index 0000000..01eef51 --- /dev/null +++ b/Assets/Prefabs/BeamLine.prefab @@ -0,0 +1,159 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6110383875702633374 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8604618113212649461} + - component: {fileID: 440150361550742133} + - component: {fileID: 4709206691219953776} + m_Layer: 0 + m_Name: BeamLine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8604618113212649461 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6110383875702633374} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.045648552, z: 0.33735037} + m_LocalScale: {x: 5.9825163, y: 5.9825163, z: 5.9825163} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &440150361550742133 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6110383875702633374} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fb66dc0e33e58d7439c1db6e435dcc9e, type: 3} + m_Name: + m_EditorClassIdentifier: + maxDistance: 6.2 + collisionMask: + serializedVersion: 2 + m_Bits: 4294967295 + laserColor: {r: 1, g: 0, b: 0, a: 1} + laserWidth: 0.04 + emissionStrength: 2 + scrollSpeed: 1 +--- !u!120 &4709206691219953776 +LineRenderer: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6110383875702633374} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 0 + m_LightProbeUsage: 0 + m_ReflectionProbeUsage: 0 + m_RayTracingMode: 0 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Positions: + - {x: -1.6539582, y: 0.34799498, z: -2.94876} + - {x: 4.5460424, y: 0.34799498, z: -2.9487607} + m_Parameters: + serializedVersion: 3 + widthMultiplier: 0.04 + widthCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + colorGradient: + serializedVersion: 2 + key0: {r: 1, g: 0, b: 0, a: 1} + key1: {r: 1, g: 0, b: 0, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_ColorSpace: -1 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 + numCornerVertices: 0 + numCapVertices: 0 + alignment: 0 + textureMode: 0 + textureScale: {x: 1, y: 1} + shadowBias: 0.5 + generateLightingData: 0 + m_MaskInteraction: 0 + m_UseWorldSpace: 1 + m_Loop: 0 + m_ApplyActiveColorSpace: 1 diff --git a/Assets/Prefabs/BeamLine.prefab.meta b/Assets/Prefabs/BeamLine.prefab.meta new file mode 100644 index 0000000..0885e85 --- /dev/null +++ b/Assets/Prefabs/BeamLine.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e205d26979335984cb73f0328e3c07ca +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Prefabs/Platform 1.prefab b/Assets/Prefabs/Platform 1.prefab new file mode 100644 index 0000000..cbe1157 --- /dev/null +++ b/Assets/Prefabs/Platform 1.prefab @@ -0,0 +1,35732 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &63646234787919153 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7874575408137780197} + m_Layer: 0 + m_Name: CoinParent (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7874575408137780197 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 63646234787919153} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0029999998, y: -0.002849996, z: 0.00091171265} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3180920752820534240} + - {fileID: 8029289731867082086} + - {fileID: 8141252729946709348} + - {fileID: 8858903739574336352} + - {fileID: 4994740160987412330} + - {fileID: 1249901775163860984} + - {fileID: 6891957897973360029} + m_Father: {fileID: 5245627638424262904} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &96067405883381868 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7137178221451349146} + - component: {fileID: 530068841651681586} + - component: {fileID: 1505618655377285610} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7137178221451349146 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 96067405883381868} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5036617021246478772} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &530068841651681586 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 96067405883381868} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1505618655377285610 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 96067405883381868} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &145337586064812637 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6164155503161771644} + - component: {fileID: 4765089568412094636} + - component: {fileID: 5101547278376083835} + - component: {fileID: 3562124125919480244} + - component: {fileID: 2854827457413608323} + m_Layer: 0 + m_Name: Obstacle_C (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6164155503161771644 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145337586064812637} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0.0030300021, z: 0.00009918213} + m_LocalScale: {x: -12.82, y: -12.82, z: -12.82} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2918029099092491010} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4765089568412094636 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145337586064812637} + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5101547278376083835 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145337586064812637} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 718bdba339f39de469f61300995969dd, type: 2} + - {fileID: 2100000, guid: b6af01873ef812748a1cc288cbd122b9, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &3562124125919480244 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145337586064812637} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &2854827457413608323 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145337586064812637} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &173170778427506559 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2163919371884733112} + - component: {fileID: 1176862437974251156} + - component: {fileID: 5483884987328959502} + - component: {fileID: 7659220318460014503} + - component: {fileID: 4297023025477256114} + - component: {fileID: 7197900910090219825} + m_Layer: 0 + m_Name: Bolt_B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2163919371884733112 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 173170778427506559} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003774895, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -2.8548, z: -32.4267} + m_LocalScale: {x: 0.9060824, y: 0.9060824, z: 0.9060824} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4295604883980422208} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1176862437974251156 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 173170778427506559} + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &5483884987328959502 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 173170778427506559} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 6859324791159361686, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &7659220318460014503 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 173170778427506559} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 6 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 0 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2163919371884733112} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 10, z: 0} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 0 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &4297023025477256114 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 173170778427506559} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4ca4301ea06e47b429d3186c76cd25e9, type: 3} + m_Name: + m_EditorClassIdentifier: + speedBoostAmount: 1 + duration: 5 +--- !u!64 &7197900910090219825 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 173170778427506559} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &196271106921575373 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5289174693447237628} + - component: {fileID: 956339558542894716} + - component: {fileID: 711692846619552128} + - component: {fileID: 3340538656494895108} + - component: {fileID: 16394856545348455} + m_Layer: 0 + m_Name: Obstacle_D + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5289174693447237628 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 196271106921575373} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -53.111} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5942385969952372884} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &956339558542894716 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 196271106921575373} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &711692846619552128 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 196271106921575373} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &3340538656494895108 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 196271106921575373} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &16394856545348455 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 196271106921575373} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &208866546782496004 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 479762670692746928} + - component: {fileID: 6426318888603567647} + - component: {fileID: 7915333880280135415} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &479762670692746928 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 208866546782496004} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8954822734597428682} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &6426318888603567647 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 208866546782496004} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7915333880280135415 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 208866546782496004} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &220387876189878385 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3606581053194337788} + - component: {fileID: 8465534124847622785} + - component: {fileID: 8221767745240409878} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3606581053194337788 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 220387876189878385} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1925112579671959398} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8465534124847622785 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 220387876189878385} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8221767745240409878 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 220387876189878385} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &259887381363844149 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6457553507526539891} + - component: {fileID: 5728961742261216336} + - component: {fileID: 6689850699652732879} + - component: {fileID: 2059810945321367042} + - component: {fileID: 5808067313854226112} + - component: {fileID: 2461669188738031156} + m_Layer: 0 + m_Name: Bolt_B (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6457553507526539891 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 259887381363844149} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003774895, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.437, y: -2.8548, z: -32.4267} + m_LocalScale: {x: 0.9060824, y: 0.9060824, z: 0.9060824} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5711583358438238382} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5728961742261216336 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 259887381363844149} + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &6689850699652732879 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 259887381363844149} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 6859324791159361686, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &2059810945321367042 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 259887381363844149} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 6 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 0 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6457553507526539891} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 10, z: 0} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 0 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &5808067313854226112 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 259887381363844149} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4ca4301ea06e47b429d3186c76cd25e9, type: 3} + m_Name: + m_EditorClassIdentifier: + speedBoostAmount: 1 + duration: 5 +--- !u!64 &2461669188738031156 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 259887381363844149} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &318923121376757543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4066115968620491377} + m_Layer: 0 + m_Name: CoinParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4066115968620491377 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 318923121376757543} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0029999998, y: -0.015049994, z: 0.00091171265} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3236073922845941376} + - {fileID: 4905988966987160657} + - {fileID: 8267157429010277339} + - {fileID: 7849938230437399663} + - {fileID: 6681631495947121124} + - {fileID: 4367208486116652349} + - {fileID: 1156188076364670939} + m_Father: {fileID: 4499927287791972063} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &326100109608131702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1808329935964977461} + - component: {fileID: 6737783896615994923} + - component: {fileID: 3005459766506533289} + m_Layer: 0 + m_Name: Blueberries (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1808329935964977461 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 326100109608131702} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000005960465, z: -1, w: 0} + m_LocalPosition: {x: -0.015610007, y: -0.00562004, z: -0.012499999} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2106634864383589834} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &6737783896615994923 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 326100109608131702} + m_Mesh: {fileID: 5746395956481078904, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &3005459766506533289 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 326100109608131702} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -4040347994642848883, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &545677147207401829 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1173756779602704189} + - component: {fileID: 7998133123877565600} + - component: {fileID: 263196453162800529} + - component: {fileID: 1053191078766046771} + - component: {fileID: 8725469799800410083} + m_Layer: 0 + m_Name: Obstacle_D + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1173756779602704189 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545677147207401829} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -53.111} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 972375915274881548} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7998133123877565600 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545677147207401829} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &263196453162800529 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545677147207401829} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &1053191078766046771 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545677147207401829} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &8725469799800410083 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 545677147207401829} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &598991314326123306 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3051858818496339516} + - component: {fileID: 404611007716634283} + - component: {fileID: 2486547377475024952} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3051858818496339516 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 598991314326123306} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4325520255115945289} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &404611007716634283 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 598991314326123306} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2486547377475024952 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 598991314326123306} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &621524911197932443 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2106634864383589834} + m_Layer: 8 + m_Name: Misc + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2106634864383589834 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 621524911197932443} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1248774622750654762} + - {fileID: 2418433831568035506} + - {fileID: 1808329935964977461} + m_Father: {fileID: 8274302100745704245} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &625197635364982279 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5251590225460456578} + - component: {fileID: 511228924792549677} + - component: {fileID: 6819414594596214235} + m_Layer: 0 + m_Name: Laser (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5251590225460456578 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625197635364982279} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.072500005, y: -0.001000023, z: -0.000029999112} + m_LocalScale: {x: 5, y: 5, z: 5} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 6703502159284974264} + m_Father: {fileID: 3535526604550154660} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &511228924792549677 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625197635364982279} + m_Mesh: {fileID: 938762473992563870, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &6819414594596214235 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625197635364982279} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &651035459208778188 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5677263269048399853} + - component: {fileID: 7983941206357215453} + - component: {fileID: 8884054263258476307} + - component: {fileID: 6149112857873785735} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5677263269048399853 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 651035459208778188} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 771082521436332861} + m_Father: {fileID: 7139633758267059528} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7983941206357215453 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 651035459208778188} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5677263269048399853} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &8884054263258476307 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 651035459208778188} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &6149112857873785735 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 651035459208778188} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &669358997050737379 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2379974123154221011} + - component: {fileID: 2376241682347112734} + - component: {fileID: 8913979711912998347} + - component: {fileID: 2832508921918542949} + - component: {fileID: 3420269714611742631} + m_Layer: 0 + m_Name: Obstacle_A (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2379974123154221011 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 669358997050737379} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.839, y: 0.5826, z: -55.984} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 483169538763802572} + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &2376241682347112734 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 669358997050737379} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8913979711912998347 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 669358997050737379} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &2832508921918542949 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 669358997050737379} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &3420269714611742631 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 669358997050737379} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &680945953606470271 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3882119051928657301} + - component: {fileID: 665913455706998888} + - component: {fileID: 3977148142559813423} + m_Layer: 0 + m_Name: Blueberries (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3882119051928657301 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 680945953606470271} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000005960465, z: -1, w: 0} + m_LocalPosition: {x: -0.015610007, y: -0.00562004, z: -0.012499999} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8062905504329175418} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &665913455706998888 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 680945953606470271} + m_Mesh: {fileID: 5746395956481078904, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &3977148142559813423 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 680945953606470271} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -4040347994642848883, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &731794178850822469 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1725088507031317702} + - component: {fileID: 5184101597530970469} + - component: {fileID: 3047299583626785920} + - component: {fileID: 4393565449152296948} + - component: {fileID: 1000207404691863389} + m_Layer: 0 + m_Name: Obstacle_H (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1725088507031317702 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 731794178850822469} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: 0.7071068, w: 0} + m_LocalPosition: {x: -3.548, y: 0.743, z: -62.68} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 7049397390513462187} + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5184101597530970469 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 731794178850822469} + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3047299583626785920 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 731794178850822469} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5fbb0c4334374934abc11d566db804a9, type: 2} + - {fileID: 2100000, guid: c4a4afe7921aa2f4582fccd2bd7f1efa, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &4393565449152296948 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 731794178850822469} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &1000207404691863389 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 731794178850822469} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &754760956421468365 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6462284618070522558} + - component: {fileID: 6390699475341771539} + - component: {fileID: 1345269044562138736} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6462284618070522558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 754760956421468365} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5931513008942373663} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &6390699475341771539 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 754760956421468365} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1345269044562138736 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 754760956421468365} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &768941886409036430 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8575222913715070593} + - component: {fileID: 3250933105118631264} + - component: {fileID: 3036868112790652510} + - component: {fileID: 2654835113563915223} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8575222913715070593 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 768941886409036430} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9030580908599709115} + m_Father: {fileID: 6430294205366406323} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3250933105118631264 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 768941886409036430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8575222913715070593} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3036868112790652510 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 768941886409036430} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2654835113563915223 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 768941886409036430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &797794145701911509 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3638045841758922926} + - component: {fileID: 7135738393174998917} + - component: {fileID: 5952993143112032412} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3638045841758922926 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 797794145701911509} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6338393964682837298} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &7135738393174998917 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 797794145701911509} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5952993143112032412 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 797794145701911509} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &802286542141648491 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6272441957318210940} + - component: {fileID: 3302510776474230122} + - component: {fileID: 8366048067565746510} + - component: {fileID: 7189760309356226551} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6272441957318210940 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 802286542141648491} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6239215543279726208} + m_Father: {fileID: 2897711522538425094} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3302510776474230122 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 802286542141648491} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6272441957318210940} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &8366048067565746510 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 802286542141648491} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7189760309356226551 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 802286542141648491} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &878629464198042090 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2657188384440967303} + - component: {fileID: 6589557973266129557} + - component: {fileID: 7660041932753132443} + - component: {fileID: 6009888848653672611} + - component: {fileID: 7971876959942431127} + m_Layer: 0 + m_Name: Obstacle_D + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2657188384440967303 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878629464198042090} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -53.111} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3478840900650390782} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6589557973266129557 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878629464198042090} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &7660041932753132443 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878629464198042090} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &6009888848653672611 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878629464198042090} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &7971876959942431127 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878629464198042090} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &894252209117722867 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 559911178632471473} + - component: {fileID: 6352549086499009578} + - component: {fileID: 704870234173221917} + - component: {fileID: 5683378476817835849} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &559911178632471473 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 894252209117722867} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7945865518577166777} + m_Father: {fileID: 2897711522538425094} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6352549086499009578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 894252209117722867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 559911178632471473} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &704870234173221917 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 894252209117722867} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5683378476817835849 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 894252209117722867} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &917242424786153403 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7037599156017721499} + - component: {fileID: 2268944259693669035} + - component: {fileID: 6031849268678123190} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7037599156017721499 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 917242424786153403} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1249901775163860984} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &2268944259693669035 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 917242424786153403} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6031849268678123190 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 917242424786153403} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &920364973306162690 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3516677836680129784} + - component: {fileID: 2193592987714443457} + - component: {fileID: 7201171769507265083} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3516677836680129784 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 920364973306162690} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4994740160987412330} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &2193592987714443457 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 920364973306162690} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7201171769507265083 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 920364973306162690} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &996525854917994718 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8267157429010277339} + - component: {fileID: 5579734355690275966} + - component: {fileID: 6293657603060108404} + - component: {fileID: 2060671919451834472} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8267157429010277339 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 996525854917994718} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7570854551845543576} + m_Father: {fileID: 4066115968620491377} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5579734355690275966 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 996525854917994718} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8267157429010277339} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6293657603060108404 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 996525854917994718} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2060671919451834472 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 996525854917994718} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1049312941944097682 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3557913417478294456} + - component: {fileID: 9212554404589327833} + - component: {fileID: 516329876958247455} + - component: {fileID: 2658798738431264005} + - component: {fileID: 5221380566176648806} + m_Layer: 0 + m_Name: Obstacle_C (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3557913417478294456 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1049312941944097682} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: 0.435, y: 0.543, z: -58.15} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &9212554404589327833 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1049312941944097682} + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &516329876958247455 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1049312941944097682} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 718bdba339f39de469f61300995969dd, type: 2} + - {fileID: 2100000, guid: b6af01873ef812748a1cc288cbd122b9, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &2658798738431264005 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1049312941944097682} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &5221380566176648806 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1049312941944097682} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1056252405306941551 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7849938230437399663} + - component: {fileID: 2298865580284368411} + - component: {fileID: 5983556588392409785} + - component: {fileID: 8566428191077927364} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7849938230437399663 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1056252405306941551} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4570663783042688510} + m_Father: {fileID: 4066115968620491377} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2298865580284368411 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1056252405306941551} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7849938230437399663} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &5983556588392409785 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1056252405306941551} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8566428191077927364 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1056252405306941551} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1057721065730501506 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2715831933401753751} + - component: {fileID: 8998786644146873507} + - component: {fileID: 6116123885260626463} + - component: {fileID: 3699118936732287399} + - component: {fileID: 3448062617611214952} + m_Layer: 0 + m_Name: Obstacle_E (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2715831933401753751 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057721065730501506} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.001208, y: 0.002759993, z: 0.0002784729} + m_LocalScale: {x: -12.82, y: -3.737773, z: -3.737773} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2918029099092491010} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8998786644146873507 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057721065730501506} + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6116123885260626463 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057721065730501506} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &3699118936732287399 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057721065730501506} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &3448062617611214952 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1057721065730501506} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1098972798044995227 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6240231372781090059} + - component: {fileID: 2251717980551392712} + - component: {fileID: 2678392779727948937} + - component: {fileID: 4527913860323362261} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6240231372781090059 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1098972798044995227} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1477619972202789409} + m_Father: {fileID: 8164977802521349133} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2251717980551392712 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1098972798044995227} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6240231372781090059} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &2678392779727948937 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1098972798044995227} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &4527913860323362261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1098972798044995227} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1156416498196699217 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9222064515282753927} + - component: {fileID: 1874516749498643660} + - component: {fileID: 8532643073264976641} + - component: {fileID: 6292960097879805804} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9222064515282753927 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1156416498196699217} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6589053093737303757} + m_Father: {fileID: 8323959702354881625} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1874516749498643660 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1156416498196699217} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 9222064515282753927} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &8532643073264976641 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1156416498196699217} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &6292960097879805804 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1156416498196699217} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1185131027182781131 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5982999571487694588} + - component: {fileID: 3951045916523963160} + - component: {fileID: 3842563266873384902} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5982999571487694588 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1185131027182781131} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7244711365142094741} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &3951045916523963160 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1185131027182781131} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3842563266873384902 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1185131027182781131} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1230688434445703199 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4748247897730260006} + - component: {fileID: 8239032208423764945} + - component: {fileID: 4955696022526057428} + - component: {fileID: 7496722697883018248} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4748247897730260006 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1230688434445703199} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3303313789293086581} + m_Father: {fileID: 8164977802521349133} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &8239032208423764945 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1230688434445703199} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4748247897730260006} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4955696022526057428 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1230688434445703199} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7496722697883018248 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1230688434445703199} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1312976093498980313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3270770422282429721} + - component: {fileID: 9085535241576945358} + - component: {fileID: 3600623449903744953} + - component: {fileID: 3017185403176028976} + - component: {fileID: 9181518685316421442} + m_Layer: 0 + m_Name: Obstacle_A (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3270770422282429721 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1312976093498980313} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0024899999, y: -0.023339987, z: 0.00059890747} + m_LocalScale: {x: -12.82, y: -12.82, z: -12.82} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2918029099092491010} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &9085535241576945358 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1312976093498980313} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3600623449903744953 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1312976093498980313} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &3017185403176028976 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1312976093498980313} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &9181518685316421442 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1312976093498980313} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1318418129241610946 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2963343346566417653} + - component: {fileID: 8228002668798681048} + - component: {fileID: 736120998640399346} + m_Layer: 0 + m_Name: Bolt_A + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &2963343346566417653 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1318418129241610946} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: -2.706, z: -34.4} + m_LocalScale: {x: 62.31491, y: 62.31491, z: 62.31491} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6913307430280152876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8228002668798681048 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1318418129241610946} + m_Mesh: {fileID: -8290890432993991056, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &736120998640399346 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1318418129241610946} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1364488690946776080 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7857483301504143803} + - component: {fileID: 8768075344467095083} + - component: {fileID: 4104024509276117024} + - component: {fileID: 1941793371505570955} + - component: {fileID: 2073829504001950738} + m_Layer: 0 + m_Name: Obstacle_F (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7857483301504143803 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364488690946776080} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.265} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3215045150813753675} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8768075344467095083 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364488690946776080} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &4104024509276117024 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364488690946776080} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &1941793371505570955 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364488690946776080} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &2073829504001950738 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1364488690946776080} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1368830787829934711 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 314949030855868315} + - component: {fileID: 8688508327881059901} + - component: {fileID: 3175526520107591221} + m_Layer: 0 + m_Name: Line_B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &314949030855868315 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1368830787829934711} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: -0.0058, y: 0.0314, z: -0.0001} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5288239783437265470} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8688508327881059901 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1368830787829934711} + m_Mesh: {fileID: 1924753069908689346, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &3175526520107591221 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1368830787829934711} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 1259908407628275591, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1424441466516875032 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7150971700238230285} + - component: {fileID: 139584177550011347} + - component: {fileID: 7980517399355761364} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7150971700238230285 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1424441466516875032} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4356398060664691143} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &139584177550011347 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1424441466516875032} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7980517399355761364 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1424441466516875032} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1486182950520029510 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8862858381155526105} + - component: {fileID: 1474632478120294036} + - component: {fileID: 825434027984440314} + - component: {fileID: 2652115488662265703} + - component: {fileID: 7665790259295165069} + m_Layer: 0 + m_Name: Obstacle_A (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8862858381155526105 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1486182950520029510} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: 0.43, y: 0.5826, z: -54.259} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 8288613779853040334} + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &1474632478120294036 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1486182950520029510} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &825434027984440314 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1486182950520029510} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &2652115488662265703 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1486182950520029510} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &7665790259295165069 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1486182950520029510} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1538645411020750672 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7223982920611395933} + - component: {fileID: 7022480442337900544} + - component: {fileID: 1080075503146729313} + - component: {fileID: 5835587051601523750} + m_Layer: 8 + m_Name: Alley_A + m_TagString: Ground + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7223982920611395933 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1538645411020750672} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 24} + m_LocalScale: {x: 100, y: 99.999985, z: 99.999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6341502589242078947} + m_Father: {fileID: 662411669077528250} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7022480442337900544 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1538645411020750672} + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &1080075503146729313 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1538645411020750672} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &5835587051601523750 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1538645411020750672} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &1610369689712153497 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1276222981457524980} + - component: {fileID: 7531324864472020765} + - component: {fileID: 7137210439098876697} + - component: {fileID: 2331657878967287413} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1276222981457524980 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1610369689712153497} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4316007920573725961} + m_Father: {fileID: 3558021963420002246} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7531324864472020765 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1610369689712153497} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1276222981457524980} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7137210439098876697 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1610369689712153497} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2331657878967287413 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1610369689712153497} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1615592013353343542 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4570663783042688510} + - component: {fileID: 4882887306810966406} + - component: {fileID: 4975245438508199255} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4570663783042688510 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1615592013353343542} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7849938230437399663} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4882887306810966406 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1615592013353343542} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4975245438508199255 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1615592013353343542} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1623048536156189922 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5735668569070122748} + - component: {fileID: 2250979080608144173} + - component: {fileID: 3919703285678161592} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5735668569070122748 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1623048536156189922} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3671203011135697403} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &2250979080608144173 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1623048536156189922} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3919703285678161592 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1623048536156189922} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1631572011146317267 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5786326734158320001} + - component: {fileID: 6150988182250523204} + - component: {fileID: 3248001814656725515} + - component: {fileID: 2919757353348815273} + - component: {fileID: 5824462731820737925} + m_Layer: 0 + m_Name: Obstacle_F + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5786326734158320001 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631572011146317267} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.851} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 972375915274881548} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6150988182250523204 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631572011146317267} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &3248001814656725515 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631572011146317267} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &2919757353348815273 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631572011146317267} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &5824462731820737925 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631572011146317267} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &1708173709565584113 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6681631495947121124} + - component: {fileID: 7623696201657118319} + - component: {fileID: 3750870196086104486} + - component: {fileID: 862141109990969538} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6681631495947121124 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1708173709565584113} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1352074816104008123} + m_Father: {fileID: 4066115968620491377} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7623696201657118319 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1708173709565584113} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6681631495947121124} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3750870196086104486 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1708173709565584113} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &862141109990969538 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1708173709565584113} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1720056290908901762 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 151714113207297456} + - component: {fileID: 4642412935976710521} + - component: {fileID: 2929453476991364395} + - component: {fileID: 3715976628677503036} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &151714113207297456 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1720056290908901762} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2389033369725905185} + m_Father: {fileID: 5867351837055617134} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &4642412935976710521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1720056290908901762} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 151714113207297456} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &2929453476991364395 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1720056290908901762} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3715976628677503036 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1720056290908901762} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1722286892110473859 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2921864098059593577} + m_Layer: 0 + m_Name: CoinParent (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2921864098059593577 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1722286892110473859} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.010604024, z: 0.00091552734} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2687977031020188529} + - {fileID: 3650632538996874970} + - {fileID: 9038125922637800540} + - {fileID: 8423058776034326558} + - {fileID: 1925112579671959398} + - {fileID: 5588130657670918281} + - {fileID: 2118121543228199424} + m_Father: {fileID: 4300449242099025923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1770050910196995971 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8164977802521349133} + m_Layer: 0 + m_Name: CoinParent (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8164977802521349133 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1770050910196995971} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0029999998, y: -0.002849996, z: 0.00091171265} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3610209125805859896} + - {fileID: 6718453647629308592} + - {fileID: 2481962581381879440} + - {fileID: 6939372422045046813} + - {fileID: 4748247897730260006} + - {fileID: 6704819293216337618} + - {fileID: 6240231372781090059} + m_Father: {fileID: 4499927287791972063} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1770574243026405315 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3159951421399353878} + - component: {fileID: 5861606413764471693} + - component: {fileID: 5840943677392153630} + m_Layer: 0 + m_Name: Line_A + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &3159951421399353878 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1770574243026405315} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: 0.0040000034, y: 0.00019999979, z: -0.000058489422} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5421269898201282807} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5861606413764471693 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1770574243026405315} + m_Mesh: {fileID: 6811696063975250618, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &5840943677392153630 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1770574243026405315} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 5192952931255712758, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1774853998869654479 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3673649294289440288} + - component: {fileID: 3146791821200125972} + - component: {fileID: 4992960324611868145} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3673649294289440288 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1774853998869654479} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2687977031020188529} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &3146791821200125972 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1774853998869654479} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4992960324611868145 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1774853998869654479} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1774919329686345011 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7798090323235483668} + - component: {fileID: 3194781640560355341} + - component: {fileID: 1987144617242435318} + - component: {fileID: 6484070075766905363} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7798090323235483668 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1774919329686345011} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4679440632376438649} + m_Father: {fileID: 5631149046733040878} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3194781640560355341 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1774919329686345011} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7798090323235483668} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &1987144617242435318 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1774919329686345011} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &6484070075766905363 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1774919329686345011} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1816439384650806952 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3832427016867250180} + - component: {fileID: 2608228178852674861} + - component: {fileID: 7235995448217648300} + - component: {fileID: 1806707694364587273} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3832427016867250180 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1816439384650806952} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1942990053451392450} + m_Father: {fileID: 5631149046733040878} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2608228178852674861 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1816439384650806952} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3832427016867250180} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7235995448217648300 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1816439384650806952} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1806707694364587273 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1816439384650806952} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1836213241940584359 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2180475234551252740} + - component: {fileID: 1232250853910174084} + - component: {fileID: 9214851361257921634} + - component: {fileID: 4766804471693198928} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2180475234551252740 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1836213241940584359} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2953608999082698293} + m_Father: {fileID: 5867351837055617134} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1232250853910174084 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1836213241940584359} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2180475234551252740} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &9214851361257921634 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1836213241940584359} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &4766804471693198928 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1836213241940584359} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1864972045363346760 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3671203011135697403} + - component: {fileID: 419430521890025497} + - component: {fileID: 5061527788595777569} + - component: {fileID: 8155066585448107294} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3671203011135697403 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1864972045363346760} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5735668569070122748} + m_Father: {fileID: 5631149046733040878} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &419430521890025497 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1864972045363346760} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3671203011135697403} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &5061527788595777569 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1864972045363346760} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8155066585448107294 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1864972045363346760} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1883461707850466471 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5197548669799759821} + - component: {fileID: 4009900854107124411} + - component: {fileID: 1928255069996893383} + m_Layer: 0 + m_Name: Arrow_C + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5197548669799759821 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1883461707850466471} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: -0.0507, y: -0.028, z: 0.0051} + m_LocalScale: {x: 2.5, y: 0.2862647, z: 0.3613828} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5834687521371244358} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!33 &4009900854107124411 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1883461707850466471} + m_Mesh: {fileID: -2376033533564513673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &1928255069996893383 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1883461707850466471} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1921434759382961624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2098756767989205103} + - component: {fileID: 7018513107319289669} + - component: {fileID: 6543201163693082380} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2098756767989205103 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1921434759382961624} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3236073922845941376} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &7018513107319289669 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1921434759382961624} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6543201163693082380 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1921434759382961624} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1939488027048548253 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 683614285112714286} + - component: {fileID: 5383213951082370213} + - component: {fileID: 4926144207003604351} + - component: {fileID: 1206760445190077621} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &683614285112714286 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1939488027048548253} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7464806050690594719} + m_Father: {fileID: 6430294205366406323} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5383213951082370213 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1939488027048548253} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 683614285112714286} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4926144207003604351 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1939488027048548253} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1206760445190077621 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1939488027048548253} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &1940905869036586055 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 61310345623358392} + - component: {fileID: 6502446844823778376} + - component: {fileID: 8829387455133122558} + - component: {fileID: 1140983083025192279} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &61310345623358392 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1940905869036586055} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4975567032794279617} + m_Father: {fileID: 8323959702354881625} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6502446844823778376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1940905869036586055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 61310345623358392} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &8829387455133122558 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1940905869036586055} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1140983083025192279 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1940905869036586055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &2025182300116215394 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2481962581381879440} + - component: {fileID: 1360464582054466972} + - component: {fileID: 6997336725215425160} + - component: {fileID: 36324718460194586} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2481962581381879440 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2025182300116215394} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3187047961286851518} + m_Father: {fileID: 8164977802521349133} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1360464582054466972 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2025182300116215394} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2481962581381879440} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6997336725215425160 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2025182300116215394} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &36324718460194586 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2025182300116215394} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &2092918135282487431 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7464806050690594719} + - component: {fileID: 5268098107283575453} + - component: {fileID: 268733802696413599} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7464806050690594719 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2092918135282487431} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 683614285112714286} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5268098107283575453 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2092918135282487431} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &268733802696413599 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2092918135282487431} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2121233841383558425 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4356398060664691143} + - component: {fileID: 7414424543977707158} + - component: {fileID: 8150407558973255480} + - component: {fileID: 3744154735520433707} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4356398060664691143 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2121233841383558425} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7150971700238230285} + m_Father: {fileID: 2897711522538425094} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7414424543977707158 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2121233841383558425} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4356398060664691143} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &8150407558973255480 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2121233841383558425} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3744154735520433707 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2121233841383558425} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &2257633162889682414 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2326127559728752399} + - component: {fileID: 5279889594819877495} + - component: {fileID: 2929695220339842242} + - component: {fileID: 4205009385751954015} + - component: {fileID: 3521222423439711734} + - component: {fileID: 3419772009435801613} + m_Layer: 0 + m_Name: Bolt_B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &2326127559728752399 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2257633162889682414} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003774895, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -2.8548, z: -32.4267} + m_LocalScale: {x: 0.9060824, y: 0.9060824, z: 0.9060824} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5711583358438238382} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5279889594819877495 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2257633162889682414} + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &2929695220339842242 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2257633162889682414} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 6859324791159361686, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &4205009385751954015 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2257633162889682414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 6 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 0 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2326127559728752399} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 10, z: 0} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 0 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &3521222423439711734 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2257633162889682414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4ca4301ea06e47b429d3186c76cd25e9, type: 3} + m_Name: + m_EditorClassIdentifier: + speedBoostAmount: 1 + duration: 5 +--- !u!64 &3419772009435801613 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2257633162889682414} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &2261665466548966132 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9038125922637800540} + - component: {fileID: 8759890779066426228} + - component: {fileID: 9113660291042677672} + - component: {fileID: 7592895179378118003} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9038125922637800540 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2261665466548966132} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2134027380379623437} + m_Father: {fileID: 2921864098059593577} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &8759890779066426228 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2261665466548966132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 9038125922637800540} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &9113660291042677672 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2261665466548966132} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7592895179378118003 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2261665466548966132} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &2331382276673519537 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1294820591584568261} + - component: {fileID: 3797629747660291250} + - component: {fileID: 5842311564607750854} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1294820591584568261 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2331382276673519537} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2700368412159273265} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &3797629747660291250 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2331382276673519537} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5842311564607750854 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2331382276673519537} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2376762039900480016 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4299139934981122151} + - component: {fileID: 5159325510766254070} + - component: {fileID: 787139132095649332} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4299139934981122151 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2376762039900480016} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8029289731867082086} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5159325510766254070 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2376762039900480016} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &787139132095649332 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2376762039900480016} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2381831839008219311 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4194400321491315592} + - component: {fileID: 6250707693589672551} + - component: {fileID: 113684209438069502} + m_Layer: 0 + m_Name: Blueberries + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4194400321491315592 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2381831839008219311} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000005960465, z: -1, w: 0} + m_LocalPosition: {x: 0.014510002, y: 0.005369417, z: -0.0052399985} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8062905504329175418} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &6250707693589672551 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2381831839008219311} + m_Mesh: {fileID: 5746395956481078904, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &113684209438069502 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2381831839008219311} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -4040347994642848883, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2424265925957732163 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2938167122899408096} + - component: {fileID: 7443980859277375443} + - component: {fileID: 5435448632326790050} + m_Layer: 0 + m_Name: Arrow_C + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2938167122899408096 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2424265925957732163} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.03216, y: -0.0258, z: 0.0033} + m_LocalScale: {x: 2.5, y: 0.2862647, z: 0.3613828} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3535526604550154660} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7443980859277375443 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2424265925957732163} + m_Mesh: {fileID: -2376033533564513673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &5435448632326790050 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2424265925957732163} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2428853581760350261 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 697471510447736326} + - component: {fileID: 4370316155193855906} + - component: {fileID: 316713790653290111} + - component: {fileID: 3794668702924095548} + - component: {fileID: 2544975055525827567} + m_Layer: 0 + m_Name: Obstacle_D + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &697471510447736326 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2428853581760350261} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -53.111} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8504754379814620554} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4370316155193855906 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2428853581760350261} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &316713790653290111 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2428853581760350261} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &3794668702924095548 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2428853581760350261} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &2544975055525827567 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2428853581760350261} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &2541204879810726617 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2953608999082698293} + - component: {fileID: 6457141284101413729} + - component: {fileID: 1584425414358112001} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2953608999082698293 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2541204879810726617} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2180475234551252740} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &6457141284101413729 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2541204879810726617} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1584425414358112001 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2541204879810726617} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2581642909769399678 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2352062473856957639} + - component: {fileID: 1053837388560972069} + m_Layer: 0 + m_Name: CoinParents (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2352062473856957639 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2581642909769399678} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: 0.7071068, w: 0} + m_LocalPosition: {x: 0, y: 0.784, z: -44.79} + m_LocalScale: {x: 149.99997, y: 150.00003, z: 150.00003} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 1639302389400109493} + - {fileID: 5867351837055617134} + - {fileID: 8323959702354881625} + m_Father: {fileID: 3244248915834602008} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &1053837388560972069 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2581642909769399678} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4b1effc2ff8bc134a97d96701dcc10c1, type: 3} + m_Name: + m_EditorClassIdentifier: + coinParents: + - {fileID: 9021937198383854705} + - {fileID: 8194874955284048324} + - {fileID: 5592082011694935425} + coinChance: 40 +--- !u!1 &2635565445735676163 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5711583358438238382} + m_Layer: 0 + m_Name: Bolts (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5711583358438238382 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2635565445735676163} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -0.83} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2326127559728752399} + - {fileID: 1215075518211976296} + - {fileID: 6457553507526539891} + m_Father: {fileID: 6913307430280152876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2701803925406801613 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3244248915834602008} + m_Layer: 0 + m_Name: Meshes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3244248915834602008 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2701803925406801613} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1242128596142909725} + - {fileID: 662411669077528250} + - {fileID: 8274302100745704245} + - {fileID: 3120596899324720466} + - {fileID: 4300449242099025923} + - {fileID: 2352062473856957639} + - {fileID: 4499927287791972063} + - {fileID: 5245627638424262904} + m_Father: {fileID: 6913307430280152876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2706415856786729007 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 603838925505036112} + - component: {fileID: 7918040282908793516} + - component: {fileID: 1063522746068150202} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &603838925505036112 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2706415856786729007} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6292028945730150314} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &7918040282908793516 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2706415856786729007} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1063522746068150202 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2706415856786729007} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2723570002199266366 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 878978840315371830} + - component: {fileID: 7142597375236701329} + - component: {fileID: 2747995741119139570} + - component: {fileID: 3954967404799575519} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &878978840315371830 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2723570002199266366} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5671694324479016644} + m_Father: {fileID: 5867351837055617134} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7142597375236701329 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2723570002199266366} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 878978840315371830} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &2747995741119139570 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2723570002199266366} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3954967404799575519 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2723570002199266366} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &2726618015036866305 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4950110776704568840} + - component: {fileID: 6786371438896639981} + - component: {fileID: 7436045660290898305} + - component: {fileID: 9079190605881994901} + - component: {fileID: 7587934724625099668} + m_Layer: 0 + m_Name: Obstacle_E (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4950110776704568840 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2726618015036866305} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.2062, y: 0.5054, z: -59.5131} + m_LocalScale: {x: 40.56799, y: 40.567993, z: 40.567993} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &6786371438896639981 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2726618015036866305} + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7436045660290898305 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2726618015036866305} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &9079190605881994901 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2726618015036866305} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &7587934724625099668 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2726618015036866305} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &2733218822841134731 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 350688704758393573} + - component: {fileID: 1055126300006811566} + - component: {fileID: 8831033087131399931} + m_Layer: 0 + m_Name: Line_C (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &350688704758393573 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2733218822841134731} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: 0.0012, y: -0.0331, z: -0.0001} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2638153453031742628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1055126300006811566 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2733218822841134731} + m_Mesh: {fileID: -589622997007936144, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &8831033087131399931 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2733218822841134731} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 5192952931255712758, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2738557217335220087 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1942394781813426319} + - component: {fileID: 7735156998541057277} + - component: {fileID: 543964266286217040} + - component: {fileID: 1398779374035733897} + - component: {fileID: 2233933824919414333} + m_Layer: 0 + m_Name: Obstacle_C (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1942394781813426319 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2738557217335220087} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.01492, y: 0.543, z: -58.15} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &7735156998541057277 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2738557217335220087} + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &543964266286217040 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2738557217335220087} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 718bdba339f39de469f61300995969dd, type: 2} + - {fileID: 2100000, guid: b6af01873ef812748a1cc288cbd122b9, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &1398779374035733897 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2738557217335220087} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &2233933824919414333 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2738557217335220087} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &2748502398804792071 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5605010824562883316} + - component: {fileID: 8921481291435825698} + - component: {fileID: 7272387172632145513} + - component: {fileID: 5595749933427644727} + - component: {fileID: 4044210422268338559} + m_Layer: 0 + m_Name: Obstacle_A (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5605010824562883316 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2748502398804792071} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0023099997, y: 0.012310028, z: 0.00059890747} + m_LocalScale: {x: -12.82, y: -12.82, z: -12.82} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2918029099092491010} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8921481291435825698 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2748502398804792071} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7272387172632145513 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2748502398804792071} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &5595749933427644727 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2748502398804792071} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &4044210422268338559 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2748502398804792071} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &2755767490751832320 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4584615371018133999} + - component: {fileID: 7539118860515259805} + - component: {fileID: 2391523808867627115} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4584615371018133999 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2755767490751832320} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6891957897973360029} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &7539118860515259805 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2755767490751832320} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2391523808867627115 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2755767490751832320} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2772277626354439979 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6322818122895137150} + - component: {fileID: 3231382655076061208} + - component: {fileID: 6302696595635242064} + - component: {fileID: 8086672307503502737} + m_Layer: 8 + m_Name: Alley_A + m_TagString: Ground + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6322818122895137150 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2772277626354439979} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 24} + m_LocalScale: {x: 100, y: 99.999985, z: 99.999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3287843288397077685} + m_Father: {fileID: 1242128596142909725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3231382655076061208 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2772277626354439979} + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &6302696595635242064 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2772277626354439979} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &8086672307503502737 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2772277626354439979} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &2777083987976958988 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4975567032794279617} + - component: {fileID: 4529578445956838042} + - component: {fileID: 3329553083999235842} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4975567032794279617 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2777083987976958988} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 61310345623358392} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4529578445956838042 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2777083987976958988} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3329553083999235842 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2777083987976958988} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2806054302603923960 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7049397390513462187} + - component: {fileID: 6961963446251448100} + - component: {fileID: 822104226478158389} + m_Layer: 0 + m_Name: Arrow_C + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7049397390513462187 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2806054302603923960} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 1, w: 0} + m_LocalPosition: {x: -0.2226, y: 0.0529, z: 0} + m_LocalScale: {x: 2.5, y: 0.2862647, z: 0.3613828} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1725088507031317702} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 180} +--- !u!33 &6961963446251448100 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2806054302603923960} + m_Mesh: {fileID: -2376033533564513673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &822104226478158389 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2806054302603923960} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2814729748395869988 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5631149046733040878} + m_Layer: 0 + m_Name: CoinParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5631149046733040878 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2814729748395869988} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0029999998, y: -0.015049994, z: 0.00091171265} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5931513008942373663} + - {fileID: 590211754292353558} + - {fileID: 1491469011465792521} + - {fileID: 3671203011135697403} + - {fileID: 7798090323235483668} + - {fileID: 6749874711049425037} + - {fileID: 3832427016867250180} + m_Father: {fileID: 4300449242099025923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2892265763442513721 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2530439480356263899} + - component: {fileID: 4859724625607100548} + - component: {fileID: 4844856930887407750} + - component: {fileID: 7761820072247029857} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2530439480356263899 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2892265763442513721} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2215790698251398823} + m_Father: {fileID: 5867351837055617134} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &4859724625607100548 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2892265763442513721} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2530439480356263899} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4844856930887407750 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2892265763442513721} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7761820072247029857 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2892265763442513721} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &2910093834440396649 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 972375915274881548} + m_Layer: 0 + m_Name: ObstacleSnakeBox (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &972375915274881548 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2910093834440396649} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.27, y: 0, z: 3.19} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1173756779602704189} + - {fileID: 7239722483864620486} + - {fileID: 5786326734158320001} + - {fileID: 6793466736900749632} + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2931746227337650225 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5556691171820428305} + - component: {fileID: 5449534269231947558} + - component: {fileID: 2589814637593069962} + - component: {fileID: 5597349270151342973} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5556691171820428305 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2931746227337650225} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7683133297592096107} + m_Father: {fileID: 1639302389400109493} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5449534269231947558 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2931746227337650225} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5556691171820428305} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &2589814637593069962 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2931746227337650225} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5597349270151342973 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2931746227337650225} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &2939489017387284908 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4905988966987160657} + - component: {fileID: 51392854176388772} + - component: {fileID: 4127421700929219718} + - component: {fileID: 8516680657598067707} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4905988966987160657 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2939489017387284908} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 695099776293669428} + m_Father: {fileID: 4066115968620491377} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &51392854176388772 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2939489017387284908} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4905988966987160657} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4127421700929219718 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2939489017387284908} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8516680657598067707 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2939489017387284908} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &2990781422565474961 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3187047961286851518} + - component: {fileID: 873586222531321810} + - component: {fileID: 269574898894605427} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3187047961286851518 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2990781422565474961} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2481962581381879440} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &873586222531321810 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2990781422565474961} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &269574898894605427 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2990781422565474961} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3055917398514170414 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6749874711049425037} + - component: {fileID: 7106662964479096871} + - component: {fileID: 9212730411474283569} + - component: {fileID: 2223812272507396294} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6749874711049425037 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3055917398514170414} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8466454123760389714} + m_Father: {fileID: 5631149046733040878} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7106662964479096871 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3055917398514170414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6749874711049425037} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &9212730411474283569 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3055917398514170414} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2223812272507396294 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3055917398514170414} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3066625888151402122 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3763895073853234650} + - component: {fileID: 7831853286471638443} + - component: {fileID: 7287783120463121105} + - component: {fileID: 5853581054351160381} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3763895073853234650 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3066625888151402122} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3903983810133874995} + m_Father: {fileID: 8323959702354881625} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7831853286471638443 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3066625888151402122} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3763895073853234650} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7287783120463121105 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3066625888151402122} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5853581054351160381 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3066625888151402122} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3084523117691500782 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7945865518577166777} + - component: {fileID: 5381119517291265539} + - component: {fileID: 1082460453344624820} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7945865518577166777 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3084523117691500782} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 559911178632471473} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5381119517291265539 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3084523117691500782} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1082460453344624820 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3084523117691500782} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3088356956066313123 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3956012326145650364} + - component: {fileID: 8687042284602624823} + - component: {fileID: 1175239060665485961} + - component: {fileID: 9058057859320398611} + - component: {fileID: 5319468106775323326} + m_Layer: 0 + m_Name: Obstacle_G (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3956012326145650364 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3088356956066313123} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: 3.327, y: 0.5728, z: -61.74} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &8687042284602624823 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3088356956066313123} + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1175239060665485961 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3088356956066313123} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &9058057859320398611 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3088356956066313123} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &5319468106775323326 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3088356956066313123} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &3198344991003342972 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1413738835243660632} + - component: {fileID: 5578053576671334245} + - component: {fileID: 8120437796831250909} + - component: {fileID: 8679760512242934014} + - component: {fileID: 3442813937593051021} + m_Layer: 0 + m_Name: Obstacle_H (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1413738835243660632 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3198344991003342972} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: 0.7071068, w: 0} + m_LocalPosition: {x: -3.548, y: 0.743, z: -62.68} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 1546225341509178861} + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5578053576671334245 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3198344991003342972} + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8120437796831250909 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3198344991003342972} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5fbb0c4334374934abc11d566db804a9, type: 2} + - {fileID: 2100000, guid: c4a4afe7921aa2f4582fccd2bd7f1efa, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &8679760512242934014 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3198344991003342972} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &3442813937593051021 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3198344991003342972} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &3269296381156875971 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1269871822992671403} + - component: {fileID: 4339502810987951826} + - component: {fileID: 8369484991496282804} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1269871822992671403 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3269296381156875971} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8858903739574336352} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4339502810987951826 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3269296381156875971} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8369484991496282804 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3269296381156875971} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3298750322347900492 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5334205409455479158} + - component: {fileID: 5532207274320854270} + - component: {fileID: 9006708667958637328} + - component: {fileID: 2552079181256759521} + - component: {fileID: 7171037238493681804} + m_Layer: 0 + m_Name: Obstacle_F + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5334205409455479158 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3298750322347900492} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.851} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3215045150813753675} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5532207274320854270 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3298750322347900492} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &9006708667958637328 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3298750322347900492} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &2552079181256759521 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3298750322347900492} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &7171037238493681804 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3298750322347900492} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &3331823641742330995 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6239215543279726208} + - component: {fileID: 1165320843168408579} + - component: {fileID: 2104082357326488137} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6239215543279726208 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3331823641742330995} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6272441957318210940} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1165320843168408579 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3331823641742330995} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2104082357326488137 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3331823641742330995} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3362104557713104718 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7148243724524578991} + - component: {fileID: 771054764275000398} + - component: {fileID: 8140372512039076235} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7148243724524578991 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3362104557713104718} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3650632538996874970} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &771054764275000398 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3362104557713104718} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8140372512039076235 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3362104557713104718} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3380897173547710354 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7345710577066718957} + m_Layer: 0 + m_Name: Bolts (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7345710577066718957 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3380897173547710354} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -1.66} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2598260812145293635} + - {fileID: 662692827279418910} + - {fileID: 7093956727240247196} + m_Father: {fileID: 6913307430280152876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3473370022978429462 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7244711365142094741} + - component: {fileID: 1479003345806190368} + - component: {fileID: 5750344678756113763} + - component: {fileID: 7943318556294934948} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7244711365142094741 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3473370022978429462} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5982999571487694588} + m_Father: {fileID: 5867351837055617134} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1479003345806190368 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3473370022978429462} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7244711365142094741} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &5750344678756113763 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3473370022978429462} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7943318556294934948 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3473370022978429462} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3521680693916620611 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5479742771485304598} + - component: {fileID: 5105238448383774342} + - component: {fileID: 7107989067905147120} + m_Layer: 0 + m_Name: Line_C (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &5479742771485304598 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3521680693916620611} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: 0.0012, y: -0.0331, z: -0.0001} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4874534950052537474} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5105238448383774342 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3521680693916620611} + m_Mesh: {fileID: -589622997007936144, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &7107989067905147120 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3521680693916620611} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 5192952931255712758, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3562569981916579656 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5588130657670918281} + - component: {fileID: 8026027995832272531} + - component: {fileID: 7313060160277050598} + - component: {fileID: 5488853238462963000} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5588130657670918281 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3562569981916579656} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 84512629255544137} + m_Father: {fileID: 2921864098059593577} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &8026027995832272531 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3562569981916579656} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5588130657670918281} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7313060160277050598 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3562569981916579656} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5488853238462963000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3562569981916579656} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3578608946248144690 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8504754379814620554} + m_Layer: 0 + m_Name: ObstacleSnakeBox (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8504754379814620554 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3578608946248144690} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.66, y: 0, z: 1.6} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 697471510447736326} + - {fileID: 4013603508265735570} + - {fileID: 5365184562732513371} + - {fileID: 5143348713795235738} + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3592796785796874690 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 745139267621437309} + - component: {fileID: 1919811675229229195} + - component: {fileID: 4172896720582407650} + - component: {fileID: 7276379741008173838} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &745139267621437309 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3592796785796874690} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3381853544983548761} + m_Father: {fileID: 1639302389400109493} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1919811675229229195 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3592796785796874690} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 745139267621437309} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4172896720582407650 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3592796785796874690} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7276379741008173838 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3592796785796874690} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3687002930096828119 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7761448134812016833} + - component: {fileID: 1095694087548678288} + - component: {fileID: 8981899688209398224} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7761448134812016833 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3687002930096828119} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8137621709046021151} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1095694087548678288 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3687002930096828119} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8981899688209398224 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3687002930096828119} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3687523016333563820 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8400684765625595255} + - component: {fileID: 5433929300955546078} + - component: {fileID: 7750943604145778604} + - component: {fileID: 4996023413810224534} + - component: {fileID: 5322158297373524190} + m_Layer: 0 + m_Name: Obstacle_F + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8400684765625595255 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3687523016333563820} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.851} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5942385969952372884} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5433929300955546078 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3687523016333563820} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &7750943604145778604 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3687523016333563820} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &4996023413810224534 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3687523016333563820} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &5322158297373524190 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3687523016333563820} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &3717125247589626080 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5976425304308968364} + - component: {fileID: 5006069281763404034} + - component: {fileID: 6530173294904731255} + - component: {fileID: 6951112866908224999} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5976425304308968364 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3717125247589626080} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3786142816469147303} + m_Father: {fileID: 2897711522538425094} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5006069281763404034 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3717125247589626080} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5976425304308968364} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6530173294904731255 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3717125247589626080} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &6951112866908224999 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3717125247589626080} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3754859921203872322 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2598260812145293635} + - component: {fileID: 3370155495791841881} + - component: {fileID: 2260453864581511833} + - component: {fileID: 4205471464457292043} + - component: {fileID: 1929301946321403606} + - component: {fileID: 3045773401468570135} + m_Layer: 0 + m_Name: Bolt_B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2598260812145293635 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3754859921203872322} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003774895, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -2.8548, z: -32.4267} + m_LocalScale: {x: 0.9060824, y: 0.9060824, z: 0.9060824} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7345710577066718957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3370155495791841881 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3754859921203872322} + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &2260453864581511833 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3754859921203872322} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 6859324791159361686, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &4205471464457292043 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3754859921203872322} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 6 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 0 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2598260812145293635} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 10, z: 0} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 0 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &1929301946321403606 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3754859921203872322} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4ca4301ea06e47b429d3186c76cd25e9, type: 3} + m_Name: + m_EditorClassIdentifier: + speedBoostAmount: 1 + duration: 5 +--- !u!64 &3045773401468570135 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3754859921203872322} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &3762423576960139226 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2918029099092491010} + m_Layer: 0 + m_Name: Obstacles + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &2918029099092491010 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3762423576960139226} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 150, y: 150, z: 150} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 1038014944123588338} + - {fileID: 2751142970691191760} + - {fileID: 2715831933401753751} + - {fileID: 6164155503161771644} + - {fileID: 5605010824562883316} + - {fileID: 3855605642326946929} + - {fileID: 3270770422282429721} + m_Father: {fileID: 6913307430280152876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &3777645660138876895 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7611660387616826684} + - component: {fileID: 92942288985904165} + - component: {fileID: 1017912786925811572} + - component: {fileID: 938068426694418746} + - component: {fileID: 1756284991838418509} + m_Layer: 0 + m_Name: Obstacle_A (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7611660387616826684 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3777645660138876895} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.05, y: 0.5826, z: -55.152} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 4998198826262003489} + - {fileID: 5225232746279245773} + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &92942288985904165 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3777645660138876895} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1017912786925811572 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3777645660138876895} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &938068426694418746 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3777645660138876895} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &1756284991838418509 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3777645660138876895} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &3781642872636723253 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6686641750917180700} + - component: {fileID: 6043857751710338347} + - component: {fileID: 8839661348472886637} + m_Layer: 0 + m_Name: Bad Boy (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6686641750917180700 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3781642872636723253} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000005960465, z: -1, w: 0} + m_LocalPosition: {x: 0.01682, y: -0.011920012, z: -0.01616} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8062905504329175418} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &6043857751710338347 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3781642872636723253} + m_Mesh: {fileID: -74375993299758551, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &8839661348472886637 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3781642872636723253} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -4040347994642848883, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1580535799172915004, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3848428401349774876 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3610209125805859896} + - component: {fileID: 828133609765026556} + - component: {fileID: 482983465863064557} + - component: {fileID: 4637367034452816530} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3610209125805859896 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3848428401349774876} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8894088666028713305} + m_Father: {fileID: 8164977802521349133} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &828133609765026556 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3848428401349774876} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3610209125805859896} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &482983465863064557 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3848428401349774876} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &4637367034452816530 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3848428401349774876} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3863585062487332225 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6341502589242078947} + - component: {fileID: 5842678819563042512} + - component: {fileID: 7839970123332059486} + m_Layer: 0 + m_Name: Line_B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6341502589242078947 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3863585062487332225} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: 0.0040000034, y: 0.00019999979, z: -0.000058489422} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7223982920611395933} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5842678819563042512 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3863585062487332225} + m_Mesh: {fileID: 1924753069908689346, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &7839970123332059486 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3863585062487332225} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 1259908407628275591, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3875599997930611399 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3287843288397077685} + - component: {fileID: 6960329627486365349} + - component: {fileID: 2222681150732271904} + m_Layer: 0 + m_Name: Line_B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3287843288397077685 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3875599997930611399} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: 0.0040000034, y: 0.00019999979, z: -0.000058489422} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6322818122895137150} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6960329627486365349 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3875599997930611399} + m_Mesh: {fileID: 1924753069908689346, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &2222681150732271904 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3875599997930611399} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 1259908407628275591, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3878782240472501845 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6589053093737303757} + - component: {fileID: 8555082819942116699} + - component: {fileID: 2969896258706199524} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6589053093737303757 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3878782240472501845} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 9222064515282753927} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8555082819942116699 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3878782240472501845} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2969896258706199524 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3878782240472501845} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3904961206682855705 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7570854551845543576} + - component: {fileID: 8053988707585569550} + - component: {fileID: 2735195996149422012} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7570854551845543576 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3904961206682855705} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8267157429010277339} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8053988707585569550 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3904961206682855705} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2735195996149422012 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3904961206682855705} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3908341780764750215 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 771082521436332861} + - component: {fileID: 1808863575516792251} + - component: {fileID: 3175533657502550} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &771082521436332861 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3908341780764750215} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5677263269048399853} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1808863575516792251 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3908341780764750215} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3175533657502550 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3908341780764750215} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3946564665333504543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3283351117379379990} + - component: {fileID: 2162080225899376255} + - component: {fileID: 821985305317481007} + - component: {fileID: 2493684935159683078} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3283351117379379990 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3946564665333504543} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5972876520223762046} + m_Father: {fileID: 2897711522538425094} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2162080225899376255 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3946564665333504543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3283351117379379990} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &821985305317481007 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3946564665333504543} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2493684935159683078 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3946564665333504543} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3962060885262448695 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7317028491235419291} + - component: {fileID: 7628698747929083931} + - component: {fileID: 506179695379560583} + - component: {fileID: 6554544294138986259} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7317028491235419291 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3962060885262448695} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3371058697406383595} + m_Father: {fileID: 6430294205366406323} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7628698747929083931 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3962060885262448695} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7317028491235419291} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &506179695379560583 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3962060885262448695} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &6554544294138986259 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3962060885262448695} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3967300814280737537 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7503079384127441225} + - component: {fileID: 2795975516341754232} + - component: {fileID: 8548104597053348619} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7503079384127441225 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3967300814280737537} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8714894878368059320} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &2795975516341754232 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3967300814280737537} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8548104597053348619 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3967300814280737537} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3979997280692226268 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2740167917152598956} + - component: {fileID: 3984632681132197074} + - component: {fileID: 4725623567787608605} + - component: {fileID: 2394420688668547727} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2740167917152598956 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3979997280692226268} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8575620675360636636} + m_Father: {fileID: 1639302389400109493} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3984632681132197074 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3979997280692226268} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2740167917152598956} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4725623567787608605 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3979997280692226268} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2394420688668547727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3979997280692226268} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4026521334702180106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4309544764610875998} + - component: {fileID: 6450952125079216682} + - component: {fileID: 4162767910223461983} + - component: {fileID: 88217848053542677} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4309544764610875998 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4026521334702180106} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8449870868197313907} + m_Father: {fileID: 6430294205366406323} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6450952125079216682 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4026521334702180106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4309544764610875998} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4162767910223461983 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4026521334702180106} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &88217848053542677 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4026521334702180106} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4054196295232843346 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2700368412159273265} + - component: {fileID: 2495007481088969325} + - component: {fileID: 6253187456271391444} + - component: {fileID: 8511368966234639158} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2700368412159273265 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4054196295232843346} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1294820591584568261} + m_Father: {fileID: 5867351837055617134} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2495007481088969325 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4054196295232843346} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2700368412159273265} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6253187456271391444 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4054196295232843346} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8511368966234639158 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4054196295232843346} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4062571949578736331 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3364560934079327364} + - component: {fileID: 6132006981535780542} + - component: {fileID: 4800850220914564939} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3364560934079327364 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4062571949578736331} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8647586972420634508} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &6132006981535780542 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4062571949578736331} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4800850220914564939 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4062571949578736331} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4078780551569973111 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8692286522828768183} + - component: {fileID: 144814255928618716} + - component: {fileID: 1908921820039258315} + m_Layer: 0 + m_Name: Laser (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8692286522828768183 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4078780551569973111} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: 1, w: 0} + m_LocalPosition: {x: -0.0775, y: 0.0005500794, z: -0.000029998972} + m_LocalScale: {x: 5, y: 5, z: 5} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 3346802318947026321} + m_Father: {fileID: 5834687521371244358} + m_LocalEulerAnglesHint: {x: -90, y: 180, z: 0} +--- !u!33 &144814255928618716 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4078780551569973111} + m_Mesh: {fileID: 938762473992563870, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &1908921820039258315 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4078780551569973111} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4095162116109829932 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2095240045878613121} + - component: {fileID: 7101831429438228756} + - component: {fileID: 6125885528487912147} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2095240045878613121 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4095162116109829932} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5023057870842535020} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &7101831429438228756 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4095162116109829932} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6125885528487912147 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4095162116109829932} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4120048807174688215 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 662411669077528250} + m_Layer: 0 + m_Name: Alleys (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &662411669077528250 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4120048807174688215} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -2.9899998, z: -30.88} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7223982920611395933} + - {fileID: 5421269898201282807} + - {fileID: 5288239783437265470} + m_Father: {fileID: 3244248915834602008} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4128045801407384889 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4679440632376438649} + - component: {fileID: 1689825370263369514} + - component: {fileID: 6628139238593312228} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4679440632376438649 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4128045801407384889} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7798090323235483668} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1689825370263369514 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4128045801407384889} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6628139238593312228 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4128045801407384889} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4186778575448596186 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8234841587370121767} + - component: {fileID: 4997656711550831283} + - component: {fileID: 6623045737680846394} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8234841587370121767 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4186778575448596186} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6939372422045046813} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4997656711550831283 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4186778575448596186} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6623045737680846394 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4186778575448596186} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4217508187361980939 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4660311822257877781} + - component: {fileID: 3670690545192863397} + - component: {fileID: 7788461634906675547} + - component: {fileID: 3663480466929605314} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4660311822257877781 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4217508187361980939} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 296886272756885494} + m_Father: {fileID: 7139633758267059528} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3670690545192863397 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4217508187361980939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4660311822257877781} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7788461634906675547 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4217508187361980939} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3663480466929605314 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4217508187361980939} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4254190999119359423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5225232746279245773} + - component: {fileID: 8802956979439253972} + - component: {fileID: 4817472824323728747} + m_Layer: 0 + m_Name: Arrow_C + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5225232746279245773 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4254190999119359423} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: -0.0507, y: -0.028, z: 0.0051} + m_LocalScale: {x: 2.5, y: 0.2862647, z: 0.3613828} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7611660387616826684} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!33 &8802956979439253972 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4254190999119359423} + m_Mesh: {fileID: -2376033533564513673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &4817472824323728747 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4254190999119359423} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4305700300515961669 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8334002869574091384} + - component: {fileID: 7650594522144657645} + - component: {fileID: 6735570802950183712} + - component: {fileID: 7281032570375058687} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8334002869574091384 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4305700300515961669} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2684507572496328690} + m_Father: {fileID: 1639302389400109493} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7650594522144657645 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4305700300515961669} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8334002869574091384} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6735570802950183712 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4305700300515961669} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7281032570375058687 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4305700300515961669} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4316792170218995604 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4325520255115945289} + - component: {fileID: 6628346506114883955} + - component: {fileID: 7458552291724944222} + - component: {fileID: 8161455054527332611} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4325520255115945289 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4316792170218995604} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3051858818496339516} + m_Father: {fileID: 1639302389400109493} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6628346506114883955 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4316792170218995604} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4325520255115945289} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7458552291724944222 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4316792170218995604} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8161455054527332611 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4316792170218995604} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4393109012821296733 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4013603508265735570} + - component: {fileID: 3794849134573899464} + - component: {fileID: 4367710470064617420} + - component: {fileID: 7900288668314692189} + - component: {fileID: 7274673022849668375} + m_Layer: 0 + m_Name: Obstacle_D (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4013603508265735570 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4393109012821296733} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -52.519} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8504754379814620554} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3794849134573899464 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4393109012821296733} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &4367710470064617420 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4393109012821296733} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &7900288668314692189 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4393109012821296733} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &7274673022849668375 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4393109012821296733} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &4422131154162217255 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3855605642326946929} + - component: {fileID: 2986485752092189495} + - component: {fileID: 6297717502534785554} + - component: {fileID: 1339084449313954440} + - component: {fileID: 5036002865718879048} + m_Layer: 0 + m_Name: Obstacle_A (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3855605642326946929 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4422131154162217255} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0031299999, y: -0.010209978, z: 0.00059890747} + m_LocalScale: {x: -12.82, y: -12.82, z: -12.82} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2918029099092491010} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2986485752092189495 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4422131154162217255} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6297717502534785554 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4422131154162217255} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &1339084449313954440 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4422131154162217255} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &5036002865718879048 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4422131154162217255} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &4424403683460503674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2966206168927848833} + - component: {fileID: 970289942451876947} + - component: {fileID: 3247005493677273642} + - component: {fileID: 4534941999709616858} + - component: {fileID: 7574322648044795962} + m_Layer: 0 + m_Name: Obstacle_G (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2966206168927848833 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4424403683460503674} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: 3.327, y: 0.5728, z: -61.74} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &970289942451876947 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4424403683460503674} + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3247005493677273642 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4424403683460503674} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &4534941999709616858 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4424403683460503674} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &7574322648044795962 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4424403683460503674} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &4440982460686150818 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4316007920573725961} + - component: {fileID: 1752431960715905281} + - component: {fileID: 5198226672108587621} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4316007920573725961 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4440982460686150818} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1276222981457524980} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1752431960715905281 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4440982460686150818} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5198226672108587621 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4440982460686150818} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4497293340325786586 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4080153651293010863} + - component: {fileID: 2633949589612469146} + - component: {fileID: 687329461669869661} + m_Layer: 0 + m_Name: Laser (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4080153651293010863 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4497293340325786586} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: 1, w: 0} + m_LocalPosition: {x: -0.053499997, y: -0.0005500794, z: -0.000029999064} + m_LocalScale: {x: 5, y: 5, z: 5} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 833721422913710288} + m_Father: {fileID: 8258523698150595081} + m_LocalEulerAnglesHint: {x: -90, y: 180, z: 0} +--- !u!33 &2633949589612469146 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4497293340325786586} + m_Mesh: {fileID: 938762473992563870, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &687329461669869661 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4497293340325786586} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4507606196936864014 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8544143144886968763} + - component: {fileID: 3030209475836390968} + - component: {fileID: 5446032995501886615} + - component: {fileID: 8252049552826170078} + - component: {fileID: 3706725072909081309} + m_Layer: 0 + m_Name: Obstacle_D + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8544143144886968763 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4507606196936864014} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -53.111} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3215045150813753675} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3030209475836390968 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4507606196936864014} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &5446032995501886615 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4507606196936864014} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &8252049552826170078 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4507606196936864014} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &3706725072909081309 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4507606196936864014} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &4525794893636391976 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4998198826262003489} + - component: {fileID: 2075019041251540343} + - component: {fileID: 6616851299261992094} + m_Layer: 0 + m_Name: Laser (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4998198826262003489 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4525794893636391976} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: 1, w: 0} + m_LocalPosition: {x: -0.0775, y: 0.0005500794, z: -0.000029998972} + m_LocalScale: {x: 5, y: 5, z: 5} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 1744336415351554431} + m_Father: {fileID: 7611660387616826684} + m_LocalEulerAnglesHint: {x: -90, y: 180, z: 0} +--- !u!33 &2075019041251540343 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4525794893636391976} + m_Mesh: {fileID: 938762473992563870, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &6616851299261992094 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4525794893636391976} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4535763316888761141 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5365184562732513371} + - component: {fileID: 4390878835666529018} + - component: {fileID: 7926748684767910933} + - component: {fileID: 1983186588477665473} + - component: {fileID: 350178065077494754} + m_Layer: 0 + m_Name: Obstacle_F + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5365184562732513371 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4535763316888761141} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.851} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8504754379814620554} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4390878835666529018 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4535763316888761141} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &7926748684767910933 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4535763316888761141} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &1983186588477665473 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4535763316888761141} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &350178065077494754 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4535763316888761141} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &4556114388228788666 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8029289731867082086} + - component: {fileID: 3602592103402540138} + - component: {fileID: 4656948699278491796} + - component: {fileID: 6619698568077557515} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8029289731867082086 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4556114388228788666} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4299139934981122151} + m_Father: {fileID: 7874575408137780197} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3602592103402540138 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4556114388228788666} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8029289731867082086} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4656948699278491796 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4556114388228788666} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &6619698568077557515 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4556114388228788666} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4558287843490122333 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1249901775163860984} + - component: {fileID: 9043157882131548926} + - component: {fileID: 679017325527811610} + - component: {fileID: 8617099168812895359} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1249901775163860984 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4558287843490122333} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7037599156017721499} + m_Father: {fileID: 7874575408137780197} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &9043157882131548926 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4558287843490122333} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1249901775163860984} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &679017325527811610 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4558287843490122333} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8617099168812895359 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4558287843490122333} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4567716116432550438 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3211779145275666690} + m_Layer: 0 + m_Name: Obstacles (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3211779145275666690 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4567716116432550438} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -3.48, z: 39.78} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1725088507031317702} + - {fileID: 2966206168927848833} + - {fileID: 1942394781813426319} + - {fileID: 3557913417478294456} + - {fileID: 881513026108316146} + - {fileID: 5942385969952372884} + - {fileID: 3478840900650390782} + - {fileID: 972375915274881548} + - {fileID: 3535526604550154660} + - {fileID: 2379974123154221011} + - {fileID: 5834687521371244358} + - {fileID: 8862858381155526105} + m_Father: {fileID: 6913307430280152876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4593830517746280285 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5942385969952372884} + m_Layer: 0 + m_Name: ObstacleSnakeBox + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5942385969952372884 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4593830517746280285} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5289174693447237628} + - {fileID: 2055109379696536499} + - {fileID: 8400684765625595255} + - {fileID: 7580823329279118703} + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4600454652819441007 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8062905504329175418} + m_Layer: 8 + m_Name: Misc + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8062905504329175418 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4600454652819441007} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6686641750917180700} + - {fileID: 4194400321491315592} + - {fileID: 3882119051928657301} + m_Father: {fileID: 3120596899324720466} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4602158612361677269 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2687977031020188529} + - component: {fileID: 898517861140103488} + - component: {fileID: 4105973073554702644} + - component: {fileID: 5174904991327911568} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2687977031020188529 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4602158612361677269} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3673649294289440288} + m_Father: {fileID: 2921864098059593577} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &898517861140103488 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4602158612361677269} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2687977031020188529} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4105973073554702644 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4602158612361677269} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5174904991327911568 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4602158612361677269} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4616094079794795324 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1829518232258083674} + - component: {fileID: 3039331384219566976} + - component: {fileID: 8104014882809190118} + - component: {fileID: 2073135400790050610} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1829518232258083674 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4616094079794795324} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 646757840070484398} + m_Father: {fileID: 7139633758267059528} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3039331384219566976 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4616094079794795324} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1829518232258083674} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &8104014882809190118 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4616094079794795324} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2073135400790050610 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4616094079794795324} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4672221824891443423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1785301408553799328} + - component: {fileID: 7598202067481345236} + - component: {fileID: 6226083862180349355} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1785301408553799328 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4672221824891443423} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 590211754292353558} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &7598202067481345236 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4672221824891443423} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6226083862180349355 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4672221824891443423} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4673498764977920351 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 483169538763802572} + - component: {fileID: 2943993417696278671} + - component: {fileID: 8667254956551442068} + m_Layer: 0 + m_Name: Laser (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &483169538763802572 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4673498764977920351} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.03305, y: 0.000049972547, z: -0.000029999015} + m_LocalScale: {x: 5, y: 5, z: 5} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 2915039441653973585} + m_Father: {fileID: 2379974123154221011} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &2943993417696278671 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4673498764977920351} + m_Mesh: {fileID: 938762473992563870, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &8667254956551442068 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4673498764977920351} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4747797208777689184 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7152156404981487956} + - component: {fileID: 1569892539006574627} + - component: {fileID: 4335103113938153976} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7152156404981487956 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4747797208777689184} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5474202330601434072} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1569892539006574627 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4747797208777689184} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4335103113938153976 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4747797208777689184} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4800598846959940113 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3074727111422020062} + - component: {fileID: 5913152938591186926} + - component: {fileID: 4617546981218549542} + m_Layer: 0 + m_Name: Line_C (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &3074727111422020062 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4800598846959940113} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: 0.0012, y: -0.0331, z: -0.0001} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5288239783437265470} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5913152938591186926 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4800598846959940113} + m_Mesh: {fileID: -589622997007936144, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &4617546981218549542 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4800598846959940113} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 5192952931255712758, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4808712722627825359 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1925112579671959398} + - component: {fileID: 1875963846348763861} + - component: {fileID: 8213850563908414559} + - component: {fileID: 8586820384660477647} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1925112579671959398 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4808712722627825359} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3606581053194337788} + m_Father: {fileID: 2921864098059593577} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1875963846348763861 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4808712722627825359} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1925112579671959398} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &8213850563908414559 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4808712722627825359} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8586820384660477647 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4808712722627825359} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &4811565445281743268 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2684507572496328690} + - component: {fileID: 946725139480173662} + - component: {fileID: 4143529234550646743} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2684507572496328690 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4811565445281743268} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8334002869574091384} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &946725139480173662 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4811565445281743268} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4143529234550646743 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4811565445281743268} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4854818385910994079 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8118710411340934499} + - component: {fileID: 856694597324905661} + - component: {fileID: 2966925828994303457} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8118710411340934499 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4854818385910994079} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1978221947511878199} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &856694597324905661 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4854818385910994079} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2966925828994303457 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4854818385910994079} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4920177090148491785 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3110185468336260839} + - component: {fileID: 191494431795685853} + - component: {fileID: 2891989517549532729} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3110185468336260839 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4920177090148491785} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6704819293216337618} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &191494431795685853 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4920177090148491785} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2891989517549532729 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4920177090148491785} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4942035060429237245 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1215075518211976296} + - component: {fileID: 1668004319343806157} + - component: {fileID: 4386917366635913922} + - component: {fileID: 1857315615128459053} + - component: {fileID: 1468847346788680157} + - component: {fileID: 244220817005176628} + m_Layer: 0 + m_Name: Bolt_B (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1215075518211976296 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4942035060429237245} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003774895, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.437, y: -2.8548, z: -32.4267} + m_LocalScale: {x: 0.9060824, y: 0.9060824, z: 0.9060824} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5711583358438238382} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1668004319343806157 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4942035060429237245} + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &4386917366635913922 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4942035060429237245} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 6859324791159361686, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &1857315615128459053 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4942035060429237245} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 6 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 0 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1215075518211976296} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 10, z: 0} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 0 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &1468847346788680157 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4942035060429237245} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4ca4301ea06e47b429d3186c76cd25e9, type: 3} + m_Name: + m_EditorClassIdentifier: + speedBoostAmount: 1 + duration: 5 +--- !u!64 &244220817005176628 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4942035060429237245} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &5031579702562551538 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2040412242171135251} + - component: {fileID: 8280070619121101074} + - component: {fileID: 3141567567221510131} + m_Layer: 0 + m_Name: Line_C (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2040412242171135251 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5031579702562551538} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: 0.0012, y: -0.0331, z: -0.0001} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5421269898201282807} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8280070619121101074 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5031579702562551538} + m_Mesh: {fileID: -589622997007936144, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &3141567567221510131 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5031579702562551538} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 5192952931255712758, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5075655146598687115 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8423058776034326558} + - component: {fileID: 2286810433128342076} + - component: {fileID: 6830529721748109976} + - component: {fileID: 6936725786660583727} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8423058776034326558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5075655146598687115} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5737715526378505797} + m_Father: {fileID: 2921864098059593577} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2286810433128342076 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5075655146598687115} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8423058776034326558} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6830529721748109976 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5075655146598687115} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &6936725786660583727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5075655146598687115} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &5156612659232102202 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6026266922264361002} + - component: {fileID: 8054712058723531061} + - component: {fileID: 5437319479260618158} + m_Layer: 0 + m_Name: Laser (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6026266922264361002 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5156612659232102202} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.03305, y: 0.000049972547, z: -0.000029999015} + m_LocalScale: {x: 5, y: 5, z: 5} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 3646376385963098919} + m_Father: {fileID: 6859429457253276108} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &8054712058723531061 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5156612659232102202} + m_Mesh: {fileID: 938762473992563870, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &5437319479260618158 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5156612659232102202} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5180067968097335629 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4499927287791972063} + - component: {fileID: 1346931197520251267} + m_Layer: 0 + m_Name: CoinParents (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4499927287791972063 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5180067968097335629} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: 0.7071068, w: 0} + m_LocalPosition: {x: 0, y: -2.76, z: -27.8} + m_LocalScale: {x: 149.99997, y: 150.00003, z: 150.00003} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 4066115968620491377} + - {fileID: 7139633758267059528} + - {fileID: 8164977802521349133} + m_Father: {fileID: 3244248915834602008} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &1346931197520251267 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5180067968097335629} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4b1effc2ff8bc134a97d96701dcc10c1, type: 3} + m_Name: + m_EditorClassIdentifier: + coinParents: + - {fileID: 318923121376757543} + - {fileID: 6372130788855348234} + - {fileID: 1770050910196995971} + coinChance: 40 +--- !u!1 &5189120013095280237 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7239722483864620486} + - component: {fileID: 1752265013419943855} + - component: {fileID: 5525294920663202010} + - component: {fileID: 6050823539458048764} + - component: {fileID: 8152813425776827083} + m_Layer: 0 + m_Name: Obstacle_D (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7239722483864620486 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5189120013095280237} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -52.519} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 972375915274881548} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1752265013419943855 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5189120013095280237} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &5525294920663202010 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5189120013095280237} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &6050823539458048764 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5189120013095280237} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &8152813425776827083 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5189120013095280237} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5202018993090066154 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 695099776293669428} + - component: {fileID: 1388951831149570160} + - component: {fileID: 8874280551055836126} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &695099776293669428 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5202018993090066154} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4905988966987160657} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1388951831149570160 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5202018993090066154} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8874280551055836126 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5202018993090066154} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5244035687901675881 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6939372422045046813} + - component: {fileID: 7524485676226445622} + - component: {fileID: 2624640189393506104} + - component: {fileID: 2511820485922428336} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6939372422045046813 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5244035687901675881} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8234841587370121767} + m_Father: {fileID: 8164977802521349133} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7524485676226445622 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5244035687901675881} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6939372422045046813} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &2624640189393506104 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5244035687901675881} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2511820485922428336 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5244035687901675881} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &5279270132343662282 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6601735550508559197} + - component: {fileID: 2402612965363774229} + - component: {fileID: 461741177120331572} + - component: {fileID: 7456626353002269704} + - component: {fileID: 346779679837970897} + m_Layer: 0 + m_Name: Obstacle_D (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6601735550508559197 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5279270132343662282} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -52.519} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3215045150813753675} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2402612965363774229 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5279270132343662282} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &461741177120331572 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5279270132343662282} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &7456626353002269704 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5279270132343662282} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &346779679837970897 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5279270132343662282} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5284535254295086530 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6793466736900749632} + - component: {fileID: 345799346359133282} + - component: {fileID: 332388093757486175} + - component: {fileID: 3450587352153320448} + - component: {fileID: 5547086249446242625} + m_Layer: 0 + m_Name: Obstacle_F (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6793466736900749632 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5284535254295086530} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.265} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 972375915274881548} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &345799346359133282 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5284535254295086530} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &332388093757486175 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5284535254295086530} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &3450587352153320448 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5284535254295086530} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &5547086249446242625 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5284535254295086530} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5295351514408649490 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3236073922845941376} + - component: {fileID: 8142911199109668022} + - component: {fileID: 6789469215857891358} + - component: {fileID: 7072736407060944468} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3236073922845941376 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5295351514408649490} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2098756767989205103} + m_Father: {fileID: 4066115968620491377} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &8142911199109668022 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5295351514408649490} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3236073922845941376} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6789469215857891358 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5295351514408649490} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7072736407060944468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5295351514408649490} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &5312660463580721829 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8449870868197313907} + - component: {fileID: 1411833294775723691} + - component: {fileID: 3117067050655654649} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8449870868197313907 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5312660463580721829} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4309544764610875998} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1411833294775723691 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5312660463580721829} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3117067050655654649 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5312660463580721829} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5330086947211353551 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7871324132405239834} + - component: {fileID: 3180746154149294952} + - component: {fileID: 6272167822556554284} + - component: {fileID: 3821883719910433348} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7871324132405239834 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5330086947211353551} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6470884700206937126} + m_Father: {fileID: 7139633758267059528} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3180746154149294952 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5330086947211353551} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7871324132405239834} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6272167822556554284 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5330086947211353551} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3821883719910433348 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5330086947211353551} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &5414995452367946154 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5737715526378505797} + - component: {fileID: 8657045367476628570} + - component: {fileID: 4656773228339982891} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5737715526378505797 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5414995452367946154} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8423058776034326558} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8657045367476628570 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5414995452367946154} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4656773228339982891 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5414995452367946154} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5470293771980453862 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9030580908599709115} + - component: {fileID: 2047332308120621967} + - component: {fileID: 8613398571312960578} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9030580908599709115 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5470293771980453862} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8575222913715070593} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &2047332308120621967 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5470293771980453862} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8613398571312960578 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5470293771980453862} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5509210229097174336 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5972876520223762046} + - component: {fileID: 4793120996075071523} + - component: {fileID: 7887852664521868658} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5972876520223762046 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5509210229097174336} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3283351117379379990} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4793120996075071523 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5509210229097174336} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7887852664521868658 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5509210229097174336} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5510036101216025028 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1546225341509178861} + - component: {fileID: 1116606933185770788} + - component: {fileID: 5283500191452419156} + m_Layer: 0 + m_Name: Arrow_C + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1546225341509178861 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5510036101216025028} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 1, w: 0} + m_LocalPosition: {x: -0.2226, y: 0.0529, z: 0} + m_LocalScale: {x: 2.5, y: 0.2862647, z: 0.3613828} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1413738835243660632} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 180} +--- !u!33 &1116606933185770788 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5510036101216025028} + m_Mesh: {fileID: -2376033533564513673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &5283500191452419156 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5510036101216025028} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5583632012643142200 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5671694324479016644} + - component: {fileID: 589487807522261758} + - component: {fileID: 5125716159987935246} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5671694324479016644 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5583632012643142200} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 878978840315371830} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &589487807522261758 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5583632012643142200} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5125716159987935246 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5583632012643142200} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5592082011694935425 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8323959702354881625} + m_Layer: 0 + m_Name: CoinParent (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8323959702354881625 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5592082011694935425} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0029999998, y: -0.002849996, z: 0.00091171265} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3763895073853234650} + - {fileID: 3090662642425326424} + - {fileID: 8647586972420634508} + - {fileID: 61310345623358392} + - {fileID: 6292028945730150314} + - {fileID: 8208309273493532987} + - {fileID: 9222064515282753927} + m_Father: {fileID: 2352062473856957639} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5601845841517362306 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3786142816469147303} + - component: {fileID: 5700667670590071366} + - component: {fileID: 7841535665875697535} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3786142816469147303 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5601845841517362306} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5976425304308968364} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5700667670590071366 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5601845841517362306} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7841535665875697535 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5601845841517362306} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5606870332057941535 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3120596899324720466} + - component: {fileID: 1605254099495473984} + - component: {fileID: 7604749750387098141} + - component: {fileID: 1975349042392672642} + m_Layer: 8 + m_Name: Stairs_C (1) + m_TagString: Ground + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &3120596899324720466 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5606870332057941535} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.7071068, z: 0.7071068, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8062905504329175418} + m_Father: {fileID: 3244248915834602008} + m_LocalEulerAnglesHint: {x: -90, y: 180, z: 0} +--- !u!33 &1605254099495473984 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5606870332057941535} + m_Mesh: {fileID: -7387004673135538681, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &7604749750387098141 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5606870332057941535} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &1975349042392672642 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5606870332057941535} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7387004673135538681, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &5626594122411817304 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8141252729946709348} + - component: {fileID: 2323181751251699416} + - component: {fileID: 6053367467306519162} + - component: {fileID: 7173249710306458612} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8141252729946709348 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5626594122411817304} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6944381632010093417} + m_Father: {fileID: 7874575408137780197} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2323181751251699416 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5626594122411817304} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8141252729946709348} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6053367467306519162 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5626594122411817304} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7173249710306458612 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5626594122411817304} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &5626684926609921947 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6805235099129936218} + - component: {fileID: 2756745472345189370} + - component: {fileID: 7025628039442418745} + m_Layer: 0 + m_Name: Line_B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &6805235099129936218 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5626684926609921947} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: -0.0058, y: 0.0314, z: -0.0001} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4874534950052537474} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2756745472345189370 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5626684926609921947} + m_Mesh: {fileID: 1924753069908689346, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &7025628039442418745 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5626684926609921947} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 1259908407628275591, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5645912960321728453 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6274050391127554574} + - component: {fileID: 9131026859576285848} + - component: {fileID: 4029945042501533651} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6274050391127554574 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5645912960321728453} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4367208486116652349} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &9131026859576285848 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5645912960321728453} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4029945042501533651 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5645912960321728453} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5730825420894992804 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5834687521371244358} + - component: {fileID: 7931325929996159702} + - component: {fileID: 6368320481172302593} + - component: {fileID: 4880647563575180034} + - component: {fileID: 8247764476005583355} + m_Layer: 0 + m_Name: Obstacle_A (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5834687521371244358 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5730825420894992804} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.05, y: 0.5826, z: -55.152} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 8692286522828768183} + - {fileID: 5197548669799759821} + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &7931325929996159702 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5730825420894992804} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6368320481172302593 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5730825420894992804} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &4880647563575180034 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5730825420894992804} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &8247764476005583355 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5730825420894992804} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5732269296804021164 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2751142970691191760} + - component: {fileID: 77276848884073935} + - component: {fileID: 2436288509914331799} + - component: {fileID: 8547825041605684279} + - component: {fileID: 2122980129565564309} + m_Layer: 0 + m_Name: Obstacle_G (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2751142970691191760 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5732269296804021164} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.019919999, y: 0.0052300096, z: 0.00030136108} + m_LocalScale: {x: -12.82, y: -12.82, z: -12.82} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2918029099092491010} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &77276848884073935 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5732269296804021164} + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2436288509914331799 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5732269296804021164} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &8547825041605684279 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5732269296804021164} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &2122980129565564309 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5732269296804021164} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5801816478530946985 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6811185026552390379} + - component: {fileID: 3918850380511539650} + - component: {fileID: 1524404161981052919} + - component: {fileID: 1994024478229169508} + - component: {fileID: 1254336585908924399} + m_Layer: 0 + m_Name: Obstacle_D (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6811185026552390379 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5801816478530946985} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -52.519} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6701110597616873498} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3918850380511539650 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5801816478530946985} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &1524404161981052919 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5801816478530946985} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &1994024478229169508 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5801816478530946985} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &1254336585908924399 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5801816478530946985} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5833160877270306952 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5023057870842535020} + - component: {fileID: 6995438191664199170} + - component: {fileID: 2334951587035852164} + - component: {fileID: 3359089752383449570} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5023057870842535020 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5833160877270306952} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2095240045878613121} + m_Father: {fileID: 7139633758267059528} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6995438191664199170 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5833160877270306952} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5023057870842535020} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &2334951587035852164 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5833160877270306952} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3359089752383449570 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5833160877270306952} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &5845546242845230081 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6173739050647133257} + - component: {fileID: 4944892032472307012} + - component: {fileID: 110477362113060671} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6173739050647133257 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5845546242845230081} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7540058696358848892} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4944892032472307012 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5845546242845230081} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &110477362113060671 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5845546242845230081} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5861243404586651278 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2712131919527974610} + - component: {fileID: 1460434222268671063} + - component: {fileID: 4779649349726467932} + - component: {fileID: 4153113399254224542} + - component: {fileID: 940021674397193169} + m_Layer: 0 + m_Name: Obstacle_D + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2712131919527974610 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5861243404586651278} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -53.111} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6701110597616873498} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1460434222268671063 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5861243404586651278} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &4779649349726467932 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5861243404586651278} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &4153113399254224542 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5861243404586651278} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &940021674397193169 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5861243404586651278} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5881339069548083274 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4479256775088773384} + m_Layer: 0 + m_Name: Obstacles + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4479256775088773384 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5881339069548083274} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1413738835243660632} + - {fileID: 3956012326145650364} + - {fileID: 5076044937773840536} + - {fileID: 8684947796581504405} + - {fileID: 4950110776704568840} + - {fileID: 3215045150813753675} + - {fileID: 8504754379814620554} + - {fileID: 6701110597616873498} + - {fileID: 2959863262927896180} + - {fileID: 6859429457253276108} + - {fileID: 7611660387616826684} + - {fileID: 8258523698150595081} + m_Father: {fileID: 6913307430280152876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &5908563796918351749 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8258523698150595081} + - component: {fileID: 8018378780101292662} + - component: {fileID: 9017390078037754048} + - component: {fileID: 2669210402071319138} + - component: {fileID: 3055207558317102618} + m_Layer: 0 + m_Name: Obstacle_A (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8258523698150595081 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5908563796918351749} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: 0.43, y: 0.5826, z: -54.259} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 4080153651293010863} + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &8018378780101292662 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5908563796918351749} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &9017390078037754048 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5908563796918351749} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &2669210402071319138 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5908563796918351749} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &3055207558317102618 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5908563796918351749} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5909988239330730677 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 590211754292353558} + - component: {fileID: 6186094202218919202} + - component: {fileID: 4661548826669522015} + - component: {fileID: 2512540724256309926} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &590211754292353558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5909988239330730677} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1785301408553799328} + m_Father: {fileID: 5631149046733040878} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6186094202218919202 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5909988239330730677} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 590211754292353558} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4661548826669522015 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5909988239330730677} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2512540724256309926 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5909988239330730677} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &5939196188055989160 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6558706759631227757} + - component: {fileID: 5873340261077244266} + - component: {fileID: 1215318118915408566} + - component: {fileID: 2059207217745925628} + - component: {fileID: 1252435824558191127} + m_Layer: 0 + m_Name: Obstacle_F (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6558706759631227757 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5939196188055989160} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.265} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3478840900650390782} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5873340261077244266 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5939196188055989160} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &1215318118915408566 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5939196188055989160} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &2059207217745925628 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5939196188055989160} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &1252435824558191127 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5939196188055989160} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &5968206144539743819 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8858903739574336352} + - component: {fileID: 626225796898355288} + - component: {fileID: 3349847771493059672} + - component: {fileID: 5308645728590214524} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8858903739574336352 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5968206144539743819} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1269871822992671403} + m_Father: {fileID: 7874575408137780197} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &626225796898355288 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5968206144539743819} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8858903739574336352} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3349847771493059672 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5968206144539743819} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5308645728590214524 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5968206144539743819} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &6078745911118218970 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7878547707524428353} + - component: {fileID: 8703133160669187371} + - component: {fileID: 5070369338868159676} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7878547707524428353 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6078745911118218970} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5353840681324201642} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8703133160669187371 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6078745911118218970} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5070369338868159676 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6078745911118218970} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6106781041403163407 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 662692827279418910} + - component: {fileID: 3210578477016722952} + - component: {fileID: 6155852130686826176} + - component: {fileID: 944469615666850137} + - component: {fileID: 4393421628926410136} + - component: {fileID: 7066374998241530277} + m_Layer: 0 + m_Name: Bolt_B (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &662692827279418910 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6106781041403163407} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003774895, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.437, y: -2.8548, z: -32.4267} + m_LocalScale: {x: 0.9060824, y: 0.9060824, z: 0.9060824} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7345710577066718957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3210578477016722952 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6106781041403163407} + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &6155852130686826176 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6106781041403163407} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 6859324791159361686, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &944469615666850137 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6106781041403163407} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 6 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 0 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 662692827279418910} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 10, z: 0} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 0 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &4393421628926410136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6106781041403163407} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4ca4301ea06e47b429d3186c76cd25e9, type: 3} + m_Name: + m_EditorClassIdentifier: + speedBoostAmount: 1 + duration: 5 +--- !u!64 &7066374998241530277 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6106781041403163407} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &6133670765614478790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1038014944123588338} + - component: {fileID: 4382924164738796567} + - component: {fileID: 7801490103350528398} + - component: {fileID: 2209255220984538589} + - component: {fileID: 6327882985973671937} + m_Layer: 0 + m_Name: Obstacle_H (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1038014944123588338 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6133670765614478790} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.019589998, y: 0.018260002, z: 0.0004196167} + m_LocalScale: {x: -12.82, y: -12.82, z: -12.82} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2918029099092491010} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4382924164738796567 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6133670765614478790} + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7801490103350528398 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6133670765614478790} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5fbb0c4334374934abc11d566db804a9, type: 2} + - {fileID: 2100000, guid: c4a4afe7921aa2f4582fccd2bd7f1efa, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &2209255220984538589 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6133670765614478790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &6327882985973671937 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6133670765614478790} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &6133944453349464649 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6718453647629308592} + - component: {fileID: 8540132134323926374} + - component: {fileID: 84782194219789491} + - component: {fileID: 743050666824343823} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6718453647629308592 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6133944453349464649} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4489015601206511608} + m_Father: {fileID: 8164977802521349133} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &8540132134323926374 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6133944453349464649} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6718453647629308592} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &84782194219789491 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6133944453349464649} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &743050666824343823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6133944453349464649} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &6140302866684785981 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1352074816104008123} + - component: {fileID: 5985445528763233149} + - component: {fileID: 786994760802388775} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1352074816104008123 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6140302866684785981} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6681631495947121124} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5985445528763233149 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6140302866684785981} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &786994760802388775 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6140302866684785981} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6150094904344431118 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2389033369725905185} + - component: {fileID: 3955319524329619790} + - component: {fileID: 2956293062461530304} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2389033369725905185 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6150094904344431118} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 151714113207297456} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &3955319524329619790 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6150094904344431118} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2956293062461530304 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6150094904344431118} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6190846126445444707 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1350730645013086917} + - component: {fileID: 8988767243892407549} + - component: {fileID: 7500528652798228412} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1350730645013086917 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6190846126445444707} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8152163492607586114} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8988767243892407549 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6190846126445444707} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7500528652798228412 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6190846126445444707} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6202906216851268799 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2638153453031742628} + - component: {fileID: 8734166024914350268} + - component: {fileID: 2037414330414280409} + - component: {fileID: 2786845540867556088} + m_Layer: 8 + m_Name: Alley_A (1) + m_TagString: Ground + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2638153453031742628 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6202906216851268799} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 12} + m_LocalScale: {x: 100, y: 99.999985, z: 99.999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 350688704758393573} + - {fileID: 6797008481071899116} + - {fileID: 8303676353638317357} + m_Father: {fileID: 1242128596142909725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8734166024914350268 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6202906216851268799} + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &2037414330414280409 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6202906216851268799} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &2786845540867556088 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6202906216851268799} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &6280477922861516063 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6338393964682837298} + - component: {fileID: 1528755671267030122} + - component: {fileID: 780122985081663037} + - component: {fileID: 1344989165514302942} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6338393964682837298 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6280477922861516063} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3638045841758922926} + m_Father: {fileID: 3558021963420002246} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1528755671267030122 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6280477922861516063} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6338393964682837298} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &780122985081663037 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6280477922861516063} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1344989165514302942 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6280477922861516063} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &6304674840052910003 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7496318704418837400} + - component: {fileID: 6845132892568979370} + - component: {fileID: 8068709273344660129} + m_Layer: 0 + m_Name: Line_A + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7496318704418837400 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6304674840052910003} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.95774436, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4874534950052537474} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!33 &6845132892568979370 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6304674840052910003} + m_Mesh: {fileID: 6811696063975250618, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &8068709273344660129 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6304674840052910003} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 5192952931255712758, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6307708796225828550 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3180920752820534240} + - component: {fileID: 6251495089470593585} + - component: {fileID: 8207022565675257965} + - component: {fileID: 3027614254604994492} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3180920752820534240 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6307708796225828550} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 123540665821060665} + m_Father: {fileID: 7874575408137780197} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6251495089470593585 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6307708796225828550} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3180920752820534240} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &8207022565675257965 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6307708796225828550} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3027614254604994492 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6307708796225828550} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &6337894439242183124 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5931513008942373663} + - component: {fileID: 4923423215910019227} + - component: {fileID: 180786186967625208} + - component: {fileID: 2166740903118199486} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5931513008942373663 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6337894439242183124} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6462284618070522558} + m_Father: {fileID: 5631149046733040878} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &4923423215910019227 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6337894439242183124} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5931513008942373663} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &180786186967625208 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6337894439242183124} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2166740903118199486 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6337894439242183124} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &6372130788855348234 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7139633758267059528} + m_Layer: 0 + m_Name: CoinParent (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7139633758267059528 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6372130788855348234} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.010604024, z: 0.00091552734} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7871324132405239834} + - {fileID: 7209594298815629233} + - {fileID: 4660311822257877781} + - {fileID: 8137621709046021151} + - {fileID: 5677263269048399853} + - {fileID: 1829518232258083674} + - {fileID: 5023057870842535020} + m_Father: {fileID: 4499927287791972063} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6437174279158984408 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6701110597616873498} + m_Layer: 0 + m_Name: ObstacleSnakeBox (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6701110597616873498 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6437174279158984408} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 1.27, y: 0, z: 3.19} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2712131919527974610} + - {fileID: 6811185026552390379} + - {fileID: 8099282990537582787} + - {fileID: 3657778300029136322} + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6480368538499007827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4300449242099025923} + - component: {fileID: 1683579066088771190} + m_Layer: 0 + m_Name: CoinParents + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4300449242099025923 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6480368538499007827} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: 0.7071068, w: 0} + m_LocalPosition: {x: 0, y: 0.784, z: -65.54} + m_LocalScale: {x: 149.99997, y: 150.00003, z: 150.00003} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 5631149046733040878} + - {fileID: 2921864098059593577} + - {fileID: 2897711522538425094} + m_Father: {fileID: 3244248915834602008} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &1683579066088771190 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6480368538499007827} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4b1effc2ff8bc134a97d96701dcc10c1, type: 3} + m_Name: + m_EditorClassIdentifier: + coinParents: + - {fileID: 2814729748395869988} + - {fileID: 1722286892110473859} + - {fileID: 6504806440129924307} + coinChance: 40 +--- !u!1 &6504806440129924307 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2897711522538425094} + m_Layer: 0 + m_Name: CoinParent (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2897711522538425094 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6504806440129924307} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0029999998, y: -0.002849996, z: 0.00091171265} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4356398060664691143} + - {fileID: 3283351117379379990} + - {fileID: 6272441957318210940} + - {fileID: 5474202330601434072} + - {fileID: 559911178632471473} + - {fileID: 5976425304308968364} + - {fileID: 1978221947511878199} + m_Father: {fileID: 4300449242099025923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6540144387298015507 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6430294205366406323} + m_Layer: 0 + m_Name: CoinParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6430294205366406323 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6540144387298015507} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0029999998, y: -0.015049994, z: 0.00091171265} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4835372809505556151} + - {fileID: 8575222913715070593} + - {fileID: 4309544764610875998} + - {fileID: 683614285112714286} + - {fileID: 5036617021246478772} + - {fileID: 7084831633726776516} + - {fileID: 7317028491235419291} + m_Father: {fileID: 5245627638424262904} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6588266462500265593 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7093956727240247196} + - component: {fileID: 8154550221972017458} + - component: {fileID: 1720133128090226615} + - component: {fileID: 5007827694488934749} + - component: {fileID: 346231255168906980} + - component: {fileID: 4665158026934610809} + m_Layer: 0 + m_Name: Bolt_B (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7093956727240247196 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6588266462500265593} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003774895, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.437, y: -2.8548, z: -32.4267} + m_LocalScale: {x: 0.9060824, y: 0.9060824, z: 0.9060824} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7345710577066718957} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8154550221972017458 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6588266462500265593} + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &1720133128090226615 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6588266462500265593} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 6859324791159361686, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &5007827694488934749 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6588266462500265593} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 6 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 0 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7093956727240247196} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 10, z: 0} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 0 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &346231255168906980 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6588266462500265593} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4ca4301ea06e47b429d3186c76cd25e9, type: 3} + m_Name: + m_EditorClassIdentifier: + speedBoostAmount: 1 + duration: 5 +--- !u!64 &4665158026934610809 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6588266462500265593} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &6593518005560689315 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6461239015378394347} + - component: {fileID: 2042347397019544144} + - component: {fileID: 944114632166678349} + m_Layer: 0 + m_Name: Laser (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6461239015378394347 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6593518005560689315} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.072500005, y: -0.001000023, z: -0.000029999112} + m_LocalScale: {x: 5, y: 5, z: 5} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 3936094719778136705} + m_Father: {fileID: 2959863262927896180} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &2042347397019544144 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6593518005560689315} + m_Mesh: {fileID: 938762473992563870, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &944114632166678349 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6593518005560689315} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6640605073831798859 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3478840900650390782} + m_Layer: 0 + m_Name: ObstacleSnakeBox (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3478840900650390782 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6640605073831798859} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.66, y: 0, z: 1.6} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2657188384440967303} + - {fileID: 9146132080017572104} + - {fileID: 2412185626181703316} + - {fileID: 6558706759631227757} + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &6692959971891501143 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2179550156603716272} + - component: {fileID: 1977200056021081376} + - component: {fileID: 5320338889209272560} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2179550156603716272 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6692959971891501143} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8208309273493532987} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1977200056021081376 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6692959971891501143} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5320338889209272560 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6692959971891501143} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6711243069716360550 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8099282990537582787} + - component: {fileID: 1602201419480118223} + - component: {fileID: 139590395116507511} + - component: {fileID: 9078975557797377809} + - component: {fileID: 2919391742244805980} + m_Layer: 0 + m_Name: Obstacle_F + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8099282990537582787 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6711243069716360550} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.851} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6701110597616873498} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1602201419480118223 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6711243069716360550} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &139590395116507511 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6711243069716360550} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &9078975557797377809 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6711243069716360550} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &2919391742244805980 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6711243069716360550} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &6725374673681925062 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8274302100745704245} + - component: {fileID: 1202737306704985238} + - component: {fileID: 1696395348105857451} + - component: {fileID: 6703514048051289016} + m_Layer: 8 + m_Name: Stairs_C + m_TagString: Ground + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8274302100745704245 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6725374673681925062} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: -39.600006} + m_LocalScale: {x: 100, y: 99.999985, z: 99.999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2106634864383589834} + m_Father: {fileID: 3244248915834602008} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1202737306704985238 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6725374673681925062} + m_Mesh: {fileID: -7387004673135538681, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &1696395348105857451 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6725374673681925062} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &6703514048051289016 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6725374673681925062} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7387004673135538681, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &6783154012015454653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9146132080017572104} + - component: {fileID: 7529447281449229147} + - component: {fileID: 8612379506200266430} + - component: {fileID: 6220274086675535553} + - component: {fileID: 1155383947322541341} + m_Layer: 0 + m_Name: Obstacle_D (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9146132080017572104 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6783154012015454653} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -52.519} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3478840900650390782} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7529447281449229147 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6783154012015454653} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &8612379506200266430 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6783154012015454653} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &6220274086675535553 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6783154012015454653} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &1155383947322541341 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6783154012015454653} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &6809680262748637143 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6891957897973360029} + - component: {fileID: 3728418501111617728} + - component: {fileID: 1921531563623363203} + - component: {fileID: 73160315775054995} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6891957897973360029 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6809680262748637143} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4584615371018133999} + m_Father: {fileID: 7874575408137780197} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3728418501111617728 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6809680262748637143} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6891957897973360029} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &1921531563623363203 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6809680262748637143} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &73160315775054995 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6809680262748637143} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &6845117558442231298 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6386497860232636633} + - component: {fileID: 6220015095522553624} + - component: {fileID: 7632822316078474544} + m_Layer: 0 + m_Name: Arrow_C + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6386497860232636633 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6845117558442231298} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.03216, y: -0.0258, z: 0.0033} + m_LocalScale: {x: 2.5, y: 0.2862647, z: 0.3613828} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2959863262927896180} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6220015095522553624 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6845117558442231298} + m_Mesh: {fileID: -2376033533564513673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &7632822316078474544 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6845117558442231298} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6888098298759652607 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8647586972420634508} + - component: {fileID: 3682059629825796729} + - component: {fileID: 9137707321821131047} + - component: {fileID: 4300806043042982945} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8647586972420634508 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6888098298759652607} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3364560934079327364} + m_Father: {fileID: 8323959702354881625} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3682059629825796729 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6888098298759652607} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8647586972420634508} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &9137707321821131047 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6888098298759652607} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &4300806043042982945 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6888098298759652607} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &6888683236811619083 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2412185626181703316} + - component: {fileID: 7489497537590977986} + - component: {fileID: 4441516904319203457} + - component: {fileID: 5085589021489705632} + - component: {fileID: 2089914385404686238} + m_Layer: 0 + m_Name: Obstacle_F + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2412185626181703316 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6888683236811619083} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.851} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3478840900650390782} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7489497537590977986 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6888683236811619083} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &4441516904319203457 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6888683236811619083} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &5085589021489705632 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6888683236811619083} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &2089914385404686238 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6888683236811619083} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &6918552664634547845 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2134027380379623437} + - component: {fileID: 8184578939429004399} + - component: {fileID: 8185094104041284047} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2134027380379623437 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6918552664634547845} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 9038125922637800540} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8184578939429004399 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6918552664634547845} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8185094104041284047 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6918552664634547845} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6960465219073107166 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1942990053451392450} + - component: {fileID: 7384732271356950618} + - component: {fileID: 6834892629303569614} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1942990053451392450 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6960465219073107166} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3832427016867250180} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &7384732271356950618 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6960465219073107166} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6834892629303569614 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6960465219073107166} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6982700363661011687 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3381853544983548761} + - component: {fileID: 4854607896943461623} + - component: {fileID: 983515885004031370} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3381853544983548761 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6982700363661011687} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 745139267621437309} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4854607896943461623 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6982700363661011687} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &983515885004031370 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6982700363661011687} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6993673216560334067 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2418433831568035506} + - component: {fileID: 3951931789650794162} + - component: {fileID: 7170293751913435441} + m_Layer: 0 + m_Name: Blueberries + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2418433831568035506 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6993673216560334067} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000005960465, z: -1, w: 0} + m_LocalPosition: {x: 0.014510002, y: 0.005369417, z: -0.0052399985} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2106634864383589834} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &3951931789650794162 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6993673216560334067} + m_Mesh: {fileID: 5746395956481078904, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &7170293751913435441 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6993673216560334067} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -4040347994642848883, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7032157716388686035 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5288239783437265470} + - component: {fileID: 5396394326163941811} + - component: {fileID: 795390441560759329} + - component: {fileID: 2454401643878846025} + m_Layer: 8 + m_Name: Alley_A (2) + m_TagString: Ground + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5288239783437265470 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7032157716388686035} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 99.999985, z: 99.999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3074727111422020062} + - {fileID: 314949030855868315} + - {fileID: 8698510375890479604} + m_Father: {fileID: 662411669077528250} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5396394326163941811 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7032157716388686035} + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &795390441560759329 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7032157716388686035} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &2454401643878846025 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7032157716388686035} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &7091111152735309102 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4367208486116652349} + - component: {fileID: 7800969858636667994} + - component: {fileID: 2948426134022936015} + - component: {fileID: 8374008131386119511} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4367208486116652349 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7091111152735309102} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6274050391127554574} + m_Father: {fileID: 4066115968620491377} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7800969858636667994 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7091111152735309102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4367208486116652349} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &2948426134022936015 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7091111152735309102} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8374008131386119511 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7091111152735309102} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7101177633835668252 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 84512629255544137} + - component: {fileID: 6654519887976530864} + - component: {fileID: 6426550070856604292} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &84512629255544137 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7101177633835668252} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5588130657670918281} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &6654519887976530864 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7101177633835668252} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6426550070856604292 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7101177633835668252} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7106538611537726967 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1578064626047028780} + - component: {fileID: 421997340766006113} + - component: {fileID: 6813928791772123185} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1578064626047028780 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7106538611537726967} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7209594298815629233} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &421997340766006113 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7106538611537726967} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6813928791772123185 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7106538611537726967} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7110809507257176906 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4681455902428267486} + - component: {fileID: 7494365314020071746} + - component: {fileID: 3017307979415170312} + - component: {fileID: 1202905104058334796} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4681455902428267486 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7110809507257176906} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7694372898597187752} + m_Father: {fileID: 5867351837055617134} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7494365314020071746 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7110809507257176906} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4681455902428267486} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3017307979415170312 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7110809507257176906} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1202905104058334796 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7110809507257176906} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7184407471272095475 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1156188076364670939} + - component: {fileID: 4868579660928350111} + - component: {fileID: 7981299730706582317} + - component: {fileID: 4081075429316006783} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1156188076364670939 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7184407471272095475} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6536231084600804552} + m_Father: {fileID: 4066115968620491377} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &4868579660928350111 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7184407471272095475} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1156188076364670939} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7981299730706582317 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7184407471272095475} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &4081075429316006783 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7184407471272095475} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7200672822195010738 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1248774622750654762} + - component: {fileID: 4439442070059938215} + - component: {fileID: 1690626304846055039} + m_Layer: 0 + m_Name: Bad Boy (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1248774622750654762 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7200672822195010738} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000005960465, z: -1, w: 0} + m_LocalPosition: {x: 0.01682, y: -0.011920012, z: -0.01616} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2106634864383589834} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &4439442070059938215 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7200672822195010738} + m_Mesh: {fileID: -74375993299758551, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &1690626304846055039 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7200672822195010738} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -4040347994642848883, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1580535799172915004, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7223846702214025244 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6797008481071899116} + - component: {fileID: 8624335804231253409} + - component: {fileID: 2479355313257456101} + m_Layer: 0 + m_Name: Line_B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6797008481071899116 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7223846702214025244} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: -0.0058, y: 0.0314, z: -0.0001} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2638153453031742628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8624335804231253409 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7223846702214025244} + m_Mesh: {fileID: 1924753069908689346, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &2479355313257456101 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7223846702214025244} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 1259908407628275591, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7257523444370718886 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8894088666028713305} + - component: {fileID: 625058337872415484} + - component: {fileID: 3033264954461976720} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8894088666028713305 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7257523444370718886} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3610209125805859896} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &625058337872415484 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7257523444370718886} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3033264954461976720 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7257523444370718886} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7272314245067892956 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4295604883980422208} + m_Layer: 0 + m_Name: Bolts + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4295604883980422208 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7272314245067892956} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2163919371884733112} + - {fileID: 1972026775117826884} + - {fileID: 606301210272365528} + m_Father: {fileID: 6913307430280152876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7277735220115319020 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3535526604550154660} + - component: {fileID: 7452798444420819323} + - component: {fileID: 7122671518256017268} + - component: {fileID: 3157933529167076704} + - component: {fileID: 1310551252791362774} + m_Layer: 0 + m_Name: Obstacle_A (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3535526604550154660 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7277735220115319020} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.05, y: 0.5826, z: -56.883} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 5251590225460456578} + - {fileID: 2938167122899408096} + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &7452798444420819323 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7277735220115319020} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7122671518256017268 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7277735220115319020} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &3157933529167076704 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7277735220115319020} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &1310551252791362774 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7277735220115319020} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &7285670742085230885 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4874534950052537474} + - component: {fileID: 6128822910417230650} + - component: {fileID: 9179631964509507192} + - component: {fileID: 8593376518321054640} + m_Layer: 8 + m_Name: Alley_A (2) + m_TagString: Ground + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4874534950052537474 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7285670742085230885} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 99.999985, z: 99.999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5479742771485304598} + - {fileID: 6805235099129936218} + - {fileID: 7496318704418837400} + m_Father: {fileID: 1242128596142909725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6128822910417230650 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7285670742085230885} + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &9179631964509507192 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7285670742085230885} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &8593376518321054640 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7285670742085230885} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &7395486396796449057 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1853008940307893609} + - component: {fileID: 3649527367967856258} + - component: {fileID: 4464185838298119180} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1853008940307893609 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7395486396796449057} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4029560816855348695} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &3649527367967856258 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7395486396796449057} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4464185838298119180 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7395486396796449057} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7419341570602119344 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6859429457253276108} + - component: {fileID: 8184771410178214409} + - component: {fileID: 4910597284897530759} + - component: {fileID: 5888430574784385557} + - component: {fileID: 4417326119621344774} + m_Layer: 0 + m_Name: Obstacle_A (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6859429457253276108 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7419341570602119344} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.839, y: 0.5826, z: -55.984} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 6026266922264361002} + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &8184771410178214409 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7419341570602119344} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4910597284897530759 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7419341570602119344} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &5888430574784385557 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7419341570602119344} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &4417326119621344774 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7419341570602119344} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &7452989886944364404 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5305190512074672758} + m_Layer: 0 + m_Name: Stuff + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &5305190512074672758 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7452989886944364404} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6913307430280152876} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7478162564217644713 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3090662642425326424} + - component: {fileID: 280088718682003855} + - component: {fileID: 3289842463574126221} + - component: {fileID: 5419287208826350344} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3090662642425326424 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7478162564217644713} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 9171482981288833574} + m_Father: {fileID: 8323959702354881625} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &280088718682003855 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7478162564217644713} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3090662642425326424} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3289842463574126221 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7478162564217644713} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5419287208826350344 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7478162564217644713} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7479306354372457261 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8303676353638317357} + - component: {fileID: 2716388512348891957} + - component: {fileID: 2956552574133538238} + m_Layer: 0 + m_Name: Line_A + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &8303676353638317357 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7479306354372457261} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: 0.0040000034, y: 0.00019999979, z: -0.000058489422} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2638153453031742628} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2716388512348891957 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7479306354372457261} + m_Mesh: {fileID: 6811696063975250618, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &2956552574133538238 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7479306354372457261} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 5192952931255712758, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7516710159324043407 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 544434700224657552} + - component: {fileID: 4842712590327496120} + - component: {fileID: 1833965365485104014} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &544434700224657552 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7516710159324043407} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1491469011465792521} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4842712590327496120 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7516710159324043407} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1833965365485104014 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7516710159324043407} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7526306630599024971 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3650632538996874970} + - component: {fileID: 3668231991857859936} + - component: {fileID: 4866414413524418117} + - component: {fileID: 6665725889041743580} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3650632538996874970 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7526306630599024971} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7148243724524578991} + m_Father: {fileID: 2921864098059593577} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3668231991857859936 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7526306630599024971} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3650632538996874970} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4866414413524418117 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7526306630599024971} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &6665725889041743580 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7526306630599024971} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7545466989027261466 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2118121543228199424} + - component: {fileID: 6971757778218061804} + - component: {fileID: 5995224461297905814} + - component: {fileID: 5298427102617867219} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2118121543228199424 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7545466989027261466} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1326949505886360990} + m_Father: {fileID: 2921864098059593577} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6971757778218061804 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7545466989027261466} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2118121543228199424} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &5995224461297905814 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7545466989027261466} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5298427102617867219 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7545466989027261466} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7547509123427418595 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6704819293216337618} + - component: {fileID: 460357742461139867} + - component: {fileID: 4837113590153619814} + - component: {fileID: 363826804209369684} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6704819293216337618 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7547509123427418595} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3110185468336260839} + m_Father: {fileID: 8164977802521349133} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &460357742461139867 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7547509123427418595} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6704819293216337618} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4837113590153619814 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7547509123427418595} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &363826804209369684 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7547509123427418595} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7580644862191903895 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5036617021246478772} + - component: {fileID: 1347623215667070193} + - component: {fileID: 6640887828613715651} + - component: {fileID: 2216314175755088229} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5036617021246478772 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7580644862191903895} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7137178221451349146} + m_Father: {fileID: 6430294205366406323} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1347623215667070193 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7580644862191903895} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5036617021246478772} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6640887828613715651 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7580644862191903895} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2216314175755088229 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7580644862191903895} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7588141716619445111 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3657778300029136322} + - component: {fileID: 7709941042827110356} + - component: {fileID: 2471468920930775573} + - component: {fileID: 3613966848236332708} + - component: {fileID: 3096307559146924929} + m_Layer: 0 + m_Name: Obstacle_F (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3657778300029136322 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7588141716619445111} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.265} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6701110597616873498} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7709941042827110356 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7588141716619445111} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &2471468920930775573 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7588141716619445111} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &3613966848236332708 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7588141716619445111} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &3096307559146924929 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7588141716619445111} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &7600548995648047010 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3371058697406383595} + - component: {fileID: 8266689024058479868} + - component: {fileID: 3910690001967586728} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3371058697406383595 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7600548995648047010} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7317028491235419291} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8266689024058479868 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7600548995648047010} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3910690001967586728 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7600548995648047010} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7615993358746566391 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7209594298815629233} + - component: {fileID: 8199315430221741113} + - component: {fileID: 3153958484665396622} + - component: {fileID: 3870407922848440004} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7209594298815629233 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7615993358746566391} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1578064626047028780} + m_Father: {fileID: 7139633758267059528} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &8199315430221741113 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7615993358746566391} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7209594298815629233} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3153958484665396622 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7615993358746566391} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3870407922848440004 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7615993358746566391} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7651457375453889727 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9171482981288833574} + - component: {fileID: 6486129423543543451} + - component: {fileID: 4879939681878675162} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9171482981288833574 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7651457375453889727} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3090662642425326424} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &6486129423543543451 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7651457375453889727} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4879939681878675162 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7651457375453889727} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7659931320119651954 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5076044937773840536} + - component: {fileID: 1545282250351866790} + - component: {fileID: 3608976535987465963} + - component: {fileID: 6105619910563246215} + - component: {fileID: 3597841441018269338} + m_Layer: 0 + m_Name: Obstacle_C (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5076044937773840536 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7659931320119651954} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.01492, y: 0.543, z: -58.15} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &1545282250351866790 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7659931320119651954} + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3608976535987465963 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7659931320119651954} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 718bdba339f39de469f61300995969dd, type: 2} + - {fileID: 2100000, guid: b6af01873ef812748a1cc288cbd122b9, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &6105619910563246215 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7659931320119651954} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &3597841441018269338 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7659931320119651954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &7696272364232090980 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8714894878368059320} + - component: {fileID: 8653961976305027187} + - component: {fileID: 7878750503663657419} + - component: {fileID: 4936092835084249908} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8714894878368059320 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7696272364232090980} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7503079384127441225} + m_Father: {fileID: 3558021963420002246} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &8653961976305027187 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7696272364232090980} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8714894878368059320} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7878750503663657419 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7696272364232090980} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &4936092835084249908 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7696272364232090980} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7728981826737516505 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4994740160987412330} + - component: {fileID: 7806835725857801358} + - component: {fileID: 3569760330251342887} + - component: {fileID: 3960054971564319335} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4994740160987412330 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7728981826737516505} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3516677836680129784} + m_Father: {fileID: 7874575408137780197} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7806835725857801358 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7728981826737516505} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4994740160987412330} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3569760330251342887 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7728981826737516505} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3960054971564319335 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7728981826737516505} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7749182917881095402 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8466454123760389714} + - component: {fileID: 2869726932117161428} + - component: {fileID: 3878390524420342996} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8466454123760389714 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7749182917881095402} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6749874711049425037} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &2869726932117161428 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7749182917881095402} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3878390524420342996 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7749182917881095402} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7774274378447613807 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1491469011465792521} + - component: {fileID: 1753912304196161664} + - component: {fileID: 3487376533719130074} + - component: {fileID: 2523514249408122534} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1491469011465792521 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7774274378447613807} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 544434700224657552} + m_Father: {fileID: 5631149046733040878} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1753912304196161664 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7774274378447613807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1491469011465792521} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3487376533719130074 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7774274378447613807} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2523514249408122534 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7774274378447613807} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7931609111025151783 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3903983810133874995} + - component: {fileID: 2949064136447455960} + - component: {fileID: 5465607785470937947} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3903983810133874995 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7931609111025151783} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3763895073853234650} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &2949064136447455960 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7931609111025151783} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5465607785470937947 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7931609111025151783} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7938425075374575256 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1326949505886360990} + - component: {fileID: 3761518450118861961} + - component: {fileID: 2013078738649354996} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1326949505886360990 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7938425075374575256} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2118121543228199424} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &3761518450118861961 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7938425075374575256} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2013078738649354996 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7938425075374575256} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &7968375942356804304 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5353840681324201642} + - component: {fileID: 2220792009649328953} + - component: {fileID: 2883116395507914922} + - component: {fileID: 625895271485234969} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5353840681324201642 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7968375942356804304} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7878547707524428353} + m_Father: {fileID: 3558021963420002246} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2220792009649328953 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7968375942356804304} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5353840681324201642} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &2883116395507914922 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7968375942356804304} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &625895271485234969 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7968375942356804304} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &7983966977531206900 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4489015601206511608} + - component: {fileID: 5053883336195191250} + - component: {fileID: 4738374942610370336} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4489015601206511608 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7983966977531206900} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6718453647629308592} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5053883336195191250 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7983966977531206900} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4738374942610370336 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7983966977531206900} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8000774231617079388 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1242128596142909725} + m_Layer: 0 + m_Name: Alleys + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1242128596142909725 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8000774231617079388} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.55, z: -72.3} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6322818122895137150} + - {fileID: 2638153453031742628} + - {fileID: 4874534950052537474} + m_Father: {fileID: 3244248915834602008} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8063127573281326665 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7580823329279118703} + - component: {fileID: 7986774394888887906} + - component: {fileID: 6774006554053223368} + - component: {fileID: 4848390426155687394} + - component: {fileID: 6196494689033468546} + m_Layer: 0 + m_Name: Obstacle_F (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7580823329279118703 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8063127573281326665} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.265} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5942385969952372884} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7986774394888887906 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8063127573281326665} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &6774006554053223368 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8063127573281326665} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &4848390426155687394 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8063127573281326665} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &6196494689033468546 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8063127573281326665} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &8131035478188540986 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7961595791057511387} + - component: {fileID: 4812392342016079393} + - component: {fileID: 431562582520870974} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7961595791057511387 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8131035478188540986} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3370163941429340783} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4812392342016079393 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8131035478188540986} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &431562582520870974 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8131035478188540986} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8166999364877462957 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1972026775117826884} + - component: {fileID: 1404683958472574617} + - component: {fileID: 4978924567340105039} + - component: {fileID: 6332010128864433029} + - component: {fileID: 7870026106575918119} + - component: {fileID: 6807685512534789718} + m_Layer: 0 + m_Name: Bolt_B (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1972026775117826884 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8166999364877462957} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003774895, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.437, y: -2.8548, z: -32.4267} + m_LocalScale: {x: 0.9060824, y: 0.9060824, z: 0.9060824} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4295604883980422208} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1404683958472574617 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8166999364877462957} + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &4978924567340105039 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8166999364877462957} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 6859324791159361686, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &6332010128864433029 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8166999364877462957} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 6 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 0 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1972026775117826884} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 10, z: 0} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 0 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &7870026106575918119 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8166999364877462957} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4ca4301ea06e47b429d3186c76cd25e9, type: 3} + m_Name: + m_EditorClassIdentifier: + speedBoostAmount: 1 + duration: 5 +--- !u!64 &6807685512534789718 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8166999364877462957} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &8177607906000538587 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2055109379696536499} + - component: {fileID: 3680118730691704214} + - component: {fileID: 9199550339196804415} + - component: {fileID: 7914967973290138118} + - component: {fileID: 2157534641928627063} + m_Layer: 0 + m_Name: Obstacle_D (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2055109379696536499 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8177607906000538587} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.5825995, z: -52.519} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5942385969952372884} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3680118730691704214 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8177607906000538587} + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &9199550339196804415 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8177607906000538587} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &7914967973290138118 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8177607906000538587} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -2901004150658116673, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &2157534641928627063 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8177607906000538587} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &8194874955284048324 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5867351837055617134} + m_Layer: 0 + m_Name: CoinParent (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5867351837055617134 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8194874955284048324} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.010604024, z: 0.00091552734} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4681455902428267486} + - {fileID: 2700368412159273265} + - {fileID: 2530439480356263899} + - {fileID: 151714113207297456} + - {fileID: 2180475234551252740} + - {fileID: 7244711365142094741} + - {fileID: 878978840315371830} + m_Father: {fileID: 2352062473856957639} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8201868416139696877 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6526535674153883261} + - component: {fileID: 3562790733970415738} + - component: {fileID: 454835580839800967} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6526535674153883261 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8201868416139696877} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7084831633726776516} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &3562790733970415738 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8201868416139696877} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &454835580839800967 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8201868416139696877} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8207761125499915739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5421269898201282807} + - component: {fileID: 2196776217347379797} + - component: {fileID: 924218044484084615} + - component: {fileID: 6259612572690737676} + m_Layer: 8 + m_Name: Alley_A (1) + m_TagString: Ground + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5421269898201282807 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8207761125499915739} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: -0, z: -0, w: 0.7071067} + m_LocalPosition: {x: 0, y: 0, z: 12} + m_LocalScale: {x: 100, y: 99.999985, z: 99.999985} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2040412242171135251} + - {fileID: 5526477042946567205} + - {fileID: 3159951421399353878} + m_Father: {fileID: 662411669077528250} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2196776217347379797 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8207761125499915739} + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &924218044484084615 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8207761125499915739} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &6259612572690737676 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8207761125499915739} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 5395338931411858137, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1 &8223325070626497438 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3558021963420002246} + m_Layer: 0 + m_Name: CoinParent (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3558021963420002246 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8223325070626497438} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.010604024, z: 0.00091552734} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8714894878368059320} + - {fileID: 1276222981457524980} + - {fileID: 7540058696358848892} + - {fileID: 5353840681324201642} + - {fileID: 3370163941429340783} + - {fileID: 6338393964682837298} + - {fileID: 4029560816855348695} + m_Father: {fileID: 5245627638424262904} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8252407619422379870 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8684947796581504405} + - component: {fileID: 6143526083213564597} + - component: {fileID: 260135483202565068} + - component: {fileID: 4163293392023803895} + - component: {fileID: 5570714549498441768} + m_Layer: 0 + m_Name: Obstacle_C (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8684947796581504405 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8252407619422379870} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: 0.435, y: 0.543, z: -58.15} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &6143526083213564597 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8252407619422379870} + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &260135483202565068 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8252407619422379870} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 718bdba339f39de469f61300995969dd, type: 2} + - {fileID: 2100000, guid: b6af01873ef812748a1cc288cbd122b9, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &4163293392023803895 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8252407619422379870} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &5570714549498441768 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8252407619422379870} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &8341607224426615608 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3215045150813753675} + m_Layer: 0 + m_Name: ObstacleSnakeBox + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3215045150813753675 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8341607224426615608} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8544143144886968763} + - {fileID: 6601735550508559197} + - {fileID: 5334205409455479158} + - {fileID: 7857483301504143803} + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &8368412064067467203 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6470884700206937126} + - component: {fileID: 2452623313415157701} + - component: {fileID: 257845481847054409} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6470884700206937126 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8368412064067467203} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7871324132405239834} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &2452623313415157701 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8368412064067467203} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &257845481847054409 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8368412064067467203} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8378198231773937856 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8152163492607586114} + - component: {fileID: 8783425804415358919} + - component: {fileID: 7205843956680531291} + - component: {fileID: 6779526427146141751} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8152163492607586114 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8378198231773937856} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1350730645013086917} + m_Father: {fileID: 1639302389400109493} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &8783425804415358919 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8378198231773937856} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8152163492607586114} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7205843956680531291 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8378198231773937856} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &6779526427146141751 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8378198231773937856} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &8447940966101528064 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5526477042946567205} + - component: {fileID: 1288804997610598083} + - component: {fileID: 6939469211471050003} + m_Layer: 0 + m_Name: Line_B + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5526477042946567205 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8447940966101528064} + serializedVersion: 2 + m_LocalRotation: {x: 0.00000004371138, y: -0.00000011920929, z: 1, w: -0.000000075497894} + m_LocalPosition: {x: -0.0058, y: 0.0314, z: -0.0001} + m_LocalScale: {x: 1.1915538, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5421269898201282807} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1288804997610598083 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8447940966101528064} + m_Mesh: {fileID: 1924753069908689346, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &6939469211471050003 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8447940966101528064} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 1259908407628275591, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8461616488885512318 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6536231084600804552} + - component: {fileID: 7462718714927000501} + - component: {fileID: 4466252001455839995} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6536231084600804552 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8461616488885512318} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1156188076364670939} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &7462718714927000501 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8461616488885512318} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4466252001455839995 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8461616488885512318} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8494115174988701030 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7694372898597187752} + - component: {fileID: 188952240706304471} + - component: {fileID: 574534512092682815} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7694372898597187752 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8494115174988701030} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4681455902428267486} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &188952240706304471 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8494115174988701030} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &574534512092682815 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8494115174988701030} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8514800228313295028 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 646757840070484398} + - component: {fileID: 1314361772965758250} + - component: {fileID: 5958269038002493750} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &646757840070484398 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8514800228313295028} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1829518232258083674} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1314361772965758250 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8514800228313295028} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5958269038002493750 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8514800228313295028} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8539668206094884703 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6913307430280152876} + m_Layer: 0 + m_Name: Platform 1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6913307430280152876 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8539668206094884703} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3244248915834602008} + - {fileID: 5305190512074672758} + - {fileID: 2918029099092491010} + - {fileID: 4479256775088773384} + - {fileID: 3211779145275666690} + - {fileID: 2963343346566417653} + - {fileID: 4295604883980422208} + - {fileID: 5711583358438238382} + - {fileID: 7345710577066718957} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!1 &8541625346551557757 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7683133297592096107} + - component: {fileID: 5572323831830171281} + - component: {fileID: 9001813207221667600} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7683133297592096107 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8541625346551557757} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5556691171820428305} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5572323831830171281 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8541625346551557757} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &9001813207221667600 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8541625346551557757} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8602497212229524902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 881513026108316146} + - component: {fileID: 2610182568675268027} + - component: {fileID: 6214069066964357784} + - component: {fileID: 9199204118596407979} + - component: {fileID: 4162582273794719924} + m_Layer: 0 + m_Name: Obstacle_E (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &881513026108316146 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8602497212229524902} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.2062, y: 0.5054, z: -59.5131} + m_LocalScale: {x: 40.56799, y: 40.567993, z: 40.567993} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3211779145275666690} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &2610182568675268027 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8602497212229524902} + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6214069066964357784 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8602497212229524902} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &9199204118596407979 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8602497212229524902} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &4162582273794719924 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8602497212229524902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &8626825730664423150 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4029560816855348695} + - component: {fileID: 1429478707294355317} + - component: {fileID: 7656424323112469897} + - component: {fileID: 1949092861637770658} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4029560816855348695 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8626825730664423150} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1853008940307893609} + m_Father: {fileID: 3558021963420002246} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1429478707294355317 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8626825730664423150} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4029560816855348695} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7656424323112469897 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8626825730664423150} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1949092861637770658 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8626825730664423150} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &8649399485764245554 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4835372809505556151} + - component: {fileID: 3866120432198585218} + - component: {fileID: 4219911172613068737} + - component: {fileID: 8621833609518066961} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4835372809505556151 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8649399485764245554} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3016270024137826324} + m_Father: {fileID: 6430294205366406323} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3866120432198585218 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8649399485764245554} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4835372809505556151} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &4219911172613068737 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8649399485764245554} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8621833609518066961 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8649399485764245554} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &8658885867715209844 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6944381632010093417} + - component: {fileID: 316932770284986718} + - component: {fileID: 9075350066966324433} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6944381632010093417 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8658885867715209844} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8141252729946709348} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &316932770284986718 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8658885867715209844} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &9075350066966324433 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8658885867715209844} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8666633255909441697 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2215790698251398823} + - component: {fileID: 3595357622711520480} + - component: {fileID: 7523242153868648924} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2215790698251398823 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8666633255909441697} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2530439480356263899} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &3595357622711520480 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8666633255909441697} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7523242153868648924 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8666633255909441697} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8671285071150588936 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8208309273493532987} + - component: {fileID: 4144614015625983776} + - component: {fileID: 5441953609952176667} + - component: {fileID: 2432360018593340771} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8208309273493532987 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8671285071150588936} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2179550156603716272} + m_Father: {fileID: 8323959702354881625} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &4144614015625983776 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8671285071150588936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8208309273493532987} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &5441953609952176667 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8671285071150588936} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &2432360018593340771 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8671285071150588936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &8725221799864770447 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5245627638424262904} + - component: {fileID: 2618485079463320108} + m_Layer: 0 + m_Name: CoinParents (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5245627638424262904 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8725221799864770447} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: 0.7071068, w: 0} + m_LocalPosition: {x: 0, y: -2.76, z: -5.25} + m_LocalScale: {x: 149.99997, y: 150.00003, z: 150.00003} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 6430294205366406323} + - {fileID: 3558021963420002246} + - {fileID: 7874575408137780197} + m_Father: {fileID: 3244248915834602008} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &2618485079463320108 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8725221799864770447} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4b1effc2ff8bc134a97d96701dcc10c1, type: 3} + m_Name: + m_EditorClassIdentifier: + coinParents: + - {fileID: 6540144387298015507} + - {fileID: 8223325070626497438} + - {fileID: 63646234787919153} + coinChance: 40 +--- !u!1 &8777666047056270534 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8575620675360636636} + - component: {fileID: 7977751687018724880} + - component: {fileID: 5848706765213870199} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8575620675360636636 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8777666047056270534} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2740167917152598956} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &7977751687018724880 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8777666047056270534} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &5848706765213870199 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8777666047056270534} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8812597084927616978 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8288613779853040334} + - component: {fileID: 4849661559103808690} + - component: {fileID: 315782620246278902} + m_Layer: 0 + m_Name: Laser (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8288613779853040334 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8812597084927616978} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: 1, w: 0} + m_LocalPosition: {x: -0.053499997, y: -0.0005500794, z: -0.000029999064} + m_LocalScale: {x: 5, y: 5, z: 5} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 7814622556997015557} + m_Father: {fileID: 8862858381155526105} + m_LocalEulerAnglesHint: {x: -90, y: 180, z: 0} +--- !u!33 &4849661559103808690 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8812597084927616978} + m_Mesh: {fileID: 938762473992563870, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &315782620246278902 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8812597084927616978} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 3004422333336217069, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: -7695513324072965221, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8827839225903832324 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 123540665821060665} + - component: {fileID: 5886840554244742276} + - component: {fileID: 7143795279191946303} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &123540665821060665 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8827839225903832324} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3180920752820534240} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &5886840554244742276 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8827839225903832324} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &7143795279191946303 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8827839225903832324} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8873306381938775040 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7540058696358848892} + - component: {fileID: 3451089833664340163} + - component: {fileID: 3606050211449116475} + - component: {fileID: 5590189552793859790} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7540058696358848892 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8873306381938775040} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6173739050647133257} + m_Father: {fileID: 3558021963420002246} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3451089833664340163 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8873306381938775040} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7540058696358848892} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3606050211449116475 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8873306381938775040} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5590189552793859790 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8873306381938775040} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &8894394156422744906 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8698510375890479604} + - component: {fileID: 2598344663365945956} + - component: {fileID: 2704446874431169174} + m_Layer: 0 + m_Name: Line_A + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8698510375890479604 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8894394156422744906} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.95774436, y: 1.1915538, z: 1.1915538} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5288239783437265470} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!33 &2598344663365945956 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8894394156422744906} + m_Mesh: {fileID: 6811696063975250618, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &2704446874431169174 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8894394156422744906} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 5192952931255712758, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8901362648229268467 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8137621709046021151} + - component: {fileID: 1189845429964018349} + - component: {fileID: 5464388819700655311} + - component: {fileID: 1848044918293548908} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8137621709046021151 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8901362648229268467} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7761448134812016833} + m_Father: {fileID: 7139633758267059528} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1189845429964018349 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8901362648229268467} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8137621709046021151} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &5464388819700655311 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8901362648229268467} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1848044918293548908 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8901362648229268467} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &8907731634183635614 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1978221947511878199} + - component: {fileID: 6608897565649010376} + - component: {fileID: 3913625885739331829} + - component: {fileID: 1783046507653074747} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1978221947511878199 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8907731634183635614} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8118710411340934499} + m_Father: {fileID: 2897711522538425094} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6608897565649010376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8907731634183635614} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1978221947511878199} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3913625885739331829 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8907731634183635614} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1783046507653074747 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8907731634183635614} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &8932395471932450344 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1477619972202789409} + - component: {fileID: 9107859655331238363} + - component: {fileID: 4919179912047358154} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1477619972202789409 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8932395471932450344} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6240231372781090059} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &9107859655331238363 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8932395471932450344} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4919179912047358154 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8932395471932450344} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8934284592494010973 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2959863262927896180} + - component: {fileID: 4489814301427286223} + - component: {fileID: 428881080304850885} + - component: {fileID: 4345757398919911594} + - component: {fileID: 4775735174590692516} + m_Layer: 0 + m_Name: Obstacle_A (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2959863262927896180 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8934284592494010973} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0.7071068, z: -0.7071068, w: 0} + m_LocalPosition: {x: -0.05, y: 0.5826, z: -56.883} + m_LocalScale: {x: 20, y: 20, z: 20} + m_ConstrainProportionsScale: 1 + m_Children: + - {fileID: 6461239015378394347} + - {fileID: 6386497860232636633} + m_Father: {fileID: 4479256775088773384} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} +--- !u!33 &4489814301427286223 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8934284592494010973} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &428881080304850885 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8934284592494010973} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &4345757398919911594 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8934284592494010973} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &4775735174590692516 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8934284592494010973} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &8963361463771230800 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3016270024137826324} + - component: {fileID: 8777761324453733107} + - component: {fileID: 8474468446233388737} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3016270024137826324 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8963361463771230800} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4835372809505556151} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &8777761324453733107 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8963361463771230800} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &8474468446233388737 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8963361463771230800} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8991639010727920683 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6292028945730150314} + - component: {fileID: 7748853413794905753} + - component: {fileID: 3489774524092491544} + - component: {fileID: 485297347983285413} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6292028945730150314 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8991639010727920683} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 603838925505036112} + m_Father: {fileID: 8323959702354881625} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7748853413794905753 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8991639010727920683} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6292028945730150314} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3489774524092491544 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8991639010727920683} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &485297347983285413 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8991639010727920683} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &9021937198383854705 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1639302389400109493} + m_Layer: 0 + m_Name: CoinParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1639302389400109493 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9021937198383854705} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0029999998, y: -0.015049994, z: 0.00091171265} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5556691171820428305} + - {fileID: 8954822734597428682} + - {fileID: 8334002869574091384} + - {fileID: 4325520255115945289} + - {fileID: 745139267621437309} + - {fileID: 2740167917152598956} + - {fileID: 8152163492607586114} + m_Father: {fileID: 2352062473856957639} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &9026402073060684334 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 296886272756885494} + - component: {fileID: 2739141547893363861} + - component: {fileID: 6187300709942975212} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &296886272756885494 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9026402073060684334} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4660311822257877781} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &2739141547893363861 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9026402073060684334} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6187300709942975212 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9026402073060684334} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &9050394758313702896 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8954822734597428682} + - component: {fileID: 3195982609331547854} + - component: {fileID: 6503258790003802670} + - component: {fileID: 1401295221413020714} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8954822734597428682 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9050394758313702896} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 479762670692746928} + m_Father: {fileID: 1639302389400109493} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3195982609331547854 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9050394758313702896} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8954822734597428682} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6503258790003802670 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9050394758313702896} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &1401295221413020714 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9050394758313702896} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &9080838495689922468 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7084831633726776516} + - component: {fileID: 2817206534224952922} + - component: {fileID: 6541116907582923443} + - component: {fileID: 3233895602416935106} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7084831633726776516 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9080838495689922468} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6526535674153883261} + m_Father: {fileID: 6430294205366406323} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2817206534224952922 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9080838495689922468} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7084831633726776516} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6541116907582923443 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9080838495689922468} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &3233895602416935106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9080838495689922468} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &9091065323680024836 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5474202330601434072} + - component: {fileID: 1267930860305312440} + - component: {fileID: 6413494008480005569} + - component: {fileID: 4973394688943270700} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5474202330601434072 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9091065323680024836} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7152156404981487956} + m_Father: {fileID: 2897711522538425094} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1267930860305312440 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9091065323680024836} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5474202330601434072} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &6413494008480005569 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9091065323680024836} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &4973394688943270700 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9091065323680024836} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &9128139958998140229 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3370163941429340783} + - component: {fileID: 2328603091912158542} + - component: {fileID: 3701727149339263916} + - component: {fileID: 7592602526397755709} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3370163941429340783 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9128139958998140229} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7961595791057511387} + m_Father: {fileID: 3558021963420002246} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2328603091912158542 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9128139958998140229} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 3370163941429340783} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &3701727149339263916 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9128139958998140229} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &7592602526397755709 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9128139958998140229} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &9152829604347982791 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3303313789293086581} + - component: {fileID: 1456888439702009883} + - component: {fileID: 3880724517552668354} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3303313789293086581 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9152829604347982791} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4748247897730260006} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &1456888439702009883 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9152829604347982791} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3880724517552668354 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9152829604347982791} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &9164221921803398612 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5143348713795235738} + - component: {fileID: 25985302164279916} + - component: {fileID: 6989663551548186802} + - component: {fileID: 4842216624753875237} + - component: {fileID: 1170589904882607124} + m_Layer: 0 + m_Name: Obstacle_F (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5143348713795235738 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9164221921803398612} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: 0.00000008940697, z: -1, w: 0} + m_LocalPosition: {x: -0.8, y: 0.602, z: -52.265} + m_LocalScale: {x: 30, y: 30, z: 30} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8504754379814620554} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &25985302164279916 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9164221921803398612} + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &6989663551548186802 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9164221921803398612} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 4913911580219713836, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &4842216624753875237 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9164221921803398612} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 2203389427102658658, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!114 &1170589904882607124 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9164221921803398612} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &9171755809645567922 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 606301210272365528} + - component: {fileID: 3649560236016578395} + - component: {fileID: 1587284436391522667} + - component: {fileID: 6961211582735058994} + - component: {fileID: 4952902928356547373} + - component: {fileID: 8828542962599054838} + m_Layer: 0 + m_Name: Bolt_B (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &606301210272365528 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9171755809645567922} + serializedVersion: 2 + m_LocalRotation: {x: -0.00000003774895, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.437, y: -2.8548, z: -32.4267} + m_LocalScale: {x: 0.9060824, y: 0.9060824, z: 0.9060824} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4295604883980422208} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3649560236016578395 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9171755809645567922} + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!23 &1587284436391522667 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9171755809645567922} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -1657561895943657483, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + - {fileID: 6859324791159361686, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &6961211582735058994 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9171755809645567922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 6 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 0 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 606301210272365528} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 10, z: 0} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 0 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &4952902928356547373 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9171755809645567922} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4ca4301ea06e47b429d3186c76cd25e9, type: 3} + m_Name: + m_EditorClassIdentifier: + speedBoostAmount: 1 + duration: 5 +--- !u!64 &8828542962599054838 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9171755809645567922} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: -4496753938538184029, guid: 672aa84817b45ba4aa212666c86e0d4a, type: 3} +--- !u!1001 &1953052997145679856 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 8288613779853040334} + m_Modifications: + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: laserWidth + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: collisionMask.m_Bits + value: 255 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].x + value: -1.5000002 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].y + value: -2.898 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 14.490002 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: -0.49603444 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: -2.8980038 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 14.490002 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Parameters.widthMultiplier + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 6110383875702633374, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Name + value: BeamLine + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.y + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e205d26979335984cb73f0328e3c07ca, type: 3} +--- !u!4 &7814622556997015557 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + m_PrefabInstance: {fileID: 1953052997145679856} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3057417651821231437 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 5251590225460456578} + m_Modifications: + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: laserWidth + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: collisionMask.m_Bits + value: 255 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].x + value: 1.5000002 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].y + value: -2.898 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 17.123001 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: 0.12069942 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: -2.8980045 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 17.123003 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Parameters.widthMultiplier + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 6110383875702633374, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Name + value: BeamLine + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.y + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e205d26979335984cb73f0328e3c07ca, type: 3} +--- !u!4 &6703502159284974264 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + m_PrefabInstance: {fileID: 3057417651821231437} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4753109458815823220 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 6461239015378394347} + m_Modifications: + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: laserWidth + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: collisionMask.m_Bits + value: 255 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].x + value: 1.5000002 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].y + value: 0.582 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 56.903 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: 0.12069942 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: 0.5819865 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 56.902992 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Parameters.widthMultiplier + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 6110383875702633374, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Name + value: BeamLine + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.y + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e205d26979335984cb73f0328e3c07ca, type: 3} +--- !u!4 &3936094719778136705 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + m_PrefabInstance: {fileID: 4753109458815823220} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5040432422665751762 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 6026266922264361002} + m_Modifications: + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: laserWidth + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: collisionMask.m_Bits + value: 255 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].x + value: 1.5000001 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].y + value: 0.582 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 55.983 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: 0.9096994 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: 0.5819867 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 55.983006 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Parameters.widthMultiplier + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 6110383875702633374, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Name + value: BeamLine + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.y + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e205d26979335984cb73f0328e3c07ca, type: 3} +--- !u!4 &3646376385963098919 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + m_PrefabInstance: {fileID: 5040432422665751762} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6420871308902664804 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 8692286522828768183} + m_Modifications: + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: laserWidth + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: collisionMask.m_Bits + value: 255 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].x + value: -1.5000005 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].y + value: -2.898 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 15.361 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: -0.01603445 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: -2.898004 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 15.360999 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Parameters.widthMultiplier + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 6110383875702633374, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Name + value: BeamLine + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.y + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e205d26979335984cb73f0328e3c07ca, type: 3} +--- !u!4 &3346802318947026321 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + m_PrefabInstance: {fileID: 6420871308902664804} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6853900808558693796 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 483169538763802572} + m_Modifications: + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: laserWidth + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: collisionMask.m_Bits + value: 255 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].x + value: 1.5000001 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].y + value: -2.898 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 16.203003 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: 0.9096994 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: -2.898004 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 16.203003 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Parameters.widthMultiplier + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 6110383875702633374, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Name + value: BeamLine + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.y + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e205d26979335984cb73f0328e3c07ca, type: 3} +--- !u!4 &2915039441653973585 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + m_PrefabInstance: {fileID: 6853900808558693796} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8024462564595355274 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 4998198826262003489} + m_Modifications: + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: laserWidth + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: collisionMask.m_Bits + value: 255 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].x + value: -1.5000005 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].y + value: 0.582 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 55.141 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: -0.01603445 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: 0.5819869 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 55.141 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Parameters.widthMultiplier + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 6110383875702633374, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Name + value: BeamLine + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.y + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e205d26979335984cb73f0328e3c07ca, type: 3} +--- !u!4 &1744336415351554431 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + m_PrefabInstance: {fileID: 8024462564595355274} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9005026216969316133 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 4080153651293010863} + m_Modifications: + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: laserWidth + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 440150361550742133, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: collisionMask.m_Bits + value: 255 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].x + value: -1.5000002 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].y + value: 0.582 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 54.27 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: -0.49603444 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: 0.5819871 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 54.27 + objectReference: {fileID: 0} + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Parameters.widthMultiplier + value: 0.01 + objectReference: {fileID: 0} + - target: {fileID: 6110383875702633374, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Name + value: BeamLine + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.y + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e205d26979335984cb73f0328e3c07ca, type: 3} +--- !u!4 &833721422913710288 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + m_PrefabInstance: {fileID: 9005026216969316133} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Prefabs/Platform 1.prefab.meta b/Assets/Prefabs/Platform 1.prefab.meta new file mode 100644 index 0000000..6bb13c7 --- /dev/null +++ b/Assets/Prefabs/Platform 1.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: aef2a50dc2159e44584497dfc2fdaeb2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/ChaseRun.unity b/Assets/Scenes/ChaseRun.unity index 2a9dc3c..0d73b1a 100644 --- a/Assets/Scenes/ChaseRun.unity +++ b/Assets/Scenes/ChaseRun.unity @@ -169,6 +169,40 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!21 &78807753 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] --- !u!1 &149428110 GameObject: m_ObjectHideFlags: 0 @@ -203,7 +237,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: -75} m_SizeDelta: {x: 0, y: 50} m_Pivot: {x: 0.5, y: 1} --- !u!114 &149428112 @@ -598,6 +632,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: - {fileID: 2060206372} + - {fileID: 721204259} m_Father: {fileID: 293277036} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} @@ -643,6 +678,126 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 508969155} m_CullTransparentMesh: 1 +--- !u!1 &647197001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 647197002} + - component: {fileID: 647197006} + - component: {fileID: 647197005} + - component: {fileID: 647197004} + - component: {fileID: 647197003} + m_Layer: 0 + m_Name: Obstacle_C (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &647197002 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 647197001} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0.0030299993, z: 0.00010000008} + m_LocalScale: {x: 0.09999999, y: 0.099999994, z: 0.099999994} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1692996103} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &647197003 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 647197001} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &647197004 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 647197001} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &647197005 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 647197001} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 718bdba339f39de469f61300995969dd, type: 2} + - {fileID: 2100000, guid: b6af01873ef812748a1cc288cbd122b9, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &647197006 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 647197001} + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} --- !u!1 &682158477 GameObject: m_ObjectHideFlags: 0 @@ -728,6 +883,175 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 682158477} m_Mesh: {fileID: 404407860802990189, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &721204258 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 721204259} + - component: {fileID: 721204262} + - component: {fileID: 721204261} + - component: {fileID: 721204260} + m_Layer: 5 + m_Name: RestartButton + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &721204259 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 721204258} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1222225063} + m_Father: {fileID: 508969156} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -96.9} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &721204260 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 721204258} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 721204261} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 65175299} + m_TargetAssemblyTypeName: ChaseScoreManager, Assembly-CSharp + m_MethodName: Restart + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!114 &721204261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 721204258} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &721204262 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 721204258} + m_CullTransparentMesh: 1 +--- !u!1 &752470191 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 752470192} + m_Layer: 0 + m_Name: Stuff + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &752470192 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 752470191} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1485805075} + - {fileID: 1692996103} + - {fileID: 5938049138584892331} + - {fileID: 1768723457362662338} + - {fileID: 7158539827906486923} + m_Father: {fileID: 7921441412489814704} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &825336135 PrefabInstance: m_ObjectHideFlags: 0 @@ -809,6 +1133,957 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1001 &864845194 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} + propertyPath: m_Name + value: Zibu_Shu_Charge + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 864d778a9599e2e4cab1520009f3b91e, type: 3} +--- !u!21 &926047953 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] +--- !u!21 &964966095 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] +--- !u!21 &1055930635 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] +--- !u!1 &1100480206 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1100480207} + - component: {fileID: 1100480211} + - component: {fileID: 1100480210} + - component: {fileID: 1100480209} + - component: {fileID: 1100480208} + m_Layer: 0 + m_Name: Obstacle_A (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1100480207 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100480206} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0024899996, y: -0.023340011, z: 0.0006000001} + m_LocalScale: {x: 0.22816001, y: 0.22815995, z: 0.22815995} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1692996103} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1100480208 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100480206} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &1100480209 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100480206} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1100480210 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100480206} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &1100480211 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100480206} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!21 &1111367101 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] +--- !u!1 &1222225062 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1222225063} + - component: {fileID: 1222225065} + - component: {fileID: 1222225064} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1222225063 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1222225062} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 721204259} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1222225064 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1222225062} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Restart + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 26.85 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &1222225065 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1222225062} + m_CullTransparentMesh: 1 +--- !u!21 &1252002874 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] +--- !u!21 &1384802799 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] +--- !u!1 &1485605595 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1485605596} + - component: {fileID: 1485605600} + - component: {fileID: 1485605599} + - component: {fileID: 1485605598} + - component: {fileID: 1485605597} + m_Layer: 0 + m_Name: Obstacle_E (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1485605596 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1485605595} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.001208, y: 0.0027599996, z: 0.00028000007} + m_LocalScale: {x: 0.34298483, y: 0.099999994, z: 0.099999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1692996103} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1485605597 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1485605595} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &1485605598 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1485605595} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1485605599 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1485605595} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &1485605600 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1485605595} + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &1485805074 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1485805075} + m_Layer: 0 + m_Name: Obstacles + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1485805075 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1485805074} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 638662327646625550} + - {fileID: 8728015990411697120} + - {fileID: 3097619908975711505} + - {fileID: 3062857284959384716} + - {fileID: 7554368316460665349} + - {fileID: 2040715084530753743} + - {fileID: 551163645553707726} + m_Father: {fileID: 752470192} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1506621775 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1506621776} + - component: {fileID: 1506621780} + - component: {fileID: 1506621779} + - component: {fileID: 1506621778} + - component: {fileID: 1506621777} + m_Layer: 0 + m_Name: Obstacle_H (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1506621776 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1506621775} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.019589998, y: 0.01826, z: 0.0004200007} + m_LocalScale: {x: 0.09999999, y: 0.099999994, z: 0.099999994} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1692996103} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!64 &1506621777 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1506621775} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &1506621778 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1506621775} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!23 &1506621779 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1506621775} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5fbb0c4334374934abc11d566db804a9, type: 2} + - {fileID: 2100000, guid: c4a4afe7921aa2f4582fccd2bd7f1efa, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &1506621780 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1506621775} + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &1692996102 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1692996103} + m_Layer: 0 + m_Name: Obstacles (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1692996103 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1692996102} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1506621776} + - {fileID: 1697880094} + - {fileID: 1485605596} + - {fileID: 647197002} + - {fileID: 1769645836} + - {fileID: 2128112477} + - {fileID: 1100480207} + m_Father: {fileID: 752470192} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1697880093 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1697880094} + - component: {fileID: 1697880098} + - component: {fileID: 1697880097} + - component: {fileID: 1697880096} + - component: {fileID: 1697880095} + m_Layer: 0 + m_Name: Obstacle_G (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1697880094 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1697880093} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.019919997, y: 0.005229998, z: 0.00030000004} + m_LocalScale: {x: 0.09999999, y: 0.099999994, z: 0.099999994} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1692996103} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1697880095 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1697880093} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &1697880096 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1697880093} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1697880097 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1697880093} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &1697880098 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1697880093} + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} --- !u!1001 &1704108060 PrefabInstance: m_ObjectHideFlags: 0 @@ -823,11 +2098,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2c04b8261d21a8e45852e1e050858e41, type: 3} propertyPath: m_LocalPosition.y - value: 0 + value: 0.65 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2c04b8261d21a8e45852e1e050858e41, type: 3} propertyPath: m_LocalPosition.z - value: -8.717 + value: 69 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 2c04b8261d21a8e45852e1e050858e41, type: 3} propertyPath: m_LocalRotation.w @@ -885,6 +2160,10 @@ PrefabInstance: propertyPath: m_Name value: Player objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2c04b8261d21a8e45852e1e050858e41, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 919132149155446097, guid: 2c04b8261d21a8e45852e1e050858e41, type: 3} propertyPath: m_TagString value: Player @@ -955,7 +2234,7 @@ MonoBehaviour: m_EditorClassIdentifier: moveSpeed: -1 laneDistance: 0.4 - jumpForce: 2.5 + jumpForce: 4 laneSwitchSpeed: 10 --- !u!65 &1704108065 BoxCollider: @@ -964,7 +2243,7 @@ BoxCollider: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1704108061} - m_Material: {fileID: 0} + m_Material: {fileID: 13400000, guid: 3ed3f30019378ef43b87264bdad42572, type: 2} m_IncludeLayers: serializedVersion: 2 m_Bits: 0 @@ -976,8 +2255,8 @@ BoxCollider: m_ProvidesContacts: 0 m_Enabled: 1 serializedVersion: 3 - m_Size: {x: 0.20475894, y: 0.3, z: 0.3661172} - m_Center: {x: -0.00010096654, y: 0.20000002, z: 0.036941394} + m_Size: {x: 0.20475894, y: 0.3609593, z: 0.3661172} + m_Center: {x: -0.00010097027, y: 0.16952038, z: 0.036941394} --- !u!54 &1704108066 Rigidbody: m_ObjectHideFlags: 0 @@ -1004,7 +2283,7 @@ Rigidbody: m_IsKinematic: 0 m_Interpolate: 0 m_Constraints: 112 - m_CollisionDetection: 0 + m_CollisionDetection: 2 --- !u!1 &1718549875 GameObject: m_ObjectHideFlags: 0 @@ -1160,13 +2439,133 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1763402140} serializedVersion: 2 - m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalRotation: {x: 0.42261827, y: 0, z: 0, w: 0.9063079} m_LocalPosition: {x: 0, y: 3, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} - m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} + m_LocalEulerAnglesHint: {x: 50, y: 0, z: 0} +--- !u!1 &1769645835 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1769645836} + - component: {fileID: 1769645840} + - component: {fileID: 1769645839} + - component: {fileID: 1769645838} + - component: {fileID: 1769645837} + m_Layer: 0 + m_Name: Obstacle_A (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1769645836 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769645835} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0023099994, y: 0.012310006, z: 0.0006000001} + m_LocalScale: {x: 0.22816001, y: 0.22815995, z: 0.22815995} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1692996103} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1769645837 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769645835} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &1769645838 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769645835} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1769645839 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769645835} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &1769645840 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769645835} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} --- !u!1 &1787069559 GameObject: m_ObjectHideFlags: 0 @@ -1179,7 +2578,8 @@ GameObject: - component: {fileID: 1787069561} - component: {fileID: 1787069560} - component: {fileID: 1787069563} - m_Layer: 0 + - component: {fileID: 1787069564} + m_Layer: 9 m_Name: Main Camera m_TagString: MainCamera m_Icon: {fileID: 0} @@ -1254,7 +2654,7 @@ Transform: m_GameObject: {fileID: 1787069559} serializedVersion: 2 m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.32, z: -10.717} + m_LocalPosition: {x: 0, y: 1.1700001, z: 67.131} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] @@ -1274,7 +2674,116 @@ MonoBehaviour: m_EditorClassIdentifier: player: {fileID: 1704108063} offset: {x: 0, y: 0.32, z: -2} - followSpeed: 5 + followSpeed: 11 +--- !u!114 &1787069564 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1787069559} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 948f4100a11a5c24981795d21301da5c, type: 3} + m_Name: + m_EditorClassIdentifier: + volumeTrigger: {fileID: 1787069562} + volumeLayer: + serializedVersion: 2 + m_Bits: 512 + stopNaNPropagation: 1 + finalBlitToCameraTarget: 0 + antialiasingMode: 0 + temporalAntialiasing: + jitterSpread: 0.75 + sharpness: 0.25 + stationaryBlending: 0.95 + motionBlending: 0.85 + subpixelMorphologicalAntialiasing: + quality: 2 + fastApproximateAntialiasing: + fastMode: 0 + keepAlpha: 0 + fog: + enabled: 1 + excludeSkybox: 1 + debugLayer: + lightMeter: + width: 512 + height: 256 + showCurves: 1 + histogram: + width: 512 + height: 256 + channel: 3 + waveform: + exposure: 0.12 + height: 256 + vectorscope: + size: 256 + exposure: 0.12 + overlaySettings: + linearDepth: 0 + motionColorIntensity: 4 + motionGridSize: 64 + colorBlindnessType: 0 + colorBlindnessStrength: 1 + m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} + m_ShowToolkit: 0 + m_ShowCustomSorter: 0 + breakBeforeColorGrading: 0 + m_BeforeTransparentBundles: [] + m_BeforeStackBundles: [] + m_AfterStackBundles: [] +--- !u!1 &1850953449 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1850953451} + - component: {fileID: 1850953450} + m_Layer: 0 + m_Name: PostProcessing + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1850953450 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850953449} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} + m_Name: + m_EditorClassIdentifier: + sharedProfile: {fileID: 11400000, guid: fd230e105e6b6b24ab927736c635d4d5, type: 2} + isGlobal: 1 + blendDistance: 0 + weight: 1 + priority: 0 +--- !u!4 &1850953451 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1850953449} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1870306511 GameObject: m_ObjectHideFlags: 0 @@ -1304,9 +2813,9 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: f56ec6c75d6dac947a31176dfd96002c, type: 3} m_Name: m_EditorClassIdentifier: - platformPrefab: {fileID: 7483878161919881348, guid: f2954c4fa84d46f44843b84648595c93, type: 3} - initialPlatforms: 5 - platformLength: 7.85 + platformPrefab: {fileID: 8539668206094884703, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + initialPlatforms: 2 + platformLength: 77.42 player: {fileID: 1704108063} --- !u!4 &1870306513 Transform: @@ -1358,7 +2867,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchoredPosition: {x: 9, y: 41.8} m_SizeDelta: {x: 200, y: 50} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2060206373 @@ -1458,7 +2967,2352 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2060206371} m_CullTransparentMesh: 1 ---- !u!1001 &7233716943061433439 +--- !u!21 &2100911248 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] +--- !u!1 &2128112476 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2128112477} + - component: {fileID: 2128112481} + - component: {fileID: 2128112480} + - component: {fileID: 2128112479} + - component: {fileID: 2128112478} + m_Layer: 0 + m_Name: Obstacle_A (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &2128112477 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2128112476} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0031299996, y: -0.0102100065, z: 0.0006000001} + m_LocalScale: {x: 0.22816001, y: 0.22815995, z: 0.22815995} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1692996103} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2128112478 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2128112476} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &2128112479 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2128112476} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2128112480 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2128112476} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &2128112481 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2128112476} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!4 &1799028286068162 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2482416014031839745} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7590927445749077735} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &23043829331776014 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 912744038796945157} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!33 &33373005429618993 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7491527215555872870} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &73442385067427209 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6177854611582728307} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &84193508315437889 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5590001098678129355} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!4 &87024073117057268 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5590001098678129355} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8576640129912714624} + m_Father: {fileID: 1768723457362662338} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &99215374334050911 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8808338730991463533} + - component: {fileID: 446485406751213516} + - component: {fileID: 8281030597411284083} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &180152399385828915 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 442185325402976972} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5800419689711318518} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!4 &214533908960631766 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7491527215555872870} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7934655723053204976} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!4 &227713259949022048 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2310969380466255017} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8808338730991463533} + m_Father: {fileID: 1768723457362662338} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &270005638790057179 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7921441412489814704} + - component: {fileID: 271581614058157198} + - component: {fileID: 6838527444338724167} + - component: {fileID: 1009370576788274578} + - component: {fileID: 6680117678606654293} + m_Layer: 0 + m_Name: Platform + m_TagString: Ground + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!33 &271581614058157198 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270005638790057179} + m_Mesh: {fileID: -7897080326307748755, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &325546296279711336 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5609154318206613121} + - component: {fileID: 2719523896863107265} + - component: {fileID: 6976385703062970627} + - component: {fileID: 1287508415775590204} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &353987484217018612 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 794945052775152952} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &376905827315019946 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5800419689711318518} + - component: {fileID: 5387860485783943985} + - component: {fileID: 4396425980619283586} + - component: {fileID: 8649784718150443247} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &387277346089684713 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2916450286872932332} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2219123412163167382} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!1 &415985862594966514 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1022844099073140564} + - component: {fileID: 2103988853933952051} + - component: {fileID: 6653952889652811916} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &442185325402976972 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 180152399385828915} + - component: {fileID: 5604956552245340253} + - component: {fileID: 8226661787679219916} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &445858778017788295 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1768723457362662338} + m_Layer: 0 + m_Name: CoinParent (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!33 &446485406751213516 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 99215374334050911} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &502643797195733651 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2310969380466255017} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!4 &551163645553707726 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4829607523570384357} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0024899996, y: -0.023340011, z: 0.0006000001} + m_LocalScale: {x: 0.22816001, y: 0.22815995, z: 0.22815995} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1485805075} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &632212234670378053 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7554368316460665349} + - component: {fileID: 8892407194942957765} + - component: {fileID: 5636122748758836565} + - component: {fileID: 2849779299826078844} + - component: {fileID: 797100542179404927} + m_Layer: 0 + m_Name: Obstacle_A (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &638662327646625550 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3995434849611292088} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.019589998, y: 0.01826, z: 0.0004200007} + m_LocalScale: {x: 0.09999999, y: 0.099999994, z: 0.099999994} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1485805075} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &649015215453591905 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8483776306744655080} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &659396881039347729 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7582578313037851916} + - component: {fileID: 6054879827423688997} + - component: {fileID: 942884662820599818} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &694399980660050356 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8437032848816430071} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4267229658642423201} + m_Father: {fileID: 1768723457362662338} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &709150795642389911 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1512266140664015101} + - component: {fileID: 2054318857641617940} + - component: {fileID: 5954261200879404697} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &717859664712057832 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8350412196856759685} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!114 &745280620796223867 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013515289938232331} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &751022546469334734 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7648955035586365660} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6923474915968588066} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!1 &794945052775152952 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4959330394990091128} + - component: {fileID: 8745722689603434926} + - component: {fileID: 1425855205548079208} + - component: {fileID: 353987484217018612} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &797100542179404927 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 632212234670378053} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!114 &827734496452696591 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3995434849611292088} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!33 &902841113804917189 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487916743730626818} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!4 &905650256221039527 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932603438225273569} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7582578313037851916} + m_Father: {fileID: 7158539827906486923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &912744038796945157 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6657240304793226015} + - component: {fileID: 23043829331776014} + - component: {fileID: 2132187455838591900} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &932603438225273569 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 905650256221039527} + - component: {fileID: 6058159267084684011} + - component: {fileID: 4999711032903955610} + - component: {fileID: 6537301440367498971} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &942884662820599818 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 659396881039347729} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!64 &1009370576788274578 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270005638790057179} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7897080326307748755, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!65 &1009603371410267469 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5590001098678129355} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!1 &1013515289938232331 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3062857284959384716} + - component: {fileID: 6806073218916544994} + - component: {fileID: 3986776891237436724} + - component: {fileID: 4143200454103616969} + - component: {fileID: 745280620796223867} + m_Layer: 0 + m_Name: Obstacle_C (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!4 &1022844099073140564 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 415985862594966514} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1058718636200304474} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!4 &1058718636200304474 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5711390336938503575} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1022844099073140564} + m_Father: {fileID: 5938049138584892331} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!65 &1079156969989378692 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5054910057281971731} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!65 &1130633434188494355 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1278468579031865510} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &1136513831620189041 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7289351714466852962} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &1204907073463202489 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1291710516103016690} + - component: {fileID: 8330583186685611654} + - component: {fileID: 7005296671305989235} + - component: {fileID: 2525979076730426748} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!64 &1229093991587219907 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6726569231003625972} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &1278468579031865510 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4736123474551834624} + - component: {fileID: 2778800372626744280} + - component: {fileID: 1130633434188494355} + - component: {fileID: 6127310449233507274} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1287508415775590204 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 325546296279711336} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!4 &1291710516103016690 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1204907073463202489} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4272232236941928582} + m_Father: {fileID: 1768723457362662338} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1300215612005658830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3135100199872576600} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!65 &1425855205548079208 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 794945052775152952} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!4 &1474067230426630735 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7412584723438918936} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2245176661748006649} + m_Father: {fileID: 7158539827906486923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1487916743730626818 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2663845979218155744} + - component: {fileID: 902841113804917189} + - component: {fileID: 8761234481157008878} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1512266140664015101 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 709150795642389911} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5609154318206613121} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!4 &1633800033023042625 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5659839242633766018} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0025, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3093987825810657070} + m_Father: {fileID: 5938049138584892331} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1655377476658680610 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2310969380466255017} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 227713259949022048} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!33 &1703802536647217037 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2482416014031839745} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &1749459577396575917 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3995434849611292088} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5fbb0c4334374934abc11d566db804a9, type: 2} + - {fileID: 2100000, guid: c4a4afe7921aa2f4582fccd2bd7f1efa, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!4 &1768723457362662338 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 445858778017788295} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0.010604001, z: 0.0009150002} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4593503465175244373} + - {fileID: 227713259949022048} + - {fileID: 87024073117057268} + - {fileID: 6923474915968588066} + - {fileID: 4959330394990091128} + - {fileID: 694399980660050356} + - {fileID: 1291710516103016690} + m_Father: {fileID: 752470192} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1857518997055446354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5149257142213325183} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2816792563987123034} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!64 &1979623911150595524 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6177854611582728307} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!4 &2040715084530753743 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3638544640705574315} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0031299996, y: -0.0102100065, z: 0.0006000001} + m_LocalScale: {x: 0.22816001, y: 0.22815995, z: 0.22815995} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1485805075} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2054318857641617940 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 709150795642389911} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &2056117728255683770 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5659839242633766018} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1633800033023042625} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!4 &2066535221205461519 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2931134171670078730} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2663845979218155744} + m_Father: {fileID: 7158539827906486923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &2068338885969859746 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4220046943809318504} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3898735301002983161} + m_Father: {fileID: 5938049138584892331} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &2103917756426605527 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7955078553624631902} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!33 &2103988853933952051 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 415985862594966514} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &2132187455838591900 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 912744038796945157} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &2139031446730282432 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5711390336938503575} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1058718636200304474} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!4 &2219123412163167382 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7899813645363739928} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 387277346089684713} + m_Father: {fileID: 5938049138584892331} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &2245176661748006649 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7955078553624631902} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1474067230426630735} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!64 &2306782933610658763 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3995434849611292088} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &2310969380466255017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 227713259949022048} + - component: {fileID: 1655377476658680610} + - component: {fileID: 7786709767534617870} + - component: {fileID: 502643797195733651} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &2482416014031839745 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1799028286068162} + - component: {fileID: 1703802536647217037} + - component: {fileID: 3589687477874737459} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2525979076730426748 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1204907073463202489} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!33 &2642700488019545527 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3638544640705574315} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!4 &2663845979218155744 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487916743730626818} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2066535221205461519} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &2704022606407850279 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5149257142213325183} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!64 &2704506539484745680 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3638544640705574315} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &2719523896863107265 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 325546296279711336} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5609154318206613121} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!1 &2742175900745438195 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5938049138584892331} + m_Layer: 0 + m_Name: CoinParent + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &2778800372626744280 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1278468579031865510} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4736123474551834624} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!4 &2816792563987123034 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5149257142213325183} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7084733387897962501} + m_Father: {fileID: 7158539827906486923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!64 &2849779299826078844 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 632212234670378053} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!65 &2852877315439843665 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2931134171670078730} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!1 &2916450286872932332 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 387277346089684713} + - component: {fileID: 7467480740922714127} + - component: {fileID: 6770389789964808966} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &2931134171670078730 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2066535221205461519} + - component: {fileID: 3094116720504168017} + - component: {fileID: 2852877315439843665} + - component: {fileID: 8558584843184280893} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &2974009551553199346 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5441540804628575362} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!65 &3038734638669772246 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5659839242633766018} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!1001 &3053107476953267316 PrefabInstance: m_ObjectHideFlags: 0 serializedVersion: 2 @@ -1466,70 +5320,4591 @@ PrefabInstance: serializedVersion: 3 m_TransformParent: {fileID: 0} m_Modifications: - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} + - target: {fileID: 48441560186680580, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 926047953} + - target: {fileID: 48441560186680580, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 66.113 + objectReference: {fileID: 0} + - target: {fileID: 48441560186680580, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: 0.12069942 + objectReference: {fileID: 0} + - target: {fileID: 48441560186680580, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: 0.5819843 + objectReference: {fileID: 0} + - target: {fileID: 48441560186680580, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 66.113 + objectReference: {fileID: 0} + - target: {fileID: 335870137415783586, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100911248} + - target: {fileID: 335870137415783586, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 65.193 + objectReference: {fileID: 0} + - target: {fileID: 335870137415783586, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: 0.9096994 + objectReference: {fileID: 0} + - target: {fileID: 335870137415783586, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: 0.5819845 + objectReference: {fileID: 0} + - target: {fileID: 335870137415783586, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 65.193 + objectReference: {fileID: 0} + - target: {fileID: 1747945203000070676, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 78807753} + - target: {fileID: 1747945203000070676, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 24.571 + objectReference: {fileID: 0} + - target: {fileID: 1747945203000070676, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: -0.01603445 + objectReference: {fileID: 0} + - target: {fileID: 1747945203000070676, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: -2.898006 + objectReference: {fileID: 0} + - target: {fileID: 1747945203000070676, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 24.570997 + objectReference: {fileID: 0} + - target: {fileID: 2181858718594471380, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 1055930635} + - target: {fileID: 2181858718594471380, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 25.413002 + objectReference: {fileID: 0} + - target: {fileID: 2181858718594471380, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: 0.9096994 + objectReference: {fileID: 0} + - target: {fileID: 2181858718594471380, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: -2.8980064 + objectReference: {fileID: 0} + - target: {fileID: 2181858718594471380, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 25.413004 + objectReference: {fileID: 0} + - target: {fileID: 3316593979028313850, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 1111367101} + - target: {fileID: 3316593979028313850, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 64.351 + objectReference: {fileID: 0} + - target: {fileID: 3316593979028313850, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: -0.01603445 + objectReference: {fileID: 0} + - target: {fileID: 3316593979028313850, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: 0.5819847 + objectReference: {fileID: 0} + - target: {fileID: 3316593979028313850, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 64.351006 + objectReference: {fileID: 0} + - target: {fileID: 4441166244158635861, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 1384802799} + - target: {fileID: 4441166244158635861, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 63.48 + objectReference: {fileID: 0} + - target: {fileID: 4441166244158635861, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: -0.49603444 + objectReference: {fileID: 0} + - target: {fileID: 4441166244158635861, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: 0.58198494 + objectReference: {fileID: 0} + - target: {fileID: 4441166244158635861, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 63.480003 + objectReference: {fileID: 0} + - target: {fileID: 6503432965990616960, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 964966095} + - target: {fileID: 6503432965990616960, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 23.7 + objectReference: {fileID: 0} + - target: {fileID: 6503432965990616960, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: -0.49603444 + objectReference: {fileID: 0} + - target: {fileID: 6503432965990616960, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: -2.8980057 + objectReference: {fileID: 0} + - target: {fileID: 6503432965990616960, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 23.700003 + objectReference: {fileID: 0} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} propertyPath: m_LocalPosition.x value: 0 objectReference: {fileID: 0} - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} propertyPath: m_LocalPosition.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} propertyPath: m_LocalPosition.z - value: -7.49 + value: 9.21 objectReference: {fileID: 0} - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} propertyPath: m_LocalRotation.w - value: -0.7071068 - objectReference: {fileID: 0} - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} - propertyPath: m_LocalRotation.x - value: 0.7071068 - objectReference: {fileID: 0} - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} - propertyPath: m_LocalRotation.y - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 270 - objectReference: {fileID: 0} - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} - propertyPath: m_LocalEulerAnglesHint.y value: 0 objectReference: {fileID: 0} - - target: {fileID: 688434764690005743, guid: f2954c4fa84d46f44843b84648595c93, type: 3} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_LocalRotation.y + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 180 + objectReference: {fileID: 0} + - target: {fileID: 6913307430280152876, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 4095980538157770506, guid: f2954c4fa84d46f44843b84648595c93, type: 3} - propertyPath: coinChance - value: 90 + - target: {fileID: 7724895669153883453, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 1252002874} + - target: {fileID: 7724895669153883453, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[0].z + value: 26.333 objectReference: {fileID: 0} - - target: {fileID: 7483878161919881348, guid: f2954c4fa84d46f44843b84648595c93, type: 3} + - target: {fileID: 7724895669153883453, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].x + value: 0.12069942 + objectReference: {fileID: 0} + - target: {fileID: 7724895669153883453, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].y + value: -2.8980067 + objectReference: {fileID: 0} + - target: {fileID: 7724895669153883453, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_Positions.Array.data[1].z + value: 26.333 + objectReference: {fileID: 0} + - target: {fileID: 8539668206094884703, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} propertyPath: m_Name value: Platform objectReference: {fileID: 0} + - target: {fileID: 8539668206094884703, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: f2954c4fa84d46f44843b84648595c93, type: 3} + m_SourcePrefab: {fileID: 100100000, guid: aef2a50dc2159e44584497dfc2fdaeb2, type: 3} +--- !u!23 &3059940638303548996 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7292919985785629307} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!4 &3062857284959384716 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013515289938232331} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: -0.0030299993, z: 0.00010000008} + m_LocalScale: {x: 0.09999999, y: 0.099999994, z: 0.099999994} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1485805075} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3087723806915239373 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5557001359027713513} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!4 &3093987825810657070 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3996878112452692793} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1633800033023042625} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &3094116720504168017 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2931134171670078730} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2066535221205461519} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!4 &3097619908975711505 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6726569231003625972} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.001208, y: 0.0027599996, z: 0.00028000007} + m_LocalScale: {x: 0.34298483, y: 0.099999994, z: 0.099999994} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1485805075} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &3102359203988952507 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4829607523570384357} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &3135100199872576600 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7934655723053204976} + - component: {fileID: 6254262913496093813} + - component: {fileID: 9129172511456267031} + - component: {fileID: 1300215612005658830} + m_Layer: 0 + m_Name: Coin (6) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!33 &3168433799179096387 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6023648770678856628} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!33 &3229757144516282168 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6177854611582728307} + m_Mesh: {fileID: 6903047285313106049, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &3296682556006369641 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7412584723438918936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!65 &3467464217329365528 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7412584723438918936} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &3589687477874737459 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2482416014031839745} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!23 &3600469163774391219 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6016350752622152233} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &3609647905905293215 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4220046943809318504} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &3638544640705574315 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2040715084530753743} + - component: {fileID: 2642700488019545527} + - component: {fileID: 6263159730164301230} + - component: {fileID: 2704506539484745680} + - component: {fileID: 4043077284935219628} + m_Layer: 0 + m_Name: Obstacle_A (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!65 &3706079152948951842 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4220046943809318504} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &3730867442602869814 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3996878112452692793} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!4 &3768973811081683105 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8483776306744655080} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4593503465175244373} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!4 &3898735301002983161 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5441540804628575362} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2068338885969859746} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &3930198775956834225 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3995434849611292088} + m_Mesh: {fileID: 4419157180834094123, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &3986776891237436724 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013515289938232331} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 718bdba339f39de469f61300995969dd, type: 2} + - {fileID: 2100000, guid: b6af01873ef812748a1cc288cbd122b9, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &3995434849611292088 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 638662327646625550} + - component: {fileID: 3930198775956834225} + - component: {fileID: 1749459577396575917} + - component: {fileID: 827734496452696591} + - component: {fileID: 2306782933610658763} + m_Layer: 0 + m_Name: Obstacle_H (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!1 &3996878112452692793 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3093987825810657070} + - component: {fileID: 4591212497191697231} + - component: {fileID: 3730867442602869814} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &4043077284935219628 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3638544640705574315} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!64 &4143200454103616969 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013515289938232331} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &4217495358898553656 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4829607523570384357} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &4220046943809318504 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2068338885969859746} + - component: {fileID: 7314301240838198908} + - component: {fileID: 3706079152948951842} + - component: {fileID: 3609647905905293215} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4267229658642423201 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7289351714466852962} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 694399980660050356} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!4 &4272232236941928582 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6016350752622152233} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1291710516103016690} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!33 &4282855442640444189 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8675064259153448138} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!65 &4396425980619283586 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 376905827315019946} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &4397058550531695681 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5441540804628575362} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!33 &4591212497191697231 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3996878112452692793} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!4 &4593503465175244373 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5054910057281971731} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3768973811081683105} + m_Father: {fileID: 1768723457362662338} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &4646494595725097846 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7491527215555872870} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!4 &4736123474551834624 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1278468579031865510} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6657240304793226015} + m_Father: {fileID: 7158539827906486923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &4829607523570384357 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 551163645553707726} + - component: {fileID: 7930882025720235183} + - component: {fileID: 4217495358898553656} + - component: {fileID: 6405534776803298710} + - component: {fileID: 3102359203988952507} + m_Layer: 0 + m_Name: Obstacle_A (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &4885252553118558591 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7899813645363739928} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2219123412163167382} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!23 &4953086241802618777 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6726569231003625972} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!4 &4959330394990091128 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 794945052775152952} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7117344055227683522} + m_Father: {fileID: 1768723457362662338} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!65 &4999711032903955610 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932603438225273569} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!1 &5054910057281971731 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4593503465175244373} + - component: {fileID: 6462852981614910371} + - component: {fileID: 1079156969989378692} + - component: {fileID: 8584736199581222049} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &5065969042316208359 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8437032848816430071} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!1 &5149257142213325183 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2816792563987123034} + - component: {fileID: 1857518997055446354} + - component: {fileID: 8359556234608466664} + - component: {fileID: 2704022606407850279} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &5193890870395946654 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5711390336938503575} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!114 &5387860485783943985 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 376905827315019946} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 5800419689711318518} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!1 &5441540804628575362 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3898735301002983161} + - component: {fileID: 4397058550531695681} + - component: {fileID: 2974009551553199346} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &5448403341601393901 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5711390336938503575} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!23 &5454130120769861991 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7648955035586365660} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &5522819547463273535 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5659839242633766018} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &5557001359027713513 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7084733387897962501} + - component: {fileID: 3087723806915239373} + - component: {fileID: 6316626536720087413} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &5590001098678129355 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 87024073117057268} + - component: {fileID: 7146385605717486607} + - component: {fileID: 1009603371410267469} + - component: {fileID: 84193508315437889} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!33 &5604956552245340253 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 442185325402976972} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!4 &5609154318206613121 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 325546296279711336} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00625, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1512266140664015101} + m_Father: {fileID: 5938049138584892331} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &5636122748758836565 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 632212234670378053} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5659839242633766018 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1633800033023042625} + - component: {fileID: 2056117728255683770} + - component: {fileID: 3038734638669772246} + - component: {fileID: 5522819547463273535} + m_Layer: 0 + m_Name: Coin (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5694753883511184516 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8675064259153448138} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8279420750646525446} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!1 &5711390336938503575 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1058718636200304474} + - component: {fileID: 2139031446730282432} + - component: {fileID: 5448403341601393901} + - component: {fileID: 5193890870395946654} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5800419689711318518 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 376905827315019946} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 180152399385828915} + m_Father: {fileID: 7158539827906486923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &5938049138584892331 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2742175900745438195} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0029999998, y: -0.0150500005, z: 0.0009100007} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2219123412163167382} + - {fileID: 2068338885969859746} + - {fileID: 1633800033023042625} + - {fileID: 1058718636200304474} + - {fileID: 7590927445749077735} + - {fileID: 5609154318206613121} + - {fileID: 7934655723053204976} + m_Father: {fileID: 752470192} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &5954261200879404697 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 709150795642389911} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &6016350752622152233 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4272232236941928582} + - component: {fileID: 8593492335087795023} + - component: {fileID: 3600469163774391219} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &6023648770678856628 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7117344055227683522} + - component: {fileID: 3168433799179096387} + - component: {fileID: 6770410222315830580} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!33 &6054879827423688997 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 659396881039347729} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &6058159267084684011 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932603438225273569} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 905650256221039527} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!1 &6114778574090085035 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6923474915968588066} + - component: {fileID: 8304078473496960538} + - component: {fileID: 7017587317996336904} + - component: {fileID: 6941007218714945895} + m_Layer: 0 + m_Name: Coin (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &6127310449233507274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1278468579031865510} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!23 &6141364253527430764 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8675064259153448138} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &6174863685811179939 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8350412196856759685} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 8279420750646525446} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!1 &6177854611582728307 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8728015990411697120} + - component: {fileID: 3229757144516282168} + - component: {fileID: 8311285141734264751} + - component: {fileID: 1979623911150595524} + - component: {fileID: 73442385067427209} + m_Layer: 0 + m_Name: Obstacle_G (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &6254262913496093813 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3135100199872576600} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7934655723053204976} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!23 &6263159730164301230 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3638544640705574315} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &6285204087775363839 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7979736887950163624} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!23 &6316626536720087413 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5557001359027713513} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!23 &6361775823980741140 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8483776306744655080} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &6371509168745686020 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7899813645363739928} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!64 &6405534776803298710 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4829607523570384357} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 5 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &6462852981614910371 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5054910057281971731} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4593503465175244373} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &6486325401891820448 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7412584723438918936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1474067230426630735} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &6511939872878097470 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7979736887950163624} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 7590927445749077735} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &6537301440367498971 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932603438225273569} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!33 &6589407816286668587 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7292919985785629307} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6653952889652811916 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 415985862594966514} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!4 &6657240304793226015 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 912744038796945157} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4736123474551834624} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &6680117678606654293 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270005638790057179} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 86df759a5996f0a44bb708c5e4de46e0, type: 3} + m_Name: + m_EditorClassIdentifier: + coinParents: + - {fileID: 2742175900745438195} + - {fileID: 445858778017788295} + - {fileID: 8871420543146482535} + obstacleParents: + - {fileID: 3995434849611292088} + - {fileID: 6177854611582728307} + - {fileID: 6726569231003625972} + - {fileID: 1013515289938232331} + - {fileID: 632212234670378053} + - {fileID: 3638544640705574315} + - {fileID: 4829607523570384357} + coinChance: 90 +--- !u!1 &6726569231003625972 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3097619908975711505} + - component: {fileID: 7277144323528588837} + - component: {fileID: 4953086241802618777} + - component: {fileID: 1229093991587219907} + - component: {fileID: 7147577208044732669} + m_Layer: 0 + m_Name: Obstacle_E (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!33 &6749768363238859170 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7955078553624631902} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6770389789964808966 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2916450286872932332} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!23 &6770410222315830580 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6023648770678856628} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!65 &6773312227123406587 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7899813645363739928} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!33 &6806073218916544994 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1013515289938232331} + m_Mesh: {fileID: 4608327769396088770, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!23 &6838527444338724167 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270005638790057179} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 1900c310de109da4b95b3a554e897fa6, type: 2} + - {fileID: 2100000, guid: bd4a01711df9d8d43a627cfa7fd3d2cf, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!4 &6923474915968588066 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6114778574090085035} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00375, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 751022546469334734} + m_Father: {fileID: 1768723457362662338} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &6941007218714945895 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6114778574090085035} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!65 &6976385703062970627 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 325546296279711336} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!65 &7005296671305989235 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1204907073463202489} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!65 &7017587317996336904 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6114778574090085035} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!4 &7084733387897962501 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5557001359027713513} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2816792563987123034} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!4 &7117344055227683522 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6023648770678856628} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 4959330394990091128} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &7146385605717486607 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5590001098678129355} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 87024073117057268} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!114 &7147577208044732669 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6726569231003625972} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2462cdf4232689348b55306d2ba109b3, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &7158539827906486923 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8871420543146482535} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.0029999998, y: -0.0028500017, z: 0.0009100003} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4736123474551834624} + - {fileID: 8279420750646525446} + - {fileID: 905650256221039527} + - {fileID: 2816792563987123034} + - {fileID: 1474067230426630735} + - {fileID: 2066535221205461519} + - {fileID: 5800419689711318518} + m_Father: {fileID: 752470192} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7277144323528588837 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6726569231003625972} + m_Mesh: {fileID: 4633081259716367285, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &7289351714466852962 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4267229658642423201} + - component: {fileID: 7942385483201439410} + - component: {fileID: 1136513831620189041} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &7292919985785629307 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8576640129912714624} + - component: {fileID: 6589407816286668587} + - component: {fileID: 3059940638303548996} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &7314301240838198908 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4220046943809318504} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 2068338885969859746} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!65 &7334171584564016049 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7979736887950163624} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!1 &7412584723438918936 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1474067230426630735} + - component: {fileID: 6486325401891820448} + - component: {fileID: 3467464217329365528} + - component: {fileID: 3296682556006369641} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!33 &7467480740922714127 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2916450286872932332} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &7491527215555872870 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 214533908960631766} + - component: {fileID: 33373005429618993} + - component: {fileID: 4646494595725097846} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7554368316460665349 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 632212234670378053} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0.0023099994, y: 0.012310006, z: 0.0006000001} + m_LocalScale: {x: 0.22816001, y: 0.22815995, z: 0.22815995} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1485805075} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &7582578313037851916 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 659396881039347729} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 905650256221039527} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!4 &7590927445749077735 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7979736887950163624} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.005, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1799028286068162} + m_Father: {fileID: 5938049138584892331} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &7648955035586365660 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 751022546469334734} + - component: {fileID: 8936510749819158762} + - component: {fileID: 5454130120769861991} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &7786709767534617870 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2310969380466255017} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!1 &7899813645363739928 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2219123412163167382} + - component: {fileID: 4885252553118558591} + - component: {fileID: 6773312227123406587} + - component: {fileID: 6371509168745686020} + m_Layer: 0 + m_Name: Coin + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7921441412489814704 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270005638790057179} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: -0, z: -0, w: -0.7071068} + m_LocalPosition: {x: 0, y: 0, z: -7.49} + m_LocalScale: {x: 151.7685, y: 151.7685, z: 151.7685} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 752470192} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 270, y: 0, z: 0} +--- !u!33 &7930882025720235183 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4829607523570384357} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!4 &7934655723053204976 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3135100199872576600} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.0075, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 214533908960631766} + m_Father: {fileID: 5938049138584892331} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7942385483201439410 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7289351714466852962} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!1 &7955078553624631902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2245176661748006649} + - component: {fileID: 6749768363238859170} + - component: {fileID: 2103917756426605527} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &7979736887950163624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7590927445749077735} + - component: {fileID: 6511939872878097470} + - component: {fileID: 7334171584564016049} + - component: {fileID: 6285204087775363839} + m_Layer: 0 + m_Name: Coin (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &8226661787679219916 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 442185325402976972} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &8246808918428622253 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8437032848816430071} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 694399980660050356} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!4 &8279420750646525446 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8350412196856759685} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0.00125, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5694753883511184516} + m_Father: {fileID: 7158539827906486923} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!23 &8281030597411284083 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 99215374334050911} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &8304078473496960538 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6114778574090085035} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 6923474915968588066} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!23 &8311285141734264751 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6177854611582728307} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 0a9aa12c5ab3052419c1a39f7d882791, type: 2} + - {fileID: 2100000, guid: 7de1de522cb61da478c940b69f18f92f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!114 &8330583186685611654 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1204907073463202489} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 1291710516103016690} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!1 &8350412196856759685 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8279420750646525446} + - component: {fileID: 6174863685811179939} + - component: {fileID: 8525366437759530026} + - component: {fileID: 717859664712057832} + m_Layer: 0 + m_Name: Coin (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &8359556234608466664 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5149257142213325183} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!1 &8437032848816430071 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 694399980660050356} + - component: {fileID: 8246808918428622253} + - component: {fileID: 5065969042316208359} + - component: {fileID: 8835782413583733554} + m_Layer: 0 + m_Name: Coin (5) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &8483776306744655080 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3768973811081683105} + - component: {fileID: 649015215453591905} + - component: {fileID: 6361775823980741140} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!65 &8525366437759530026 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8350412196856759685} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8558584843184280893 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2931134171670078730} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!4 &8576640129912714624 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7292919985785629307} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 87024073117057268} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &8584736199581222049 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5054910057281971731} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!33 &8593492335087795023 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6016350752622152233} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!114 &8649784718150443247 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 376905827315019946} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &8675064259153448138 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5694753883511184516} + - component: {fileID: 4282855442640444189} + - component: {fileID: 6141364253527430764} + m_Layer: 0 + m_Name: Mesh + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8728015990411697120 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6177854611582728307} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -0.019919997, y: 0.005229998, z: 0.00030000004} + m_LocalScale: {x: 0.09999999, y: 0.099999994, z: 0.099999994} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 1485805075} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &8745722689603434926 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 794945052775152952} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4d0390bd8b8ffd640b34fe25065ff1df, type: 3} + m_Name: + m_EditorClassIdentifier: + updateType: 0 + isSpeedBased: 0 + hasOnStart: 0 + hasOnPlay: 0 + hasOnUpdate: 0 + hasOnStepComplete: 0 + hasOnComplete: 0 + hasOnTweenCreated: 0 + hasOnRewind: 0 + onStart: + m_PersistentCalls: + m_Calls: [] + onPlay: + m_PersistentCalls: + m_Calls: [] + onUpdate: + m_PersistentCalls: + m_Calls: [] + onStepComplete: + m_PersistentCalls: + m_Calls: [] + onComplete: + m_PersistentCalls: + m_Calls: [] + onTweenCreated: + m_PersistentCalls: + m_Calls: [] + onRewind: + m_PersistentCalls: + m_Calls: [] + targetIsSelf: 1 + targetGO: {fileID: 0} + tweenTargetIsTargetGO: 1 + delay: 0 + duration: 0.02 + easeType: 1 + easeCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + loopType: 2 + loops: -1 + id: + isRelative: 1 + isFrom: 0 + isIndependentUpdate: 0 + autoKill: 1 + autoGenerate: 1 + isActive: 1 + isValid: 1 + target: {fileID: 4959330394990091128} + animationType: 4 + targetType: 11 + forcedTargetType: 0 + autoPlay: 1 + useTargetAsV3: 0 + endValueFloat: 0 + endValueV3: {x: 0, y: 0, z: 10} + endValueV2: {x: 0, y: 0} + endValueColor: {r: 1, g: 1, b: 1, a: 1} + endValueString: + endValueRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + endValueTransform: {fileID: 0} + optionalBool0: 0 + optionalBool1: 0 + optionalFloat0: 0 + optionalInt0: 0 + optionalRotationMode: 1 + optionalScrambleMode: 0 + optionalShakeRandomnessMode: 0 + optionalString: +--- !u!23 &8761234481157008878 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487916743730626818} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5f4b80ccf45d8ec4fab5df3dd94821a7, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!4 &8808338730991463533 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 99215374334050911} + serializedVersion: 2 + m_LocalRotation: {x: 0.7071068, y: 0, z: 0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.19766942, y: 0.19766945, z: 0.03289082} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 227713259949022048} + m_LocalEulerAnglesHint: {x: 90, y: 0, z: 0} +--- !u!114 &8835782413583733554 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8437032848816430071} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9c85bf45bd2339b4e8d43dbff237ba1f, type: 3} + m_Name: + m_EditorClassIdentifier: + coinValue: 1 +--- !u!1 &8871420543146482535 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7158539827906486923} + m_Layer: 0 + m_Name: CoinParent (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!33 &8892407194942957765 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 632212234670378053} + m_Mesh: {fileID: -7546900457769358726, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!33 &8936510749819158762 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7648955035586365660} + m_Mesh: {fileID: -5216581434543980006, guid: 79cbf4d9a7cecd84093b8ffc885e72b8, type: 3} +--- !u!65 &9129172511456267031 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3135100199872576600} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.0012, y: 0.0012, z: 0.001} + m_Center: {x: 0, y: 0, z: 0} --- !u!1660057539 &9223372036854775807 SceneRoots: m_ObjectHideFlags: 0 m_Roots: - - {fileID: 1787069562} - - {fileID: 1704108060} - {fileID: 1763402142} - - {fileID: 7233716943061433439} + - {fileID: 7921441412489814704} - {fileID: 260553924} - {fileID: 825336135} - {fileID: 1870306513} - {fileID: 191013148} - {fileID: 1718549878} - {fileID: 65175300} + - {fileID: 1787069562} + - {fileID: 1704108060} + - {fileID: 3053107476953267316} + - {fileID: 864845194} + - {fileID: 1850953451} diff --git a/Assets/Scenes/ChaseRun_Profiles.meta b/Assets/Scenes/ChaseRun_Profiles.meta new file mode 100644 index 0000000..8047495 --- /dev/null +++ b/Assets/Scenes/ChaseRun_Profiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7200e292300c8794ea58ecf2f62da3b9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/ChaseRun_Profiles/PostProcessing Profile.asset b/Assets/Scenes/ChaseRun_Profiles/PostProcessing Profile.asset new file mode 100644 index 0000000..1086609 --- /dev/null +++ b/Assets/Scenes/ChaseRun_Profiles/PostProcessing Profile.asset @@ -0,0 +1,63 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5284191365958908743 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 48a79b01ea5641d4aa6daa2e23605641, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + intensity: + overrideState: 1 + value: 4 + threshold: + overrideState: 0 + value: 1 + softKnee: + overrideState: 0 + value: 0.5 + clamp: + overrideState: 0 + value: 65472 + diffusion: + overrideState: 0 + value: 7 + anamorphicRatio: + overrideState: 0 + value: 0 + color: + overrideState: 0 + value: {r: 1, g: 1, b: 1, a: 1} + fastMode: + overrideState: 0 + value: 0 + dirtTexture: + overrideState: 0 + value: {fileID: 0} + defaultState: 1 + dirtIntensity: + overrideState: 0 + value: 0 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8e6292b2c06870d4495f009f912b9600, type: 3} + m_Name: PostProcessing Profile + m_EditorClassIdentifier: + settings: + - {fileID: -5284191365958908743} diff --git a/Assets/Scenes/ChaseRun_Profiles/PostProcessing Profile.asset.meta b/Assets/Scenes/ChaseRun_Profiles/PostProcessing Profile.asset.meta new file mode 100644 index 0000000..c40d0f1 --- /dev/null +++ b/Assets/Scenes/ChaseRun_Profiles/PostProcessing Profile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fd230e105e6b6b24ab927736c635d4d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/CrateEscape.unity b/Assets/Scenes/CrateEscape.unity index bc6eb12..d8c8e66 100644 --- a/Assets/Scenes/CrateEscape.unity +++ b/Assets/Scenes/CrateEscape.unity @@ -122,39 +122,7 @@ NavMeshSettings: debug: m_Flags: 0 m_NavMeshData: {fileID: 0} ---- !u!1 &117311379 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 117311380} - m_Layer: 0 - m_Name: Laser (3) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &117311380 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 117311379} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} - m_LocalPosition: {x: -0.256, y: 0.9, z: 0.473} - m_LocalScale: {x: 0.15260652, y: 1.5260652, z: 0.15260652} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 401383257} - m_Father: {fileID: 1406034901} - m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} ---- !u!21 &141602864 +--- !u!21 &22229070 Material: serializedVersion: 8 m_ObjectHideFlags: 0 @@ -188,6 +156,38 @@ Material: m_Colors: - _Color: {r: 1, g: 0, b: 0, a: 1} m_BuildTextureStacks: [] +--- !u!1 &117311379 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 117311380} + m_Layer: 0 + m_Name: Laser (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &117311380 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 117311379} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: -0.256, y: 0.9, z: 0.473} + m_LocalScale: {x: 0.15260652, y: 1.5260652, z: 0.15260652} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 401383257} + m_Father: {fileID: 1406034901} + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} --- !u!1 &172963734 GameObject: m_ObjectHideFlags: 0 @@ -487,7 +487,7 @@ LineRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 1714453622} + - {fileID: 393063585} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -834,6 +834,40 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 335344494} m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!21 &393063585 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] --- !u!1 &401383256 GameObject: m_ObjectHideFlags: 0 @@ -1682,7 +1716,7 @@ LineRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2115947730} + - {fileID: 22229070} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -1786,40 +1820,6 @@ MonoBehaviour: emissionStrength: 2 scrollSpeed: 1 --- !u!21 &641123826 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: Custom/EmissiveLaser - m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} - m_Parent: {fileID: 0} - m_ModifiedSerializedProperties: 0 - m_ValidKeywords: [] - m_InvalidKeywords: [] - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_LockedProperties: - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Emission: 2 - - _ScrollSpeed: 1 - m_Colors: - - _Color: {r: 1, g: 0, b: 0, a: 1} - m_BuildTextureStacks: [] ---- !u!21 &726270363 Material: serializedVersion: 8 m_ObjectHideFlags: 0 @@ -1961,6 +1961,40 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 728104379} m_Mesh: {fileID: 10208, guid: 0000000000000000e000000000000000, type: 0} +--- !u!21 &741181466 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] --- !u!1 &752381244 GameObject: m_ObjectHideFlags: 0 @@ -2015,7 +2049,7 @@ LineRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 141602864} + - {fileID: 2075399282} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -2352,163 +2386,11 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 848006059} m_Mesh: {fileID: 10208, guid: 0000000000000000e000000000000000, type: 0} ---- !u!1 &898337399 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 898337400} - - component: {fileID: 898337402} - - component: {fileID: 898337401} - m_Layer: 0 - m_Name: BeamLine - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &898337400 +--- !u!4 &898337400 stripped Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} + m_CorrespondingSourceObject: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + m_PrefabInstance: {fileID: 7564908655501829875} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 898337399} - serializedVersion: 2 - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0.045648552, z: 0.33735037} - m_LocalScale: {x: 5.9825163, y: 5.9825163, z: 5.9825163} - m_ConstrainProportionsScale: 1 - m_Children: [] - m_Father: {fileID: 1752173435} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!120 &898337401 -LineRenderer: - serializedVersion: 2 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 898337399} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 0 - m_LightProbeUsage: 0 - m_ReflectionProbeUsage: 0 - m_RayTracingMode: 0 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 1132514958} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_Positions: - - {x: -1.6539582, y: 0.34799498, z: -2.94876} - - {x: 4.5460424, y: 0.34799498, z: -2.9487607} - m_Parameters: - serializedVersion: 3 - widthMultiplier: 0.04 - widthCurve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - colorGradient: - serializedVersion: 2 - key0: {r: 1, g: 0, b: 0, a: 1} - key1: {r: 1, g: 0, b: 0, a: 1} - key2: {r: 0, g: 0, b: 0, a: 0} - key3: {r: 0, g: 0, b: 0, a: 0} - key4: {r: 0, g: 0, b: 0, a: 0} - key5: {r: 0, g: 0, b: 0, a: 0} - key6: {r: 0, g: 0, b: 0, a: 0} - key7: {r: 0, g: 0, b: 0, a: 0} - ctime0: 0 - ctime1: 65535 - ctime2: 0 - ctime3: 0 - ctime4: 0 - ctime5: 0 - ctime6: 0 - ctime7: 0 - atime0: 0 - atime1: 65535 - atime2: 0 - atime3: 0 - atime4: 0 - atime5: 0 - atime6: 0 - atime7: 0 - m_Mode: 0 - m_ColorSpace: -1 - m_NumColorKeys: 2 - m_NumAlphaKeys: 2 - numCornerVertices: 0 - numCapVertices: 0 - alignment: 0 - textureMode: 0 - textureScale: {x: 1, y: 1} - shadowBias: 0.5 - generateLightingData: 0 - m_MaskInteraction: 0 - m_UseWorldSpace: 1 - m_Loop: 0 - m_ApplyActiveColorSpace: 1 ---- !u!114 &898337402 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 898337399} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fb66dc0e33e58d7439c1db6e435dcc9e, type: 3} - m_Name: - m_EditorClassIdentifier: - maxDistance: 6.2 - collisionMask: - serializedVersion: 2 - m_Bits: 4294967295 - laserColor: {r: 1, g: 0, b: 0, a: 1} - laserWidth: 0.04 - emissionStrength: 2 - scrollSpeed: 1 --- !u!1 &910211697 GameObject: m_ObjectHideFlags: 0 @@ -2718,40 +2600,6 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 4db0e418c0b7a174ba18059f8a3d0fdf, type: 3} ---- !u!21 &1132514958 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: Custom/EmissiveLaser - m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} - m_Parent: {fileID: 0} - m_ModifiedSerializedProperties: 0 - m_ValidKeywords: [] - m_InvalidKeywords: [] - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_LockedProperties: - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Emission: 2 - - _ScrollSpeed: 1 - m_Colors: - - _Color: {r: 1, g: 0, b: 0, a: 1} - m_BuildTextureStacks: [] --- !u!1 &1322712642 GameObject: m_ObjectHideFlags: 0 @@ -3473,7 +3321,7 @@ LineRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 726270363} + - {fileID: 2002851072} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -3576,40 +3424,6 @@ MonoBehaviour: laserWidth: 0.04 emissionStrength: 2 scrollSpeed: 1 ---- !u!21 &1714453622 -Material: - serializedVersion: 8 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: Custom/EmissiveLaser - m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} - m_Parent: {fileID: 0} - m_ModifiedSerializedProperties: 0 - m_ValidKeywords: [] - m_InvalidKeywords: [] - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_LockedProperties: - m_SavedProperties: - serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Emission: 2 - - _ScrollSpeed: 1 - m_Colors: - - _Color: {r: 1, g: 0, b: 0, a: 1} - m_BuildTextureStacks: [] --- !u!1 &1714914736 GameObject: m_ObjectHideFlags: 0 @@ -3822,6 +3636,40 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1752173434} m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!21 &2002851072 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] --- !u!1 &2042379818 GameObject: m_ObjectHideFlags: 0 @@ -3930,6 +3778,40 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2042379818} m_Mesh: {fileID: 10208, guid: 0000000000000000e000000000000000, type: 0} +--- !u!21 &2075399282 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Custom/EmissiveLaser + m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _Emission: 2 + - _ScrollSpeed: 1 + m_Colors: + - _Color: {r: 1, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] --- !u!1 &2095314493 GameObject: m_ObjectHideFlags: 0 @@ -4036,40 +3918,67 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2095314493} m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} ---- !u!21 &2115947730 -Material: - serializedVersion: 8 +--- !u!1001 &7564908655501829875 +PrefabInstance: m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: Custom/EmissiveLaser - m_Shader: {fileID: 4800000, guid: 69d193eb1566e62409de769d5c16fef2, type: 3} - m_Parent: {fileID: 0} - m_ModifiedSerializedProperties: 0 - m_ValidKeywords: [] - m_InvalidKeywords: [] - m_LightmapFlags: 4 - m_EnableInstancingVariants: 0 - m_DoubleSidedGI: 0 - m_CustomRenderQueue: -1 - stringTagMap: {} - disabledShaderPasses: [] - m_LockedProperties: - m_SavedProperties: + serializedVersion: 2 + m_Modification: serializedVersion: 3 - m_TexEnvs: - - _MainTex: - m_Texture: {fileID: 0} - m_Scale: {x: 1, y: 1} - m_Offset: {x: 0, y: 0} - m_Ints: [] - m_Floats: - - _Emission: 2 - - _ScrollSpeed: 1 - m_Colors: - - _Color: {r: 1, g: 0, b: 0, a: 1} - m_BuildTextureStacks: [] + m_TransformParent: {fileID: 1752173435} + m_Modifications: + - target: {fileID: 4709206691219953776, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 741181466} + - target: {fileID: 6110383875702633374, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_Name + value: BeamLine + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0.045648552 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0.33735037 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8604618113212649461, guid: e205d26979335984cb73f0328e3c07ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e205d26979335984cb73f0328e3c07ca, type: 3} --- !u!1660057539 &9223372036854775807 SceneRoots: m_ObjectHideFlags: 0 diff --git a/Assets/Scripts/ChaseOn/ChaseCoinRandomizer.cs b/Assets/Scripts/ChaseOn/ChaseCoinRandomizer.cs new file mode 100644 index 0000000..ae479e6 --- /dev/null +++ b/Assets/Scripts/ChaseOn/ChaseCoinRandomizer.cs @@ -0,0 +1,44 @@ +using UnityEngine; + +public class ChaseCoinRandomizer : MonoBehaviour +{ + [Header("Coin Parents (Only 0 or 1 will be activated)")] + public GameObject[] coinParents; + + //[Header("Obstacle Parents (Random number and combination)")] + //public GameObject[] obstacleParents; + + [Range(0, 100)] + public int coinChance = 40; // 40% chance to show a coin group + + void Start() + { + RandomizeCoins(); +// RandomizeObstacles(); + } + + void RandomizeCoins() + { + // Deactivate all coin groups + foreach (var coin in coinParents) + coin.SetActive(false); + + // Random chance to activate one + int roll = Random.Range(0, 100); + if (roll < coinChance && coinParents.Length > 0) + { + int index = Random.Range(0, coinParents.Length); + coinParents[index].SetActive(true); + } + } + + // void RandomizeObstacles() + // { + // foreach (var obstacle in obstacleParents) + // { + // // Each obstacle has independent 50% chance to be active + // bool shouldActivate = Random.value < 0.5f; + // obstacle.SetActive(shouldActivate); + // } + // } +} diff --git a/Assets/Scripts/ChaseOn/ChaseCoinRandomizer.cs.meta b/Assets/Scripts/ChaseOn/ChaseCoinRandomizer.cs.meta new file mode 100644 index 0000000..ded4630 --- /dev/null +++ b/Assets/Scripts/ChaseOn/ChaseCoinRandomizer.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4b1effc2ff8bc134a97d96701dcc10c1 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/ChaseOn/ChaseObstacleRandomizer.cs b/Assets/Scripts/ChaseOn/ChaseObstacleRandomizer.cs new file mode 100644 index 0000000..07fd04e --- /dev/null +++ b/Assets/Scripts/ChaseOn/ChaseObstacleRandomizer.cs @@ -0,0 +1,44 @@ +using UnityEngine; + +public class ChaseObstacleRandomizer : MonoBehaviour +{ + //[Header("Coin Parents (Only 0 or 1 will be activated)")] + //public GameObject[] coinParents; + + [Header("Obstacle Parents (Random number and combination)")] + public GameObject[] obstacleParents; + + //[Range(0, 100)] + //public int coinChance = 40; // 40% chance to show a coin group + + void Start() + { + //RandomizeCoins(); + RandomizeObstacles(); + } + + // void RandomizeCoins() + // { + // // Deactivate all coin groups + // foreach (var coin in coinParents) + // coin.SetActive(false); + + // // Random chance to activate one + // int roll = Random.Range(0, 100); + // if (roll < coinChance && coinParents.Length > 0) + // { + // int index = Random.Range(0, coinParents.Length); + // coinParents[index].SetActive(true); + // } + // } + + void RandomizeObstacles() + { + foreach (var obstacle in obstacleParents) + { + // Each obstacle has independent 50% chance to be active + bool shouldActivate = Random.value < 0.5f; + obstacle.SetActive(shouldActivate); + } + } +} diff --git a/Assets/Scripts/ChaseOn/ChaseObstacleRandomizer.cs.meta b/Assets/Scripts/ChaseOn/ChaseObstacleRandomizer.cs.meta new file mode 100644 index 0000000..c134fc4 --- /dev/null +++ b/Assets/Scripts/ChaseOn/ChaseObstacleRandomizer.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 509ca16b8c264164f94005d4435a6b2d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/ChaseOn/ChasePlatformSpawner.cs b/Assets/Scripts/ChaseOn/ChasePlatformSpawner.cs index ffae606..78be477 100644 --- a/Assets/Scripts/ChaseOn/ChasePlatformSpawner.cs +++ b/Assets/Scripts/ChaseOn/ChasePlatformSpawner.cs @@ -11,7 +11,7 @@ public class ChasePlatformSpawner : MonoBehaviour private float spawnZ = 0.0f; private float safeZone = 15.0f; private List activePlatforms = new List(); - + int counter = 0; void Start() { for (int i = 0; i < initialPlatforms; i++) @@ -30,9 +30,10 @@ public class ChasePlatformSpawner : MonoBehaviour void SpawnPlatform() { //GameObject go = Instantiate(platformPrefab, new Vector3(0, 0, spawnZ), Quaternion.identity); - GameObject go = Instantiate(platformPrefab, new Vector3(0, 0, spawnZ), platformPrefab.transform.rotation); + GameObject go = Instantiate(platformPrefab, new Vector3(0, -counter*3.54f, spawnZ), platformPrefab.transform.rotation); activePlatforms.Add(go); spawnZ -= platformLength; + counter++; } void DeletePlatform() diff --git a/Assets/Scripts/ChaseOn/ChasePlayerController.cs b/Assets/Scripts/ChaseOn/ChasePlayerController.cs index dd3b04e..af3e1a7 100644 --- a/Assets/Scripts/ChaseOn/ChasePlayerController.cs +++ b/Assets/Scripts/ChaseOn/ChasePlayerController.cs @@ -14,6 +14,11 @@ public class ChasePlayerController : MonoBehaviour private Vector3 targetPosition; + private Vector2 startTouchPosition; + private Vector2 endTouchPosition; + private bool swipeDetected = false; + private float minSwipeDistance = 50f; // Pixels + void Start() { rb = GetComponent(); @@ -24,12 +29,14 @@ public class ChasePlayerController : MonoBehaviour void Update() { HandleInput(); + HandleSwipe(); // Add this HandleLaneSwitch(); MoveForward(); } void HandleInput() { + // Keyboard controls (for testing in editor) if (Input.GetKeyDown(KeyCode.LeftArrow)) { if (currentLane > 0) @@ -44,12 +51,75 @@ public class ChasePlayerController : MonoBehaviour if (Input.GetKeyDown(KeyCode.Space) && isGrounded) { - rb.AddForce(Vector3.up * jumpForce, ForceMode.Impulse); - isGrounded = false; - if (animator != null) animator.SetTrigger("Jump"); + Jump(); } } + void HandleSwipe() + { + if (Input.touchCount == 1) + { + Touch touch = Input.GetTouch(0); + + switch (touch.phase) + { + case TouchPhase.Began: + startTouchPosition = touch.position; + swipeDetected = true; + break; + + case TouchPhase.Ended: + if (swipeDetected) + { + endTouchPosition = touch.position; + Vector2 swipe = endTouchPosition - startTouchPosition; + + if (swipe.magnitude >= minSwipeDistance) + { + float x = swipe.x; + float y = swipe.y; + + if (Mathf.Abs(x) > Mathf.Abs(y)) + { + // Horizontal swipe + if (x > 0) + { + // Swipe Right + if (currentLane < 2) + currentLane++; + } + else + { + // Swipe Left + if (currentLane > 0) + currentLane--; + } + } + else + { + // Vertical swipe + if (y > 0 && isGrounded) + { + // Swipe Up = Jump + Jump(); + } + } + } + + swipeDetected = false; + } + break; + } + } + } + + void Jump() + { + rb.AddForce(Vector3.up * jumpForce, ForceMode.Impulse); + isGrounded = false; + if (animator != null) animator.SetTrigger("Jump"); + } + void HandleLaneSwitch() { float targetX = (currentLane - 1) * laneDistance; @@ -66,7 +136,6 @@ public class ChasePlayerController : MonoBehaviour { if (collision.gameObject.CompareTag("Ground")) { - Debug.Log("Ground"); isGrounded = true; if (animator != null) animator.SetTrigger("Run"); } diff --git a/Assets/Scripts/ChaseOn/ChaseScoreManager.cs b/Assets/Scripts/ChaseOn/ChaseScoreManager.cs index 0ef8393..3fcef6a 100644 --- a/Assets/Scripts/ChaseOn/ChaseScoreManager.cs +++ b/Assets/Scripts/ChaseOn/ChaseScoreManager.cs @@ -1,6 +1,7 @@ using UnityEngine; using UnityEngine.UI; using TMPro; +using UnityEngine.SceneManagement; public class ChaseScoreManager : MonoBehaviour { public TextMeshProUGUI scoreText; @@ -40,4 +41,9 @@ public class ChaseScoreManager : MonoBehaviour score += value; scoreText.text = "Score: " + score; } + public void Restart() + { + Time.timeScale = 1; + SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex); + } } diff --git a/Assets/blue_bomb_export_scene.ma (3).meta b/Assets/blue_bomb_export_scene.ma (3).meta new file mode 100644 index 0000000..94b061d --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3).meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5ee8777ae5ae4674f9ccdf21ef86cd69 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive.meta new file mode 100644 index 0000000..fc0b765 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 46364d7946bc3ad40bb281783112a1d4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu.meta new file mode 100644 index 0000000..4ffd9de --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e90d4671a553a1b4abe8075bfe025d8d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture.meta new file mode 100644 index 0000000..075efda --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0fac787f3b008bd4cbc2634698b6d435 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada.meta new file mode 100644 index 0000000..c28651d --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0dcdea5b33b75ce4e855f1dc06fd2494 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/Materials.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/Materials.meta new file mode 100644 index 0000000..cbf5546 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6296ab2aaea34304d888206502f8061f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/Materials/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.mat b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/Materials/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.mat new file mode 100644 index 0000000..a7b815f --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/Materials/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.mat @@ -0,0 +1,83 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 21a2dbd4faa7f26439616404854fa640, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/Materials/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.mat.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/Materials/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.mat.meta new file mode 100644 index 0000000..61d2a94 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/Materials/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 549fbd2ec98e1534daa384be2a21c6ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.png b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.png new file mode 100644 index 0000000..41c21ea Binary files /dev/null and b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.png differ diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.png.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.png.meta new file mode 100644 index 0000000..67f87b1 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 21a2dbd4faa7f26439616404854fa640 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_N_Utility - Raw.png b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_N_Utility - Raw.png new file mode 100644 index 0000000..c049eed Binary files /dev/null and b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_N_Utility - Raw.png differ diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_N_Utility - Raw.png.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_N_Utility - Raw.png.meta new file mode 100644 index 0000000..1fd5720 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_N_Utility - Raw.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: 568f131071963b94a93a60297a4cb538 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_R_Utility - Raw.png b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_R_Utility - Raw.png new file mode 100644 index 0000000..cd75474 Binary files /dev/null and b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_R_Utility - Raw.png differ diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_R_Utility - Raw.png.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_R_Utility - Raw.png.meta new file mode 100644 index 0000000..4041570 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_R_Utility - Raw.png.meta @@ -0,0 +1,153 @@ +fileFormatVersion: 2 +guid: b3d942698adee77428bac76b82adab05 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets.meta new file mode 100644 index 0000000..ff16be9 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 58147a86427ce30459b7e2951a415724 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes.meta new file mode 100644 index 0000000..41854ca --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 749c975d0ccaef341a6d9a81af4ef992 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA.meta new file mode 100644 index 0000000..5ab4aa2 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: de1bc45c69d8a8042946d94757022265 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA/blue_bomb_export_scene.ma b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA/blue_bomb_export_scene.ma new file mode 100644 index 0000000..3c92dc7 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA/blue_bomb_export_scene.ma @@ -0,0 +1,27882 @@ +//Maya ASCII 2023 scene +//Name: blue_bomb_export_scene.ma +//Last modified: Tue, Jul 08, 2025 05:31:49 PM +//Codeset: 1252 +requires maya "2023"; +requires "stereoCamera" "10.0"; +requires -nodeType "VRaySettingsNode" -dataType "VRaySunParams" -dataType "vrayFloatVectorData" + -dataType "vrayFloatVectorData" -dataType "vrayIntData" "vrayformaya" "6"; +requires -nodeType "aiOptions" -nodeType "aiAOVDriver" -nodeType "aiAOVFilter" -nodeType "aiStandardSurface" + -nodeType "aiNormalMap" "mtoa" "5.2.1.1"; +requires -nodeType "renderSetup" "renderSetup.py" "1.0"; +currentUnit -l centimeter -a degree -t film; +fileInfo "vrayBuild" "6.00.03 990e52f"; +fileInfo "application" "maya"; +fileInfo "product" "Maya 2023"; +fileInfo "version" "2023"; +fileInfo "cutIdentifier" "202211021031-847a9f9623"; +fileInfo "osv" "Windows 10 Pro v2009 (Build: 19045)"; +fileInfo "UUID" "07F84545-48D2-D307-6161-A694D8C05B8D"; +createNode transform -s -n "persp"; + rename -uid "0D21E429-4C51-9468-C138-A1B78C109C0D"; + setAttr ".v" no; + setAttr ".t" -type "double3" -31.041509622107654 79.237573917651346 337.21963952124651 ; + setAttr ".r" -type "double3" 359.66164636912225 -4688.2000000017788 0 ; +createNode camera -s -n "perspShape" -p "persp"; + rename -uid "79D8E9C9-43EA-9DB6-5AD5-5D89EF1917A2"; + setAttr -k off ".v" no; + setAttr ".fl" 34.999999999999993; + setAttr ".coi" 346.67943337561525; + setAttr ".imn" -type "string" "persp"; + setAttr ".den" -type "string" "persp_depth"; + setAttr ".man" -type "string" "persp_mask"; + setAttr ".tp" -type "double3" 11.706039428710938 9.9621549008333226 39.142694471438141 ; + setAttr ".hc" -type "string" "viewSet -p %camera"; +createNode transform -s -n "top"; + rename -uid "746F6130-4539-6F89-5FB4-9BAD907F155E"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0 1000.1 0 ; + setAttr ".r" -type "double3" -90 0 0 ; +createNode camera -s -n "topShape" -p "top"; + rename -uid "B2E89865-49C8-EADC-4447-39942B0B8128"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 1000.1; + setAttr ".ow" 30; + setAttr ".imn" -type "string" "top"; + setAttr ".den" -type "string" "top_depth"; + setAttr ".man" -type "string" "top_mask"; + setAttr ".hc" -type "string" "viewSet -t %camera"; + setAttr ".o" yes; +createNode transform -s -n "front"; + rename -uid "6346EF45-4858-C1F5-C145-F9BB1EA7261A"; + setAttr ".v" no; + setAttr ".t" -type "double3" 0 0 1000.1 ; +createNode camera -s -n "frontShape" -p "front"; + rename -uid "34BD7BE7-40B2-0226-17E9-46927439E0AB"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 1000.1; + setAttr ".ow" 30; + setAttr ".imn" -type "string" "front"; + setAttr ".den" -type "string" "front_depth"; + setAttr ".man" -type "string" "front_mask"; + setAttr ".hc" -type "string" "viewSet -f %camera"; + setAttr ".o" yes; +createNode transform -s -n "side"; + rename -uid "ABFF1587-4E6C-0A76-53FF-968B04A998EF"; + setAttr ".v" no; + setAttr ".t" -type "double3" 1000.1 0 0 ; + setAttr ".r" -type "double3" 0 90 0 ; +createNode camera -s -n "sideShape" -p "side"; + rename -uid "DA1164B7-4F48-6608-BADC-AE8482B7CE2A"; + setAttr -k off ".v" no; + setAttr ".rnd" no; + setAttr ".coi" 1000.1; + setAttr ".ow" 30; + setAttr ".imn" -type "string" "side"; + setAttr ".den" -type "string" "side_depth"; + setAttr ".man" -type "string" "side_mask"; + setAttr ".hc" -type "string" "viewSet -s %camera"; + setAttr ".o" yes; +createNode transform -n "blue_bomb_grp"; + rename -uid "20BD8EF0-4D58-18CF-73D7-0DB2246C1F1E"; + setAttr ".t" -type "double3" 0 -2.7414596080780029 -27.698164520653432 ; + setAttr ".rp" -type "double3" 0 2.7414596080780029 27.613241195678711 ; + setAttr ".sp" -type "double3" 0 2.7414596080780029 27.613241195678711 ; +createNode transform -n "fusel_geo" -p "blue_bomb_grp"; + rename -uid "3287AF1B-41F5-8531-83C4-B8BCA84D9487"; + setAttr ".rp" -type "double3" -9.4010790721813375 147.48073577880859 30.586486955053068 ; + setAttr ".sp" -type "double3" -9.4010790721813375 147.48073577880859 30.586486955053068 ; +createNode mesh -n "fusel_geoShape" -p "fusel_geo"; + rename -uid "10F376D7-4021-B594-8C0E-648DB48EB328"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.470416435657806 0.24296962674767442 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 2616 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.47188967 0.21832645 0.47384155 + 0.22205681 0.47231752 0.22269201 0.4705326 0.21894681 0.47563714 0.22595501 0.47387058 + 0.22656542 0.47168177 0.22721964 0.47045529 0.22338563 0.4689551 0.21963453 0.47721523 + 0.23002434 0.47516841 0.23055881 0.47841471 0.23427969 0.47611719 0.23466533 0.47325546 + 0.23506236 0.4726159 0.23111594 0.47918278 0.2386682 0.47669584 0.23885149 0.47940499 + 0.24313056 0.47686201 0.24307525 0.47362047 0.24301541 0.47359174 0.23903227 0.47906739 + 0.24757236 0.47659719 0.24730253 0.47830087 0.25194353 0.47590882 0.25147533 0.47292536 + 0.25095356 0.47341716 0.24699551 0.47706711 0.25618637 0.47488165 0.25555927 0.4754014 + 0.26023918 0.47348988 0.25952137 0.47111773 0.25873482 0.47216064 0.25487572 0.47345787 + 0.26409912 0.47181398 0.26335025 0.47130448 0.26775503 0.46988887 0.2670399 0.46819347 + 0.2662307 0.46978962 0.26252455 0.46912414 0.27127087 0.46781731 0.27064353 0.4682368 + 0.21112996 0.46680439 0.21152055 0.46520323 0.21219611 0.466322 0.26988143 0.46989828 + 0.21473908 0.46863997 0.2152673 0.46718651 0.21591121 0.46464926 0.22130638 0.46558142 + 0.2247715 0.46538115 0.22483015 0.46445864 0.22138482 0.46617776 0.22831917 0.46596986 + 0.22836196 0.46583468 0.22839075 0.40117759 0.16198528 0.40151531 0.16578358 0.46648043 + 0.23191828 0.46626598 0.23194772 0.46657819 0.23554373 0.46635848 0.23556149 0.46618634 + 0.2355749 0.40031928 0.15420276 0.46654135 0.23918736 0.46631783 0.23919421 0.46643585 + 0.24284106 0.46621102 0.24283713 0.4660216 0.24283409 0.39973193 0.14624053 0.46630514 + 0.24649811 0.4660818 0.24648273 0.46608156 0.25014895 0.46586138 0.25012195 0.46568352 + 0.25010085 0.39984304 0.13821858 0.46578401 0.25378275 0.46556896 0.25374478 0.46534324 + 0.25738692 0.46513516 0.2573368 0.46499199 0.25730181 0.4006111 0.13027036 0.46466982 + 0.26093632 0.46446949 0.26087236 0.46370548 0.26440227 0.46351498 0.26431978 0.46341205 + 0.264274 0.40171719 0.12250471 0.46239293 0.2676909 0.46221608 0.2675823 0.46058482 + 0.27055997 0.46140027 0.21528494 0.46036381 0.27034587 0.40251422 0.11503965 0.46334785 + 0.21801376 0.46317005 0.2181195 0.40166646 0.169442 0.40331459 0.16582096 0.40300161 + 0.16193742 0.40466017 0.16190368 0.40481925 0.16583949 0.40263921 0.15804058 0.40448397 + 0.15798432 0.40675932 0.1579653 0.40668684 0.16190153 0.4066003 0.16585809 0.40224248 + 0.15412718 0.40429682 0.15406764 0.4019466 0.15018725 0.40416807 0.15015048 0.40693241 + 0.15014452 0.40684766 0.15405315 0.40173882 0.14623064 0.40408713 0.14622504 0.40170735 + 0.14226228 0.40408641 0.14229757 0.40707344 0.14234364 0.40701884 0.14624602 0.40186048 + 0.13829511 0.4041844 0.13836861 0.40214652 0.1343376 0.40439743 0.13444579 0.40719312 + 0.13454241 0.40714222 0.13844091 0.40254527 0.13040513 0.40464425 0.13053185 0.40305787 + 0.12650257 0.40495211 0.12662089 0.40727651 0.12671816 0.40723878 0.13063151 0.4035511 + 0.12261599 0.4052549 0.12270802 0.40400809 0.11874092 0.40554738 0.118779 0.40736306 + 0.11882514 0.40732789 0.12278193 0.40430862 0.11488408 0.40572524 0.11479008 0.4030574 + 0.17349619 0.40456152 0.17388004 0.40639323 0.17413861 0.40741414 0.11475646 0.40344745 + 0.16967899 0.4048422 0.16984183 0.40651602 0.16992581 0.41147035 0.16599047 0.41191804 + 0.16218263 0.41213 0.16219252 0.41167933 0.16599095 0.41246337 0.15832734 0.41267788 + 0.15834004 0.41283023 0.15834862 0.42522627 0.22612292 0.42496204 0.22227782 0.41297871 + 0.15441507 0.4131977 0.15442699 0.41342336 0.15045959 0.4136458 0.15046924 0.41382402 + 0.15047711 0.4257971 0.23399144 0.41372579 0.14646441 0.41395193 0.14647222 0.41393447 + 0.14245111 0.41415936 0.14245498 0.41434771 0.14245731 0.42604113 0.24198198 0.41385138 + 0.13843524 0.41407603 0.13843483 0.4136799 0.13443571 0.4139021 0.13443309 0.41407865 + 0.13443083 0.42582524 0.24999672 0.41336679 0.13046896 0.41358566 0.13046378 0.41298044 + 0.12654144 0.41319495 0.12653548 0.4133448 0.1265319 0.42514169 0.25793976 0.4125616 + 0.12267023 0.41277361 0.12266684 0.41224325 0.11885291 0.41245276 0.11885881 0.4125765 + 0.11886227 0.42430359 0.26573372 0.41206604 0.11516553 0.41227371 0.11519301 0.41245514 + 0.11175138 0.41162568 0.17307442 0.41276765 0.11185688 0.42379189 0.27321988 0.41118014 + 0.16968715 0.41138965 0.16966665 0.42483723 0.21859002 0.42311484 0.22219574 0.42335927 + 0.22612298 0.42154735 0.22612327 0.42142212 0.22214592 0.42360687 0.23006392 0.42166042 + 0.23008162 0.41927063 0.23007888 0.4193356 0.22610885 0.41941023 0.22211486 0.42385781 + 0.23401731 0.42176604 0.23403507 0.42400372 0.23798728 0.42182004 0.23798603 0.41912127 + 0.23796862 0.41918123 0.23402244 0.42406857 0.24196619 0.42183721 0.241943 0.42404079 + 0.2459448 0.42175162 0.24589396 0.41895068 0.24583685 0.41901612 0.24190003 0.42383951 + 0.24991733 0.42164671 0.24984533 0.42356122 0.25388438 0.42143649 0.25379092 0.41882837 + 0.25370508 0.41888499 0.24977511 0.42322314 0.25783211 0.42121398 0.25773191 0.42281729 + 0.26175898 0.42096013 0.26167375 0.4187119 0.26159614 0.41875803 0.25765163 0.42245388 + 0.26567549 0.4207235 0.26562113 0.42212987 0.26958245 0.42049879 0.26958901 0.41859061 + 0.26956314 0.41864347 0.26556677 0.42196018 0.27345657 0.42039651 0.27361834 0.4234187 + 0.21446294 0.42169124 0.21400839 0.41955507 0.21368808 0.41852379 0.27369744 0.42300355 + 0.21830893 0.42140895 0.21809924 0.41947669 0.21801299 0.41406322 0.22208565 0.41370493 + 0.22593051 0.41349709 0.22592562 0.41385698 0.22209078 0.41328561 0.22982699 0.41307753 + 0.229819 0.41293949 0.22981381 0.34078985 0.19170231 0.34092486 0.19559947 0.41293287 + 0.23377496; + setAttr ".uvst[0].uvsp[250:499]" 0.41272235 0.23376644 0.41261744 0.23774904 + 0.41240698 0.23774201 0.41225594 0.23773748 0.34056884 0.18371865 0.41246879 0.24174947 + 0.41225749 0.2417441 0.41235852 0.24576026 0.41214627 0.24575728 0.41199422 0.24575526 + 0.34074301 0.17564407 0.41244435 0.24976784 0.41223419 0.24976724 0.41259134 0.25375873 + 0.41238213 0.25376087 0.41224134 0.25376195 0.34129161 0.16760331 0.41284627 0.25771862 + 0.41263753 0.25772148 0.41308939 0.26165134 0.41288286 0.26165313 0.41275913 0.2616536 + 0.34210908 0.15965533 0.41334486 0.26553816 0.41313863 0.26553553 0.41349679 0.26937485 + 0.41329151 0.2693612 0.41318119 0.26935428 0.34288955 0.15183359 0.41352242 0.27307373 + 0.41331863 0.27303773 0.41297662 0.27648944 0.41377366 0.21501654 0.41267473 0.27637047 + 0.34329146 0.14430946 0.4142918 0.21837276 0.41408479 0.21839958 0.34095812 0.19932085 + 0.34283423 0.19575956 0.34272629 0.19176942 0.34466881 0.19184303 0.34471744 0.19587505 + 0.34259158 0.18777728 0.34469646 0.18782777 0.34720021 0.18789244 0.34706074 0.19191381 + 0.34692836 0.19595787 0.34255797 0.18376234 0.34469038 0.1838246 0.34256297 0.17974734 + 0.34480113 0.17982829 0.34749919 0.17992181 0.34734803 0.18390775 0.34273022 0.17573509 + 0.3449356 0.175834 0.34293538 0.17172894 0.34515733 0.17184651 0.3478232 0.17197198 + 0.34764618 0.1759429 0.3432743 0.16773778 0.3453759 0.167862 0.34362382 0.16375315 + 0.34569156 0.16388661 0.34811229 0.16401547 0.34796453 0.16798699 0.34404022 0.15979296 + 0.34594887 0.15990871 0.34440875 0.1558345 0.34626567 0.15593559 0.34840018 0.15603977 + 0.34825933 0.16002393 0.34477615 0.15189248 0.34650499 0.15194446 0.34503609 0.14793819 + 0.34674466 0.14792532 0.34870362 0.14798129 0.34853733 0.15201789 0.34516406 0.14403528 + 0.34686565 0.14384669 0.3423419 0.20354864 0.34427631 0.2041173 0.34664696 0.2045348 + 0.34885973 0.14377958 0.34285766 0.19968545 0.34464628 0.19998258 0.34679455 0.2001245 + 0.35275352 0.19601607 0.35313505 0.19212613 0.35334176 0.19213077 0.3529591 0.19601053 + 0.35354519 0.18818176 0.35375142 0.18818969 0.35387534 0.1881938 0.36130184 0.28699169 + 0.36169678 0.29088181 0.35384279 0.18418771 0.35404968 0.18419689 0.35413653 0.18017328 + 0.35434455 0.18018091 0.35447276 0.18018538 0.36079866 0.2790069 0.3542102 0.17613924 + 0.35441732 0.1761446 0.35427707 0.17210639 0.3544836 0.17211002 0.35460597 0.17211276 + 0.36078161 0.27095753 0.35420305 0.16808683 0.35440987 0.16808897 0.35412371 0.16408348 + 0.35432869 0.16408497 0.35443819 0.1640867 0.36119103 0.26297522 0.35398674 0.16010779 + 0.35419208 0.16010982 0.3539173 0.15615767 0.35412163 0.1561622 0.35421902 0.15616494 + 0.36162382 0.25512064 0.35382652 0.15225363 0.35402948 0.15226442 0.35390747 0.14840394 + 0.35411012 0.1484279 0.35420239 0.14843827 0.36177057 0.2473914 0.35410476 0.14469832 + 0.35430562 0.14474618 0.35486639 0.1413309 0.35295713 0.20312774 0.35514903 0.14146346 + 0.36135 0.23996162 0.35247207 0.19975746 0.35267895 0.19973025 0.36201602 0.29458958 + 0.36359704 0.29093853 0.3632099 0.28697482 0.36534423 0.28693879 0.36563861 0.29094994 + 0.36291808 0.28298759 0.3651219 0.28294498 0.3678841 0.28286684 0.36800569 0.28686696 + 0.36812961 0.29090354 0.36272281 0.27898484 0.36494905 0.27895451 0.36263698 0.27498138 + 0.36491197 0.27497095 0.36772865 0.27492911 0.36779934 0.27889556 0.36271888 0.27098209 + 0.36488575 0.27099156 0.36285609 0.2669909 0.36498803 0.26701981 0.36755109 0.26700824 + 0.36762244 0.27096331 0.36308193 0.26302677 0.36504114 0.26305437 0.36328018 0.25907296 + 0.36516529 0.2590971 0.36736602 0.25908864 0.36745375 0.2630443 0.36346644 0.25514057 + 0.36519641 0.25514024 0.36355478 0.25121066 0.36523908 0.25118348 0.36715585 0.25114867 + 0.36726397 0.25511551 0.36356175 0.24729541 0.36516553 0.24721554 0.36343944 0.24338084 + 0.36506599 0.24322543 0.36693513 0.24310681 0.36703724 0.24714622 0.36313736 0.2395153 + 0.3647998 0.23916867 0.3636958 0.29870725 0.36575466 0.29913864 0.36835474 0.29941919 + 0.36682016 0.23896772 0.36391342 0.29483375 0.36584622 0.29503343 0.36824083 0.29504561 + 0.37452036 0.29056442 0.374726 0.286641 0.37492639 0.28663135 0.37472099 0.29054761 + 0.37482435 0.28265363 0.37502426 0.28264511 0.37510687 0.28264087 0.32115948 0.25764835 + 0.32077724 0.25371248 0.37474245 0.27863938 0.37494189 0.27863002 0.3745693 0.27461767 + 0.37476891 0.27460629 0.37484902 0.27460313 0.32130453 0.2657119 0.37422693 0.27060741 + 0.37442702 0.27059323 0.37377709 0.26662135 0.37397689 0.26660484 0.37404531 0.26660138 + 0.32067996 0.27375972 0.37327868 0.2626664 0.37347907 0.2626487 0.37279826 0.25873989 + 0.37299973 0.25872332 0.37305474 0.25872058 0.31962246 0.28164065 0.37235934 0.25484961 + 0.37255991 0.25483662 0.37207907 0.25097853 0.37228131 0.2509715 0.37232834 0.2509703 + 0.31882888 0.28934228 0.3718769 0.24713883 0.37207764 0.2471405 0.37184137 0.24334243 + 0.37204307 0.24335977 0.37209255 0.24336272 0.3187471 0.29692438 0.37203437 0.23967388 + 0.37223285 0.23971862 0.3727898 0.23636577 0.37492222 0.29770395 0.37303442 0.23648143 + 0.31949693 0.30423963 0.37437057 0.29434294 0.3745721 0.29430673 0.32040137 0.24994847 + 0.31887245 0.25363046 0.31924659 0.25761062 0.3168059 0.25757837 0.31657708 0.25355172 + 0.31942517 0.26162314 0.31693715 0.26158035 0.31380528 0.26159489 0.31377143 0.25760162 + 0.31374174 0.25357181 0.31939846 0.26564354 0.31694931 0.26557785 0.31917626 0.26964962 + 0.31680113 0.26955646 0.31385505 0.26950353 0.31383806 0.26555228 0.31881672 0.27363145 + 0.31660491 0.27351457 0.31831902 0.27757788 0.3163349 0.27745986 0.3139258 0.27739519; + setAttr ".uvst[0].uvsp[500:749]" 0.31388569 0.27345341 0.31783897 0.28149974 + 0.31607383 0.28139359 0.31739891 0.2853964 0.3158192 0.28532124 0.31401932 0.2852841 + 0.31397122 0.28134185 0.31708795 0.28928101 0.31568378 0.28925079 0.31697065 0.29316598 + 0.31560045 0.29317999 0.3141126 0.29319513 0.31406552 0.28924143 0.31704038 0.29704392 + 0.31569147 0.29712334 0.31729978 0.30091867 0.3158454 0.30108479 0.31418744 0.30119631 + 0.31414303 0.29717141 0.31778806 0.30474862 0.31618008 0.30509636 0.31861532 0.24582157 + 0.3164328 0.24539614 0.313649 0.24508706 0.31422788 0.3053177 0.31852072 0.24969742 + 0.31636065 0.24948549 0.31369802 0.2494458 0.30687565 0.25384271 0.30660248 0.25778282 + 0.30640304 0.25779068 0.30667561 0.25385666 0.30648211 0.26178998 0.30628344 0.26179767 + 0.30620453 0.26180106 0.28576505 0.22046298 0.28608453 0.22432888 0.3065843 0.26583368 + 0.30638689 0.26584458 0.30692273 0.26987159 0.30672425 0.26988763 0.30665201 0.26989162 + 0.28559119 0.21255386 0.3074494 0.27387619 0.3072502 0.27389652 0.30807954 0.2778312 + 0.30788034 0.27785355 0.30782348 0.27785742 0.28617966 0.20464247 0.30870992 0.28173375 + 0.30850941 0.28175563 0.30924779 0.2855944 0.30904543 0.28561205 0.30900353 0.28561419 + 0.28694886 0.19689661 0.30964381 0.28941637 0.30944175 0.28942627 0.3097997 0.29322189 + 0.30959627 0.29322213 0.30956015 0.29322219 0.28723574 0.1892994 0.3098056 0.29700851 + 0.3096033 0.29699624 0.30958194 0.30075872 0.30938262 0.30072868 0.30933994 0.30072391 + 0.28677467 0.18179995 0.3091355 0.3043763 0.30894029 0.30431879 0.3081395 0.30760866 + 0.30674261 0.24667686 0.30790621 0.30747855 0.28558981 0.1745984 0.30715621 0.2500574 + 0.30695432 0.25008917 0.28642702 0.22803468 0.28797194 0.22440988 0.28763884 0.22048771 + 0.29003614 0.22050804 0.2903046 0.2244848 0.28746554 0.21654809 0.28989291 0.21655023 + 0.29296124 0.21648008 0.29308426 0.22041649 0.29323208 0.22440773 0.28746697 0.21259123 + 0.28984082 0.21260905 0.28767687 0.20864898 0.28989133 0.20868385 0.29264057 0.20866001 + 0.29280165 0.21256346 0.28797859 0.20472717 0.28998831 0.20477635 0.28836066 0.20083523 + 0.29012668 0.20087785 0.29228914 0.20086527 0.29247132 0.2047596 0.28867039 0.19696134 + 0.29022658 0.1969865 0.2888931 0.19310331 0.29027238 0.1930986 0.29191956 0.1930604 + 0.29211396 0.19695932 0.2889199 0.1892516 0.29021579 0.18920904 0.28877386 0.18540823 + 0.29005873 0.18531674 0.29157484 0.18522948 0.29174599 0.18914735 0.28844202 0.18157238 + 0.28976008 0.18142033 0.28794828 0.17775211 0.28942057 0.17750576 0.29123425 0.17730659 + 0.29139566 0.18129653 0.28724894 0.17399907 0.2889114 0.17356071 0.28819588 0.23212135 + 0.29048038 0.23251754 0.29351974 0.23277706 0.29106182 0.17323118 0.2882961 0.22828525 + 0.29053673 0.2284984 0.29337573 0.22849095 0.30007929 0.22379673 0.30002701 0.21991122 + 0.30022442 0.21989161 0.30027741 0.22377008 0.29985636 0.2159642 0.30005533 0.21594524 + 0.30013812 0.21593773 0.2259078 0.18781364 0.2257579 0.19164103 0.29946357 0.21200508 + 0.29966033 0.21198362 0.29889768 0.20807034 0.29909557 0.20804524 0.29916674 0.20803791 + 0.22648051 0.18004096 0.29822567 0.20417386 0.29842409 0.20414668 0.29753336 0.2003178 + 0.29773355 0.20029092 0.29778925 0.20028496 0.22735059 0.17231584 0.29688543 0.19650757 + 0.29708505 0.19648445 0.29641089 0.19271737 0.29661289 0.19269985 0.29665875 0.19269663 + 0.22793818 0.16469508 0.29607213 0.18894702 0.2962735 0.18893796 0.29597005 0.18517536 + 0.29617259 0.18517637 0.29621971 0.18517601 0.22787744 0.15711957 0.29601204 0.18141103 + 0.29621303 0.18142283 0.29620439 0.17768425 0.29640299 0.17771202 0.2964614 0.1777187 + 0.22721416 0.14955574 0.2966029 0.17408931 0.29679829 0.17414337 0.29752469 0.17085385 + 0.300767 0.23084772 0.29777533 0.17098564 0.22617424 0.14229798 0.3001014 0.22753429 + 0.3003003 0.22748911 0.22562879 0.19530869 0.22764516 0.19191539 0.22776067 0.18800336 + 0.23000577 0.18819797 0.22993594 0.19220001 0.22798941 0.18409437 0.23016784 0.18424213 + 0.23288581 0.18433928 0.23286647 0.18829888 0.23286253 0.19229585 0.22830153 0.18018901 + 0.23035225 0.18032038 0.22871906 0.17630565 0.23058718 0.17641497 0.23287547 0.1764859 + 0.23288876 0.18040276 0.22910562 0.17243588 0.23079738 0.17252207 0.22945753 0.16858166 + 0.23098055 0.16863322 0.23280504 0.168661 0.23284888 0.17257023 0.22965419 0.16472876 + 0.23107737 0.16474468 0.22971576 0.16087723 0.23108009 0.16085428 0.23271775 0.16083008 + 0.23276645 0.16474414 0.22956637 0.15702581 0.23096114 0.15696204 0.22930923 0.15317291 + 0.23079339 0.15305936 0.23261413 0.1529808 0.23266345 0.15691477 0.22892967 0.14931923 + 0.23053062 0.14914465 0.22851288 0.14547676 0.23026693 0.1452049 0.23251995 0.14501041 + 0.23255876 0.14902711 0.22792023 0.14170122 0.22988492 0.14122707 0.22693396 0.19955403 + 0.22942114 0.20021051 0.23281747 0.2007013 0.23248333 0.14090908 0.22750598 0.1957705 + 0.22983167 0.19621003 0.23283562 0.19637513 0.23969746 0.19165021 0.23949307 0.18782002 + 0.23968893 0.18779588 0.2398946 0.19161773 0.2391775 0.18393028 0.23937613 0.18390793 + 0.23942545 0.18390352 0.17498937 0.16429925 0.17459202 0.16807151 0.23874998 0.18003047 + 0.23894766 0.18000901 0.23827031 0.17614841 0.23847127 0.17612839 0.23850995 0.176126 + 0.17594749 0.15663248 0.23782068 0.17229289 0.2380209 0.17227632 0.23747674 0.16846174 + 0.23767975 0.16844994 0.2377108 0.16844869 0.17669696 0.14902282 0.23723963 0.16465491 + 0.2374419 0.16465038 0.23722664 0.16085213 0.23743016 0.16085583 0.23746142 0.16085613 + 0.17671803 0.14147979 0.23735526 0.15704811 0.2375572 0.15705925 0.23762143 0.15324521; + setAttr ".uvst[0].uvsp[750:999]" 0.23782158 0.15326393 0.23786056 0.15326655 + 0.17590511 0.13392177 0.23797727 0.14945775 0.2381756 0.14948511 0.23838261 0.14572066 + 0.23857817 0.14576143 0.23862711 0.14577007 0.17470419 0.12632057 0.23891491 0.14213711 + 0.2391063 0.14220202 0.23993409 0.13894349 0.24081498 0.1985544 0.24016154 0.13908225 + 0.17349187 0.11903593 0.2399193 0.19531566 0.24011406 0.19526273 0.17416149 0.17166808 + 0.17644143 0.16843796 0.17679358 0.16455966 0.17893809 0.16478807 0.17875123 0.16877377 + 0.17723882 0.16067892 0.17916924 0.16084296 0.18154001 0.16093594 0.18159708 0.16491604 + 0.18165407 0.16896421 0.17768413 0.156802 0.17939848 0.15692461 0.17811918 0.15294164 + 0.17962295 0.15302008 0.1814087 0.1530568 0.18147832 0.15698564 0.17839622 0.14908659 + 0.17976069 0.14912224 0.17852357 0.14523762 0.17980701 0.14522803 0.18127266 0.1452083 + 0.18135116 0.14912713 0.17839473 0.14139301 0.17970061 0.14133513 0.17809075 0.13755304 + 0.17949313 0.13744032 0.18114311 0.13735855 0.18122238 0.14128786 0.17761448 0.13370261 + 0.17914593 0.13354692 0.17704004 0.12985083 0.17881441 0.12963775 0.18099603 0.12948576 + 0.18106011 0.13343534 0.1764614 0.12599471 0.17843705 0.12571236 0.17593247 0.12214366 + 0.17810243 0.12175003 0.18086493 0.12146446 0.18092507 0.12550995 0.17529541 0.11836067 + 0.17767784 0.11773577 0.17512333 0.1760132 0.17794561 0.17691484 0.1817944 0.17723593 + 0.18080854 0.11733571 0.17601234 0.17224267 0.178489 0.1728352 0.18172437 0.17309186 + 0.18834841 0.16790158 0.18779957 0.16414392 0.18799481 0.16410577 0.18854114 0.16785234 + 0.18720126 0.16032934 0.18739951 0.1602968 0.1874499 0.16029006 0.1319589 0.11350256 + 0.13235381 0.10974026 0.18659315 0.15650827 0.18679133 0.15648097 0.18605691 0.15270114 + 0.18625903 0.15268022 0.18629658 0.15267718 0.13110375 0.12115115 0.18565726 0.14891458 + 0.18585917 0.14890212 0.18549144 0.14513177 0.18569544 0.14512861 0.1857281 0.14512801 + 0.13054171 0.12876016 0.18550083 0.14134902 0.1857031 0.14135492 0.18575281 0.13755399 + 0.18595552 0.13756835 0.18599382 0.13757038 0.13069952 0.13634425 0.18614054 0.1337387 + 0.18634084 0.13375968 0.18661457 0.12991211 0.18681255 0.12993842 0.18686429 0.12994385 + 0.1315088 0.14397973 0.18709451 0.12609509 0.18729085 0.12612763 0.18753907 0.12233284 + 0.18773317 0.12237695 0.18779671 0.12238976 0.13245717 0.15167287 0.18805045 0.11873686 + 0.18824071 0.11880374 0.18903887 0.11554205 0.19019574 0.17453405 0.18927816 0.1156891 + 0.13325837 0.15906152 0.18895441 0.17148793 0.189143 0.17141616 0.13280877 0.10615766 + 0.13053387 0.10939181 0.13018423 0.11326224 0.12821588 0.11307186 0.12839162 0.10910344 + 0.12976834 0.11713642 0.12800127 0.11700493 0.12580904 0.11692947 0.1257599 0.1129635 + 0.12569565 0.10893112 0.12938541 0.1210084 0.12780032 0.12091416 0.12904805 0.12486655 + 0.12760934 0.12481135 0.12588906 0.12478364 0.12585035 0.12086713 0.12884429 0.12872154 + 0.127525 0.12870675 0.12883657 0.13257825 0.12751496 0.13259906 0.12594953 0.13261694 + 0.1259222 0.12870318 0.12900224 0.13643539 0.12765053 0.13648999 0.12933573 0.1402905 + 0.12782666 0.14038485 0.12598783 0.14044493 0.12597707 0.13652569 0.12977913 0.14415467 + 0.12810349 0.14428276 0.13022539 0.14803693 0.12835896 0.14819589 0.12600908 0.14830044 + 0.12600532 0.14436203 0.13066375 0.15192315 0.12860152 0.15213427 0.13100353 0.15580538 + 0.12878677 0.15611073 0.12597212 0.15630236 0.12599939 0.1522682 0.13141438 0.15961239 + 0.1290352 0.16015688 0.13189778 0.10193354 0.12920937 0.10095328 0.12550279 0.10068136 + 0.12592211 0.16041216 0.13097623 0.10558027 0.12863976 0.10508156 0.12560809 0.10481793 + 0.11942911 0.10988992 0.11990827 0.1136173 0.071448028 0.074203312 0.071199447 0.077963173 + 0.1203928 0.11740792 0.12019318 0.11743391 0.071741015 0.070391774 0.071496785 0.074210823 + 0.071252853 0.077973962 0.12084725 0.12121534 0.07191512 0.066557467 0.12120757 0.12502062 + 0.12100539 0.12503517 0.072080702 0.062735558 0.071953923 0.066560566 0.12147275 + 0.1288076 0.072072536 0.058924019 0.12147358 0.13259423 0.12127021 0.1325919 0.071931899 + 0.055119455 0.072105646 0.058923721 0.12134197 0.13638979 0.071623474 0.051310897 + 0.12103876 0.14019674 0.12083673 0.14018124 0.071227044 0.047486246 0.071658522 0.051307201 + 0.12062284 0.1440208 0.070708364 0.043645203 0.12017208 0.14785391 0.11997399 0.14782977 + 0.070274949 0.039772987 0.070751816 0.043637991 0.11974791 0.15167332 0.069816053 + 0.035920858 0.11937484 0.15543091 0.11917999 0.15538973 0.069549412 0.032097936 0.069869459 + 0.035910726 0.11893526 0.15901631 0.069166183 0.028459013 0.11797544 0.16230273 0.11757088 + 0.1033383 0.068468183 0.025124133 0.069224119 0.028442681 0.11884785 0.10633969 0.070861489 + 0.081560969 0.070917338 0.081577241 0.073043168 0.078237236 0.073245615 0.074370742 + 0.075118691 0.074476182 0.075073808 0.078428149 0.0734815 0.070496798 0.075182825 + 0.07055366 0.077287287 0.070553899 0.07745114 0.074498713 0.077622622 0.078504801 + 0.073661864 0.066622019 0.075224787 0.066649318 0.073787779 0.0627563 0.075249255 + 0.062753201 0.077000767 0.062725008 0.077144861 0.06662941 0.073800117 0.058894336 + 0.075184017 0.058861077 0.073646814 0.055035949 0.075067967 0.054972291 0.076775014 + 0.054910779 0.076880068 0.058816552 0.073359668 0.051177919 0.074831337 0.05108875 + 0.072952867 0.047322392 0.074589342 0.047200024 0.076601177 0.047104239 0.076676607 + 0.051012933 0.072486371 0.04345572 0.074274391 0.043308139 0.072053999 0.039569139 + 0.0740017 0.039401352 0.076459825 0.039273024 0.076522768 0.043197691 0.07165572 + 0.035675824 0.073756546 0.035470188 0.07137385 0.031780601 0.073578447 0.031504035 + 0.076379359 0.031332672 0.076412231 0.035324752 0.071048766 0.02794385; + setAttr ".uvst[0].uvsp[1000:1249]" 0.073367447 0.027451396 0.071950614 0.085741103 + 0.074520439 0.08655864 0.078013271 0.08672303 0.076391488 0.027231753 0.072727263 + 0.082053363 0.07494843 0.082433701 0.077810377 0.082591772 0.083576113 0.077499926 + 0.083032578 0.073779881 0.083229333 0.073744953 0.083770365 0.077452242 0.082510084 + 0.070006251 0.082709402 0.069978952 0.082769424 0.0699718 0.03015995 0.087171257 + 0.031812906 0.08401233 0.082019359 0.066225529 0.082218498 0.066204727 0.081668973 + 0.062444091 0.081870615 0.062429488 0.081921279 0.062426567 0.027566671 0.093825698 + 0.081422031 0.058669209 0.081623226 0.058662772 0.08142373 0.054883599 0.081626087 + 0.054884493 0.081676632 0.054884315 0.026330233 0.10081142 0.081537098 0.051080823 + 0.081738591 0.051087141 0.081787527 0.047261298 0.081987917 0.047272146 0.082047969 + 0.047274113 0.026746154 0.10787284 0.082114071 0.04342401 0.082313895 0.043438196 + 0.082445621 0.039577127 0.082644343 0.039594054 0.082717836 0.039598763 0.028609276 + 0.11476111 0.082728803 0.035744011 0.082927436 0.035765648 0.082957655 0.03197062 + 0.083155125 0.032003164 0.083237588 0.032015264 0.031389594 0.12141562 0.08324486 + 0.028367102 0.083440632 0.028421402 0.084024221 0.025056481 0.085525155 0.084093332 + 0.08428663 0.025193393 0.034649014 0.12773681 0.084228307 0.081061065 0.084417909 + 0.08098954 0.033663392 0.081066489 0.030251861 0.083043754 0.028545141 0.086389661 + 0.026872635 0.085635126 0.028520346 0.082077205 0.027046204 0.089819849 0.025463581 + 0.089259267 0.023515344 0.088625789 0.024774671 0.084784687 0.026306033 0.080993891 + 0.025872588 0.093366861 0.024359345 0.092973411 0.025030971 0.097000778 0.023564935 + 0.096765161 0.021830559 0.096500456 0.022521615 0.092537463 0.024602175 0.10070515 + 0.023156881 0.10061812 0.024589062 0.10442841 0.023087978 0.10448837 0.021300554 + 0.10454035 0.021413684 0.10051048 0.024999499 0.10812527 0.023429394 0.10833323 0.025779724 + 0.11175561 0.024072409 0.11213458 0.021973014 0.11254919 0.021489024 0.10855377 0.026879549 + 0.11530876 0.02505517 0.11585891 0.028190732 0.11880052 0.026266694 0.11951911 0.023831367 + 0.12036264 0.02276063 0.1164856 0.029707193 0.12222266 0.02771616 0.1231178 0.031328797 + 0.12561834 0.029345512 0.12668371 0.026789784 0.12790394 0.025179267 0.1241653 0.033135772 + 0.12891698 0.031215191 0.13025057 0.034646392 0.076967776 0.032815337 0.075152099 + 0.029984117 0.073465288 0.028594732 0.13165259 0.032226205 0.079845309 0.030456305 + 0.078583062 0.028073907 0.077226937 0.022603631 0.084105551 0.023953915 0.080178678 + 0.02153039 0.088116169 0.019852996 0.087738097 0.020817518 0.083619475 0.022025466 + 0.079605579 0.020661235 0.09217298 0.020082474 0.096274257 0.018583059 0.096098304 + 0.019152164 0.091911972 0.01967752 0.10039473 0.019490838 0.10453659 0.017940998 + 0.10450602 0.018232942 0.10029382 0.019510746 0.10869205 0.01981616 0.11284906 0.018041134 + 0.11304015 0.017872572 0.10875946 0.020394087 0.11698747 0.021303177 0.12107003 0.019243836 + 0.12158775 0.018460155 0.11733216 0.022528529 0.12507272 0.024066091 0.1289736 0.021871805 + 0.12973118 0.020376325 0.12574756 0.02580452 0.13278258 0.02685976 0.072324991 0.024329424 + 0.071961582 0.023529649 0.13348818 0.02545476 0.076300204 0.023325562 0.075731575 + 0.063027442 0.17982066 0.062218249 0.17707366 0.067937255 0.17430747 0.065849602 + 0.18030703 0.060564101 0.17473394 0.061935127 0.17221886 0.062418997 0.16939318 0.065168738 + 0.168585 0.067509651 0.16692865 0.070026457 0.16830307 0.07285291 0.16878754 0.073660254 + 0.17153931 0.075315475 0.17388028 0.073940456 0.17639649 0.073454678 0.1792205 0.070704281 + 0.18002748 0.068364382 0.18167895 0.020734072 0.18256438 0.022879362 0.18066275 0.027819633 + 0.18466103 0.021497846 0.18532711 0.024292946 0.17817074 0.027153611 0.17834222 0.029914856 + 0.17758012 0.031816483 0.17972255 0.034308672 0.18113559 0.034139037 0.18399513 0.034903526 + 0.18675745 0.032760382 0.18865961 0.031347752 0.19115442 0.028486013 0.190983 0.025722623 + 0.1917482 0.0238204 0.18960255 0.021325469 0.18818939 0.46857947 0.22395313 0.46737605 + 0.2202518 0.46948212 0.22770345 0.46769971 0.22804546 0.46703064 0.22438091 0.46603292 + 0.2207675 0.47007221 0.2314955 0.47043163 0.23530018 0.46819431 0.23544931 0.46803933 + 0.23174268 0.47056061 0.23911762 0.47052604 0.24293685 0.46808845 0.24287993 0.46817046 + 0.23916101 0.47032619 0.24676222 0.47000486 0.25058067 0.46770209 0.25031835 0.46792346 + 0.24660009 0.4694795 0.25437099 0.46876121 0.25813824 0.46687269 0.2577126 0.46735078 + 0.25402355 0.46776825 0.26185805 0.46650398 0.2655313 0.46509075 0.26496583 0.46612316 + 0.26136363 0.4648636 0.26913553 0.46375728 0.21307367 0.46264184 0.21399212 0.46366912 + 0.26845032 0.4657914 0.21662468 0.46462733 0.21727192 0.40129739 0.1619845 0.40162158 + 0.16578746 0.4008891 0.15811771 0.40109855 0.15811247 0.40150446 0.16198188 0.40182781 + 0.16579437 0.40047234 0.15419841 0.40012389 0.15023583 0.4003399 0.15023375 0.40068537 + 0.1541937 0.39990991 0.14624041 0.39987725 0.1422298 0.40009505 0.14223415 0.40012842 + 0.14624172 0.40002334 0.13822436 0.40032101 0.13423508 0.40053749 0.13424402 0.40024251 + 0.13823098 0.40076941 0.13028008 0.40130222 0.1263693 0.40151238 0.1263811 0.40098315 + 0.13029122 0.40184265 0.12251014 0.40231264 0.11870986 0.40251827 0.11871046 0.40205032 + 0.12251955 0.40261418 0.11503029 0.4013592 0.17280775 0.40155679 0.17289191 0.40282059 + 0.11501044 0.40176338 0.16945511 0.4019677 0.16948384 0.40874499 0.1619904 0.40842193 + 0.16591758 0.40904301 0.15807182 0.41092831 0.15820318 0.41041547 0.16208202 0.40998024 + 0.1659624 0.40938777 0.15416199 0.40966243 0.15024704 0.41183192 0.15036279 0.41142744 + 0.15429825 0.40990418 0.14632303 0.40998906 0.14239115 0.41230845 0.1424281 0.41214508 + 0.14640278 0.41003233 0.13845867 0.40992564 0.13452846; + setAttr ".uvst[0].uvsp[1250:1499]" 0.41208822 0.1344834 0.41227025 0.13845056 + 0.4097836 0.13060629 0.40956682 0.12668747 0.41144419 0.12661707 0.41181511 0.13053662 + 0.40939349 0.12276208 0.40918964 0.11882657 0.41074067 0.11883241 0.41105694 0.1227231 + 0.40913838 0.11482173 0.40829736 0.17403883 0.40988368 0.17370176 0.41059178 0.11497593 + 0.40823108 0.16990614 0.40968883 0.16981483 0.4250989 0.22612154 0.42484534 0.22227174 + 0.42538631 0.23003525 0.42517781 0.2300356 0.42489165 0.22611934 0.42463893 0.22226006 + 0.42564595 0.23399287 0.42582607 0.23797876 0.42561412 0.23797768 0.42543542 0.23399317 + 0.42587507 0.24198121 0.42586946 0.24598932 0.4256568 0.24598497 0.42566252 0.2419787 + 0.42566115 0.24999088 0.42537272 0.25397617 0.42516178 0.25396782 0.42544788 0.24998409 + 0.42499578 0.25793236 0.42458051 0.2618534 0.42437309 0.26184517 0.42478621 0.25792307 + 0.42418098 0.2657308 0.42385113 0.26955044 0.42364615 0.2695564 0.42397457 0.26572663 + 0.42368531 0.27323371 0.42515922 0.21520728 0.42496186 0.21511835 0.4234795 0.27326161 + 0.42472887 0.21857345 0.42452419 0.21854001 0.41708231 0.22603977 0.41735113 0.22207206 + 0.41686046 0.22999567 0.41485459 0.22990555 0.41524905 0.22598654 0.41559601 0.22206634 + 0.4165833 0.23393941 0.41641438 0.23789006 0.41421688 0.23781317 0.41451728 0.23385507 + 0.41625249 0.24184322 0.41619384 0.24579954 0.41396391 0.24577177 0.41405666 0.24178958 + 0.41617221 0.24975312 0.41627157 0.25370264 0.41417694 0.25372642 0.41404253 0.24975187 + 0.41633534 0.25765198 0.41648906 0.26159757 0.41463673 0.26162189 0.41440892 0.25767756 + 0.41656524 0.26555377 0.41666973 0.26952571 0.41502452 0.26946253 0.41487008 0.26554221 + 0.41662294 0.27355558 0.41735691 0.21392787 0.41554826 0.21432751 0.41502434 0.27333498 + 0.41749275 0.21802598 0.41582727 0.21818918 0.34092742 0.19170874 0.34105343 0.19561157 + 0.34077185 0.18773887 0.34098369 0.18774566 0.34113842 0.19171861 0.3412618 0.19563136 + 0.34072179 0.18372312 0.34071892 0.17968789 0.3409341 0.17969662 0.34093469 0.18373024 + 0.34090179 0.17565119 0.34109575 0.17162147 0.34130937 0.17163259 0.34111613 0.17566106 + 0.34144318 0.16761202 0.34180975 0.16362041 0.34202081 0.16363364 0.34165692 0.16762465 + 0.34224504 0.15966326 0.34263033 0.15572935 0.34283811 0.15573937 0.34245509 0.15967602 + 0.34301025 0.15183598 0.34326547 0.14798832 0.3434726 0.14798123 0.34321803 0.15184063 + 0.34340519 0.14429414 0.34055954 0.20271161 0.34075636 0.20280942 0.34361225 0.14426357 + 0.34107786 0.19934428 0.34128559 0.19938621 0.34951115 0.19201255 0.34919816 0.19603083 + 0.34975392 0.1880075 0.35192609 0.188106 0.35153258 0.19207215 0.35116237 0.19604087 + 0.35004383 0.18401778 0.350218 0.18002582 0.35248095 0.18011248 0.35223085 0.18411368 + 0.35038775 0.17603695 0.35044438 0.17204183 0.35264945 0.17208803 0.35259265 0.17610067 + 0.35052264 0.16805327 0.35049957 0.16406661 0.35252255 0.16408563 0.3525874 0.16808438 + 0.35053647 0.16008091 0.35050857 0.15609378 0.35233027 0.15612966 0.35240203 0.16010553 + 0.35057712 0.15209717 0.35064429 0.14808315 0.35235149 0.14822918 0.3522886 0.15217584 + 0.35086232 0.14400738 0.34908789 0.20428514 0.35111552 0.20384371 0.35256898 0.14433742 + 0.34900022 0.20013601 0.35087281 0.19995144 0.36141533 0.28699166 0.36180377 0.29088598 + 0.36109322 0.2830193 0.36129838 0.28301752 0.36161846 0.28699154 0.3620078 0.29089373 + 0.36091954 0.27900535 0.36081189 0.27498066 0.36101562 0.27498037 0.3611235 0.27900326 + 0.36089963 0.27095777 0.36105031 0.26695007 0.36125368 0.26695365 0.36110455 0.27095932 + 0.36129761 0.26297665 0.36151206 0.25903118 0.3617146 0.25903505 0.36150157 0.26298136 + 0.36171669 0.25512066 0.36180156 0.25123426 0.36200434 0.25123119 0.36191994 0.25512186 + 0.36185586 0.24738708 0.36171407 0.24359286 0.36191523 0.2435672 0.36205733 0.24737594 + 0.36143583 0.23994154 0.36186278 0.29799488 0.36206216 0.29807875 0.36163408 0.23989141 + 0.36211526 0.29460302 0.36232078 0.29463127 0.37079573 0.2868042 0.37073368 0.29083759 + 0.37080187 0.2828021 0.37317127 0.28271848 0.37310129 0.28671438 0.37290204 0.29068935 + 0.37075275 0.27880615 0.37058878 0.27481896 0.3729226 0.27471107 0.37311566 0.27871317 + 0.370377 0.27084959 0.37009972 0.26688886 0.37217492 0.26675397 0.37261528 0.27072096 + 0.36980361 0.26293737 0.36947972 0.25899076 0.37125081 0.25887233 0.37171942 0.26280254 + 0.36923087 0.25503993 0.3689788 0.25108939 0.37054175 0.25103289 0.37083167 0.25495434 + 0.36883378 0.24712318 0.36877072 0.24313331 0.37032753 0.243213 0.3703683 0.24712226 + 0.36884153 0.23909187 0.37099206 0.29902527 0.37310392 0.29849413 0.37052232 0.23933744 + 0.37071627 0.29491985 0.37277406 0.29462677 0.32108992 0.25764668 0.32071203 0.25370908 + 0.32129484 0.26166552 0.32109588 0.26165992 0.32089245 0.25764281 0.32051235 0.25370085 + 0.32123333 0.26570952 0.32102329 0.26974738 0.32082516 0.26973569 0.3210358 0.26570135 + 0.3206169 0.27375638 0.32010049 0.27772182 0.31990093 0.27770418 0.32041782 0.27374083 + 0.31957263 0.28163767 0.3191219 0.28551102 0.31891936 0.28549725 0.31937188 0.28162026 + 0.3187899 0.28934139 0.31868297 0.29314756 0.31847924 0.29314965 0.31858772 0.28933454 + 0.31870979 0.29692662 0.31898946 0.30065781 0.31878948 0.30069032 0.31850821 0.29694137 + 0.31945318 0.30425131 0.320481 0.24652195 0.32028139 0.24644184 0.31925857 0.30431089 + 0.32034278 0.24994028 0.3201403 0.24991426 0.31069931 0.25762755 0.31086653 0.25360078 + 0.31065267 0.26163745 0.30813625 0.26172268 0.30826044 0.25772011 0.30852211 0.2537322 + 0.31073099 0.26563275 0.31092519 0.26960981 0.30856711 0.26974654 0.3082363 0.26574236; + setAttr ".uvst[0].uvsp[1500:1749]" 0.31120193 0.27356559 0.31156534 0.27750552 + 0.30964643 0.27766424 0.30903792 0.27372617 0.31192249 0.28143322 0.3122707 0.2853545 + 0.31075794 0.28546089 0.31022924 0.28157556 0.31248969 0.28928095 0.31263977 0.29320884 + 0.31130508 0.29321861 0.31113732 0.28933793 0.31262049 0.29714805 0.31252342 0.30111298 + 0.31106049 0.30097169 0.31128684 0.29709572 0.31225199 0.30512524 0.31082803 0.24544936 + 0.30859989 0.24592906 0.31061238 0.30479929 0.31099313 0.24953234 0.30878013 0.24979937 + 0.28583896 0.22046369 0.28615496 0.22433215 0.28563458 0.21652973 0.28583241 0.21653199 + 0.28603673 0.22046578 0.28635421 0.22434092 0.28566334 0.21255463 0.2858845 0.20858365 + 0.28608304 0.2085923 0.28586194 0.21255946 0.28623998 0.20464414 0.2866413 0.20074832 + 0.28684151 0.20075995 0.2864396 0.20465553 0.28699401 0.19689721 0.28721964 0.19308275 + 0.28742298 0.19308507 0.28719565 0.19690615 0.28727129 0.18929809 0.28711131 0.18553513 + 0.28731394 0.18551928 0.28747314 0.18929178 0.28681171 0.18179584 0.28632078 0.17811108 + 0.28651804 0.17806619 0.28701133 0.18176824 0.28563651 0.17458326 0.28634918 0.23143548 + 0.28654823 0.23151582 0.28582662 0.17451185 0.28649116 0.22804374 0.28669307 0.2280702 + 0.29611701 0.22027314 0.29615843 0.22425985 0.29592872 0.2163021 0.29825228 0.21611774 + 0.29844677 0.22006691 0.29847538 0.22400421 0.29566151 0.2123751 0.29528147 0.20846891 + 0.29734284 0.20826042 0.29789543 0.21217346 0.29485285 0.2045812 0.29436845 0.20070589 + 0.29604441 0.20051658 0.29672074 0.20437223 0.29395476 0.19682813 0.29355472 0.19295651 + 0.29493651 0.19284338 0.29542282 0.19668055 0.29330492 0.18907464 0.29315171 0.18518823 + 0.29449713 0.18517423 0.29463705 0.18901283 0.29311395 0.18128705 0.29314727 0.17735916 + 0.29473531 0.17749178 0.29456216 0.1813305 0.29331738 0.17338061 0.29661596 0.23229271 + 0.29897177 0.23170197 0.29512548 0.17369574 0.2962454 0.2282868 0.29851395 0.22789055 + 0.22599971 0.18782216 0.22584972 0.19165415 0.22621393 0.18393999 0.22641337 0.18395746 + 0.22619861 0.1878432 0.2260499 0.19168502 0.22656319 0.18004578 0.22699034 0.1761682 + 0.22719032 0.17618388 0.22676319 0.18006235 0.22741717 0.17231876 0.22777212 0.16849679 + 0.22797319 0.16850668 0.22761801 0.1723327 0.22799173 0.16469526 0.22803274 0.16090441 + 0.22823527 0.16090119 0.22819364 0.16469908 0.2279284 0.15711737 0.22763202 0.1533311 + 0.22783282 0.15331167 0.22812906 0.15710604 0.22727448 0.14954948 0.22683865 0.14582622 + 0.22703487 0.14578402 0.22747329 0.14952159 0.22624731 0.14227527 0.22513831 0.19865203 + 0.22532696 0.19875634 0.22643948 0.1422078 0.22571638 0.19533044 0.22591448 0.1953811 + 0.23569423 0.18817949 0.23578721 0.19215786 0.23553485 0.18423557 0.23761904 0.18408734 + 0.2379263 0.18799818 0.23809862 0.19190156 0.23532516 0.1803149 0.23505202 0.17640781 + 0.23676616 0.17628819 0.23723668 0.18017781 0.23479745 0.17250919 0.23455116 0.16861349 + 0.23599136 0.16854376 0.23634982 0.17240912 0.23441935 0.16471708 0.23436537 0.16082489 + 0.2357434 0.16083187 0.23579654 0.16468775 0.23442397 0.15693039 0.23453695 0.15303147 + 0.23613682 0.15312052 0.23589444 0.15697581 0.23471481 0.14911813 0.23491389 0.14517361 + 0.23686481 0.14543355 0.23649198 0.14927316 0.23522648 0.14117545 0.23635945 0.20022094 + 0.23901588 0.19950575 0.237389 0.14164859 0.2359305 0.1962499 0.23832718 0.19573903 + 0.17504546 0.16430581 0.17465201 0.16808206 0.17550474 0.16047299 0.17570245 0.1604988 + 0.17524186 0.16433668 0.17484659 0.16812342 0.17599171 0.1566354 0.17643067 0.15281773 + 0.17663166 0.15283328 0.17619145 0.15665674 0.17673066 0.14902329 0.17683521 0.14524645 + 0.17703918 0.14524561 0.17693329 0.14903146 0.17674899 0.1414786 0.17640525 0.1377098 + 0.1766074 0.13769007 0.17695114 0.14146781 0.17594266 0.13391843 0.17534381 0.13011631 + 0.17554227 0.13008359 0.17614159 0.13389191 0.17475358 0.12631336 0.1741873 0.12257197 + 0.17438 0.12252137 0.17494911 0.12627426 0.17354882 0.11901554 0.17332941 0.17495051 + 0.17350689 0.17506781 0.17373687 0.11894211 0.17422211 0.17168632 0.1744138 0.17174855 + 0.18420234 0.16470677 0.18451971 0.16867244 0.18384603 0.16077721 0.18568596 0.16056031 + 0.18626976 0.16441917 0.18677619 0.16827333 0.18349198 0.15686917 0.18313593 0.15297258 + 0.18458372 0.15285242 0.18511716 0.15670002 0.18290341 0.14907551 0.1827319 0.14518237 + 0.18401179 0.1451574 0.18419752 0.14900726 0.18274179 0.14128721 0.18282691 0.13738638 + 0.18427554 0.1374529 0.18403777 0.1413058 0.18302682 0.13348639 0.18324792 0.12957403 + 0.18509224 0.12973073 0.18465739 0.13359767 0.1834836 0.12563881 0.18369406 0.12166664 + 0.18595791 0.12200394 0.18555698 0.12586495 0.18399647 0.11763605 0.18567204 0.17681423 + 0.18845904 0.17566696 0.18646011 0.11820289 0.18492758 0.17269138 0.18737808 0.17206228 + 0.13189161 0.11349565 0.13228011 0.10972804 0.13146773 0.11731917 0.13126913 0.11729693 + 0.13169411 0.11346745 0.13208425 0.1096884 0.1310519 0.12114877 0.13071415 0.12496376 + 0.13051304 0.12495202 0.13085172 0.12113136 0.13050047 0.12876004 0.13051024 0.13255095 + 0.13030732 0.13255423 0.13029799 0.12875563 0.13065708 0.13634539 0.13100821 0.14014983 + 0.13080668 0.14016652 0.13045612 0.13635564 0.13145438 0.14398295 0.13193816 0.14783433 + 0.13174 0.14785877 0.13125482 0.14400411 0.13238713 0.15168044 0.13276693 0.15546909 + 0.13257089 0.15550807 0.13218978 0.15170941 0.13318053 0.15908417 0.1336472 0.10296792 + 0.13346925 0.10285211 0.13298666 0.15914437 0.13273233 0.10613489 0.13253891 0.10607189 + 0.12333402 0.11313754 0.12304246 0.10919166 0.12363341 0.11705279 0.12189016 0.11722201; + setAttr ".uvst[0].uvsp[1750:1999]" 0.12140974 0.11337745 0.1209611 0.10954416 + 0.1239 0.12095094 0.1241512 0.12484133 0.12269005 0.1249215 0.12231532 0.12107491 + 0.12428346 0.1287306 0.12433675 0.13261598 0.12295237 0.13260931 0.12291786 0.1287657 + 0.12424889 0.1365034 0.12409016 0.14039201 0.12252465 0.14030588 0.12280312 0.13645434 + 0.1238561 0.1442849 0.12362018 0.14818847 0.12170008 0.1480251 0.12211174 0.14415962 + 0.12337562 0.15211442 0.12315816 0.15607604 0.12094238 0.15574199 0.12128383 0.15188789 + 0.12283361 0.1601077 0.1218437 0.10111028 0.11924669 0.10220534 0.12049076 0.15952039 + 0.12263203 0.10519737 0.12037301 0.10577691 0.071549207 0.07421416 0.071310103 0.077981114 + 0.071788013 0.070393205 0.07198742 0.070406735 0.071747512 0.074234247 0.071506739 + 0.078012824 0.071995914 0.066560924 0.072118968 0.06273526 0.072321624 0.062737584 + 0.07219699 0.06656909 0.072141975 0.058922827 0.071968466 0.055117965 0.072170943 + 0.055107892 0.072343498 0.058918655 0.071697593 0.051305175 0.071270168 0.047483504 + 0.071471095 0.047463834 0.071897924 0.051290035 0.070800215 0.043634355 0.070328802 + 0.039768159 0.070527405 0.03974402 0.070997864 0.04361248 0.069928199 0.035904169 + 0.069611281 0.032087743 0.069807976 0.032051861 0.070123583 0.03587687 0.069286793 + 0.028425872 0.070189744 0.084812701 0.070372045 0.08491832 0.069481164 0.028371096 + 0.070977598 0.081591904 0.071172744 0.08164537 0.079742223 0.074288249 0.080118895 + 0.078211308 0.079357356 0.070395231 0.081035018 0.070209205 0.081556588 0.074034929 + 0.082074553 0.07785362 0.079046816 0.066512823 0.078744829 0.062639356 0.080194086 + 0.062548041 0.080560178 0.066380799 0.078584284 0.058763444 0.078498781 0.054886699 + 0.07994312 0.054879427 0.079978675 0.058716655 0.078544468 0.051006317 0.078641534 + 0.047123611 0.080293447 0.047181845 0.080071032 0.051035583 0.078795314 0.043234468 + 0.078936428 0.039336026 0.08090958 0.039451122 0.080616117 0.043322325 0.079076678 + 0.035414875 0.079190403 0.031445801 0.081388324 0.031719148 0.0811885 0.035581172 + 0.079388171 0.027445674 0.081440061 0.086235702 0.083875328 0.085191846 0.081681997 + 0.027945042 0.08060649 0.082178414 0.082731277 0.08161068 0.030097485 0.087142527 + 0.031748056 0.083973408 0.028657675 0.090425611 0.028469086 0.090354621 0.029917002 + 0.087054193 0.031578302 0.08386606 0.027512312 0.093812048 0.026718616 0.097284377 + 0.026518345 0.097250581 0.027317047 0.09375912 0.026279211 0.10080814 0.026301622 + 0.10435218 0.026098609 0.104361 0.02607739 0.10079557 0.026689768 0.10787964 0.027467489 + 0.11135662 0.027270079 0.11140263 0.026490092 0.10790789 0.02854228 0.11478078 0.029845476 + 0.11814439 0.029658794 0.11821878 0.028350115 0.11484182 0.031314969 0.12145054 0.032891273 + 0.12469637 0.032718062 0.12479985 0.031135082 0.12153745 0.034580231 0.12779081 0.035782576 + 0.0785743 0.035667539 0.078398228 0.034420967 0.12791705 0.033600569 0.081014335 + 0.033447146 0.080881357 0.47465783 0.22170007 0.4726693 0.21795321 0.07469368 0.18032217 + 0.47815245 0.22976869 0.0769732 0.17378366 0.48023182 0.23859358 0.073957562 0.16754687 + 0.48010099 0.24768716 0.067414165 0.16527045 0.47803092 0.25646812 0.061180413 0.16828895 + 0.47428507 0.26449245 0.058911264 0.17482841 0.46990758 0.2716521 0.061927855 0.18105489 + 0.47069257 0.21439755 0.46616882 0.22461897 0.46678954 0.22821891 0.4652285 0.22108328 + 0.46707815 0.23186141 0.46719211 0.23551756 0.46713513 0.23918259 0.46704513 0.24285436 + 0.4668982 0.24652988 0.46669048 0.25020415 0.46637589 0.25386304 0.46594948 0.25750494 + 0.46525186 0.26110005 0.46428108 0.26463246 0.46292102 0.26800746 0.46199369 0.2146548 + 0.46387875 0.21770197 0.40210444 0.16195709 0.40244603 0.16580188 0.40171379 0.15807295 + 0.40127808 0.15415698 0.40095121 0.15020615 0.40071672 0.1462332 0.40070397 0.14224344 + 0.4008314 0.13825685 0.40114647 0.13428831 0.4015736 0.13034528 0.40212512 0.12644047 + 0.40264797 0.12256598 0.40313542 0.1187278 0.40343344 0.11495602 0.4021675 0.17314762 + 0.40257818 0.16956681 0.41131991 0.16213793 0.41185194 0.15827018 0.41085464 0.16597629 + 0.41238779 0.15436292 0.41281456 0.15041679 0.41313487 0.14643627 0.41333014 0.14244324 + 0.41325969 0.13844711 0.41307014 0.13446039 0.41277456 0.1305027 0.41236746 0.12657934 + 0.41196185 0.1226958 0.41162753 0.11884815 0.41145557 0.11508828 0.41079909 0.17338312 + 0.41056889 0.16974318 0.4242937 0.22612542 0.42402309 0.22223711 0.42456257 0.23005372 + 0.42484176 0.23400861 0.42500257 0.23798537 0.42506826 0.24197775 0.42504835 0.24597192 + 0.42485476 0.24995738 0.42454928 0.25393009 0.42419183 0.2578817 0.42375749 0.26180488 + 0.42337519 0.26570278 0.42302936 0.26956534 0.42286921 0.27334452 0.42435271 0.21484858 + 0.42391586 0.21844476 0.414303 0.22595519 0.41389787 0.22986257 0.41467834 0.22208071 + 0.41352761 0.2338081 0.41322696 0.23777467 0.41306394 0.2417658 0.41296798 0.24576527 + 0.41303945 0.24975932 0.41320419 0.25374132 0.41344422 0.25769866 0.41370481 0.26163578 + 0.41394597 0.26553911 0.41411126 0.2694096 0.4141292 0.27318126 0.41459227 0.21468449 + 0.41490203 0.21829718 0.3417353 0.19173542 0.34187388 0.19567844 0.34159511 0.18775389 + 0.34153003 0.18374029 0.3415435 0.17971635 0.3417123 0.17568907 0.34191912 0.17166883 + 0.34225231 0.1676684 0.34263325 0.16368324 0.34305352 0.15972334 0.34345275 0.15577918 + 0.34381968 0.15186006 0.34408695 0.1479643 0.34422225 0.1441713 0.34135813 0.20310205 + 0.34189034 0.19950411 0.35253781 0.19210401 0.35293454 0.18815094 0.35213947 0.19602185 + 0.35324609 0.18415713 0.35352749 0.1801511 0.35361224 0.17612875 0.3536644 0.17210215 + 0.35360426 0.16808963 0.35350734 0.16408867 0.35338449 0.1601097 0.35330075 0.156151 + 0.35322243 0.1522246 0.35329634 0.14833218 0.35350561 0.14455074; + setAttr ".uvst[0].uvsp[2000:2249]" 0.35213542 0.20346141 0.35186094 0.19983298 + 0.36221164 0.286982 0.36262137 0.29090577 0.36190921 0.2830047 0.36171788 0.27899522 + 0.36162585 0.27497983 0.36170048 0.27097028 0.36186832 0.26697332 0.36210185 0.26300353 + 0.36233306 0.2590546 0.36252457 0.25513163 0.3626228 0.25122648 0.36266202 0.24734437 + 0.36252612 0.24348873 0.36222976 0.23973417 0.36268622 0.2983295 0.36293215 0.29470909 + 0.37413388 0.2866627 0.37421447 0.28267747 0.37390727 0.29060215 0.37414902 0.27867019 + 0.37395805 0.27465898 0.37363416 0.2706601 0.37316161 0.26668465 0.37268025 0.26272953 + 0.37217909 0.25880051 0.3717528 0.25489438 0.3714574 0.25100237 0.37127024 0.24713168 + 0.37122393 0.24328482 0.37143427 0.23952809 0.37411016 0.2980665 0.37376469 0.29444385 + 0.32030207 0.25763792 0.3198989 0.25368762 0.32048744 0.26164562 0.32044393 0.26567256 + 0.32021433 0.269692 0.31982464 0.27368516 0.31928402 0.27763939 0.31876987 0.28156108 + 0.31829596 0.28544891 0.31797671 0.28931057 0.31785488 0.29315543 0.31789929 0.29698744 + 0.31817847 0.30079335 0.31867015 0.30450118 0.31964618 0.2462019 0.31952977 0.24984297 + 0.30719262 0.2577644 0.30709073 0.26176506 0.30748671 0.25381434 0.30717188 0.26579356 + 0.30753267 0.26981002 0.30804056 0.27380264 0.30869472 0.27774918 0.30931073 0.28165942 + 0.3098706 0.28553373 0.31025499 0.28938389 0.31042442 0.29322159 0.31041417 0.29704744 + 0.31019455 0.30085492 0.30972427 0.30456239 0.30756932 0.24633694 0.30776376 0.24997163 + 0.28662768 0.2204681 0.28696433 0.22435623 0.2864407 0.21653897 0.28645188 0.2125811 + 0.2866964 0.20862997 0.28703591 0.20470029 0.28746149 0.20080566 0.28780103 0.19693893 + 0.28804913 0.19309759 0.28808343 0.18927526 0.28793597 0.18547052 0.28761241 0.18168128 + 0.28712025 0.17792359 0.28639972 0.1742847 0.28718132 0.23175353 0.28730065 0.22814149 + 0.29943931 0.21997041 0.29925102 0.21602839 0.29947406 0.22387147 0.29887718 0.21208036 + 0.29828882 0.20815963 0.29763332 0.20426548 0.29691872 0.20041001 0.29628208 0.19658411 + 0.29578897 0.19277376 0.29546219 0.18897384 0.29534703 0.18516976 0.29540902 0.1813702 + 0.29559374 0.17759246 0.29601449 0.17391312 0.29997027 0.23124415 0.29950416 0.22766423 + 0.22678638 0.18791002 0.22665268 0.19177341 0.22702026 0.18401891 0.22735417 0.18012285 + 0.22780508 0.17624515 0.22821805 0.17238414 0.22859553 0.16854417 0.22880152 0.16471386 + 0.22885966 0.16089267 0.22873577 0.15706956 0.22844887 0.1532467 0.2280668 0.1494292 + 0.22763455 0.1456455 0.22701398 0.14199096 0.22592145 0.19906944 0.22650731 0.19552588 + 0.23890612 0.18790042 0.23856857 0.18400747 0.23909387 0.19175243 0.23815662 0.18010348 + 0.23765296 0.17621738 0.23721689 0.17234743 0.23685321 0.1685003 0.23662871 0.16466832 + 0.2366015 0.16083884 0.2367495 0.15701169 0.23700395 0.15318292 0.23738432 0.149369 + 0.23778147 0.14559019 0.2383371 0.14193231 0.24004984 0.19899416 0.2393288 0.19547629 + 0.17582655 0.16443872 0.17544401 0.16825503 0.17631137 0.16058731 0.17678854 0.1567288 + 0.17725319 0.15288699 0.17754239 0.14905816 0.17766616 0.14524466 0.17756224 0.14143455 + 0.17722794 0.13762635 0.17674124 0.13380507 0.17614922 0.12997398 0.17553139 0.12614694 + 0.17497116 0.12235811 0.17430437 0.11871037 0.17406762 0.17543241 0.17499435 0.17193905 + 0.18721813 0.16426891 0.18659455 0.16043949 0.18775663 0.16805989 0.1859968 0.15659839 + 0.18543661 0.15277094 0.18504691 0.14895403 0.18486485 0.14514214 0.18488911 0.14132905 + 0.18513051 0.13750464 0.18554094 0.13366896 0.18600428 0.12982193 0.18650943 0.12598744 + 0.18694326 0.12219128 0.18747523 0.1185272 0.18948293 0.17504415 0.18838492 0.17171252 + 0.1311079 0.11337012 0.13148674 0.10955793 0.13065797 0.11721689 0.13025209 0.12107044 + 0.12989119 0.12491053 0.12968752 0.12874067 0.12968248 0.13256502 0.12984762 0.13639122 + 0.13018709 0.14022607 0.13065827 0.14407754 0.1311315 0.14794633 0.13160524 0.15180871 + 0.13197324 0.15563557 0.13240549 0.1593298 0.13291198 0.10249168 0.13196036 0.105874 + 0.12049538 0.11350822 0.12100461 0.11731988 0.1200242 0.10974014 0.12144828 0.1211499 + 0.12182906 0.12497312 0.12208444 0.12878788 0.12209845 0.13260287 0.12194982 0.13642007 + 0.12165987 0.14024979 0.12122056 0.14408821 0.12078258 0.14793617 0.12033498 0.15176946 + 0.11997351 0.15556061 0.11951286 0.15921485 0.11827356 0.10281557 0.11941618 0.10611105 + 0.072340101 0.074302614 0.072111696 0.078115463 0.072603524 0.070454657 0.07280013 + 0.066597939 0.072944701 0.062748015 0.072953194 0.058907151 0.07279405 0.055075347 + 0.072503626 0.051239848 0.07208848 0.047396898 0.071592659 0.043537974 0.071136206 + 0.039660692 0.07070908 0.03578639 0.070408642 0.031938493 0.070069104 0.028203726 + 0.07094565 0.085249722 0.0717614 0.081815004 0.082446307 0.073894024 0.081899911 + 0.070099235 0.082982272 0.077653587 0.081417978 0.066294849 0.081048757 0.062491715 + 0.080811739 0.058689356 0.080800563 0.054878235 0.080931395 0.051057696 0.081167728 + 0.047220469 0.081517547 0.04337281 0.081834644 0.039515436 0.082140297 0.035671353 + 0.082354754 0.031868279 0.082656413 0.028203428 0.084817797 0.084606767 0.083659142 + 0.081286728 0.029380322 0.086781681 0.031063437 0.083531439 0.027890444 0.090129137 + 0.026729584 0.093595326 0.025903225 0.097144067 0.025464416 0.10075796 0.025474787 + 0.10439199 0.02588594 0.10799998 0.026666403 0.11155331 0.027777672 0.11503363 0.029089928 + 0.11845553 0.03060174 0.12180436 0.032194614 0.12511528 0.033943772 0.12829411 0.035312057 + 0.077850699 0.032992005 0.080475032 0.019927025 0.083384275 0.018980503 0.087556541 + 0.019142628 0.18209428 0.018284559 0.091774106 0.017708302 0.095999777 0.017388225 + 0.10023278 0.017055035 0.10447961 0.016986132 0.10878795; + setAttr ".uvst[0].uvsp[2250:2499]" 0.017135859 0.11312681 0.017532349 0.11749047 + 0.018299937 0.12182057 0.019422293 0.1260491 0.020910621 0.13006639 0.022549868 0.13378996 + 0.023259401 0.071924388 0.022358894 0.075503111 0.46308607 0.21816951 0.40228677 + 0.11163563 0.46436054 0.22142613 0.46213013 0.26752889 0.40220201 0.11870968 0.464347 + 0.26083177 0.40116012 0.1263606 0.46540654 0.25371641 0.40014917 0.1342265 0.4658944 + 0.24647045 0.39969474 0.14222676 0.46613365 0.23919928 0.39995605 0.15023899 0.466111 + 0.231969 0.40075284 0.15812123 0.46526569 0.22486532 0.41150612 0.16965574 0.42417133 + 0.27659565 0.41180497 0.16599077 0.41238886 0.11520725 0.42396444 0.26954752 0.41290921 + 0.12266558 0.42471457 0.26185948 0.41374999 0.1304602 0.42552936 0.25398332 0.41426104 + 0.13843381 0.42603672 0.2459923 0.41413778 0.14647853 0.42598641 0.2379787 0.41336411 + 0.15443617 0.42552578 0.23003429 0.4122681 0.16219831 0.41397172 0.21841323 0.34283632 + 0.14094198 0.41373634 0.22209352 0.41321158 0.27301961 0.34314954 0.14799148 0.4130224 + 0.26553339 0.34250277 0.15572345 0.41250491 0.25772315 0.34166551 0.16361159 0.41208613 + 0.2497676 0.3409391 0.17161384 0.41210419 0.24174064 0.34056169 0.17968181 0.41257685 + 0.23376077 0.34062594 0.18773419 0.41336769 0.22592276 0.35278296 0.19971693 0.36053497 + 0.23668516 0.35307074 0.19600755 0.35439795 0.14476681 0.36162949 0.2436026 0.354123 + 0.1522696 0.36171359 0.2512356 0.35429496 0.16011214 0.36141247 0.25903016 0.35452658 + 0.16809088 0.3609373 0.26694882 0.35454392 0.1761477 0.36069113 0.27498192 0.354177 + 0.18420208 0.36097497 0.2830205 0.35346001 0.19213304 0.37463957 0.29429337 0.32050097 + 0.30741054 0.37479585 0.29054022 0.37228662 0.23972851 0.31902945 0.30065215 0.37212473 + 0.24714038 0.31871969 0.29314715 0.37260973 0.25483483 0.31916565 0.28551316 0.37354058 + 0.2626456 0.32015723 0.27772534 0.37450224 0.27058977 0.32109159 0.26975018 0.37502462 + 0.27862638 0.32136637 0.26166743 0.37500638 0.2866264 0.30688828 0.25010079 0.2844004 + 0.17151463 0.30660218 0.25386292 0.30889171 0.30430692 0.28627935 0.17811877 0.30956516 + 0.29699486 0.28707647 0.1855377 0.30940431 0.28942746 0.28718054 0.19308311 0.30846083 + 0.28175861 0.28658873 0.20074713 0.30718535 0.27390057 0.2858173 0.20858228 0.30630994 + 0.26584792 0.28556004 0.21652967 0.30632532 0.25779468 0.3003791 0.22747093 0.22508508 + 0.13919139 0.30036122 0.22375846 0.29686296 0.17415947 0.2267713 0.14583778 0.29626501 + 0.18142492 0.2275776 0.15333498 0.29631853 0.18893605 0.22798216 0.16090542 0.29713473 + 0.19647998 0.22771281 0.1684953 0.29848757 0.20413995 0.22691533 0.17616433 0.29973835 + 0.21197605 0.22612521 0.18393403 0.30030936 0.21988314 0.2401706 0.19524747 0.17239213 + 0.11594102 0.23995125 0.19160885 0.23915821 0.14221793 0.17413279 0.1225839 0.23821974 + 0.14948994 0.17530048 0.13012114 0.23759162 0.15706044 0.1763722 0.137712 0.23747203 + 0.16464984 0.1768043 0.1452468 0.23805505 0.17227453 0.17639226 0.152816 0.23899156 + 0.18000579 0.17545429 0.1604687 0.23974279 0.1877901 0.18920738 0.17139292 0.13412619 + 0.16232756 0.18860355 0.1678381 0.18830603 0.1188252 0.13284272 0.15545627 0.18734926 + 0.12613556 0.13200065 0.1478295 0.18638539 0.13376313 0.13105556 0.14014757 0.18573725 + 0.14135557 0.13055035 0.13255036 0.185893 0.14890057 0.13075924 0.12496507 0.1868349 + 0.15647632 0.1315273 0.11732334 0.18805197 0.16409618 0.11923417 0.10993677 0.11865991 + 0.10641313 0.068411112 0.025143325 0.11874461 0.15895098 0.069492251 0.032109916 + 0.119551 0.15164363 0.070226401 0.03978169 0.12042311 0.14400035 0.07118839 0.047491729 + 0.12114072 0.13638079 0.071898729 0.055121362 0.12127075 0.1288138 0.072045594 0.062734008 + 0.12064788 0.12123519 0.071697325 0.070386529 0.1197125 0.11365062 0.084493041 0.080962896 + 0.036682367 0.13039434 0.083842546 0.077436447 0.083522648 0.028443158 0.03296566 + 0.12465262 0.083006471 0.0357728 0.029917359 0.11811733 0.082380623 0.043441296 0.027529001 + 0.11134374 0.081792921 0.051087797 0.026354074 0.10435045 0.081672519 0.058661103 + 0.026770234 0.097292602 0.082273036 0.066200018 0.028716087 0.090446055 0.083295763 + 0.073734879 0.019866467 0.18898237 0.018847227 0.18560719 0.0211097 0.079343975 0.025251389 + 0.19334072 0.022143006 0.19167525 0.032139659 0.1926133 0.028765082 0.19363421 0.036492825 + 0.18722874 0.034830332 0.19033617 0.035763264 0.18034601 0.03678453 0.18371761 0.030384064 + 0.17599338 0.033488631 0.17765677 0.023501158 0.17671537 0.026873827 0.17569798 0.020808816 + 0.17898881 0.068461061 0.18333036 0.064977705 0.18281537 0.46810395 0.27496535 0.059825957 + 0.17822933 0.47208536 0.26816618 0.059421837 0.17134237 0.47629356 0.26058793 0.064008772 + 0.16618496 0.47932142 0.25214356 0.070902884 0.16578424 0.48046905 0.24315941 0.076060653 + 0.17037773 0.47941536 0.23410529 0.076457381 0.17727083 0.47650689 0.22563756 0.071864188 + 0.18242085 0.027430892 0.13655984 0.024934173 0.13719004 0.030557752 0.13543379 0.023851275 + 0.13730758 0.033430576 0.13373899 0.035396338 0.13203704 0.036107659 0.1311599 0.036495686 + 0.13062608 0.079901367 0.023507655 0.08244589 0.024218321 0.076444149 0.023039162 + 0.083449543 0.02472198 0.085353345 0.084218264 0.07291615 0.023356378 0.070308626 + 0.024132192 0.069290072 0.024653018 0.068712741 0.024993718 0.12219936 0.16414493 + 0.11953732 0.16325802 0.12585592 0.16451472 0.11852875 0.16267866 0.11773935 0.10321057 + 0.12955126 0.1642175 0.13227254 0.1633828 0.1333057 0.16283104 0.13386878 0.16247216 + 0.18463582 0.11349231 0.18744898 0.11457264 0.18075129 0.11317447 0.18848777 0.1151703 + 0.19002444 0.17465845 0.17690802 0.11362067 0.17416668 0.11477193 0.17315537 0.11539611; + setAttr ".uvst[0].uvsp[2500:2615]" 0.17261976 0.11578879 0.23587027 0.13706774 + 0.23840487 0.1380235 0.23243061 0.13675809 0.23938549 0.13857442 0.24063152 0.19866198 + 0.22914344 0.13715899 0.22681135 0.13810557 0.22587633 0.13865781 0.22533762 0.13903916 + 0.29382545 0.16928846 0.29603058 0.17003471 0.29088104 0.16908097 0.29696435 0.17050928 + 0.30057633 0.23094672 0.28804976 0.16954297 0.28602162 0.170434 0.28515047 0.17097604 + 0.28462228 0.1713689 0.31162721 0.30924696 0.30961305 0.30846775 0.31426901 0.30955979 + 0.30869341 0.3079651 0.30694014 0.24659127 0.31686524 0.30920845 0.31881684 0.30841431 + 0.31972247 0.30790284 0.32027477 0.30754238 0.36927289 0.23492649 0.37126487 0.23559353 + 0.36672205 0.23471269 0.37221074 0.23604798 0.37472767 0.29779479 0.36423409 0.23504463 + 0.36230284 0.23571837 0.36138225 0.23621705 0.36080939 0.23655054 0.35140812 0.1398409 + 0.35334229 0.14050543 0.34902525 0.1395064 0.35428685 0.14100605 0.35275674 0.20321131 + 0.34666926 0.13965195 0.34474432 0.14014977 0.34375566 0.14055562 0.34315044 0.14082891 + 0.41627705 0.27768159 0.41450584 0.27718288 0.41845691 0.27790028 0.41357565 0.2767756 + 0.41397429 0.21493375 0.42059255 0.27775425 0.42231828 0.27732831 0.4232561 0.27696037 + 0.42386854 0.27670115 0.40937704 0.1107803 0.41094446 0.11115581 0.40749419 0.11053938 + 0.41184413 0.11149973 0.41142124 0.17315131 0.40563887 0.11065775 0.40411401 0.11099607 + 0.40320623 0.111314 0.40258271 0.11154443 0.4627918 0.27263588 0.46167654 0.2717073 + 0.46420079 0.27360106 0.46103114 0.271038 0.46154565 0.21512938 0.46579891 0.27428269 + 0.46721488 0.2747559 0.46913326 0.2109738 0.084207356 0.025165796 0.03584373 0.078634799 + 0.085601777 0.084059179 0.11780128 0.16218132 0.070071131 0.084772885 0.070127994 + 0.084793031 0.18921325 0.11566198 0.13372421 0.10299748 0.19025978 0.1745052 0.24010804 + 0.13906115 0.17327023 0.17492768 0.24086958 0.1985355 0.29770482 0.17096227 0.22505748 + 0.19862598 0.30083883 0.2308265 0.30796164 0.30749696 0.28629303 0.23142385 0.30668527 + 0.24669069 0.37297535 0.23646554 0.32053238 0.24653232 0.37498194 0.29768813 0.3550545 + 0.14143467 0.36177105 0.29797602 0.35305434 0.20310849 0.4127813 0.27639633 0.34044629 + 0.20268124 0.41366595 0.21503705 0.41265607 0.11183494 0.42526263 0.21523052 0.41173792 + 0.17305678 0.46044093 0.27040267 0.40126544 0.17278856 0.46132219 0.21534032 0.036619186 + 0.13045299 0.068529606 0.025103033 0.13404903 0.16235659 0.17244989 0.11591473 0.22516325 + 0.13915968 0.28445289 0.17149264 0.32045221 0.30742788 0.3606239 0.23665711 0.34295028 + 0.1409176 0.4240672 0.27661628 0.4023813 0.1116206; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 2258 ".vt"; + setAttr ".vt[0:165]" 3.50890231 135.53868103 29.032691956 4.93324375 135.22183228 27.30528069 + 4.7340641 134.44551086 25.19005966 3.027011156 133.66453552 23.92701912 0.81261486 133.33668518 24.25680351 + -0.61106342 133.6541748 25.98599243 -0.41003096 134.43066406 28.10045815 1.29635787 135.21102905 29.36171913 + 3.10183525 138.22975159 28.91083908 4.51809692 138.64781189 26.87008667 4.1071682 138.63893127 24.38494301 + 2.10976481 138.20835876 22.91117287 -0.30406064 137.60827637 23.31209373 -1.72032225 137.19021606 25.35284424 + -1.30939341 137.19906616 27.83799362 0.68801039 137.62966919 29.31176567 2.35888648 140.92311096 29.47146797 + 3.59115005 142.011138916 27.56257629 2.99304414 142.68522644 25.21009827 0.91493076 142.55049133 23.79208374 + -1.42585957 141.68588257 24.13919067 -2.65812325 140.59785461 26.048080444 -2.06001687 139.92376709 28.40055847 + 0.01809743 140.058502197 29.81857109 1.35978818 143.63336182 30.84147835 2.42740583 145.17092896 29.15534592 + 1.6891495 146.22975159 26.99175835 -0.422521 146.18959045 25.61811256 -2.67061782 145.074020386 25.8390789 + -3.73823547 143.53646851 27.52521133 -2.99997902 142.47764587 29.68880653 -0.88830757 142.51779175 31.062440872 + 0.0011810511 146.20959473 32.77920151 0.90663803 148.055541992 31.32322884 0.081594214 149.28285217 29.28347588 + -1.99065101 149.17262268 27.85479164 -4.096204281 147.78936768 27.87408447 -5.0016613007 145.94342041 29.33004951 + -4.17661715 144.71611023 31.36980247 -2.10437155 144.82635498 32.79848862 -2.071811199 148.6124115 35.089607239 + -1.38557637 150.71058655 33.87548447 -2.19186258 151.92422485 31.82010841 -4.018358707 151.54238892 30.12748528 + -5.79512691 149.78875732 29.78913689 -6.48136282 147.69058228 31.0032558441 -5.67507601 146.47694397 33.058635712 + -3.84857941 146.85877991 34.75126266 -5.40834808 150.45739746 37.17055893 -5.036047935 152.73284912 36.15502548 + -5.58290339 153.80778503 33.94306564 -6.72857523 153.052566528 31.83040428 -7.80194235 150.9095459 31.054616928 + -8.17424297 148.63412476 32.070148468 -7.62738705 147.55918884 34.28210831 -6.48171568 148.31440735 36.39477158 + -9.70075035 151.42141724 38.16921616 -9.43697739 153.72695923 37.1881218 -9.45820427 154.68460083 34.85803986 + -9.75199699 153.73338318 32.54389191 -10.14625454 151.43051147 31.60127831 -10.4100275 149.12498474 32.58237076 + -10.38879871 148.16732788 34.91245651 -10.095005989 149.11854553 37.22659683 -14.15385818 152.051956177 37.76777267 + -13.50956821 154.30078125 36.83249664 -12.78101635 155.14865112 34.57486725 -12.39497566 154.098953247 32.31736374 + -12.57758617 151.76652527 31.38240242 -13.22187614 149.51773071 32.31768036 -13.95042706 148.66984558 34.57531738 + -14.3364687 149.71955872 36.83281708 -18.074644089 153.30001831 36.039653778 -16.65402985 155.29553223 35.45121765 + -15.097402573 155.87774658 33.55796432 -14.31661606 154.70565796 31.4689312 -14.76904106 152.46582031 30.40785789 + -16.1896553 150.47033691 30.99629402 -17.74627876 149.88812256 32.88955307 -18.52706718 151.060211182 34.97858047 + -20.76029587 155.37339783 33.62278748 -18.80653763 156.95994568 33.51058578 -16.76973915 157.17663574 32.043743134 + -15.84302807 155.89656067 30.081529617 -16.56926346 153.86958313 28.77338791 -18.52301979 152.28303528 28.88559723 + -20.55981827 152.066345215 30.35243416 -21.4865284 153.34640503 32.31464386 -22.28689766 157.98554993 31.11815071 + -20.048593521 159.086593628 31.47086906 -17.79306793 158.93348694 30.35896111 -16.84157372 157.61593628 28.43375969 + -17.75148582 155.90574646 26.82302666 -19.98978996 154.8046875 26.47030449 -22.24531555 154.95780945 27.58221626 + -23.19680786 156.27537537 29.50741768 -22.57341957 160.85858154 28.64358902 -20.47699547 161.35668945 29.33081627 + -18.39549446 160.90065002 28.57417297 -17.54703331 159.75791931 26.81726265 -18.42831802 158.59719849 25.088161469 + -20.52435875 158.098312378 24.39970016 -22.60731506 158.55410767 25.15606499 -23.45616341 159.69760132 26.91420937 + 3.15535331 138.18681335 28.98199654 4.61323166 138.58859253 26.89192581 4.19930029 138.55055237 24.34581375 + 2.15561318 138.094894409 22.83566284 -0.32036185 137.48864746 23.24642372 -1.77783465 137.087005615 25.33737564 + -1.36305153 137.12522888 27.88305283 0.68023068 137.58074951 29.39233589 3.13084888 138.28755188 28.9853611 + 4.57628489 138.74043274 26.89666939 4.14901495 138.75721741 24.35201454 2.098942518 138.32792664 22.84248161 + -0.37274432 137.70413208 23.25267982 -1.81775951 137.25132751 25.34218788 -1.38970518 137.23477173 27.88641548 + 0.65994614 137.66398621 29.39512825 2.42415953 140.85083008 29.51843452 3.69362044 141.94438171 27.55597305 + 3.087218046 142.61433411 25.13861275 0.95992357 142.46807861 23.68276215 -1.44187117 141.59129333 24.041498184 + -2.7109201 140.49772644 26.0045394897 -2.10397148 139.82804871 28.42152596 0.022911534 139.97433472 29.87679482 + 2.38778663 140.96679688 29.55962181 3.64534044 142.098312378 27.61039352 3.027601719 142.80447388 25.20561028 + 0.89620876 142.6714325 23.75426674 -1.50005198 141.77713013 24.10679626 -2.75718808 140.64559937 26.056529999 + -2.13898563 139.93972778 28.46094513 -0.0080098659 140.072784424 29.91178322 1.43089855 143.56304932 30.87255669 + 2.53015804 145.12657166 29.13763428 1.77758241 146.20236206 26.91477013 -0.38609374 146.16007996 25.50632668 + -2.69318819 145.024520874 25.73752403 -3.79204655 143.46102905 27.47276688 -3.039207935 142.38552856 29.69530296 + -0.8759321 142.42781067 31.10342216 1.3832376 143.67178345 30.94188118 2.47231722 145.25863647 29.22164536 + 1.71241271 146.35128784 27.0093421936 -0.45141119 146.30952454 25.60113525 -2.75139284 145.15785217 25.82207298 + -3.84007835 143.5710144 27.54256439 -3.079992771 142.47866821 29.75454521 -0.91656101 142.52035522 31.16250038 + 0.077715181 146.14653015 32.80441284 1.010520458 148.030471802 31.30602455 0.16689469 149.2852478 29.21306229 + -1.95895541 149.17556763 27.75177956 -4.12148857 147.76586914 27.77827835 -5.053871632 145.88209534 29.27680016 + -4.21024323 144.62765503 31.36939049 -2.084814787 144.73712158 32.83054352 0.024560198 146.2280426 32.87429428 + 0.94784969 148.12660217 31.38835335 0.10143362 149.38577271 29.29906273 -2.018815994 149.26776123 27.83054924 + -4.17061424 147.84187317 27.84314537 -5.093457222 145.94358826 29.32917976; + setAttr ".vt[166:331]" -4.24712944 144.68470764 31.41802406 -2.12732458 144.80245972 32.88644791 + -2.0019888878 148.57444763 35.13189316 -1.29357922 150.72026062 33.88292694 -2.12155223 151.96548462 31.77783394 + -4.00073003769 151.58061218 30.050138474 -5.82994175 149.79144287 29.71204948 -6.53781462 147.64639282 30.96101952 + -5.71020555 146.40138245 33.065338135 -3.83156347 146.78555298 34.79301453 -2.047610998 148.61360168 35.1726799 + -1.34909451 150.76777649 33.93240356 -2.17271304 152.0095214844 31.82354927 -4.035832405 151.61123657 30.081876755 + -5.84660292 149.80671692 29.72782326 -6.54453325 147.65345764 30.96803093 -5.72139597 146.41194153 33.075954437 + -3.85886192 146.80931091 34.8176918 -5.34423828 150.4369812 37.22953033 -4.95715427 152.76695251 36.18616867 + -5.52385139 153.87104797 33.92192841 -6.71223402 153.10241699 31.76368141 -7.82578945 150.91189575 30.97590065 + -8.21245575 148.58305359 32.019142151 -7.64619493 147.47897339 34.28229904 -6.45822859 148.24653625 36.4406662 + -5.41365433 150.46208191 37.25866318 -5.03589344 152.79548645 36.2193222 -5.58899641 153.89476013 33.94950867 + -6.7487998 153.11585999 31.77937126 -7.83557367 150.91575623 30.980299 -8.21297741 148.58338928 32.019435883 + -7.66028357 147.48403931 34.28820038 -6.50083828 148.26190186 36.45853806 -9.64862728 151.4133606 38.24507141 + -9.37888527 153.77638245 37.23953629 -9.41218472 154.75953674 34.85266113 -9.72893906 153.78689575 32.483181 + -10.14341545 151.42893982 31.51901054 -10.41296959 149.066757202 32.52412796 -10.37987137 148.083267212 34.91013336 + -10.063302994 149.055007935 37.28004074 -9.75061321 151.42892456 38.25113297 -9.47592449 153.79122925 37.2455101 + -9.48360062 154.770401 34.85716629 -9.7690649 153.79302979 32.48567963 -10.16495132 151.43226624 31.51997948 + -10.43947697 149.070648193 32.52505112 -10.43196487 148.090942383 34.91269684 -10.14666176 149.067657471 37.28470993 + -14.14488029 152.050918579 37.85264587 -13.4928503 154.35699463 36.89208984 -12.7584753 155.2275238 34.57577133 + -12.37187481 154.15304565 32.26103592 -12.55924511 151.76347351 31.30314827 -13.21096992 149.45773315 32.26284027 + -13.94551754 148.58631897 34.5787468 -14.33242321 149.66043091 36.89435577 -14.2042942 152.062820435 37.83702087 + -13.53223324 154.36482239 36.88179398 -12.77204895 155.23016357 34.57229614 -12.36892605 154.15260315 32.26189804 + -12.55861282 151.76371765 31.3030529 -13.23030186 149.46183777 32.257267 -13.99078655 148.5954895 34.56648254 + -14.39428329 149.67288208 36.87790298 -18.089387894 153.29896545 36.12493134 -16.64522362 155.34927368 35.51438141 + -15.061948776 155.95062256 33.56717682 -14.26681042 154.75166321 31.42429543 -14.72507477 152.45472717 30.34000206 + -16.16876221 150.40426636 30.94951057 -17.75245857 149.80184937 32.89664459 -18.54807854 151.00093078613 35.040561676 + -18.14592934 153.32926941 36.08662796 -16.67798042 155.36709595 35.49192047 -15.071860313 155.95658875 33.55990219 + -14.26813221 154.75326538 31.42255592 -14.73710346 152.4618988 30.33106041 -16.20457649 150.42384338 30.92484093 + -17.81117058 149.83345032 32.85681534 -18.61538315 151.036941528 34.99507523 -20.7983551 155.37858582 33.69801712 + -18.80257416 157.011077881 33.57530594 -16.72128296 157.23846436 32.065811157 -15.77325153 155.92825317 30.053964615 + -16.51337624 153.84764099 28.71760368 -18.50870705 152.21487427 28.83957291 -20.59060669 151.98675537 30.3489933 + -21.5390873 153.29728699 32.36158371 -20.82491112 155.40945435 33.66547394 -18.81667709 157.027587891 33.55792618 + -16.72506714 157.24320984 32.060958862 -15.77484703 155.93063354 30.05163765 -16.52225304 153.85836792 28.70637512 + -18.53007889 152.23989868 28.81322861 -20.6223278 152.023651123 30.31012917 -21.57295227 153.33659363 32.32014465 + -22.33141518 157.98503113 31.19521141 -20.041658401 159.12306213 31.54754448 -17.73368645 158.97309875 30.40165901 + -16.75892067 157.62336731 28.42898178 -17.68808174 155.86418152 26.7844944 -19.97751999 154.72573853 26.43152237 + -22.28620338 154.87533569 27.57730484 -23.26127815 156.22544861 29.55062294 -22.35118294 158.040817261 31.1474781 + -20.054121017 159.15826416 31.51743507 -17.74098778 158.99391174 30.38391685 -16.7661972 157.6443634 28.41112518 + -17.70052147 155.89976501 26.75411415 -19.99730873 154.78190613 26.38353539 -22.31117058 154.94593811 27.51693535 + -23.28623772 156.2959137 29.49035454 3.95078897 135.9546051 29.82891655 5.83803368 135.6164093 27.49960327 + 6.011765003 137.24241638 27.27817154 3.96405602 137.21453857 30.0097141266 5.55372858 134.67416382 24.64609718 + 5.58996058 136.63757324 23.94527817 3.26113963 133.68011475 22.94334984 2.94587803 135.75550842 21.96611786 + 0.30486813 133.21762085 23.39115334 -0.3725462 135.11221313 22.49928665 -1.57993662 133.55805969 25.7262764 + -2.41827631 135.085144043 25.23152542 -1.28946483 134.50083923 28.57697296 -1.99508202 135.68980408 28.56201553 + 1.00096559525 135.49276733 30.27398109 0.64872348 136.5717926 30.54087639 5.18727875 138.59150696 27.03704834 + 3.45781589 138.21044922 29.47864723 4.7271452 138.44911194 24.058216095 2.34461522 137.86645508 22.29043961 + -0.56308746 137.18518066 22.77102852 -2.28991413 136.80502319 25.21764565 -1.82475305 136.94850159 28.19366264 + 0.55542356 137.53039551 29.95647621 3.41595769 138.38420105 29.48561287 5.088700294 138.99798584 27.050621033 + 5.19554567 140.59173584 27.38542366 3.39800739 139.53721619 30.092943192 4.56774902 139.10523987 24.078863144 + 4.50626278 141.086502075 24.075389862 2.1557734 138.64234924 22.31379509 1.73217201 140.73139954 22.10180664 + -0.73259926 137.88098145 22.79167557 -1.50098836 139.73445129 22.62276649 -2.40283108 137.26776123 25.23159027 + -3.29777718 138.68029785 25.33174896 -1.87717068 137.16183472 28.2007637 -2.60713458 138.18589783 28.64095879 + 0.53229159 137.62413025 29.96091652 0.16620937 138.54064941 30.61307335 4.28041601 141.93255615 27.65317345 + 2.7721982 140.72052002 29.97055244 3.59154606 142.65011597 24.8010006 1.10743225 142.45185852 23.086795807 + -1.71522713 141.45399475 23.51649284 -3.22098303 140.24194336 25.83738708 -2.5288341 139.52593994 28.68729973 + -0.047180772 139.72425842 30.39798927 2.69742441 140.97193909 30.069131851 4.15510464 142.3575592 27.80710793 + 4.19903755 143.89764404 28.58262253 2.62041116 142.06678772 31.056936264; + setAttr ".vt[332:497]" 3.41352844 143.23928833 25.0060310364 3.27446127 145.12484741 25.48181343 + 0.90564817 143.099502563 23.3085289 0.38729453 145.02911377 23.57134247 -1.89792264 142.020065308 23.71062088 + -2.77036572 143.66645813 23.97134399 -3.35310555 140.63430786 25.97569084 -4.34823227 141.83576965 26.44656563 + -2.60874391 139.75428772 28.77455711 -3.42289662 140.60905457 29.54663277 -0.10336123 139.89422607 30.46901512 + -0.53648877 140.70465088 31.45619011 3.13208556 145.13589478 29.20727921 1.82240701 143.34664917 31.26936913 + 2.26405501 146.36282349 26.5765419 -0.27399224 146.30769348 24.91963196 -2.99386597 145.0028381348 25.20828247 + -4.30114746 143.21366882 27.27231407 -3.4315331 141.9884491 29.90106773 -0.89588153 142.043533325 31.55603218 + 1.70583582 143.63195801 31.46552467 2.97182441 145.54125977 29.46574593 2.93565059 147.011657715 30.55647087 + 1.54776418 144.62294006 32.76182556 2.064815044 146.85484314 26.87528229 1.8304224 148.64199829 27.61887169 + -0.48439097 146.80218506 25.21292877 -1.12085736 148.55833435 25.67049408 -3.18110228 145.41426086 25.45339584 + -4.18852806 146.81001282 25.85307884 -4.44473314 143.50518799 27.45470428 -5.5756526 144.4216156 28.058914185 + -3.53663397 142.19329834 30.043210983 -4.47020674 142.79179382 30.99576378 -0.98977673 142.24572754 31.70403862 + -1.51968694 142.87513733 32.94366837 1.62934864 148.086807251 31.37928963 0.50930703 145.89964294 33.17201996 + 0.64365876 149.55177307 28.9003582 -1.87027657 149.43537903 27.18876457 -4.4382863 147.80638123 27.24774742 + -5.55580139 145.62026978 29.04133606 -4.57008934 144.15704346 31.51801491 -2.058677673 144.27238464 33.22875977 + 0.31160831 146.19171143 33.41324997 1.37557292 148.45394897 31.69471169 0.94579214 149.88716125 33.026035309 + -0.17157985 147.15365601 34.87620163 0.37745088 149.93876648 29.24252892 -0.20792295 151.60348511 30.21832085 + -2.097725868 149.77546692 27.49477196 -2.95652533 151.29670715 28.099229813 -4.59840631 148.060623169 27.47585487 + -5.68927097 149.1479187 27.91026497 -5.65980101 145.8001709 29.19516754 -6.80632305 146.41592407 29.76165581 + -4.66210127 144.3170166 31.64451408 -5.65241289 144.69966125 32.56703949 -2.18954396 144.47860718 33.39161682 + -2.90447593 145.0051269531 34.68559647 -0.68922365 150.84318542 33.99189377 -1.55250692 148.34881592 35.4889679 + -1.6710676 152.31498718 31.52447701 -3.9218874 151.90116882 29.53464699 -6.12093782 149.84655762 29.1887989 + -6.98110819 147.35662842 30.68610954 -6.0013399124 145.88630676 33.14865875 -3.75368643 146.29574585 35.13836288 + -1.8805443 148.61805725 35.76747131 -1.095697403 151.17420959 34.33922195 -2.29459357 152.49630737 35.75798798 + -3.025116205 149.46612549 37.27184296 -2.040944099 152.61647034 31.84462166 -3.26103234 154.072555542 32.8263588 + -4.16135836 152.098953247 29.74785423 -5.35682011 153.27166748 30.19714928 -6.2121582 149.92774963 29.27792931 + -7.35395765 150.56509399 29.4090023 -6.99348021 147.37698364 30.70576286 -8.083451271 147.53686523 30.92263603 + -6.051071167 145.93615723 33.19475937 -7.11763334 145.96075439 33.85210419 -3.93418121 146.44831848 35.29194641 + -5.022883415 146.75968933 36.48152924 -4.4325223 153.023574829 36.42330933 -4.92480183 150.30241394 37.66697311 + -5.1372509 154.33642578 33.78266907 -6.62516689 153.47117615 31.29523659 -8.022516251 150.93864441 30.41901207 + -8.51228905 148.22390747 31.66192818 -7.81012774 146.91133118 34.29606628 -6.32471609 147.77012634 36.78424454 + -5.44473124 150.48681641 37.86271286 -5.026963711 153.22236633 36.65604782 -6.88004875 154.067092896 37.57183838 + -7.25571346 150.97625732 38.89497757 -5.62136078 154.4914856 33.9841156 -7.29477692 155.42355347 34.50489807 + -6.87864876 153.55024719 31.41543388 -8.25609684 154.25236511 31.49287987 -8.060330391 150.95420837 30.45529747 + -9.20038986 151.24075317 30.29828453 -8.47585011 148.22503662 31.66072655 -9.57489109 148.1516571 31.62064934 + -7.88393259 146.95549011 34.32633209 -9.16091824 146.79483032 34.68571091 -6.62889719 147.89038086 36.89624405 + -8.20076656 147.96420288 37.69850159 -9.041419983 154.12979126 37.59832001 -9.35730362 151.36711121 38.77411652 + -9.14859009 155.28952026 34.81673431 -9.61545467 154.16751099 32.062110901 -10.16742992 151.42512512 30.94721031 + -10.48209286 148.6675415 32.12042618 -10.37614822 147.5055542 34.89684677 -9.91050434 148.62245178 37.65407181 + -9.9686451 151.4619751 38.81538391 -9.6201067 154.22007751 37.63920975 -11.50160885 154.81755066 37.91287613 + -12.041366577 151.74685669 39.22388077 -9.54996586 155.35227966 34.84655762 -11.053647041 156.036468506 34.79662323 + -9.79874706 154.19662476 32.07648468 -10.95915699 154.69140625 31.70078468 -10.21979427 151.43379211 30.94998741 + -11.27279758 151.56996155 30.43770409 -10.56727982 148.67987061 32.1229248 -11.81159878 148.50027466 31.7473278 + -10.63850117 147.54450989 34.91126251 -12.26051044 147.28001404 34.86240005 -10.39077377 148.69599915 37.68458176 + -12.35595798 148.62406921 37.95962524 -13.32597065 154.74357605 37.31164169 -14.028166771 152.03843689 38.44700623 + -12.56101036 155.7734375 34.58673477 -12.18089962 154.52801514 31.87121391 -12.40662861 151.73944092 30.75172615 + -13.10690403 149.036407471 31.8818531 -13.8730011 148.0012512207 34.60432816 -14.25503159 149.24452209 37.32509232 + -14.58106518 152.14698792 38.31024551 -13.70481491 154.82017517 37.21992874 -15.2572937 155.57955933 37.00094223022 + -16.65348053 152.67572021 38.075561523 -12.71403503 155.80630493 34.55062485 -13.68496323 156.5741272 34.1618309 + -12.18818951 154.53215027 31.86852837 -12.85611057 155.077362061 31.21993446 -12.43317032 151.7456665 30.73953438 + -13.25671101 151.96539307 29.89877129 -13.30721188 149.073425293 31.82373238 -14.6521883 149.061645508 30.97131157 + -14.29987621 148.08114624 34.49137497 -16.22567749 148.065185547 33.80992508 -14.82792187 149.35438538 37.17957306 + -17.055206299 149.56192017 36.75384521 -16.5693779 155.72698975 35.96112442 -18.17144585 153.29048157 36.72792435 + -14.80643368 156.46530151 33.63253784 -13.91384125 155.078186035 31.10786247 -14.41161728 152.37805176 29.86031532 + -16.010831833 149.9407959 30.62085533 -17.77640343 149.19607544 32.94899368 -18.67184639 150.58395386 35.47991943 + -18.58966064 153.50552368 36.44752121 -16.8027153 155.84248352 35.80425644; + setAttr ".vt[498:663]" -17.88437462 156.89172363 35.27741623 -20.18800354 154.47686768 35.75147629 + -14.86150265 156.4881134 33.59677887 -15.42937374 157.43144226 33.02986908 -13.9014349 155.068969727 31.11946297 + -14.26020241 155.78034973 30.32462883 -14.48208046 152.41569519 29.81851006 -15.062010765 152.90542603 28.745924 + -16.26617241 150.077606201 30.45622826 -17.36492157 150.49024963 29.21812248 -18.21023178 149.42634583 32.663414 + -19.82092476 149.94880676 31.4656086 -19.17315292 150.84661865 35.14627838 -20.99082184 151.60028076 34.17272186 + -18.75631714 157.35379028 34.042568207 -21.037233353 155.39689636 34.24332047 -16.37091064 157.66087341 32.23093414 + -15.27581882 156.141922 29.87066078 -16.11005783 153.68521118 28.34038353 -18.38833427 151.72645569 28.53661346 + -20.77737999 151.41519165 30.34782982 -21.87511444 152.93603516 32.71263123 -21.2704792 155.66307068 33.95894241 + -18.88503647 157.4985199 33.885952 -19.53314018 158.74876404 33.29336166 -22.36458588 156.94186401 33.12952042 + -16.41299248 157.7063446 32.18090439 -16.63739586 158.79092407 31.57944679 -15.29966927 156.16798401 29.84350777 + -15.37286282 157.043746948 28.99131584 -16.19499588 153.78285217 28.23933601 -16.48026466 154.53062439 27.044668198 + -18.57800865 151.94529724 28.30814934 -19.31104851 152.7230835 26.87938881 -21.053886414 151.73388672 30.012784958 + -22.20812225 152.67985535 28.59316444 -22.16964531 153.27435303 32.35435486 -23.47331238 154.4276886 31.18272972 + -20.010597229 159.42324829 32.039600372 -22.65931129 158.037460327 31.6818409 -17.33637619 159.28926086 30.66322517 + -16.19991302 157.71624756 28.3599205 -17.26528931 155.62359619 26.47561264 -19.91213417 154.23544312 26.11402893 + -22.59059143 154.36703491 27.48979187 -23.72892189 155.94244385 29.79691124 -22.78045654 158.35812378 31.4166851 + -20.073179245 159.60369873 31.89876366 -20.3283062 160.99414063 31.45447731 -23.45580292 159.86801147 30.68310738 + -17.35531616 159.36860657 30.6053791 -17.20760345 160.5405426 30.14220238 -16.2155304 157.79237366 28.29515457 + -15.9210844 158.77284241 27.51465034 -17.32007408 155.79621887 26.31808853 -17.2222271 156.72639465 25.1106739 + -20.025695801 154.54812622 25.83222961 -20.34924316 155.59950256 24.33791161 -22.74792862 154.78135681 27.12495613 + -23.47149277 156.052597046 25.64994049 -23.88936615 156.36004639 29.43896675 -24.75848579 157.8210907 28.27887917 + -20.45780754 161.82333374 30.21878242 -23.25468826 161.095413208 29.34585762 -17.68101883 161.25292969 29.17964935 + -16.54696655 159.71934509 26.83830261 -17.71895027 158.1186676 24.56270027 -20.51454163 157.38809204 23.68559456 + -23.2962532 157.95755005 24.72379494 -24.43160248 159.49375916 27.069309235 -24.13095093 158.65600586 25.81303024 + -24.10835648 160.34910583 28.30694962 0.55830592 134.80957031 28.58290863 -0.32922071 134.082397461 27.011865616 + 0.24070734 133.57025146 25.22328949 1.93479884 133.57339478 24.26533699 3.760324 134.090026855 24.69965553 + 4.64740419 134.81738281 26.27164841 4.076533318 135.32919312 28.059841156 2.3828876 135.32589722 29.016841888 + -21.45417786 161.0018768311 28.84843636 -19.50891876 161.019836426 28.81731606 -18.14470291 160.27494812 27.64737129 + -18.16007423 159.20343018 26.02366066 -19.54640961 158.43263245 24.89689827 -21.49207306 158.41429138 24.9274559 + -22.85697937 159.15936279 26.097753525 -22.84120369 160.23126221 27.72202873 5.65494442 138.053344727 27.14923477 + 4.54922628 138.4564209 28.42658997 3.73363614 137.81951904 29.79458809 5.19910526 137.70082092 23.92235374 + 5.23457956 138.58529663 25.50224876 2.63222122 136.96894836 22.0073795319 3.70098901 138.19413757 22.94098282 + -0.54187858 136.28611755 22.52639198 0.84652734 137.512146 22.24646759 -2.46076369 136.053039551 25.17443848 + -1.65404141 136.93945313 23.82605743 -2.0018532276 136.40603638 28.39857483 -2.33428621 136.81188965 26.7518692 + 0.56374198 137.13763428 30.31111717 -0.79891223 137.20329285 29.30794334 2.050440788 137.88394165 30.00098991394 + 4.50503683 138.69993591 26.87413979 4.049001694 138.55491638 28.085002899 3.09164834 138.27041626 28.9140625 + 4.091066837 138.70324707 24.38986015 4.59838963 138.80831909 25.58529663 2.092235327 138.27838135 22.9164753 + 3.26185799 138.58575439 23.39797401 -0.32056844 137.67424011 23.31708145 0.82229215 138.017593384 22.80485535 + -1.73395705 137.2447052 25.35700417 -1.29081738 137.43676758 24.15351868 -1.31998658 137.24139404 27.84128761 + -1.83940208 137.18357849 26.65348434 0.67884552 137.66627502 29.31466866 -0.50262803 137.40621948 28.83997726 + 1.93613434 137.97416687 29.43283272 4.78866053 141.39503479 27.55417252 3.76284862 141.3453064 28.97543526 + 3.10840082 140.21618652 30.11469841 4.07954073 142.03729248 24.4138279 4.20526218 142.38644409 26.18645477 + 1.39468551 141.76603699 22.53410721 2.49342489 142.66668701 23.72254181 -1.69202828 140.74021912 23.018079758 + -0.36990196 142.021316528 23.029478073 -3.37069321 139.56149292 25.58098412 -2.70519328 140.82894897 24.51374626 + -2.65937066 138.92022705 28.71981239 -3.14377952 139.78883362 27.30356407 0.023892224 139.19134521 30.59715462 + -1.43139696 139.50965881 29.76362419 1.42810321 140.15403748 30.45585442 3.57512808 142.060287476 27.58195496 + 3.21978402 141.54521179 28.72343636 2.34546208 140.96426392 29.48776054 2.97460699 142.74182129 25.23233414 + 3.56502223 142.53666687 26.3744297 0.89567566 142.60964966 23.81527138 2.081850529 142.84590149 24.29398537 + -1.44385648 141.74118042 24.16086769 -0.36088419 142.29164124 23.70116234 -2.67352247 140.64515686 26.066669464 + -2.33191776 141.19865417 24.94329262 -2.073001146 139.96362305 28.41629028 -2.67656827 140.2073822 27.29239082 + 0.0059312731 140.095794678 29.83335304 -1.19336557 139.89836121 29.37225533 1.24878144 140.45246887 29.9649868 + 3.71219206 144.64649963 28.96479607 2.71908069 144.24636841 30.39644051 2.24294758 142.78294373 31.27407265 + 2.79227805 145.91340637 26.044879913 2.95759058 145.87373352 27.86461067 0.021190003 145.84077454 24.22565269 + 1.11993682 146.50602722 25.55117989 -2.97664928 144.47116089 24.57387352 -1.71696067 145.77220154 24.8129921 + -4.44432831 142.60775757 26.88449287 -3.88960552 144.10284424 26.082511902 -3.52334023 141.34194946 29.80306435 + -4.12546158 142.47666931 28.61431503 -0.75381643 141.41445923 31.62093925; + setAttr ".vt[664:829]" -2.28834867 141.84550476 30.92512321 0.54589492 142.57814026 31.66333961 + 2.40688467 145.21585083 29.18529701 2.13411593 144.46917725 30.21608543 1.34165525 143.67308044 30.86796761 + 1.66700673 146.27824402 27.024061203 2.31174016 145.91479492 28.094455719 -0.44456822 146.23794556 25.65027809 + 0.7343632 146.48176575 26.1411438 -2.69090867 145.11853027 25.86869431 -1.67391241 145.83789063 25.50060844 + -3.75613832 143.57574463 27.55136299 -3.50210452 144.36042786 26.54805183 -3.016260386 142.51335144 29.71260262 + -3.67934513 142.91500854 28.66963387 -0.90468419 142.5536499 31.086381912 -2.10210896 142.34819031 30.6225605 + 0.30578318 142.99188232 31.26314735 2.32382298 147.6764679 31.064424515 1.30898535 147.0041351318 32.43903732 + 1.046280503 145.32659912 33.1017189 1.25155902 149.26576233 28.29948997 1.38160694 148.97467041 30.13436317 + -1.54251039 149.16264343 26.42763519 -0.50659776 149.70227051 27.87337685 -4.42042303 147.42805481 26.54586411 + -3.24849153 148.76046753 26.98185349 -5.69631243 145.078933716 28.58377647 -5.2367053 146.70213318 27.98153305 + -4.62401438 143.49078369 31.34717369 -5.30762815 144.73347473 30.28527641 -1.83159673 143.59310913 33.21841812 + -3.4210906 144.0063323975 32.54419327 -0.68089628 144.94625854 33.43664551 0.88504869 148.086700439 31.35079765 + 0.68840671 147.1885376 32.2714119 -0.018312201 146.23773193 32.80410004 0.059554175 149.31469727 29.31163216 + 0.72989762 148.8921814 30.34253502 -2.011232376 149.2024231 27.88112259 -0.87065887 149.50784302 28.42305374 + -4.11427164 147.81562805 27.89723969 -3.17547274 148.67488098 27.63759422 -5.017632484 145.96664429 29.35054207 + -4.83422232 146.88143921 28.44615173 -4.19213867 144.73864746 31.38970757 -4.87547493 145.17817688 30.3747921 + -2.12135124 144.85092163 32.82022095 -3.27527356 144.56254578 32.29391861 -0.97069836 145.3951416 33.079608917 + 0.13581088 150.49380493 33.62798691 -0.90617466 149.63519287 34.93053436 -0.87004173 147.81547546 35.33032227 + -0.9560219 152.12345886 30.93478584 -0.97009647 151.7752533 32.7914238 -3.50520754 151.74906921 28.83052063 + -2.71441126 152.34591675 30.38642311 -6.01696825 149.59205627 28.54831505 -5.11525488 151.013809204 29.12653542 + -7.021112442 146.91696167 30.25144005 -6.76536369 148.56216431 29.74815559 -5.93030453 145.2880249 32.9407692 + -6.7007494 146.42602539 31.88417625 -3.38305426 145.65930176 35.044719696 -4.95992899 145.85340881 34.2858429 + -2.55977821 147.18159485 35.54882431 -1.40445089 150.72511292 33.89099503 -1.52065539 149.72862244 34.71870422 + -2.088900805 148.62559509 35.10365295 -2.20979786 151.93809509 31.83488655 -1.5881449 151.56077576 32.91178894 + -4.03317976 151.55392456 30.13976479 -3.037704468 152.015808105 30.83436012 -5.8064847 149.79766846 29.79861259 + -5.019809246 150.82731628 29.70375633 -6.49093485 147.69813538 31.011278152 -6.37318563 148.69210815 30.18191719 + -5.68558836 146.48516846 33.067386627 -6.30562639 146.86070251 31.98816872 -3.86220551 146.86932373 34.76250458 + -4.85677767 146.40522766 34.0650177 -2.87474346 147.5929718 35.19628906 -3.42607069 152.88897705 36.22634506 + -4.53669691 151.74523926 37.28282547 -4.040385723 149.94566345 37.62652588 -4.27328682 154.3596344 33.37674713 + -4.65131187 153.92193604 35.18687057 -6.084423065 153.49588013 30.75029182 -5.83452511 154.16316223 32.41986465 + -7.79739332 150.80703735 29.88507271 -7.39121103 152.32951355 30.60553932 -8.41002464 147.86799622 31.28473854 + -8.40894032 149.4989624 30.80386925 -7.56435347 146.39744568 34.12992096 -8.29436588 147.32675171 32.89499283 + -5.75490665 147.25691223 36.75688171 -7.1145339 147.081436157 35.65815353 -5.55780745 148.9105835 37.47731781 + -5.062603951 152.74130249 36.16489029 -5.11415148 151.70303345 36.94603729 -5.43342161 150.46537781 37.17984009 + -5.60680962 153.81541443 33.95196533 -5.20874882 153.55503845 35.16067505 -6.74725199 153.058502197 31.83736992 + -6.13291311 153.72782898 32.76523972 -7.81587553 150.91398621 31.059804916 -7.34495926 152.12055969 31.16340446 + -8.18669319 148.63801575 32.074752808 -8.13482952 149.67533875 31.29300117 -7.64248753 147.56391907 34.28767776 + -8.040266991 147.82398987 33.077522278 -6.50204515 148.3208313 36.40227127 -7.11661434 147.65046692 35.47239304 + -5.90453434 149.25708008 37.075069427 -8.091567993 154.19433594 37.68738556 -9.15481281 152.85536194 38.44939804 + -8.43701839 151.2094574 38.95869064 -8.34269619 155.47227478 34.70198822 -9.042198181 154.97169495 36.31398392 + -9.04256916 154.29580688 31.75412941 -9.35204124 154.9916687 33.32693481 -9.78049278 151.35664368 30.56896782 + -9.90173244 152.90653992 31.23980904 -10.12478542 148.37503052 31.83847618 -10.36910629 149.93980408 31.27149391 + -9.87455463 147.09564209 34.82045364 -10.48172379 147.82533264 33.40174866 -9.17584133 148.26881409 37.7701149 + -10.17351151 147.80047607 36.38709259 -9.6238184 149.88374329 38.47937393 -9.47191143 153.73193359 37.18898392 + -9.5860405 152.70330811 37.97457123 -9.73722458 151.42662048 38.1700592 -9.4876461 154.68876648 34.85879517 + -9.44198418 154.50605774 36.14344788 -9.77521324 153.7366333 32.54448318 -9.60015392 154.50695801 33.57546997 + -10.16616058 151.4332428 31.60173607 -9.96774769 152.70597839 31.77512932 -10.43147373 149.12794495 32.58280945 + -10.32941437 150.15834045 31.79638481 -10.41574001 148.1710968 34.9129982 -10.47347164 148.35568237 33.62667465 + -10.12817287 149.12322998 37.22731781 -10.31551743 148.35398865 36.19453812 -9.94792271 150.15486145 37.99570847 + -12.55899906 154.85797119 37.66522598 -13.71334553 153.51005554 38.13879395 -13.19949245 151.9155426 38.91216278 + -11.91872311 156.00094604492 34.68848801 -12.92173767 155.52497864 36.055671692 -11.65307331 154.67773438 31.72704887 + -12.30416203 155.40814209 33.12064743 -11.91639709 151.6643219 30.51283073 -12.22094154 153.23197937 31.052232742 + -12.55533981 148.72325134 31.75628853 -12.72029877 150.26977539 31.057725906 -13.1967144 147.57679749 34.73136902 + -13.51138687 148.25268555 33.13573074 -13.46391582 148.89862061 37.69628906 -14.13099957 148.36456299 36.072628021 + -14.21474171 150.5428772 38.14616776 -13.52844334 154.30484009 36.82680893 -13.90671253 153.31665039 37.57984543 + -14.17657757 152.056915283 37.76086426 -12.79526424 155.15168762 34.57060242; + setAttr ".vt[830:995]" -13.13399601 155.025421143 35.81842041 -12.40651989 154.10139465 32.31390381 + -12.50643444 154.91081238 33.32600403 -12.58993721 151.7691803 31.37865257 -12.39129448 153.040725708 31.56233788 + -13.23806763 149.52127075 32.31271362 -12.85595608 150.51013184 31.55976677 -13.97125053 148.67440796 34.56891632 + -13.62862682 148.80078125 33.32032776 -14.35999203 149.72473145 36.82561493 -14.25663567 148.91456604 35.81324387 + -14.37182426 150.7852478 37.57777023 -16.037569046 155.74346924 36.49485016 -17.45553017 154.64157104 36.58575058 + -17.59153938 153.026473999 37.42537308 -14.30835629 156.62033081 33.86965942 -15.63999653 156.35401917 34.91526794 + -13.41526127 155.14639282 31.087457657 -14.20772743 156.0034790039 32.29727554 -13.88029957 152.18435669 29.77540779 + -13.99474049 153.79896545 30.2626667 -15.43244839 149.46691895 30.70174217 -15.12566757 151.027633667 29.9994297 + -17.16365051 148.58589172 33.32654953 -16.94104958 149.3104248 31.66544151 -18.058549881 150.060333252 36.11289597 + -18.3769722 149.65718079 34.28730392 -18.59011078 151.8664856 36.32638931 -16.67133331 155.30567932 35.438591 + -17.4886055 154.46302795 35.99317932 -18.096406937 153.31278992 36.023803711 -15.11049461 155.88545227 33.54837418 + -15.83011532 155.88041687 34.62992859 -14.32820415 154.71247864 31.46041298 -14.53006458 155.54919434 32.43454361 + -14.78271961 152.47389221 30.39780998 -14.34946251 153.66387939 30.69264412 -16.20779228 150.48100281 30.98302269 + -15.39410973 151.32820129 30.42405128 -17.76863289 149.90122986 32.87324142 -17.052598953 149.91004944 31.78666115 + -18.55092049 151.07421875 34.96120453 -18.35328674 150.24079895 33.98262787 -18.53389168 152.12684631 35.72516632 + -18.40740395 157.23454285 34.64949036 -20.0010890961 156.52067566 34.36836624 -20.76325226 155.019134521 34.97824097 + -15.92250538 157.6547699 32.59511948 -17.48358536 157.74171448 33.28230286 -14.76237869 156.035446167 30.018526077 + -15.60630608 157.087692261 31.031808853 -15.6056366 153.32432556 28.42700386 -15.46548748 154.94326782 28.93320274 + -17.95984459 151.10775757 28.75262833 -17.14427185 152.56121826 28.21314812 -20.44712257 150.6847229 30.80676079 + -19.66244316 151.33613586 29.2959156 -21.60889626 152.3052063 33.38647842 -21.54391098 151.98861694 31.54914284 + -21.68406105 154.13708496 33.65104675 -18.81548882 156.97134399 33.49881363 -19.91139412 156.34378052 33.80338669 + -20.7713356 155.38743591 33.60829163 -16.77699471 157.18588257 32.034179688 -17.69951057 157.33303833 32.93768311 + -15.84997463 155.90545654 30.0723629 -16.058511734 156.74119568 31.046060562 -16.57745934 153.88005066 28.76256561 + -15.94907093 154.91514587 29.23630714 -18.53330612 152.29614258 28.87204933 -17.43545914 152.92399597 28.56812859 + -20.57179832 152.081588745 30.33667946 -19.64749718 151.93408203 29.433321 -21.49882126 153.36204529 32.29849625 + -21.28919601 152.52575684 31.32535362 -21.39847946 154.35244751 33.13562012 -19.82389259 159.21160889 32.65209198 + -21.4431057 158.88070679 32.080677032 -22.62685013 157.60011292 32.37101746 -16.97737885 159.15296936 31.089887619 + -18.57145691 159.55574036 31.53079796 -15.7527256 157.45953369 28.59970665 -16.51603317 158.6348114 29.54581261 + -16.86658096 155.12223816 26.63850212 -16.47748947 156.65753174 27.28689194 -19.66832352 153.50918579 26.35481834 + -18.47985649 154.77954102 26.074966431 -22.5176506 153.56625366 27.91662979 -21.35308075 154.10134888 26.62188148 + -23.74351883 155.26123047 30.40941811 -23.41257477 155.022293091 28.60900497 -23.44954491 157.0027618408 30.87088585 + -20.054224014 159.10496521 31.45556831 -21.295578 158.728302 31.52065086 -22.29380798 158.0080871582 31.099386215 + -17.79781151 158.94898987 30.34604454 -18.80837822 159.2424469 31.1086483 -16.84634209 157.63156128 28.42075539 + -17.034605026 158.4256897 29.43282509 -17.75717545 155.92440796 26.80751038 -17.012733459 156.75645447 27.47458076 + -19.99675941 154.82754517 26.45132637 -18.75587082 155.21212769 26.38064384 -22.25317192 154.98348999 27.56085205 + -21.24337196 154.69747925 26.79215431 -23.20463943 156.30093384 29.4861393 -23.017812729 155.51431274 28.46832466 + -23.039382935 157.18405151 30.42705727 5.56160069 135.36186218 27.46479797 3.81921029 135.74087524 29.58109474 + 5.31667948 134.4211731 24.87195396 3.22560477 133.46990967 23.32349586 0.51456219 133.066146851 23.72822189 + -1.22633541 133.44662476 25.84852028 -0.97724617 134.38772583 28.43966293 1.11233401 135.33750916 29.98411751 + 3.26791835 138.26347351 29.1894474 4.83606577 138.67874146 26.94931793 4.39729261 138.62091064 24.21798515 + 2.20693946 138.12355042 22.59746742 -0.45069683 137.47833252 23.038385391 -2.017220497 137.06362915 25.28199768 + -1.57503998 137.1222229 28.011621475 0.61368948 137.61901855 29.62865639 4.81660223 138.75881958 26.95143127 + 3.26931429 138.25801086 29.18912888 4.35541153 138.79283142 24.22282219 2.1543622 138.33964539 22.60352516 + -0.49607176 137.6650238 23.043491364 -2.041676521 137.16455078 25.28446579 -1.57735014 137.13140869 28.011354446 + 0.62201494 137.58427429 29.62738228 2.55072761 140.86526489 29.73073387 3.91659927 142.026123047 27.62291908 + 3.27047563 142.73332214 25.025865555 0.98984802 142.57192993 23.46230316 -1.58831787 141.63653564 23.84918213 + -2.95253921 140.4756012 25.95933533 -2.30423284 139.76945496 28.55488396 -0.025254905 139.93092346 30.11610985 + 3.88730145 142.12013245 27.65525818 2.54125428 140.89634705 29.74095345 3.22228026 142.88731384 25.079397202 + 0.93485522 142.7477417 23.52347565 -1.63405013 141.78318787 23.8999691 -2.9784255 140.55924988 25.98767662 + -2.31155086 139.79322815 28.56207275 -0.025797457 139.93292236 30.11597633 1.56572998 143.54351807 31.079244614 + 2.7484951 145.21273804 29.21435928 1.94416296 146.36096191 26.82628822 -0.37655175 146.31488037 25.31490135 + -2.85328817 145.10153198 25.5662365 -4.034448624 143.43235779 27.43241119 -3.22906446 142.28526306 29.81916237 + -0.90995312 142.33132935 31.32925987 2.71177197 145.29618835 29.26745796 1.5462774 143.58738708 31.10749245 + 1.89491534 146.47303772 26.89741516 -0.42609596 146.42784119 25.38656425 -2.89075255 145.18714905 25.62054634 + -4.05466938 143.47843933 27.46158981 -3.2370894 142.30278015 29.83033562 -0.91764975 142.34783936 31.34017754 + 0.21362716 146.1131897 33.008392334 1.21800947 148.12852478 31.39699364; + setAttr ".vt[996:1161]" 0.31455788 149.47247314 29.15001678 -1.96740901 149.35705566 27.58462906 + -4.29015923 147.85031128 27.61820602 -5.29285097 145.83566284 29.23016548 -4.38938808 144.49291992 31.47564507 + -2.10910964 144.60760498 33.040473938 1.18006289 148.18692017 31.44667625 0.19279318 146.14520264 33.035682678 + 0.27147913 149.53871155 29.20627975 -2.00050878525 149.40811157 27.62787056 -4.30391693 147.87210083 27.63646507 + -5.28940058 145.83149719 29.2258606 -4.38117027 144.48088074 31.46449089 -2.11096334 144.61039734 33.042518616 + -1.88232434 148.54696655 35.34675217 -1.11685598 150.84460449 34.0024375916 -2.0069394112 152.18200684 31.74542427 + -4.030525684 151.77514648 29.89945793 -6.00072956085 149.86390686 29.54641151 -6.7640481 147.56916809 30.89076042 + -5.87542105 146.2328186 33.14464569 -3.85398006 146.63677979 34.9905777 -1.14609158 150.87039185 34.028873444 + -1.89028752 148.55471802 35.35459518 -2.026696205 152.19996643 31.7634182 -4.015577316 151.76383972 29.88701057 + -5.9458375 149.81933594 29.49953651 -6.68768549 147.50726318 30.82498741 -5.80900574 146.17866516 33.086719513 + -3.82247019 146.61117554 34.96340179 -5.27536345 150.42739868 37.4667511 -4.85387373 152.9251709 36.344841 + -5.46875715 154.11204529 33.91833878 -6.75928879 153.29226685 31.61066246 -7.96799707 150.9485321 30.77443504 + -8.38781929 148.45509338 31.89585304 -7.77467966 147.2684021 34.31803513 -6.48581505 148.083877563 36.62620544 + -4.90275621 152.94335938 36.36558151 -5.30388498 150.43824768 37.47891617 -5.48816824 154.1197052 33.92688751 + -6.71653891 153.27772522 31.59348488 -7.86697435 150.91348267 30.73286247 -8.26667118 148.41264343 31.84537697 + -7.68289757 147.23599243 34.27985764 -6.45595884 148.073730469 36.61406326 -9.65314007 151.4160614 38.49203491 + -9.36418247 153.95144653 37.41321564 -9.41166973 155.00730896 34.85341644 -9.76747131 153.96534729 32.31424332 + -10.22242355 151.43865967 31.28274345 -10.51063633 148.90667725 32.35986328 -10.46394825 147.8493042 34.91621399 + -10.10889339 148.88786316 37.45710373 -9.41558361 153.9596405 37.41588974 -9.71423531 151.42579651 38.49517059 + -9.41097069 155.0073852539 34.85292435 -9.70278931 153.95591736 32.30980301 -10.11951351 151.42385864 31.27516747 + -10.41751766 148.89280701 32.35227966 -10.42278194 147.8429718 34.91239166 -10.13161278 148.89161682 37.45767593 + -14.2267952 152.065597534 38.085659027 -13.53761387 154.54112244 37.052188873 -12.76550484 155.47613525 34.56391525 + -12.36249352 154.32493591 32.080345154 -12.56357765 151.76379395 31.053613663 -13.2515316 149.28967285 32.083583832 + -14.024332047 148.35113525 34.57024002 -14.42856693 149.50090027 37.057315826 -13.5059309 154.53588867 37.059764862 + -14.24121475 152.069396973 38.081466675 -12.67447948 155.45896912 34.58703995 -12.23341942 154.30099487 32.11372757 + -12.43954182 151.74143982 31.084928513 -13.17333508 149.27558899 32.10255432 -14.0059967041 148.34838867 34.57418442 + -14.44854069 149.5057373 37.051574707 -18.23288536 153.34011841 36.3223381 -16.69712257 155.54560852 35.65769577 + -15.013260841 156.19519043 33.5606575 -14.16681671 154.91203308 31.26098442 -14.65157509 152.44773865 30.10176277 + -16.18541908 150.24176025 30.76223183 -17.87098312 149.58789063 32.85898209 -18.71935081 150.87156677 35.16282272 + -16.66193581 155.52839661 35.67998886 -18.24938011 153.34994507 36.31025314 -14.92847919 156.15249634 33.61595917 + -14.06332016 154.85990906 31.32823372 -14.57124043 152.40737915 30.15349007 -16.15676117 150.22816467 30.7800808 + -17.89212608 149.6003418 32.8439064 -18.75920677 150.8936615 35.13531113 -20.97175026 155.45362854 33.85850525 + -18.83852005 157.21247864 33.71678162 -16.61401558 157.46229553 32.089916229 -15.59966373 156.059341431 29.93172264 + -16.3878727 153.8243866 28.50366402 -18.51932144 152.06427002 28.64240265 -20.74625778 151.81163025 30.26897621 + -21.76239204 153.21588135 32.43016434 -18.80283737 157.17201233 33.75986481 -20.96422768 155.44561768 33.86724091 + -16.55506516 157.39535522 32.16137314 -15.53574657 155.98707581 30.008852005 -16.34042168 153.77081299 28.56068802 + -18.5001812 152.042953491 28.66529846 -20.75051308 151.81723022 30.26350212 -21.77146339 153.22695923 32.41880035 + -22.50962639 158.087554932 31.33340263 -20.057256699 159.31736755 31.70173836 -17.58594131 159.16290283 30.46632576 + -16.54114532 157.71626282 28.35157394 -17.53372192 155.82336426 26.59396935 -19.98483849 154.59196472 26.22309303 + -22.45897865 154.74487305 27.45808983 -23.50502968 156.19313049 29.57537651 -20.043922424 159.28022766 31.73370934 + -22.51117134 158.092422485 31.32942009 -17.56214523 159.096511841 30.52355385 -16.51728249 157.65019226 28.40856743 + -17.5204258 155.78697205 26.62539291 -19.98657036 154.59751892 26.21858788 -22.47125816 154.779953 27.42830849 + -23.51722527 156.22793579 29.54580498 -23.039216995 161.13990784 29.02372551 -20.47289085 161.75576782 29.85995674 + -17.92582703 161.20132446 28.9307785 -16.88735962 159.80210876 26.78134727 -17.96509933 158.37612915 24.66827774 + -20.53056145 157.7585144 23.82927704 -23.080905914 158.31231689 24.75782585 -24.12024117 159.71331787 26.91003227 + 5.11240864 135.88020325 28.82676125 6.030440807 136.33668518 27.41617966 5.23990583 137.31262207 28.83294106 + 4.017755508 136.5193634 29.99647713 5.97782373 135.18955994 26.030666351 5.6764946 135.52081299 24.26186562 + 6.11728287 137.001373291 25.56098747 4.58769369 134.14477539 23.57204056 3.16170788 134.5506134 22.38450241 + 4.46329451 136.1991272 22.69493675 1.75548685 133.35884094 22.89488411 -0.040565982 133.99450684 22.8845253 + 1.24630225 135.37620544 21.91498756 -0.85658336 133.29304504 24.39667511 -2.050958633 134.17886353 25.46804047 + -1.64777994 135.01449585 23.67678261 -1.71626091 133.98556519 27.19477272 -1.69318116 134.99482727 28.61961746 + -2.52291155 135.32617188 26.94758606 -0.32345784 135.029266357 29.64769936 0.82044673 135.96385193 30.49403191 + -0.86818111 136.12825012 29.81183815 2.50301099 135.81335449 30.32285881 2.34656572 136.95074463 30.59293556 + 4.079110622 138.43113708 28.081008911 4.53070164 138.59448242 26.87076378 4.00046205521 138.47982788 28.031017303 + 3.11153078 138.1887207 28.91130829 4.64241552 138.62738037 25.57977295 4.12291908 138.57229614 24.38586617 + 4.54284334 138.70059204 25.58927727 3.31652451 138.36103821 23.39132881; + setAttr ".vt[1162:1327]" 2.12705612 138.13517761 22.91223335 3.2435379 138.46350098 23.45342636 + 0.87808973 137.78813171 22.79818535 -0.28773743 137.53919983 23.31310081 0.86366123 137.9074707 22.87461853 + -1.24405837 137.24436951 24.14792442 -1.70690858 137.13345337 25.35364342 -1.2026875 137.35818481 24.1919117 + -1.80652487 137.048324585 26.64945412 -1.29912555 137.15560913 27.83854294 -1.74506903 137.13742065 26.63365555 + -0.48033637 137.31471252 28.83703423 0.69673824 137.5927124 29.31217384 -0.44576287 137.37449646 28.76950645 + 1.95726013 137.88739014 29.42988396 1.93411386 137.93054199 29.34831429 4.48185539 138.73509216 28.43653679 + 5.25528717 139.70085144 27.20642853 4.56118155 140.098312378 28.92732239 3.47969103 138.86857605 29.83506584 + 5.10374498 139.1242218 25.5196228 4.64351559 139.98947144 23.99672699 5.15920734 140.9342041 25.68095207 + 3.52146697 138.93238831 22.96364975 2.00045585632 139.56489563 22.087459564 3.29081273 141.0095672607 22.8302269 + 0.66154277 138.27180481 22.26909447 -1.12437522 138.67607117 22.59936333 0.049655855 140.28004456 22.04646492 + -1.79802668 137.53015137 23.84364128 -2.8983438 137.84436035 25.23131752 -2.66401458 139.17347717 23.78925514 + -2.4151032 137.14227295 26.76211548 -2.28341699 137.55653381 28.43928528 -3.26063371 138.33810425 27.036052704 + -0.83136058 137.33459473 29.31308937 0.35801613 137.98059082 30.34523964 -1.39183104 138.26272583 29.88524818 + 2.023750305 137.99394226 30.0060825348 1.8479197 138.991745 30.66858101 3.26171255 141.4115448 28.67606735 + 3.60789299 141.95593262 27.54488754 3.17321157 141.47998047 28.65226364 2.37266564 140.87771606 29.45685005 + 3.61949825 142.36296082 26.31313515 3.01266098 142.62049866 25.18944359 3.51534247 142.43063354 26.35323524 + 2.14465404 142.64550781 24.22346687 0.9356488 142.48210144 23.77030373 2.071510553 142.72161865 24.31903839 + -0.29885608 142.093566895 23.63155937 -1.40645838 141.62182617 24.11878395 -0.31250691 142.1824646 23.74127769 + -2.27930903 141.030548096 24.88422012 -2.64168549 140.54359436 26.030750275 -2.24018502 141.12901306 24.958395 + -2.63645601 140.079284668 27.24729156 -2.046453238 139.87904358 28.38619614 -2.58231568 140.17834473 27.25742531 + -1.16152215 139.79692078 29.33632088 0.030559853 140.017425537 29.80533409 -1.13848281 139.88735962 29.29162025 + 1.28134906 140.34869385 29.92809105 1.24553454 140.42652893 29.86938286 3.66511536 141.67793274 29.10009956 + 4.30284643 143.042358398 28.15647697 3.68495297 142.99130249 30.0019702911 2.74785662 141.41261292 30.58154106 + 4.051790237 142.90129089 26.3685379 3.45623374 144.10931396 25.13785172 4.03792572 144.64117432 26.99421692 + 2.29867911 143.301651 23.94123268 0.70262092 143.98764038 23.2950573 1.98149216 145.25163269 24.29047203 + -0.56715804 142.64381409 23.24230194 -2.34374237 142.74864197 23.70899963 -1.27985358 144.46476746 23.47555923 + -2.86482906 141.3137207 24.68154335 -3.89709949 141.11886597 26.13614082 -3.83465385 142.74194336 25.026884079 + -3.24798155 140.091400146 27.41366196 -3.048611403 140.053024292 29.15327072 -4.18661308 141.092514038 28.034753799 + -1.49467921 139.692276 29.83746529 -0.29663104 140.17471313 30.99398232 -2.13017988 140.48228455 30.73739433 + 1.36763608 140.34910583 30.53583717 1.1301527 141.26870728 31.55218697 2.1868453 144.34883118 30.13943672 + 2.4458127 145.12689209 29.12870979 2.094990492 144.40596008 30.12941933 1.37589324 143.59486389 30.81815147 + 2.37392235 145.77275085 28.0041866302 1.70929265 146.18151855 26.9626255 2.27268267 145.80671692 28.052476883 + 0.80058116 146.33033752 26.045043945 -0.40222311 146.14096069 25.58876419 0.7351349 146.35629272 26.14412498 + -1.61145496 145.69488525 25.40991402 -2.65183783 145.029006958 25.81191444 -1.61697805 145.73278809 25.52225113 + -3.4489789 144.2387085 26.47085571 -3.72175694 143.49697876 27.50135994 -3.40582037 144.30142212 26.55114365 + -3.63561273 142.81498718 28.60610199 -2.98523712 142.44235229 29.66744423 -3.58351231 142.90065002 28.62808609 + -2.062362909 142.25758362 30.5648098 -0.87372029 142.4828949 31.041303635 -2.045964003 142.35107422 30.53643227 + 0.34923029 142.89285278 31.19994164 0.30614918 142.97459412 31.15830803 2.58177137 144.59146118 30.62428093 + 3.099050999 146.20649719 29.95949745 2.52309513 145.82521057 31.84499931 1.73697364 144.017593384 32.11669922 + 2.7756443 146.33035278 28.14777374 2.072412729 147.70809937 27.12994957 2.67567849 147.99356079 29.070352554 + 0.91092134 147.01071167 25.85316467 -0.74206448 147.64195251 25.28657913 0.48712909 148.82803345 26.43424606 + -1.9194752 146.23342896 25.086065292 -3.69455719 146.04699707 25.5099144 -2.76019287 147.83959961 25.48163033 + -4.056042194 144.45455933 26.2957325 -5.055094242 143.85829163 27.6681881 -5.16351461 145.6078186 26.77026558 + -4.24761581 142.71694946 28.77194977 -4.027709484 142.3578186 30.49639702 -5.31544447 143.4400177 29.54473686 + -2.38373184 142.037597656 31.064237595 -1.21476793 142.42376709 32.33870697 -3.12725711 142.60571289 32.18003082 + 0.44436622 142.81361389 31.83162117 0.11941177 143.59356689 33.13282394 0.74684805 147.098922729 32.19460678 + 0.92759591 148.021469116 31.29487419 0.65154314 147.14306641 32.18746948 0.020044982 146.17892456 32.75365448 + 0.79498297 148.79229736 30.25704384 0.10330726 149.24752808 29.25408363 0.6949265 148.80111694 30.30151558 + -0.80708534 149.41009521 28.33948326 -1.96996415 149.1388855 27.82675743 -0.86817336 149.40377808 28.43027687 + -3.12071323 148.59037781 27.56542397 -4.07772398 147.75918579 27.84899902 -3.12211347 148.59803772 27.6699028 + -4.790411 146.81352234 28.3882122 -4.98527431 145.91662598 29.30777931 -4.7465663 146.855896 28.46580696 + -4.83826208 145.12046814 30.32562065 -4.16098595 144.69059753 31.34856987 -4.78994989 145.19784546 30.35176277 + -3.23647332 144.50276184 32.24284363 -2.087713957 144.79922485 32.77589798 -3.22684956 144.59518433 32.22300339 + -0.92312872 145.32214355 33.017059326 -0.97290933 145.40090942 32.98337936 1.079587102 147.3381958 32.72085571 + 1.32826436 149.11393738 32.30138779 0.64921105 148.54953003 34.15335083 0.20622711 146.57015991 34.13196564 + 1.11521995 149.35993958 30.47059822 0.22710906 150.75114441 29.61705589; + setAttr ".vt[1328:1493]" 0.6296705 150.95037842 31.64032555 -0.75881183 150.072921753 28.20452118 + -2.45188165 150.52192688 27.65293884 -1.47575724 151.71076965 28.98215675 -3.44344807 149.059448242 27.2514801 + -5.13830423 148.56166077 27.55994606 -4.43292093 150.385849 27.73696136 -5.36502552 146.91473389 28.16910362 + -6.25899744 146.019317627 29.39166451 -6.50990534 147.75274658 28.63406181 -5.39922714 144.89529419 30.4179821 + -5.15776348 144.38298035 32.073490143 -6.49002123 145.35298157 31.14635277 -3.52722263 144.18229675 32.68173218 + -2.48034382 144.61087036 34.036937714 -4.38490725 144.5917511 33.80260468 -0.84401774 145.19348145 33.63614655 + -1.42808783 145.91563416 35.048538208 -1.46855831 149.684021 34.67224121 -1.36588585 150.69226074 33.85670471 + -1.5544976 149.69790649 34.64397049 -2.053995848 148.5958252 35.072593689 -1.53305733 151.51353455 32.86266708 + -2.17282057 151.90646362 31.80190849 -1.61926591 151.48464966 32.88006592 -2.99362206 151.97770691 30.79480934 + -4.0021080971 151.5271759 30.11188316 -3.039663315 151.93341064 30.85800362 -4.99433708 150.80473328 29.68035316 + -5.78217697 149.77655029 29.77662086 -4.98364019 150.78132629 29.76228905 -6.36304331 148.6822052 30.17184258 + -6.47028732 147.68009949 30.99250984 -6.31244087 148.70327759 30.23476982 -6.29842901 146.85334778 31.98089409 + -5.66335344 146.46589661 33.047306061 -6.24767256 146.91653442 31.99867439 -4.83846331 146.3888855 34.048221588 + -3.83406448 146.84519958 34.73733521 -4.82727528 146.46775818 34.020736694 -2.8378644 147.561203 35.16319656 + -2.8832984 147.61984253 35.11645126 -1.28584075 149.94517517 35.2537117 -1.49816716 151.82043457 35.022270203 + -2.45993614 151.057388306 36.76597595 -2.28199506 148.97271729 36.52935791 -1.37235081 152.10267639 33.13700867 + -2.48465395 153.36607361 32.25729752 -2.58718657 153.54284668 34.36737442 -3.026620626 152.60144043 30.65961647 + -4.66211843 152.70378113 29.85711861 -4.2394495 153.96090698 31.36715508 -5.2771368 151.15039063 29.27518272 + -6.75353956 150.22418213 29.2271862 -6.44752359 152.068557739 29.52372169 -6.80462599 148.60308838 29.79241371 + -7.53500319 147.3800354 30.73398018 -7.9185214 148.97476196 29.91511726 -6.71765709 146.45013428 31.90510368 + -6.5502429 145.83526611 33.49513626 -7.79099798 146.49072266 32.3121376 -5.067629337 145.94874573 34.37903214 + -4.37514734 146.49397278 35.89560318 -6.1398387 146.07144165 35.31105804 -2.81757212 147.39523315 35.76748276 + -3.93203783 147.96238708 37.15607452 -5.03734827 151.67521667 36.91375351 -5.00938797 152.72210693 36.14250565 + -5.11293364 151.66714478 36.8642807 -5.38359308 150.44747925 37.15896225 -5.13425016 153.52796936 35.12923431 + -5.55857515 153.79797363 33.93161392 -5.20710754 153.47468567 35.12303925 -6.081166744 153.70892334 32.74322128 + -6.70944881 153.044830322 31.82138252 -6.12023306 153.64717102 32.78988266 -7.32308769 152.11236572 31.1538868 + -7.78784275 150.90386963 31.047971725 -7.31741381 152.083557129 31.23155403 -8.13239765 149.67420959 31.29179573 + -8.16204739 148.62924194 32.064426422 -8.09735775 149.69979858 31.36089134 -8.035508156 147.82221985 33.075515747 + -7.6128602 147.55337524 34.27532196 -8.0031824112 147.89225769 33.10213852 -7.089159966 147.64057922 35.46088791 + -6.46198606 148.30651855 36.38555145 -7.09005785 147.71977234 35.43529129 -5.84722614 149.23638916 37.051025391 + -5.89287663 149.28338623 36.99362564 -5.11587334 151.94410706 37.50481415 -5.77228689 153.67002869 37.14308929 + -6.97616148 152.63334656 38.52098083 -6.17681313 150.70075989 38.43219376 -5.21116638 154.10494995 35.41193008 + -6.30561495 155.011367798 34.22119522 -6.99723387 155.032806396 36.15222931 -6.21042824 154.28153992 32.58423996 + -7.46331215 153.93948364 31.38094139 -7.73973846 155.13249207 32.87260056 -7.52630663 152.37266541 30.68084908 + -8.56590366 151.084945679 30.28541756 -8.76782894 152.87588501 30.60330772 -8.38765049 149.50016785 30.81363106 + -8.96858501 148.11984253 31.57361031 -9.47923374 149.58459473 30.67220879 -8.29251194 147.34329224 32.901474 + -8.43699169 146.77825928 34.49131393 -9.45788956 147.18605042 33.039196014 -7.29640532 147.16218567 35.72576904 + -7.28114223 147.84597778 37.3324585 -8.71666718 147.084899902 36.31808472 -5.98037243 149.067077637 37.63420486 + -7.68884897 149.34060669 38.58913803 -9.48354244 152.68762207 37.96835709 -9.40455914 153.72167969 37.18473434 + -9.54084492 152.66491699 37.8993721 -9.66785526 151.41609192 38.16584015 -9.35597992 154.49291992 36.1380806 + -9.43037415 154.68006897 34.85509872 -9.40999126 154.42541504 36.11297989 -9.54485893 154.49853516 33.57196808 + -9.73017788 153.7298584 32.54159546 -9.57994652 154.42887878 33.60739517 -9.93936443 152.70159912 31.77352715 + -10.1283493 151.42762756 31.59944344 -9.95115089 152.67326355 31.85035896 -10.30837154 150.15515137 31.7956562 + -10.39164639 149.12205505 32.58054733 -10.30616093 150.18701172 31.87111855 -10.43594551 148.35018921 33.62508011 + -10.36583233 148.16365051 34.91019058 -10.43701458 148.42652893 33.65751648 -10.24732399 148.34376526 36.19090271 + -10.066029549 149.11387634 37.22369385 -10.26706028 148.42306519 36.16309738 -9.85280704 150.1403656 37.99019623 + -9.895854 150.17868042 37.92013168 -9.77062607 152.95124817 38.49193954 -10.41871548 154.55548096 37.85453796 + -11.78046703 153.41062927 38.86381531 -10.85438633 151.58235168 39.12495804 -9.54473686 155.050186157 36.35034561 + -10.18079376 155.75778198 34.83855057 -11.24758339 155.72479248 36.47507477 -9.64124775 155.037078857 33.34907532 + -10.27929211 154.48641968 31.84536934 -10.9550581 155.65661621 33.12373352 -10.0026359558 152.92289734 31.24738121 + -10.6557436 151.48780823 30.62712669 -11.073283195 153.24700928 30.77215767 -10.41710854 149.94714355 31.27252388 + -11.090442657 148.51742554 31.89540291 -11.53306103 149.90690613 30.79727745 -10.64301395 147.84890747 33.40909576 + -11.3294239 147.31306458 34.90848541 -12.065940857 147.59249878 33.1843071 -10.5479269 147.85710144 36.40965271 + -11.23190117 148.58166504 37.90381241 -12.35973644 147.65911865 36.53578568 -10.18652153 149.97061157 38.51638031 + -12.24151611 150.068969727 38.88907242 -13.8557415 153.30645752 37.59320831 -13.49060249 154.29751587 36.83655548 + -13.86852932 153.276474 37.51543808 -14.13193035 152.048156738 37.7725296; + setAttr ".vt[1494:1659]" -13.10775757 155.020248413 35.82524109 -12.76620007 155.14616394 34.57800293 + -13.12787628 154.94717407 35.79284668 -12.50301743 154.91012573 33.32677841 -12.38306618 154.096939087 32.31988907 + -12.52654934 154.83828735 33.35691452 -12.39554596 153.041305542 31.56128502 -12.56563759 151.76452637 31.3849926 + -12.41679859 153.013626099 31.63456535 -12.84820461 150.50822449 31.56221581 -13.20696354 149.51513672 32.320961 + -12.86291409 150.54203796 31.63474083 -13.5960989 148.79408264 33.32933426 -13.93136692 148.66650391 34.57952118 + -13.60356808 148.87133789 33.35733032 -14.20115662 148.90336609 35.82811356 -14.31450081 149.71572876 36.83762741 + -14.20489597 148.98023987 35.7932663 -14.30871868 150.77255249 37.59445953 -14.31464577 150.80490112 37.51560974 + -14.19309139 153.60548401 38.021396637 -14.38415527 155.21994019 37.22148132 -16.034292221 154.27062988 37.81882858 + -15.51756859 152.36582947 38.33940125 -13.18575001 155.57949829 35.99251938 -13.10219193 156.24040222 34.3988533 + -14.43287182 156.37358093 35.70729446 -12.36780357 155.42355347 33.10565186 -12.42141819 154.83180237 31.52544212 + -13.13750362 156.10267639 32.58852768 -12.21631813 153.23318481 31.050165176 -12.73994827 151.81974792 30.28215218 + -12.90640545 153.61625671 30.28862953 -12.81972694 150.28868103 31.025606155 -13.87196922 148.96629333 31.39598274 + -13.87535381 150.37086487 30.15455818 -13.82685184 148.31118774 33.049285889 -15.15542698 147.9418335 34.21741486 + -15.47707367 148.26669312 32.26436996 -14.64752102 148.46243286 35.93911743 -15.83756924 149.349823 37.094871521 + -16.77366447 148.5362854 35.38415527 -14.79922199 150.65626526 37.99979401 -17.0044631958 151.02394104 37.68577194 + -17.44314194 154.43855286 36.024105072 -16.63809013 155.28799438 35.46102142 -17.43880081 154.40957642 35.94467545 + -18.05447197 153.29049683 36.052036285 -15.80980396 155.86907959 34.64410019 -15.085608482 155.87213135 33.56525421 + -15.83256626 155.80026245 34.605793 -14.52671051 155.54656982 32.43754196 -14.30644798 154.70077515 31.47525215 + -14.57152271 155.48200989 32.4573288 -14.34497261 153.66062927 30.696558 -14.75702953 152.46008301 30.415308 + -14.39437008 153.64126587 30.75782967 -15.37101078 151.31523132 30.44031715 -16.17341042 150.46258545 31.0063266754 + -15.40488338 151.35627747 30.50284004 -17.0043106079 149.88391113 31.81958199 -17.72588921 149.87844849 32.90209198 + -17.011117935 149.96560669 31.84172249 -18.28800774 150.20578003 34.026790619 -18.50505257 151.049804688 34.99208832 + -18.27215958 150.28385925 33.99018478 -18.46978569 152.092529297 35.76851273 -18.44931412 152.12460327 35.68968582 + -17.78772163 154.80989075 36.3625412 -17.27983856 156.36233521 35.66620255 -19.14757729 155.84188843 35.77246475 + -19.3496685 153.92677307 36.25125504 -15.77628326 156.41862488 34.82410812 -15.052088737 156.97854614 33.38258743 + -16.58037758 157.4357605 34.30408859 -14.21145439 156.00090026855 32.29697418 -13.97014141 155.41697693 30.7382679 + -14.62516117 156.83618164 31.63215065 -14.0067491531 153.80433655 30.25902748 -14.66658211 152.59213257 29.27954292 + -14.42696285 154.39440918 29.32100868 -15.2821188 151.11170959 29.900774 -16.73462868 150.15591431 29.86078453 + -16.10191154 151.54051208 28.72400856 -17.2935524 149.49847412 31.43530464 -18.96422958 149.53593445 32.14423752 + -18.66930199 149.94526672 30.19111061 -18.86218262 149.91317749 33.96594238 -20.047966003 151.098129272 34.79236603 + -20.62566757 150.54399109 32.86425781 -19.066890717 152.11425781 36.0077857971 -20.82367706 152.98712158 35.1766777 + -19.89086533 156.31985474 33.82858658 -18.79707527 156.95004272 33.52132797 -19.87179565 156.28877258 33.75382614 + -20.74858284 155.36116028 33.63607025 -17.6912632 157.32319641 32.94794464 -16.76218033 157.16868591 32.052349091 + -17.71887589 157.26159668 32.90192795 -16.057006836 156.73898315 31.048208237 -15.83591366 155.88905334 30.089654922 + -16.12005043 156.68789673 31.051935196 -15.94482517 154.90969849 29.24190331 -16.56087112 153.86074829 28.78295517 + -16.011892319 154.90371704 29.28756523 -17.42054367 152.90634155 28.58666801 -18.5123806 152.27186584 28.89770126 + -17.45775986 152.95422363 28.64235115 -19.62025261 151.90229797 29.46677208 -20.54727173 152.05317688 30.36667442 + -19.61067963 151.98135376 29.49425316 -21.25520897 152.48626709 31.3669529 -21.47353935 153.33280945 32.32937241 + -21.20950317 152.55505371 31.34423637 -21.36728477 154.31622314 33.17380524 -21.31766129 154.33924866 33.10861206 + -20.18378067 156.72793579 34.14566422 -19.17432976 158.10090637 33.71754837 -21.069349289 158.012023926 33.45829773 + -21.82486534 156.22901917 33.68593216 -17.56316948 157.82991028 33.18606567 -16.44485092 158.24012756 31.96502495 + -17.97960472 159.0095214844 32.62197495 -15.62931538 157.11195374 31.0053920746 -15.23361015 156.56674194 29.45512199 + -15.73517227 158.089675903 30.30107307 -15.51158333 154.99563599 28.87923241 -16.24900627 154.060150146 27.65613556 + -15.6503973 155.79125977 27.85460854 -17.27984047 152.71754456 28.050596237 -18.89795303 152.18688965 27.62167358 + -17.77495193 153.46031189 26.71519089 -19.90138626 151.61175537 29.0071353912 -21.62998009 152.045272827 29.37394142 + -20.86513901 152.46170044 27.55046654 -21.83942032 152.32873535 31.19030952 -22.84280968 153.72000122 31.88668633 + -23.11089706 153.38130188 29.87222862 -21.9562149 154.44885254 33.3195343 -23.19522858 155.68083191 32.31974792 + -21.27946663 158.68281555 31.55956459 -20.04158783 159.069381714 31.48605537 -21.25848961 158.66172791 31.47811699 + -22.27830505 157.96443176 31.13677406 -18.79898643 159.21585083 31.13138771 -17.78721046 158.91906738 30.37168312 + -18.83404922 159.17314148 31.068529129 -17.028011322 158.40675354 29.44894218 -16.83575058 157.60157776 28.44643593 + -17.10384941 158.37973022 29.4299984 -17.0033721924 156.72952271 27.49751854 -17.74456215 155.88864136 26.83810043 + -17.081417084 156.74623108 27.5223465 -18.73975563 155.16624451 26.41983604 -19.98127556 154.78372192 26.48881531 + -18.77989388 155.22955322 26.46305656 -21.22049713 154.63270569 26.84752464 -22.23565292 154.934021 27.60318947 + -21.20433426 154.71817017 26.87264442 -22.99214935 155.44181824 28.53031921 -23.18711281 156.25152588 29.52843666 + -22.93453217 155.51158142 28.51117516 -23.016527176 157.11955261 30.48223686 -22.9569664 157.14506531 30.41882133 + -21.53525543 159.13153076 31.87834358 -20.1914463 160.26148987 31.80692482; + setAttr ".vt[1660:1825]" -22.014629364 160.59968567 31.31941795 -23.1657238 159.033096313 31.18075371 + -18.60849953 159.67640686 31.44030952 -17.21452713 159.92193604 30.46982384 -18.64381218 160.96247864 31.027536392 + -16.52773094 158.69921875 29.49635887 -15.97686291 158.2142334 27.95295334 -16.26615143 159.76409912 28.90204048 + -16.50849533 156.77220154 27.1836586 -17.2026577 156.13760376 25.72893333 -16.27403259 157.70640564 26.18758583 + -18.56371689 155.021850586 25.85464859 -20.17584419 154.90762329 25.10020256 -18.66290092 155.99440002 24.4737072 + -21.49228477 154.47409058 26.28972435 -23.15567017 155.24589539 26.43687248 -22.034433365 155.63076782 24.76449203 + -23.57706833 155.4516449 28.23575592 -24.39443207 156.95523071 28.95630455 -24.4134407 156.8293457 26.89074898 + -23.59449196 157.38156128 30.5514164 -24.40484428 158.88787842 29.60629845 -20.41335487 161.54208374 30.83769798 + -21.96406364 161.60583496 30.0059490204 -23.43950081 160.61341858 29.98522758 -17.40235519 161.0084228516 29.64779472 + -18.95724106 161.69058228 29.91590691 -16.16799927 159.32540894 27.11292076 -16.84779167 160.55558777 28.092346191 + -17.43282509 157.47775269 24.71604347 -16.86796188 158.86489868 25.60183144 -20.45812035 156.54736328 23.86075592 + -19.008108139 157.60704041 23.90067101 -23.47239876 157.080383301 25.050037384 -22.017354965 157.51991272 23.9873085 + -24.70761299 158.76512146 27.58773804 5.26351881 136.52050781 28.8855629 6.15883112 135.98188782 25.79165268 + 4.61123943 135.018188477 23.076692581 1.5265404 134.19468689 22.33365631 -1.28591561 133.99414063 23.99748421 + -2.17714524 134.53393555 27.091712952 -0.62777275 135.49691772 29.80288124 2.4528439 136.31924438 30.54559898 + 4.011465549 138.43328857 28.031578064 4.55711365 138.64022827 25.59008217 3.26033664 138.3924408 23.45443916 + 0.88076848 137.83506775 22.87567711 -1.1876719 137.29463196 24.19283104 -1.73332012 137.087677002 26.63432503 + -0.43654245 137.33547974 28.76996994 1.94302571 137.89283752 29.34873009 4.6192131 139.32511902 28.70282555 + 5.24741411 139.92993164 25.55311584 3.49151087 139.85661316 22.7910881 0.37940329 139.14793396 22.037109375 + -2.26360965 138.21968079 23.73355103 -2.88862205 137.61578369 26.88431549 -1.1316998 137.68928528 29.64298058 + 1.97721922 138.39704895 30.39590263 3.18836784 141.43002319 28.63621712 3.53364801 142.37026978 26.33392906 + 2.091960669 142.65414429 24.2975235 -0.29217309 142.11535645 23.71990013 -2.22216034 141.069519043 24.9394207 + -2.56744027 140.12927246 27.24170685 -1.12575233 139.84541321 29.27811241 1.25838125 140.38420105 29.85573769 + 3.78772855 142.23898315 29.54479027 4.17013168 143.69393921 26.60793114 2.22780252 144.20399475 23.9849453 + -0.90152967 143.46984863 23.21404266 -3.38311052 141.92207336 24.74703979 -3.76317477 140.46783447 27.68428612 + -1.82068408 139.95851135 30.30488777 1.3063097 140.69194031 31.075403214 2.11223197 144.36473083 30.10445976 + 2.29210258 145.76025391 28.024385452 0.755575 146.30734253 26.11456871 -1.59727359 145.68557739 25.49375343 + -3.38817644 144.25914001 26.52560806 -3.56804681 142.86361694 28.60568428 -2.031518936 142.3164978 30.51550102 + 0.32132983 142.93829346 31.13631248 2.68629336 145.11825562 31.21396828 2.86741686 147.109375 28.52357674 + 0.79506028 147.88386536 26.002363205 -2.31638622 146.98760986 25.12837029 -4.64323092 144.94625854 26.41340256 + -4.82283068 142.95600891 29.10361671 -2.7510004 142.18212891 31.62323189 0.35892165 143.07749939 32.49740219 + 0.671552 147.11056519 32.16038895 0.71647239 148.76608276 30.27235603 -0.84677362 149.368927 28.4012928 + -3.10245776 148.56596375 27.64324379 -4.7292304 146.82754517 28.44226456 -4.77415085 145.17202759 30.33029747 + -3.2109046 144.56918335 32.20136261 -0.95522058 145.37214661 32.95941162 1.022685885 147.86373901 33.4041481 + 1.034049749 150.11958313 30.96823692 -1.0054907799 150.87916565 28.46021843 -3.90019417 149.69775391 27.35043526 + -5.95408487 147.26864624 28.28871727 -5.96450043 145.014358521 30.72371483 -3.92595434 144.25447083 33.22961426 + -1.032199502 145.43432617 34.34030914 -1.53547847 149.6802063 34.6258316 -1.5995847 151.46632385 32.86127853 + -3.021838188 151.91674805 30.84093285 -4.96910191 150.76766968 29.74828148 -6.30069494 148.69215393 30.22338676 + -6.23658848 146.90603638 31.98793602 -4.81433487 146.45559692 34.0082817078 -2.86707115 147.60470581 35.10093307 + -1.68236458 150.45947266 36.0050849915 -1.79166925 152.83003235 33.70000076 -3.49890256 153.30639648 30.91315651 + -5.80200529 151.61105347 29.27868462 -7.35169935 148.73904419 29.7519474 -7.24196959 146.37145996 32.054294586 + -5.53746653 145.89329529 34.83877945 -3.23478937 147.58566284 36.47599411 -5.086730003 151.65661621 36.85198975 + -5.18113375 153.4642334 35.11082077 -6.098323822 153.63833618 32.77956009 -7.30102301 152.076980591 31.22382164 + -8.084705353 149.69474792 31.35494041 -7.99030256 147.88713074 33.096111298 -7.073112011 147.7130127 35.42737579 + -5.87041235 149.27438354 36.98311234 -5.86408186 152.28746033 38.058921814 -5.93357182 154.61328125 35.78673172 + -6.84609604 154.75836182 32.67784119 -8.065556526 152.63983154 30.55478096 -8.87742233 149.50036621 30.65893745 + -8.80786037 147.17715454 32.92772675 -7.89772367 147.02911377 36.034420013 -6.67833567 149.14505005 38.16088486 + -9.50761509 152.65950012 37.89593124 -9.37949276 154.42044067 36.10976791 -9.55516529 154.42485046 33.60477829 + -9.9317255 152.67015076 31.84833717 -10.28859043 150.18421936 31.86935616 -10.41671371 148.42327881 33.65551758 + -10.24104118 148.41886902 36.16051102 -9.86448002 150.17356873 37.91694641 -10.62712002 153.19021606 38.77553177 + -10.26371288 155.44288635 36.46268845 -10.1886282 155.40536499 33.22068405 -10.44486141 153.10163879 30.94889259 + -10.88234615 149.88163757 30.9759655 -11.24581242 147.62944031 33.28544235 -11.32225513 147.66374207 36.52693939 + -11.065960884 149.9670105 38.80209732 -13.84780598 153.27290344 37.51990128 -13.11098957 154.94429016 35.79644012 + -12.51346779 154.83607483 33.35968018 -12.40526295 153.011672974 31.63703728 -12.8497591 150.5397644 31.6376133 + -13.58657646 148.86837769 33.36107635 -14.18409729 148.97659302 35.79784012 -14.29230213 150.80099487 37.52048111 + -15.015707016 153.92752075 38.054729462 -13.71263313 156.01763916 35.92849731; + setAttr ".vt[1826:1991]" -12.65389442 155.8079834 32.85562515 -12.45845127 153.42318726 30.6349659 + -13.24086761 150.25904846 30.56498146 -14.54401016 148.16670227 32.68769455 -15.60465717 148.37329102 35.76246643 + -15.80003262 150.76029968 37.98664474 -17.42059135 154.40097046 35.95585632 -15.81887722 155.79376221 34.61422729 + -14.56094646 155.47695923 32.46389008 -14.38367558 153.63615417 30.76447487 -15.39090824 151.34963989 30.51149178 + -16.99262238 149.95681763 31.8531208 -18.25055122 150.27362061 34.0034561157 -18.42782402 152.11444092 35.7028656 + -18.41786575 155.29379272 36.21111679 -16.099317551 156.93997192 34.66320419 -14.313941 156.42976379 32.0047950745 + -14.1059618 154.063552856 29.79144096 -15.59718227 151.22538757 29.31779671 -17.91577721 149.57624817 30.8630619 + -19.70358086 150.084396362 33.52390671 -19.91151619 152.45355225 35.73991013 -19.86116982 156.27764893 33.76588058 + -17.71048737 157.25280762 32.91146088 -16.11292839 156.68041992 31.060060501 -16.004322052 154.89576721 29.29620552 + -17.44828606 152.94425964 28.65314102 -19.5989666 151.96907043 29.50756645 -21.19652557 152.54147339 31.35896873 + -21.30513382 154.32614136 33.12282181 -20.61497879 157.32481384 33.94126892 -17.71250343 158.40960693 33.012638092 + -15.58672047 157.58181763 30.71319771 -15.48100948 155.32693481 28.38873672 -17.45767212 152.96405029 27.39941978 + -20.36078835 151.87678528 28.32598305 -22.48932838 152.7038269 30.62714195 -22.59439659 154.96121216 32.95367813 + -21.25068855 158.64257813 31.49503136 -18.82772446 159.15759277 31.082262039 -17.098161697 158.3657074 29.44237328 + -17.075151443 156.73077393 27.53598976 -18.77217674 155.21054077 26.47984505 -21.19513893 154.69552612 26.89261246 + -22.9247036 155.4874115 28.53249931 -22.94771385 157.12231445 30.43888283 -21.7964344 159.81034851 31.73402977 + -18.58585739 160.28970337 31.35029793 -16.31231499 159.18521118 29.27119637 -16.30580902 157.14372253 26.71365166 + -18.57091522 155.35977173 25.17444992 -21.78270531 154.87850952 25.55619049 -24.058916092 155.98324585 27.63671112 + -24.064212799 158.026626587 30.19624901 -22.043912888 161.23840332 30.65339851 -18.78701019 161.45135498 30.47113609 + -16.49687386 160.25552368 28.4617424 -16.51316261 158.35084534 25.80125618 -18.82744408 156.85202026 24.046569824 + -22.085964203 156.63749695 24.2265358 -24.37885666 157.83404541 26.23740005 -24.36094856 159.74029541 28.90017509 + 2.15585637 134.46502686 26.63681984 -20.49983788 159.70379639 26.88177109 4.93874836 138.0062103271 28.65475845 + 5.72973871 137.94223022 25.48656464 4.099018574 137.35716248 22.71220398 1.0014561415 136.59390259 21.9591465 + -1.74638534 136.099700928 23.66800308 -2.53371286 136.16448975 26.83616447 -0.90180433 136.74967957 29.60707283 + 2.19209456 137.512146 30.36016273 3.98897505 138.5256958 28.034618378 4.52816534 138.75920105 25.59379196 + 3.22644854 138.5317688 23.45861435 0.8463524 137.97660828 22.87984848 -1.21789479 137.41894531 24.19652367 + -1.7570852 137.1854248 26.63735008 -0.4553678 137.41287231 28.77252769 1.92472827 137.96803284 29.35129738 + 4.20433044 140.83139038 29.013696671 4.72849607 141.81396484 25.93813133 2.89749384 142.014175415 23.22952843 + -0.21655621 141.31430054 22.47645187 -2.78752804 140.12489319 24.12052345 -3.30916238 139.14309692 27.1966629 + -1.4777528 138.94345093 29.90266991 1.63376594 139.64256287 30.65517235 3.15856647 141.52487183 28.67000389 + 3.49799299 142.48388672 26.37418365 2.052416801 142.78027344 24.34204102 -0.33136314 142.24041748 23.76398087 + -2.25696087 141.18055725 24.97862053 -2.59638715 140.22155762 27.27443886 -1.15081012 139.92518616 29.3065815 + 1.23296952 140.46504211 29.88464165 3.24168468 143.72155762 30.29297066 3.5382185 145.41052246 27.47181129 + 1.54688513 146.054916382 24.91484833 -1.56565654 145.2767334 24.12123299 -3.97478294 143.53244019 25.55587196 + -4.269557 141.84429932 28.37702751 -2.27855039 141.20056152 30.93219566 0.83223182 141.97790527 31.72581673 + 2.075654507 144.44830322 30.1576519 2.25118303 145.85380554 28.083848953 0.71281213 146.40524292 26.17669106 + -1.63830185 145.77957153 25.5533638 -3.42490792 144.3433075 26.5790081 -3.60043669 142.93778992 28.65281105 + -2.062065125 142.3863678 30.55997276 0.28904921 143.012039185 31.1832943 1.95143962 146.51123047 32.26168442 + 2.062298536 148.6365509 29.67081261 -0.02370438 149.43838501 27.16910553 -3.083878279 148.44682312 26.22307396 + -5.32476091 146.24359131 27.38645935 -5.43449545 144.11953735 29.97672462 -3.34957147 143.31796265 32.477005 + -0.29052216 144.30825806 33.42364502 0.63086277 147.17292786 32.21387863 0.67287213 148.83296204 30.32967949 + -0.88968408 149.43489075 28.45777512 -3.14148116 148.62612915 27.69470215 -4.76344728 146.88041687 28.48746109 + -4.80545664 145.22036743 30.37166405 -3.24289989 144.61843872 32.24356842 -0.99110281 145.42721558 33.0066413879 + -0.12399395 149.19012451 34.68008804 -0.17032827 151.51455688 32.30849838 -2.13488007 152.19166565 29.72001839 + -4.86530733 150.82566833 28.43262863 -6.76197147 148.21888733 29.19955063 -6.71518183 145.89710999 31.56908607 + -4.75260353 145.21841431 34.15477753 -2.022631168 146.58174133 35.44421768 -1.57277668 149.71199036 34.65899277 + -1.63800108 151.49909973 32.89547348 -3.056211472 151.94624329 30.87166786 -4.99663973 150.79147339 29.77309608 + -6.32260895 148.71127319 30.24328041 -6.25738478 146.92414856 32.0067977905 -4.83917379 146.47702026 34.030601501 + -2.89874554 147.6317749 35.12917709 -3.56044412 151.49945068 37.1773262 -3.68608093 153.88111877 34.88423538 + -5.12050056 154.20826721 31.92962074 -7.021754742 152.29133606 30.046182632 -8.27623463 149.25535583 30.33475304 + -8.15050507 146.87661743 32.62455368 -6.71824217 146.54667664 35.57656097 -4.8170805 148.46069336 37.46329117 + -5.13924694 151.67552185 36.87403488 -5.23278999 153.4828949 35.13258362 -6.14166546 153.65402222 32.79787064 + -7.3334651 152.088684082 31.23753548 -8.1100502 149.70381165 31.36561012 -8.016507149 147.89645386 33.10705948 + -7.10763121 147.72531128 35.44177246 -5.91583109 149.29066467 37.0021057129 -8.19751644 152.81404114 38.60458374 + -8.1466198 155.11399841 36.30772018 -8.65981865 155.168396 33.1065979 -9.43552685 152.94790649 30.87717628 + -10.019266129 149.75395203 30.92274666 -10.069989204 147.4552002 33.2161293; + setAttr ".vt[1992:2157]" -9.55816174 147.39761353 36.41617966 -8.78262711 149.61688232 38.64907455 + -9.57714176 152.67007446 37.90024185 -9.44249344 154.43002319 36.11380386 -9.60612583 154.43257141 33.60807419 + -9.97218704 152.6762085 31.85087776 -10.3262434 150.18978882 31.87155342 -10.46089268 148.42984009 33.65799332 + -10.29725933 148.42729187 36.16372299 -9.93119907 150.18365479 37.92092133 -12.90457726 153.51319885 38.57146835 + -12.21355438 155.71714783 36.29241562 -11.72497845 155.61956787 33.088886261 -11.72375774 153.28012085 30.8364315 + -12.21035099 150.067947388 30.85206032 -12.90107441 147.86257935 33.12768936 -13.39141846 147.95689392 36.33243561 + -13.39293861 150.29776001 38.58831787 -13.88958549 153.28105164 37.50905991 -13.1443615 154.95069885 35.78789902 + -12.53907776 154.84091187 33.35316849 -12.42830276 153.016052246 31.63109779 -12.87692738 150.5450592 31.63045692 + -13.62215137 148.87539673 33.35161972 -14.2274332 148.98516846 35.78635025 -14.3382082 150.81004333 37.50841904 + -16.89964104 154.52593994 37.22565842 -15.12836361 156.46450806 35.30706406 -13.71386719 156.1421814 32.3900032 + -13.48290253 153.74925232 30.18139839 -14.57095623 150.68536377 29.97309303 -16.34234428 148.74372864 31.88864326 + -17.75937271 149.063598633 34.80821228 -17.99022484 151.45962524 37.019863129 -17.45847893 154.42111206 35.93033218 + -15.84756565 155.80908203 34.59482193 -14.58343792 155.48904419 32.4485817 -14.40660191 153.64848328 30.74883461 + -15.42064667 151.36558533 30.49128151 -17.031560898 149.97763062 31.82679176 -18.29569054 150.2976532 33.97303391 + -18.47252464 152.13819885 35.67277527 -19.69583321 156.28155518 35.059749603 -17.084293365 157.70323181 33.77384567 + -15.11803532 157.056228638 31.27560997 -14.94703102 154.72019958 29.027090073 -16.67183685 152.061798096 28.34396553 + -19.28386879 150.63746643 29.62763023 -21.25281334 151.28335571 32.12779236 -21.42332458 153.62207031 34.37855148 + -19.88182259 156.30151367 33.74065018 -17.72686195 157.27178955 32.89141083 -16.12695313 156.69673157 31.042829514 + -16.019302368 154.91320801 29.27778053 -17.46697235 152.9659729 28.63020515 -19.62193489 151.99569702 29.4794445 + -21.22184181 152.570755 31.32802773 -21.32949257 154.35427856 33.093074799 -21.3419838 158.56756592 32.7491951 + -18.29418373 159.40515137 32.05783844 -16.098016739 158.4598999 29.87169838 -16.038139343 156.28547668 27.47034264 + -18.15037346 154.15426636 26.25908279 -21.19923973 153.31462097 26.94844055 -23.39809036 154.25984192 29.1360569 + -23.45690155 156.43632507 31.53941536 -21.26475906 158.68218994 31.46109962 -18.83914948 159.18980408 31.054662704 + -17.10848427 158.39489746 29.41736794 -17.086561203 156.76312256 27.50831604 -18.78622437 155.25033569 26.44580078 + -21.21183205 154.7427063 26.85223007 -22.94249916 155.53759766 28.48952293 -22.96442223 157.16938782 30.39858055 + 4.88939857 135.64201355 28.67067337 5.69770432 134.93014526 26.13013268 4.43749571 133.90933228 23.89554405 + 1.84645772 133.1782074 23.27839851 -0.55557412 133.16567993 24.64092636 -1.36010611 133.87879944 27.18300247 + -0.098115221 134.89889526 29.41378975 2.48914886 135.62878418 30.029397964 4.26052237 138.51846313 28.22401047 + 4.87018824 138.71139526 25.54190636 3.45178342 138.41184998 23.19376755 0.83604062 137.79536438 22.55729866 + -1.44305694 137.22351074 24.0058498383 -2.04936862 137.031448364 26.6891346 -0.62977463 137.33114624 29.033813477 + 1.98261404 137.94673157 29.66909981 4.25254011 138.55154419 28.22478485 4.83882666 138.84017944 25.54546165 + 3.40255666 138.61402893 23.1994648 0.78493059 138.0054931641 22.56314278 -1.47897875 137.37150574 24.0097637177 + -2.06205225 137.083694458 26.6901226 -0.62481451 137.31019592 29.032791138 1.98959863 137.91790771 29.66807747 + 3.45092392 141.46099854 28.82601547 3.83948278 142.46890259 26.28771591 2.26047707 142.76341248 24.042831421 + -0.36105049 142.17163086 23.40796471 -2.48805356 141.040588379 24.7553215 -2.87405634 140.033340454 27.29417419 + -1.29469514 139.73959351 29.53650093 1.3242768 140.33070374 30.17080879 3.43221712 141.52145386 28.84655762 + 3.79985428 142.59567261 26.33162498 2.20698333 142.93432617 24.102314 -0.41321272 142.33859253 23.46597099 + -2.52448606 141.1578064 24.79561424 -2.88977289 140.084289551 27.31091499 -1.29678071 139.74647522 29.53790092 + 1.32106519 140.34155273 30.17387581 2.37829781 144.38241577 30.2910099 2.58262205 145.90252686 27.99649811 + 0.89660197 146.49719238 25.89258003 -1.69178879 145.81767273 25.21277428 -3.66522932 144.26245117 26.35533333 + -3.86778212 142.74313354 28.64982605 -2.18212986 142.1492157 30.75200844 0.40448987 142.82794189 31.43183327 + 2.35026717 144.44599915 30.33164024 2.53848934 146.0028991699 28.060249329 0.84554422 146.61347961 25.96636009 + -1.73647702 145.91967773 25.27749443 -3.69407439 144.32839966 26.39712143 -3.88076305 142.77233887 28.66831589 + -2.1883831 142.16244507 30.7606678 0.39210451 142.85540771 31.44972801 0.93339026 147.13174438 32.35208511 + 0.98793143 148.94419861 30.27040672 -0.73070908 149.60702515 28.2135067 -3.21508074 148.73176575 27.38713264 + -5.0090789795 146.83190918 28.27504349 -5.062485695 145.020690918 30.35609627 -3.34496331 144.35820007 32.41162872 + -0.86172605 145.23220825 33.23862839 0.90307117 147.1783905 32.39183426 0.94559139 149.0093383789 30.32577324 + -0.77045119 149.66816711 28.26538658 -3.23900151 148.76889038 27.4185257 -5.013243675 146.83927917 28.28080559 + -5.05480814 145.0098571777 30.3459568 -3.34018826 144.35107422 32.40490723 -0.87259376 145.24882507 33.25267792 + -1.30657661 149.73440552 34.8508606 -1.37378359 151.69572449 32.90776062 -2.94590306 152.19767761 30.69399834 + -5.10065985 150.94680786 29.50777245 -6.5751605 148.67773438 30.042837143 -6.50749063 146.71905518 31.98387718 + -4.93777227 146.21586609 34.19553375 -2.78347802 147.46411133 35.38381958 -1.32847393 149.75395203 34.87093353 + -1.40205204 151.72079468 32.93328476 -2.95036435 152.20272827 30.69851494 -5.064856529 150.91804504 29.47732735 + -6.50615597 148.62173462 29.98368263 -6.43229628 146.65794373 31.91866875 -4.88683081 146.17425537 34.15114212 + -2.77262092 147.4559021 35.37498856 -4.94150114 151.75430298 37.12616348 -5.04583931 153.74238586 35.2115593 + -6.073990345 153.9402771 32.65719986 -7.42240286 152.23320007 30.96128654; + setAttr ".vt[2158:2257]" -8.30073547 149.62376404 31.11549568 -8.19644737 147.63868713 33.02689743 + -7.17057085 147.43804932 35.57870865 -5.82210684 149.14213562 37.27782822 -4.98612833 151.7709198 37.14507675 + -5.085549831 153.75727844 35.22851944 -6.064266205 153.9375 32.65369797 -7.34767294 152.20739746 30.93078041 + -8.18374157 149.58299255 31.066995621 -8.084458351 147.59925842 32.98020554 -7.10778761 147.41603088 35.55274582 + -5.82424307 149.14349365 37.2790184 -9.47471523 152.7830658 38.19508362 -9.34443188 154.72067261 36.23179245 + -9.56210232 154.72790527 33.48070145 -9.99952221 152.80241394 31.554636 -10.40034199 150.073623657 31.57941628 + -10.53066158 148.13726807 33.53927994 -10.31402302 148.1267395 36.28921509 -9.87656498 150.050979614 38.21871185 + -9.53706646 152.79298401 38.19837952 -9.37344646 154.7253418 36.23311234 -9.52847481 154.72303772 33.47823715 + -9.91074848 152.78961182 31.5483799 -10.2962513 150.058410645 31.57135201 -10.45987415 148.12651062 33.5332756 + -10.30571175 148.12554932 36.28768158 -9.92343616 150.058517456 38.22088623 -13.92066002 153.41331482 37.80610657 + -13.13223934 155.25325012 35.90579987 -12.49837685 155.13624573 33.223526 -12.38948727 153.13354492 31.33010292 + -12.86898232 150.41738892 31.33168602 -13.65704823 148.57603455 33.22858429 -14.29218578 148.68972778 35.912117 + -14.40143299 150.6938324 37.8089447 -13.91565514 153.41333008 37.80686188 -13.070332527 155.24188232 35.92123032 + -12.38399601 155.11476135 33.25297165 -12.2572813 153.10940552 31.36399269 -12.76415634 150.39851379 31.35767555 + -13.60929203 148.56762695 33.23986053 -14.29742241 148.69158936 35.91010284 -14.42432404 150.69926453 37.8025322 + -17.54574394 154.56559753 36.20965958 -15.80866146 156.10568237 34.71936417 -14.44382286 155.76351929 32.34756088 + -14.24871159 153.74215698 30.48183632 -15.33747387 151.22276306 30.21240044 -17.074411392 149.67947388 31.6997242 + -18.44166756 150.019119263 34.074115753 -18.63692284 152.043670654 35.94281387 -17.53816032 154.56278992 36.21357346 + -15.74645233 156.074523926 34.7596817 -14.34478378 155.71359253 32.41211319 -14.15204716 153.69346619 30.54440117 + -15.28118038 151.19476318 30.24836922 -17.072877884 149.68003845 31.69967079 -18.47710037 150.038970947 34.049552917 + -18.66984749 152.062103271 35.91985321 -20.0018024445 156.46716309 33.99369431 -17.65076828 157.55059814 33.039279938 + -15.90371418 156.92834473 30.9974041 -15.78165054 154.96598816 29.062854767 -17.35652351 152.8106842 28.36702538 + -19.70799255 151.72451782 29.31925774 -21.45785713 152.34579468 31.36293983 -21.57948494 154.31085205 33.29967499 + -19.98064613 156.44342041 34.019046783 -17.60189247 157.49508667 33.098487854 -15.83960629 156.85568237 31.074964523 + -15.72371674 154.90049744 29.13260841 -17.32275963 152.77267456 28.40754509 -19.70213509 151.71847534 29.32607079 + -21.46721458 152.35722351 31.3512516 -21.58248138 154.31494141 33.29564285 -21.38293648 158.84066772 31.71946144 + -18.72664452 159.42059326 31.25144005 -16.83000183 158.55677795 29.44415855 -16.80169106 156.75532532 27.35521889 + -18.65931511 155.069717407 26.20671463 -21.31665611 154.48768616 26.67276192 -23.21601868 155.35153198 28.48145866 + -23.24328041 157.15510559 30.57236671 -21.3770237 158.82447815 31.73347664 -18.70708084 159.36599731 31.29847908 + -16.80475616 158.48658752 29.50469398 -16.78209114 156.7013092 27.40183258 -18.65353584 155.05430603 26.2201519 + -21.32468224 154.51083374 26.65317917 -23.22968483 155.39050293 28.44834709 -23.25114632 157.17773438 30.55317879 + -21.85487175 161.58145142 29.64706612 -19.096300125 161.6144104 29.59666634 -17.16221046 160.56048584 27.93589211 + -17.18319321 159.036437988 25.63649178 -19.14846802 157.93380737 24.043655396 -21.90864944 157.89924622 24.091791153 + -23.84550476 158.95394897 25.75399208 -23.82291031 160.47956848 28.055662155; + setAttr -s 4512 ".ed"; + setAttr ".ed[0:165]" 0 576 1 576 1 1 1 575 1 575 2 1 2 574 1 574 3 1 3 573 1 + 573 4 1 4 572 1 572 5 1 5 571 1 571 6 1 6 570 1 570 7 1 7 577 1 577 0 1 9 1156 1 + 1156 8 1 8 1157 1 1157 104 1 10 1160 1 1160 9 1 11 1163 1 1163 10 1 12 1166 1 1166 11 1 + 13 1169 1 1169 12 1 14 1172 1 1172 13 1 15 1175 1 1175 14 1 8 1177 1 1177 15 1 9 602 1 + 602 113 1 10 605 1 605 114 1 11 607 1 607 115 1 12 609 1 609 116 1 13 611 1 611 117 1 + 14 613 1 613 118 1 15 615 1 615 119 1 17 1204 1 1204 16 1 16 1205 1 1205 120 1 18 1208 1 + 1208 17 1 19 1211 1 1211 18 1 20 1214 1 1214 19 1 21 1217 1 1217 20 1 22 1220 1 1220 21 1 + 23 1223 1 1223 22 1 16 1225 1 1225 23 1 17 634 1 634 129 1 18 637 1 637 130 1 19 639 1 + 639 131 1 20 641 1 641 132 1 21 643 1 643 133 1 22 645 1 645 134 1 23 647 1 647 135 1 + 25 1252 1 1252 24 1 24 1253 1 1253 136 1 26 1256 1 1256 25 1 27 1259 1 1259 26 1 + 28 1262 1 1262 27 1 29 1265 1 1265 28 1 30 1268 1 1268 29 1 31 1271 1 1271 30 1 24 1273 1 + 1273 31 1 25 666 1 666 145 1 26 669 1 669 146 1 27 671 1 671 147 1 28 673 1 673 148 1 + 29 675 1 675 149 1 30 677 1 677 150 1 31 679 1 679 151 1 33 1300 1 1300 32 1 32 1301 1 + 1301 152 1 34 1304 1 1304 33 1 35 1307 1 1307 34 1 36 1310 1 1310 35 1 37 1313 1 + 1313 36 1 38 1316 1 1316 37 1 39 1319 1 1319 38 1 32 1321 1 1321 39 1 33 698 1 698 161 1 + 34 701 1 701 162 1 35 703 1 703 163 1 36 705 1 705 164 1 37 707 1 707 165 1 38 709 1 + 709 166 1 39 711 1 711 167 1 41 1348 1 1348 40 1 40 1349 1 1349 168 1 42 1352 1 1352 41 1 + 43 1355 1 1355 42 1 44 1358 1 1358 43 1 45 1361 1 1361 44 1 46 1364 1 1364 45 1 47 1367 1 + 1367 46 1 40 1369 1 1369 47 1 41 730 1 730 177 1 42 733 1 733 178 1; + setAttr ".ed[166:331]" 43 735 1 735 179 1 44 737 1 737 180 1 45 739 1 739 181 1 + 46 741 1 741 182 1 47 743 1 743 183 1 49 1396 1 1396 48 1 48 1397 1 1397 184 1 50 1400 1 + 1400 49 1 51 1403 1 1403 50 1 52 1406 1 1406 51 1 53 1409 1 1409 52 1 54 1412 1 1412 53 1 + 55 1415 1 1415 54 1 48 1417 1 1417 55 1 49 762 1 762 193 1 50 765 1 765 194 1 51 767 1 + 767 195 1 52 769 1 769 196 1 53 771 1 771 197 1 54 773 1 773 198 1 55 775 1 775 199 1 + 57 1444 1 1444 56 1 56 1445 1 1445 200 1 58 1448 1 1448 57 1 59 1451 1 1451 58 1 + 60 1454 1 1454 59 1 61 1457 1 1457 60 1 62 1460 1 1460 61 1 63 1463 1 1463 62 1 56 1465 1 + 1465 63 1 57 794 1 794 209 1 58 797 1 797 210 1 59 799 1 799 211 1 60 801 1 801 212 1 + 61 803 1 803 213 1 62 805 1 805 214 1 63 807 1 807 215 1 65 1492 1 1492 64 1 64 1493 1 + 1493 216 1 66 1496 1 1496 65 1 67 1499 1 1499 66 1 68 1502 1 1502 67 1 69 1505 1 + 1505 68 1 70 1508 1 1508 69 1 71 1511 1 1511 70 1 64 1513 1 1513 71 1 65 826 1 826 225 1 + 66 829 1 829 226 1 67 831 1 831 227 1 68 833 1 833 228 1 69 835 1 835 229 1 70 837 1 + 837 230 1 71 839 1 839 231 1 73 1540 1 1540 72 1 72 1541 1 1541 232 1 74 1544 1 1544 73 1 + 75 1547 1 1547 74 1 76 1550 1 1550 75 1 77 1553 1 1553 76 1 78 1556 1 1556 77 1 79 1559 1 + 1559 78 1 72 1561 1 1561 79 1 73 858 1 858 241 1 74 861 1 861 242 1 75 863 1 863 243 1 + 76 865 1 865 244 1 77 867 1 867 245 1 78 869 1 869 246 1 79 871 1 871 247 1 81 1588 1 + 1588 80 1 80 1589 1 1589 248 1 82 1592 1 1592 81 1 83 1595 1 1595 82 1 84 1598 1 + 1598 83 1 85 1601 1 1601 84 1 86 1604 1 1604 85 1 87 1607 1 1607 86 1 80 1609 1 1609 87 1 + 81 890 1 890 257 1 82 893 1 893 258 1 83 895 1 895 259 1 84 897 1 897 260 1 85 899 1 + 899 261 1; + setAttr ".ed[332:497]" 86 901 1 901 262 1 87 903 1 903 263 1 89 1636 1 1636 88 1 + 88 1637 1 1637 264 1 90 1640 1 1640 89 1 91 1643 1 1643 90 1 92 1646 1 1646 91 1 + 93 1649 1 1649 92 1 94 1652 1 1652 93 1 95 1655 1 1655 94 1 88 1657 1 1657 95 1 89 922 1 + 922 273 1 90 925 1 925 274 1 91 927 1 927 275 1 92 929 1 929 276 1 93 931 1 931 277 1 + 94 933 1 933 278 1 95 935 1 935 279 1 97 578 1 578 96 1 98 579 1 579 97 1 99 580 1 + 580 98 1 100 581 1 581 99 1 101 582 1 582 100 1 102 583 1 583 101 1 103 584 1 584 102 1 + 96 585 1 585 103 1 105 1155 1 1155 9 1 104 1154 1 1154 105 1 106 1159 1 1159 10 1 + 105 1158 1 1158 106 1 107 1162 1 1162 11 1 106 1161 1 1161 107 1 108 1165 1 1165 12 1 + 107 1164 1 1164 108 1 109 1168 1 1168 13 1 108 1167 1 1167 109 1 110 1171 1 1171 14 1 + 109 1170 1 1170 110 1 111 1174 1 1174 15 1 110 1173 1 1173 111 1 111 1176 1 1176 104 1 + 112 604 1 604 8 1 112 603 1 603 113 1 113 606 1 606 114 1 114 608 1 608 115 1 115 610 1 + 610 116 1 116 612 1 612 117 1 117 614 1 614 118 1 118 616 1 616 119 1 119 617 1 617 112 1 + 121 1203 1 1203 17 1 120 1202 1 1202 121 1 122 1207 1 1207 18 1 121 1206 1 1206 122 1 + 123 1210 1 1210 19 1 122 1209 1 1209 123 1 124 1213 1 1213 20 1 123 1212 1 1212 124 1 + 125 1216 1 1216 21 1 124 1215 1 1215 125 1 126 1219 1 1219 22 1 125 1218 1 1218 126 1 + 127 1222 1 1222 23 1 126 1221 1 1221 127 1 127 1224 1 1224 120 1 128 636 1 636 16 1 + 128 635 1 635 129 1 129 638 1 638 130 1 130 640 1 640 131 1 131 642 1 642 132 1 132 644 1 + 644 133 1 133 646 1 646 134 1 134 648 1 648 135 1 135 649 1 649 128 1 137 1251 1 + 1251 25 1 136 1250 1 1250 137 1 138 1255 1 1255 26 1 137 1254 1 1254 138 1 139 1258 1 + 1258 27 1 138 1257 1 1257 139 1 140 1261 1 1261 28 1 139 1260 1 1260 140 1 141 1264 1 + 1264 29 1; + setAttr ".ed[498:663]" 140 1263 1 1263 141 1 142 1267 1 1267 30 1 141 1266 1 + 1266 142 1 143 1270 1 1270 31 1 142 1269 1 1269 143 1 143 1272 1 1272 136 1 144 668 1 + 668 24 1 144 667 1 667 145 1 145 670 1 670 146 1 146 672 1 672 147 1 147 674 1 674 148 1 + 148 676 1 676 149 1 149 678 1 678 150 1 150 680 1 680 151 1 151 681 1 681 144 1 153 1299 1 + 1299 33 1 152 1298 1 1298 153 1 154 1303 1 1303 34 1 153 1302 1 1302 154 1 155 1306 1 + 1306 35 1 154 1305 1 1305 155 1 156 1309 1 1309 36 1 155 1308 1 1308 156 1 157 1312 1 + 1312 37 1 156 1311 1 1311 157 1 158 1315 1 1315 38 1 157 1314 1 1314 158 1 159 1318 1 + 1318 39 1 158 1317 1 1317 159 1 159 1320 1 1320 152 1 160 700 1 700 32 1 160 699 1 + 699 161 1 161 702 1 702 162 1 162 704 1 704 163 1 163 706 1 706 164 1 164 708 1 708 165 1 + 165 710 1 710 166 1 166 712 1 712 167 1 167 713 1 713 160 1 169 1347 1 1347 41 1 + 168 1346 1 1346 169 1 170 1351 1 1351 42 1 169 1350 1 1350 170 1 171 1354 1 1354 43 1 + 170 1353 1 1353 171 1 172 1357 1 1357 44 1 171 1356 1 1356 172 1 173 1360 1 1360 45 1 + 172 1359 1 1359 173 1 174 1363 1 1363 46 1 173 1362 1 1362 174 1 175 1366 1 1366 47 1 + 174 1365 1 1365 175 1 175 1368 1 1368 168 1 176 732 1 732 40 1 176 731 1 731 177 1 + 177 734 1 734 178 1 178 736 1 736 179 1 179 738 1 738 180 1 180 740 1 740 181 1 181 742 1 + 742 182 1 182 744 1 744 183 1 183 745 1 745 176 1 185 1395 1 1395 49 1 184 1394 1 + 1394 185 1 186 1399 1 1399 50 1 185 1398 1 1398 186 1 187 1402 1 1402 51 1 186 1401 1 + 1401 187 1 188 1405 1 1405 52 1 187 1404 1 1404 188 1 189 1408 1 1408 53 1 188 1407 1 + 1407 189 1 190 1411 1 1411 54 1 189 1410 1 1410 190 1 191 1414 1 1414 55 1 190 1413 1 + 1413 191 1 191 1416 1 1416 184 1 192 764 1 764 48 1 192 763 1 763 193 1 193 766 1 + 766 194 1 194 768 1 768 195 1 195 770 1 770 196 1; + setAttr ".ed[664:829]" 196 772 1 772 197 1 197 774 1 774 198 1 198 776 1 776 199 1 + 199 777 1 777 192 1 201 1443 1 1443 57 1 200 1442 1 1442 201 1 202 1447 1 1447 58 1 + 201 1446 1 1446 202 1 203 1450 1 1450 59 1 202 1449 1 1449 203 1 204 1453 1 1453 60 1 + 203 1452 1 1452 204 1 205 1456 1 1456 61 1 204 1455 1 1455 205 1 206 1459 1 1459 62 1 + 205 1458 1 1458 206 1 207 1462 1 1462 63 1 206 1461 1 1461 207 1 207 1464 1 1464 200 1 + 208 796 1 796 56 1 208 795 1 795 209 1 209 798 1 798 210 1 210 800 1 800 211 1 211 802 1 + 802 212 1 212 804 1 804 213 1 213 806 1 806 214 1 214 808 1 808 215 1 215 809 1 809 208 1 + 217 1491 1 1491 65 1 216 1490 1 1490 217 1 218 1495 1 1495 66 1 217 1494 1 1494 218 1 + 219 1498 1 1498 67 1 218 1497 1 1497 219 1 220 1501 1 1501 68 1 219 1500 1 1500 220 1 + 221 1504 1 1504 69 1 220 1503 1 1503 221 1 222 1507 1 1507 70 1 221 1506 1 1506 222 1 + 223 1510 1 1510 71 1 222 1509 1 1509 223 1 223 1512 1 1512 216 1 224 828 1 828 64 1 + 224 827 1 827 225 1 225 830 1 830 226 1 226 832 1 832 227 1 227 834 1 834 228 1 228 836 1 + 836 229 1 229 838 1 838 230 1 230 840 1 840 231 1 231 841 1 841 224 1 233 1539 1 + 1539 73 1 232 1538 1 1538 233 1 234 1543 1 1543 74 1 233 1542 1 1542 234 1 235 1546 1 + 1546 75 1 234 1545 1 1545 235 1 236 1549 1 1549 76 1 235 1548 1 1548 236 1 237 1552 1 + 1552 77 1 236 1551 1 1551 237 1 238 1555 1 1555 78 1 237 1554 1 1554 238 1 239 1558 1 + 1558 79 1 238 1557 1 1557 239 1 239 1560 1 1560 232 1 240 860 1 860 72 1 240 859 1 + 859 241 1 241 862 1 862 242 1 242 864 1 864 243 1 243 866 1 866 244 1 244 868 1 868 245 1 + 245 870 1 870 246 1 246 872 1 872 247 1 247 873 1 873 240 1 249 1587 1 1587 81 1 + 248 1586 1 1586 249 1 250 1591 1 1591 82 1 249 1590 1 1590 250 1 251 1594 1 1594 83 1 + 250 1593 1 1593 251 1 252 1597 1 1597 84 1; + setAttr ".ed[830:995]" 251 1596 1 1596 252 1 253 1600 1 1600 85 1 252 1599 1 + 1599 253 1 254 1603 1 1603 86 1 253 1602 1 1602 254 1 255 1606 1 1606 87 1 254 1605 1 + 1605 255 1 255 1608 1 1608 248 1 256 892 1 892 80 1 256 891 1 891 257 1 257 894 1 + 894 258 1 258 896 1 896 259 1 259 898 1 898 260 1 260 900 1 900 261 1 261 902 1 902 262 1 + 262 904 1 904 263 1 263 905 1 905 256 1 265 1635 1 1635 89 1 264 1634 1 1634 265 1 + 266 1639 1 1639 90 1 265 1638 1 1638 266 1 267 1642 1 1642 91 1 266 1641 1 1641 267 1 + 268 1645 1 1645 92 1 267 1644 1 1644 268 1 269 1648 1 1648 93 1 268 1647 1 1647 269 1 + 270 1651 1 1651 94 1 269 1650 1 1650 270 1 271 1654 1 1654 95 1 270 1653 1 1653 271 1 + 271 1656 1 1656 264 1 272 924 1 924 88 1 272 923 1 923 273 1 273 926 1 926 274 1 + 274 928 1 928 275 1 275 930 1 930 276 1 276 932 1 932 277 1 277 934 1 934 278 1 278 936 1 + 936 279 1 279 937 1 937 272 1 0 939 1 939 280 1 1 938 1 938 281 1 280 1130 1 1130 281 1 + 281 1131 1 1131 282 1 282 1132 1 1132 283 1 283 1133 1 1133 280 1 2 940 1 940 284 1 + 281 1134 1 1134 284 1 284 1135 1 1135 285 1 285 1136 1 1136 282 1 3 941 1 941 286 1 + 284 1137 1 1137 286 1 286 1138 1 1138 287 1 287 1139 1 1139 285 1 4 942 1 942 288 1 + 286 1140 1 1140 288 1 288 1141 1 1141 289 1 289 1142 1 1142 287 1 5 943 1 943 290 1 + 288 1143 1 1143 290 1 290 1144 1 1144 291 1 291 1145 1 1145 289 1 6 944 1 944 292 1 + 290 1146 1 1146 292 1 292 1147 1 1147 293 1 293 1148 1 1148 291 1 7 945 1 945 294 1 + 292 1149 1 1149 294 1 294 1150 1 1150 295 1 295 1151 1 1151 293 1 294 1152 1 1152 280 1 + 283 1153 1 1153 295 1 105 947 1 947 296 1 282 586 1 586 296 1 104 946 1 946 297 1 + 297 587 1 587 296 1 297 588 1 588 283 1 106 948 1 948 298 1 285 589 1 589 298 1 296 590 1 + 590 298 1 107 949 1 949 299 1 287 591 1 591 299 1; + setAttr ".ed[996:1161]" 298 592 1 592 299 1 108 950 1 950 300 1 289 593 1 593 300 1 + 299 594 1 594 300 1 109 951 1 951 301 1 291 595 1 595 301 1 300 596 1 596 301 1 110 952 1 + 952 302 1 293 597 1 597 302 1 301 598 1 598 302 1 111 953 1 953 303 1 295 599 1 599 303 1 + 302 600 1 600 303 1 303 601 1 601 297 1 112 955 1 955 304 1 113 954 1 954 305 1 304 1178 1 + 1178 305 1 305 1179 1 1179 306 1 306 1180 1 1180 307 1 307 1181 1 1181 304 1 114 956 1 + 956 308 1 305 1182 1 1182 308 1 308 1183 1 1183 309 1 309 1184 1 1184 306 1 115 957 1 + 957 310 1 308 1185 1 1185 310 1 310 1186 1 1186 311 1 311 1187 1 1187 309 1 116 958 1 + 958 312 1 310 1188 1 1188 312 1 312 1189 1 1189 313 1 313 1190 1 1190 311 1 117 959 1 + 959 314 1 312 1191 1 1191 314 1 314 1192 1 1192 315 1 315 1193 1 1193 313 1 118 960 1 + 960 316 1 314 1194 1 1194 316 1 316 1195 1 1195 317 1 317 1196 1 1196 315 1 119 961 1 + 961 318 1 316 1197 1 1197 318 1 318 1198 1 1198 319 1 319 1199 1 1199 317 1 318 1200 1 + 1200 304 1 307 1201 1 1201 319 1 121 963 1 963 320 1 306 618 1 618 320 1 120 962 1 + 962 321 1 321 619 1 619 320 1 321 620 1 620 307 1 122 964 1 964 322 1 309 621 1 621 322 1 + 320 622 1 622 322 1 123 965 1 965 323 1 311 623 1 623 323 1 322 624 1 624 323 1 124 966 1 + 966 324 1 313 625 1 625 324 1 323 626 1 626 324 1 125 967 1 967 325 1 315 627 1 627 325 1 + 324 628 1 628 325 1 126 968 1 968 326 1 317 629 1 629 326 1 325 630 1 630 326 1 127 969 1 + 969 327 1 319 631 1 631 327 1 326 632 1 632 327 1 327 633 1 633 321 1 128 971 1 971 328 1 + 129 970 1 970 329 1 328 1226 1 1226 329 1 329 1227 1 1227 330 1 330 1228 1 1228 331 1 + 331 1229 1 1229 328 1 130 972 1 972 332 1 329 1230 1 1230 332 1 332 1231 1 1231 333 1 + 333 1232 1 1232 330 1 131 973 1 973 334 1 332 1233 1 1233 334 1 334 1234 1 1234 335 1; + setAttr ".ed[1162:1327]" 335 1235 1 1235 333 1 132 974 1 974 336 1 334 1236 1 + 1236 336 1 336 1237 1 1237 337 1 337 1238 1 1238 335 1 133 975 1 975 338 1 336 1239 1 + 1239 338 1 338 1240 1 1240 339 1 339 1241 1 1241 337 1 134 976 1 976 340 1 338 1242 1 + 1242 340 1 340 1243 1 1243 341 1 341 1244 1 1244 339 1 135 977 1 977 342 1 340 1245 1 + 1245 342 1 342 1246 1 1246 343 1 343 1247 1 1247 341 1 342 1248 1 1248 328 1 331 1249 1 + 1249 343 1 137 979 1 979 344 1 330 650 1 650 344 1 136 978 1 978 345 1 345 651 1 + 651 344 1 345 652 1 652 331 1 138 980 1 980 346 1 333 653 1 653 346 1 344 654 1 654 346 1 + 139 981 1 981 347 1 335 655 1 655 347 1 346 656 1 656 347 1 140 982 1 982 348 1 337 657 1 + 657 348 1 347 658 1 658 348 1 141 983 1 983 349 1 339 659 1 659 349 1 348 660 1 660 349 1 + 142 984 1 984 350 1 341 661 1 661 350 1 349 662 1 662 350 1 143 985 1 985 351 1 343 663 1 + 663 351 1 350 664 1 664 351 1 351 665 1 665 345 1 144 987 1 987 352 1 145 986 1 986 353 1 + 352 1274 1 1274 353 1 353 1275 1 1275 354 1 354 1276 1 1276 355 1 355 1277 1 1277 352 1 + 146 988 1 988 356 1 353 1278 1 1278 356 1 356 1279 1 1279 357 1 357 1280 1 1280 354 1 + 147 989 1 989 358 1 356 1281 1 1281 358 1 358 1282 1 1282 359 1 359 1283 1 1283 357 1 + 148 990 1 990 360 1 358 1284 1 1284 360 1 360 1285 1 1285 361 1 361 1286 1 1286 359 1 + 149 991 1 991 362 1 360 1287 1 1287 362 1 362 1288 1 1288 363 1 363 1289 1 1289 361 1 + 150 992 1 992 364 1 362 1290 1 1290 364 1 364 1291 1 1291 365 1 365 1292 1 1292 363 1 + 151 993 1 993 366 1 364 1293 1 1293 366 1 366 1294 1 1294 367 1 367 1295 1 1295 365 1 + 366 1296 1 1296 352 1 355 1297 1 1297 367 1 153 995 1 995 368 1 354 682 1 682 368 1 + 152 994 1 994 369 1 369 683 1 683 368 1 369 684 1 684 355 1 154 996 1 996 370 1 357 685 1 + 685 370 1 368 686 1 686 370 1; + setAttr ".ed[1328:1493]" 155 997 1 997 371 1 359 687 1 687 371 1 370 688 1 688 371 1 + 156 998 1 998 372 1 361 689 1 689 372 1 371 690 1 690 372 1 157 999 1 999 373 1 363 691 1 + 691 373 1 372 692 1 692 373 1 158 1000 1 1000 374 1 365 693 1 693 374 1 373 694 1 + 694 374 1 159 1001 1 1001 375 1 367 695 1 695 375 1 374 696 1 696 375 1 375 697 1 + 697 369 1 160 1003 1 1003 376 1 161 1002 1 1002 377 1 376 1322 1 1322 377 1 377 1323 1 + 1323 378 1 378 1324 1 1324 379 1 379 1325 1 1325 376 1 162 1004 1 1004 380 1 377 1326 1 + 1326 380 1 380 1327 1 1327 381 1 381 1328 1 1328 378 1 163 1005 1 1005 382 1 380 1329 1 + 1329 382 1 382 1330 1 1330 383 1 383 1331 1 1331 381 1 164 1006 1 1006 384 1 382 1332 1 + 1332 384 1 384 1333 1 1333 385 1 385 1334 1 1334 383 1 165 1007 1 1007 386 1 384 1335 1 + 1335 386 1 386 1336 1 1336 387 1 387 1337 1 1337 385 1 166 1008 1 1008 388 1 386 1338 1 + 1338 388 1 388 1339 1 1339 389 1 389 1340 1 1340 387 1 167 1009 1 1009 390 1 388 1341 1 + 1341 390 1 390 1342 1 1342 391 1 391 1343 1 1343 389 1 390 1344 1 1344 376 1 379 1345 1 + 1345 391 1 169 1011 1 1011 392 1 378 714 1 714 392 1 168 1010 1 1010 393 1 393 715 1 + 715 392 1 393 716 1 716 379 1 170 1012 1 1012 394 1 381 717 1 717 394 1 392 718 1 + 718 394 1 171 1013 1 1013 395 1 383 719 1 719 395 1 394 720 1 720 395 1 172 1014 1 + 1014 396 1 385 721 1 721 396 1 395 722 1 722 396 1 173 1015 1 1015 397 1 387 723 1 + 723 397 1 396 724 1 724 397 1 174 1016 1 1016 398 1 389 725 1 725 398 1 397 726 1 + 726 398 1 175 1017 1 1017 399 1 391 727 1 727 399 1 398 728 1 728 399 1 399 729 1 + 729 393 1 176 1019 1 1019 400 1 177 1018 1 1018 401 1 400 1370 1 1370 401 1 401 1371 1 + 1371 402 1 402 1372 1 1372 403 1 403 1373 1 1373 400 1 178 1020 1 1020 404 1 401 1374 1 + 1374 404 1 404 1375 1 1375 405 1 405 1376 1 1376 402 1 179 1021 1 1021 406 1; + setAttr ".ed[1494:1659]" 404 1377 1 1377 406 1 406 1378 1 1378 407 1 407 1379 1 + 1379 405 1 180 1022 1 1022 408 1 406 1380 1 1380 408 1 408 1381 1 1381 409 1 409 1382 1 + 1382 407 1 181 1023 1 1023 410 1 408 1383 1 1383 410 1 410 1384 1 1384 411 1 411 1385 1 + 1385 409 1 182 1024 1 1024 412 1 410 1386 1 1386 412 1 412 1387 1 1387 413 1 413 1388 1 + 1388 411 1 183 1025 1 1025 414 1 412 1389 1 1389 414 1 414 1390 1 1390 415 1 415 1391 1 + 1391 413 1 414 1392 1 1392 400 1 403 1393 1 1393 415 1 185 1027 1 1027 416 1 402 746 1 + 746 416 1 184 1026 1 1026 417 1 417 747 1 747 416 1 417 748 1 748 403 1 186 1028 1 + 1028 418 1 405 749 1 749 418 1 416 750 1 750 418 1 187 1029 1 1029 419 1 407 751 1 + 751 419 1 418 752 1 752 419 1 188 1030 1 1030 420 1 409 753 1 753 420 1 419 754 1 + 754 420 1 189 1031 1 1031 421 1 411 755 1 755 421 1 420 756 1 756 421 1 190 1032 1 + 1032 422 1 413 757 1 757 422 1 421 758 1 758 422 1 191 1033 1 1033 423 1 415 759 1 + 759 423 1 422 760 1 760 423 1 423 761 1 761 417 1 192 1035 1 1035 424 1 193 1034 1 + 1034 425 1 424 1418 1 1418 425 1 425 1419 1 1419 426 1 426 1420 1 1420 427 1 427 1421 1 + 1421 424 1 194 1036 1 1036 428 1 425 1422 1 1422 428 1 428 1423 1 1423 429 1 429 1424 1 + 1424 426 1 195 1037 1 1037 430 1 428 1425 1 1425 430 1 430 1426 1 1426 431 1 431 1427 1 + 1427 429 1 196 1038 1 1038 432 1 430 1428 1 1428 432 1 432 1429 1 1429 433 1 433 1430 1 + 1430 431 1 197 1039 1 1039 434 1 432 1431 1 1431 434 1 434 1432 1 1432 435 1 435 1433 1 + 1433 433 1 198 1040 1 1040 436 1 434 1434 1 1434 436 1 436 1435 1 1435 437 1 437 1436 1 + 1436 435 1 199 1041 1 1041 438 1 436 1437 1 1437 438 1 438 1438 1 1438 439 1 439 1439 1 + 1439 437 1 438 1440 1 1440 424 1 427 1441 1 1441 439 1 201 1043 1 1043 440 1 426 778 1 + 778 440 1 200 1042 1 1042 441 1 441 779 1 779 440 1 441 780 1 780 427 1 202 1044 1 + 1044 442 1; + setAttr ".ed[1660:1825]" 429 781 1 781 442 1 440 782 1 782 442 1 203 1045 1 1045 443 1 + 431 783 1 783 443 1 442 784 1 784 443 1 204 1046 1 1046 444 1 433 785 1 785 444 1 + 443 786 1 786 444 1 205 1047 1 1047 445 1 435 787 1 787 445 1 444 788 1 788 445 1 + 206 1048 1 1048 446 1 437 789 1 789 446 1 445 790 1 790 446 1 207 1049 1 1049 447 1 + 439 791 1 791 447 1 446 792 1 792 447 1 447 793 1 793 441 1 208 1051 1 1051 448 1 + 209 1050 1 1050 449 1 448 1466 1 1466 449 1 449 1467 1 1467 450 1 450 1468 1 1468 451 1 + 451 1469 1 1469 448 1 210 1052 1 1052 452 1 449 1470 1 1470 452 1 452 1471 1 1471 453 1 + 453 1472 1 1472 450 1 211 1053 1 1053 454 1 452 1473 1 1473 454 1 454 1474 1 1474 455 1 + 455 1475 1 1475 453 1 212 1054 1 1054 456 1 454 1476 1 1476 456 1 456 1477 1 1477 457 1 + 457 1478 1 1478 455 1 213 1055 1 1055 458 1 456 1479 1 1479 458 1 458 1480 1 1480 459 1 + 459 1481 1 1481 457 1 214 1056 1 1056 460 1 458 1482 1 1482 460 1 460 1483 1 1483 461 1 + 461 1484 1 1484 459 1 215 1057 1 1057 462 1 460 1485 1 1485 462 1 462 1486 1 1486 463 1 + 463 1487 1 1487 461 1 462 1488 1 1488 448 1 451 1489 1 1489 463 1 217 1059 1 1059 464 1 + 450 810 1 810 464 1 216 1058 1 1058 465 1 465 811 1 811 464 1 465 812 1 812 451 1 + 218 1060 1 1060 466 1 453 813 1 813 466 1 464 814 1 814 466 1 219 1061 1 1061 467 1 + 455 815 1 815 467 1 466 816 1 816 467 1 220 1062 1 1062 468 1 457 817 1 817 468 1 + 467 818 1 818 468 1 221 1063 1 1063 469 1 459 819 1 819 469 1 468 820 1 820 469 1 + 222 1064 1 1064 470 1 461 821 1 821 470 1 469 822 1 822 470 1 223 1065 1 1065 471 1 + 463 823 1 823 471 1 470 824 1 824 471 1 471 825 1 825 465 1 224 1067 1 1067 472 1 + 225 1066 1 1066 473 1 472 1514 1 1514 473 1 473 1515 1 1515 474 1 474 1516 1 1516 475 1 + 475 1517 1 1517 472 1 226 1068 1 1068 476 1 473 1518 1 1518 476 1 476 1519 1 1519 477 1; + setAttr ".ed[1826:1991]" 477 1520 1 1520 474 1 227 1069 1 1069 478 1 476 1521 1 + 1521 478 1 478 1522 1 1522 479 1 479 1523 1 1523 477 1 228 1070 1 1070 480 1 478 1524 1 + 1524 480 1 480 1525 1 1525 481 1 481 1526 1 1526 479 1 229 1071 1 1071 482 1 480 1527 1 + 1527 482 1 482 1528 1 1528 483 1 483 1529 1 1529 481 1 230 1072 1 1072 484 1 482 1530 1 + 1530 484 1 484 1531 1 1531 485 1 485 1532 1 1532 483 1 231 1073 1 1073 486 1 484 1533 1 + 1533 486 1 486 1534 1 1534 487 1 487 1535 1 1535 485 1 486 1536 1 1536 472 1 475 1537 1 + 1537 487 1 233 1075 1 1075 488 1 474 842 1 842 488 1 232 1074 1 1074 489 1 489 843 1 + 843 488 1 489 844 1 844 475 1 234 1076 1 1076 490 1 477 845 1 845 490 1 488 846 1 + 846 490 1 235 1077 1 1077 491 1 479 847 1 847 491 1 490 848 1 848 491 1 236 1078 1 + 1078 492 1 481 849 1 849 492 1 491 850 1 850 492 1 237 1079 1 1079 493 1 483 851 1 + 851 493 1 492 852 1 852 493 1 238 1080 1 1080 494 1 485 853 1 853 494 1 493 854 1 + 854 494 1 239 1081 1 1081 495 1 487 855 1 855 495 1 494 856 1 856 495 1 495 857 1 + 857 489 1 240 1083 1 1083 496 1 241 1082 1 1082 497 1 496 1562 1 1562 497 1 497 1563 1 + 1563 498 1 498 1564 1 1564 499 1 499 1565 1 1565 496 1 242 1084 1 1084 500 1 497 1566 1 + 1566 500 1 500 1567 1 1567 501 1 501 1568 1 1568 498 1 243 1085 1 1085 502 1 500 1569 1 + 1569 502 1 502 1570 1 1570 503 1 503 1571 1 1571 501 1 244 1086 1 1086 504 1 502 1572 1 + 1572 504 1 504 1573 1 1573 505 1 505 1574 1 1574 503 1 245 1087 1 1087 506 1 504 1575 1 + 1575 506 1 506 1576 1 1576 507 1 507 1577 1 1577 505 1 246 1088 1 1088 508 1 506 1578 1 + 1578 508 1 508 1579 1 1579 509 1 509 1580 1 1580 507 1 247 1089 1 1089 510 1 508 1581 1 + 1581 510 1 510 1582 1 1582 511 1 511 1583 1 1583 509 1 510 1584 1 1584 496 1 499 1585 1 + 1585 511 1 249 1091 1 1091 512 1 498 874 1 874 512 1 248 1090 1 1090 513 1 513 875 1 + 875 512 1; + setAttr ".ed[1992:2157]" 513 876 1 876 499 1 250 1092 1 1092 514 1 501 877 1 + 877 514 1 512 878 1 878 514 1 251 1093 1 1093 515 1 503 879 1 879 515 1 514 880 1 + 880 515 1 252 1094 1 1094 516 1 505 881 1 881 516 1 515 882 1 882 516 1 253 1095 1 + 1095 517 1 507 883 1 883 517 1 516 884 1 884 517 1 254 1096 1 1096 518 1 509 885 1 + 885 518 1 517 886 1 886 518 1 255 1097 1 1097 519 1 511 887 1 887 519 1 518 888 1 + 888 519 1 519 889 1 889 513 1 256 1099 1 1099 520 1 257 1098 1 1098 521 1 520 1610 1 + 1610 521 1 521 1611 1 1611 522 1 522 1612 1 1612 523 1 523 1613 1 1613 520 1 258 1100 1 + 1100 524 1 521 1614 1 1614 524 1 524 1615 1 1615 525 1 525 1616 1 1616 522 1 259 1101 1 + 1101 526 1 524 1617 1 1617 526 1 526 1618 1 1618 527 1 527 1619 1 1619 525 1 260 1102 1 + 1102 528 1 526 1620 1 1620 528 1 528 1621 1 1621 529 1 529 1622 1 1622 527 1 261 1103 1 + 1103 530 1 528 1623 1 1623 530 1 530 1624 1 1624 531 1 531 1625 1 1625 529 1 262 1104 1 + 1104 532 1 530 1626 1 1626 532 1 532 1627 1 1627 533 1 533 1628 1 1628 531 1 263 1105 1 + 1105 534 1 532 1629 1 1629 534 1 534 1630 1 1630 535 1 535 1631 1 1631 533 1 534 1632 1 + 1632 520 1 523 1633 1 1633 535 1 265 1107 1 1107 536 1 522 906 1 906 536 1 264 1106 1 + 1106 537 1 537 907 1 907 536 1 537 908 1 908 523 1 266 1108 1 1108 538 1 525 909 1 + 909 538 1 536 910 1 910 538 1 267 1109 1 1109 539 1 527 911 1 911 539 1 538 912 1 + 912 539 1 268 1110 1 1110 540 1 529 913 1 913 540 1 539 914 1 914 540 1 269 1111 1 + 1111 541 1 531 915 1 915 541 1 540 916 1 916 541 1 270 1112 1 1112 542 1 533 917 1 + 917 542 1 541 918 1 918 542 1 271 1113 1 1113 543 1 535 919 1 919 543 1 542 920 1 + 920 543 1 543 921 1 921 537 1 272 1115 1 1115 544 1 273 1114 1 1114 545 1 544 1658 1 + 1658 545 1 545 1659 1 1659 546 1 546 1660 1 1660 547 1 547 1661 1 1661 544 1 274 1116 1 + 1116 548 1; + setAttr ".ed[2158:2323]" 545 1662 1 1662 548 1 548 1663 1 1663 549 1 549 1664 1 + 1664 546 1 275 1117 1 1117 550 1 548 1665 1 1665 550 1 550 1666 1 1666 551 1 551 1667 1 + 1667 549 1 276 1118 1 1118 552 1 550 1668 1 1668 552 1 552 1669 1 1669 553 1 553 1670 1 + 1670 551 1 277 1119 1 1119 554 1 552 1671 1 1671 554 1 554 1672 1 1672 555 1 555 1673 1 + 1673 553 1 278 1120 1 1120 556 1 554 1674 1 1674 556 1 556 1675 1 1675 557 1 557 1676 1 + 1676 555 1 279 1121 1 1121 558 1 556 1677 1 1677 558 1 558 1678 1 1678 559 1 559 1679 1 + 1679 557 1 558 1680 1 1680 544 1 547 1681 1 1681 559 1 97 1123 1 1123 560 1 546 1682 1 + 1682 560 1 96 1122 1 1122 561 1 560 1683 1 1683 561 1 561 1684 1 1684 547 1 98 1124 1 + 1124 562 1 549 1685 1 1685 562 1 562 1686 1 1686 560 1 99 1125 1 1125 563 1 551 1687 1 + 1687 563 1 563 1688 1 1688 562 1 100 1126 1 1126 564 1 553 1689 1 1689 564 1 564 1690 1 + 1690 563 1 101 1127 1 1127 565 1 555 1691 1 1691 565 1 565 1692 1 1692 564 1 102 1128 1 + 1128 566 1 557 1693 1 1693 566 1 566 1694 1 1694 565 1 103 1129 1 1129 567 1 559 1695 1 + 1695 567 1 567 568 1 568 566 1 561 569 1 569 567 1 1130 1696 1 1696 1133 1 1131 1696 1 + 1132 1696 1 1134 1697 1 1697 1131 1 1135 1697 1 1136 1697 1 1137 1698 1 1698 1135 1 + 1138 1698 1 1139 1698 1 1140 1699 1 1699 1138 1 1141 1699 1 1142 1699 1 1143 1700 1 + 1700 1141 1 1144 1700 1 1145 1700 1 1146 1701 1 1701 1144 1 1147 1701 1 1148 1701 1 + 1149 1702 1 1702 1147 1 1150 1702 1 1151 1702 1 1152 1703 1 1703 1150 1 1133 1703 1 + 1153 1703 1 1154 1704 1 1704 1157 1 1155 1704 1 1156 1704 1 1158 1705 1 1705 1155 1 + 1159 1705 1 1160 1705 1 1161 1706 1 1706 1159 1 1162 1706 1 1163 1706 1 1164 1707 1 + 1707 1162 1 1165 1707 1 1166 1707 1 1167 1708 1 1708 1165 1 1168 1708 1 1169 1708 1 + 1170 1709 1 1709 1168 1 1171 1709 1 1172 1709 1 1173 1710 1 1710 1171 1 1174 1710 1 + 1175 1710 1 1176 1711 1 1711 1174 1 1157 1711 1 1177 1711 1 1178 1712 1 1712 1181 1 + 1179 1712 1 1180 1712 1; + setAttr ".ed[2324:2489]" 1182 1713 1 1713 1179 1 1183 1713 1 1184 1713 1 1185 1714 1 + 1714 1183 1 1186 1714 1 1187 1714 1 1188 1715 1 1715 1186 1 1189 1715 1 1190 1715 1 + 1191 1716 1 1716 1189 1 1192 1716 1 1193 1716 1 1194 1717 1 1717 1192 1 1195 1717 1 + 1196 1717 1 1197 1718 1 1718 1195 1 1198 1718 1 1199 1718 1 1200 1719 1 1719 1198 1 + 1181 1719 1 1201 1719 1 1202 1720 1 1720 1205 1 1203 1720 1 1204 1720 1 1206 1721 1 + 1721 1203 1 1207 1721 1 1208 1721 1 1209 1722 1 1722 1207 1 1210 1722 1 1211 1722 1 + 1212 1723 1 1723 1210 1 1213 1723 1 1214 1723 1 1215 1724 1 1724 1213 1 1216 1724 1 + 1217 1724 1 1218 1725 1 1725 1216 1 1219 1725 1 1220 1725 1 1221 1726 1 1726 1219 1 + 1222 1726 1 1223 1726 1 1224 1727 1 1727 1222 1 1205 1727 1 1225 1727 1 1226 1728 1 + 1728 1229 1 1227 1728 1 1228 1728 1 1230 1729 1 1729 1227 1 1231 1729 1 1232 1729 1 + 1233 1730 1 1730 1231 1 1234 1730 1 1235 1730 1 1236 1731 1 1731 1234 1 1237 1731 1 + 1238 1731 1 1239 1732 1 1732 1237 1 1240 1732 1 1241 1732 1 1242 1733 1 1733 1240 1 + 1243 1733 1 1244 1733 1 1245 1734 1 1734 1243 1 1246 1734 1 1247 1734 1 1248 1735 1 + 1735 1246 1 1229 1735 1 1249 1735 1 1250 1736 1 1736 1253 1 1251 1736 1 1252 1736 1 + 1254 1737 1 1737 1251 1 1255 1737 1 1256 1737 1 1257 1738 1 1738 1255 1 1258 1738 1 + 1259 1738 1 1260 1739 1 1739 1258 1 1261 1739 1 1262 1739 1 1263 1740 1 1740 1261 1 + 1264 1740 1 1265 1740 1 1266 1741 1 1741 1264 1 1267 1741 1 1268 1741 1 1269 1742 1 + 1742 1267 1 1270 1742 1 1271 1742 1 1272 1743 1 1743 1270 1 1253 1743 1 1273 1743 1 + 1274 1744 1 1744 1277 1 1275 1744 1 1276 1744 1 1278 1745 1 1745 1275 1 1279 1745 1 + 1280 1745 1 1281 1746 1 1746 1279 1 1282 1746 1 1283 1746 1 1284 1747 1 1747 1282 1 + 1285 1747 1 1286 1747 1 1287 1748 1 1748 1285 1 1288 1748 1 1289 1748 1 1290 1749 1 + 1749 1288 1 1291 1749 1 1292 1749 1 1293 1750 1 1750 1291 1 1294 1750 1 1295 1750 1 + 1296 1751 1 1751 1294 1 1277 1751 1 1297 1751 1 1298 1752 1 1752 1301 1 1299 1752 1 + 1300 1752 1 1302 1753 1 1753 1299 1 1303 1753 1 1304 1753 1 1305 1754 1 1754 1303 1; + setAttr ".ed[2490:2655]" 1306 1754 1 1307 1754 1 1308 1755 1 1755 1306 1 1309 1755 1 + 1310 1755 1 1311 1756 1 1756 1309 1 1312 1756 1 1313 1756 1 1314 1757 1 1757 1312 1 + 1315 1757 1 1316 1757 1 1317 1758 1 1758 1315 1 1318 1758 1 1319 1758 1 1320 1759 1 + 1759 1318 1 1301 1759 1 1321 1759 1 1322 1760 1 1760 1325 1 1323 1760 1 1324 1760 1 + 1326 1761 1 1761 1323 1 1327 1761 1 1328 1761 1 1329 1762 1 1762 1327 1 1330 1762 1 + 1331 1762 1 1332 1763 1 1763 1330 1 1333 1763 1 1334 1763 1 1335 1764 1 1764 1333 1 + 1336 1764 1 1337 1764 1 1338 1765 1 1765 1336 1 1339 1765 1 1340 1765 1 1341 1766 1 + 1766 1339 1 1342 1766 1 1343 1766 1 1344 1767 1 1767 1342 1 1325 1767 1 1345 1767 1 + 1346 1768 1 1768 1349 1 1347 1768 1 1348 1768 1 1350 1769 1 1769 1347 1 1351 1769 1 + 1352 1769 1 1353 1770 1 1770 1351 1 1354 1770 1 1355 1770 1 1356 1771 1 1771 1354 1 + 1357 1771 1 1358 1771 1 1359 1772 1 1772 1357 1 1360 1772 1 1361 1772 1 1362 1773 1 + 1773 1360 1 1363 1773 1 1364 1773 1 1365 1774 1 1774 1363 1 1366 1774 1 1367 1774 1 + 1368 1775 1 1775 1366 1 1349 1775 1 1369 1775 1 1370 1776 1 1776 1373 1 1371 1776 1 + 1372 1776 1 1374 1777 1 1777 1371 1 1375 1777 1 1376 1777 1 1377 1778 1 1778 1375 1 + 1378 1778 1 1379 1778 1 1380 1779 1 1779 1378 1 1381 1779 1 1382 1779 1 1383 1780 1 + 1780 1381 1 1384 1780 1 1385 1780 1 1386 1781 1 1781 1384 1 1387 1781 1 1388 1781 1 + 1389 1782 1 1782 1387 1 1390 1782 1 1391 1782 1 1392 1783 1 1783 1390 1 1373 1783 1 + 1393 1783 1 1394 1784 1 1784 1397 1 1395 1784 1 1396 1784 1 1398 1785 1 1785 1395 1 + 1399 1785 1 1400 1785 1 1401 1786 1 1786 1399 1 1402 1786 1 1403 1786 1 1404 1787 1 + 1787 1402 1 1405 1787 1 1406 1787 1 1407 1788 1 1788 1405 1 1408 1788 1 1409 1788 1 + 1410 1789 1 1789 1408 1 1411 1789 1 1412 1789 1 1413 1790 1 1790 1411 1 1414 1790 1 + 1415 1790 1 1416 1791 1 1791 1414 1 1397 1791 1 1417 1791 1 1418 1792 1 1792 1421 1 + 1419 1792 1 1420 1792 1 1422 1793 1 1793 1419 1 1423 1793 1 1424 1793 1 1425 1794 1 + 1794 1423 1 1426 1794 1 1427 1794 1 1428 1795 1 1795 1426 1 1429 1795 1 1430 1795 1; + setAttr ".ed[2656:2821]" 1431 1796 1 1796 1429 1 1432 1796 1 1433 1796 1 1434 1797 1 + 1797 1432 1 1435 1797 1 1436 1797 1 1437 1798 1 1798 1435 1 1438 1798 1 1439 1798 1 + 1440 1799 1 1799 1438 1 1421 1799 1 1441 1799 1 1442 1800 1 1800 1445 1 1443 1800 1 + 1444 1800 1 1446 1801 1 1801 1443 1 1447 1801 1 1448 1801 1 1449 1802 1 1802 1447 1 + 1450 1802 1 1451 1802 1 1452 1803 1 1803 1450 1 1453 1803 1 1454 1803 1 1455 1804 1 + 1804 1453 1 1456 1804 1 1457 1804 1 1458 1805 1 1805 1456 1 1459 1805 1 1460 1805 1 + 1461 1806 1 1806 1459 1 1462 1806 1 1463 1806 1 1464 1807 1 1807 1462 1 1445 1807 1 + 1465 1807 1 1466 1808 1 1808 1469 1 1467 1808 1 1468 1808 1 1470 1809 1 1809 1467 1 + 1471 1809 1 1472 1809 1 1473 1810 1 1810 1471 1 1474 1810 1 1475 1810 1 1476 1811 1 + 1811 1474 1 1477 1811 1 1478 1811 1 1479 1812 1 1812 1477 1 1480 1812 1 1481 1812 1 + 1482 1813 1 1813 1480 1 1483 1813 1 1484 1813 1 1485 1814 1 1814 1483 1 1486 1814 1 + 1487 1814 1 1488 1815 1 1815 1486 1 1469 1815 1 1489 1815 1 1490 1816 1 1816 1493 1 + 1491 1816 1 1492 1816 1 1494 1817 1 1817 1491 1 1495 1817 1 1496 1817 1 1497 1818 1 + 1818 1495 1 1498 1818 1 1499 1818 1 1500 1819 1 1819 1498 1 1501 1819 1 1502 1819 1 + 1503 1820 1 1820 1501 1 1504 1820 1 1505 1820 1 1506 1821 1 1821 1504 1 1507 1821 1 + 1508 1821 1 1509 1822 1 1822 1507 1 1510 1822 1 1511 1822 1 1512 1823 1 1823 1510 1 + 1493 1823 1 1513 1823 1 1514 1824 1 1824 1517 1 1515 1824 1 1516 1824 1 1518 1825 1 + 1825 1515 1 1519 1825 1 1520 1825 1 1521 1826 1 1826 1519 1 1522 1826 1 1523 1826 1 + 1524 1827 1 1827 1522 1 1525 1827 1 1526 1827 1 1527 1828 1 1828 1525 1 1528 1828 1 + 1529 1828 1 1530 1829 1 1829 1528 1 1531 1829 1 1532 1829 1 1533 1830 1 1830 1531 1 + 1534 1830 1 1535 1830 1 1536 1831 1 1831 1534 1 1517 1831 1 1537 1831 1 1538 1832 1 + 1832 1541 1 1539 1832 1 1540 1832 1 1542 1833 1 1833 1539 1 1543 1833 1 1544 1833 1 + 1545 1834 1 1834 1543 1 1546 1834 1 1547 1834 1 1548 1835 1 1835 1546 1 1549 1835 1 + 1550 1835 1 1551 1836 1 1836 1549 1 1552 1836 1 1553 1836 1 1554 1837 1 1837 1552 1; + setAttr ".ed[2822:2987]" 1555 1837 1 1556 1837 1 1557 1838 1 1838 1555 1 1558 1838 1 + 1559 1838 1 1560 1839 1 1839 1558 1 1541 1839 1 1561 1839 1 1562 1840 1 1840 1565 1 + 1563 1840 1 1564 1840 1 1566 1841 1 1841 1563 1 1567 1841 1 1568 1841 1 1569 1842 1 + 1842 1567 1 1570 1842 1 1571 1842 1 1572 1843 1 1843 1570 1 1573 1843 1 1574 1843 1 + 1575 1844 1 1844 1573 1 1576 1844 1 1577 1844 1 1578 1845 1 1845 1576 1 1579 1845 1 + 1580 1845 1 1581 1846 1 1846 1579 1 1582 1846 1 1583 1846 1 1584 1847 1 1847 1582 1 + 1565 1847 1 1585 1847 1 1586 1848 1 1848 1589 1 1587 1848 1 1588 1848 1 1590 1849 1 + 1849 1587 1 1591 1849 1 1592 1849 1 1593 1850 1 1850 1591 1 1594 1850 1 1595 1850 1 + 1596 1851 1 1851 1594 1 1597 1851 1 1598 1851 1 1599 1852 1 1852 1597 1 1600 1852 1 + 1601 1852 1 1602 1853 1 1853 1600 1 1603 1853 1 1604 1853 1 1605 1854 1 1854 1603 1 + 1606 1854 1 1607 1854 1 1608 1855 1 1855 1606 1 1589 1855 1 1609 1855 1 1610 1856 1 + 1856 1613 1 1611 1856 1 1612 1856 1 1614 1857 1 1857 1611 1 1615 1857 1 1616 1857 1 + 1617 1858 1 1858 1615 1 1618 1858 1 1619 1858 1 1620 1859 1 1859 1618 1 1621 1859 1 + 1622 1859 1 1623 1860 1 1860 1621 1 1624 1860 1 1625 1860 1 1626 1861 1 1861 1624 1 + 1627 1861 1 1628 1861 1 1629 1862 1 1862 1627 1 1630 1862 1 1631 1862 1 1632 1863 1 + 1863 1630 1 1613 1863 1 1633 1863 1 1634 1864 1 1864 1637 1 1635 1864 1 1636 1864 1 + 1638 1865 1 1865 1635 1 1639 1865 1 1640 1865 1 1641 1866 1 1866 1639 1 1642 1866 1 + 1643 1866 1 1644 1867 1 1867 1642 1 1645 1867 1 1646 1867 1 1647 1868 1 1868 1645 1 + 1648 1868 1 1649 1868 1 1650 1869 1 1869 1648 1 1651 1869 1 1652 1869 1 1653 1870 1 + 1870 1651 1 1654 1870 1 1655 1870 1 1656 1871 1 1871 1654 1 1637 1871 1 1657 1871 1 + 1658 1872 1 1872 1661 1 1659 1872 1 1660 1872 1 1662 1873 1 1873 1659 1 1663 1873 1 + 1664 1873 1 1665 1874 1 1874 1663 1 1666 1874 1 1667 1874 1 1668 1875 1 1875 1666 1 + 1669 1875 1 1670 1875 1 1671 1876 1 1876 1669 1 1672 1876 1 1673 1876 1 1674 1877 1 + 1877 1672 1 1675 1877 1 1676 1877 1 1677 1878 1 1878 1675 1 1678 1878 1 1679 1878 1; + setAttr ".ed[2988:3153]" 1680 1879 1 1879 1678 1 1661 1879 1 1681 1879 1 1660 1880 1 + 1880 1684 1 1682 1880 1 1683 1880 1 1664 1881 1 1881 1682 1 1685 1881 1 1686 1881 1 + 1667 1882 1 1882 1685 1 1687 1882 1 1688 1882 1 1670 1883 1 1883 1687 1 1689 1883 1 + 1690 1883 1 1673 1884 1 1884 1689 1 1691 1884 1 1692 1884 1 1676 1885 1 1885 1691 1 + 1693 1885 1 1694 1885 1 1679 1886 1 1886 1693 1 1695 1886 1 568 1886 1 1681 1887 1 + 1887 1695 1 1684 1887 1 569 1887 1 570 1888 1 1888 577 1 571 1888 1 572 1888 1 573 1888 1 + 574 1888 1 575 1888 1 576 1888 1 578 1889 1 1889 585 1 579 1889 1 580 1889 1 581 1889 1 + 582 1889 1 583 1889 1 584 1889 1 1132 1890 1 1890 588 1 586 1890 1 587 1890 1 1136 1891 1 + 1891 586 1 589 1891 1 590 1891 1 1139 1892 1 1892 589 1 591 1892 1 592 1892 1 1142 1893 1 + 1893 591 1 593 1893 1 594 1893 1 1145 1894 1 1894 593 1 595 1894 1 596 1894 1 1148 1895 1 + 1895 595 1 597 1895 1 598 1895 1 1151 1896 1 1896 597 1 599 1896 1 600 1896 1 1153 1897 1 + 1897 599 1 588 1897 1 601 1897 1 1156 1898 1 1898 604 1 602 1898 1 603 1898 1 1160 1899 1 + 1899 602 1 605 1899 1 606 1899 1 1163 1900 1 1900 605 1 607 1900 1 608 1900 1 1166 1901 1 + 1901 607 1 609 1901 1 610 1901 1 1169 1902 1 1902 609 1 611 1902 1 612 1902 1 1172 1903 1 + 1903 611 1 613 1903 1 614 1903 1 1175 1904 1 1904 613 1 615 1904 1 616 1904 1 1177 1905 1 + 1905 615 1 604 1905 1 617 1905 1 1180 1906 1 1906 620 1 618 1906 1 619 1906 1 1184 1907 1 + 1907 618 1 621 1907 1 622 1907 1 1187 1908 1 1908 621 1 623 1908 1 624 1908 1 1190 1909 1 + 1909 623 1 625 1909 1 626 1909 1 1193 1910 1 1910 625 1 627 1910 1 628 1910 1 1196 1911 1 + 1911 627 1 629 1911 1 630 1911 1 1199 1912 1 1912 629 1 631 1912 1 632 1912 1 1201 1913 1 + 1913 631 1 620 1913 1 633 1913 1 1204 1914 1 1914 636 1 634 1914 1 635 1914 1 1208 1915 1 + 1915 634 1 637 1915 1 638 1915 1 1211 1916 1 1916 637 1 639 1916 1 640 1916 1 1214 1917 1 + 1917 639 1 641 1917 1 642 1917 1 1217 1918 1 1918 641 1; + setAttr ".ed[3154:3319]" 643 1918 1 644 1918 1 1220 1919 1 1919 643 1 645 1919 1 + 646 1919 1 1223 1920 1 1920 645 1 647 1920 1 648 1920 1 1225 1921 1 1921 647 1 636 1921 1 + 649 1921 1 1228 1922 1 1922 652 1 650 1922 1 651 1922 1 1232 1923 1 1923 650 1 653 1923 1 + 654 1923 1 1235 1924 1 1924 653 1 655 1924 1 656 1924 1 1238 1925 1 1925 655 1 657 1925 1 + 658 1925 1 1241 1926 1 1926 657 1 659 1926 1 660 1926 1 1244 1927 1 1927 659 1 661 1927 1 + 662 1927 1 1247 1928 1 1928 661 1 663 1928 1 664 1928 1 1249 1929 1 1929 663 1 652 1929 1 + 665 1929 1 1252 1930 1 1930 668 1 666 1930 1 667 1930 1 1256 1931 1 1931 666 1 669 1931 1 + 670 1931 1 1259 1932 1 1932 669 1 671 1932 1 672 1932 1 1262 1933 1 1933 671 1 673 1933 1 + 674 1933 1 1265 1934 1 1934 673 1 675 1934 1 676 1934 1 1268 1935 1 1935 675 1 677 1935 1 + 678 1935 1 1271 1936 1 1936 677 1 679 1936 1 680 1936 1 1273 1937 1 1937 679 1 668 1937 1 + 681 1937 1 1276 1938 1 1938 684 1 682 1938 1 683 1938 1 1280 1939 1 1939 682 1 685 1939 1 + 686 1939 1 1283 1940 1 1940 685 1 687 1940 1 688 1940 1 1286 1941 1 1941 687 1 689 1941 1 + 690 1941 1 1289 1942 1 1942 689 1 691 1942 1 692 1942 1 1292 1943 1 1943 691 1 693 1943 1 + 694 1943 1 1295 1944 1 1944 693 1 695 1944 1 696 1944 1 1297 1945 1 1945 695 1 684 1945 1 + 697 1945 1 1300 1946 1 1946 700 1 698 1946 1 699 1946 1 1304 1947 1 1947 698 1 701 1947 1 + 702 1947 1 1307 1948 1 1948 701 1 703 1948 1 704 1948 1 1310 1949 1 1949 703 1 705 1949 1 + 706 1949 1 1313 1950 1 1950 705 1 707 1950 1 708 1950 1 1316 1951 1 1951 707 1 709 1951 1 + 710 1951 1 1319 1952 1 1952 709 1 711 1952 1 712 1952 1 1321 1953 1 1953 711 1 700 1953 1 + 713 1953 1 1324 1954 1 1954 716 1 714 1954 1 715 1954 1 1328 1955 1 1955 714 1 717 1955 1 + 718 1955 1 1331 1956 1 1956 717 1 719 1956 1 720 1956 1 1334 1957 1 1957 719 1 721 1957 1 + 722 1957 1 1337 1958 1 1958 721 1 723 1958 1 724 1958 1 1340 1959 1 1959 723 1 725 1959 1 + 726 1959 1; + setAttr ".ed[3320:3485]" 1343 1960 1 1960 725 1 727 1960 1 728 1960 1 1345 1961 1 + 1961 727 1 716 1961 1 729 1961 1 1348 1962 1 1962 732 1 730 1962 1 731 1962 1 1352 1963 1 + 1963 730 1 733 1963 1 734 1963 1 1355 1964 1 1964 733 1 735 1964 1 736 1964 1 1358 1965 1 + 1965 735 1 737 1965 1 738 1965 1 1361 1966 1 1966 737 1 739 1966 1 740 1966 1 1364 1967 1 + 1967 739 1 741 1967 1 742 1967 1 1367 1968 1 1968 741 1 743 1968 1 744 1968 1 1369 1969 1 + 1969 743 1 732 1969 1 745 1969 1 1372 1970 1 1970 748 1 746 1970 1 747 1970 1 1376 1971 1 + 1971 746 1 749 1971 1 750 1971 1 1379 1972 1 1972 749 1 751 1972 1 752 1972 1 1382 1973 1 + 1973 751 1 753 1973 1 754 1973 1 1385 1974 1 1974 753 1 755 1974 1 756 1974 1 1388 1975 1 + 1975 755 1 757 1975 1 758 1975 1 1391 1976 1 1976 757 1 759 1976 1 760 1976 1 1393 1977 1 + 1977 759 1 748 1977 1 761 1977 1 1396 1978 1 1978 764 1 762 1978 1 763 1978 1 1400 1979 1 + 1979 762 1 765 1979 1 766 1979 1 1403 1980 1 1980 765 1 767 1980 1 768 1980 1 1406 1981 1 + 1981 767 1 769 1981 1 770 1981 1 1409 1982 1 1982 769 1 771 1982 1 772 1982 1 1412 1983 1 + 1983 771 1 773 1983 1 774 1983 1 1415 1984 1 1984 773 1 775 1984 1 776 1984 1 1417 1985 1 + 1985 775 1 764 1985 1 777 1985 1 1420 1986 1 1986 780 1 778 1986 1 779 1986 1 1424 1987 1 + 1987 778 1 781 1987 1 782 1987 1 1427 1988 1 1988 781 1 783 1988 1 784 1988 1 1430 1989 1 + 1989 783 1 785 1989 1 786 1989 1 1433 1990 1 1990 785 1 787 1990 1 788 1990 1 1436 1991 1 + 1991 787 1 789 1991 1 790 1991 1 1439 1992 1 1992 789 1 791 1992 1 792 1992 1 1441 1993 1 + 1993 791 1 780 1993 1 793 1993 1 1444 1994 1 1994 796 1 794 1994 1 795 1994 1 1448 1995 1 + 1995 794 1 797 1995 1 798 1995 1 1451 1996 1 1996 797 1 799 1996 1 800 1996 1 1454 1997 1 + 1997 799 1 801 1997 1 802 1997 1 1457 1998 1 1998 801 1 803 1998 1 804 1998 1 1460 1999 1 + 1999 803 1 805 1999 1 806 1999 1 1463 2000 1 2000 805 1 807 2000 1 808 2000 1 1465 2001 1 + 2001 807 1; + setAttr ".ed[3486:3651]" 796 2001 1 809 2001 1 1468 2002 1 2002 812 1 810 2002 1 + 811 2002 1 1472 2003 1 2003 810 1 813 2003 1 814 2003 1 1475 2004 1 2004 813 1 815 2004 1 + 816 2004 1 1478 2005 1 2005 815 1 817 2005 1 818 2005 1 1481 2006 1 2006 817 1 819 2006 1 + 820 2006 1 1484 2007 1 2007 819 1 821 2007 1 822 2007 1 1487 2008 1 2008 821 1 823 2008 1 + 824 2008 1 1489 2009 1 2009 823 1 812 2009 1 825 2009 1 1492 2010 1 2010 828 1 826 2010 1 + 827 2010 1 1496 2011 1 2011 826 1 829 2011 1 830 2011 1 1499 2012 1 2012 829 1 831 2012 1 + 832 2012 1 1502 2013 1 2013 831 1 833 2013 1 834 2013 1 1505 2014 1 2014 833 1 835 2014 1 + 836 2014 1 1508 2015 1 2015 835 1 837 2015 1 838 2015 1 1511 2016 1 2016 837 1 839 2016 1 + 840 2016 1 1513 2017 1 2017 839 1 828 2017 1 841 2017 1 1516 2018 1 2018 844 1 842 2018 1 + 843 2018 1 1520 2019 1 2019 842 1 845 2019 1 846 2019 1 1523 2020 1 2020 845 1 847 2020 1 + 848 2020 1 1526 2021 1 2021 847 1 849 2021 1 850 2021 1 1529 2022 1 2022 849 1 851 2022 1 + 852 2022 1 1532 2023 1 2023 851 1 853 2023 1 854 2023 1 1535 2024 1 2024 853 1 855 2024 1 + 856 2024 1 1537 2025 1 2025 855 1 844 2025 1 857 2025 1 1540 2026 1 2026 860 1 858 2026 1 + 859 2026 1 1544 2027 1 2027 858 1 861 2027 1 862 2027 1 1547 2028 1 2028 861 1 863 2028 1 + 864 2028 1 1550 2029 1 2029 863 1 865 2029 1 866 2029 1 1553 2030 1 2030 865 1 867 2030 1 + 868 2030 1 1556 2031 1 2031 867 1 869 2031 1 870 2031 1 1559 2032 1 2032 869 1 871 2032 1 + 872 2032 1 1561 2033 1 2033 871 1 860 2033 1 873 2033 1 1564 2034 1 2034 876 1 874 2034 1 + 875 2034 1 1568 2035 1 2035 874 1 877 2035 1 878 2035 1 1571 2036 1 2036 877 1 879 2036 1 + 880 2036 1 1574 2037 1 2037 879 1 881 2037 1 882 2037 1 1577 2038 1 2038 881 1 883 2038 1 + 884 2038 1 1580 2039 1 2039 883 1 885 2039 1 886 2039 1 1583 2040 1 2040 885 1 887 2040 1 + 888 2040 1 1585 2041 1 2041 887 1 876 2041 1 889 2041 1 1588 2042 1 2042 892 1 890 2042 1 + 891 2042 1; + setAttr ".ed[3652:3817]" 1592 2043 1 2043 890 1 893 2043 1 894 2043 1 1595 2044 1 + 2044 893 1 895 2044 1 896 2044 1 1598 2045 1 2045 895 1 897 2045 1 898 2045 1 1601 2046 1 + 2046 897 1 899 2046 1 900 2046 1 1604 2047 1 2047 899 1 901 2047 1 902 2047 1 1607 2048 1 + 2048 901 1 903 2048 1 904 2048 1 1609 2049 1 2049 903 1 892 2049 1 905 2049 1 1612 2050 1 + 2050 908 1 906 2050 1 907 2050 1 1616 2051 1 2051 906 1 909 2051 1 910 2051 1 1619 2052 1 + 2052 909 1 911 2052 1 912 2052 1 1622 2053 1 2053 911 1 913 2053 1 914 2053 1 1625 2054 1 + 2054 913 1 915 2054 1 916 2054 1 1628 2055 1 2055 915 1 917 2055 1 918 2055 1 1631 2056 1 + 2056 917 1 919 2056 1 920 2056 1 1633 2057 1 2057 919 1 908 2057 1 921 2057 1 1636 2058 1 + 2058 924 1 922 2058 1 923 2058 1 1640 2059 1 2059 922 1 925 2059 1 926 2059 1 1643 2060 1 + 2060 925 1 927 2060 1 928 2060 1 1646 2061 1 2061 927 1 929 2061 1 930 2061 1 1649 2062 1 + 2062 929 1 931 2062 1 932 2062 1 1652 2063 1 2063 931 1 933 2063 1 934 2063 1 1655 2064 1 + 2064 933 1 935 2064 1 936 2064 1 1657 2065 1 2065 935 1 924 2065 1 937 2065 1 576 2066 1 + 2066 939 1 938 2066 1 1130 2066 1 575 2067 1 2067 938 1 940 2067 1 1134 2067 1 574 2068 1 + 2068 940 1 941 2068 1 1137 2068 1 573 2069 1 2069 941 1 942 2069 1 1140 2069 1 572 2070 1 + 2070 942 1 943 2070 1 1143 2070 1 571 2071 1 2071 943 1 944 2071 1 1146 2071 1 570 2072 1 + 2072 944 1 945 2072 1 1149 2072 1 577 2073 1 2073 945 1 939 2073 1 1152 2073 1 1154 2074 1 + 2074 947 1 946 2074 1 587 2074 1 1158 2075 1 2075 948 1 947 2075 1 590 2075 1 1161 2076 1 + 2076 949 1 948 2076 1 592 2076 1 1164 2077 1 2077 950 1 949 2077 1 594 2077 1 1167 2078 1 + 2078 951 1 950 2078 1 596 2078 1 1170 2079 1 2079 952 1 951 2079 1 598 2079 1 1173 2080 1 + 2080 953 1 952 2080 1 600 2080 1 1176 2081 1 2081 946 1 953 2081 1 601 2081 1 603 2082 1 + 2082 955 1 954 2082 1 1178 2082 1 606 2083 1 2083 954 1 956 2083 1 1182 2083 1 608 2084 1 + 2084 956 1; + setAttr ".ed[3818:3983]" 957 2084 1 1185 2084 1 610 2085 1 2085 957 1 958 2085 1 + 1188 2085 1 612 2086 1 2086 958 1 959 2086 1 1191 2086 1 614 2087 1 2087 959 1 960 2087 1 + 1194 2087 1 616 2088 1 2088 960 1 961 2088 1 1197 2088 1 617 2089 1 2089 961 1 955 2089 1 + 1200 2089 1 1202 2090 1 2090 963 1 962 2090 1 619 2090 1 1206 2091 1 2091 964 1 963 2091 1 + 622 2091 1 1209 2092 1 2092 965 1 964 2092 1 624 2092 1 1212 2093 1 2093 966 1 965 2093 1 + 626 2093 1 1215 2094 1 2094 967 1 966 2094 1 628 2094 1 1218 2095 1 2095 968 1 967 2095 1 + 630 2095 1 1221 2096 1 2096 969 1 968 2096 1 632 2096 1 1224 2097 1 2097 962 1 969 2097 1 + 633 2097 1 635 2098 1 2098 971 1 970 2098 1 1226 2098 1 638 2099 1 2099 970 1 972 2099 1 + 1230 2099 1 640 2100 1 2100 972 1 973 2100 1 1233 2100 1 642 2101 1 2101 973 1 974 2101 1 + 1236 2101 1 644 2102 1 2102 974 1 975 2102 1 1239 2102 1 646 2103 1 2103 975 1 976 2103 1 + 1242 2103 1 648 2104 1 2104 976 1 977 2104 1 1245 2104 1 649 2105 1 2105 977 1 971 2105 1 + 1248 2105 1 1250 2106 1 2106 979 1 978 2106 1 651 2106 1 1254 2107 1 2107 980 1 979 2107 1 + 654 2107 1 1257 2108 1 2108 981 1 980 2108 1 656 2108 1 1260 2109 1 2109 982 1 981 2109 1 + 658 2109 1 1263 2110 1 2110 983 1 982 2110 1 660 2110 1 1266 2111 1 2111 984 1 983 2111 1 + 662 2111 1 1269 2112 1 2112 985 1 984 2112 1 664 2112 1 1272 2113 1 2113 978 1 985 2113 1 + 665 2113 1 667 2114 1 2114 987 1 986 2114 1 1274 2114 1 670 2115 1 2115 986 1 988 2115 1 + 1278 2115 1 672 2116 1 2116 988 1 989 2116 1 1281 2116 1 674 2117 1 2117 989 1 990 2117 1 + 1284 2117 1 676 2118 1 2118 990 1 991 2118 1 1287 2118 1 678 2119 1 2119 991 1 992 2119 1 + 1290 2119 1 680 2120 1 2120 992 1 993 2120 1 1293 2120 1 681 2121 1 2121 993 1 987 2121 1 + 1296 2121 1 1298 2122 1 2122 995 1 994 2122 1 683 2122 1 1302 2123 1 2123 996 1 995 2123 1 + 686 2123 1 1305 2124 1 2124 997 1 996 2124 1 688 2124 1 1308 2125 1 2125 998 1 997 2125 1 + 690 2125 1; + setAttr ".ed[3984:4149]" 1311 2126 1 2126 999 1 998 2126 1 692 2126 1 1314 2127 1 + 2127 1000 1 999 2127 1 694 2127 1 1317 2128 1 2128 1001 1 1000 2128 1 696 2128 1 + 1320 2129 1 2129 994 1 1001 2129 1 697 2129 1 699 2130 1 2130 1003 1 1002 2130 1 + 1322 2130 1 702 2131 1 2131 1002 1 1004 2131 1 1326 2131 1 704 2132 1 2132 1004 1 + 1005 2132 1 1329 2132 1 706 2133 1 2133 1005 1 1006 2133 1 1332 2133 1 708 2134 1 + 2134 1006 1 1007 2134 1 1335 2134 1 710 2135 1 2135 1007 1 1008 2135 1 1338 2135 1 + 712 2136 1 2136 1008 1 1009 2136 1 1341 2136 1 713 2137 1 2137 1009 1 1003 2137 1 + 1344 2137 1 1346 2138 1 2138 1011 1 1010 2138 1 715 2138 1 1350 2139 1 2139 1012 1 + 1011 2139 1 718 2139 1 1353 2140 1 2140 1013 1 1012 2140 1 720 2140 1 1356 2141 1 + 2141 1014 1 1013 2141 1 722 2141 1 1359 2142 1 2142 1015 1 1014 2142 1 724 2142 1 + 1362 2143 1 2143 1016 1 1015 2143 1 726 2143 1 1365 2144 1 2144 1017 1 1016 2144 1 + 728 2144 1 1368 2145 1 2145 1010 1 1017 2145 1 729 2145 1 731 2146 1 2146 1019 1 + 1018 2146 1 1370 2146 1 734 2147 1 2147 1018 1 1020 2147 1 1374 2147 1 736 2148 1 + 2148 1020 1 1021 2148 1 1377 2148 1 738 2149 1 2149 1021 1 1022 2149 1 1380 2149 1 + 740 2150 1 2150 1022 1 1023 2150 1 1383 2150 1 742 2151 1 2151 1023 1 1024 2151 1 + 1386 2151 1 744 2152 1 2152 1024 1 1025 2152 1 1389 2152 1 745 2153 1 2153 1025 1 + 1019 2153 1 1392 2153 1 1394 2154 1 2154 1027 1 1026 2154 1 747 2154 1 1398 2155 1 + 2155 1028 1 1027 2155 1 750 2155 1 1401 2156 1 2156 1029 1 1028 2156 1 752 2156 1 + 1404 2157 1 2157 1030 1 1029 2157 1 754 2157 1 1407 2158 1 2158 1031 1 1030 2158 1 + 756 2158 1 1410 2159 1 2159 1032 1 1031 2159 1 758 2159 1 1413 2160 1 2160 1033 1 + 1032 2160 1 760 2160 1 1416 2161 1 2161 1026 1 1033 2161 1 761 2161 1 763 2162 1 + 2162 1035 1 1034 2162 1 1418 2162 1 766 2163 1 2163 1034 1 1036 2163 1 1422 2163 1 + 768 2164 1 2164 1036 1 1037 2164 1 1425 2164 1 770 2165 1 2165 1037 1 1038 2165 1 + 1428 2165 1 772 2166 1 2166 1038 1 1039 2166 1 1431 2166 1 774 2167 1 2167 1039 1; + setAttr ".ed[4150:4315]" 1040 2167 1 1434 2167 1 776 2168 1 2168 1040 1 1041 2168 1 + 1437 2168 1 777 2169 1 2169 1041 1 1035 2169 1 1440 2169 1 1442 2170 1 2170 1043 1 + 1042 2170 1 779 2170 1 1446 2171 1 2171 1044 1 1043 2171 1 782 2171 1 1449 2172 1 + 2172 1045 1 1044 2172 1 784 2172 1 1452 2173 1 2173 1046 1 1045 2173 1 786 2173 1 + 1455 2174 1 2174 1047 1 1046 2174 1 788 2174 1 1458 2175 1 2175 1048 1 1047 2175 1 + 790 2175 1 1461 2176 1 2176 1049 1 1048 2176 1 792 2176 1 1464 2177 1 2177 1042 1 + 1049 2177 1 793 2177 1 795 2178 1 2178 1051 1 1050 2178 1 1466 2178 1 798 2179 1 + 2179 1050 1 1052 2179 1 1470 2179 1 800 2180 1 2180 1052 1 1053 2180 1 1473 2180 1 + 802 2181 1 2181 1053 1 1054 2181 1 1476 2181 1 804 2182 1 2182 1054 1 1055 2182 1 + 1479 2182 1 806 2183 1 2183 1055 1 1056 2183 1 1482 2183 1 808 2184 1 2184 1056 1 + 1057 2184 1 1485 2184 1 809 2185 1 2185 1057 1 1051 2185 1 1488 2185 1 1490 2186 1 + 2186 1059 1 1058 2186 1 811 2186 1 1494 2187 1 2187 1060 1 1059 2187 1 814 2187 1 + 1497 2188 1 2188 1061 1 1060 2188 1 816 2188 1 1500 2189 1 2189 1062 1 1061 2189 1 + 818 2189 1 1503 2190 1 2190 1063 1 1062 2190 1 820 2190 1 1506 2191 1 2191 1064 1 + 1063 2191 1 822 2191 1 1509 2192 1 2192 1065 1 1064 2192 1 824 2192 1 1512 2193 1 + 2193 1058 1 1065 2193 1 825 2193 1 827 2194 1 2194 1067 1 1066 2194 1 1514 2194 1 + 830 2195 1 2195 1066 1 1068 2195 1 1518 2195 1 832 2196 1 2196 1068 1 1069 2196 1 + 1521 2196 1 834 2197 1 2197 1069 1 1070 2197 1 1524 2197 1 836 2198 1 2198 1070 1 + 1071 2198 1 1527 2198 1 838 2199 1 2199 1071 1 1072 2199 1 1530 2199 1 840 2200 1 + 2200 1072 1 1073 2200 1 1533 2200 1 841 2201 1 2201 1073 1 1067 2201 1 1536 2201 1 + 1538 2202 1 2202 1075 1 1074 2202 1 843 2202 1 1542 2203 1 2203 1076 1 1075 2203 1 + 846 2203 1 1545 2204 1 2204 1077 1 1076 2204 1 848 2204 1 1548 2205 1 2205 1078 1 + 1077 2205 1 850 2205 1 1551 2206 1 2206 1079 1 1078 2206 1 852 2206 1 1554 2207 1 + 2207 1080 1 1079 2207 1 854 2207 1 1557 2208 1 2208 1081 1 1080 2208 1 856 2208 1; + setAttr ".ed[4316:4481]" 1560 2209 1 2209 1074 1 1081 2209 1 857 2209 1 859 2210 1 + 2210 1083 1 1082 2210 1 1562 2210 1 862 2211 1 2211 1082 1 1084 2211 1 1566 2211 1 + 864 2212 1 2212 1084 1 1085 2212 1 1569 2212 1 866 2213 1 2213 1085 1 1086 2213 1 + 1572 2213 1 868 2214 1 2214 1086 1 1087 2214 1 1575 2214 1 870 2215 1 2215 1087 1 + 1088 2215 1 1578 2215 1 872 2216 1 2216 1088 1 1089 2216 1 1581 2216 1 873 2217 1 + 2217 1089 1 1083 2217 1 1584 2217 1 1586 2218 1 2218 1091 1 1090 2218 1 875 2218 1 + 1590 2219 1 2219 1092 1 1091 2219 1 878 2219 1 1593 2220 1 2220 1093 1 1092 2220 1 + 880 2220 1 1596 2221 1 2221 1094 1 1093 2221 1 882 2221 1 1599 2222 1 2222 1095 1 + 1094 2222 1 884 2222 1 1602 2223 1 2223 1096 1 1095 2223 1 886 2223 1 1605 2224 1 + 2224 1097 1 1096 2224 1 888 2224 1 1608 2225 1 2225 1090 1 1097 2225 1 889 2225 1 + 891 2226 1 2226 1099 1 1098 2226 1 1610 2226 1 894 2227 1 2227 1098 1 1100 2227 1 + 1614 2227 1 896 2228 1 2228 1100 1 1101 2228 1 1617 2228 1 898 2229 1 2229 1101 1 + 1102 2229 1 1620 2229 1 900 2230 1 2230 1102 1 1103 2230 1 1623 2230 1 902 2231 1 + 2231 1103 1 1104 2231 1 1626 2231 1 904 2232 1 2232 1104 1 1105 2232 1 1629 2232 1 + 905 2233 1 2233 1105 1 1099 2233 1 1632 2233 1 1634 2234 1 2234 1107 1 1106 2234 1 + 907 2234 1 1638 2235 1 2235 1108 1 1107 2235 1 910 2235 1 1641 2236 1 2236 1109 1 + 1108 2236 1 912 2236 1 1644 2237 1 2237 1110 1 1109 2237 1 914 2237 1 1647 2238 1 + 2238 1111 1 1110 2238 1 916 2238 1 1650 2239 1 2239 1112 1 1111 2239 1 918 2239 1 + 1653 2240 1 2240 1113 1 1112 2240 1 920 2240 1 1656 2241 1 2241 1106 1 1113 2241 1 + 921 2241 1 923 2242 1 2242 1115 1 1114 2242 1 1658 2242 1 926 2243 1 2243 1114 1 + 1116 2243 1 1662 2243 1 928 2244 1 2244 1116 1 1117 2244 1 1665 2244 1 930 2245 1 + 2245 1117 1 1118 2245 1 1668 2245 1 932 2246 1 2246 1118 1 1119 2246 1 1671 2246 1 + 934 2247 1 2247 1119 1 1120 2247 1 1674 2247 1 936 2248 1 2248 1120 1 1121 2248 1 + 1677 2248 1 937 2249 1 2249 1121 1 1115 2249 1 1680 2249 1 578 2250 1 2250 1123 1; + setAttr ".ed[4482:4511]" 1122 2250 1 1683 2250 1 579 2251 1 2251 1124 1 1123 2251 1 + 1686 2251 1 580 2252 1 2252 1125 1 1124 2252 1 1688 2252 1 581 2253 1 2253 1126 1 + 1125 2253 1 1690 2253 1 582 2254 1 2254 1127 1 1126 2254 1 1692 2254 1 583 2255 1 + 2255 1128 1 1127 2255 1 1694 2255 1 584 2256 1 2256 1129 1 1128 2256 1 568 2256 1 + 585 2257 1 2257 1122 1 1129 2257 1 569 2257 1; + setAttr -s 2256 -ch 9024 ".fc"; + setAttr ".fc[0:499]" -type "polyFaces" + f 4 916 2256 2257 923 + mu 0 4 0 1 2 3 + f 4 917 918 2258 -2257 + mu 0 4 1 4 5 2 + f 4 -2259 919 920 2259 + mu 0 4 2 5 6 7 + f 4 -2258 -2260 921 922 + mu 0 4 3 2 7 8 + f 4 926 2260 2261 -919 + mu 0 4 4 9 10 5 + f 4 927 928 2262 -2261 + mu 0 4 9 11 12 10 + f 4 -2263 929 930 2263 + mu 0 4 10 12 13 14 + f 4 -2262 -2264 931 -920 + mu 0 4 5 10 14 6 + f 4 934 2264 2265 -929 + mu 0 4 11 15 16 12 + f 4 935 936 2266 -2265 + mu 0 4 15 17 18 16 + f 4 -2267 937 938 2267 + mu 0 4 16 18 19 20 + f 4 -2266 -2268 939 -930 + mu 0 4 12 16 20 13 + f 4 942 2268 2269 -937 + mu 0 4 17 21 22 18 + f 4 943 944 2270 -2269 + mu 0 4 21 23 24 22 + f 4 -2271 945 946 2271 + mu 0 4 22 24 25 26 + f 4 -2270 -2272 947 -938 + mu 0 4 18 22 26 19 + f 4 950 2272 2273 -945 + mu 0 4 23 27 28 24 + f 4 951 952 2274 -2273 + mu 0 4 27 29 30 28 + f 4 -2275 953 954 2275 + mu 0 4 28 30 31 32 + f 4 -2274 -2276 955 -946 + mu 0 4 24 28 32 25 + f 4 958 2276 2277 -953 + mu 0 4 29 33 34 30 + f 4 959 960 2278 -2277 + mu 0 4 33 35 36 34 + f 4 -2279 961 962 2279 + mu 0 4 34 36 37 38 + f 4 -2278 -2280 963 -954 + mu 0 4 30 34 38 31 + f 4 966 2280 2281 -961 + mu 0 4 35 39 40 36 + f 4 967 968 2282 -2281 + mu 0 4 39 2570 2569 40 + f 4 -2283 969 970 2283 + mu 0 4 40 2569 2566 44 + f 4 -2282 -2284 971 -962 + mu 0 4 36 40 44 37 + f 4 972 2284 2285 -969 + mu 0 4 41 45 46 42 + f 4 973 -924 2286 -2285 + mu 0 4 45 0 3 46 + f 4 -2287 -923 974 2287 + mu 0 4 46 3 8 47 + f 4 -2286 -2288 975 -970 + mu 0 4 42 46 47 43 + f 4 386 2288 2289 19 + mu 0 4 48 49 50 51 + f 4 387 384 2290 -2289 + mu 0 4 49 52 53 50 + f 4 -2291 385 16 2291 + mu 0 4 50 53 54 2273 + f 4 -2290 -2292 17 18 + mu 0 4 51 50 2273 2260 + f 4 390 2292 2293 -385 + mu 0 4 52 57 58 53 + f 4 391 388 2294 -2293 + mu 0 4 57 59 60 58 + f 4 -2295 389 20 2295 + mu 0 4 58 60 61 2271 + f 4 -2294 -2296 21 -386 + mu 0 4 53 58 2271 54 + f 4 394 2296 2297 -389 + mu 0 4 59 63 64 60 + f 4 395 392 2298 -2297 + mu 0 4 63 65 66 64 + f 4 -2299 393 22 2299 + mu 0 4 64 66 67 2269 + f 4 -2298 -2300 23 -390 + mu 0 4 60 64 2269 61 + f 4 398 2300 2301 -393 + mu 0 4 65 69 70 66 + f 4 399 396 2302 -2301 + mu 0 4 69 71 72 70 + f 4 -2303 397 24 2303 + mu 0 4 70 72 73 2267 + f 4 -2302 -2304 25 -394 + mu 0 4 66 70 2267 67 + f 4 402 2304 2305 -397 + mu 0 4 71 75 76 72 + f 4 403 400 2306 -2305 + mu 0 4 75 77 78 76 + f 4 -2307 401 26 2307 + mu 0 4 76 78 79 2265 + f 4 -2306 -2308 27 -398 + mu 0 4 72 76 2265 73 + f 4 406 2308 2309 -401 + mu 0 4 77 81 82 78 + f 4 407 404 2310 -2309 + mu 0 4 81 83 84 82 + f 4 -2311 405 28 2311 + mu 0 4 82 84 85 2263 + f 4 -2310 -2312 29 -402 + mu 0 4 78 82 2263 79 + f 4 410 2312 2313 -405 + mu 0 4 83 87 88 84 + f 4 411 408 2314 -2313 + mu 0 4 87 89 2602 88 + f 4 -2315 409 30 2315 + mu 0 4 88 2602 91 2261 + f 4 -2314 -2316 31 -406 + mu 0 4 84 88 2261 85 + f 4 412 2316 2317 -409 + mu 0 4 2568 93 94 90 + f 4 413 -20 2318 -2317 + mu 0 4 93 48 51 94 + f 4 -2319 -19 32 2319 + mu 0 4 94 51 2260 2258 + f 4 -2318 -2320 33 -410 + mu 0 4 90 94 2258 2604 + f 4 1028 2320 2321 1035 + mu 0 4 96 97 98 99 + f 4 1029 1030 2322 -2321 + mu 0 4 97 100 101 98 + f 4 -2323 1031 1032 2323 + mu 0 4 98 101 102 103 + f 4 -2322 -2324 1033 1034 + mu 0 4 99 98 103 104 + f 4 1038 2324 2325 -1031 + mu 0 4 100 105 106 101 + f 4 1039 1040 2326 -2325 + mu 0 4 105 107 108 106 + f 4 -2327 1041 1042 2327 + mu 0 4 106 108 109 110 + f 4 -2326 -2328 1043 -1032 + mu 0 4 101 106 110 102 + f 4 1046 2328 2329 -1041 + mu 0 4 107 111 112 108 + f 4 1047 1048 2330 -2329 + mu 0 4 111 113 114 112 + f 4 -2331 1049 1050 2331 + mu 0 4 112 114 115 116 + f 4 -2330 -2332 1051 -1042 + mu 0 4 108 112 116 109 + f 4 1054 2332 2333 -1049 + mu 0 4 113 117 118 114 + f 4 1055 1056 2334 -2333 + mu 0 4 117 119 120 118 + f 4 -2335 1057 1058 2335 + mu 0 4 118 120 121 122 + f 4 -2334 -2336 1059 -1050 + mu 0 4 114 118 122 115 + f 4 1062 2336 2337 -1057 + mu 0 4 119 123 124 120 + f 4 1063 1064 2338 -2337 + mu 0 4 123 125 126 124 + f 4 -2339 1065 1066 2339 + mu 0 4 124 126 127 128 + f 4 -2338 -2340 1067 -1058 + mu 0 4 120 124 128 121 + f 4 1070 2340 2341 -1065 + mu 0 4 125 129 130 126 + f 4 1071 1072 2342 -2341 + mu 0 4 129 131 132 130 + f 4 -2343 1073 1074 2343 + mu 0 4 130 132 133 134 + f 4 -2342 -2344 1075 -1066 + mu 0 4 126 130 134 127 + f 4 1078 2344 2345 -1073 + mu 0 4 131 135 136 132 + f 4 1079 1080 2346 -2345 + mu 0 4 135 2561 2560 136 + f 4 -2347 1081 1082 2347 + mu 0 4 136 2560 2557 140 + f 4 -2346 -2348 1083 -1074 + mu 0 4 132 136 140 133 + f 4 1084 2348 2349 -1081 + mu 0 4 137 141 142 138 + f 4 1085 -1036 2350 -2349 + mu 0 4 141 96 99 142 + f 4 -2351 -1035 1086 2351 + mu 0 4 142 99 104 143 + f 4 -2350 -2352 1087 -1082 + mu 0 4 138 142 143 139 + f 4 434 2352 2353 51 + mu 0 4 144 145 146 147 + f 4 435 432 2354 -2353 + mu 0 4 145 148 149 146 + f 4 -2355 433 48 2355 + mu 0 4 146 149 150 2289 + f 4 -2354 -2356 49 50 + mu 0 4 147 146 2289 2276 + f 4 438 2356 2357 -433 + mu 0 4 148 153 154 149 + f 4 439 436 2358 -2357 + mu 0 4 153 155 156 154 + f 4 -2359 437 52 2359 + mu 0 4 154 156 157 2287 + f 4 -2358 -2360 53 -434 + mu 0 4 149 154 2287 150 + f 4 442 2360 2361 -437 + mu 0 4 155 159 160 156 + f 4 443 440 2362 -2361 + mu 0 4 159 161 162 160 + f 4 -2363 441 54 2363 + mu 0 4 160 162 163 2285 + f 4 -2362 -2364 55 -438 + mu 0 4 156 160 2285 157 + f 4 446 2364 2365 -441 + mu 0 4 161 165 166 162 + f 4 447 444 2366 -2365 + mu 0 4 165 167 168 166 + f 4 -2367 445 56 2367 + mu 0 4 166 168 169 2283 + f 4 -2366 -2368 57 -442 + mu 0 4 162 166 2283 163 + f 4 450 2368 2369 -445 + mu 0 4 167 171 172 168 + f 4 451 448 2370 -2369 + mu 0 4 171 173 174 172 + f 4 -2371 449 58 2371 + mu 0 4 172 174 175 2281 + f 4 -2370 -2372 59 -446 + mu 0 4 168 172 2281 169 + f 4 454 2372 2373 -449 + mu 0 4 173 177 178 174 + f 4 455 452 2374 -2373 + mu 0 4 177 179 180 178 + f 4 -2375 453 60 2375 + mu 0 4 178 180 181 2279 + f 4 -2374 -2376 61 -450 + mu 0 4 174 178 2279 175 + f 4 458 2376 2377 -453 + mu 0 4 179 183 184 180 + f 4 459 456 2378 -2377 + mu 0 4 183 185 2599 184 + f 4 -2379 457 62 2379 + mu 0 4 184 2599 187 2277 + f 4 -2378 -2380 63 -454 + mu 0 4 180 184 2277 181 + f 4 460 2380 2381 -457 + mu 0 4 2559 189 190 186 + f 4 461 -52 2382 -2381 + mu 0 4 189 144 147 190 + f 4 -2383 -51 64 2383 + mu 0 4 190 147 2276 2274 + f 4 -2382 -2384 65 -458 + mu 0 4 186 190 2274 2601 + f 4 1140 2384 2385 1147 + mu 0 4 192 193 194 195 + f 4 1141 1142 2386 -2385 + mu 0 4 193 196 197 194 + f 4 -2387 1143 1144 2387 + mu 0 4 194 197 198 199 + f 4 -2386 -2388 1145 1146 + mu 0 4 195 194 199 200 + f 4 1150 2388 2389 -1143 + mu 0 4 196 201 202 197 + f 4 1151 1152 2390 -2389 + mu 0 4 201 203 204 202 + f 4 -2391 1153 1154 2391 + mu 0 4 202 204 205 206 + f 4 -2390 -2392 1155 -1144 + mu 0 4 197 202 206 198 + f 4 1158 2392 2393 -1153 + mu 0 4 203 207 208 204 + f 4 1159 1160 2394 -2393 + mu 0 4 207 209 210 208 + f 4 -2395 1161 1162 2395 + mu 0 4 208 210 211 212 + f 4 -2394 -2396 1163 -1154 + mu 0 4 204 208 212 205 + f 4 1166 2396 2397 -1161 + mu 0 4 209 213 214 210 + f 4 1167 1168 2398 -2397 + mu 0 4 213 215 216 214 + f 4 -2399 1169 1170 2399 + mu 0 4 214 216 217 218 + f 4 -2398 -2400 1171 -1162 + mu 0 4 210 214 218 211 + f 4 1174 2400 2401 -1169 + mu 0 4 215 219 220 216 + f 4 1175 1176 2402 -2401 + mu 0 4 219 221 222 220 + f 4 -2403 1177 1178 2403 + mu 0 4 220 222 223 224 + f 4 -2402 -2404 1179 -1170 + mu 0 4 216 220 224 217 + f 4 1182 2404 2405 -1177 + mu 0 4 221 225 226 222 + f 4 1183 1184 2406 -2405 + mu 0 4 225 227 228 226 + f 4 -2407 1185 1186 2407 + mu 0 4 226 228 229 230 + f 4 -2406 -2408 1187 -1178 + mu 0 4 222 226 230 223 + f 4 1190 2408 2409 -1185 + mu 0 4 227 231 232 228 + f 4 1191 1192 2410 -2409 + mu 0 4 231 2552 2551 232 + f 4 -2411 1193 1194 2411 + mu 0 4 232 2551 2548 236 + f 4 -2410 -2412 1195 -1186 + mu 0 4 228 232 236 229 + f 4 1196 2412 2413 -1193 + mu 0 4 233 237 238 234 + f 4 1197 -1148 2414 -2413 + mu 0 4 237 192 195 238 + f 4 -2415 -1147 1198 2415 + mu 0 4 238 195 200 239 + f 4 -2414 -2416 1199 -1194 + mu 0 4 234 238 239 235 + f 4 482 2416 2417 83 + mu 0 4 240 241 242 243 + f 4 483 480 2418 -2417 + mu 0 4 241 244 245 242 + f 4 -2419 481 80 2419 + mu 0 4 242 245 246 2305 + f 4 -2418 -2420 81 82 + mu 0 4 243 242 2305 2292 + f 4 486 2420 2421 -481 + mu 0 4 244 249 250 245 + f 4 487 484 2422 -2421 + mu 0 4 249 251 252 250 + f 4 -2423 485 84 2423 + mu 0 4 250 252 253 2303 + f 4 -2422 -2424 85 -482 + mu 0 4 245 250 2303 246 + f 4 490 2424 2425 -485 + mu 0 4 251 255 256 252 + f 4 491 488 2426 -2425 + mu 0 4 255 257 258 256 + f 4 -2427 489 86 2427 + mu 0 4 256 258 259 2301 + f 4 -2426 -2428 87 -486 + mu 0 4 252 256 2301 253 + f 4 494 2428 2429 -489 + mu 0 4 257 261 262 258 + f 4 495 492 2430 -2429 + mu 0 4 261 263 264 262 + f 4 -2431 493 88 2431 + mu 0 4 262 264 265 2299 + f 4 -2430 -2432 89 -490 + mu 0 4 258 262 2299 259 + f 4 498 2432 2433 -493 + mu 0 4 263 267 268 264 + f 4 499 496 2434 -2433 + mu 0 4 267 269 270 268 + f 4 -2435 497 90 2435 + mu 0 4 268 270 271 2297 + f 4 -2434 -2436 91 -494 + mu 0 4 264 268 2297 265 + f 4 502 2436 2437 -497 + mu 0 4 269 273 274 270 + f 4 503 500 2438 -2437 + mu 0 4 273 275 276 274 + f 4 -2439 501 92 2439 + mu 0 4 274 276 277 2295 + f 4 -2438 -2440 93 -498 + mu 0 4 270 274 2295 271 + f 4 506 2440 2441 -501 + mu 0 4 275 279 280 276 + f 4 507 504 2442 -2441 + mu 0 4 279 281 2596 280 + f 4 -2443 505 94 2443 + mu 0 4 280 2596 283 2293 + f 4 -2442 -2444 95 -502 + mu 0 4 276 280 2293 277 + f 4 508 2444 2445 -505 + mu 0 4 2550 285 286 282 + f 4 509 -84 2446 -2445 + mu 0 4 285 240 243 286 + f 4 -2447 -83 96 2447 + mu 0 4 286 243 2292 2290 + f 4 -2446 -2448 97 -506 + mu 0 4 282 286 2290 2598 + f 4 1252 2448 2449 1259 + mu 0 4 288 289 290 291 + f 4 1253 1254 2450 -2449 + mu 0 4 289 292 293 290 + f 4 -2451 1255 1256 2451 + mu 0 4 290 293 294 295 + f 4 -2450 -2452 1257 1258 + mu 0 4 291 290 295 296 + f 4 1262 2452 2453 -1255 + mu 0 4 292 297 298 293 + f 4 1263 1264 2454 -2453 + mu 0 4 297 299 300 298 + f 4 -2455 1265 1266 2455 + mu 0 4 298 300 301 302 + f 4 -2454 -2456 1267 -1256 + mu 0 4 293 298 302 294 + f 4 1270 2456 2457 -1265 + mu 0 4 299 303 304 300 + f 4 1271 1272 2458 -2457 + mu 0 4 303 305 306 304 + f 4 -2459 1273 1274 2459 + mu 0 4 304 306 307 308 + f 4 -2458 -2460 1275 -1266 + mu 0 4 300 304 308 301 + f 4 1278 2460 2461 -1273 + mu 0 4 305 309 310 306 + f 4 1279 1280 2462 -2461 + mu 0 4 309 311 312 310 + f 4 -2463 1281 1282 2463 + mu 0 4 310 312 313 314 + f 4 -2462 -2464 1283 -1274 + mu 0 4 306 310 314 307 + f 4 1286 2464 2465 -1281 + mu 0 4 311 315 316 312 + f 4 1287 1288 2466 -2465 + mu 0 4 315 317 318 316 + f 4 -2467 1289 1290 2467 + mu 0 4 316 318 319 320 + f 4 -2466 -2468 1291 -1282 + mu 0 4 312 316 320 313 + f 4 1294 2468 2469 -1289 + mu 0 4 317 321 322 318 + f 4 1295 1296 2470 -2469 + mu 0 4 321 323 324 322 + f 4 -2471 1297 1298 2471 + mu 0 4 322 324 325 326 + f 4 -2470 -2472 1299 -1290 + mu 0 4 318 322 326 319 + f 4 1302 2472 2473 -1297 + mu 0 4 323 327 328 324 + f 4 1303 1304 2474 -2473 + mu 0 4 327 2543 2542 328 + f 4 -2475 1305 1306 2475 + mu 0 4 328 2542 2539 332 + f 4 -2474 -2476 1307 -1298 + mu 0 4 324 328 332 325 + f 4 1308 2476 2477 -1305 + mu 0 4 329 333 334 330 + f 4 1309 -1260 2478 -2477 + mu 0 4 333 288 291 334 + f 4 -2479 -1259 1310 2479 + mu 0 4 334 291 296 335 + f 4 -2478 -2480 1311 -1306 + mu 0 4 330 334 335 331 + f 4 530 2480 2481 115 + mu 0 4 336 337 338 339 + f 4 531 528 2482 -2481 + mu 0 4 337 340 341 338 + f 4 -2483 529 112 2483 + mu 0 4 338 341 342 2321 + f 4 -2482 -2484 113 114 + mu 0 4 339 338 2321 2308 + f 4 534 2484 2485 -529 + mu 0 4 340 345 346 341 + f 4 535 532 2486 -2485 + mu 0 4 345 347 348 346 + f 4 -2487 533 116 2487 + mu 0 4 346 348 349 2319 + f 4 -2486 -2488 117 -530 + mu 0 4 341 346 2319 342 + f 4 538 2488 2489 -533 + mu 0 4 347 351 352 348 + f 4 539 536 2490 -2489 + mu 0 4 351 353 354 352 + f 4 -2491 537 118 2491 + mu 0 4 352 354 355 2317 + f 4 -2490 -2492 119 -534 + mu 0 4 348 352 2317 349 + f 4 542 2492 2493 -537 + mu 0 4 353 357 358 354 + f 4 543 540 2494 -2493 + mu 0 4 357 359 360 358 + f 4 -2495 541 120 2495 + mu 0 4 358 360 361 2315 + f 4 -2494 -2496 121 -538 + mu 0 4 354 358 2315 355 + f 4 546 2496 2497 -541 + mu 0 4 359 363 364 360 + f 4 547 544 2498 -2497 + mu 0 4 363 365 366 364 + f 4 -2499 545 122 2499 + mu 0 4 364 366 367 2313 + f 4 -2498 -2500 123 -542 + mu 0 4 360 364 2313 361 + f 4 550 2500 2501 -545 + mu 0 4 365 369 370 366 + f 4 551 548 2502 -2501 + mu 0 4 369 371 372 370 + f 4 -2503 549 124 2503 + mu 0 4 370 372 373 2311 + f 4 -2502 -2504 125 -546 + mu 0 4 366 370 2311 367 + f 4 554 2504 2505 -549 + mu 0 4 371 375 376 372 + f 4 555 552 2506 -2505 + mu 0 4 375 377 2593 376 + f 4 -2507 553 126 2507 + mu 0 4 376 2593 379 2309 + f 4 -2506 -2508 127 -550 + mu 0 4 372 376 2309 373 + f 4 556 2508 2509 -553 + mu 0 4 2541 381 382 378 + f 4 557 -116 2510 -2509 + mu 0 4 381 336 339 382 + f 4 -2511 -115 128 2511 + mu 0 4 382 339 2308 2306 + f 4 -2510 -2512 129 -554 + mu 0 4 378 382 2306 2595 + f 4 1364 2512 2513 1371 + mu 0 4 384 385 386 387 + f 4 1365 1366 2514 -2513 + mu 0 4 385 388 389 386 + f 4 -2515 1367 1368 2515 + mu 0 4 386 389 390 391 + f 4 -2514 -2516 1369 1370 + mu 0 4 387 386 391 392 + f 4 1374 2516 2517 -1367 + mu 0 4 388 393 394 389 + f 4 1375 1376 2518 -2517 + mu 0 4 393 395 396 394 + f 4 -2519 1377 1378 2519 + mu 0 4 394 396 397 398 + f 4 -2518 -2520 1379 -1368 + mu 0 4 389 394 398 390 + f 4 1382 2520 2521 -1377 + mu 0 4 395 399 400 396 + f 4 1383 1384 2522 -2521 + mu 0 4 399 401 402 400 + f 4 -2523 1385 1386 2523 + mu 0 4 400 402 403 404 + f 4 -2522 -2524 1387 -1378 + mu 0 4 396 400 404 397 + f 4 1390 2524 2525 -1385 + mu 0 4 401 405 406 402 + f 4 1391 1392 2526 -2525 + mu 0 4 405 407 408 406 + f 4 -2527 1393 1394 2527 + mu 0 4 406 408 409 410 + f 4 -2526 -2528 1395 -1386 + mu 0 4 402 406 410 403 + f 4 1398 2528 2529 -1393 + mu 0 4 407 411 412 408 + f 4 1399 1400 2530 -2529 + mu 0 4 411 413 414 412 + f 4 -2531 1401 1402 2531 + mu 0 4 412 414 415 416 + f 4 -2530 -2532 1403 -1394 + mu 0 4 408 412 416 409 + f 4 1406 2532 2533 -1401 + mu 0 4 413 417 418 414 + f 4 1407 1408 2534 -2533 + mu 0 4 417 419 420 418 + f 4 -2535 1409 1410 2535 + mu 0 4 418 420 421 422 + f 4 -2534 -2536 1411 -1402 + mu 0 4 414 418 422 415 + f 4 1414 2536 2537 -1409 + mu 0 4 419 423 424 420 + f 4 1415 1416 2538 -2537 + mu 0 4 423 2534 2533 424 + f 4 -2539 1417 1418 2539 + mu 0 4 424 2533 2530 428 + f 4 -2538 -2540 1419 -1410 + mu 0 4 420 424 428 421 + f 4 1420 2540 2541 -1417 + mu 0 4 425 429 430 426 + f 4 1421 -1372 2542 -2541 + mu 0 4 429 384 387 430 + f 4 -2543 -1371 1422 2543 + mu 0 4 430 387 392 431 + f 4 -2542 -2544 1423 -1418 + mu 0 4 426 430 431 427 + f 4 578 2544 2545 147 + mu 0 4 432 433 434 435 + f 4 579 576 2546 -2545 + mu 0 4 433 436 437 434 + f 4 -2547 577 144 2547 + mu 0 4 434 437 438 2337 + f 4 -2546 -2548 145 146 + mu 0 4 435 434 2337 2324 + f 4 582 2548 2549 -577 + mu 0 4 436 441 442 437 + f 4 583 580 2550 -2549 + mu 0 4 441 443 444 442 + f 4 -2551 581 148 2551 + mu 0 4 442 444 445 2335 + f 4 -2550 -2552 149 -578 + mu 0 4 437 442 2335 438 + f 4 586 2552 2553 -581 + mu 0 4 443 447 448 444 + f 4 587 584 2554 -2553 + mu 0 4 447 449 450 448 + f 4 -2555 585 150 2555 + mu 0 4 448 450 451 2333 + f 4 -2554 -2556 151 -582 + mu 0 4 444 448 2333 445 + f 4 590 2556 2557 -585 + mu 0 4 449 453 454 450 + f 4 591 588 2558 -2557 + mu 0 4 453 455 456 454 + f 4 -2559 589 152 2559 + mu 0 4 454 456 457 2331 + f 4 -2558 -2560 153 -586 + mu 0 4 450 454 2331 451 + f 4 594 2560 2561 -589 + mu 0 4 455 459 460 456 + f 4 595 592 2562 -2561 + mu 0 4 459 461 462 460 + f 4 -2563 593 154 2563 + mu 0 4 460 462 463 2329 + f 4 -2562 -2564 155 -590 + mu 0 4 456 460 2329 457 + f 4 598 2564 2565 -593 + mu 0 4 461 465 466 462 + f 4 599 596 2566 -2565 + mu 0 4 465 467 468 466 + f 4 -2567 597 156 2567 + mu 0 4 466 468 469 2327 + f 4 -2566 -2568 157 -594 + mu 0 4 462 466 2327 463 + f 4 602 2568 2569 -597 + mu 0 4 467 471 472 468 + f 4 603 600 2570 -2569 + mu 0 4 471 473 2590 472 + f 4 -2571 601 158 2571 + mu 0 4 472 2590 475 2325 + f 4 -2570 -2572 159 -598 + mu 0 4 468 472 2325 469 + f 4 604 2572 2573 -601 + mu 0 4 2532 477 478 474 + f 4 605 -148 2574 -2573 + mu 0 4 477 432 435 478 + f 4 -2575 -147 160 2575 + mu 0 4 478 435 2324 2322 + f 4 -2574 -2576 161 -602 + mu 0 4 474 478 2322 2592 + f 4 1476 2576 2577 1483 + mu 0 4 480 481 482 483 + f 4 1477 1478 2578 -2577 + mu 0 4 481 484 485 482 + f 4 -2579 1479 1480 2579 + mu 0 4 482 485 486 487 + f 4 -2578 -2580 1481 1482 + mu 0 4 483 482 487 488 + f 4 1486 2580 2581 -1479 + mu 0 4 484 489 490 485 + f 4 1487 1488 2582 -2581 + mu 0 4 489 491 492 490 + f 4 -2583 1489 1490 2583 + mu 0 4 490 492 493 494 + f 4 -2582 -2584 1491 -1480 + mu 0 4 485 490 494 486 + f 4 1494 2584 2585 -1489 + mu 0 4 491 495 496 492 + f 4 1495 1496 2586 -2585 + mu 0 4 495 497 498 496 + f 4 -2587 1497 1498 2587 + mu 0 4 496 498 499 500 + f 4 -2586 -2588 1499 -1490 + mu 0 4 492 496 500 493 + f 4 1502 2588 2589 -1497 + mu 0 4 497 501 502 498 + f 4 1503 1504 2590 -2589 + mu 0 4 501 503 504 502 + f 4 -2591 1505 1506 2591 + mu 0 4 502 504 505 506 + f 4 -2590 -2592 1507 -1498 + mu 0 4 498 502 506 499 + f 4 1510 2592 2593 -1505 + mu 0 4 503 507 508 504 + f 4 1511 1512 2594 -2593 + mu 0 4 507 509 510 508 + f 4 -2595 1513 1514 2595 + mu 0 4 508 510 511 512 + f 4 -2594 -2596 1515 -1506 + mu 0 4 504 508 512 505 + f 4 1518 2596 2597 -1513 + mu 0 4 509 513 514 510 + f 4 1519 1520 2598 -2597 + mu 0 4 513 515 516 514 + f 4 -2599 1521 1522 2599 + mu 0 4 514 516 517 518 + f 4 -2598 -2600 1523 -1514 + mu 0 4 510 514 518 511 + f 4 1526 2600 2601 -1521 + mu 0 4 515 519 520 516 + f 4 1527 1528 2602 -2601 + mu 0 4 519 2525 2524 520 + f 4 -2603 1529 1530 2603 + mu 0 4 520 2524 2521 524 + f 4 -2602 -2604 1531 -1522 + mu 0 4 516 520 524 517 + f 4 1532 2604 2605 -1529 + mu 0 4 521 525 526 522 + f 4 1533 -1484 2606 -2605 + mu 0 4 525 480 483 526 + f 4 -2607 -1483 1534 2607 + mu 0 4 526 483 488 527 + f 4 -2606 -2608 1535 -1530 + mu 0 4 522 526 527 523 + f 4 626 2608 2609 179 + mu 0 4 528 529 530 531 + f 4 627 624 2610 -2609 + mu 0 4 529 532 533 530 + f 4 -2611 625 176 2611 + mu 0 4 530 533 534 2353 + f 4 -2610 -2612 177 178 + mu 0 4 531 530 2353 2340 + f 4 630 2612 2613 -625 + mu 0 4 532 537 538 533 + f 4 631 628 2614 -2613 + mu 0 4 537 539 540 538 + f 4 -2615 629 180 2615 + mu 0 4 538 540 541 2351 + f 4 -2614 -2616 181 -626 + mu 0 4 533 538 2351 534 + f 4 634 2616 2617 -629 + mu 0 4 539 543 544 540 + f 4 635 632 2618 -2617 + mu 0 4 543 545 546 544 + f 4 -2619 633 182 2619 + mu 0 4 544 546 547 2349 + f 4 -2618 -2620 183 -630 + mu 0 4 540 544 2349 541 + f 4 638 2620 2621 -633 + mu 0 4 545 549 550 546 + f 4 639 636 2622 -2621 + mu 0 4 549 551 552 550 + f 4 -2623 637 184 2623 + mu 0 4 550 552 553 2347 + f 4 -2622 -2624 185 -634 + mu 0 4 546 550 2347 547 + f 4 642 2624 2625 -637 + mu 0 4 551 555 556 552 + f 4 643 640 2626 -2625 + mu 0 4 555 557 558 556 + f 4 -2627 641 186 2627 + mu 0 4 556 558 559 2345 + f 4 -2626 -2628 187 -638 + mu 0 4 552 556 2345 553 + f 4 646 2628 2629 -641 + mu 0 4 557 561 562 558 + f 4 647 644 2630 -2629 + mu 0 4 561 563 564 562 + f 4 -2631 645 188 2631 + mu 0 4 562 564 565 2343 + f 4 -2630 -2632 189 -642 + mu 0 4 558 562 2343 559 + f 4 650 2632 2633 -645 + mu 0 4 563 567 568 564 + f 4 651 648 2634 -2633 + mu 0 4 567 569 2587 568 + f 4 -2635 649 190 2635 + mu 0 4 568 2587 571 2341 + f 4 -2634 -2636 191 -646 + mu 0 4 564 568 2341 565 + f 4 652 2636 2637 -649 + mu 0 4 2523 573 574 570 + f 4 653 -180 2638 -2637 + mu 0 4 573 528 531 574 + f 4 -2639 -179 192 2639 + mu 0 4 574 531 2340 2338 + f 4 -2638 -2640 193 -650 + mu 0 4 570 574 2338 2589 + f 4 1588 2640 2641 1595 + mu 0 4 576 577 578 579 + f 4 1589 1590 2642 -2641 + mu 0 4 577 580 581 578 + f 4 -2643 1591 1592 2643 + mu 0 4 578 581 582 583 + f 4 -2642 -2644 1593 1594 + mu 0 4 579 578 583 584 + f 4 1598 2644 2645 -1591 + mu 0 4 580 585 586 581 + f 4 1599 1600 2646 -2645 + mu 0 4 585 587 588 586 + f 4 -2647 1601 1602 2647 + mu 0 4 586 588 589 590 + f 4 -2646 -2648 1603 -1592 + mu 0 4 581 586 590 582 + f 4 1606 2648 2649 -1601 + mu 0 4 587 591 592 588 + f 4 1607 1608 2650 -2649 + mu 0 4 591 593 594 592 + f 4 -2651 1609 1610 2651 + mu 0 4 592 594 595 596 + f 4 -2650 -2652 1611 -1602 + mu 0 4 588 592 596 589 + f 4 1614 2652 2653 -1609 + mu 0 4 593 597 598 594 + f 4 1615 1616 2654 -2653 + mu 0 4 597 599 600 598 + f 4 -2655 1617 1618 2655 + mu 0 4 598 600 601 602 + f 4 -2654 -2656 1619 -1610 + mu 0 4 594 598 602 595 + f 4 1622 2656 2657 -1617 + mu 0 4 599 603 604 600 + f 4 1623 1624 2658 -2657 + mu 0 4 603 605 606 604 + f 4 -2659 1625 1626 2659 + mu 0 4 604 606 607 608 + f 4 -2658 -2660 1627 -1618 + mu 0 4 600 604 608 601 + f 4 1630 2660 2661 -1625 + mu 0 4 605 609 610 606 + f 4 1631 1632 2662 -2661 + mu 0 4 609 611 612 610 + f 4 -2663 1633 1634 2663 + mu 0 4 610 612 613 614 + f 4 -2662 -2664 1635 -1626 + mu 0 4 606 610 614 607 + f 4 1638 2664 2665 -1633 + mu 0 4 611 615 616 612 + f 4 1639 1640 2666 -2665 + mu 0 4 615 2516 2515 616 + f 4 -2667 1641 1642 2667 + mu 0 4 616 2515 2512 620 + f 4 -2666 -2668 1643 -1634 + mu 0 4 612 616 620 613 + f 4 1644 2668 2669 -1641 + mu 0 4 617 621 622 618 + f 4 1645 -1596 2670 -2669 + mu 0 4 621 576 579 622 + f 4 -2671 -1595 1646 2671 + mu 0 4 622 579 584 623 + f 4 -2670 -2672 1647 -1642 + mu 0 4 618 622 623 619 + f 4 674 2672 2673 211 + mu 0 4 624 625 626 627 + f 4 675 672 2674 -2673 + mu 0 4 625 628 629 626 + f 4 -2675 673 208 2675 + mu 0 4 626 629 630 2369 + f 4 -2674 -2676 209 210 + mu 0 4 627 626 2369 2356 + f 4 678 2676 2677 -673 + mu 0 4 628 633 634 629 + f 4 679 676 2678 -2677 + mu 0 4 633 635 636 634 + f 4 -2679 677 212 2679 + mu 0 4 634 636 637 2367 + f 4 -2678 -2680 213 -674 + mu 0 4 629 634 2367 630 + f 4 682 2680 2681 -677 + mu 0 4 635 639 640 636 + f 4 683 680 2682 -2681 + mu 0 4 639 641 642 640 + f 4 -2683 681 214 2683 + mu 0 4 640 642 643 2365 + f 4 -2682 -2684 215 -678 + mu 0 4 636 640 2365 637 + f 4 686 2684 2685 -681 + mu 0 4 641 645 646 642 + f 4 687 684 2686 -2685 + mu 0 4 645 647 648 646 + f 4 -2687 685 216 2687 + mu 0 4 646 648 649 2363 + f 4 -2686 -2688 217 -682 + mu 0 4 642 646 2363 643 + f 4 690 2688 2689 -685 + mu 0 4 647 651 652 648 + f 4 691 688 2690 -2689 + mu 0 4 651 653 654 652 + f 4 -2691 689 218 2691 + mu 0 4 652 654 655 2361 + f 4 -2690 -2692 219 -686 + mu 0 4 648 652 2361 649 + f 4 694 2692 2693 -689 + mu 0 4 653 657 658 654 + f 4 695 692 2694 -2693 + mu 0 4 657 659 660 658 + f 4 -2695 693 220 2695 + mu 0 4 658 660 661 2359 + f 4 -2694 -2696 221 -690 + mu 0 4 654 658 2359 655 + f 4 698 2696 2697 -693 + mu 0 4 659 663 664 660 + f 4 699 696 2698 -2697 + mu 0 4 663 665 2584 664 + f 4 -2699 697 222 2699 + mu 0 4 664 2584 667 2357 + f 4 -2698 -2700 223 -694 + mu 0 4 660 664 2357 661 + f 4 700 2700 2701 -697 + mu 0 4 2514 669 670 666 + f 4 701 -212 2702 -2701 + mu 0 4 669 624 627 670 + f 4 -2703 -211 224 2703 + mu 0 4 670 627 2356 2354 + f 4 -2702 -2704 225 -698 + mu 0 4 666 670 2354 2586 + f 4 1700 2704 2705 1707 + mu 0 4 672 673 674 675 + f 4 1701 1702 2706 -2705 + mu 0 4 673 676 677 674 + f 4 -2707 1703 1704 2707 + mu 0 4 674 677 678 679 + f 4 -2706 -2708 1705 1706 + mu 0 4 675 674 679 680 + f 4 1710 2708 2709 -1703 + mu 0 4 676 681 682 677 + f 4 1711 1712 2710 -2709 + mu 0 4 681 683 684 682 + f 4 -2711 1713 1714 2711 + mu 0 4 682 684 685 686 + f 4 -2710 -2712 1715 -1704 + mu 0 4 677 682 686 678 + f 4 1718 2712 2713 -1713 + mu 0 4 683 687 688 684 + f 4 1719 1720 2714 -2713 + mu 0 4 687 689 690 688 + f 4 -2715 1721 1722 2715 + mu 0 4 688 690 691 692 + f 4 -2714 -2716 1723 -1714 + mu 0 4 684 688 692 685 + f 4 1726 2716 2717 -1721 + mu 0 4 689 693 694 690 + f 4 1727 1728 2718 -2717 + mu 0 4 693 695 696 694 + f 4 -2719 1729 1730 2719 + mu 0 4 694 696 697 698 + f 4 -2718 -2720 1731 -1722 + mu 0 4 690 694 698 691 + f 4 1734 2720 2721 -1729 + mu 0 4 695 699 700 696 + f 4 1735 1736 2722 -2721 + mu 0 4 699 701 702 700 + f 4 -2723 1737 1738 2723 + mu 0 4 700 702 703 704 + f 4 -2722 -2724 1739 -1730 + mu 0 4 696 700 704 697 + f 4 1742 2724 2725 -1737 + mu 0 4 701 705 706 702 + f 4 1743 1744 2726 -2725 + mu 0 4 705 707 708 706 + f 4 -2727 1745 1746 2727 + mu 0 4 706 708 709 710 + f 4 -2726 -2728 1747 -1738 + mu 0 4 702 706 710 703 + f 4 1750 2728 2729 -1745 + mu 0 4 707 711 712 708 + f 4 1751 1752 2730 -2729 + mu 0 4 711 2507 2506 712 + f 4 -2731 1753 1754 2731 + mu 0 4 712 2506 2503 716 + f 4 -2730 -2732 1755 -1746 + mu 0 4 708 712 716 709 + f 4 1756 2732 2733 -1753 + mu 0 4 713 717 718 714 + f 4 1757 -1708 2734 -2733 + mu 0 4 717 672 675 718 + f 4 -2735 -1707 1758 2735 + mu 0 4 718 675 680 719 + f 4 -2734 -2736 1759 -1754 + mu 0 4 714 718 719 715 + f 4 722 2736 2737 243 + mu 0 4 720 721 722 723 + f 4 723 720 2738 -2737 + mu 0 4 721 724 725 722 + f 4 -2739 721 240 2739 + mu 0 4 722 725 726 2385 + f 4 -2738 -2740 241 242 + mu 0 4 723 722 2385 2372 + f 4 726 2740 2741 -721 + mu 0 4 724 729 730 725 + f 4 727 724 2742 -2741 + mu 0 4 729 731 732 730 + f 4 -2743 725 244 2743 + mu 0 4 730 732 733 2383 + f 4 -2742 -2744 245 -722 + mu 0 4 725 730 2383 726 + f 4 730 2744 2745 -725 + mu 0 4 731 735 736 732 + f 4 731 728 2746 -2745 + mu 0 4 735 737 738 736 + f 4 -2747 729 246 2747 + mu 0 4 736 738 739 2381 + f 4 -2746 -2748 247 -726 + mu 0 4 732 736 2381 733 + f 4 734 2748 2749 -729 + mu 0 4 737 741 742 738 + f 4 735 732 2750 -2749 + mu 0 4 741 743 744 742 + f 4 -2751 733 248 2751 + mu 0 4 742 744 745 2379 + f 4 -2750 -2752 249 -730 + mu 0 4 738 742 2379 739 + f 4 738 2752 2753 -733 + mu 0 4 743 747 748 744 + f 4 739 736 2754 -2753 + mu 0 4 747 749 750 748 + f 4 -2755 737 250 2755 + mu 0 4 748 750 751 2377 + f 4 -2754 -2756 251 -734 + mu 0 4 744 748 2377 745; + setAttr ".fc[500:999]" + f 4 742 2756 2757 -737 + mu 0 4 749 753 754 750 + f 4 743 740 2758 -2757 + mu 0 4 753 755 756 754 + f 4 -2759 741 252 2759 + mu 0 4 754 756 757 2375 + f 4 -2758 -2760 253 -738 + mu 0 4 750 754 2375 751 + f 4 746 2760 2761 -741 + mu 0 4 755 759 760 756 + f 4 747 744 2762 -2761 + mu 0 4 759 761 2581 760 + f 4 -2763 745 254 2763 + mu 0 4 760 2581 763 2373 + f 4 -2762 -2764 255 -742 + mu 0 4 756 760 2373 757 + f 4 748 2764 2765 -745 + mu 0 4 2505 765 766 762 + f 4 749 -244 2766 -2765 + mu 0 4 765 720 723 766 + f 4 -2767 -243 256 2767 + mu 0 4 766 723 2372 2370 + f 4 -2766 -2768 257 -746 + mu 0 4 762 766 2370 2583 + f 4 1812 2768 2769 1819 + mu 0 4 768 769 770 771 + f 4 1813 1814 2770 -2769 + mu 0 4 769 772 773 770 + f 4 -2771 1815 1816 2771 + mu 0 4 770 773 774 775 + f 4 -2770 -2772 1817 1818 + mu 0 4 771 770 775 776 + f 4 1822 2772 2773 -1815 + mu 0 4 772 777 778 773 + f 4 1823 1824 2774 -2773 + mu 0 4 777 779 780 778 + f 4 -2775 1825 1826 2775 + mu 0 4 778 780 781 782 + f 4 -2774 -2776 1827 -1816 + mu 0 4 773 778 782 774 + f 4 1830 2776 2777 -1825 + mu 0 4 779 783 784 780 + f 4 1831 1832 2778 -2777 + mu 0 4 783 785 786 784 + f 4 -2779 1833 1834 2779 + mu 0 4 784 786 787 788 + f 4 -2778 -2780 1835 -1826 + mu 0 4 780 784 788 781 + f 4 1838 2780 2781 -1833 + mu 0 4 785 789 790 786 + f 4 1839 1840 2782 -2781 + mu 0 4 789 791 792 790 + f 4 -2783 1841 1842 2783 + mu 0 4 790 792 793 794 + f 4 -2782 -2784 1843 -1834 + mu 0 4 786 790 794 787 + f 4 1846 2784 2785 -1841 + mu 0 4 791 795 796 792 + f 4 1847 1848 2786 -2785 + mu 0 4 795 797 798 796 + f 4 -2787 1849 1850 2787 + mu 0 4 796 798 799 800 + f 4 -2786 -2788 1851 -1842 + mu 0 4 792 796 800 793 + f 4 1854 2788 2789 -1849 + mu 0 4 797 801 802 798 + f 4 1855 1856 2790 -2789 + mu 0 4 801 803 804 802 + f 4 -2791 1857 1858 2791 + mu 0 4 802 804 805 806 + f 4 -2790 -2792 1859 -1850 + mu 0 4 798 802 806 799 + f 4 1862 2792 2793 -1857 + mu 0 4 803 807 808 804 + f 4 1863 1864 2794 -2793 + mu 0 4 807 2498 2497 808 + f 4 -2795 1865 1866 2795 + mu 0 4 808 2497 2494 812 + f 4 -2794 -2796 1867 -1858 + mu 0 4 804 808 812 805 + f 4 1868 2796 2797 -1865 + mu 0 4 809 813 814 810 + f 4 1869 -1820 2798 -2797 + mu 0 4 813 768 771 814 + f 4 -2799 -1819 1870 2799 + mu 0 4 814 771 776 815 + f 4 -2798 -2800 1871 -1866 + mu 0 4 810 814 815 811 + f 4 770 2800 2801 275 + mu 0 4 816 817 818 819 + f 4 771 768 2802 -2801 + mu 0 4 817 820 821 818 + f 4 -2803 769 272 2803 + mu 0 4 818 821 822 2401 + f 4 -2802 -2804 273 274 + mu 0 4 819 818 2401 2388 + f 4 774 2804 2805 -769 + mu 0 4 820 825 826 821 + f 4 775 772 2806 -2805 + mu 0 4 825 827 828 826 + f 4 -2807 773 276 2807 + mu 0 4 826 828 829 2399 + f 4 -2806 -2808 277 -770 + mu 0 4 821 826 2399 822 + f 4 778 2808 2809 -773 + mu 0 4 827 831 832 828 + f 4 779 776 2810 -2809 + mu 0 4 831 833 834 832 + f 4 -2811 777 278 2811 + mu 0 4 832 834 835 2397 + f 4 -2810 -2812 279 -774 + mu 0 4 828 832 2397 829 + f 4 782 2812 2813 -777 + mu 0 4 833 837 838 834 + f 4 783 780 2814 -2813 + mu 0 4 837 839 840 838 + f 4 -2815 781 280 2815 + mu 0 4 838 840 841 2395 + f 4 -2814 -2816 281 -778 + mu 0 4 834 838 2395 835 + f 4 786 2816 2817 -781 + mu 0 4 839 843 844 840 + f 4 787 784 2818 -2817 + mu 0 4 843 845 846 844 + f 4 -2819 785 282 2819 + mu 0 4 844 846 847 2393 + f 4 -2818 -2820 283 -782 + mu 0 4 840 844 2393 841 + f 4 790 2820 2821 -785 + mu 0 4 845 849 850 846 + f 4 791 788 2822 -2821 + mu 0 4 849 851 852 850 + f 4 -2823 789 284 2823 + mu 0 4 850 852 853 2391 + f 4 -2822 -2824 285 -786 + mu 0 4 846 850 2391 847 + f 4 794 2824 2825 -789 + mu 0 4 851 855 856 852 + f 4 795 792 2826 -2825 + mu 0 4 855 857 2578 856 + f 4 -2827 793 286 2827 + mu 0 4 856 2578 859 2389 + f 4 -2826 -2828 287 -790 + mu 0 4 852 856 2389 853 + f 4 796 2828 2829 -793 + mu 0 4 2496 861 862 858 + f 4 797 -276 2830 -2829 + mu 0 4 861 816 819 862 + f 4 -2831 -275 288 2831 + mu 0 4 862 819 2388 2386 + f 4 -2830 -2832 289 -794 + mu 0 4 858 862 2386 2580 + f 4 1924 2832 2833 1931 + mu 0 4 864 865 866 867 + f 4 1925 1926 2834 -2833 + mu 0 4 865 868 869 866 + f 4 -2835 1927 1928 2835 + mu 0 4 866 869 870 871 + f 4 -2834 -2836 1929 1930 + mu 0 4 867 866 871 872 + f 4 1934 2836 2837 -1927 + mu 0 4 868 873 874 869 + f 4 1935 1936 2838 -2837 + mu 0 4 873 875 876 874 + f 4 -2839 1937 1938 2839 + mu 0 4 874 876 877 878 + f 4 -2838 -2840 1939 -1928 + mu 0 4 869 874 878 870 + f 4 1942 2840 2841 -1937 + mu 0 4 875 879 880 876 + f 4 1943 1944 2842 -2841 + mu 0 4 879 881 882 880 + f 4 -2843 1945 1946 2843 + mu 0 4 880 882 883 884 + f 4 -2842 -2844 1947 -1938 + mu 0 4 876 880 884 877 + f 4 1950 2844 2845 -1945 + mu 0 4 881 885 886 882 + f 4 1951 1952 2846 -2845 + mu 0 4 885 887 888 886 + f 4 -2847 1953 1954 2847 + mu 0 4 886 888 889 890 + f 4 -2846 -2848 1955 -1946 + mu 0 4 882 886 890 883 + f 4 1958 2848 2849 -1953 + mu 0 4 887 891 892 888 + f 4 1959 1960 2850 -2849 + mu 0 4 891 893 894 892 + f 4 -2851 1961 1962 2851 + mu 0 4 892 894 895 896 + f 4 -2850 -2852 1963 -1954 + mu 0 4 888 892 896 889 + f 4 1966 2852 2853 -1961 + mu 0 4 893 897 898 894 + f 4 1967 1968 2854 -2853 + mu 0 4 897 899 900 898 + f 4 -2855 1969 1970 2855 + mu 0 4 898 900 901 902 + f 4 -2854 -2856 1971 -1962 + mu 0 4 894 898 902 895 + f 4 1974 2856 2857 -1969 + mu 0 4 899 903 904 900 + f 4 1975 1976 2858 -2857 + mu 0 4 903 2489 2488 904 + f 4 -2859 1977 1978 2859 + mu 0 4 904 2488 2485 908 + f 4 -2858 -2860 1979 -1970 + mu 0 4 900 904 908 901 + f 4 1980 2860 2861 -1977 + mu 0 4 905 909 910 906 + f 4 1981 -1932 2862 -2861 + mu 0 4 909 864 867 910 + f 4 -2863 -1931 1982 2863 + mu 0 4 910 867 872 911 + f 4 -2862 -2864 1983 -1978 + mu 0 4 906 910 911 907 + f 4 818 2864 2865 307 + mu 0 4 912 913 2417 2402 + f 4 819 816 2866 -2865 + mu 0 4 913 916 917 2417 + f 4 -2867 817 304 2867 + mu 0 4 914 2416 918 919 + f 4 -2866 -2868 305 306 + mu 0 4 915 914 919 920 + f 4 822 2868 2869 -817 + mu 0 4 916 921 2415 917 + f 4 823 820 2870 -2869 + mu 0 4 921 923 924 2415 + f 4 -2871 821 308 2871 + mu 0 4 922 2414 925 926 + f 4 -2870 -2872 309 -818 + mu 0 4 2416 922 926 918 + f 4 826 2872 2873 -821 + mu 0 4 923 927 2413 924 + f 4 827 824 2874 -2873 + mu 0 4 927 929 930 2413 + f 4 -2875 825 310 2875 + mu 0 4 928 2412 931 932 + f 4 -2874 -2876 311 -822 + mu 0 4 2414 928 932 925 + f 4 830 2876 2877 -825 + mu 0 4 929 933 2411 930 + f 4 831 828 2878 -2877 + mu 0 4 933 935 936 2411 + f 4 -2879 829 312 2879 + mu 0 4 934 2410 937 938 + f 4 -2878 -2880 313 -826 + mu 0 4 2412 934 938 931 + f 4 834 2880 2881 -829 + mu 0 4 935 939 2409 936 + f 4 835 832 2882 -2881 + mu 0 4 939 941 942 2409 + f 4 -2883 833 314 2883 + mu 0 4 940 2408 943 944 + f 4 -2882 -2884 315 -830 + mu 0 4 2410 940 944 937 + f 4 838 2884 2885 -833 + mu 0 4 941 945 2407 942 + f 4 839 836 2886 -2885 + mu 0 4 945 947 948 2407 + f 4 -2887 837 316 2887 + mu 0 4 946 2406 949 950 + f 4 -2886 -2888 317 -834 + mu 0 4 2408 946 950 943 + f 4 842 2888 2889 -837 + mu 0 4 947 951 2405 948 + f 4 843 840 2890 -2889 + mu 0 4 951 953 2575 2405 + f 4 -2891 841 318 2891 + mu 0 4 952 2404 955 956 + f 4 -2890 -2892 319 -838 + mu 0 4 2406 952 956 949 + f 4 844 2892 2893 -841 + mu 0 4 2487 957 2403 954 + f 4 845 -308 2894 -2893 + mu 0 4 957 912 2402 2403 + f 4 -2895 -307 320 2895 + mu 0 4 958 915 920 959 + f 4 -2894 -2896 321 -842 + mu 0 4 2576 958 959 2577 + f 4 2036 2896 2897 2043 + mu 0 4 960 961 962 963 + f 4 2037 2038 2898 -2897 + mu 0 4 961 964 965 962 + f 4 -2899 2039 2040 2899 + mu 0 4 962 965 966 967 + f 4 -2898 -2900 2041 2042 + mu 0 4 963 962 967 968 + f 4 2046 2900 2901 -2039 + mu 0 4 964 969 970 965 + f 4 2047 2048 2902 -2901 + mu 0 4 969 971 972 970 + f 4 -2903 2049 2050 2903 + mu 0 4 970 972 973 974 + f 4 -2902 -2904 2051 -2040 + mu 0 4 965 970 974 966 + f 4 2054 2904 2905 -2049 + mu 0 4 971 975 976 972 + f 4 2055 2056 2906 -2905 + mu 0 4 975 977 978 976 + f 4 -2907 2057 2058 2907 + mu 0 4 976 978 979 980 + f 4 -2906 -2908 2059 -2050 + mu 0 4 972 976 980 973 + f 4 2062 2908 2909 -2057 + mu 0 4 977 981 982 978 + f 4 2063 2064 2910 -2909 + mu 0 4 981 983 984 982 + f 4 -2911 2065 2066 2911 + mu 0 4 982 984 985 986 + f 4 -2910 -2912 2067 -2058 + mu 0 4 978 982 986 979 + f 4 2070 2912 2913 -2065 + mu 0 4 983 987 988 984 + f 4 2071 2072 2914 -2913 + mu 0 4 987 989 990 988 + f 4 -2915 2073 2074 2915 + mu 0 4 988 990 991 992 + f 4 -2914 -2916 2075 -2066 + mu 0 4 984 988 992 985 + f 4 2078 2916 2917 -2073 + mu 0 4 989 993 994 990 + f 4 2079 2080 2918 -2917 + mu 0 4 993 995 996 994 + f 4 -2919 2081 2082 2919 + mu 0 4 994 996 997 998 + f 4 -2918 -2920 2083 -2074 + mu 0 4 990 994 998 991 + f 4 2086 2920 2921 -2081 + mu 0 4 995 999 1000 996 + f 4 2087 2088 2922 -2921 + mu 0 4 999 2480 2479 1000 + f 4 -2923 2089 2090 2923 + mu 0 4 1000 2479 2476 1004 + f 4 -2922 -2924 2091 -2082 + mu 0 4 996 1000 1004 997 + f 4 2092 2924 2925 -2089 + mu 0 4 1001 1005 1006 1002 + f 4 2093 -2044 2926 -2925 + mu 0 4 1005 960 963 1006 + f 4 -2927 -2043 2094 2927 + mu 0 4 1006 963 968 1007 + f 4 -2926 -2928 2095 -2090 + mu 0 4 1002 1006 1007 1003 + f 4 866 2928 2929 339 + mu 0 4 1008 1009 1010 1011 + f 4 867 864 2930 -2929 + mu 0 4 1009 1012 1013 1010 + f 4 -2931 865 336 2931 + mu 0 4 1010 1013 1014 2433 + f 4 -2930 -2932 337 338 + mu 0 4 1011 1010 2433 2420 + f 4 870 2932 2933 -865 + mu 0 4 1012 1017 1018 1013 + f 4 871 868 2934 -2933 + mu 0 4 1017 1019 1020 1018 + f 4 -2935 869 340 2935 + mu 0 4 1018 1020 1021 2431 + f 4 -2934 -2936 341 -866 + mu 0 4 1013 1018 2431 1014 + f 4 874 2936 2937 -869 + mu 0 4 1019 1023 1024 1020 + f 4 875 872 2938 -2937 + mu 0 4 1023 1025 1026 1024 + f 4 -2939 873 342 2939 + mu 0 4 1024 1026 1027 2429 + f 4 -2938 -2940 343 -870 + mu 0 4 1020 1024 2429 1021 + f 4 878 2940 2941 -873 + mu 0 4 1025 1029 1030 1026 + f 4 879 876 2942 -2941 + mu 0 4 1029 1031 1032 1030 + f 4 -2943 877 344 2943 + mu 0 4 1030 1032 1033 2427 + f 4 -2942 -2944 345 -874 + mu 0 4 1026 1030 2427 1027 + f 4 882 2944 2945 -877 + mu 0 4 1031 1035 1036 1032 + f 4 883 880 2946 -2945 + mu 0 4 1035 1037 1038 1036 + f 4 -2947 881 346 2947 + mu 0 4 1036 1038 1039 2425 + f 4 -2946 -2948 347 -878 + mu 0 4 1032 1036 2425 1033 + f 4 886 2948 2949 -881 + mu 0 4 1037 1041 1042 1038 + f 4 887 884 2950 -2949 + mu 0 4 1041 1043 1044 1042 + f 4 -2951 885 348 2951 + mu 0 4 1042 1044 1045 2423 + f 4 -2950 -2952 349 -882 + mu 0 4 1038 1042 2423 1039 + f 4 890 2952 2953 -885 + mu 0 4 1043 1047 1048 1044 + f 4 891 888 2954 -2953 + mu 0 4 1047 1049 2572 1048 + f 4 -2955 889 350 2955 + mu 0 4 1048 2572 1051 2421 + f 4 -2954 -2956 351 -886 + mu 0 4 1044 1048 2421 1045 + f 4 892 2956 2957 -889 + mu 0 4 2478 1053 1054 1050 + f 4 893 -340 2958 -2957 + mu 0 4 1053 1008 1011 1054 + f 4 -2959 -339 352 2959 + mu 0 4 1054 1011 2420 2418 + f 4 -2958 -2960 353 -890 + mu 0 4 1050 1054 2418 2574 + f 4 2148 2960 2961 2155 + mu 0 4 1056 1057 1058 1059 + f 4 2149 2150 2962 -2961 + mu 0 4 1057 1060 1061 1058 + f 4 -2963 2151 2152 2963 + mu 0 4 1058 1061 1062 1063 + f 4 -2962 -2964 2153 2154 + mu 0 4 1059 1058 1063 1064 + f 4 2158 2964 2965 -2151 + mu 0 4 1060 1065 1066 1061 + f 4 2159 2160 2966 -2965 + mu 0 4 1065 1067 1068 1066 + f 4 -2967 2161 2162 2967 + mu 0 4 1066 1068 1069 1070 + f 4 -2966 -2968 2163 -2152 + mu 0 4 1061 1066 1070 1062 + f 4 2166 2968 2969 -2161 + mu 0 4 1067 1071 1072 1068 + f 4 2167 2168 2970 -2969 + mu 0 4 1071 1073 1074 1072 + f 4 -2971 2169 2170 2971 + mu 0 4 1072 1074 1075 1076 + f 4 -2970 -2972 2171 -2162 + mu 0 4 1068 1072 1076 1069 + f 4 2174 2972 2973 -2169 + mu 0 4 1073 1077 1078 1074 + f 4 2175 2176 2974 -2973 + mu 0 4 1077 1079 1080 1078 + f 4 -2975 2177 2178 2975 + mu 0 4 1078 1080 1081 1082 + f 4 -2974 -2976 2179 -2170 + mu 0 4 1074 1078 1082 1075 + f 4 2182 2976 2977 -2177 + mu 0 4 1079 1083 1084 1080 + f 4 2183 2184 2978 -2977 + mu 0 4 1083 1085 1086 1084 + f 4 -2979 2185 2186 2979 + mu 0 4 1084 1086 1087 1088 + f 4 -2978 -2980 2187 -2178 + mu 0 4 1080 1084 1088 1081 + f 4 2190 2980 2981 -2185 + mu 0 4 1085 1089 1090 1086 + f 4 2191 2192 2982 -2981 + mu 0 4 1089 1091 1092 1090 + f 4 -2983 2193 2194 2983 + mu 0 4 1090 1092 1093 1094 + f 4 -2982 -2984 2195 -2186 + mu 0 4 1086 1090 1094 1087 + f 4 2198 2984 2985 -2193 + mu 0 4 1091 1095 1096 1092 + f 4 2199 2200 2986 -2985 + mu 0 4 1095 2471 2470 1096 + f 4 -2987 2201 2202 2987 + mu 0 4 1096 2470 2468 1100 + f 4 -2986 -2988 2203 -2194 + mu 0 4 1092 1096 1100 1093 + f 4 2204 2988 2989 -2201 + mu 0 4 1097 1101 1102 1098 + f 4 2205 -2156 2990 -2989 + mu 0 4 1101 1056 1059 1102 + f 4 -2991 -2155 2206 2991 + mu 0 4 1102 1059 1064 1103 + f 4 -2990 -2992 2207 -2202 + mu 0 4 1098 1102 1103 1099 + f 4 -2154 2992 2993 2217 + mu 0 4 1064 1063 1104 1105 + f 4 -2153 2210 2994 -2993 + mu 0 4 1063 1062 1106 1104 + f 4 -2995 2211 2214 2995 + mu 0 4 1104 1106 1107 1108 + f 4 -2994 -2996 2215 2216 + mu 0 4 1105 1104 1108 1109 + f 4 -2164 2996 2997 -2211 + mu 0 4 1062 1070 1110 1106 + f 4 -2163 2220 2998 -2997 + mu 0 4 1070 1069 1111 1110 + f 4 -2999 2221 2222 2999 + mu 0 4 1110 1111 1112 1113 + f 4 -2998 -3000 2223 -2212 + mu 0 4 1106 1110 1113 1107 + f 4 -2172 3000 3001 -2221 + mu 0 4 1069 1076 1114 1111 + f 4 -2171 2226 3002 -3001 + mu 0 4 1076 1075 1115 1114 + f 4 -3003 2227 2228 3003 + mu 0 4 1114 1115 1116 1117 + f 4 -3002 -3004 2229 -2222 + mu 0 4 1111 1114 1117 1112 + f 4 -2180 3004 3005 -2227 + mu 0 4 1075 1082 1118 1115 + f 4 -2179 2232 3006 -3005 + mu 0 4 1082 1081 1119 1118 + f 4 -3007 2233 2234 3007 + mu 0 4 1118 1119 1120 1121 + f 4 -3006 -3008 2235 -2228 + mu 0 4 1115 1118 1121 1116 + f 4 -2188 3008 3009 -2233 + mu 0 4 1081 1088 1122 1119 + f 4 -2187 2238 3010 -3009 + mu 0 4 1088 1087 1123 1122 + f 4 -3011 2239 2240 3011 + mu 0 4 1122 1123 1124 1125 + f 4 -3010 -3012 2241 -2234 + mu 0 4 1119 1122 1125 1120 + f 4 -2196 3012 3013 -2239 + mu 0 4 1087 1094 1126 1123 + f 4 -2195 2244 3014 -3013 + mu 0 4 1094 1093 1127 1126 + f 4 -3015 2245 2246 3015 + mu 0 4 1126 1127 1128 1129 + f 4 -3014 -3016 2247 -2240 + mu 0 4 1123 1126 1129 1124 + f 4 -2204 3016 3017 -2245 + mu 0 4 1093 1100 1130 1127 + f 4 -2203 2250 3018 -3017 + mu 0 4 1100 2468 2466 1130 + f 4 -3019 2251 2252 3019 + mu 0 4 1130 2466 2467 1133 + f 4 -3018 -3020 2253 -2246 + mu 0 4 1127 1130 1133 1128 + f 4 -2208 3020 3021 -2251 + mu 0 4 1099 1103 1134 1131 + f 4 -2207 -2218 3022 -3021 + mu 0 4 1103 1064 1105 1134 + f 4 -3023 -2217 2254 3023 + mu 0 4 1134 1105 1109 1135 + f 4 -3022 -3024 2255 -2252 + mu 0 4 1131 1134 1135 1132 + f 4 -14 3024 3025 -15 + mu 0 4 1136 1137 1138 1139 + f 4 -12 3026 -3025 -13 + mu 0 4 1140 1141 1138 1137 + f 4 -10 3027 -3027 -11 + mu 0 4 1142 1143 1138 1141 + f 4 -8 3028 -3028 -9 + mu 0 4 1144 1145 1138 1143 + f 4 -6 3029 -3029 -7 + mu 0 4 1146 1147 1138 1145 + f 4 -4 3030 -3030 -5 + mu 0 4 1148 1149 1138 1147 + f 4 -2 3031 -3031 -3 + mu 0 4 1150 1151 1138 1149 + f 4 -16 -3026 -3032 -1 + mu 0 4 1152 1139 1138 1151 + f 4 -370 3032 3033 -383 + mu 0 4 1153 1154 1155 1156 + f 4 -372 3034 -3033 -369 + mu 0 4 1157 1158 1155 1154 + f 4 -374 3035 -3035 -371 + mu 0 4 1159 1160 1155 1158 + f 4 -376 3036 -3036 -373 + mu 0 4 1161 1162 1155 1160 + f 4 -378 3037 -3037 -375 + mu 0 4 1163 1164 1155 1162 + f 4 -380 3038 -3038 -377 + mu 0 4 1165 1166 1155 1164 + f 4 -382 3039 -3039 -379 + mu 0 4 1167 1168 1155 1166 + f 4 -384 -3034 -3040 -381 + mu 0 4 1169 1156 1155 1168 + f 4 -922 3040 3041 985 + mu 0 4 8 7 1170 1171 + f 4 -921 978 3042 -3041 + mu 0 4 7 6 1172 1170 + f 4 -3043 979 -984 3043 + mu 0 4 1170 1172 1173 1174 + f 4 -3042 -3044 -983 984 + mu 0 4 1171 1170 1174 1175 + f 4 -932 3044 3045 -979 + mu 0 4 6 14 1176 1172 + f 4 -931 988 3046 -3045 + mu 0 4 14 13 1177 1176 + f 4 -3047 989 -992 3047 + mu 0 4 1176 1177 1178 1179 + f 4 -3046 -3048 -991 -980 + mu 0 4 1172 1176 1179 1173 + f 4 -940 3048 3049 -989 + mu 0 4 13 20 1180 1177 + f 4 -939 994 3050 -3049 + mu 0 4 20 19 1181 1180 + f 4 -3051 995 -998 3051 + mu 0 4 1180 1181 1182 1183 + f 4 -3050 -3052 -997 -990 + mu 0 4 1177 1180 1183 1178 + f 4 -948 3052 3053 -995 + mu 0 4 19 26 1184 1181 + f 4 -947 1000 3054 -3053 + mu 0 4 26 25 1185 1184 + f 4 -3055 1001 -1004 3055 + mu 0 4 1184 1185 1186 1187 + f 4 -3054 -3056 -1003 -996 + mu 0 4 1181 1184 1187 1182 + f 4 -956 3056 3057 -1001 + mu 0 4 25 32 1188 1185 + f 4 -955 1006 3058 -3057 + mu 0 4 32 31 1189 1188 + f 4 -3059 1007 -1010 3059 + mu 0 4 1188 1189 1190 1191 + f 4 -3058 -3060 -1009 -1002 + mu 0 4 1185 1188 1191 1186 + f 4 -964 3060 3061 -1007 + mu 0 4 31 38 1192 1189 + f 4 -963 1012 3062 -3061 + mu 0 4 38 37 1193 1192 + f 4 -3063 1013 -1016 3063 + mu 0 4 1192 1193 1194 1195 + f 4 -3062 -3064 -1015 -1008 + mu 0 4 1189 1192 1195 1190 + f 4 -972 3064 3065 -1013 + mu 0 4 37 44 1196 1193 + f 4 -971 1018 3066 -3065 + mu 0 4 44 2566 2564 1196 + f 4 -3067 1019 -1022 3067 + mu 0 4 1196 2564 2565 1199 + f 4 -3066 -3068 -1021 -1014 + mu 0 4 1193 1196 1199 1194 + f 4 -976 3068 3069 -1019 + mu 0 4 43 47 1200 1197 + f 4 -975 -986 3070 -3069 + mu 0 4 47 8 1171 1200 + f 4 -3071 -985 -1024 3071 + mu 0 4 1200 1171 1175 1201 + f 4 -3070 -3072 -1023 -1020 + mu 0 4 1197 1200 1201 1198 + f 4 -18 3072 3073 415 + mu 0 4 56 55 1202 1203 + f 4 -17 34 3074 -3073 + mu 0 4 55 2272 1204 1202 + f 4 -3075 35 -418 3075 + mu 0 4 1202 1204 1205 1206 + f 4 -3074 -3076 -417 414 + mu 0 4 1203 1202 1206 1207 + f 4 -22 3076 3077 -35 + mu 0 4 2272 62 1208 1204 + f 4 -21 36 3078 -3077 + mu 0 4 62 2270 1209 1208 + f 4 -3079 37 -420 3079 + mu 0 4 1208 1209 1210 1211 + f 4 -3078 -3080 -419 -36 + mu 0 4 1204 1208 1211 1205 + f 4 -24 3080 3081 -37 + mu 0 4 2270 68 1212 1209 + f 4 -23 38 3082 -3081 + mu 0 4 68 2268 1213 1212 + f 4 -3083 39 -422 3083 + mu 0 4 1212 1213 1214 1215 + f 4 -3082 -3084 -421 -38 + mu 0 4 1209 1212 1215 1210 + f 4 -26 3084 3085 -39 + mu 0 4 2268 74 1216 1213 + f 4 -25 40 3086 -3085 + mu 0 4 74 2266 1217 1216 + f 4 -3087 41 -424 3087 + mu 0 4 1216 1217 1218 1219 + f 4 -3086 -3088 -423 -40 + mu 0 4 1213 1216 1219 1214 + f 4 -28 3088 3089 -41 + mu 0 4 2266 80 1220 1217 + f 4 -27 42 3090 -3089 + mu 0 4 80 2264 1221 1220 + f 4 -3091 43 -426 3091 + mu 0 4 1220 1221 1222 1223 + f 4 -3090 -3092 -425 -42 + mu 0 4 1217 1220 1223 1218 + f 4 -30 3092 3093 -43 + mu 0 4 2264 86 1224 1221 + f 4 -29 44 3094 -3093 + mu 0 4 86 2262 1225 1224 + f 4 -3095 45 -428 3095 + mu 0 4 1224 1225 1226 1227 + f 4 -3094 -3096 -427 -44 + mu 0 4 1221 1224 1227 1222 + f 4 -32 3096 3097 -45 + mu 0 4 2262 92 1228 1225 + f 4 -31 46 3098 -3097 + mu 0 4 92 2259 2615 1228 + f 4 -3099 47 -430 3099 + mu 0 4 1228 2615 2563 1231 + f 4 -3098 -3100 -429 -46 + mu 0 4 1225 1228 1231 1226 + f 4 -34 3100 3101 -47 + mu 0 4 2603 95 1232 1229 + f 4 -33 -416 3102 -3101 + mu 0 4 95 56 1203 1232 + f 4 -3103 -415 -432 3103 + mu 0 4 1232 1203 1207 1233 + f 4 -3102 -3104 -431 -48 + mu 0 4 1229 1232 1233 1230 + f 4 -1034 3104 3105 1097 + mu 0 4 104 103 1234 1235 + f 4 -1033 1090 3106 -3105 + mu 0 4 103 102 1236 1234 + f 4 -3107 1091 -1096 3107 + mu 0 4 1234 1236 1237 1238 + f 4 -3106 -3108 -1095 1096 + mu 0 4 1235 1234 1238 1239 + f 4 -1044 3108 3109 -1091 + mu 0 4 102 110 1240 1236 + f 4 -1043 1100 3110 -3109 + mu 0 4 110 109 1241 1240 + f 4 -3111 1101 -1104 3111 + mu 0 4 1240 1241 1242 1243 + f 4 -3110 -3112 -1103 -1092 + mu 0 4 1236 1240 1243 1237 + f 4 -1052 3112 3113 -1101 + mu 0 4 109 116 1244 1241 + f 4 -1051 1106 3114 -3113 + mu 0 4 116 115 1245 1244 + f 4 -3115 1107 -1110 3115 + mu 0 4 1244 1245 1246 1247 + f 4 -3114 -3116 -1109 -1102 + mu 0 4 1241 1244 1247 1242 + f 4 -1060 3116 3117 -1107 + mu 0 4 115 122 1248 1245 + f 4 -1059 1112 3118 -3117 + mu 0 4 122 121 1249 1248 + f 4 -3119 1113 -1116 3119 + mu 0 4 1248 1249 1250 1251 + f 4 -3118 -3120 -1115 -1108 + mu 0 4 1245 1248 1251 1246 + f 4 -1068 3120 3121 -1113 + mu 0 4 121 128 1252 1249 + f 4 -1067 1118 3122 -3121 + mu 0 4 128 127 1253 1252 + f 4 -3123 1119 -1122 3123 + mu 0 4 1252 1253 1254 1255 + f 4 -3122 -3124 -1121 -1114 + mu 0 4 1249 1252 1255 1250 + f 4 -1076 3124 3125 -1119 + mu 0 4 127 134 1256 1253 + f 4 -1075 1124 3126 -3125 + mu 0 4 134 133 1257 1256 + f 4 -3127 1125 -1128 3127 + mu 0 4 1256 1257 1258 1259 + f 4 -3126 -3128 -1127 -1120 + mu 0 4 1253 1256 1259 1254 + f 4 -1084 3128 3129 -1125 + mu 0 4 133 140 1260 1257 + f 4 -1083 1130 3130 -3129 + mu 0 4 140 2557 2555 1260 + f 4 -3131 1131 -1134 3131 + mu 0 4 1260 2555 2556 1263 + f 4 -3130 -3132 -1133 -1126 + mu 0 4 1257 1260 1263 1258 + f 4 -1088 3132 3133 -1131 + mu 0 4 139 143 1264 1261 + f 4 -1087 -1098 3134 -3133 + mu 0 4 143 104 1235 1264 + f 4 -3135 -1097 -1136 3135 + mu 0 4 1264 1235 1239 1265 + f 4 -3134 -3136 -1135 -1132 + mu 0 4 1261 1264 1265 1262 + f 4 -50 3136 3137 463 + mu 0 4 152 151 1266 1267 + f 4 -49 66 3138 -3137 + mu 0 4 151 2288 1268 1266 + f 4 -3139 67 -466 3139 + mu 0 4 1266 1268 1269 1270 + f 4 -3138 -3140 -465 462 + mu 0 4 1267 1266 1270 1271 + f 4 -54 3140 3141 -67 + mu 0 4 2288 158 1272 1268 + f 4 -53 68 3142 -3141 + mu 0 4 158 2286 1273 1272 + f 4 -3143 69 -468 3143 + mu 0 4 1272 1273 1274 1275 + f 4 -3142 -3144 -467 -68 + mu 0 4 1268 1272 1275 1269 + f 4 -56 3144 3145 -69 + mu 0 4 2286 164 1276 1273 + f 4 -55 70 3146 -3145 + mu 0 4 164 2284 1277 1276 + f 4 -3147 71 -470 3147 + mu 0 4 1276 1277 1278 1279 + f 4 -3146 -3148 -469 -70 + mu 0 4 1273 1276 1279 1274 + f 4 -58 3148 3149 -71 + mu 0 4 2284 170 1280 1277 + f 4 -57 72 3150 -3149 + mu 0 4 170 2282 1281 1280 + f 4 -3151 73 -472 3151 + mu 0 4 1280 1281 1282 1283 + f 4 -3150 -3152 -471 -72 + mu 0 4 1277 1280 1283 1278 + f 4 -60 3152 3153 -73 + mu 0 4 2282 176 1284 1281 + f 4 -59 74 3154 -3153 + mu 0 4 176 2280 1285 1284 + f 4 -3155 75 -474 3155 + mu 0 4 1284 1285 1286 1287 + f 4 -3154 -3156 -473 -74 + mu 0 4 1281 1284 1287 1282 + f 4 -62 3156 3157 -75 + mu 0 4 2280 182 1288 1285 + f 4 -61 76 3158 -3157 + mu 0 4 182 2278 1289 1288 + f 4 -3159 77 -476 3159 + mu 0 4 1288 1289 1290 1291 + f 4 -3158 -3160 -475 -76 + mu 0 4 1285 1288 1291 1286 + f 4 -64 3160 3161 -77 + mu 0 4 2278 188 1292 1289 + f 4 -63 78 3162 -3161 + mu 0 4 188 2275 2614 1292 + f 4 -3163 79 -478 3163 + mu 0 4 1292 2614 2554 1295 + f 4 -3162 -3164 -477 -78 + mu 0 4 1289 1292 1295 1290 + f 4 -66 3164 3165 -79 + mu 0 4 2600 191 1296 1293 + f 4 -65 -464 3166 -3165 + mu 0 4 191 152 1267 1296 + f 4 -3167 -463 -480 3167 + mu 0 4 1296 1267 1271 1297 + f 4 -3166 -3168 -479 -80 + mu 0 4 1293 1296 1297 1294 + f 4 -1146 3168 3169 1209 + mu 0 4 200 199 1298 1299 + f 4 -1145 1202 3170 -3169 + mu 0 4 199 198 1300 1298 + f 4 -3171 1203 -1208 3171 + mu 0 4 1298 1300 1301 1302 + f 4 -3170 -3172 -1207 1208 + mu 0 4 1299 1298 1302 1303 + f 4 -1156 3172 3173 -1203 + mu 0 4 198 206 1304 1300 + f 4 -1155 1212 3174 -3173 + mu 0 4 206 205 1305 1304 + f 4 -3175 1213 -1216 3175 + mu 0 4 1304 1305 1306 1307 + f 4 -3174 -3176 -1215 -1204 + mu 0 4 1300 1304 1307 1301 + f 4 -1164 3176 3177 -1213 + mu 0 4 205 212 1308 1305 + f 4 -1163 1218 3178 -3177 + mu 0 4 212 211 1309 1308 + f 4 -3179 1219 -1222 3179 + mu 0 4 1308 1309 1310 1311 + f 4 -3178 -3180 -1221 -1214 + mu 0 4 1305 1308 1311 1306 + f 4 -1172 3180 3181 -1219 + mu 0 4 211 218 1312 1309 + f 4 -1171 1224 3182 -3181 + mu 0 4 218 217 1313 1312 + f 4 -3183 1225 -1228 3183 + mu 0 4 1312 1313 1314 1315 + f 4 -3182 -3184 -1227 -1220 + mu 0 4 1309 1312 1315 1310 + f 4 -1180 3184 3185 -1225 + mu 0 4 217 224 1316 1313 + f 4 -1179 1230 3186 -3185 + mu 0 4 224 223 1317 1316 + f 4 -3187 1231 -1234 3187 + mu 0 4 1316 1317 1318 1319 + f 4 -3186 -3188 -1233 -1226 + mu 0 4 1313 1316 1319 1314 + f 4 -1188 3188 3189 -1231 + mu 0 4 223 230 1320 1317 + f 4 -1187 1236 3190 -3189 + mu 0 4 230 229 1321 1320 + f 4 -3191 1237 -1240 3191 + mu 0 4 1320 1321 1322 1323 + f 4 -3190 -3192 -1239 -1232 + mu 0 4 1317 1320 1323 1318 + f 4 -1196 3192 3193 -1237 + mu 0 4 229 236 1324 1321 + f 4 -1195 1242 3194 -3193 + mu 0 4 236 2548 2546 1324 + f 4 -3195 1243 -1246 3195 + mu 0 4 1324 2546 2547 1327 + f 4 -3194 -3196 -1245 -1238 + mu 0 4 1321 1324 1327 1322 + f 4 -1200 3196 3197 -1243 + mu 0 4 235 239 1328 1325 + f 4 -1199 -1210 3198 -3197 + mu 0 4 239 200 1299 1328 + f 4 -3199 -1209 -1248 3199 + mu 0 4 1328 1299 1303 1329 + f 4 -3198 -3200 -1247 -1244 + mu 0 4 1325 1328 1329 1326 + f 4 -82 3200 3201 511 + mu 0 4 248 247 1330 1331 + f 4 -81 98 3202 -3201 + mu 0 4 247 2304 1332 1330 + f 4 -3203 99 -514 3203 + mu 0 4 1330 1332 1333 1334 + f 4 -3202 -3204 -513 510 + mu 0 4 1331 1330 1334 1335 + f 4 -86 3204 3205 -99 + mu 0 4 2304 254 1336 1332 + f 4 -85 100 3206 -3205 + mu 0 4 254 2302 1337 1336 + f 4 -3207 101 -516 3207 + mu 0 4 1336 1337 1338 1339 + f 4 -3206 -3208 -515 -100 + mu 0 4 1332 1336 1339 1333 + f 4 -88 3208 3209 -101 + mu 0 4 2302 260 1340 1337 + f 4 -87 102 3210 -3209 + mu 0 4 260 2300 1341 1340 + f 4 -3211 103 -518 3211 + mu 0 4 1340 1341 1342 1343 + f 4 -3210 -3212 -517 -102 + mu 0 4 1337 1340 1343 1338 + f 4 -90 3212 3213 -103 + mu 0 4 2300 266 1344 1341 + f 4 -89 104 3214 -3213 + mu 0 4 266 2298 1345 1344 + f 4 -3215 105 -520 3215 + mu 0 4 1344 1345 1346 1347 + f 4 -3214 -3216 -519 -104 + mu 0 4 1341 1344 1347 1342 + f 4 -92 3216 3217 -105 + mu 0 4 2298 272 1348 1345 + f 4 -91 106 3218 -3217 + mu 0 4 272 2296 1349 1348 + f 4 -3219 107 -522 3219 + mu 0 4 1348 1349 1350 1351 + f 4 -3218 -3220 -521 -106 + mu 0 4 1345 1348 1351 1346 + f 4 -94 3220 3221 -107 + mu 0 4 2296 278 1352 1349 + f 4 -93 108 3222 -3221 + mu 0 4 278 2294 1353 1352 + f 4 -3223 109 -524 3223 + mu 0 4 1352 1353 1354 1355 + f 4 -3222 -3224 -523 -108 + mu 0 4 1349 1352 1355 1350 + f 4 -96 3224 3225 -109 + mu 0 4 2294 284 1356 1353 + f 4 -95 110 3226 -3225 + mu 0 4 284 2291 2613 1356 + f 4 -3227 111 -526 3227 + mu 0 4 1356 2613 2545 1359 + f 4 -3226 -3228 -525 -110 + mu 0 4 1353 1356 1359 1354 + f 4 -98 3228 3229 -111 + mu 0 4 2597 287 1360 1357 + f 4 -97 -512 3230 -3229 + mu 0 4 287 248 1331 1360 + f 4 -3231 -511 -528 3231 + mu 0 4 1360 1331 1335 1361 + f 4 -3230 -3232 -527 -112 + mu 0 4 1357 1360 1361 1358 + f 4 -1258 3232 3233 1321 + mu 0 4 296 295 1362 1363 + f 4 -1257 1314 3234 -3233 + mu 0 4 295 294 1364 1362 + f 4 -3235 1315 -1320 3235 + mu 0 4 1362 1364 1365 1366 + f 4 -3234 -3236 -1319 1320 + mu 0 4 1363 1362 1366 1367 + f 4 -1268 3236 3237 -1315 + mu 0 4 294 302 1368 1364 + f 4 -1267 1324 3238 -3237 + mu 0 4 302 301 1369 1368 + f 4 -3239 1325 -1328 3239 + mu 0 4 1368 1369 1370 1371 + f 4 -3238 -3240 -1327 -1316 + mu 0 4 1364 1368 1371 1365 + f 4 -1276 3240 3241 -1325 + mu 0 4 301 308 1372 1369 + f 4 -1275 1330 3242 -3241 + mu 0 4 308 307 1373 1372 + f 4 -3243 1331 -1334 3243 + mu 0 4 1372 1373 1374 1375 + f 4 -3242 -3244 -1333 -1326 + mu 0 4 1369 1372 1375 1370 + f 4 -1284 3244 3245 -1331 + mu 0 4 307 314 1376 1373 + f 4 -1283 1336 3246 -3245 + mu 0 4 314 313 1377 1376 + f 4 -3247 1337 -1340 3247 + mu 0 4 1376 1377 1378 1379 + f 4 -3246 -3248 -1339 -1332 + mu 0 4 1373 1376 1379 1374 + f 4 -1292 3248 3249 -1337 + mu 0 4 313 320 1380 1377 + f 4 -1291 1342 3250 -3249 + mu 0 4 320 319 1381 1380 + f 4 -3251 1343 -1346 3251 + mu 0 4 1380 1381 1382 1383 + f 4 -3250 -3252 -1345 -1338 + mu 0 4 1377 1380 1383 1378 + f 4 -1300 3252 3253 -1343 + mu 0 4 319 326 1384 1381 + f 4 -1299 1348 3254 -3253 + mu 0 4 326 325 1385 1384 + f 4 -3255 1349 -1352 3255 + mu 0 4 1384 1385 1386 1387 + f 4 -3254 -3256 -1351 -1344 + mu 0 4 1381 1384 1387 1382; + setAttr ".fc[1000:1499]" + f 4 -1308 3256 3257 -1349 + mu 0 4 325 332 1388 1385 + f 4 -1307 1354 3258 -3257 + mu 0 4 332 2539 2537 1388 + f 4 -3259 1355 -1358 3259 + mu 0 4 1388 2537 2538 1391 + f 4 -3258 -3260 -1357 -1350 + mu 0 4 1385 1388 1391 1386 + f 4 -1312 3260 3261 -1355 + mu 0 4 331 335 1392 1389 + f 4 -1311 -1322 3262 -3261 + mu 0 4 335 296 1363 1392 + f 4 -3263 -1321 -1360 3263 + mu 0 4 1392 1363 1367 1393 + f 4 -3262 -3264 -1359 -1356 + mu 0 4 1389 1392 1393 1390 + f 4 -114 3264 3265 559 + mu 0 4 344 343 1394 1395 + f 4 -113 130 3266 -3265 + mu 0 4 343 2320 1396 1394 + f 4 -3267 131 -562 3267 + mu 0 4 1394 1396 1397 1398 + f 4 -3266 -3268 -561 558 + mu 0 4 1395 1394 1398 1399 + f 4 -118 3268 3269 -131 + mu 0 4 2320 350 1400 1396 + f 4 -117 132 3270 -3269 + mu 0 4 350 2318 1401 1400 + f 4 -3271 133 -564 3271 + mu 0 4 1400 1401 1402 1403 + f 4 -3270 -3272 -563 -132 + mu 0 4 1396 1400 1403 1397 + f 4 -120 3272 3273 -133 + mu 0 4 2318 356 1404 1401 + f 4 -119 134 3274 -3273 + mu 0 4 356 2316 1405 1404 + f 4 -3275 135 -566 3275 + mu 0 4 1404 1405 1406 1407 + f 4 -3274 -3276 -565 -134 + mu 0 4 1401 1404 1407 1402 + f 4 -122 3276 3277 -135 + mu 0 4 2316 362 1408 1405 + f 4 -121 136 3278 -3277 + mu 0 4 362 2314 1409 1408 + f 4 -3279 137 -568 3279 + mu 0 4 1408 1409 1410 1411 + f 4 -3278 -3280 -567 -136 + mu 0 4 1405 1408 1411 1406 + f 4 -124 3280 3281 -137 + mu 0 4 2314 368 1412 1409 + f 4 -123 138 3282 -3281 + mu 0 4 368 2312 1413 1412 + f 4 -3283 139 -570 3283 + mu 0 4 1412 1413 1414 1415 + f 4 -3282 -3284 -569 -138 + mu 0 4 1409 1412 1415 1410 + f 4 -126 3284 3285 -139 + mu 0 4 2312 374 1416 1413 + f 4 -125 140 3286 -3285 + mu 0 4 374 2310 1417 1416 + f 4 -3287 141 -572 3287 + mu 0 4 1416 1417 1418 1419 + f 4 -3286 -3288 -571 -140 + mu 0 4 1413 1416 1419 1414 + f 4 -128 3288 3289 -141 + mu 0 4 2310 380 1420 1417 + f 4 -127 142 3290 -3289 + mu 0 4 380 2307 2612 1420 + f 4 -3291 143 -574 3291 + mu 0 4 1420 2612 2536 1423 + f 4 -3290 -3292 -573 -142 + mu 0 4 1417 1420 1423 1418 + f 4 -130 3292 3293 -143 + mu 0 4 2594 383 1424 1421 + f 4 -129 -560 3294 -3293 + mu 0 4 383 344 1395 1424 + f 4 -3295 -559 -576 3295 + mu 0 4 1424 1395 1399 1425 + f 4 -3294 -3296 -575 -144 + mu 0 4 1421 1424 1425 1422 + f 4 -1370 3296 3297 1433 + mu 0 4 392 391 1426 1427 + f 4 -1369 1426 3298 -3297 + mu 0 4 391 390 1428 1426 + f 4 -3299 1427 -1432 3299 + mu 0 4 1426 1428 1429 1430 + f 4 -3298 -3300 -1431 1432 + mu 0 4 1427 1426 1430 1431 + f 4 -1380 3300 3301 -1427 + mu 0 4 390 398 1432 1428 + f 4 -1379 1436 3302 -3301 + mu 0 4 398 397 1433 1432 + f 4 -3303 1437 -1440 3303 + mu 0 4 1432 1433 1434 1435 + f 4 -3302 -3304 -1439 -1428 + mu 0 4 1428 1432 1435 1429 + f 4 -1388 3304 3305 -1437 + mu 0 4 397 404 1436 1433 + f 4 -1387 1442 3306 -3305 + mu 0 4 404 403 1437 1436 + f 4 -3307 1443 -1446 3307 + mu 0 4 1436 1437 1438 1439 + f 4 -3306 -3308 -1445 -1438 + mu 0 4 1433 1436 1439 1434 + f 4 -1396 3308 3309 -1443 + mu 0 4 403 410 1440 1437 + f 4 -1395 1448 3310 -3309 + mu 0 4 410 409 1441 1440 + f 4 -3311 1449 -1452 3311 + mu 0 4 1440 1441 1442 1443 + f 4 -3310 -3312 -1451 -1444 + mu 0 4 1437 1440 1443 1438 + f 4 -1404 3312 3313 -1449 + mu 0 4 409 416 1444 1441 + f 4 -1403 1454 3314 -3313 + mu 0 4 416 415 1445 1444 + f 4 -3315 1455 -1458 3315 + mu 0 4 1444 1445 1446 1447 + f 4 -3314 -3316 -1457 -1450 + mu 0 4 1441 1444 1447 1442 + f 4 -1412 3316 3317 -1455 + mu 0 4 415 422 1448 1445 + f 4 -1411 1460 3318 -3317 + mu 0 4 422 421 1449 1448 + f 4 -3319 1461 -1464 3319 + mu 0 4 1448 1449 1450 1451 + f 4 -3318 -3320 -1463 -1456 + mu 0 4 1445 1448 1451 1446 + f 4 -1420 3320 3321 -1461 + mu 0 4 421 428 1452 1449 + f 4 -1419 1466 3322 -3321 + mu 0 4 428 2530 2528 1452 + f 4 -3323 1467 -1470 3323 + mu 0 4 1452 2528 2529 1455 + f 4 -3322 -3324 -1469 -1462 + mu 0 4 1449 1452 1455 1450 + f 4 -1424 3324 3325 -1467 + mu 0 4 427 431 1456 1453 + f 4 -1423 -1434 3326 -3325 + mu 0 4 431 392 1427 1456 + f 4 -3327 -1433 -1472 3327 + mu 0 4 1456 1427 1431 1457 + f 4 -3326 -3328 -1471 -1468 + mu 0 4 1453 1456 1457 1454 + f 4 -146 3328 3329 607 + mu 0 4 440 439 1458 1459 + f 4 -145 162 3330 -3329 + mu 0 4 439 2336 1460 1458 + f 4 -3331 163 -610 3331 + mu 0 4 1458 1460 1461 1462 + f 4 -3330 -3332 -609 606 + mu 0 4 1459 1458 1462 1463 + f 4 -150 3332 3333 -163 + mu 0 4 2336 446 1464 1460 + f 4 -149 164 3334 -3333 + mu 0 4 446 2334 1465 1464 + f 4 -3335 165 -612 3335 + mu 0 4 1464 1465 1466 1467 + f 4 -3334 -3336 -611 -164 + mu 0 4 1460 1464 1467 1461 + f 4 -152 3336 3337 -165 + mu 0 4 2334 452 1468 1465 + f 4 -151 166 3338 -3337 + mu 0 4 452 2332 1469 1468 + f 4 -3339 167 -614 3339 + mu 0 4 1468 1469 1470 1471 + f 4 -3338 -3340 -613 -166 + mu 0 4 1465 1468 1471 1466 + f 4 -154 3340 3341 -167 + mu 0 4 2332 458 1472 1469 + f 4 -153 168 3342 -3341 + mu 0 4 458 2330 1473 1472 + f 4 -3343 169 -616 3343 + mu 0 4 1472 1473 1474 1475 + f 4 -3342 -3344 -615 -168 + mu 0 4 1469 1472 1475 1470 + f 4 -156 3344 3345 -169 + mu 0 4 2330 464 1476 1473 + f 4 -155 170 3346 -3345 + mu 0 4 464 2328 1477 1476 + f 4 -3347 171 -618 3347 + mu 0 4 1476 1477 1478 1479 + f 4 -3346 -3348 -617 -170 + mu 0 4 1473 1476 1479 1474 + f 4 -158 3348 3349 -171 + mu 0 4 2328 470 1480 1477 + f 4 -157 172 3350 -3349 + mu 0 4 470 2326 1481 1480 + f 4 -3351 173 -620 3351 + mu 0 4 1480 1481 1482 1483 + f 4 -3350 -3352 -619 -172 + mu 0 4 1477 1480 1483 1478 + f 4 -160 3352 3353 -173 + mu 0 4 2326 476 1484 1481 + f 4 -159 174 3354 -3353 + mu 0 4 476 2323 2611 1484 + f 4 -3355 175 -622 3355 + mu 0 4 1484 2611 2527 1487 + f 4 -3354 -3356 -621 -174 + mu 0 4 1481 1484 1487 1482 + f 4 -162 3356 3357 -175 + mu 0 4 2591 479 1488 1485 + f 4 -161 -608 3358 -3357 + mu 0 4 479 440 1459 1488 + f 4 -3359 -607 -624 3359 + mu 0 4 1488 1459 1463 1489 + f 4 -3358 -3360 -623 -176 + mu 0 4 1485 1488 1489 1486 + f 4 -1482 3360 3361 1545 + mu 0 4 488 487 1490 1491 + f 4 -1481 1538 3362 -3361 + mu 0 4 487 486 1492 1490 + f 4 -3363 1539 -1544 3363 + mu 0 4 1490 1492 1493 1494 + f 4 -3362 -3364 -1543 1544 + mu 0 4 1491 1490 1494 1495 + f 4 -1492 3364 3365 -1539 + mu 0 4 486 494 1496 1492 + f 4 -1491 1548 3366 -3365 + mu 0 4 494 493 1497 1496 + f 4 -3367 1549 -1552 3367 + mu 0 4 1496 1497 1498 1499 + f 4 -3366 -3368 -1551 -1540 + mu 0 4 1492 1496 1499 1493 + f 4 -1500 3368 3369 -1549 + mu 0 4 493 500 1500 1497 + f 4 -1499 1554 3370 -3369 + mu 0 4 500 499 1501 1500 + f 4 -3371 1555 -1558 3371 + mu 0 4 1500 1501 1502 1503 + f 4 -3370 -3372 -1557 -1550 + mu 0 4 1497 1500 1503 1498 + f 4 -1508 3372 3373 -1555 + mu 0 4 499 506 1504 1501 + f 4 -1507 1560 3374 -3373 + mu 0 4 506 505 1505 1504 + f 4 -3375 1561 -1564 3375 + mu 0 4 1504 1505 1506 1507 + f 4 -3374 -3376 -1563 -1556 + mu 0 4 1501 1504 1507 1502 + f 4 -1516 3376 3377 -1561 + mu 0 4 505 512 1508 1505 + f 4 -1515 1566 3378 -3377 + mu 0 4 512 511 1509 1508 + f 4 -3379 1567 -1570 3379 + mu 0 4 1508 1509 1510 1511 + f 4 -3378 -3380 -1569 -1562 + mu 0 4 1505 1508 1511 1506 + f 4 -1524 3380 3381 -1567 + mu 0 4 511 518 1512 1509 + f 4 -1523 1572 3382 -3381 + mu 0 4 518 517 1513 1512 + f 4 -3383 1573 -1576 3383 + mu 0 4 1512 1513 1514 1515 + f 4 -3382 -3384 -1575 -1568 + mu 0 4 1509 1512 1515 1510 + f 4 -1532 3384 3385 -1573 + mu 0 4 517 524 1516 1513 + f 4 -1531 1578 3386 -3385 + mu 0 4 524 2521 2519 1516 + f 4 -3387 1579 -1582 3387 + mu 0 4 1516 2519 2520 1519 + f 4 -3386 -3388 -1581 -1574 + mu 0 4 1513 1516 1519 1514 + f 4 -1536 3388 3389 -1579 + mu 0 4 523 527 1520 1517 + f 4 -1535 -1546 3390 -3389 + mu 0 4 527 488 1491 1520 + f 4 -3391 -1545 -1584 3391 + mu 0 4 1520 1491 1495 1521 + f 4 -3390 -3392 -1583 -1580 + mu 0 4 1517 1520 1521 1518 + f 4 -178 3392 3393 655 + mu 0 4 536 535 1522 1523 + f 4 -177 194 3394 -3393 + mu 0 4 535 2352 1524 1522 + f 4 -3395 195 -658 3395 + mu 0 4 1522 1524 1525 1526 + f 4 -3394 -3396 -657 654 + mu 0 4 1523 1522 1526 1527 + f 4 -182 3396 3397 -195 + mu 0 4 2352 542 1528 1524 + f 4 -181 196 3398 -3397 + mu 0 4 542 2350 1529 1528 + f 4 -3399 197 -660 3399 + mu 0 4 1528 1529 1530 1531 + f 4 -3398 -3400 -659 -196 + mu 0 4 1524 1528 1531 1525 + f 4 -184 3400 3401 -197 + mu 0 4 2350 548 1532 1529 + f 4 -183 198 3402 -3401 + mu 0 4 548 2348 1533 1532 + f 4 -3403 199 -662 3403 + mu 0 4 1532 1533 1534 1535 + f 4 -3402 -3404 -661 -198 + mu 0 4 1529 1532 1535 1530 + f 4 -186 3404 3405 -199 + mu 0 4 2348 554 1536 1533 + f 4 -185 200 3406 -3405 + mu 0 4 554 2346 1537 1536 + f 4 -3407 201 -664 3407 + mu 0 4 1536 1537 1538 1539 + f 4 -3406 -3408 -663 -200 + mu 0 4 1533 1536 1539 1534 + f 4 -188 3408 3409 -201 + mu 0 4 2346 560 1540 1537 + f 4 -187 202 3410 -3409 + mu 0 4 560 2344 1541 1540 + f 4 -3411 203 -666 3411 + mu 0 4 1540 1541 1542 1543 + f 4 -3410 -3412 -665 -202 + mu 0 4 1537 1540 1543 1538 + f 4 -190 3412 3413 -203 + mu 0 4 2344 566 1544 1541 + f 4 -189 204 3414 -3413 + mu 0 4 566 2342 1545 1544 + f 4 -3415 205 -668 3415 + mu 0 4 1544 1545 1546 1547 + f 4 -3414 -3416 -667 -204 + mu 0 4 1541 1544 1547 1542 + f 4 -192 3416 3417 -205 + mu 0 4 2342 572 1548 1545 + f 4 -191 206 3418 -3417 + mu 0 4 572 2339 2610 1548 + f 4 -3419 207 -670 3419 + mu 0 4 1548 2610 2518 1551 + f 4 -3418 -3420 -669 -206 + mu 0 4 1545 1548 1551 1546 + f 4 -194 3420 3421 -207 + mu 0 4 2588 575 1552 1549 + f 4 -193 -656 3422 -3421 + mu 0 4 575 536 1523 1552 + f 4 -3423 -655 -672 3423 + mu 0 4 1552 1523 1527 1553 + f 4 -3422 -3424 -671 -208 + mu 0 4 1549 1552 1553 1550 + f 4 -1594 3424 3425 1657 + mu 0 4 584 583 1554 1555 + f 4 -1593 1650 3426 -3425 + mu 0 4 583 582 1556 1554 + f 4 -3427 1651 -1656 3427 + mu 0 4 1554 1556 1557 1558 + f 4 -3426 -3428 -1655 1656 + mu 0 4 1555 1554 1558 1559 + f 4 -1604 3428 3429 -1651 + mu 0 4 582 590 1560 1556 + f 4 -1603 1660 3430 -3429 + mu 0 4 590 589 1561 1560 + f 4 -3431 1661 -1664 3431 + mu 0 4 1560 1561 1562 1563 + f 4 -3430 -3432 -1663 -1652 + mu 0 4 1556 1560 1563 1557 + f 4 -1612 3432 3433 -1661 + mu 0 4 589 596 1564 1561 + f 4 -1611 1666 3434 -3433 + mu 0 4 596 595 1565 1564 + f 4 -3435 1667 -1670 3435 + mu 0 4 1564 1565 1566 1567 + f 4 -3434 -3436 -1669 -1662 + mu 0 4 1561 1564 1567 1562 + f 4 -1620 3436 3437 -1667 + mu 0 4 595 602 1568 1565 + f 4 -1619 1672 3438 -3437 + mu 0 4 602 601 1569 1568 + f 4 -3439 1673 -1676 3439 + mu 0 4 1568 1569 1570 1571 + f 4 -3438 -3440 -1675 -1668 + mu 0 4 1565 1568 1571 1566 + f 4 -1628 3440 3441 -1673 + mu 0 4 601 608 1572 1569 + f 4 -1627 1678 3442 -3441 + mu 0 4 608 607 1573 1572 + f 4 -3443 1679 -1682 3443 + mu 0 4 1572 1573 1574 1575 + f 4 -3442 -3444 -1681 -1674 + mu 0 4 1569 1572 1575 1570 + f 4 -1636 3444 3445 -1679 + mu 0 4 607 614 1576 1573 + f 4 -1635 1684 3446 -3445 + mu 0 4 614 613 1577 1576 + f 4 -3447 1685 -1688 3447 + mu 0 4 1576 1577 1578 1579 + f 4 -3446 -3448 -1687 -1680 + mu 0 4 1573 1576 1579 1574 + f 4 -1644 3448 3449 -1685 + mu 0 4 613 620 1580 1577 + f 4 -1643 1690 3450 -3449 + mu 0 4 620 2512 2510 1580 + f 4 -3451 1691 -1694 3451 + mu 0 4 1580 2510 2511 1583 + f 4 -3450 -3452 -1693 -1686 + mu 0 4 1577 1580 1583 1578 + f 4 -1648 3452 3453 -1691 + mu 0 4 619 623 1584 1581 + f 4 -1647 -1658 3454 -3453 + mu 0 4 623 584 1555 1584 + f 4 -3455 -1657 -1696 3455 + mu 0 4 1584 1555 1559 1585 + f 4 -3454 -3456 -1695 -1692 + mu 0 4 1581 1584 1585 1582 + f 4 -210 3456 3457 703 + mu 0 4 632 631 1586 1587 + f 4 -209 226 3458 -3457 + mu 0 4 631 2368 1588 1586 + f 4 -3459 227 -706 3459 + mu 0 4 1586 1588 1589 1590 + f 4 -3458 -3460 -705 702 + mu 0 4 1587 1586 1590 1591 + f 4 -214 3460 3461 -227 + mu 0 4 2368 638 1592 1588 + f 4 -213 228 3462 -3461 + mu 0 4 638 2366 1593 1592 + f 4 -3463 229 -708 3463 + mu 0 4 1592 1593 1594 1595 + f 4 -3462 -3464 -707 -228 + mu 0 4 1588 1592 1595 1589 + f 4 -216 3464 3465 -229 + mu 0 4 2366 644 1596 1593 + f 4 -215 230 3466 -3465 + mu 0 4 644 2364 1597 1596 + f 4 -3467 231 -710 3467 + mu 0 4 1596 1597 1598 1599 + f 4 -3466 -3468 -709 -230 + mu 0 4 1593 1596 1599 1594 + f 4 -218 3468 3469 -231 + mu 0 4 2364 650 1600 1597 + f 4 -217 232 3470 -3469 + mu 0 4 650 2362 1601 1600 + f 4 -3471 233 -712 3471 + mu 0 4 1600 1601 1602 1603 + f 4 -3470 -3472 -711 -232 + mu 0 4 1597 1600 1603 1598 + f 4 -220 3472 3473 -233 + mu 0 4 2362 656 1604 1601 + f 4 -219 234 3474 -3473 + mu 0 4 656 2360 1605 1604 + f 4 -3475 235 -714 3475 + mu 0 4 1604 1605 1606 1607 + f 4 -3474 -3476 -713 -234 + mu 0 4 1601 1604 1607 1602 + f 4 -222 3476 3477 -235 + mu 0 4 2360 662 1608 1605 + f 4 -221 236 3478 -3477 + mu 0 4 662 2358 1609 1608 + f 4 -3479 237 -716 3479 + mu 0 4 1608 1609 1610 1611 + f 4 -3478 -3480 -715 -236 + mu 0 4 1605 1608 1611 1606 + f 4 -224 3480 3481 -237 + mu 0 4 2358 668 1612 1609 + f 4 -223 238 3482 -3481 + mu 0 4 668 2355 2609 1612 + f 4 -3483 239 -718 3483 + mu 0 4 1612 2609 2509 1615 + f 4 -3482 -3484 -717 -238 + mu 0 4 1609 1612 1615 1610 + f 4 -226 3484 3485 -239 + mu 0 4 2585 671 1616 1613 + f 4 -225 -704 3486 -3485 + mu 0 4 671 632 1587 1616 + f 4 -3487 -703 -720 3487 + mu 0 4 1616 1587 1591 1617 + f 4 -3486 -3488 -719 -240 + mu 0 4 1613 1616 1617 1614 + f 4 -1706 3488 3489 1769 + mu 0 4 680 679 1618 1619 + f 4 -1705 1762 3490 -3489 + mu 0 4 679 678 1620 1618 + f 4 -3491 1763 -1768 3491 + mu 0 4 1618 1620 1621 1622 + f 4 -3490 -3492 -1767 1768 + mu 0 4 1619 1618 1622 1623 + f 4 -1716 3492 3493 -1763 + mu 0 4 678 686 1624 1620 + f 4 -1715 1772 3494 -3493 + mu 0 4 686 685 1625 1624 + f 4 -3495 1773 -1776 3495 + mu 0 4 1624 1625 1626 1627 + f 4 -3494 -3496 -1775 -1764 + mu 0 4 1620 1624 1627 1621 + f 4 -1724 3496 3497 -1773 + mu 0 4 685 692 1628 1625 + f 4 -1723 1778 3498 -3497 + mu 0 4 692 691 1629 1628 + f 4 -3499 1779 -1782 3499 + mu 0 4 1628 1629 1630 1631 + f 4 -3498 -3500 -1781 -1774 + mu 0 4 1625 1628 1631 1626 + f 4 -1732 3500 3501 -1779 + mu 0 4 691 698 1632 1629 + f 4 -1731 1784 3502 -3501 + mu 0 4 698 697 1633 1632 + f 4 -3503 1785 -1788 3503 + mu 0 4 1632 1633 1634 1635 + f 4 -3502 -3504 -1787 -1780 + mu 0 4 1629 1632 1635 1630 + f 4 -1740 3504 3505 -1785 + mu 0 4 697 704 1636 1633 + f 4 -1739 1790 3506 -3505 + mu 0 4 704 703 1637 1636 + f 4 -3507 1791 -1794 3507 + mu 0 4 1636 1637 1638 1639 + f 4 -3506 -3508 -1793 -1786 + mu 0 4 1633 1636 1639 1634 + f 4 -1748 3508 3509 -1791 + mu 0 4 703 710 1640 1637 + f 4 -1747 1796 3510 -3509 + mu 0 4 710 709 1641 1640 + f 4 -3511 1797 -1800 3511 + mu 0 4 1640 1641 1642 1643 + f 4 -3510 -3512 -1799 -1792 + mu 0 4 1637 1640 1643 1638 + f 4 -1756 3512 3513 -1797 + mu 0 4 709 716 1644 1641 + f 4 -1755 1802 3514 -3513 + mu 0 4 716 2503 2501 1644 + f 4 -3515 1803 -1806 3515 + mu 0 4 1644 2501 2502 1647 + f 4 -3514 -3516 -1805 -1798 + mu 0 4 1641 1644 1647 1642 + f 4 -1760 3516 3517 -1803 + mu 0 4 715 719 1648 1645 + f 4 -1759 -1770 3518 -3517 + mu 0 4 719 680 1619 1648 + f 4 -3519 -1769 -1808 3519 + mu 0 4 1648 1619 1623 1649 + f 4 -3518 -3520 -1807 -1804 + mu 0 4 1645 1648 1649 1646 + f 4 -242 3520 3521 751 + mu 0 4 728 727 1650 1651 + f 4 -241 258 3522 -3521 + mu 0 4 727 2384 1652 1650 + f 4 -3523 259 -754 3523 + mu 0 4 1650 1652 1653 1654 + f 4 -3522 -3524 -753 750 + mu 0 4 1651 1650 1654 1655 + f 4 -246 3524 3525 -259 + mu 0 4 2384 734 1656 1652 + f 4 -245 260 3526 -3525 + mu 0 4 734 2382 1657 1656 + f 4 -3527 261 -756 3527 + mu 0 4 1656 1657 1658 1659 + f 4 -3526 -3528 -755 -260 + mu 0 4 1652 1656 1659 1653 + f 4 -248 3528 3529 -261 + mu 0 4 2382 740 1660 1657 + f 4 -247 262 3530 -3529 + mu 0 4 740 2380 1661 1660 + f 4 -3531 263 -758 3531 + mu 0 4 1660 1661 1662 1663 + f 4 -3530 -3532 -757 -262 + mu 0 4 1657 1660 1663 1658 + f 4 -250 3532 3533 -263 + mu 0 4 2380 746 1664 1661 + f 4 -249 264 3534 -3533 + mu 0 4 746 2378 1665 1664 + f 4 -3535 265 -760 3535 + mu 0 4 1664 1665 1666 1667 + f 4 -3534 -3536 -759 -264 + mu 0 4 1661 1664 1667 1662 + f 4 -252 3536 3537 -265 + mu 0 4 2378 752 1668 1665 + f 4 -251 266 3538 -3537 + mu 0 4 752 2376 1669 1668 + f 4 -3539 267 -762 3539 + mu 0 4 1668 1669 1670 1671 + f 4 -3538 -3540 -761 -266 + mu 0 4 1665 1668 1671 1666 + f 4 -254 3540 3541 -267 + mu 0 4 2376 758 1672 1669 + f 4 -253 268 3542 -3541 + mu 0 4 758 2374 1673 1672 + f 4 -3543 269 -764 3543 + mu 0 4 1672 1673 1674 1675 + f 4 -3542 -3544 -763 -268 + mu 0 4 1669 1672 1675 1670 + f 4 -256 3544 3545 -269 + mu 0 4 2374 764 1676 1673 + f 4 -255 270 3546 -3545 + mu 0 4 764 2371 2608 1676 + f 4 -3547 271 -766 3547 + mu 0 4 1676 2608 2500 1679 + f 4 -3546 -3548 -765 -270 + mu 0 4 1673 1676 1679 1674 + f 4 -258 3548 3549 -271 + mu 0 4 2582 767 1680 1677 + f 4 -257 -752 3550 -3549 + mu 0 4 767 728 1651 1680 + f 4 -3551 -751 -768 3551 + mu 0 4 1680 1651 1655 1681 + f 4 -3550 -3552 -767 -272 + mu 0 4 1677 1680 1681 1678 + f 4 -1818 3552 3553 1881 + mu 0 4 776 775 1682 1683 + f 4 -1817 1874 3554 -3553 + mu 0 4 775 774 1684 1682 + f 4 -3555 1875 -1880 3555 + mu 0 4 1682 1684 1685 1686 + f 4 -3554 -3556 -1879 1880 + mu 0 4 1683 1682 1686 1687 + f 4 -1828 3556 3557 -1875 + mu 0 4 774 782 1688 1684 + f 4 -1827 1884 3558 -3557 + mu 0 4 782 781 1689 1688 + f 4 -3559 1885 -1888 3559 + mu 0 4 1688 1689 1690 1691 + f 4 -3558 -3560 -1887 -1876 + mu 0 4 1684 1688 1691 1685 + f 4 -1836 3560 3561 -1885 + mu 0 4 781 788 1692 1689 + f 4 -1835 1890 3562 -3561 + mu 0 4 788 787 1693 1692 + f 4 -3563 1891 -1894 3563 + mu 0 4 1692 1693 1694 1695 + f 4 -3562 -3564 -1893 -1886 + mu 0 4 1689 1692 1695 1690 + f 4 -1844 3564 3565 -1891 + mu 0 4 787 794 1696 1693 + f 4 -1843 1896 3566 -3565 + mu 0 4 794 793 1697 1696 + f 4 -3567 1897 -1900 3567 + mu 0 4 1696 1697 1698 1699 + f 4 -3566 -3568 -1899 -1892 + mu 0 4 1693 1696 1699 1694 + f 4 -1852 3568 3569 -1897 + mu 0 4 793 800 1700 1697 + f 4 -1851 1902 3570 -3569 + mu 0 4 800 799 1701 1700 + f 4 -3571 1903 -1906 3571 + mu 0 4 1700 1701 1702 1703 + f 4 -3570 -3572 -1905 -1898 + mu 0 4 1697 1700 1703 1698 + f 4 -1860 3572 3573 -1903 + mu 0 4 799 806 1704 1701 + f 4 -1859 1908 3574 -3573 + mu 0 4 806 805 1705 1704 + f 4 -3575 1909 -1912 3575 + mu 0 4 1704 1705 1706 1707 + f 4 -3574 -3576 -1911 -1904 + mu 0 4 1701 1704 1707 1702 + f 4 -1868 3576 3577 -1909 + mu 0 4 805 812 1708 1705 + f 4 -1867 1914 3578 -3577 + mu 0 4 812 2494 2492 1708 + f 4 -3579 1915 -1918 3579 + mu 0 4 1708 2492 2493 1711 + f 4 -3578 -3580 -1917 -1910 + mu 0 4 1705 1708 1711 1706 + f 4 -1872 3580 3581 -1915 + mu 0 4 811 815 1712 1709 + f 4 -1871 -1882 3582 -3581 + mu 0 4 815 776 1683 1712 + f 4 -3583 -1881 -1920 3583 + mu 0 4 1712 1683 1687 1713 + f 4 -3582 -3584 -1919 -1916 + mu 0 4 1709 1712 1713 1710 + f 4 -274 3584 3585 799 + mu 0 4 824 823 1714 1715 + f 4 -273 290 3586 -3585 + mu 0 4 823 2400 1716 1714 + f 4 -3587 291 -802 3587 + mu 0 4 1714 1716 1717 1718 + f 4 -3586 -3588 -801 798 + mu 0 4 1715 1714 1718 1719 + f 4 -278 3588 3589 -291 + mu 0 4 2400 830 1720 1716 + f 4 -277 292 3590 -3589 + mu 0 4 830 2398 1721 1720 + f 4 -3591 293 -804 3591 + mu 0 4 1720 1721 1722 1723 + f 4 -3590 -3592 -803 -292 + mu 0 4 1716 1720 1723 1717 + f 4 -280 3592 3593 -293 + mu 0 4 2398 836 1724 1721 + f 4 -279 294 3594 -3593 + mu 0 4 836 2396 1725 1724 + f 4 -3595 295 -806 3595 + mu 0 4 1724 1725 1726 1727 + f 4 -3594 -3596 -805 -294 + mu 0 4 1721 1724 1727 1722 + f 4 -282 3596 3597 -295 + mu 0 4 2396 842 1728 1725 + f 4 -281 296 3598 -3597 + mu 0 4 842 2394 1729 1728 + f 4 -3599 297 -808 3599 + mu 0 4 1728 1729 1730 1731 + f 4 -3598 -3600 -807 -296 + mu 0 4 1725 1728 1731 1726 + f 4 -284 3600 3601 -297 + mu 0 4 2394 848 1732 1729 + f 4 -283 298 3602 -3601 + mu 0 4 848 2392 1733 1732 + f 4 -3603 299 -810 3603 + mu 0 4 1732 1733 1734 1735 + f 4 -3602 -3604 -809 -298 + mu 0 4 1729 1732 1735 1730 + f 4 -286 3604 3605 -299 + mu 0 4 2392 854 1736 1733 + f 4 -285 300 3606 -3605 + mu 0 4 854 2390 1737 1736 + f 4 -3607 301 -812 3607 + mu 0 4 1736 1737 1738 1739 + f 4 -3606 -3608 -811 -300 + mu 0 4 1733 1736 1739 1734 + f 4 -288 3608 3609 -301 + mu 0 4 2390 860 1740 1737 + f 4 -287 302 3610 -3609 + mu 0 4 860 2387 2607 1740 + f 4 -3611 303 -814 3611 + mu 0 4 1740 2607 2491 1743 + f 4 -3610 -3612 -813 -302 + mu 0 4 1737 1740 1743 1738 + f 4 -290 3612 3613 -303 + mu 0 4 2579 863 1744 1741 + f 4 -289 -800 3614 -3613 + mu 0 4 863 824 1715 1744 + f 4 -3615 -799 -816 3615 + mu 0 4 1744 1715 1719 1745 + f 4 -3614 -3616 -815 -304 + mu 0 4 1741 1744 1745 1742 + f 4 -1930 3616 3617 1993 + mu 0 4 872 871 1746 1747 + f 4 -1929 1986 3618 -3617 + mu 0 4 871 870 1748 1746 + f 4 -3619 1987 -1992 3619 + mu 0 4 1746 1748 1749 1750 + f 4 -3618 -3620 -1991 1992 + mu 0 4 1747 1746 1750 1751 + f 4 -1940 3620 3621 -1987 + mu 0 4 870 878 1752 1748 + f 4 -1939 1996 3622 -3621 + mu 0 4 878 877 1753 1752 + f 4 -3623 1997 -2000 3623 + mu 0 4 1752 1753 1754 1755 + f 4 -3622 -3624 -1999 -1988 + mu 0 4 1748 1752 1755 1749 + f 4 -1948 3624 3625 -1997 + mu 0 4 877 884 1756 1753 + f 4 -1947 2002 3626 -3625 + mu 0 4 884 883 1757 1756 + f 4 -3627 2003 -2006 3627 + mu 0 4 1756 1757 1758 1759 + f 4 -3626 -3628 -2005 -1998 + mu 0 4 1753 1756 1759 1754 + f 4 -1956 3628 3629 -2003 + mu 0 4 883 890 1760 1757 + f 4 -1955 2008 3630 -3629 + mu 0 4 890 889 1761 1760 + f 4 -3631 2009 -2012 3631 + mu 0 4 1760 1761 1762 1763 + f 4 -3630 -3632 -2011 -2004 + mu 0 4 1757 1760 1763 1758 + f 4 -1964 3632 3633 -2009 + mu 0 4 889 896 1764 1761 + f 4 -1963 2014 3634 -3633 + mu 0 4 896 895 1765 1764 + f 4 -3635 2015 -2018 3635 + mu 0 4 1764 1765 1766 1767 + f 4 -3634 -3636 -2017 -2010 + mu 0 4 1761 1764 1767 1762 + f 4 -1972 3636 3637 -2015 + mu 0 4 895 902 1768 1765 + f 4 -1971 2020 3638 -3637 + mu 0 4 902 901 1769 1768 + f 4 -3639 2021 -2024 3639 + mu 0 4 1768 1769 1770 1771 + f 4 -3638 -3640 -2023 -2016 + mu 0 4 1765 1768 1771 1766 + f 4 -1980 3640 3641 -2021 + mu 0 4 901 908 1772 1769 + f 4 -1979 2026 3642 -3641 + mu 0 4 908 2485 2483 1772 + f 4 -3643 2027 -2030 3643 + mu 0 4 1772 2483 2484 1775 + f 4 -3642 -3644 -2029 -2022 + mu 0 4 1769 1772 1775 1770 + f 4 -1984 3644 3645 -2027 + mu 0 4 907 911 1776 1773 + f 4 -1983 -1994 3646 -3645 + mu 0 4 911 872 1747 1776 + f 4 -3647 -1993 -2032 3647 + mu 0 4 1776 1747 1751 1777 + f 4 -3646 -3648 -2031 -2028 + mu 0 4 1773 1776 1777 1774 + f 4 -306 3648 3649 847 + mu 0 4 920 919 1778 1779 + f 4 -305 322 3650 -3649 + mu 0 4 919 918 1780 1778 + f 4 -3651 323 -850 3651 + mu 0 4 1778 1780 1781 1782 + f 4 -3650 -3652 -849 846 + mu 0 4 1779 1778 1782 1783 + f 4 -310 3652 3653 -323 + mu 0 4 918 926 1784 1780 + f 4 -309 324 3654 -3653 + mu 0 4 926 925 1785 1784 + f 4 -3655 325 -852 3655 + mu 0 4 1784 1785 1786 1787 + f 4 -3654 -3656 -851 -324 + mu 0 4 1780 1784 1787 1781 + f 4 -312 3656 3657 -325 + mu 0 4 925 932 1788 1785 + f 4 -311 326 3658 -3657 + mu 0 4 932 931 1789 1788 + f 4 -3659 327 -854 3659 + mu 0 4 1788 1789 1790 1791 + f 4 -3658 -3660 -853 -326 + mu 0 4 1785 1788 1791 1786 + f 4 -314 3660 3661 -327 + mu 0 4 931 938 1792 1789 + f 4 -313 328 3662 -3661 + mu 0 4 938 937 1793 1792 + f 4 -3663 329 -856 3663 + mu 0 4 1792 1793 1794 1795 + f 4 -3662 -3664 -855 -328 + mu 0 4 1789 1792 1795 1790 + f 4 -316 3664 3665 -329 + mu 0 4 937 944 1796 1793 + f 4 -315 330 3666 -3665 + mu 0 4 944 943 1797 1796 + f 4 -3667 331 -858 3667 + mu 0 4 1796 1797 1798 1799 + f 4 -3666 -3668 -857 -330 + mu 0 4 1793 1796 1799 1794 + f 4 -318 3668 3669 -331 + mu 0 4 943 950 1800 1797 + f 4 -317 332 3670 -3669 + mu 0 4 950 949 1801 1800 + f 4 -3671 333 -860 3671 + mu 0 4 1800 1801 1802 1803 + f 4 -3670 -3672 -859 -332 + mu 0 4 1797 1800 1803 1798 + f 4 -320 3672 3673 -333 + mu 0 4 949 956 1804 1801 + f 4 -319 334 3674 -3673 + mu 0 4 956 955 2606 1804 + f 4 -3675 335 -862 3675 + mu 0 4 1804 2606 2482 1807 + f 4 -3674 -3676 -861 -334 + mu 0 4 1801 1804 1807 1802 + f 4 -322 3676 3677 -335 + mu 0 4 2577 959 1808 1805 + f 4 -321 -848 3678 -3677 + mu 0 4 959 920 1779 1808 + f 4 -3679 -847 -864 3679 + mu 0 4 1808 1779 1783 1809 + f 4 -3678 -3680 -863 -336 + mu 0 4 1805 1808 1809 1806 + f 4 -2042 3680 3681 2105 + mu 0 4 968 967 1810 1811 + f 4 -2041 2098 3682 -3681 + mu 0 4 967 966 1812 1810 + f 4 -3683 2099 -2104 3683 + mu 0 4 1810 1812 1813 1814 + f 4 -3682 -3684 -2103 2104 + mu 0 4 1811 1810 1814 1815 + f 4 -2052 3684 3685 -2099 + mu 0 4 966 974 1816 1812 + f 4 -2051 2108 3686 -3685 + mu 0 4 974 973 1817 1816 + f 4 -3687 2109 -2112 3687 + mu 0 4 1816 1817 1818 1819 + f 4 -3686 -3688 -2111 -2100 + mu 0 4 1812 1816 1819 1813 + f 4 -2060 3688 3689 -2109 + mu 0 4 973 980 1820 1817 + f 4 -2059 2114 3690 -3689 + mu 0 4 980 979 1821 1820 + f 4 -3691 2115 -2118 3691 + mu 0 4 1820 1821 1822 1823 + f 4 -3690 -3692 -2117 -2110 + mu 0 4 1817 1820 1823 1818 + f 4 -2068 3692 3693 -2115 + mu 0 4 979 986 1824 1821 + f 4 -2067 2120 3694 -3693 + mu 0 4 986 985 1825 1824 + f 4 -3695 2121 -2124 3695 + mu 0 4 1824 1825 1826 1827 + f 4 -3694 -3696 -2123 -2116 + mu 0 4 1821 1824 1827 1822 + f 4 -2076 3696 3697 -2121 + mu 0 4 985 992 1828 1825 + f 4 -2075 2126 3698 -3697 + mu 0 4 992 991 1829 1828 + f 4 -3699 2127 -2130 3699 + mu 0 4 1828 1829 1830 1831 + f 4 -3698 -3700 -2129 -2122 + mu 0 4 1825 1828 1831 1826 + f 4 -2084 3700 3701 -2127 + mu 0 4 991 998 1832 1829 + f 4 -2083 2132 3702 -3701 + mu 0 4 998 997 1833 1832 + f 4 -3703 2133 -2136 3703 + mu 0 4 1832 1833 1834 1835 + f 4 -3702 -3704 -2135 -2128 + mu 0 4 1829 1832 1835 1830 + f 4 -2092 3704 3705 -2133 + mu 0 4 997 1004 1836 1833 + f 4 -2091 2138 3706 -3705 + mu 0 4 1004 2476 2474 1836 + f 4 -3707 2139 -2142 3707 + mu 0 4 1836 2474 2475 1839 + f 4 -3706 -3708 -2141 -2134 + mu 0 4 1833 1836 1839 1834 + f 4 -2096 3708 3709 -2139 + mu 0 4 1003 1007 1840 1837 + f 4 -2095 -2106 3710 -3709 + mu 0 4 1007 968 1811 1840 + f 4 -3711 -2105 -2144 3711 + mu 0 4 1840 1811 1815 1841 + f 4 -3710 -3712 -2143 -2140 + mu 0 4 1837 1840 1841 1838 + f 4 -338 3712 3713 895 + mu 0 4 1016 1015 1842 1843 + f 4 -337 354 3714 -3713 + mu 0 4 1015 2432 1844 1842 + f 4 -3715 355 -898 3715 + mu 0 4 1842 1844 1845 1846 + f 4 -3714 -3716 -897 894 + mu 0 4 1843 1842 1846 1847 + f 4 -342 3716 3717 -355 + mu 0 4 2432 1022 1848 1844 + f 4 -341 356 3718 -3717 + mu 0 4 1022 2430 1849 1848 + f 4 -3719 357 -900 3719 + mu 0 4 1848 1849 1850 1851 + f 4 -3718 -3720 -899 -356 + mu 0 4 1844 1848 1851 1845 + f 4 -344 3720 3721 -357 + mu 0 4 2430 1028 1852 1849 + f 4 -343 358 3722 -3721 + mu 0 4 1028 2428 1853 1852 + f 4 -3723 359 -902 3723 + mu 0 4 1852 1853 1854 1855 + f 4 -3722 -3724 -901 -358 + mu 0 4 1849 1852 1855 1850 + f 4 -346 3724 3725 -359 + mu 0 4 2428 1034 1856 1853 + f 4 -345 360 3726 -3725 + mu 0 4 1034 2426 1857 1856 + f 4 -3727 361 -904 3727 + mu 0 4 1856 1857 1858 1859 + f 4 -3726 -3728 -903 -360 + mu 0 4 1853 1856 1859 1854 + f 4 -348 3728 3729 -361 + mu 0 4 2426 1040 1860 1857 + f 4 -347 362 3730 -3729 + mu 0 4 1040 2424 1861 1860 + f 4 -3731 363 -906 3731 + mu 0 4 1860 1861 1862 1863 + f 4 -3730 -3732 -905 -362 + mu 0 4 1857 1860 1863 1858 + f 4 -350 3732 3733 -363 + mu 0 4 2424 1046 1864 1861 + f 4 -349 364 3734 -3733 + mu 0 4 1046 2422 1865 1864 + f 4 -3735 365 -908 3735 + mu 0 4 1864 1865 1866 1867 + f 4 -3734 -3736 -907 -364 + mu 0 4 1861 1864 1867 1862 + f 4 -352 3736 3737 -365 + mu 0 4 2422 1052 1868 1865 + f 4 -351 366 3738 -3737 + mu 0 4 1052 2419 2605 1868 + f 4 -3739 367 -910 3739 + mu 0 4 1868 2605 2473 1871 + f 4 -3738 -3740 -909 -366 + mu 0 4 1865 1868 1871 1866 + f 4 -354 3740 3741 -367 + mu 0 4 2573 1055 1872 1869 + f 4 -353 -896 3742 -3741 + mu 0 4 1055 1016 1843 1872 + f 4 -3743 -895 -912 3743 + mu 0 4 1872 1843 1847 1873 + f 4 -3742 -3744 -911 -368 + mu 0 4 1869 1872 1873 1870 + f 4 0 3744 3745 -913 + mu 0 4 1152 1151 2465 2450 + f 4 1 914 3746 -3745 + mu 0 4 1151 1150 1876 2465 + f 4 -3747 915 -918 3747 + mu 0 4 1874 2464 4 1 + f 4 -3746 -3748 -917 -914 + mu 0 4 1875 1874 1 0 + f 4 2 3748 3749 -915 + mu 0 4 1150 1149 2463 1876 + f 4 3 924 3750 -3749 + mu 0 4 1149 1148 1878 2463 + f 4 -3751 925 -928 3751 + mu 0 4 1877 2462 11 9 + f 4 -3750 -3752 -927 -916 + mu 0 4 2464 1877 9 4 + f 4 4 3752 3753 -925 + mu 0 4 1148 1147 2461 1878 + f 4 5 932 3754 -3753 + mu 0 4 1147 1146 1880 2461 + f 4 -3755 933 -936 3755 + mu 0 4 1879 2460 17 15 + f 4 -3754 -3756 -935 -926 + mu 0 4 2462 1879 15 11; + setAttr ".fc[1500:1999]" + f 4 6 3756 3757 -933 + mu 0 4 1146 1145 2459 1880 + f 4 7 940 3758 -3757 + mu 0 4 1145 1144 1882 2459 + f 4 -3759 941 -944 3759 + mu 0 4 1881 2458 23 21 + f 4 -3758 -3760 -943 -934 + mu 0 4 2460 1881 21 17 + f 4 8 3760 3761 -941 + mu 0 4 1144 1143 2457 1882 + f 4 9 948 3762 -3761 + mu 0 4 1143 1142 1884 2457 + f 4 -3763 949 -952 3763 + mu 0 4 1883 2456 29 27 + f 4 -3762 -3764 -951 -942 + mu 0 4 2458 1883 27 23 + f 4 10 3764 3765 -949 + mu 0 4 1142 1141 2455 1884 + f 4 11 956 3766 -3765 + mu 0 4 1141 1140 1886 2455 + f 4 -3767 957 -960 3767 + mu 0 4 1885 2454 35 33 + f 4 -3766 -3768 -959 -950 + mu 0 4 2456 1885 33 29 + f 4 12 3768 3769 -957 + mu 0 4 1140 1137 2453 1886 + f 4 13 964 3770 -3769 + mu 0 4 1137 1136 1888 2453 + f 4 -3771 965 -968 3771 + mu 0 4 1887 2452 2570 39 + f 4 -3770 -3772 -967 -958 + mu 0 4 2454 1887 39 35 + f 4 14 3772 3773 -965 + mu 0 4 1136 1139 2451 1888 + f 4 15 912 3774 -3773 + mu 0 4 1139 1152 2450 2451 + f 4 -3775 913 -974 3775 + mu 0 4 1889 1875 0 45 + f 4 -3774 -3776 -973 -966 + mu 0 4 2571 1889 45 41 + f 4 -388 3776 3777 -977 + mu 0 4 52 49 1890 1891 + f 4 -387 980 3778 -3777 + mu 0 4 49 48 1892 1890 + f 4 -3779 981 982 3779 + mu 0 4 1890 1892 1175 1174 + f 4 -3778 -3780 983 -978 + mu 0 4 1891 1890 1174 1173 + f 4 -392 3780 3781 -987 + mu 0 4 59 57 1893 1894 + f 4 -391 976 3782 -3781 + mu 0 4 57 52 1891 1893 + f 4 -3783 977 990 3783 + mu 0 4 1893 1891 1173 1179 + f 4 -3782 -3784 991 -988 + mu 0 4 1894 1893 1179 1178 + f 4 -396 3784 3785 -993 + mu 0 4 65 63 1895 1896 + f 4 -395 986 3786 -3785 + mu 0 4 63 59 1894 1895 + f 4 -3787 987 996 3787 + mu 0 4 1895 1894 1178 1183 + f 4 -3786 -3788 997 -994 + mu 0 4 1896 1895 1183 1182 + f 4 -400 3788 3789 -999 + mu 0 4 71 69 1897 1898 + f 4 -399 992 3790 -3789 + mu 0 4 69 65 1896 1897 + f 4 -3791 993 1002 3791 + mu 0 4 1897 1896 1182 1187 + f 4 -3790 -3792 1003 -1000 + mu 0 4 1898 1897 1187 1186 + f 4 -404 3792 3793 -1005 + mu 0 4 77 75 1899 1900 + f 4 -403 998 3794 -3793 + mu 0 4 75 71 1898 1899 + f 4 -3795 999 1008 3795 + mu 0 4 1899 1898 1186 1191 + f 4 -3794 -3796 1009 -1006 + mu 0 4 1900 1899 1191 1190 + f 4 -408 3796 3797 -1011 + mu 0 4 83 81 1901 1902 + f 4 -407 1004 3798 -3797 + mu 0 4 81 77 1900 1901 + f 4 -3799 1005 1014 3799 + mu 0 4 1901 1900 1190 1195 + f 4 -3798 -3800 1015 -1012 + mu 0 4 1902 1901 1195 1194 + f 4 -412 3800 3801 -1017 + mu 0 4 89 87 1903 2567 + f 4 -411 1010 3802 -3801 + mu 0 4 87 83 1902 1903 + f 4 -3803 1011 1020 3803 + mu 0 4 1903 1902 1194 1199 + f 4 -3802 -3804 1021 -1018 + mu 0 4 2567 1903 1199 2565 + f 4 -414 3804 3805 -981 + mu 0 4 48 93 1905 1892 + f 4 -413 1016 3806 -3805 + mu 0 4 93 2568 1904 1905 + f 4 -3807 1017 1022 3807 + mu 0 4 1905 1904 1198 1201 + f 4 -3806 -3808 1023 -982 + mu 0 4 1892 1905 1201 1175 + f 4 416 3808 3809 -1025 + mu 0 4 1207 1206 1906 1907 + f 4 417 1026 3810 -3809 + mu 0 4 1206 1205 1908 1906 + f 4 -3811 1027 -1030 3811 + mu 0 4 1906 1908 100 97 + f 4 -3810 -3812 -1029 -1026 + mu 0 4 1907 1906 97 96 + f 4 418 3812 3813 -1027 + mu 0 4 1205 1211 1909 1908 + f 4 419 1036 3814 -3813 + mu 0 4 1211 1210 1910 1909 + f 4 -3815 1037 -1040 3815 + mu 0 4 1909 1910 107 105 + f 4 -3814 -3816 -1039 -1028 + mu 0 4 1908 1909 105 100 + f 4 420 3816 3817 -1037 + mu 0 4 1210 1215 1911 1910 + f 4 421 1044 3818 -3817 + mu 0 4 1215 1214 1912 1911 + f 4 -3819 1045 -1048 3819 + mu 0 4 1911 1912 113 111 + f 4 -3818 -3820 -1047 -1038 + mu 0 4 1910 1911 111 107 + f 4 422 3820 3821 -1045 + mu 0 4 1214 1219 1913 1912 + f 4 423 1052 3822 -3821 + mu 0 4 1219 1218 1914 1913 + f 4 -3823 1053 -1056 3823 + mu 0 4 1913 1914 119 117 + f 4 -3822 -3824 -1055 -1046 + mu 0 4 1912 1913 117 113 + f 4 424 3824 3825 -1053 + mu 0 4 1218 1223 1915 1914 + f 4 425 1060 3826 -3825 + mu 0 4 1223 1222 1916 1915 + f 4 -3827 1061 -1064 3827 + mu 0 4 1915 1916 125 123 + f 4 -3826 -3828 -1063 -1054 + mu 0 4 1914 1915 123 119 + f 4 426 3828 3829 -1061 + mu 0 4 1222 1227 1917 1916 + f 4 427 1068 3830 -3829 + mu 0 4 1227 1226 1918 1917 + f 4 -3831 1069 -1072 3831 + mu 0 4 1917 1918 131 129 + f 4 -3830 -3832 -1071 -1062 + mu 0 4 1916 1917 129 125 + f 4 428 3832 3833 -1069 + mu 0 4 1226 1231 1919 1918 + f 4 429 1076 3834 -3833 + mu 0 4 1231 2563 2562 1919 + f 4 -3835 1077 -1080 3835 + mu 0 4 1919 2562 2561 135 + f 4 -3834 -3836 -1079 -1070 + mu 0 4 1918 1919 135 131 + f 4 430 3836 3837 -1077 + mu 0 4 1230 1233 1921 1920 + f 4 431 1024 3838 -3837 + mu 0 4 1233 1207 1907 1921 + f 4 -3839 1025 -1086 3839 + mu 0 4 1921 1907 96 141 + f 4 -3838 -3840 -1085 -1078 + mu 0 4 1920 1921 141 137 + f 4 -436 3840 3841 -1089 + mu 0 4 148 145 1922 1923 + f 4 -435 1092 3842 -3841 + mu 0 4 145 144 1924 1922 + f 4 -3843 1093 1094 3843 + mu 0 4 1922 1924 1239 1238 + f 4 -3842 -3844 1095 -1090 + mu 0 4 1923 1922 1238 1237 + f 4 -440 3844 3845 -1099 + mu 0 4 155 153 1925 1926 + f 4 -439 1088 3846 -3845 + mu 0 4 153 148 1923 1925 + f 4 -3847 1089 1102 3847 + mu 0 4 1925 1923 1237 1243 + f 4 -3846 -3848 1103 -1100 + mu 0 4 1926 1925 1243 1242 + f 4 -444 3848 3849 -1105 + mu 0 4 161 159 1927 1928 + f 4 -443 1098 3850 -3849 + mu 0 4 159 155 1926 1927 + f 4 -3851 1099 1108 3851 + mu 0 4 1927 1926 1242 1247 + f 4 -3850 -3852 1109 -1106 + mu 0 4 1928 1927 1247 1246 + f 4 -448 3852 3853 -1111 + mu 0 4 167 165 1929 1930 + f 4 -447 1104 3854 -3853 + mu 0 4 165 161 1928 1929 + f 4 -3855 1105 1114 3855 + mu 0 4 1929 1928 1246 1251 + f 4 -3854 -3856 1115 -1112 + mu 0 4 1930 1929 1251 1250 + f 4 -452 3856 3857 -1117 + mu 0 4 173 171 1931 1932 + f 4 -451 1110 3858 -3857 + mu 0 4 171 167 1930 1931 + f 4 -3859 1111 1120 3859 + mu 0 4 1931 1930 1250 1255 + f 4 -3858 -3860 1121 -1118 + mu 0 4 1932 1931 1255 1254 + f 4 -456 3860 3861 -1123 + mu 0 4 179 177 1933 1934 + f 4 -455 1116 3862 -3861 + mu 0 4 177 173 1932 1933 + f 4 -3863 1117 1126 3863 + mu 0 4 1933 1932 1254 1259 + f 4 -3862 -3864 1127 -1124 + mu 0 4 1934 1933 1259 1258 + f 4 -460 3864 3865 -1129 + mu 0 4 185 183 1935 2558 + f 4 -459 1122 3866 -3865 + mu 0 4 183 179 1934 1935 + f 4 -3867 1123 1132 3867 + mu 0 4 1935 1934 1258 1263 + f 4 -3866 -3868 1133 -1130 + mu 0 4 2558 1935 1263 2556 + f 4 -462 3868 3869 -1093 + mu 0 4 144 189 1937 1924 + f 4 -461 1128 3870 -3869 + mu 0 4 189 2559 1936 1937 + f 4 -3871 1129 1134 3871 + mu 0 4 1937 1936 1262 1265 + f 4 -3870 -3872 1135 -1094 + mu 0 4 1924 1937 1265 1239 + f 4 464 3872 3873 -1137 + mu 0 4 1271 1270 1938 1939 + f 4 465 1138 3874 -3873 + mu 0 4 1270 1269 1940 1938 + f 4 -3875 1139 -1142 3875 + mu 0 4 1938 1940 196 193 + f 4 -3874 -3876 -1141 -1138 + mu 0 4 1939 1938 193 192 + f 4 466 3876 3877 -1139 + mu 0 4 1269 1275 1941 1940 + f 4 467 1148 3878 -3877 + mu 0 4 1275 1274 1942 1941 + f 4 -3879 1149 -1152 3879 + mu 0 4 1941 1942 203 201 + f 4 -3878 -3880 -1151 -1140 + mu 0 4 1940 1941 201 196 + f 4 468 3880 3881 -1149 + mu 0 4 1274 1279 1943 1942 + f 4 469 1156 3882 -3881 + mu 0 4 1279 1278 1944 1943 + f 4 -3883 1157 -1160 3883 + mu 0 4 1943 1944 209 207 + f 4 -3882 -3884 -1159 -1150 + mu 0 4 1942 1943 207 203 + f 4 470 3884 3885 -1157 + mu 0 4 1278 1283 1945 1944 + f 4 471 1164 3886 -3885 + mu 0 4 1283 1282 1946 1945 + f 4 -3887 1165 -1168 3887 + mu 0 4 1945 1946 215 213 + f 4 -3886 -3888 -1167 -1158 + mu 0 4 1944 1945 213 209 + f 4 472 3888 3889 -1165 + mu 0 4 1282 1287 1947 1946 + f 4 473 1172 3890 -3889 + mu 0 4 1287 1286 1948 1947 + f 4 -3891 1173 -1176 3891 + mu 0 4 1947 1948 221 219 + f 4 -3890 -3892 -1175 -1166 + mu 0 4 1946 1947 219 215 + f 4 474 3892 3893 -1173 + mu 0 4 1286 1291 1949 1948 + f 4 475 1180 3894 -3893 + mu 0 4 1291 1290 1950 1949 + f 4 -3895 1181 -1184 3895 + mu 0 4 1949 1950 227 225 + f 4 -3894 -3896 -1183 -1174 + mu 0 4 1948 1949 225 221 + f 4 476 3896 3897 -1181 + mu 0 4 1290 1295 1951 1950 + f 4 477 1188 3898 -3897 + mu 0 4 1295 2554 2553 1951 + f 4 -3899 1189 -1192 3899 + mu 0 4 1951 2553 2552 231 + f 4 -3898 -3900 -1191 -1182 + mu 0 4 1950 1951 231 227 + f 4 478 3900 3901 -1189 + mu 0 4 1294 1297 1953 1952 + f 4 479 1136 3902 -3901 + mu 0 4 1297 1271 1939 1953 + f 4 -3903 1137 -1198 3903 + mu 0 4 1953 1939 192 237 + f 4 -3902 -3904 -1197 -1190 + mu 0 4 1952 1953 237 233 + f 4 -484 3904 3905 -1201 + mu 0 4 244 241 1954 1955 + f 4 -483 1204 3906 -3905 + mu 0 4 241 240 1956 1954 + f 4 -3907 1205 1206 3907 + mu 0 4 1954 1956 1303 1302 + f 4 -3906 -3908 1207 -1202 + mu 0 4 1955 1954 1302 1301 + f 4 -488 3908 3909 -1211 + mu 0 4 251 249 1957 1958 + f 4 -487 1200 3910 -3909 + mu 0 4 249 244 1955 1957 + f 4 -3911 1201 1214 3911 + mu 0 4 1957 1955 1301 1307 + f 4 -3910 -3912 1215 -1212 + mu 0 4 1958 1957 1307 1306 + f 4 -492 3912 3913 -1217 + mu 0 4 257 255 1959 1960 + f 4 -491 1210 3914 -3913 + mu 0 4 255 251 1958 1959 + f 4 -3915 1211 1220 3915 + mu 0 4 1959 1958 1306 1311 + f 4 -3914 -3916 1221 -1218 + mu 0 4 1960 1959 1311 1310 + f 4 -496 3916 3917 -1223 + mu 0 4 263 261 1961 1962 + f 4 -495 1216 3918 -3917 + mu 0 4 261 257 1960 1961 + f 4 -3919 1217 1226 3919 + mu 0 4 1961 1960 1310 1315 + f 4 -3918 -3920 1227 -1224 + mu 0 4 1962 1961 1315 1314 + f 4 -500 3920 3921 -1229 + mu 0 4 269 267 1963 1964 + f 4 -499 1222 3922 -3921 + mu 0 4 267 263 1962 1963 + f 4 -3923 1223 1232 3923 + mu 0 4 1963 1962 1314 1319 + f 4 -3922 -3924 1233 -1230 + mu 0 4 1964 1963 1319 1318 + f 4 -504 3924 3925 -1235 + mu 0 4 275 273 1965 1966 + f 4 -503 1228 3926 -3925 + mu 0 4 273 269 1964 1965 + f 4 -3927 1229 1238 3927 + mu 0 4 1965 1964 1318 1323 + f 4 -3926 -3928 1239 -1236 + mu 0 4 1966 1965 1323 1322 + f 4 -508 3928 3929 -1241 + mu 0 4 281 279 1967 2549 + f 4 -507 1234 3930 -3929 + mu 0 4 279 275 1966 1967 + f 4 -3931 1235 1244 3931 + mu 0 4 1967 1966 1322 1327 + f 4 -3930 -3932 1245 -1242 + mu 0 4 2549 1967 1327 2547 + f 4 -510 3932 3933 -1205 + mu 0 4 240 285 1969 1956 + f 4 -509 1240 3934 -3933 + mu 0 4 285 2550 1968 1969 + f 4 -3935 1241 1246 3935 + mu 0 4 1969 1968 1326 1329 + f 4 -3934 -3936 1247 -1206 + mu 0 4 1956 1969 1329 1303 + f 4 512 3936 3937 -1249 + mu 0 4 1335 1334 1970 1971 + f 4 513 1250 3938 -3937 + mu 0 4 1334 1333 1972 1970 + f 4 -3939 1251 -1254 3939 + mu 0 4 1970 1972 292 289 + f 4 -3938 -3940 -1253 -1250 + mu 0 4 1971 1970 289 288 + f 4 514 3940 3941 -1251 + mu 0 4 1333 1339 1973 1972 + f 4 515 1260 3942 -3941 + mu 0 4 1339 1338 1974 1973 + f 4 -3943 1261 -1264 3943 + mu 0 4 1973 1974 299 297 + f 4 -3942 -3944 -1263 -1252 + mu 0 4 1972 1973 297 292 + f 4 516 3944 3945 -1261 + mu 0 4 1338 1343 1975 1974 + f 4 517 1268 3946 -3945 + mu 0 4 1343 1342 1976 1975 + f 4 -3947 1269 -1272 3947 + mu 0 4 1975 1976 305 303 + f 4 -3946 -3948 -1271 -1262 + mu 0 4 1974 1975 303 299 + f 4 518 3948 3949 -1269 + mu 0 4 1342 1347 1977 1976 + f 4 519 1276 3950 -3949 + mu 0 4 1347 1346 1978 1977 + f 4 -3951 1277 -1280 3951 + mu 0 4 1977 1978 311 309 + f 4 -3950 -3952 -1279 -1270 + mu 0 4 1976 1977 309 305 + f 4 520 3952 3953 -1277 + mu 0 4 1346 1351 1979 1978 + f 4 521 1284 3954 -3953 + mu 0 4 1351 1350 1980 1979 + f 4 -3955 1285 -1288 3955 + mu 0 4 1979 1980 317 315 + f 4 -3954 -3956 -1287 -1278 + mu 0 4 1978 1979 315 311 + f 4 522 3956 3957 -1285 + mu 0 4 1350 1355 1981 1980 + f 4 523 1292 3958 -3957 + mu 0 4 1355 1354 1982 1981 + f 4 -3959 1293 -1296 3959 + mu 0 4 1981 1982 323 321 + f 4 -3958 -3960 -1295 -1286 + mu 0 4 1980 1981 321 317 + f 4 524 3960 3961 -1293 + mu 0 4 1354 1359 1983 1982 + f 4 525 1300 3962 -3961 + mu 0 4 1359 2545 2544 1983 + f 4 -3963 1301 -1304 3963 + mu 0 4 1983 2544 2543 327 + f 4 -3962 -3964 -1303 -1294 + mu 0 4 1982 1983 327 323 + f 4 526 3964 3965 -1301 + mu 0 4 1358 1361 1985 1984 + f 4 527 1248 3966 -3965 + mu 0 4 1361 1335 1971 1985 + f 4 -3967 1249 -1310 3967 + mu 0 4 1985 1971 288 333 + f 4 -3966 -3968 -1309 -1302 + mu 0 4 1984 1985 333 329 + f 4 -532 3968 3969 -1313 + mu 0 4 340 337 1986 1987 + f 4 -531 1316 3970 -3969 + mu 0 4 337 336 1988 1986 + f 4 -3971 1317 1318 3971 + mu 0 4 1986 1988 1367 1366 + f 4 -3970 -3972 1319 -1314 + mu 0 4 1987 1986 1366 1365 + f 4 -536 3972 3973 -1323 + mu 0 4 347 345 1989 1990 + f 4 -535 1312 3974 -3973 + mu 0 4 345 340 1987 1989 + f 4 -3975 1313 1326 3975 + mu 0 4 1989 1987 1365 1371 + f 4 -3974 -3976 1327 -1324 + mu 0 4 1990 1989 1371 1370 + f 4 -540 3976 3977 -1329 + mu 0 4 353 351 1991 1992 + f 4 -539 1322 3978 -3977 + mu 0 4 351 347 1990 1991 + f 4 -3979 1323 1332 3979 + mu 0 4 1991 1990 1370 1375 + f 4 -3978 -3980 1333 -1330 + mu 0 4 1992 1991 1375 1374 + f 4 -544 3980 3981 -1335 + mu 0 4 359 357 1993 1994 + f 4 -543 1328 3982 -3981 + mu 0 4 357 353 1992 1993 + f 4 -3983 1329 1338 3983 + mu 0 4 1993 1992 1374 1379 + f 4 -3982 -3984 1339 -1336 + mu 0 4 1994 1993 1379 1378 + f 4 -548 3984 3985 -1341 + mu 0 4 365 363 1995 1996 + f 4 -547 1334 3986 -3985 + mu 0 4 363 359 1994 1995 + f 4 -3987 1335 1344 3987 + mu 0 4 1995 1994 1378 1383 + f 4 -3986 -3988 1345 -1342 + mu 0 4 1996 1995 1383 1382 + f 4 -552 3988 3989 -1347 + mu 0 4 371 369 1997 1998 + f 4 -551 1340 3990 -3989 + mu 0 4 369 365 1996 1997 + f 4 -3991 1341 1350 3991 + mu 0 4 1997 1996 1382 1387 + f 4 -3990 -3992 1351 -1348 + mu 0 4 1998 1997 1387 1386 + f 4 -556 3992 3993 -1353 + mu 0 4 377 375 1999 2540 + f 4 -555 1346 3994 -3993 + mu 0 4 375 371 1998 1999 + f 4 -3995 1347 1356 3995 + mu 0 4 1999 1998 1386 1391 + f 4 -3994 -3996 1357 -1354 + mu 0 4 2540 1999 1391 2538 + f 4 -558 3996 3997 -1317 + mu 0 4 336 381 2001 1988 + f 4 -557 1352 3998 -3997 + mu 0 4 381 2541 2000 2001 + f 4 -3999 1353 1358 3999 + mu 0 4 2001 2000 1390 1393 + f 4 -3998 -4000 1359 -1318 + mu 0 4 1988 2001 1393 1367 + f 4 560 4000 4001 -1361 + mu 0 4 1399 1398 2002 2003 + f 4 561 1362 4002 -4001 + mu 0 4 1398 1397 2004 2002 + f 4 -4003 1363 -1366 4003 + mu 0 4 2002 2004 388 385 + f 4 -4002 -4004 -1365 -1362 + mu 0 4 2003 2002 385 384 + f 4 562 4004 4005 -1363 + mu 0 4 1397 1403 2005 2004 + f 4 563 1372 4006 -4005 + mu 0 4 1403 1402 2006 2005 + f 4 -4007 1373 -1376 4007 + mu 0 4 2005 2006 395 393 + f 4 -4006 -4008 -1375 -1364 + mu 0 4 2004 2005 393 388 + f 4 564 4008 4009 -1373 + mu 0 4 1402 1407 2007 2006 + f 4 565 1380 4010 -4009 + mu 0 4 1407 1406 2008 2007 + f 4 -4011 1381 -1384 4011 + mu 0 4 2007 2008 401 399 + f 4 -4010 -4012 -1383 -1374 + mu 0 4 2006 2007 399 395 + f 4 566 4012 4013 -1381 + mu 0 4 1406 1411 2009 2008 + f 4 567 1388 4014 -4013 + mu 0 4 1411 1410 2010 2009 + f 4 -4015 1389 -1392 4015 + mu 0 4 2009 2010 407 405 + f 4 -4014 -4016 -1391 -1382 + mu 0 4 2008 2009 405 401 + f 4 568 4016 4017 -1389 + mu 0 4 1410 1415 2011 2010 + f 4 569 1396 4018 -4017 + mu 0 4 1415 1414 2012 2011 + f 4 -4019 1397 -1400 4019 + mu 0 4 2011 2012 413 411 + f 4 -4018 -4020 -1399 -1390 + mu 0 4 2010 2011 411 407 + f 4 570 4020 4021 -1397 + mu 0 4 1414 1419 2013 2012 + f 4 571 1404 4022 -4021 + mu 0 4 1419 1418 2014 2013 + f 4 -4023 1405 -1408 4023 + mu 0 4 2013 2014 419 417 + f 4 -4022 -4024 -1407 -1398 + mu 0 4 2012 2013 417 413 + f 4 572 4024 4025 -1405 + mu 0 4 1418 1423 2015 2014 + f 4 573 1412 4026 -4025 + mu 0 4 1423 2536 2535 2015 + f 4 -4027 1413 -1416 4027 + mu 0 4 2015 2535 2534 423 + f 4 -4026 -4028 -1415 -1406 + mu 0 4 2014 2015 423 419 + f 4 574 4028 4029 -1413 + mu 0 4 1422 1425 2017 2016 + f 4 575 1360 4030 -4029 + mu 0 4 1425 1399 2003 2017 + f 4 -4031 1361 -1422 4031 + mu 0 4 2017 2003 384 429 + f 4 -4030 -4032 -1421 -1414 + mu 0 4 2016 2017 429 425 + f 4 -580 4032 4033 -1425 + mu 0 4 436 433 2018 2019 + f 4 -579 1428 4034 -4033 + mu 0 4 433 432 2020 2018 + f 4 -4035 1429 1430 4035 + mu 0 4 2018 2020 1431 1430 + f 4 -4034 -4036 1431 -1426 + mu 0 4 2019 2018 1430 1429 + f 4 -584 4036 4037 -1435 + mu 0 4 443 441 2021 2022 + f 4 -583 1424 4038 -4037 + mu 0 4 441 436 2019 2021 + f 4 -4039 1425 1438 4039 + mu 0 4 2021 2019 1429 1435 + f 4 -4038 -4040 1439 -1436 + mu 0 4 2022 2021 1435 1434 + f 4 -588 4040 4041 -1441 + mu 0 4 449 447 2023 2024 + f 4 -587 1434 4042 -4041 + mu 0 4 447 443 2022 2023 + f 4 -4043 1435 1444 4043 + mu 0 4 2023 2022 1434 1439 + f 4 -4042 -4044 1445 -1442 + mu 0 4 2024 2023 1439 1438 + f 4 -592 4044 4045 -1447 + mu 0 4 455 453 2025 2026 + f 4 -591 1440 4046 -4045 + mu 0 4 453 449 2024 2025 + f 4 -4047 1441 1450 4047 + mu 0 4 2025 2024 1438 1443 + f 4 -4046 -4048 1451 -1448 + mu 0 4 2026 2025 1443 1442 + f 4 -596 4048 4049 -1453 + mu 0 4 461 459 2027 2028 + f 4 -595 1446 4050 -4049 + mu 0 4 459 455 2026 2027 + f 4 -4051 1447 1456 4051 + mu 0 4 2027 2026 1442 1447 + f 4 -4050 -4052 1457 -1454 + mu 0 4 2028 2027 1447 1446 + f 4 -600 4052 4053 -1459 + mu 0 4 467 465 2029 2030 + f 4 -599 1452 4054 -4053 + mu 0 4 465 461 2028 2029 + f 4 -4055 1453 1462 4055 + mu 0 4 2029 2028 1446 1451 + f 4 -4054 -4056 1463 -1460 + mu 0 4 2030 2029 1451 1450 + f 4 -604 4056 4057 -1465 + mu 0 4 473 471 2031 2531 + f 4 -603 1458 4058 -4057 + mu 0 4 471 467 2030 2031 + f 4 -4059 1459 1468 4059 + mu 0 4 2031 2030 1450 1455 + f 4 -4058 -4060 1469 -1466 + mu 0 4 2531 2031 1455 2529 + f 4 -606 4060 4061 -1429 + mu 0 4 432 477 2033 2020 + f 4 -605 1464 4062 -4061 + mu 0 4 477 2532 2032 2033 + f 4 -4063 1465 1470 4063 + mu 0 4 2033 2032 1454 1457 + f 4 -4062 -4064 1471 -1430 + mu 0 4 2020 2033 1457 1431 + f 4 608 4064 4065 -1473 + mu 0 4 1463 1462 2034 2035 + f 4 609 1474 4066 -4065 + mu 0 4 1462 1461 2036 2034 + f 4 -4067 1475 -1478 4067 + mu 0 4 2034 2036 484 481 + f 4 -4066 -4068 -1477 -1474 + mu 0 4 2035 2034 481 480 + f 4 610 4068 4069 -1475 + mu 0 4 1461 1467 2037 2036 + f 4 611 1484 4070 -4069 + mu 0 4 1467 1466 2038 2037 + f 4 -4071 1485 -1488 4071 + mu 0 4 2037 2038 491 489 + f 4 -4070 -4072 -1487 -1476 + mu 0 4 2036 2037 489 484 + f 4 612 4072 4073 -1485 + mu 0 4 1466 1471 2039 2038 + f 4 613 1492 4074 -4073 + mu 0 4 1471 1470 2040 2039 + f 4 -4075 1493 -1496 4075 + mu 0 4 2039 2040 497 495 + f 4 -4074 -4076 -1495 -1486 + mu 0 4 2038 2039 495 491 + f 4 614 4076 4077 -1493 + mu 0 4 1470 1475 2041 2040 + f 4 615 1500 4078 -4077 + mu 0 4 1475 1474 2042 2041 + f 4 -4079 1501 -1504 4079 + mu 0 4 2041 2042 503 501 + f 4 -4078 -4080 -1503 -1494 + mu 0 4 2040 2041 501 497 + f 4 616 4080 4081 -1501 + mu 0 4 1474 1479 2043 2042 + f 4 617 1508 4082 -4081 + mu 0 4 1479 1478 2044 2043 + f 4 -4083 1509 -1512 4083 + mu 0 4 2043 2044 509 507 + f 4 -4082 -4084 -1511 -1502 + mu 0 4 2042 2043 507 503 + f 4 618 4084 4085 -1509 + mu 0 4 1478 1483 2045 2044 + f 4 619 1516 4086 -4085 + mu 0 4 1483 1482 2046 2045 + f 4 -4087 1517 -1520 4087 + mu 0 4 2045 2046 515 513 + f 4 -4086 -4088 -1519 -1510 + mu 0 4 2044 2045 513 509 + f 4 620 4088 4089 -1517 + mu 0 4 1482 1487 2047 2046 + f 4 621 1524 4090 -4089 + mu 0 4 1487 2527 2526 2047 + f 4 -4091 1525 -1528 4091 + mu 0 4 2047 2526 2525 519 + f 4 -4090 -4092 -1527 -1518 + mu 0 4 2046 2047 519 515 + f 4 622 4092 4093 -1525 + mu 0 4 1486 1489 2049 2048 + f 4 623 1472 4094 -4093 + mu 0 4 1489 1463 2035 2049 + f 4 -4095 1473 -1534 4095 + mu 0 4 2049 2035 480 525 + f 4 -4094 -4096 -1533 -1526 + mu 0 4 2048 2049 525 521 + f 4 -628 4096 4097 -1537 + mu 0 4 532 529 2050 2051 + f 4 -627 1540 4098 -4097 + mu 0 4 529 528 2052 2050 + f 4 -4099 1541 1542 4099 + mu 0 4 2050 2052 1495 1494 + f 4 -4098 -4100 1543 -1538 + mu 0 4 2051 2050 1494 1493 + f 4 -632 4100 4101 -1547 + mu 0 4 539 537 2053 2054 + f 4 -631 1536 4102 -4101 + mu 0 4 537 532 2051 2053 + f 4 -4103 1537 1550 4103 + mu 0 4 2053 2051 1493 1499 + f 4 -4102 -4104 1551 -1548 + mu 0 4 2054 2053 1499 1498 + f 4 -636 4104 4105 -1553 + mu 0 4 545 543 2055 2056 + f 4 -635 1546 4106 -4105 + mu 0 4 543 539 2054 2055 + f 4 -4107 1547 1556 4107 + mu 0 4 2055 2054 1498 1503 + f 4 -4106 -4108 1557 -1554 + mu 0 4 2056 2055 1503 1502 + f 4 -640 4108 4109 -1559 + mu 0 4 551 549 2057 2058 + f 4 -639 1552 4110 -4109 + mu 0 4 549 545 2056 2057 + f 4 -4111 1553 1562 4111 + mu 0 4 2057 2056 1502 1507 + f 4 -4110 -4112 1563 -1560 + mu 0 4 2058 2057 1507 1506 + f 4 -644 4112 4113 -1565 + mu 0 4 557 555 2059 2060 + f 4 -643 1558 4114 -4113 + mu 0 4 555 551 2058 2059 + f 4 -4115 1559 1568 4115 + mu 0 4 2059 2058 1506 1511 + f 4 -4114 -4116 1569 -1566 + mu 0 4 2060 2059 1511 1510 + f 4 -648 4116 4117 -1571 + mu 0 4 563 561 2061 2062 + f 4 -647 1564 4118 -4117 + mu 0 4 561 557 2060 2061 + f 4 -4119 1565 1574 4119 + mu 0 4 2061 2060 1510 1515 + f 4 -4118 -4120 1575 -1572 + mu 0 4 2062 2061 1515 1514 + f 4 -652 4120 4121 -1577 + mu 0 4 569 567 2063 2522 + f 4 -651 1570 4122 -4121 + mu 0 4 567 563 2062 2063 + f 4 -4123 1571 1580 4123 + mu 0 4 2063 2062 1514 1519 + f 4 -4122 -4124 1581 -1578 + mu 0 4 2522 2063 1519 2520 + f 4 -654 4124 4125 -1541 + mu 0 4 528 573 2065 2052 + f 4 -653 1576 4126 -4125 + mu 0 4 573 2523 2064 2065 + f 4 -4127 1577 1582 4127 + mu 0 4 2065 2064 1518 1521 + f 4 -4126 -4128 1583 -1542 + mu 0 4 2052 2065 1521 1495 + f 4 656 4128 4129 -1585 + mu 0 4 1527 1526 2066 2067 + f 4 657 1586 4130 -4129 + mu 0 4 1526 1525 2068 2066 + f 4 -4131 1587 -1590 4131 + mu 0 4 2066 2068 580 577 + f 4 -4130 -4132 -1589 -1586 + mu 0 4 2067 2066 577 576 + f 4 658 4132 4133 -1587 + mu 0 4 1525 1531 2069 2068 + f 4 659 1596 4134 -4133 + mu 0 4 1531 1530 2070 2069 + f 4 -4135 1597 -1600 4135 + mu 0 4 2069 2070 587 585 + f 4 -4134 -4136 -1599 -1588 + mu 0 4 2068 2069 585 580 + f 4 660 4136 4137 -1597 + mu 0 4 1530 1535 2071 2070 + f 4 661 1604 4138 -4137 + mu 0 4 1535 1534 2072 2071 + f 4 -4139 1605 -1608 4139 + mu 0 4 2071 2072 593 591 + f 4 -4138 -4140 -1607 -1598 + mu 0 4 2070 2071 591 587 + f 4 662 4140 4141 -1605 + mu 0 4 1534 1539 2073 2072 + f 4 663 1612 4142 -4141 + mu 0 4 1539 1538 2074 2073 + f 4 -4143 1613 -1616 4143 + mu 0 4 2073 2074 599 597 + f 4 -4142 -4144 -1615 -1606 + mu 0 4 2072 2073 597 593 + f 4 664 4144 4145 -1613 + mu 0 4 1538 1543 2075 2074 + f 4 665 1620 4146 -4145 + mu 0 4 1543 1542 2076 2075 + f 4 -4147 1621 -1624 4147 + mu 0 4 2075 2076 605 603 + f 4 -4146 -4148 -1623 -1614 + mu 0 4 2074 2075 603 599 + f 4 666 4148 4149 -1621 + mu 0 4 1542 1547 2077 2076 + f 4 667 1628 4150 -4149 + mu 0 4 1547 1546 2078 2077 + f 4 -4151 1629 -1632 4151 + mu 0 4 2077 2078 611 609 + f 4 -4150 -4152 -1631 -1622 + mu 0 4 2076 2077 609 605 + f 4 668 4152 4153 -1629 + mu 0 4 1546 1551 2079 2078 + f 4 669 1636 4154 -4153 + mu 0 4 1551 2518 2517 2079 + f 4 -4155 1637 -1640 4155 + mu 0 4 2079 2517 2516 615 + f 4 -4154 -4156 -1639 -1630 + mu 0 4 2078 2079 615 611 + f 4 670 4156 4157 -1637 + mu 0 4 1550 1553 2081 2080 + f 4 671 1584 4158 -4157 + mu 0 4 1553 1527 2067 2081 + f 4 -4159 1585 -1646 4159 + mu 0 4 2081 2067 576 621 + f 4 -4158 -4160 -1645 -1638 + mu 0 4 2080 2081 621 617 + f 4 -676 4160 4161 -1649 + mu 0 4 628 625 2082 2083 + f 4 -675 1652 4162 -4161 + mu 0 4 625 624 2084 2082 + f 4 -4163 1653 1654 4163 + mu 0 4 2082 2084 1559 1558 + f 4 -4162 -4164 1655 -1650 + mu 0 4 2083 2082 1558 1557 + f 4 -680 4164 4165 -1659 + mu 0 4 635 633 2085 2086 + f 4 -679 1648 4166 -4165 + mu 0 4 633 628 2083 2085 + f 4 -4167 1649 1662 4167 + mu 0 4 2085 2083 1557 1563 + f 4 -4166 -4168 1663 -1660 + mu 0 4 2086 2085 1563 1562 + f 4 -684 4168 4169 -1665 + mu 0 4 641 639 2087 2088 + f 4 -683 1658 4170 -4169 + mu 0 4 639 635 2086 2087 + f 4 -4171 1659 1668 4171 + mu 0 4 2087 2086 1562 1567 + f 4 -4170 -4172 1669 -1666 + mu 0 4 2088 2087 1567 1566 + f 4 -688 4172 4173 -1671 + mu 0 4 647 645 2089 2090 + f 4 -687 1664 4174 -4173 + mu 0 4 645 641 2088 2089 + f 4 -4175 1665 1674 4175 + mu 0 4 2089 2088 1566 1571 + f 4 -4174 -4176 1675 -1672 + mu 0 4 2090 2089 1571 1570 + f 4 -692 4176 4177 -1677 + mu 0 4 653 651 2091 2092 + f 4 -691 1670 4178 -4177 + mu 0 4 651 647 2090 2091 + f 4 -4179 1671 1680 4179 + mu 0 4 2091 2090 1570 1575 + f 4 -4178 -4180 1681 -1678 + mu 0 4 2092 2091 1575 1574 + f 4 -696 4180 4181 -1683 + mu 0 4 659 657 2093 2094 + f 4 -695 1676 4182 -4181 + mu 0 4 657 653 2092 2093 + f 4 -4183 1677 1686 4183 + mu 0 4 2093 2092 1574 1579 + f 4 -4182 -4184 1687 -1684 + mu 0 4 2094 2093 1579 1578 + f 4 -700 4184 4185 -1689 + mu 0 4 665 663 2095 2513 + f 4 -699 1682 4186 -4185 + mu 0 4 663 659 2094 2095 + f 4 -4187 1683 1692 4187 + mu 0 4 2095 2094 1578 1583 + f 4 -4186 -4188 1693 -1690 + mu 0 4 2513 2095 1583 2511 + f 4 -702 4188 4189 -1653 + mu 0 4 624 669 2097 2084 + f 4 -701 1688 4190 -4189 + mu 0 4 669 2514 2096 2097 + f 4 -4191 1689 1694 4191 + mu 0 4 2097 2096 1582 1585 + f 4 -4190 -4192 1695 -1654 + mu 0 4 2084 2097 1585 1559 + f 4 704 4192 4193 -1697 + mu 0 4 1591 1590 2098 2099 + f 4 705 1698 4194 -4193 + mu 0 4 1590 1589 2100 2098 + f 4 -4195 1699 -1702 4195 + mu 0 4 2098 2100 676 673 + f 4 -4194 -4196 -1701 -1698 + mu 0 4 2099 2098 673 672 + f 4 706 4196 4197 -1699 + mu 0 4 1589 1595 2101 2100 + f 4 707 1708 4198 -4197 + mu 0 4 1595 1594 2102 2101 + f 4 -4199 1709 -1712 4199 + mu 0 4 2101 2102 683 681 + f 4 -4198 -4200 -1711 -1700 + mu 0 4 2100 2101 681 676 + f 4 708 4200 4201 -1709 + mu 0 4 1594 1599 2103 2102 + f 4 709 1716 4202 -4201 + mu 0 4 1599 1598 2104 2103 + f 4 -4203 1717 -1720 4203 + mu 0 4 2103 2104 689 687 + f 4 -4202 -4204 -1719 -1710 + mu 0 4 2102 2103 687 683 + f 4 710 4204 4205 -1717 + mu 0 4 1598 1603 2105 2104 + f 4 711 1724 4206 -4205 + mu 0 4 1603 1602 2106 2105 + f 4 -4207 1725 -1728 4207 + mu 0 4 2105 2106 695 693 + f 4 -4206 -4208 -1727 -1718 + mu 0 4 2104 2105 693 689 + f 4 712 4208 4209 -1725 + mu 0 4 1602 1607 2107 2106 + f 4 713 1732 4210 -4209 + mu 0 4 1607 1606 2108 2107 + f 4 -4211 1733 -1736 4211 + mu 0 4 2107 2108 701 699 + f 4 -4210 -4212 -1735 -1726 + mu 0 4 2106 2107 699 695 + f 4 714 4212 4213 -1733 + mu 0 4 1606 1611 2109 2108 + f 4 715 1740 4214 -4213 + mu 0 4 1611 1610 2110 2109 + f 4 -4215 1741 -1744 4215 + mu 0 4 2109 2110 707 705 + f 4 -4214 -4216 -1743 -1734 + mu 0 4 2108 2109 705 701 + f 4 716 4216 4217 -1741 + mu 0 4 1610 1615 2111 2110 + f 4 717 1748 4218 -4217 + mu 0 4 1615 2509 2508 2111 + f 4 -4219 1749 -1752 4219 + mu 0 4 2111 2508 2507 711 + f 4 -4218 -4220 -1751 -1742 + mu 0 4 2110 2111 711 707 + f 4 718 4220 4221 -1749 + mu 0 4 1614 1617 2113 2112 + f 4 719 1696 4222 -4221 + mu 0 4 1617 1591 2099 2113 + f 4 -4223 1697 -1758 4223 + mu 0 4 2113 2099 672 717 + f 4 -4222 -4224 -1757 -1750 + mu 0 4 2112 2113 717 713 + f 4 -724 4224 4225 -1761 + mu 0 4 724 721 2114 2115 + f 4 -723 1764 4226 -4225 + mu 0 4 721 720 2116 2114 + f 4 -4227 1765 1766 4227 + mu 0 4 2114 2116 1623 1622 + f 4 -4226 -4228 1767 -1762 + mu 0 4 2115 2114 1622 1621 + f 4 -728 4228 4229 -1771 + mu 0 4 731 729 2117 2118 + f 4 -727 1760 4230 -4229 + mu 0 4 729 724 2115 2117 + f 4 -4231 1761 1774 4231 + mu 0 4 2117 2115 1621 1627 + f 4 -4230 -4232 1775 -1772 + mu 0 4 2118 2117 1627 1626 + f 4 -732 4232 4233 -1777 + mu 0 4 737 735 2119 2120 + f 4 -731 1770 4234 -4233 + mu 0 4 735 731 2118 2119 + f 4 -4235 1771 1780 4235 + mu 0 4 2119 2118 1626 1631 + f 4 -4234 -4236 1781 -1778 + mu 0 4 2120 2119 1631 1630 + f 4 -736 4236 4237 -1783 + mu 0 4 743 741 2121 2122 + f 4 -735 1776 4238 -4237 + mu 0 4 741 737 2120 2121 + f 4 -4239 1777 1786 4239 + mu 0 4 2121 2120 1630 1635 + f 4 -4238 -4240 1787 -1784 + mu 0 4 2122 2121 1635 1634 + f 4 -740 4240 4241 -1789 + mu 0 4 749 747 2123 2124 + f 4 -739 1782 4242 -4241 + mu 0 4 747 743 2122 2123 + f 4 -4243 1783 1792 4243 + mu 0 4 2123 2122 1634 1639 + f 4 -4242 -4244 1793 -1790 + mu 0 4 2124 2123 1639 1638 + f 4 -744 4244 4245 -1795 + mu 0 4 755 753 2125 2126 + f 4 -743 1788 4246 -4245 + mu 0 4 753 749 2124 2125 + f 4 -4247 1789 1798 4247 + mu 0 4 2125 2124 1638 1643 + f 4 -4246 -4248 1799 -1796 + mu 0 4 2126 2125 1643 1642 + f 4 -748 4248 4249 -1801 + mu 0 4 761 759 2127 2504 + f 4 -747 1794 4250 -4249 + mu 0 4 759 755 2126 2127 + f 4 -4251 1795 1804 4251 + mu 0 4 2127 2126 1642 1647 + f 4 -4250 -4252 1805 -1802 + mu 0 4 2504 2127 1647 2502 + f 4 -750 4252 4253 -1765 + mu 0 4 720 765 2129 2116 + f 4 -749 1800 4254 -4253 + mu 0 4 765 2505 2128 2129 + f 4 -4255 1801 1806 4255 + mu 0 4 2129 2128 1646 1649 + f 4 -4254 -4256 1807 -1766 + mu 0 4 2116 2129 1649 1623; + setAttr ".fc[2000:2255]" + f 4 752 4256 4257 -1809 + mu 0 4 1655 1654 2130 2131 + f 4 753 1810 4258 -4257 + mu 0 4 1654 1653 2132 2130 + f 4 -4259 1811 -1814 4259 + mu 0 4 2130 2132 772 769 + f 4 -4258 -4260 -1813 -1810 + mu 0 4 2131 2130 769 768 + f 4 754 4260 4261 -1811 + mu 0 4 1653 1659 2133 2132 + f 4 755 1820 4262 -4261 + mu 0 4 1659 1658 2134 2133 + f 4 -4263 1821 -1824 4263 + mu 0 4 2133 2134 779 777 + f 4 -4262 -4264 -1823 -1812 + mu 0 4 2132 2133 777 772 + f 4 756 4264 4265 -1821 + mu 0 4 1658 1663 2135 2134 + f 4 757 1828 4266 -4265 + mu 0 4 1663 1662 2136 2135 + f 4 -4267 1829 -1832 4267 + mu 0 4 2135 2136 785 783 + f 4 -4266 -4268 -1831 -1822 + mu 0 4 2134 2135 783 779 + f 4 758 4268 4269 -1829 + mu 0 4 1662 1667 2137 2136 + f 4 759 1836 4270 -4269 + mu 0 4 1667 1666 2138 2137 + f 4 -4271 1837 -1840 4271 + mu 0 4 2137 2138 791 789 + f 4 -4270 -4272 -1839 -1830 + mu 0 4 2136 2137 789 785 + f 4 760 4272 4273 -1837 + mu 0 4 1666 1671 2139 2138 + f 4 761 1844 4274 -4273 + mu 0 4 1671 1670 2140 2139 + f 4 -4275 1845 -1848 4275 + mu 0 4 2139 2140 797 795 + f 4 -4274 -4276 -1847 -1838 + mu 0 4 2138 2139 795 791 + f 4 762 4276 4277 -1845 + mu 0 4 1670 1675 2141 2140 + f 4 763 1852 4278 -4277 + mu 0 4 1675 1674 2142 2141 + f 4 -4279 1853 -1856 4279 + mu 0 4 2141 2142 803 801 + f 4 -4278 -4280 -1855 -1846 + mu 0 4 2140 2141 801 797 + f 4 764 4280 4281 -1853 + mu 0 4 1674 1679 2143 2142 + f 4 765 1860 4282 -4281 + mu 0 4 1679 2500 2499 2143 + f 4 -4283 1861 -1864 4283 + mu 0 4 2143 2499 2498 807 + f 4 -4282 -4284 -1863 -1854 + mu 0 4 2142 2143 807 803 + f 4 766 4284 4285 -1861 + mu 0 4 1678 1681 2145 2144 + f 4 767 1808 4286 -4285 + mu 0 4 1681 1655 2131 2145 + f 4 -4287 1809 -1870 4287 + mu 0 4 2145 2131 768 813 + f 4 -4286 -4288 -1869 -1862 + mu 0 4 2144 2145 813 809 + f 4 -772 4288 4289 -1873 + mu 0 4 820 817 2146 2147 + f 4 -771 1876 4290 -4289 + mu 0 4 817 816 2148 2146 + f 4 -4291 1877 1878 4291 + mu 0 4 2146 2148 1687 1686 + f 4 -4290 -4292 1879 -1874 + mu 0 4 2147 2146 1686 1685 + f 4 -776 4292 4293 -1883 + mu 0 4 827 825 2149 2150 + f 4 -775 1872 4294 -4293 + mu 0 4 825 820 2147 2149 + f 4 -4295 1873 1886 4295 + mu 0 4 2149 2147 1685 1691 + f 4 -4294 -4296 1887 -1884 + mu 0 4 2150 2149 1691 1690 + f 4 -780 4296 4297 -1889 + mu 0 4 833 831 2151 2152 + f 4 -779 1882 4298 -4297 + mu 0 4 831 827 2150 2151 + f 4 -4299 1883 1892 4299 + mu 0 4 2151 2150 1690 1695 + f 4 -4298 -4300 1893 -1890 + mu 0 4 2152 2151 1695 1694 + f 4 -784 4300 4301 -1895 + mu 0 4 839 837 2153 2154 + f 4 -783 1888 4302 -4301 + mu 0 4 837 833 2152 2153 + f 4 -4303 1889 1898 4303 + mu 0 4 2153 2152 1694 1699 + f 4 -4302 -4304 1899 -1896 + mu 0 4 2154 2153 1699 1698 + f 4 -788 4304 4305 -1901 + mu 0 4 845 843 2155 2156 + f 4 -787 1894 4306 -4305 + mu 0 4 843 839 2154 2155 + f 4 -4307 1895 1904 4307 + mu 0 4 2155 2154 1698 1703 + f 4 -4306 -4308 1905 -1902 + mu 0 4 2156 2155 1703 1702 + f 4 -792 4308 4309 -1907 + mu 0 4 851 849 2157 2158 + f 4 -791 1900 4310 -4309 + mu 0 4 849 845 2156 2157 + f 4 -4311 1901 1910 4311 + mu 0 4 2157 2156 1702 1707 + f 4 -4310 -4312 1911 -1908 + mu 0 4 2158 2157 1707 1706 + f 4 -796 4312 4313 -1913 + mu 0 4 857 855 2159 2495 + f 4 -795 1906 4314 -4313 + mu 0 4 855 851 2158 2159 + f 4 -4315 1907 1916 4315 + mu 0 4 2159 2158 1706 1711 + f 4 -4314 -4316 1917 -1914 + mu 0 4 2495 2159 1711 2493 + f 4 -798 4316 4317 -1877 + mu 0 4 816 861 2161 2148 + f 4 -797 1912 4318 -4317 + mu 0 4 861 2496 2160 2161 + f 4 -4319 1913 1918 4319 + mu 0 4 2161 2160 1710 1713 + f 4 -4318 -4320 1919 -1878 + mu 0 4 2148 2161 1713 1687 + f 4 800 4320 4321 -1921 + mu 0 4 1719 1718 2162 2163 + f 4 801 1922 4322 -4321 + mu 0 4 1718 1717 2164 2162 + f 4 -4323 1923 -1926 4323 + mu 0 4 2162 2164 868 865 + f 4 -4322 -4324 -1925 -1922 + mu 0 4 2163 2162 865 864 + f 4 802 4324 4325 -1923 + mu 0 4 1717 1723 2165 2164 + f 4 803 1932 4326 -4325 + mu 0 4 1723 1722 2166 2165 + f 4 -4327 1933 -1936 4327 + mu 0 4 2165 2166 875 873 + f 4 -4326 -4328 -1935 -1924 + mu 0 4 2164 2165 873 868 + f 4 804 4328 4329 -1933 + mu 0 4 1722 1727 2167 2166 + f 4 805 1940 4330 -4329 + mu 0 4 1727 1726 2168 2167 + f 4 -4331 1941 -1944 4331 + mu 0 4 2167 2168 881 879 + f 4 -4330 -4332 -1943 -1934 + mu 0 4 2166 2167 879 875 + f 4 806 4332 4333 -1941 + mu 0 4 1726 1731 2169 2168 + f 4 807 1948 4334 -4333 + mu 0 4 1731 1730 2170 2169 + f 4 -4335 1949 -1952 4335 + mu 0 4 2169 2170 887 885 + f 4 -4334 -4336 -1951 -1942 + mu 0 4 2168 2169 885 881 + f 4 808 4336 4337 -1949 + mu 0 4 1730 1735 2171 2170 + f 4 809 1956 4338 -4337 + mu 0 4 1735 1734 2172 2171 + f 4 -4339 1957 -1960 4339 + mu 0 4 2171 2172 893 891 + f 4 -4338 -4340 -1959 -1950 + mu 0 4 2170 2171 891 887 + f 4 810 4340 4341 -1957 + mu 0 4 1734 1739 2173 2172 + f 4 811 1964 4342 -4341 + mu 0 4 1739 1738 2174 2173 + f 4 -4343 1965 -1968 4343 + mu 0 4 2173 2174 899 897 + f 4 -4342 -4344 -1967 -1958 + mu 0 4 2172 2173 897 893 + f 4 812 4344 4345 -1965 + mu 0 4 1738 1743 2175 2174 + f 4 813 1972 4346 -4345 + mu 0 4 1743 2491 2490 2175 + f 4 -4347 1973 -1976 4347 + mu 0 4 2175 2490 2489 903 + f 4 -4346 -4348 -1975 -1966 + mu 0 4 2174 2175 903 899 + f 4 814 4348 4349 -1973 + mu 0 4 1742 1745 2177 2176 + f 4 815 1920 4350 -4349 + mu 0 4 1745 1719 2163 2177 + f 4 -4351 1921 -1982 4351 + mu 0 4 2177 2163 864 909 + f 4 -4350 -4352 -1981 -1974 + mu 0 4 2176 2177 909 905 + f 4 -820 4352 4353 -1985 + mu 0 4 916 913 2178 2179 + f 4 -819 1988 4354 -4353 + mu 0 4 913 912 2180 2178 + f 4 -4355 1989 1990 4355 + mu 0 4 2178 2180 1751 1750 + f 4 -4354 -4356 1991 -1986 + mu 0 4 2179 2178 1750 1749 + f 4 -824 4356 4357 -1995 + mu 0 4 923 921 2181 2182 + f 4 -823 1984 4358 -4357 + mu 0 4 921 916 2179 2181 + f 4 -4359 1985 1998 4359 + mu 0 4 2181 2179 1749 1755 + f 4 -4358 -4360 1999 -1996 + mu 0 4 2182 2181 1755 1754 + f 4 -828 4360 4361 -2001 + mu 0 4 929 927 2183 2184 + f 4 -827 1994 4362 -4361 + mu 0 4 927 923 2182 2183 + f 4 -4363 1995 2004 4363 + mu 0 4 2183 2182 1754 1759 + f 4 -4362 -4364 2005 -2002 + mu 0 4 2184 2183 1759 1758 + f 4 -832 4364 4365 -2007 + mu 0 4 935 933 2185 2186 + f 4 -831 2000 4366 -4365 + mu 0 4 933 929 2184 2185 + f 4 -4367 2001 2010 4367 + mu 0 4 2185 2184 1758 1763 + f 4 -4366 -4368 2011 -2008 + mu 0 4 2186 2185 1763 1762 + f 4 -836 4368 4369 -2013 + mu 0 4 941 939 2187 2188 + f 4 -835 2006 4370 -4369 + mu 0 4 939 935 2186 2187 + f 4 -4371 2007 2016 4371 + mu 0 4 2187 2186 1762 1767 + f 4 -4370 -4372 2017 -2014 + mu 0 4 2188 2187 1767 1766 + f 4 -840 4372 4373 -2019 + mu 0 4 947 945 2189 2190 + f 4 -839 2012 4374 -4373 + mu 0 4 945 941 2188 2189 + f 4 -4375 2013 2022 4375 + mu 0 4 2189 2188 1766 1771 + f 4 -4374 -4376 2023 -2020 + mu 0 4 2190 2189 1771 1770 + f 4 -844 4376 4377 -2025 + mu 0 4 953 951 2191 2486 + f 4 -843 2018 4378 -4377 + mu 0 4 951 947 2190 2191 + f 4 -4379 2019 2028 4379 + mu 0 4 2191 2190 1770 1775 + f 4 -4378 -4380 2029 -2026 + mu 0 4 2486 2191 1775 2484 + f 4 -846 4380 4381 -1989 + mu 0 4 912 957 2193 2180 + f 4 -845 2024 4382 -4381 + mu 0 4 957 2487 2192 2193 + f 4 -4383 2025 2030 4383 + mu 0 4 2193 2192 1774 1777 + f 4 -4382 -4384 2031 -1990 + mu 0 4 2180 2193 1777 1751 + f 4 848 4384 4385 -2033 + mu 0 4 1783 1782 2194 2195 + f 4 849 2034 4386 -4385 + mu 0 4 1782 1781 2196 2194 + f 4 -4387 2035 -2038 4387 + mu 0 4 2194 2196 964 961 + f 4 -4386 -4388 -2037 -2034 + mu 0 4 2195 2194 961 960 + f 4 850 4388 4389 -2035 + mu 0 4 1781 1787 2197 2196 + f 4 851 2044 4390 -4389 + mu 0 4 1787 1786 2198 2197 + f 4 -4391 2045 -2048 4391 + mu 0 4 2197 2198 971 969 + f 4 -4390 -4392 -2047 -2036 + mu 0 4 2196 2197 969 964 + f 4 852 4392 4393 -2045 + mu 0 4 1786 1791 2199 2198 + f 4 853 2052 4394 -4393 + mu 0 4 1791 1790 2200 2199 + f 4 -4395 2053 -2056 4395 + mu 0 4 2199 2200 977 975 + f 4 -4394 -4396 -2055 -2046 + mu 0 4 2198 2199 975 971 + f 4 854 4396 4397 -2053 + mu 0 4 1790 1795 2201 2200 + f 4 855 2060 4398 -4397 + mu 0 4 1795 1794 2202 2201 + f 4 -4399 2061 -2064 4399 + mu 0 4 2201 2202 983 981 + f 4 -4398 -4400 -2063 -2054 + mu 0 4 2200 2201 981 977 + f 4 856 4400 4401 -2061 + mu 0 4 1794 1799 2203 2202 + f 4 857 2068 4402 -4401 + mu 0 4 1799 1798 2204 2203 + f 4 -4403 2069 -2072 4403 + mu 0 4 2203 2204 989 987 + f 4 -4402 -4404 -2071 -2062 + mu 0 4 2202 2203 987 983 + f 4 858 4404 4405 -2069 + mu 0 4 1798 1803 2205 2204 + f 4 859 2076 4406 -4405 + mu 0 4 1803 1802 2206 2205 + f 4 -4407 2077 -2080 4407 + mu 0 4 2205 2206 995 993 + f 4 -4406 -4408 -2079 -2070 + mu 0 4 2204 2205 993 989 + f 4 860 4408 4409 -2077 + mu 0 4 1802 1807 2207 2206 + f 4 861 2084 4410 -4409 + mu 0 4 1807 2482 2481 2207 + f 4 -4411 2085 -2088 4411 + mu 0 4 2207 2481 2480 999 + f 4 -4410 -4412 -2087 -2078 + mu 0 4 2206 2207 999 995 + f 4 862 4412 4413 -2085 + mu 0 4 1806 1809 2209 2208 + f 4 863 2032 4414 -4413 + mu 0 4 1809 1783 2195 2209 + f 4 -4415 2033 -2094 4415 + mu 0 4 2209 2195 960 1005 + f 4 -4414 -4416 -2093 -2086 + mu 0 4 2208 2209 1005 1001 + f 4 -868 4416 4417 -2097 + mu 0 4 1012 1009 2210 2211 + f 4 -867 2100 4418 -4417 + mu 0 4 1009 1008 2212 2210 + f 4 -4419 2101 2102 4419 + mu 0 4 2210 2212 1815 1814 + f 4 -4418 -4420 2103 -2098 + mu 0 4 2211 2210 1814 1813 + f 4 -872 4420 4421 -2107 + mu 0 4 1019 1017 2213 2214 + f 4 -871 2096 4422 -4421 + mu 0 4 1017 1012 2211 2213 + f 4 -4423 2097 2110 4423 + mu 0 4 2213 2211 1813 1819 + f 4 -4422 -4424 2111 -2108 + mu 0 4 2214 2213 1819 1818 + f 4 -876 4424 4425 -2113 + mu 0 4 1025 1023 2215 2216 + f 4 -875 2106 4426 -4425 + mu 0 4 1023 1019 2214 2215 + f 4 -4427 2107 2116 4427 + mu 0 4 2215 2214 1818 1823 + f 4 -4426 -4428 2117 -2114 + mu 0 4 2216 2215 1823 1822 + f 4 -880 4428 4429 -2119 + mu 0 4 1031 1029 2217 2218 + f 4 -879 2112 4430 -4429 + mu 0 4 1029 1025 2216 2217 + f 4 -4431 2113 2122 4431 + mu 0 4 2217 2216 1822 1827 + f 4 -4430 -4432 2123 -2120 + mu 0 4 2218 2217 1827 1826 + f 4 -884 4432 4433 -2125 + mu 0 4 1037 1035 2219 2220 + f 4 -883 2118 4434 -4433 + mu 0 4 1035 1031 2218 2219 + f 4 -4435 2119 2128 4435 + mu 0 4 2219 2218 1826 1831 + f 4 -4434 -4436 2129 -2126 + mu 0 4 2220 2219 1831 1830 + f 4 -888 4436 4437 -2131 + mu 0 4 1043 1041 2221 2222 + f 4 -887 2124 4438 -4437 + mu 0 4 1041 1037 2220 2221 + f 4 -4439 2125 2134 4439 + mu 0 4 2221 2220 1830 1835 + f 4 -4438 -4440 2135 -2132 + mu 0 4 2222 2221 1835 1834 + f 4 -892 4440 4441 -2137 + mu 0 4 1049 1047 2223 2477 + f 4 -891 2130 4442 -4441 + mu 0 4 1047 1043 2222 2223 + f 4 -4443 2131 2140 4443 + mu 0 4 2223 2222 1834 1839 + f 4 -4442 -4444 2141 -2138 + mu 0 4 2477 2223 1839 2475 + f 4 -894 4444 4445 -2101 + mu 0 4 1008 1053 2225 2212 + f 4 -893 2136 4446 -4445 + mu 0 4 1053 2478 2224 2225 + f 4 -4447 2137 2142 4447 + mu 0 4 2225 2224 1838 1841 + f 4 -4446 -4448 2143 -2102 + mu 0 4 2212 2225 1841 1815 + f 4 896 4448 4449 -2145 + mu 0 4 1847 1846 2226 2227 + f 4 897 2146 4450 -4449 + mu 0 4 1846 1845 2228 2226 + f 4 -4451 2147 -2150 4451 + mu 0 4 2226 2228 1060 1057 + f 4 -4450 -4452 -2149 -2146 + mu 0 4 2227 2226 1057 1056 + f 4 898 4452 4453 -2147 + mu 0 4 1845 1851 2229 2228 + f 4 899 2156 4454 -4453 + mu 0 4 1851 1850 2230 2229 + f 4 -4455 2157 -2160 4455 + mu 0 4 2229 2230 1067 1065 + f 4 -4454 -4456 -2159 -2148 + mu 0 4 2228 2229 1065 1060 + f 4 900 4456 4457 -2157 + mu 0 4 1850 1855 2231 2230 + f 4 901 2164 4458 -4457 + mu 0 4 1855 1854 2232 2231 + f 4 -4459 2165 -2168 4459 + mu 0 4 2231 2232 1073 1071 + f 4 -4458 -4460 -2167 -2158 + mu 0 4 2230 2231 1071 1067 + f 4 902 4460 4461 -2165 + mu 0 4 1854 1859 2233 2232 + f 4 903 2172 4462 -4461 + mu 0 4 1859 1858 2234 2233 + f 4 -4463 2173 -2176 4463 + mu 0 4 2233 2234 1079 1077 + f 4 -4462 -4464 -2175 -2166 + mu 0 4 2232 2233 1077 1073 + f 4 904 4464 4465 -2173 + mu 0 4 1858 1863 2235 2234 + f 4 905 2180 4466 -4465 + mu 0 4 1863 1862 2236 2235 + f 4 -4467 2181 -2184 4467 + mu 0 4 2235 2236 1085 1083 + f 4 -4466 -4468 -2183 -2174 + mu 0 4 2234 2235 1083 1079 + f 4 906 4468 4469 -2181 + mu 0 4 1862 1867 2237 2236 + f 4 907 2188 4470 -4469 + mu 0 4 1867 1866 2238 2237 + f 4 -4471 2189 -2192 4471 + mu 0 4 2237 2238 1091 1089 + f 4 -4470 -4472 -2191 -2182 + mu 0 4 2236 2237 1089 1085 + f 4 908 4472 4473 -2189 + mu 0 4 1866 1871 2239 2238 + f 4 909 2196 4474 -4473 + mu 0 4 1871 2473 2472 2239 + f 4 -4475 2197 -2200 4475 + mu 0 4 2239 2472 2471 1095 + f 4 -4474 -4476 -2199 -2190 + mu 0 4 2238 2239 1095 1091 + f 4 910 4476 4477 -2197 + mu 0 4 1870 1873 2241 2240 + f 4 911 2144 4478 -4477 + mu 0 4 1873 1847 2227 2241 + f 4 -4479 2145 -2206 4479 + mu 0 4 2241 2227 1056 1101 + f 4 -4478 -4480 -2205 -2198 + mu 0 4 2240 2241 1101 1097 + f 4 368 4480 4481 -2209 + mu 0 4 1157 1154 2449 2447 + f 4 369 2212 4482 -4481 + mu 0 4 1154 1153 2244 2449 + f 4 -4483 2213 -2216 4483 + mu 0 4 2242 2436 1109 1108 + f 4 -4482 -4484 -2215 -2210 + mu 0 4 2243 2242 1108 1107 + f 4 370 4484 4485 -2219 + mu 0 4 1159 1158 2448 2445 + f 4 371 2208 4486 -4485 + mu 0 4 1158 1157 2447 2448 + f 4 -4487 2209 -2224 4487 + mu 0 4 2245 2243 1107 1113 + f 4 -4486 -4488 -2223 -2220 + mu 0 4 2246 2245 1113 1112 + f 4 372 4488 4489 -2225 + mu 0 4 1161 1160 2446 2443 + f 4 373 2218 4490 -4489 + mu 0 4 1160 1159 2445 2446 + f 4 -4491 2219 -2230 4491 + mu 0 4 2247 2246 1112 1117 + f 4 -4490 -4492 -2229 -2226 + mu 0 4 2248 2247 1117 1116 + f 4 374 4492 4493 -2231 + mu 0 4 1163 1162 2444 2441 + f 4 375 2224 4494 -4493 + mu 0 4 1162 1161 2443 2444 + f 4 -4495 2225 -2236 4495 + mu 0 4 2249 2248 1116 1121 + f 4 -4494 -4496 -2235 -2232 + mu 0 4 2250 2249 1121 1120 + f 4 376 4496 4497 -2237 + mu 0 4 1165 1164 2442 2439 + f 4 377 2230 4498 -4497 + mu 0 4 1164 1163 2441 2442 + f 4 -4499 2231 -2242 4499 + mu 0 4 2251 2250 1120 1125 + f 4 -4498 -4500 -2241 -2238 + mu 0 4 2252 2251 1125 1124 + f 4 378 4500 4501 -2243 + mu 0 4 1167 1166 2440 2437 + f 4 379 2236 4502 -4501 + mu 0 4 1166 1165 2439 2440 + f 4 -4503 2237 -2248 4503 + mu 0 4 2253 2252 1124 1129 + f 4 -4502 -4504 -2247 -2244 + mu 0 4 2254 2253 1129 1128 + f 4 380 4504 4505 -2249 + mu 0 4 1169 1168 2438 2434 + f 4 381 2242 4506 -4505 + mu 0 4 1168 1167 2437 2438 + f 4 -4507 2243 -2254 4507 + mu 0 4 2255 2254 1128 1133 + f 4 -4506 -4508 -2253 -2250 + mu 0 4 2469 2255 1133 2467 + f 4 382 4508 4509 -2213 + mu 0 4 1153 1156 2435 2244 + f 4 383 2248 4510 -4509 + mu 0 4 1156 1169 2434 2435 + f 4 -4511 2249 -2256 4511 + mu 0 4 2257 2256 1132 1135 + f 4 -4510 -4512 -2255 -2214 + mu 0 4 2436 2257 1135 1109; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; + setAttr ".dr" 1; +createNode transform -n "teeth_sup_geo" -p "blue_bomb_grp"; + rename -uid "ACAE3118-4E7A-9293-76FA-298FE8078A52"; + setAttr ".rp" -type "double3" 0 80.921066745661093 71.336446780368291 ; + setAttr ".sp" -type "double3" 0 80.921066745661093 71.336446780368291 ; +createNode mesh -n "teeth_sup_geoShape" -p "teeth_sup_geo"; + rename -uid "5D943E74-472A-2CA4-D4C4-EABB5E20C8FA"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr -s 10 ".gtag"; + setAttr ".gtag[0].gtagnm" -type "string" "bottom"; + setAttr ".gtag[0].gtagcmp" -type "componentList" 0; + setAttr ".gtag[1].gtagnm" -type "string" "bottomRing"; + setAttr ".gtag[1].gtagcmp" -type "componentList" 0; + setAttr ".gtag[2].gtagnm" -type "string" "cylBottomCap"; + setAttr ".gtag[2].gtagcmp" -type "componentList" 0; + setAttr ".gtag[3].gtagnm" -type "string" "cylBottomRing"; + setAttr ".gtag[3].gtagcmp" -type "componentList" 0; + setAttr ".gtag[4].gtagnm" -type "string" "cylSides"; + setAttr ".gtag[4].gtagcmp" -type "componentList" 0; + setAttr ".gtag[5].gtagnm" -type "string" "cylTopCap"; + setAttr ".gtag[5].gtagcmp" -type "componentList" 0; + setAttr ".gtag[6].gtagnm" -type "string" "cylTopRing"; + setAttr ".gtag[6].gtagcmp" -type "componentList" 0; + setAttr ".gtag[7].gtagnm" -type "string" "sides"; + setAttr ".gtag[7].gtagcmp" -type "componentList" 1 "f[0:119]"; + setAttr ".gtag[8].gtagnm" -type "string" "top"; + setAttr ".gtag[8].gtagcmp" -type "componentList" 0; + setAttr ".gtag[9].gtagnm" -type "string" "topRing"; + setAttr ".gtag[9].gtagcmp" -type "componentList" 0; + setAttr ".pv" -type "double2" 0.45609869756807819 0.33353716880083084 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 154 ".uvst[0].uvsp[0:153]" -type "float2" 0.40625817 0.33728972 + 0.40661877 0.33737016 0.40609246 0.34071103 0.4057759 0.34065804 0.406973 0.33745366 + 0.40641004 0.34076789 0.39932555 0.37437204 0.39964306 0.3744289 0.39911669 0.37776971 + 0.39876246 0.37768614 0.39995968 0.37448186 0.39947724 0.37785017 0.40119022 0.34052196 + 0.40100002 0.33692807 0.40562338 0.34437144 0.40105432 0.34423882 0.40552926 0.34848344 + 0.40085757 0.34832478 0.40540355 0.35296455 0.40066811 0.35278782 0.40524244 0.35766098 + 0.40049338 0.35747898 0.40506768 0.36235222 0.40033224 0.36217546 0.4048782 0.36681527 + 0.40020648 0.36665651 0.40468132 0.3709012 0.40011233 0.37076843 0.40454531 0.37461811 + 0.40473545 0.37821198 0.4059456 0.34438664 0.40626818 0.34440315 0.4058578 0.34848848 + 0.40618593 0.34849367 0.40573531 0.35297129 0.40606648 0.35297802 0.4055751 0.35767275 + 0.40590787 0.35768449 0.4053992 0.36236882 0.40573007 0.36238548 0.40520626 0.36683425 + 0.40553397 0.36685288 0.40500355 0.37091303 0.40532607 0.37092304 0.40486479 0.37459955 + 0.40518546 0.37457573 0.40510237 0.37814704 0.40546334 0.37808084 0.4002721 0.3370592 + 0.40063304 0.33699307 0.40087074 0.34054053 0.40055013 0.34056431 0.4007321 0.34422702 + 0.40040958 0.34421697 0.40052944 0.34830573 0.40020177 0.34828714 0.40033656 0.35277122 + 0.40000573 0.35275456 0.4001607 0.35746729 0.39982796 0.35745552 0.40000045 0.36216867 + 0.39966932 0.36216199 0.39987797 0.36665154 0.39954981 0.36664626 0.39979005 0.37075323 + 0.39946753 0.37073669 0.39928135 0.34069011 0.39895189 0.34072378 0.45329386 0.35166591 + 0.39893249 0.33733976 0.4535903 0.3484953 0.45362112 0.35165596 0.40645421 0.37445 + 0.40678364 0.37441632 0.45895267 0.31544507 0.40680295 0.37780035 0.45862818 0.31856275 + 0.45862544 0.31545281 0.4583087 0.34854275 0.45824498 0.35165167 0.4536247 0.34544873 + 0.45833075 0.34549379 0.45366716 0.3418628 0.45836222 0.34191248 0.45371225 0.33781287 + 0.45840484 0.33786473 0.45376006 0.33350289 0.4584524 0.33355534 0.45380759 0.3291935 + 0.45850021 0.32924551 0.45385015 0.32514557 0.45854545 0.32519585 0.45388234 0.32156381 + 0.45858896 0.32161027 0.45391035 0.31851596 0.45400313 0.31535685 0.40828472 0.33781245 + 0.40766519 0.34101009 0.40754116 0.34447297 0.39913607 0.34418607 0.40747458 0.34851652 + 0.39891487 0.34821725 0.40736359 0.35300574 0.39870974 0.35269028 0.40722615 0.35773131 + 0.39850968 0.35740864 0.40702605 0.36244974 0.3983722 0.36213419 0.40682089 0.36692271 + 0.39826119 0.3666234 0.40659964 0.37095398 0.39819449 0.37066686 0.39807039 0.37412971 + 0.39745075 0.37732741 0.40860611 0.33790079 0.45863783 0.34855151 0.39880735 0.3441782 + 0.45865983 0.34549782 0.3985858 0.34819847 0.45869124 0.34191597 0.39837995 0.35267246 + 0.45873386 0.33786845 0.39817819 0.35739675 0.45878196 0.33355913 0.39804196 0.36212844 + 0.45882922 0.32924923 0.39793161 0.36661881 0.45887446 0.32519972 0.39786589 0.37065056 + 0.45891804 0.32161337 0.39774448 0.37407002 0.39712936 0.37723905 0.45358124 0.31850523 + 0.45367616 0.3153404 0.4069283 0.37096187 0.45895743 0.31856072 0.45355326 0.3215594 + 0.40714997 0.36694157 0.4535211 0.32514203 0.40735584 0.36246759 0.45347854 0.32918975 + 0.40755761 0.3577432 0.45343044 0.33349913 0.4076938 0.35301149 0.45338324 0.33780909 + 0.40780413 0.34852111 0.45333809 0.34185898 0.40786976 0.34448931 0.45329559 0.34544599 + 0.40799111 0.34106988 0.45326102 0.3484993 0.45857203 0.35166585 0.40713054 0.37773687 + 0.3986049 0.33740324; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 22 ".pt[22:43]" -type "float3" 0 0 -2.9802322e-08 1.4901161e-08 + 0 -2.9802322e-08 1.4901161e-08 0 -2.9802322e-08 0 0 -2.9802322e-08 7.4505806e-09 + 0 -2.9802322e-08 7.4505806e-09 0 -2.9802322e-08 -7.4505806e-09 0 -2.9802322e-08 -7.4505806e-09 + 0 -2.9802322e-08 3.7252903e-09 0 0 3.7252903e-09 0 0 0 0 -2.9802322e-08 0 0 -2.9802322e-08 + 3.7252903e-09 0 0 3.7252903e-09 0 0 0 0 -2.9802322e-08 0 0 -2.9802322e-08 -7.4505806e-09 + 0 -2.9802322e-08 -7.4505806e-09 0 -2.9802322e-08 0 0 -2.9802322e-08 0 0 -2.9802322e-08 + 0 0 -2.9802322e-08 0 0 -2.9802322e-08; + setAttr -s 132 ".vt[0:131]" -6.024733543 79.81034851 71.2999115 -6.14356661 79.86071777 71.32575226 + -6.19278908 79.98233032 71.3364563 -5.88969278 79.98233032 72.73042297 -5.84261799 79.86071777 72.70983124 + -5.72897291 79.81034851 72.66013336 -5.010071754 79.98233032 73.9879303 -4.97361565 79.86071777 73.9521637 + -4.88560343 79.81034851 73.86581421 -3.64002991 79.98233032 74.98587036 -3.61598778 79.86071777 74.94106293 + -3.55794644 79.81034851 74.83288574 -1.9136771 79.98233032 75.62662506 -1.90185654 79.86071777 75.57727051 + -1.87331963 79.81034851 75.45816803 -1.8455943e-07 79.98233032 75.84738159 -1.8490172e-07 79.86071777 75.79667664 + -1.8572807e-07 79.81034851 75.67425537 1.9136765 79.98233032 75.62662506 1.90185606 79.86071777 75.57727051 + 1.87331891 79.81034851 75.45816803 3.64002919 79.98233032 74.98587036 3.61598706 79.86071777 74.94106293 + 3.55794525 79.81034851 74.83289337 5.010070324 79.98233032 73.9879303 4.97361422 79.86071777 73.9521637 + 4.88560152 79.81034851 73.86581421 5.88969135 79.98233032 72.73042297 5.84261751 79.86071777 72.70983124 + 5.72897148 79.81034851 72.66013336 6.19278669 79.98233032 71.3364563 6.1435647 79.86071777 71.32575226 + 6.024731636 79.81034851 71.2999115 -6.19278908 81.85979462 71.3364563 -6.14356661 81.98140717 71.32575226 + -6.024733543 82.031776428 71.2999115 -5.88969278 81.85979462 72.73042297 -5.84261799 81.98140717 72.70983124 + -5.72897291 82.031776428 72.66013336 -5.010071754 81.85979462 73.9879303 -4.97361565 81.98140717 73.9521637 + -4.88560343 82.031776428 73.86581421 -3.64002991 81.85979462 74.98587036 -3.61598778 81.98140717 74.94106293 + -3.55794644 82.031776428 74.83288574 -1.9136771 81.85979462 75.62662506 -1.90185654 81.98140717 75.57727051 + -1.87331963 82.031776428 75.45816803 -1.8455943e-07 81.85979462 75.84738159 -1.8490172e-07 81.98140717 75.79667664 + -1.8572807e-07 82.031776428 75.67425537 1.9136765 81.85979462 75.62662506 1.90185606 81.98140717 75.57727051 + 1.87331891 82.031776428 75.45816803 3.64002919 81.85979462 74.98587036 3.61598706 81.98140717 74.94106293 + 3.55794525 82.031776428 74.83289337 5.010070324 81.85979462 73.9879303 4.97361422 81.98140717 73.9521637 + 4.88560152 82.031776428 73.86581421 5.88969135 81.85979462 72.73042297 5.84261751 81.98140717 72.70983124 + 5.72897148 82.031776428 72.66013336 6.024731636 82.031776428 71.2999115 6.1435647 81.98140717 71.32575226 + 6.19278669 81.85979462 71.3364563 -5.3524251 79.98233795 71.15372467 -5.40164852 79.8607254 71.16442871 + -5.52048445 79.81034851 71.19026947 -5.086015701 79.98233795 72.37895203 -5.1330905 79.8607254 72.39955902 + -5.24673796 79.81034851 72.44923401 -5.086015701 81.85978699 72.37895203 -5.1330905 81.98139954 72.39955902 + -5.24673796 82.031776428 72.44923401 -5.52048445 82.031776428 71.19026947 -5.40164852 81.98139954 71.16442871 + -5.3524251 81.85978699 71.15372467 -4.3876667 79.98233795 73.37732697 -4.42412376 79.8607254 73.4131012 + -4.51213837 79.81034851 73.49945068 -4.3876667 81.85978699 73.37732697 -4.42412376 81.98139954 73.4131012 + -4.51213837 82.031776428 73.49945068 -3.22957301 79.98233795 74.22088623 -3.2536149 79.8607254 74.26571655 + -3.31165767 79.81034851 74.37389374 -3.22957301 81.85978699 74.22088623 -3.2536149 81.98139954 74.26571655 + -3.31165767 82.031776428 74.37389374 -1.71187162 79.98233795 74.78418732 -1.7236923 79.8607254 74.8335495 + -1.75222981 79.81034851 74.95265961 -1.71187162 81.85978699 74.78418732 -1.7236923 81.98139954 74.8335495 + -1.75222981 82.031776428 74.95265961 -1.8455943e-07 79.98233795 74.98167419 -1.8397579e-07 79.8607254 75.032394409 + -1.8256675e-07 79.81034851 75.15480042 -1.8455943e-07 81.85978699 74.98167419 -1.8397579e-07 81.98139954 75.032394409 + -1.8256675e-07 82.031776428 75.15480042 1.71187091 79.98233795 74.78418732 1.72369158 79.8607254 74.8335495 + 1.75222921 79.81034851 74.95265961 1.71187091 81.85978699 74.78418732 1.72369158 81.98139954 74.8335495 + 1.75222921 82.031776428 74.95265961 3.22957087 79.98233795 74.22088623 3.253613 79.8607254 74.26571655 + 3.31165552 79.81034851 74.37389374 3.22957087 81.85978699 74.22088623 3.253613 81.98139954 74.26571655 + 3.31165552 82.031776428 74.37389374 4.38766384 79.98233795 73.37732697 4.4241209 79.8607254 73.4131012 + 4.51213551 79.81034851 73.49945068 4.38766384 81.85978699 73.37732697 4.4241209 81.98139954 73.4131012 + 4.51213551 82.031776428 73.49945068 5.086013794 79.98233795 72.37895203 5.13308764 79.8607254 72.39955902 + 5.24673605 79.81034851 72.44923401 5.086013794 81.85978699 72.37895203 5.13308764 81.98139954 72.39955902 + 5.24673605 82.031776428 72.44923401 5.52048302 79.81034851 71.19026947 5.40164709 79.8607254 71.16442871 + 5.35242367 79.98233795 71.15372467 5.35242367 81.85978699 71.15372467 5.40164709 81.98139954 71.16442871 + 5.52048302 82.031776428 71.19026947; + setAttr -s 252 ".ed"; + setAttr ".ed[0:165]" 0 68 0 2 33 0 30 65 0 32 126 0 35 75 0 63 131 0 2 1 0 + 1 4 0 4 3 1 3 2 1 1 0 0 0 5 1 5 4 1 7 6 1 6 3 1 5 8 1 8 7 1 10 9 1 9 6 1 8 11 1 11 10 1 + 13 12 1 12 9 1 11 14 1 14 13 1 16 15 1 15 12 1 14 17 1 17 16 1 19 18 1 18 15 1 17 20 1 + 20 19 1 22 21 1 21 18 1 20 23 1 23 22 1 25 24 1 24 21 1 23 26 1 26 25 1 28 27 1 27 24 1 + 26 29 1 29 28 1 31 30 0 30 27 1 29 32 1 32 31 0 35 34 0 38 35 1 34 33 0 33 36 1 38 37 1 + 41 38 1 37 36 1 36 39 1 41 40 1 44 41 1 40 39 1 39 42 1 44 43 1 47 44 1 43 42 1 42 45 1 + 47 46 1 50 47 1 46 45 1 45 48 1 50 49 1 53 50 1 49 48 1 48 51 1 53 52 1 56 53 1 52 51 1 + 51 54 1 56 55 1 59 56 1 55 54 1 54 57 1 59 58 1 62 59 1 58 57 1 57 60 1 62 61 1 61 64 0 + 64 63 0 63 62 1 61 60 1 60 65 1 65 64 0 3 36 1 6 39 1 9 42 1 12 45 1 15 48 1 18 51 1 + 21 54 1 24 57 1 27 60 1 4 7 0 7 10 0 10 13 0 13 16 0 16 19 0 19 22 0 22 25 0 25 28 0 + 28 31 0 34 37 0 37 40 0 40 43 0 43 46 0 46 49 0 49 52 0 52 55 0 55 58 0 58 61 0 66 77 0 + 128 129 0 68 67 0 71 68 1 67 66 0 66 69 1 71 70 1 80 71 1 70 69 1 69 78 1 82 81 1 + 81 72 1 74 83 1 83 82 1 74 73 1 73 76 0 76 75 0 75 74 1 73 72 1 72 77 1 77 76 0 80 79 1 + 86 80 1 79 78 1 78 84 1 88 87 1 87 81 1 83 89 1 89 88 1 86 85 1 92 86 1 85 84 1 84 90 1 + 94 93 1 93 87 1 89 95 1 95 94 1 92 91 1 98 92 1 91 90 1 90 96 1 100 99 1 99 93 1 + 95 101 1 101 100 1 98 97 1 104 98 1; + setAttr ".ed[166:251]" 97 96 1 96 102 1 106 105 1 105 99 1 101 107 1 107 106 1 + 104 103 1 110 104 1 103 102 1 102 108 1 112 111 1 111 105 1 107 113 1 113 112 1 110 109 1 + 116 110 1 109 108 1 108 114 1 118 117 1 117 111 1 113 119 1 119 118 1 116 115 1 122 116 1 + 115 114 1 114 120 1 124 123 1 123 117 1 119 125 1 125 124 1 122 121 1 121 127 0 127 126 0 + 126 122 1 121 120 1 120 128 1 128 127 0 130 129 0 129 123 1 125 131 1 131 130 0 72 69 1 + 81 78 1 87 84 1 93 90 1 99 96 1 105 102 1 111 108 1 117 114 1 123 120 1 71 5 1 38 74 1 + 80 8 1 41 83 1 86 11 1 44 89 1 92 14 1 47 95 1 98 17 1 50 101 1 104 20 1 53 107 1 + 110 23 1 56 113 1 116 26 1 59 119 1 122 29 1 62 125 1 67 70 0 73 82 0 70 79 0 82 88 0 + 79 85 0 88 94 0 85 91 0 94 100 0 91 97 0 100 106 0 97 103 0 106 112 0 103 109 0 112 118 0 + 109 115 0 118 124 0 115 121 0 124 130 0; + setAttr -s 120 -ch 480 ".fc[0:119]" -type "polyFaces" + f 4 6 7 8 9 + mu 0 4 0 1 2 3 + f 4 10 11 12 -8 + mu 0 4 1 4 5 2 + f 4 85 86 87 88 + mu 0 4 6 7 8 9 + f 4 89 90 91 -87 + mu 0 4 7 10 11 8 + f 4 -10 92 -53 -2 + mu 0 4 0 3 12 13 + f 4 -15 93 -57 -93 + mu 0 4 3 14 15 12 + f 4 -19 94 -61 -94 + mu 0 4 14 16 17 15 + f 4 -23 95 -65 -95 + mu 0 4 16 18 19 17 + f 4 -27 96 -69 -96 + mu 0 4 18 20 21 19 + f 4 -31 97 -73 -97 + mu 0 4 20 22 23 21 + f 4 -35 98 -77 -98 + mu 0 4 22 24 25 23 + f 4 -39 99 -81 -99 + mu 0 4 24 26 27 25 + f 4 -43 100 -85 -100 + mu 0 4 26 28 10 27 + f 4 -47 2 -91 -101 + mu 0 4 28 29 11 10 + f 4 -9 101 13 14 + mu 0 4 3 2 30 14 + f 4 -13 15 16 -102 + mu 0 4 2 5 31 30 + f 4 -14 102 17 18 + mu 0 4 14 30 32 16 + f 4 -17 19 20 -103 + mu 0 4 30 31 33 32 + f 4 -18 103 21 22 + mu 0 4 16 32 34 18 + f 4 -21 23 24 -104 + mu 0 4 32 33 35 34 + f 4 -22 104 25 26 + mu 0 4 18 34 36 20 + f 4 -25 27 28 -105 + mu 0 4 34 35 37 36 + f 4 -26 105 29 30 + mu 0 4 20 36 38 22 + f 4 -29 31 32 -106 + mu 0 4 36 37 39 38 + f 4 -30 106 33 34 + mu 0 4 22 38 40 24 + f 4 -33 35 36 -107 + mu 0 4 38 39 41 40 + f 4 -34 107 37 38 + mu 0 4 24 40 42 26 + f 4 -37 39 40 -108 + mu 0 4 40 41 43 42 + f 4 -38 108 41 42 + mu 0 4 26 42 44 28 + f 4 -41 43 44 -109 + mu 0 4 42 43 45 44 + f 4 -42 109 45 46 + mu 0 4 28 44 46 29 + f 4 -45 47 48 -110 + mu 0 4 44 45 47 46 + f 4 49 110 -54 50 + mu 0 4 48 49 50 51 + f 4 51 52 -56 -111 + mu 0 4 49 13 12 50 + f 4 53 111 -58 54 + mu 0 4 51 50 52 53 + f 4 55 56 -60 -112 + mu 0 4 50 12 15 52 + f 4 57 112 -62 58 + mu 0 4 53 52 54 55 + f 4 59 60 -64 -113 + mu 0 4 52 15 17 54 + f 4 61 113 -66 62 + mu 0 4 55 54 56 57 + f 4 63 64 -68 -114 + mu 0 4 54 17 19 56 + f 4 65 114 -70 66 + mu 0 4 57 56 58 59 + f 4 67 68 -72 -115 + mu 0 4 56 19 21 58 + f 4 69 115 -74 70 + mu 0 4 59 58 60 61 + f 4 71 72 -76 -116 + mu 0 4 58 21 23 60 + f 4 73 116 -78 74 + mu 0 4 61 60 62 63 + f 4 75 76 -80 -117 + mu 0 4 60 23 25 62 + f 4 77 117 -82 78 + mu 0 4 63 62 64 65 + f 4 79 80 -84 -118 + mu 0 4 62 25 27 64 + f 4 81 118 -86 82 + mu 0 4 65 64 7 6 + f 4 83 84 -90 -119 + mu 0 4 64 27 10 7 + f 4 133 134 135 136 + mu 0 4 66 67 153 69 + f 4 137 138 139 -135 + mu 0 4 150 70 71 68 + f 4 196 197 198 199 + mu 0 4 72 73 152 75 + f 4 200 201 202 -198 + mu 0 4 135 76 77 74 + f 4 -125 119 -139 207 + mu 0 4 78 79 71 70 + f 4 -208 -131 208 -129 + mu 0 4 78 70 80 81 + f 4 -209 -146 209 -144 + mu 0 4 81 80 82 83 + f 4 -210 -154 210 -152 + mu 0 4 83 82 84 85 + f 4 -211 -162 211 -160 + mu 0 4 85 84 86 87 + f 4 -212 -170 212 -168 + mu 0 4 87 86 88 89 + f 4 -213 -178 213 -176 + mu 0 4 89 88 90 91 + f 4 -214 -186 214 -184 + mu 0 4 91 90 92 93 + f 4 -215 -194 215 -192 + mu 0 4 93 92 94 76 + f 4 -216 -205 -121 -202 + mu 0 4 76 94 95 77 + f 4 -12 0 -123 216 + mu 0 4 5 4 96 97 + f 4 217 -137 -5 -51 + mu 0 4 51 66 69 48 + f 4 -217 -127 218 -16 + mu 0 4 5 97 98 31 + f 4 219 -132 -218 -55 + mu 0 4 53 99 66 51 + f 4 -219 -142 220 -20 + mu 0 4 31 98 100 33 + f 4 221 -147 -220 -59 + mu 0 4 55 101 99 53 + f 4 -221 -150 222 -24 + mu 0 4 33 100 102 35 + f 4 223 -155 -222 -63 + mu 0 4 57 103 101 55 + f 4 -223 -158 224 -28 + mu 0 4 35 102 104 37 + f 4 225 -163 -224 -67 + mu 0 4 59 105 103 57 + f 4 -225 -166 226 -32 + mu 0 4 37 104 106 39 + f 4 227 -171 -226 -71 + mu 0 4 61 107 105 59 + f 4 -227 -174 228 -36 + mu 0 4 39 106 108 41 + f 4 229 -179 -228 -75 + mu 0 4 63 109 107 61 + f 4 -229 -182 230 -40 + mu 0 4 41 108 110 43 + f 4 231 -187 -230 -79 + mu 0 4 65 111 109 63 + f 4 -231 -190 232 -44 + mu 0 4 43 110 72 45 + f 4 233 -195 -232 -83 + mu 0 4 6 112 111 65 + f 4 -233 -200 -4 -48 + mu 0 4 45 72 75 47 + f 4 -89 5 -206 -234 + mu 0 4 6 9 113 112 + f 4 121 234 -126 122 + mu 0 4 96 114 149 97 + f 4 123 124 -128 -235 + mu 0 4 151 79 78 115 + f 4 -138 235 129 130 + mu 0 4 70 150 148 80 + f 4 -134 131 132 -236 + mu 0 4 67 66 99 116 + f 4 125 236 -141 126 + mu 0 4 97 149 147 98 + f 4 127 128 -143 -237 + mu 0 4 115 78 81 117 + f 4 -130 237 144 145 + mu 0 4 80 148 146 82 + f 4 -133 146 147 -238 + mu 0 4 116 99 101 118 + f 4 140 238 -149 141 + mu 0 4 98 147 145 100 + f 4 142 143 -151 -239 + mu 0 4 117 81 83 119 + f 4 -145 239 152 153 + mu 0 4 82 146 144 84 + f 4 -148 154 155 -240 + mu 0 4 118 101 103 120 + f 4 148 240 -157 149 + mu 0 4 100 145 143 102 + f 4 150 151 -159 -241 + mu 0 4 119 83 85 121 + f 4 -153 241 160 161 + mu 0 4 84 144 142 86 + f 4 -156 162 163 -242 + mu 0 4 120 103 105 122 + f 4 156 242 -165 157 + mu 0 4 102 143 141 104 + f 4 158 159 -167 -243 + mu 0 4 121 85 87 123 + f 4 -161 243 168 169 + mu 0 4 86 142 140 88 + f 4 -164 170 171 -244 + mu 0 4 122 105 107 124 + f 4 164 244 -173 165 + mu 0 4 104 141 139 106 + f 4 166 167 -175 -245 + mu 0 4 123 87 89 125 + f 4 -169 245 176 177 + mu 0 4 88 140 138 90 + f 4 -172 178 179 -246 + mu 0 4 124 107 109 126 + f 4 172 246 -181 173 + mu 0 4 106 139 137 108 + f 4 174 175 -183 -247 + mu 0 4 125 89 91 127 + f 4 -177 247 184 185 + mu 0 4 90 138 136 92 + f 4 -180 186 187 -248 + mu 0 4 126 109 111 128 + f 4 180 248 -189 181 + mu 0 4 108 137 134 110 + f 4 182 183 -191 -249 + mu 0 4 127 91 93 129 + f 4 -185 249 192 193 + mu 0 4 92 136 132 94 + f 4 -188 194 195 -250 + mu 0 4 128 111 112 130 + f 4 188 250 -197 189 + mu 0 4 110 134 73 72 + f 4 190 191 -201 -251 + mu 0 4 129 93 76 135 + f 4 -193 251 203 204 + mu 0 4 94 132 133 95 + f 4 -196 205 206 -252 + mu 0 4 130 112 113 131; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; + setAttr ".dr" 1; +createNode transform -n "teeth_low_geo" -p "blue_bomb_grp"; + rename -uid "4C8FB473-4D29-F0B8-E31C-A4AFAC7F2FDC"; + setAttr ".rp" -type "double3" 0 79.644170530702212 70.238352119901506 ; + setAttr ".sp" -type "double3" 0 79.644170530702212 70.238352119901506 ; +createNode mesh -n "teeth_low_geoShape" -p "teeth_low_geo"; + rename -uid "7A5CE7CB-4F0A-7BFE-03B3-698F9DCF2F78"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr -s 10 ".gtag"; + setAttr ".gtag[0].gtagnm" -type "string" "bottom"; + setAttr ".gtag[0].gtagcmp" -type "componentList" 0; + setAttr ".gtag[1].gtagnm" -type "string" "bottomRing"; + setAttr ".gtag[1].gtagcmp" -type "componentList" 0; + setAttr ".gtag[2].gtagnm" -type "string" "cylBottomCap"; + setAttr ".gtag[2].gtagcmp" -type "componentList" 0; + setAttr ".gtag[3].gtagnm" -type "string" "cylBottomRing"; + setAttr ".gtag[3].gtagcmp" -type "componentList" 0; + setAttr ".gtag[4].gtagnm" -type "string" "cylSides"; + setAttr ".gtag[4].gtagcmp" -type "componentList" 0; + setAttr ".gtag[5].gtagnm" -type "string" "cylTopCap"; + setAttr ".gtag[5].gtagcmp" -type "componentList" 0; + setAttr ".gtag[6].gtagnm" -type "string" "cylTopRing"; + setAttr ".gtag[6].gtagcmp" -type "componentList" 0; + setAttr ".gtag[7].gtagnm" -type "string" "sides"; + setAttr ".gtag[7].gtagcmp" -type "componentList" 1 "f[0:119]"; + setAttr ".gtag[8].gtagnm" -type "string" "top"; + setAttr ".gtag[8].gtagcmp" -type "componentList" 0; + setAttr ".gtag[9].gtagnm" -type "string" "topRing"; + setAttr ".gtag[9].gtagcmp" -type "componentList" 0; + setAttr ".pv" -type "double2" 0.43500932232359446 0.35257215797901154 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 154 ".uvst[0].uvsp[0:153]" -type "float2" 0.37337601 0.39194679 + 0.37289363 0.39188752 0.37316495 0.3885088 0.37359416 0.38855007 0.37242091 0.39183393 + 0.37273407 0.38846147 0.37783179 0.3575055 0.37740093 0.35745814 0.37767243 0.35407948 + 0.37814504 0.3541331 0.37697166 0.3574169 0.37718993 0.35402018 0.37793547 0.38840038 + 0.37831527 0.39196381 0.37351277 0.38496637 0.3778196 0.3848089 0.37335858 0.38117486 + 0.37773538 0.38102657 0.37320215 0.37717676 0.37763184 0.37703583 0.37306279 0.37305304 + 0.37750274 0.3729139 0.37293369 0.36893108 0.37736338 0.36879018 0.37283021 0.36494029 + 0.37720698 0.36479205 0.37274605 0.36115789 0.3770529 0.36100054 0.3726303 0.35756645 + 0.37225062 0.35400301 0.37308219 0.38496876 0.37265071 0.38496801 0.37292272 0.38119161 + 0.37248698 0.38120705 0.3727622 0.37719467 0.37232286 0.37721217 0.37262118 0.37306744 + 0.37217885 0.37308186 0.37249345 0.36894175 0.37205386 0.36895275 0.37239408 0.36495036 + 0.37195826 0.36496174 0.37231624 0.3611773 0.37188587 0.3612006 0.37220377 0.35761973 + 0.37177616 0.35768169 0.37177137 0.35410264 0.37130129 0.35419154 0.37926465 0.39177522 + 0.37879467 0.39186412 0.37836206 0.38834709 0.37878966 0.38828507 0.37824947 0.38478953 + 0.37867981 0.38476622 0.37817153 0.38101649 0.3786073 0.38100505 0.37807217 0.3770251 + 0.37851176 0.3770141 0.37794435 0.3728995 0.37838668 0.37288508 0.37780336 0.3687723 + 0.37824267 0.36875483 0.37764293 0.36477536 0.37807867 0.36475989 0.37748358 0.36099821 + 0.37791502 0.36099893 0.37980449 0.38831633 0.38006884 0.38827512 0.43743879 0.33571473 + 0.38028008 0.39158008 0.43727165 0.33886454 0.43717432 0.33572289 0.37076133 0.35765043 + 0.37049693 0.35769162 0.43255565 0.36942324 0.37028584 0.35438663 0.43274903 0.36632144 + 0.43282017 0.36941671 0.43239245 0.33892798 0.43238115 0.33583239 0.43730873 0.34179732 + 0.43243757 0.34186453 0.43734819 0.34511387 0.43248603 0.34517804 0.4373939 0.34874973 + 0.43253458 0.34881237 0.43744248 0.35256189 0.43258369 0.35262394 0.43749166 0.35637352 + 0.43263221 0.35643595 0.43754017 0.36000812 0.43267775 0.36007166 0.43758798 0.36332211 + 0.43271625 0.36338782 0.43762767 0.36625776 0.43761384 0.3694005 0.37139863 0.39170513 + 0.37172067 0.38853183 0.37158075 0.38523763 0.37976304 0.3849774 0.37133873 0.38148326 + 0.37977073 0.38120866 0.37111497 0.37738904 0.37972859 0.37711242 0.37092498 0.3731226 + 0.37964058 0.37284437 0.37083697 0.36885449 0.37945059 0.36857799 0.37079489 0.36475816 + 0.37922695 0.36448371 0.37080264 0.36098942 0.37898505 0.3607294 0.37884513 0.35743523 + 0.37916735 0.35426202 0.37113273 0.39167053 0.43212667 0.33892721 0.38002846 0.38496494 + 0.43217185 0.34186721 0.38003662 0.38120532 0.4322204 0.34518126 0.37999496 0.37710884 + 0.43226892 0.34881559 0.37990785 0.37283573 0.43231755 0.35262722 0.3797166 0.36856425 + 0.43236655 0.35643932 0.37949255 0.36447009 0.43241209 0.36007509 0.37925094 0.36072585 + 0.43245056 0.36339191 0.3791115 0.35746261 0.37943324 0.35429659 0.43789345 0.36625987 + 0.43787849 0.36940163 0.37053719 0.36100176 0.43248332 0.36632913 0.43785369 0.36331975 + 0.370529 0.36476147 0.43780583 0.36000493 0.3705706 0.36885801 0.43775731 0.35637039 + 0.37065762 0.37313122 0.43770862 0.35255861 0.37084895 0.37740272 0.43765956 0.34874639 + 0.37107307 0.38149691 0.4376139 0.34511036 0.37131482 0.38524115 0.43757445 0.341793 + 0.3714543 0.38850445 0.43753737 0.33885548 0.43211657 0.33583283 0.37002203 0.3544347 + 0.38054389 0.39153197; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 22 ".pt[22:43]" -type "float3" 0 0 -2.9802322e-08 1.4901161e-08 + 0 -2.9802322e-08 1.4901161e-08 0 -2.9802322e-08 0 0 -2.9802322e-08 7.4505806e-09 + 0 -2.9802322e-08 7.4505806e-09 0 -2.9802322e-08 -7.4505806e-09 0 -2.9802322e-08 -7.4505806e-09 + 0 -2.9802322e-08 3.7252903e-09 0 0 3.7252903e-09 0 0 0 0 -2.9802322e-08 0 0 -2.9802322e-08 + 3.7252903e-09 0 0 3.7252903e-09 0 0 0 0 -2.9802322e-08 0 0 -2.9802322e-08 -7.4505806e-09 + 0 -2.9802322e-08 -7.4505806e-09 0 -2.9802322e-08 0 0 -2.9802322e-08 0 0 -2.9802322e-08 + 0 0 -2.9802322e-08 0 0 -2.9802322e-08; + setAttr -s 132 ".vt[0:131]" -5.24517345 78.53344727 70.18354034 -5.40255451 78.60053253 70.2223053 + -5.46774387 78.76235962 70.23835754 -5.20013332 78.76235962 71.63231659 -5.13661194 78.60053253 71.60756683 + -4.9832592 78.53344727 71.5478363 -4.42349768 78.76235962 72.88981628 -4.37227869 78.60053253 72.84512329 + -4.24862432 78.53344727 72.73732758 -3.21385908 78.76235962 73.88776398 -3.17879248 78.60053253 73.82976532 + -3.094134331 78.53344727 73.68978119 -1.68962574 78.76235962 74.52851105 -1.67197609 78.60053253 74.46320343 + -1.62936628 78.53344727 74.3055191 -1.6295141e-07 78.76235962 74.74927521 -1.6333941e-07 78.60053253 74.68164825 + -1.6427607e-07 78.53344727 74.51842499 1.68962526 78.76235962 74.52851105 1.67197561 78.60053253 74.46320343 + 1.62936592 78.53344727 74.3055191 3.21385837 78.76235962 73.88776398 3.17879152 78.60053253 73.82976532 + 3.094134092 78.53344727 73.68978119 4.42349577 78.76235962 72.88981628 4.37227726 78.60053253 72.84512329 + 4.24862289 78.53344727 72.73732758 5.20013237 78.76235962 71.63231659 5.13661098 78.60053253 71.60756683 + 4.98325825 78.53344727 71.5478363 5.46774197 78.76235962 70.23835754 5.4025526 78.60053253 70.2223053 + 5.24517155 78.53344727 70.18354034 -5.46774387 80.52597046 70.23835754 -5.40255451 80.68783569 70.2223053 + -5.24517345 80.75488281 70.18354034 -5.20013332 80.52597046 71.63231659 -5.13661194 80.68783569 71.60756683 + -4.9832592 80.75488281 71.5478363 -4.42349768 80.52597046 72.88981628 -4.37227869 80.68783569 72.84512329 + -4.24862432 80.75488281 72.73732758 -3.21385908 80.52597046 73.88776398 -3.17879248 80.68783569 73.82976532 + -3.094134331 80.75488281 73.68978119 -1.68962574 80.52597046 74.52851105 -1.67197609 80.68783569 74.46320343 + -1.62936628 80.75488281 74.3055191 -1.6295141e-07 80.52597046 74.74927521 -1.6333941e-07 80.68783569 74.68164825 + -1.6427607e-07 80.75488281 74.51842499 1.68962526 80.52597046 74.52851105 1.67197561 80.68783569 74.46320343 + 1.62936592 80.75488281 74.3055191 3.21385837 80.52597046 73.88776398 3.17879152 80.68783569 73.82976532 + 3.094134092 80.75488281 73.68978119 4.42349577 80.52597046 72.88981628 4.37227726 80.68783569 72.84512329 + 4.24862289 80.75488281 72.73732758 5.20013237 80.52597046 71.63231659 5.13661098 80.68783569 71.60756683 + 4.98325825 80.75488281 71.5478363 5.24517155 80.75488281 70.18354034 5.4025526 80.68783569 70.2223053 + 5.46774197 80.52597046 70.23835754 -4.72576857 78.67233276 70.055625916 -4.76531839 78.57413483 70.065361023 + -4.86080027 78.53344727 70.088874817 -4.49055004 78.67233276 71.28084564 -4.52908754 78.57413483 71.29586029 + -4.6221261 78.53344727 71.33209991 -4.49055004 80.61602783 71.28084564 -4.52908754 80.71422577 71.29586029 + -4.6221261 80.75488281 71.33209991 -4.86080027 80.75488281 70.088874817 -4.76531839 80.71422577 70.065361023 + -4.72576857 80.61602783 70.055625916 -3.87396312 78.67233276 72.27922058 -3.9050374 78.57413483 72.30632019 + -3.98005724 78.53344727 72.37172699 -3.87396312 80.61602783 72.27922058 -3.9050374 80.71422577 72.30632019 + -3.98005724 80.75488281 72.37172699 -2.8514576 78.67233276 73.12277222 -2.87273192 78.57413483 73.1579361 + -2.92409325 78.53344727 73.24287415 -2.8514576 80.61602783 73.12277222 -2.87273192 80.71422577 73.1579361 + -2.92409325 80.75488281 73.24287415 -1.51144743 78.67233276 73.68608856 -1.52215528 78.57413483 73.72570038 + -1.54800689 78.53344727 73.8213501 -1.51144743 80.61602783 73.68608856 -1.52215528 80.71422577 73.72570038 + -1.54800689 80.75488281 73.8213501 -1.6295141e-07 78.67233276 73.88357544 -1.6248045e-07 78.57413483 73.92459869 + -1.6134344e-07 78.53344727 74.023628235 -1.6295141e-07 80.61602783 73.88357544 -1.6248045e-07 80.71422577 73.92459869 + -1.6134344e-07 80.75488281 74.023628235 1.51144683 78.67233276 73.68608856 1.52215481 78.57413483 73.72570038 + 1.5480063 78.53344727 73.8213501 1.51144683 80.61602783 73.68608856 1.52215481 80.71422577 73.72570038 + 1.5480063 80.75488281 73.8213501 2.8514564 78.67233276 73.12277222 2.87273121 78.57413483 73.1579361 + 2.92409325 78.53344727 73.24287415 2.8514564 80.61602783 73.12277222 2.87273121 80.71422577 73.1579361 + 2.92409325 80.75488281 73.24287415 3.87396049 78.67233276 72.27918243 3.90503478 78.57413483 72.30628967 + 3.98005462 78.53344727 72.3717041 3.87396049 80.61602783 72.27918243 3.90503478 80.71422577 72.30628967 + 3.98005462 80.75488281 72.3717041 4.49054861 78.67233276 71.28084564 4.52908564 78.57413483 71.29586029 + 4.6221242 78.53344727 71.33209991 4.49054861 80.61602783 71.28084564 4.52908564 80.71422577 71.29586029 + 4.6221242 80.75488281 71.33209991 4.86079836 78.53344727 70.088874817 4.76531696 78.57413483 70.065361023 + 4.72576714 78.67233276 70.055625916 4.72576714 80.61602783 70.055625916 4.76531696 80.71422577 70.065361023 + 4.86079836 80.75488281 70.088874817; + setAttr -s 252 ".ed"; + setAttr ".ed[0:165]" 0 68 0 2 33 0 30 65 0 32 126 0 35 75 0 63 131 0 2 1 0 + 1 4 0 4 3 1 3 2 1 1 0 0 0 5 1 5 4 1 7 6 1 6 3 1 5 8 1 8 7 1 10 9 1 9 6 1 8 11 1 11 10 1 + 13 12 1 12 9 1 11 14 1 14 13 1 16 15 1 15 12 1 14 17 1 17 16 1 19 18 1 18 15 1 17 20 1 + 20 19 1 22 21 1 21 18 1 20 23 1 23 22 1 25 24 1 24 21 1 23 26 1 26 25 1 28 27 1 27 24 1 + 26 29 1 29 28 1 31 30 0 30 27 1 29 32 1 32 31 0 35 34 0 38 35 1 34 33 0 33 36 1 38 37 1 + 41 38 1 37 36 1 36 39 1 41 40 1 44 41 1 40 39 1 39 42 1 44 43 1 47 44 1 43 42 1 42 45 1 + 47 46 1 50 47 1 46 45 1 45 48 1 50 49 1 53 50 1 49 48 1 48 51 1 53 52 1 56 53 1 52 51 1 + 51 54 1 56 55 1 59 56 1 55 54 1 54 57 1 59 58 1 62 59 1 58 57 1 57 60 1 62 61 1 61 64 0 + 64 63 0 63 62 1 61 60 1 60 65 1 65 64 0 3 36 1 6 39 1 9 42 1 12 45 1 15 48 1 18 51 1 + 21 54 1 24 57 1 27 60 1 4 7 0 7 10 0 10 13 0 13 16 0 16 19 0 19 22 0 22 25 0 25 28 0 + 28 31 0 34 37 0 37 40 0 40 43 0 43 46 0 46 49 0 49 52 0 52 55 0 55 58 0 58 61 0 66 77 0 + 128 129 0 68 67 0 71 68 1 67 66 0 66 69 1 71 70 1 80 71 1 70 69 1 69 78 1 82 81 1 + 81 72 1 74 83 1 83 82 1 74 73 1 73 76 0 76 75 0 75 74 1 73 72 1 72 77 1 77 76 0 80 79 1 + 86 80 1 79 78 1 78 84 1 88 87 1 87 81 1 83 89 1 89 88 1 86 85 1 92 86 1 85 84 1 84 90 1 + 94 93 1 93 87 1 89 95 1 95 94 1 92 91 1 98 92 1 91 90 1 90 96 1 100 99 1 99 93 1 + 95 101 1 101 100 1 98 97 1 104 98 1; + setAttr ".ed[166:251]" 97 96 1 96 102 1 106 105 1 105 99 1 101 107 1 107 106 1 + 104 103 1 110 104 1 103 102 1 102 108 1 112 111 1 111 105 1 107 113 1 113 112 1 110 109 1 + 116 110 1 109 108 1 108 114 1 118 117 1 117 111 1 113 119 1 119 118 1 116 115 1 122 116 1 + 115 114 1 114 120 1 124 123 1 123 117 1 119 125 1 125 124 1 122 121 1 121 127 0 127 126 0 + 126 122 1 121 120 1 120 128 1 128 127 0 130 129 0 129 123 1 125 131 1 131 130 0 72 69 1 + 81 78 1 87 84 1 93 90 1 99 96 1 105 102 1 111 108 1 117 114 1 123 120 1 71 5 1 38 74 1 + 80 8 1 41 83 1 86 11 1 44 89 1 92 14 1 47 95 1 98 17 1 50 101 1 104 20 1 53 107 1 + 110 23 1 56 113 1 116 26 1 59 119 1 122 29 1 62 125 1 67 70 0 73 82 0 70 79 0 82 88 0 + 79 85 0 88 94 0 85 91 0 94 100 0 91 97 0 100 106 0 97 103 0 106 112 0 103 109 0 112 118 0 + 109 115 0 118 124 0 115 121 0 124 130 0; + setAttr -s 120 -ch 480 ".fc[0:119]" -type "polyFaces" + f 4 6 7 8 9 + mu 0 4 0 1 2 3 + f 4 10 11 12 -8 + mu 0 4 1 4 5 2 + f 4 85 86 87 88 + mu 0 4 6 7 8 9 + f 4 89 90 91 -87 + mu 0 4 7 10 11 8 + f 4 -10 92 -53 -2 + mu 0 4 0 3 12 13 + f 4 -15 93 -57 -93 + mu 0 4 3 14 15 12 + f 4 -19 94 -61 -94 + mu 0 4 14 16 17 15 + f 4 -23 95 -65 -95 + mu 0 4 16 18 19 17 + f 4 -27 96 -69 -96 + mu 0 4 18 20 21 19 + f 4 -31 97 -73 -97 + mu 0 4 20 22 23 21 + f 4 -35 98 -77 -98 + mu 0 4 22 24 25 23 + f 4 -39 99 -81 -99 + mu 0 4 24 26 27 25 + f 4 -43 100 -85 -100 + mu 0 4 26 28 10 27 + f 4 -47 2 -91 -101 + mu 0 4 28 29 11 10 + f 4 -9 101 13 14 + mu 0 4 3 2 30 14 + f 4 -13 15 16 -102 + mu 0 4 2 5 31 30 + f 4 -14 102 17 18 + mu 0 4 14 30 32 16 + f 4 -17 19 20 -103 + mu 0 4 30 31 33 32 + f 4 -18 103 21 22 + mu 0 4 16 32 34 18 + f 4 -21 23 24 -104 + mu 0 4 32 33 35 34 + f 4 -22 104 25 26 + mu 0 4 18 34 36 20 + f 4 -25 27 28 -105 + mu 0 4 34 35 37 36 + f 4 -26 105 29 30 + mu 0 4 20 36 38 22 + f 4 -29 31 32 -106 + mu 0 4 36 37 39 38 + f 4 -30 106 33 34 + mu 0 4 22 38 40 24 + f 4 -33 35 36 -107 + mu 0 4 38 39 41 40 + f 4 -34 107 37 38 + mu 0 4 24 40 42 26 + f 4 -37 39 40 -108 + mu 0 4 40 41 43 42 + f 4 -38 108 41 42 + mu 0 4 26 42 44 28 + f 4 -41 43 44 -109 + mu 0 4 42 43 45 44 + f 4 -42 109 45 46 + mu 0 4 28 44 46 29 + f 4 -45 47 48 -110 + mu 0 4 44 45 47 46 + f 4 49 110 -54 50 + mu 0 4 48 49 50 51 + f 4 51 52 -56 -111 + mu 0 4 49 13 12 50 + f 4 53 111 -58 54 + mu 0 4 51 50 52 53 + f 4 55 56 -60 -112 + mu 0 4 50 12 15 52 + f 4 57 112 -62 58 + mu 0 4 53 52 54 55 + f 4 59 60 -64 -113 + mu 0 4 52 15 17 54 + f 4 61 113 -66 62 + mu 0 4 55 54 56 57 + f 4 63 64 -68 -114 + mu 0 4 54 17 19 56 + f 4 65 114 -70 66 + mu 0 4 57 56 58 59 + f 4 67 68 -72 -115 + mu 0 4 56 19 21 58 + f 4 69 115 -74 70 + mu 0 4 59 58 60 61 + f 4 71 72 -76 -116 + mu 0 4 58 21 23 60 + f 4 73 116 -78 74 + mu 0 4 61 60 62 63 + f 4 75 76 -80 -117 + mu 0 4 60 23 25 62 + f 4 77 117 -82 78 + mu 0 4 63 62 64 65 + f 4 79 80 -84 -118 + mu 0 4 62 25 27 64 + f 4 81 118 -86 82 + mu 0 4 65 64 7 6 + f 4 83 84 -90 -119 + mu 0 4 64 27 10 7 + f 4 133 134 135 136 + mu 0 4 66 67 153 69 + f 4 137 138 139 -135 + mu 0 4 150 70 71 68 + f 4 196 197 198 199 + mu 0 4 72 73 152 75 + f 4 200 201 202 -198 + mu 0 4 135 76 77 74 + f 4 -125 119 -139 207 + mu 0 4 78 79 71 70 + f 4 -208 -131 208 -129 + mu 0 4 78 70 80 81 + f 4 -209 -146 209 -144 + mu 0 4 81 80 82 83 + f 4 -210 -154 210 -152 + mu 0 4 83 82 84 85 + f 4 -211 -162 211 -160 + mu 0 4 85 84 86 87 + f 4 -212 -170 212 -168 + mu 0 4 87 86 88 89 + f 4 -213 -178 213 -176 + mu 0 4 89 88 90 91 + f 4 -214 -186 214 -184 + mu 0 4 91 90 92 93 + f 4 -215 -194 215 -192 + mu 0 4 93 92 94 76 + f 4 -216 -205 -121 -202 + mu 0 4 76 94 95 77 + f 4 -12 0 -123 216 + mu 0 4 5 4 96 97 + f 4 217 -137 -5 -51 + mu 0 4 51 66 69 48 + f 4 -217 -127 218 -16 + mu 0 4 5 97 98 31 + f 4 219 -132 -218 -55 + mu 0 4 53 99 66 51 + f 4 -219 -142 220 -20 + mu 0 4 31 98 100 33 + f 4 221 -147 -220 -59 + mu 0 4 55 101 99 53 + f 4 -221 -150 222 -24 + mu 0 4 33 100 102 35 + f 4 223 -155 -222 -63 + mu 0 4 57 103 101 55 + f 4 -223 -158 224 -28 + mu 0 4 35 102 104 37 + f 4 225 -163 -224 -67 + mu 0 4 59 105 103 57 + f 4 -225 -166 226 -32 + mu 0 4 37 104 106 39 + f 4 227 -171 -226 -71 + mu 0 4 61 107 105 59 + f 4 -227 -174 228 -36 + mu 0 4 39 106 108 41 + f 4 229 -179 -228 -75 + mu 0 4 63 109 107 61 + f 4 -229 -182 230 -40 + mu 0 4 41 108 110 43 + f 4 231 -187 -230 -79 + mu 0 4 65 111 109 63 + f 4 -231 -190 232 -44 + mu 0 4 43 110 72 45 + f 4 233 -195 -232 -83 + mu 0 4 6 112 111 65 + f 4 -233 -200 -4 -48 + mu 0 4 45 72 75 47 + f 4 -89 5 -206 -234 + mu 0 4 6 9 113 112 + f 4 121 234 -126 122 + mu 0 4 96 114 149 97 + f 4 123 124 -128 -235 + mu 0 4 151 79 78 115 + f 4 -138 235 129 130 + mu 0 4 70 150 148 80 + f 4 -134 131 132 -236 + mu 0 4 67 66 99 116 + f 4 125 236 -141 126 + mu 0 4 97 149 147 98 + f 4 127 128 -143 -237 + mu 0 4 115 78 81 117 + f 4 -130 237 144 145 + mu 0 4 80 148 146 82 + f 4 -133 146 147 -238 + mu 0 4 116 99 101 118 + f 4 140 238 -149 141 + mu 0 4 98 147 145 100 + f 4 142 143 -151 -239 + mu 0 4 117 81 83 119 + f 4 -145 239 152 153 + mu 0 4 82 146 144 84 + f 4 -148 154 155 -240 + mu 0 4 118 101 103 120 + f 4 148 240 -157 149 + mu 0 4 100 145 143 102 + f 4 150 151 -159 -241 + mu 0 4 119 83 85 121 + f 4 -153 241 160 161 + mu 0 4 84 144 142 86 + f 4 -156 162 163 -242 + mu 0 4 120 103 105 122 + f 4 156 242 -165 157 + mu 0 4 102 143 141 104 + f 4 158 159 -167 -243 + mu 0 4 121 85 87 123 + f 4 -161 243 168 169 + mu 0 4 86 142 140 88 + f 4 -164 170 171 -244 + mu 0 4 122 105 107 124 + f 4 164 244 -173 165 + mu 0 4 104 141 139 106 + f 4 166 167 -175 -245 + mu 0 4 123 87 89 125 + f 4 -169 245 176 177 + mu 0 4 88 140 138 90 + f 4 -172 178 179 -246 + mu 0 4 124 107 109 126 + f 4 172 246 -181 173 + mu 0 4 106 139 137 108 + f 4 174 175 -183 -247 + mu 0 4 125 89 91 127 + f 4 -177 247 184 185 + mu 0 4 90 138 136 92 + f 4 -180 186 187 -248 + mu 0 4 126 109 111 128 + f 4 180 248 -189 181 + mu 0 4 108 137 134 110 + f 4 182 183 -191 -249 + mu 0 4 127 91 93 129 + f 4 -185 249 192 193 + mu 0 4 92 136 132 94 + f 4 -188 194 195 -250 + mu 0 4 128 111 112 130 + f 4 188 250 -197 189 + mu 0 4 110 134 73 72 + f 4 190 191 -201 -251 + mu 0 4 129 93 76 135 + f 4 -193 251 203 204 + mu 0 4 94 132 133 95 + f 4 -196 205 206 -252 + mu 0 4 130 112 113 131; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; + setAttr ".dr" 1; +createNode transform -n "tongue_geo" -p "blue_bomb_grp"; + rename -uid "BF7B9FD4-4C4A-72B5-33DF-97B684713A94"; + setAttr ".rp" -type "double3" 0 81.280437261518102 65.293907288411546 ; + setAttr ".sp" -type "double3" 0 81.339251987781566 65.293907252444811 ; +createNode mesh -n "tongue_geoShape" -p "tongue_geo"; + rename -uid "98EEE734-4DEC-F230-6B71-50B3C9C2FC9C"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr -s 6 ".gtag"; + setAttr ".gtag[0].gtagnm" -type "string" "back"; + setAttr ".gtag[0].gtagcmp" -type "componentList" 1 "f[128:191]"; + setAttr ".gtag[1].gtagnm" -type "string" "bottom"; + setAttr ".gtag[1].gtagcmp" -type "componentList" 1 "f[192:255]"; + setAttr ".gtag[2].gtagnm" -type "string" "front"; + setAttr ".gtag[2].gtagcmp" -type "componentList" 1 "f[0:63]"; + setAttr ".gtag[3].gtagnm" -type "string" "left"; + setAttr ".gtag[3].gtagcmp" -type "componentList" 1 "f[320:383]"; + setAttr ".gtag[4].gtagnm" -type "string" "right"; + setAttr ".gtag[4].gtagcmp" -type "componentList" 1 "f[256:319]"; + setAttr ".gtag[5].gtagnm" -type "string" "top"; + setAttr ".gtag[5].gtagcmp" -type "componentList" 1 "f[64:127]"; + setAttr ".pv" -type "double2" 0.33986534752523451 0.40023379027843475 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 418 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.33238059 0.4104988 0.3336466 + 0.41129667 0.3334651 0.41309428 0.33181518 0.41142485 0.3355068 0.41210747 0.33542806 + 0.41423294 0.33521974 0.41579086 0.3330754 0.41439039 0.3312065 0.41240197 0.33766013 + 0.41266856 0.33763993 0.41495433 0.33995563 0.41287959 0.33997297 0.41520205 0.33998573 + 0.41690996 0.33755583 0.41663665 0.3374449 0.41774198 0.33498907 0.41682547 0.33999419 + 0.41803676 0.30699366 0.38833624 0.30979884 0.38794684 0.31245959 0.38685334 0.33271694 + 0.41529426 0.3307116 0.41314238 0.31486368 0.38507789 0.3169291 0.38262814 0.34224772 + 0.41263431 0.34230208 0.41491947 0.34439242 0.4120411 0.34450287 0.41416508 0.34473449 + 0.41571975 0.34241128 0.41660041 0.34624028 0.41120249 0.3464486 0.41299725 0.34749418 + 0.41038579 0.34807336 0.41130328 0.34869665 0.41227123 0.34685767 0.41428739 0.3472296 + 0.41518581 0.3449806 0.41675079 0.34920251 0.41300425 0.34959745 0.41344219 0.2990905 + 0.38515919 0.30151278 0.38690978 0.34253877 0.41770396 0.30418468 0.38797575 0.3043161 + 0.38734186 0.30699027 0.38767356 0.30175835 0.38633347 0.30202007 0.3853091 0.30444509 + 0.38623941 0.30698448 0.38654518 0.29942572 0.38466126 0.2974211 0.38232261 0.29796773 + 0.3816269 0.2998246 0.38378096 0.30026835 0.38251358 0.30227035 0.38376391 0.29864496 + 0.38070512 0.29927057 0.37983197 0.30052704 0.38072836 0.30240339 0.38165009 0.30455375 + 0.38456202 0.3069756 0.38483471 0.30460411 0.38228703 0.30696374 0.38252592 0.31452334 + 0.38458335 0.31650376 0.38222426 0.31220806 0.38627958 0.31193584 0.38525796 0.31411541 + 0.38370723 0.31594998 0.38153416 0.30966085 0.38731426 0.30952048 0.38621324 0.3093946 + 0.38453704 0.31166965 0.38371551 0.30932075 0.38226271 0.31151479 0.38160312 0.3136586 + 0.38244456 0.31526327 0.38061947 0.31338155 0.38066214 0.31462872 0.37975281 0.31353796 + 0.37824959 0.31515783 0.37786663 0.31157696 0.37888712 0.31172955 0.37570947 0.31386256 + 0.37531847 0.31569719 0.3750667 0.30933434 0.37938279 0.30694866 0.37959898 0.30693114 + 0.37620801 0.3093847 0.37604731 0.30942568 0.37241507 0.31183967 0.37221831 0.30691215 + 0.37251854 0.30689219 0.36864644 0.30942687 0.36859804 0.31186393 0.36852008 0.31405857 + 0.3719995 0.31598303 0.37183779 0.31410214 0.36844689 0.31604138 0.36839062 0.30456084 + 0.37940735 0.30231321 0.37893492 0.30212784 0.37575901 0.30447608 0.37607265 0.30034578 + 0.37831765 0.29872203 0.37795138 0.29815382 0.37515718 0.29999095 0.37538999 0.29976073 + 0.37207323 0.30198178 0.37226915 0.29783466 0.37193131 0.29774079 0.36848497 0.2996805 + 0.36852127 0.30191937 0.36857134 0.30439767 0.37244105 0.30435708 0.36862415 0.30437869 + 0.36442304 0.30687007 0.36436057 0.30198014 0.36454087 0.30208984 0.36070919 0.30441466 + 0.3603946 0.30684882 0.36023766 0.29977474 0.36467522 0.29786149 0.36476672 0.29816023 + 0.36127859 0.29997799 0.36106592 0.30028221 0.35808325 0.30222887 0.35744464 0.29867581 + 0.35847437 0.29918781 0.35658649 0.30042276 0.35567182 0.30227998 0.35472995 0.30445758 + 0.35694864 0.30683076 0.35673186 0.30446512 0.35407102 0.30681571 0.35380813 0.3139683 + 0.36460203 0.31588235 0.36467379 0.31176159 0.36449045 0.31161243 0.36066008 0.3137278 + 0.36099499 0.31554765 0.36118895 0.30936196 0.36439735 0.30928448 0.3603695 0.30920601 + 0.35692418 0.31143972 0.35739714 0.30916888 0.35404676 0.3113606 0.3546831 0.31339288 + 0.3580156 0.31500319 0.35839021 0.31322744 0.35560584 0.31447169 0.35650769 0.31348953 + 0.3538222 0.31510279 0.35563582 0.31150037 0.35256898 0.31175092 0.35102075 0.31394047 + 0.35255149 0.31578317 0.35471663 0.30922261 0.3517752 0.30680376 0.35150072 0.30679497 + 0.34980065 0.30932808 0.35010076 0.30944967 0.34899861 0.31200802 0.34999257 0.30678922 + 0.34868118 0.33972305 0.38176936 0.33706164 0.38212353 0.33451644 0.38312256 0.31434456 + 0.35166848 0.31633332 0.35402304 0.33218127 0.38475174 0.33013874 0.38699856 0.30438784 + 0.35180014 0.30211842 0.35261738 0.30185193 0.35107177 0.30426517 0.35012683 0.30014235 + 0.35389102 0.29854786 0.35572124 0.29785797 0.35480905 0.2996783 0.35262504 0.29926512 + 0.35174623 0.30158421 0.35004634 0.29730073 0.35412115 0.29687279 0.35371959 0.34730861 + 0.38463864 0.34494933 0.3830446 0.30413222 0.34902602 0.34238946 0.38208371 0.34227186 + 0.38272044 0.339728 0.38243133 0.34472594 0.38363099 0.34449711 0.38466743 0.34216359 + 0.3838264 0.33973637 0.38355336 0.34699705 0.38515753 0.34899846 0.38729885 0.34850633 + 0.38804036 0.3466377 0.38606271 0.34625077 0.38735962 0.34429005 0.38622671 0.34790492 + 0.3890214 0.34734741 0.38995004 0.34607714 0.38915938 0.34421527 0.38835353 0.3420803 + 0.3855094 0.33974916 0.38526183 0.34206191 0.38779628 0.33976656 0.38758636 0.33250049 + 0.38526595 0.33053139 0.3874369 0.3347486 0.38370556 0.33499283 0.3847385 0.33287334 + 0.38616559 0.33103454 0.38817096 0.33718881 0.38275847 0.3373135 0.38386264 0.33742201 + 0.38554418 0.3352232 0.38629451 0.33747461 0.38783059 0.33532977 0.38841996 0.33327964 + 0.38745654 0.33165056 0.38914293 0.33348015 0.38925353 0.33222184 0.39006311 0.33321658 + 0.39165783 0.33158612 0.39189011 0.33518919 0.39114499 0.33494553 0.39380968 0.33278665 + 0.39409417 0.33094081 0.39420047 0.33742431 0.39072993 0.33978859 0.39053681 0.33980989 + 0.39338845 0.33732381 0.39353162 0.33722556 0.39684254 0.33472091 0.39703339 0.33983493 + 0.39673269 0.33985758 0.39976227 0.33719718 0.39983547 0.33464557 0.39996833 0.33242363 + 0.39718753 0.3304354 0.3972227 0.33230692 0.40007353 0.33028591 0.40013117 0.34215549 + 0.39069456 0.34439656 0.39107615 0.34468007 0.3937369 0.34229788 0.39349443 0.34637663 + 0.39155945; + setAttr ".uvst[0].uvsp[250:417]" 0.34801036 0.39176735 0.34869018 0.39406782 + 0.34684294 0.39398909 0.34725213 0.39707667 0.34495282 0.39695692 0.34924072 0.39708215 + 0.34943366 0.399988 0.34741199 0.39996064 0.34507203 0.39989042 0.34244561 0.3968035 + 0.34251869 0.39979571 0.34247491 0.40278998 0.3398805 0.40283328 0.34496233 0.40274772 + 0.34474748 0.40610412 0.34238303 0.40636325 0.33990794 0.40650529 0.3472428 0.40272558 + 0.34921518 0.40276054 0.34872228 0.40575776 0.34688979 0.40584031 0.34648526 0.40879747 + 0.34452063 0.40931648 0.34810752 0.40855157 0.34229225 0.40973663 0.33993357 0.40993178 + 0.33251742 0.4028357 0.33054581 0.40290013 0.33479795 0.40282369 0.33506304 0.40617654 + 0.33291692 0.40594476 0.33108342 0.40588966 0.33728573 0.40282878 0.33743107 0.40640032 + 0.33757228 0.40977192 0.33533782 0.40938509 0.33336568 0.40889558 0.3317399 0.40867394 + 0.34931237 0.40896076 0.35016668 0.40603516 0.3512553 0.40647668 0.3501792 0.40963539 + 0.35077915 0.40288755 0.35104251 0.39997309 0.35225964 0.39997333 0.35196576 0.40310457 + 0.35280809 0.4033356 0.35203242 0.4068943 0.35312194 0.39998728 0.29348406 0.36825323 + 0.29360536 0.37204164 0.29426104 0.37597013 0.35081655 0.41019976 0.29537928 0.37960964 + 0.35082549 0.39692503 0.35013023 0.39379698 0.35120103 0.39338049 0.35202351 0.39671272 + 0.34920067 0.39133114 0.35004401 0.39063573 0.3506639 0.39005291 0.35196444 0.39299732 + 0.29531634 0.35687 0.29432008 0.36031866 0.35287377 0.39651459 0.29376653 0.36432666 + 0.294359 0.36446309 0.29411206 0.36832249 0.29485819 0.36054265 0.29563072 0.36085176 + 0.29517588 0.36461568 0.29498354 0.36839372 0.29582047 0.35716355 0.29651687 0.35763952 + 0.29744262 0.35820174 0.29671994 0.36115354 0.29633269 0.36473262 0.29618636 0.36845273 + 0.29588294 0.37930995 0.29482388 0.37579823 0.29560727 0.37552923 0.29657322 0.37882257 + 0.29424092 0.37202007 0.29509875 0.37196016 0.2962822 0.37191093 0.29670137 0.3752594 + 0.29749006 0.37824458 0.33038941 0.3914718 0.32949689 0.39395118 0.32841992 0.39355078 + 0.32953575 0.39078906 0.32884842 0.3970893 0.328677 0.40014029 0.32745999 0.40015876 + 0.32764733 0.39689493 0.32679421 0.39670956 0.32765085 0.39317906 0.32659799 0.40018559 + 0.32029548 0.36811501 0.31997257 0.36419153 0.31937769 0.3601895 0.32890728 0.39021561 + 0.31834596 0.35675126 0.32898387 0.40305048 0.32964337 0.40618861 0.32856143 0.40664628 + 0.32780066 0.40328521 0.33054131 0.40910107 0.32968467 0.40978861 0.32905585 0.41036245 + 0.32779068 0.40707546 0.31851751 0.37949032 0.3195982 0.37583947 0.3269619 0.40352881 + 0.32021326 0.37190443 0.31957752 0.37188947 0.31966826 0.36819071 0.31903356 0.37567335 + 0.31824744 0.37541246 0.31871909 0.37183839 0.3187975 0.36827093 0.31801081 0.37919587 + 0.31731552 0.37871557 0.31639278 0.37814713 0.31715065 0.37515396 0.31753519 0.37180138 + 0.31759539 0.3683424 0.31784481 0.35705 0.31884193 0.36041895 0.31807265 0.36073607 + 0.31715333 0.35753307 0.31938154 0.36433405 0.31856626 0.36449504 0.31741074 0.3646239 + 0.31698662 0.36104906 0.31623349 0.35810483 0.32636172 0.4037334 0.3259781 0.40023291 + 0.32724613 0.4073799 0.32859743 0.41073027 0.33032328 0.4135862 0.3284508 0.38984713 + 0.31675711 0.35361707 0.32710087 0.39293313 0.32617188 0.39659357 0.35349438 0.39638931 + 0.35374254 0.40002537 0.35251066 0.39274317 0.35111487 0.38967764 0.34938449 0.38685465 + 0.35128039 0.4105607 0.29699993 0.3827309 0.35258144 0.4071905 0.35341129 0.40353116 + 0.30400193 0.34839156 0.30678588 0.34802917 0.30133799 0.34946874 0.29892066 0.35124922 + 0.31468391 0.35116798 0.31224826 0.3494125 0.30957335 0.34836283 0.34266669 0.41833875 + 0.33999914 0.41869864 0.34521335 0.41733339 0.34754539 0.41569927 0.33240885 0.4158124 + 0.33476508 0.41741151 0.33732647 0.41837862; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 386 ".vt"; + setAttr ".vt[0:165]" -3.029503345 79.75891876 70.25283051 3.029503584 79.75891876 70.25283051 + -3.029503584 81.081802368 70.25283051 3.029503345 81.081802368 70.25283051 -3.029503584 78.47483063 61.71611404 + 3.029503345 78.474823 61.71611404 -3.029503584 77.42456055 62.52045059 3.029503345 77.42455292 62.52045059 + -3.73229694 80.87350464 65.75602722 3.73229694 77.30859375 61.28115845 -8.4382901e-09 76.66163635 61.77661896 + -3.73229694 77.30859375 61.28115845 3.73229694 79.22036743 66.11804962 -3.73229694 79.22036743 66.11804962 + 1.9689343e-08 79.60547638 71.30724335 3.73229694 80.42036438 71.30724335 -5.6255267e-09 81.23523712 71.30724335 + -3.73229694 80.42036438 71.30724335 3.73229694 80.87350464 65.75602722 -8.4382901e-09 77.95555115 60.78569794 + 5.6255267e-08 80.42036438 73.40322876 5.3442509e-08 81.22589111 65.72290039 5.6255267e-08 76.034202576 59.61711121 + 5.3442509e-08 78.89291382 66.095016479 5.12932825 80.027450562 65.90997314 -5.12932825 80.027450562 65.90997314 + -1.92658377 79.99972534 72.39047241 1.92658389 79.99972534 72.39047241 1.92658377 80.84100342 72.39047241 + -1.92658389 80.84100342 72.39047241 -1.92658377 81.36463928 68.59810638 1.92658389 81.36463928 68.59810638 + 1.92658377 79.70275116 62.9041748 -1.92658412 79.70275116 62.9041748 -1.92658377 76.98392487 60.16540527 + 1.92658353 76.98392487 60.16540527 1.92658389 76.31601715 60.67691422 -1.92658412 76.31601715 60.67691422 + -1.92658377 78.015472412 63.87878799 1.92658389 78.015472412 63.87878799 1.92658377 79.36116791 68.59810638 + -1.92658412 79.36116791 68.59810638 4.45429897 79.92492676 68.59810638 4.4542985 78.49475098 63.60136414 + 4.45429897 79.22444916 63.18017197 4.4542985 80.79168701 68.59810638 -4.45429897 78.49475098 63.60136414 + -4.4542985 79.92492676 68.59810638 -4.45429897 80.79168701 68.59810638 -4.4542985 79.22444916 63.18017197 + -3.6565922e-08 79.97528076 72.877388 2.038524628 80.42036438 72.877388 1.0125948e-07 80.86544037 72.877388 + -2.038524628 80.42036438 72.877388 -7.0319082e-08 81.46374512 68.76605225 2.038524628 81.1071701 65.7207489 + 7.8757374e-08 79.68979645 62.72086334 -2.038524628 81.1071701 65.7207489 -7.0319082e-08 76.70728302 59.76397324 + 2.038524628 76.35391998 60.034591675 7.8757374e-08 76.0005645752 60.30519867 -2.038524628 76.35391998 60.034584045 + -7.0319082e-08 77.87297821 63.75987244 2.038524628 78.97924805 66.13913727 7.8757374e-08 79.34586334 68.76605225 + -2.038524628 78.97924805 66.13913727 4.77884102 79.58499908 66.0091705322 4.77884102 78.78324127 63.23971176 + 4.77884102 80.49411774 65.83324432 4.77884102 80.38108826 68.76605225 -4.77884102 79.58499908 66.0091705322 + -4.77884102 80.38108826 68.76605225 -4.77884102 80.49411774 65.83324432 -4.77884102 78.78324127 63.23971176 + -1.7974931 79.65605927 70.95963287 1.79749298 79.65605927 70.95963287 3.50060558 80.027908325 70.95963287 + 3.50060558 80.81282043 70.95963287 1.7974931 81.18465424 70.95963287 -1.7974931 81.18465424 70.95963287 + -3.50060534 80.81282043 70.95963287 -3.50060558 80.027908325 70.95963287 3.50060558 81.11698914 68.4044342 + 3.50060558 79.60929871 63.17911911 1.7974931 78.1267395 61.092430115 -1.7974931 78.1267395 61.092430115 + -3.50060558 79.60929871 63.17911911 -3.50060558 81.11698914 68.4044342 3.50060534 77.83152008 61.31851959 + 3.50060558 77.20836639 61.79575348 1.7974931 76.9131546 62.021846771 -1.7974931 76.9131546 62.021846771 + -3.50060558 77.20836639 61.79575348 -3.50060558 77.83152008 61.31851959 3.50060558 78.2866745 63.95053482 + 3.50060558 79.52906036 68.4044342 -3.50060558 79.52906799 68.4044342 -3.50060558 78.2866745 63.95053482 + 6.7506321e-08 75.93390656 59.85988998 3.66708302 77.20675659 61.48239136 2.77756667 76.69255829 61.13819504 + 3.26203251 77.29790497 62.17802429 2.5364809 77.1721344 62.2743454 1.84195244 76.53038025 61.26239777 + 0.93069828 76.7324295 61.84564209 4.5004214e-08 76.24089813 60.94634628 -2.0026402473 76.25823212 60.26361847 + -2.77756691 76.69255829 61.13819504 -3.66708302 77.20675659 61.48239136 -0.98575377 76.081962585 60.39860916 + -0.93069828 76.7324295 61.84564209 -1.84195256 76.53038025 61.26239777 -2.5364809 77.1721344 62.2743454 + -3.26203251 77.29790497 62.17802429 -1.84195256 77.47616577 62.95702362 -2.77756667 78.1491394 63.95251465 + -3.26203251 77.833992 63.13857269 -4.5004214e-08 77.2694931 62.78934097 -0.98575383 77.91440582 63.79961777 + 0 78.51966095 64.93551636 -1.040809155 78.91413879 66.1112442 -2.0026402473 78.61730194 65.021148682 + -2.95005178 79.084098816 66.14334869 -3.66708255 78.85272217 65.020706177 1.84195256 77.47616577 62.95702362 + 0.98575366 77.91440582 63.79961777 3.26203251 77.833992 63.13857269 2.77756667 78.1491394 63.95251465 + 3.66708255 78.85272217 65.020706177 2.95005178 79.084098816 66.14334869 2.0026402473 78.61730194 65.021148682 + 1.040809155 78.91413879 66.1112442 2.0026400089 79.16434479 67.26829529 0.98575377 79.34283447 68.71221924 + 6.7506321e-08 79.11869049 67.3103714 3.66708302 79.40531921 67.20836639 2.77756643 79.41751099 68.47113037 + 3.26203251 79.69710541 69.51314545 1.84195244 79.53445435 69.87484741 2.2502107e-08 79.47231293 70.13362885 + -2.0026402473 79.16434479 67.26829529 -2.77756691 79.41751099 68.47113037 -3.66708302 79.40531921 67.20836639 + -0.98575377 79.34283447 68.71221924 -1.84195256 79.53445435 69.87484741 -3.26203251 79.69710541 69.51314545 + 4.05760479 79.70861053 68.47113037 4.05760479 80.018203735 69.87484741 4.3421669 79.38760376 66.064682007 + 4.6964221 79.7901535 67.24597168 5.041501522 79.79967499 65.9556427 5.041501522 80.25727081 67.29947662 + 4.6964221 80.15299988 68.71221924 4.34216642 80.42036438 70.13362885 4.05760479 78.39324188 63.80834579 + 4.6964221 79.16812134 64.77616119 4.05760479 77.86022949 62.6628952 4.3421669 78.022163391 62.21291733 + 4.6964221 78.61982727 63.39612961 5.041501522 79.56056976 64.52085876 4.6964221 78.9943161 63.18139648 + 4.6964221 79.99438477 64.43274689 5.041501522 80.26252747 65.87123871 4.05760479 78.49879456 62.17385483 + 4.05760479 79.4447403 63.19892502 4.3421669 80.70778656 65.79389191; + setAttr ".vt[166:331]" 4.6964221 80.59535217 68.71221924 4.05760479 80.82252502 69.87484741 + 4.6964221 80.71573639 67.21331787 4.05760479 80.96482086 68.47113037 -4.05760479 78.39324188 63.80834579 + -4.05760479 77.86022949 62.6628952 -4.3421669 79.38760376 66.064682007 -4.6964221 79.16812134 64.77616119 + -5.041501522 79.79967499 65.9556427 -5.041501522 79.56056976 64.52085876 -4.6964221 78.61982727 63.39612961 + -4.34216642 78.022163391 62.21291733 -4.05760479 79.70861053 68.47113037 -4.6964221 79.7901535 67.24597168 + -4.05760479 80.018203735 69.87484741 -4.3421669 80.42036438 70.13362885 -4.6964221 80.15299988 68.71221924 + -5.041501522 80.25727081 67.29947662 -4.6964221 80.59535217 68.71221924 -4.6964221 80.71573639 67.21331787 + -5.041501522 80.26252747 65.87123871 -4.05760479 80.82252502 69.87484741 -4.05760479 80.96482086 68.47113037 + -4.3421669 80.70778656 65.79389191 -4.6964221 78.9943161 63.18139648 -4.05760479 78.49879456 62.17385483 + -4.6964221 79.99438477 64.43274689 -4.05760479 79.4447403 63.19892502 -2.5364809 79.70815277 70.60169983 + -1.84195256 79.8139267 71.79530334 -2.77756667 80.018203735 71.79530334 -3.26203251 79.86656189 70.60169983 + -0.93069828 79.61971283 71.20939636 -3.375316e-08 79.77626038 72.22223663 -0.98575377 79.98311615 72.75373077 + 1.1251053e-08 80.19311523 73.27146149 -1.040809155 80.42036438 73.27145386 -2.0026402473 80.20513916 72.75373077 + -2.95005178 80.42036438 72.22223663 -3.66708255 80.21715546 71.20939636 0.93069828 79.61971283 71.20939636 + 1.84195256 79.8139267 71.79530334 0.98575377 79.98311615 72.75373077 2.5364809 79.70815277 70.60169983 + 3.26203251 79.86656189 70.60169983 2.77756691 80.018203735 71.79530334 3.66708255 80.21715546 71.20939636 + 2.95005178 80.42036438 72.22223663 2.0026402473 80.20513916 72.75373077 1.040809155 80.42036438 73.27146149 + 2.0026400089 80.63558197 72.75373077 0.98575377 80.85760498 72.75373077 7.8757374e-08 80.64759827 73.27146149 + 3.66708302 80.62356567 71.20939636 2.77756643 80.82252502 71.79530334 3.26203251 80.97415924 70.60169983 + 2.5364809 81.13257599 70.60169983 1.84195244 81.026794434 71.79530334 0.93069828 81.2210083 71.20939636 + 3.375316e-08 81.064460754 72.22223663 -2.0026402473 80.63558197 72.75373077 -2.77756667 80.82252502 71.79530334 + -3.66708302 80.62356567 71.20939636 -0.98575366 80.85760498 72.75373077 -0.93069828 81.2210083 71.20939636 + -1.84195256 81.026794434 71.79530334 -2.5364809 81.13257599 70.60169983 -3.26203251 80.97415924 70.60169983 + -1.84195256 81.30627441 69.87484741 -2.77756667 81.25263977 68.47113037 -3.26203251 81.13257599 69.51314545 + -4.5004214e-08 81.36839294 70.13362885 -0.98575383 81.43638611 68.71221924 0 81.47010803 67.27167511 + -1.040809155 81.18553925 65.72158051 -2.0026402473 81.34155273 67.19216919 -2.95005178 81.0012664795 65.73135376 + -3.66708255 81.087356567 67.12078857 1.84195256 81.30627441 69.87484741 0.98575366 81.43638611 68.71221924 + 3.26203251 81.13257599 69.51314545 2.77756667 81.25263977 68.47113037 3.66708255 81.087356567 67.12078857 + 2.95005178 81.0012664795 65.73135376 2.0026402473 81.34155273 67.19216919 1.040809155 81.18553925 65.72158051 + 2.0026400089 80.53366852 64.20281219 0.98575377 79.69869232 62.77706146 6.7506321e-08 80.61302185 64.10275269 + 3.66708302 80.34001923 64.36354828 2.77756643 79.6829071 63.059623718 3.26203251 78.96487427 62.2725029 + 2.5364809 78.30301666 61.40827179 1.84195244 78.88285828 61.87972641 0.93069828 78.0037307739 60.87203217 + 2.2502107e-08 78.77484131 61.63649368 -2.0026402473 80.53366852 64.20281219 -2.77756691 79.6829071 63.059623718 + -3.66708302 80.34001923 64.36354065 -0.98575377 79.69869232 62.77706146 -0.93069828 78.0037307739 60.87203217 + -1.84195256 78.88285828 61.87972641 -2.5364809 78.30301666 61.40827942 -3.26203251 78.96487427 62.2725029 + -1.84195256 77.49330902 60.52495193 -2.77756667 77.33112335 60.64915466 -3.26203251 78.17724609 61.50458908 + -4.5004214e-08 77.2636261 60.1631012 -0.98575383 76.77624512 59.86690521 0 76.29473114 59.58355331 + -1.040809155 76.11431885 59.72171783 -2.0026402473 76.59997559 60.0018997192 -2.95005178 76.75226593 60.55472565 + -3.66708255 77.52941132 61.23529053 1.84195256 77.49330902 60.52495193 0.98575366 76.77623749 59.86690521 + 3.26203251 78.17724609 61.50458908 2.77756667 77.33112335 60.64915466 3.66708255 77.52941132 61.23529053 + 2.95005178 76.75226593 60.55472565 2.0026402473 76.59997559 60.0018997192 1.040809155 76.11431122 59.72171783 + 2.0026402473 76.25823212 60.26361847 0.98575377 76.081962585 60.39860916 -2.62255955 79.84777069 71.30609131 + -0.94905013 79.78757477 72.10915375 -1.022457361 80.19712067 73.14165497 -2.89827323 80.21315002 72.10915375 + 0.94905013 79.78757477 72.10915375 2.62255955 79.84777069 71.30609131 2.89827347 80.21315002 72.10915375 + 1.022457361 80.19712067 73.14165497 1.022457361 80.64360046 73.14165497 2.89827323 80.62757111 72.10915375 + 2.62255931 80.99295807 71.30609131 0.94905013 81.053153992 72.10915375 -2.89827323 80.62757111 72.10915375 + -1.022457361 80.64360046 73.14165497 -0.94905013 81.053153992 72.10915375 -2.62255955 80.99295807 71.30609131 + -2.62255931 81.2350769 69.64228821 -0.94905013 81.35194397 70.055938721 -1.022457361 81.42055511 67.24491882 + -2.89827347 81.22465515 67.14147186 0.94905013 81.35194397 70.055938721 2.62255931 81.2350769 69.64228821 + 2.89827323 81.22465515 67.14147186 1.022457361 81.42055511 67.24491882 1.022457361 80.59231567 64.13372803 + 2.89827323 80.45079803 64.28704834 2.62255931 78.96773529 62.10764313 0.94905013 78.80900574 61.70817566 + -2.89827347 80.45079803 64.28704834 -1.022457361 80.59231567 64.13372803 -0.94905013 78.80900574 61.70817566 + -2.62255955 78.96773529 62.10764313 -2.62255931 77.7638855 60.93392944 -0.94905013 77.3234024 60.259758 + -1.022457361 76.37046814 59.68904114 -2.89827347 76.98552704 60.51851654 0.94905013 77.3234024 60.259758 + 2.62255931 77.7638855 60.93392944 2.89827323 76.98552704 60.51851654 1.022457361 76.37046814 59.68904114 + 1.022457361 76.01600647 59.96050262 2.89827323 76.6565094 60.77049255; + setAttr ".vt[332:385]" 2.62255931 76.85469818 61.63021851 0.94905013 76.3186264 61.029251099 + -2.89827347 76.6565094 60.77049255 -1.022457361 76.01600647 59.96050262 -0.94905013 76.3186264 61.029251099 + -2.62255955 76.85469818 61.63021851 -2.62255931 77.67408752 63.098369598 -0.94905013 77.32979584 62.84101486 + -1.022457361 78.54896545 64.96631622 -2.89827347 78.7225647 65.049629211 0.94905013 77.32979584 62.84101486 + 2.62255931 77.67408752 63.098369598 2.89827323 78.7225647 65.049629211 1.022457361 78.54896545 64.96631622 + 1.022457361 79.11973572 67.29528809 2.89827323 79.26345825 67.23336029 2.62255931 79.6006012 69.64228821 + 0.94905013 79.48877716 70.055938721 -2.89827347 79.26345825 67.23336029 -1.022457361 79.11973572 67.29528809 + -0.94905013 79.48877716 70.055938721 -2.62255955 79.6006012 69.64228821 3.73153257 79.84333038 69.64228821 + 4.26679325 79.57749939 67.2124939 4.9549861 80.020362854 67.28285217 4.26679325 80.21315002 70.055938721 + 4.26679277 79.0014343262 64.91459656 3.73153257 77.86631775 62.9511528 4.26679277 77.90489197 62.40058136 + 4.9549861 79.35197449 64.63535309 4.9549861 79.78291321 64.46302795 4.26679325 78.23390961 62.14860916 + 3.73153257 78.77550507 62.25485992 4.26679325 80.18448639 64.40600586 4.26679277 80.62757111 70.055938721 + 4.9549861 80.49482727 67.26997375 4.26679325 80.9116745 67.15406799 3.73153257 80.99295807 69.64228821 + -3.73153257 77.86631775 62.9511528 -4.26679325 79.0014343262 64.91459656 -4.9549861 79.35197449 64.63535309 + -4.26679325 77.90489197 62.40058136 -4.26679277 79.57749939 67.2124939 -3.73153257 79.84333038 69.64228821 + -4.26679277 80.21315002 70.055938721 -4.9549861 80.020362854 67.28285217 -4.9549861 80.49482727 67.26997375 + -4.26679325 80.62757111 70.055938721 -3.73153257 80.99295807 69.64228821 -4.26679325 80.9116745 67.15407562 + -4.26679277 78.23390961 62.14860916 -4.9549861 79.78291321 64.46302795 -4.26679325 80.18448639 64.40600586 + -3.73153257 78.77550507 62.25485992; + setAttr -s 768 ".ed"; + setAttr ".ed[0:165]" 0 194 1 194 74 1 74 198 1 198 14 1 14 206 1 206 75 1 + 75 209 1 209 1 1 2 232 1 232 79 1 79 230 1 230 16 1 16 224 1 224 78 1 78 222 1 222 3 1 + 4 268 1 268 85 1 85 266 1 266 19 1 19 260 1 260 84 1 84 258 1 258 5 1 6 112 1 112 91 1 + 91 110 1 110 10 1 10 104 1 104 90 1 90 102 1 102 7 1 0 197 1 197 81 1 81 205 1 205 17 1 + 17 228 1 228 80 1 80 233 1 233 2 1 1 210 1 210 76 1 76 212 1 212 15 1 15 219 1 219 77 1 + 77 221 1 221 3 1 2 236 1 236 87 1 87 243 1 243 8 1 8 264 1 264 86 1 86 269 1 269 4 1 + 3 246 1 246 82 1 82 248 1 248 18 1 18 255 1 255 83 1 83 257 1 257 5 1 4 272 1 272 93 1 + 93 279 1 279 11 1 11 108 1 108 92 1 92 113 1 113 6 1 5 282 1 282 88 1 88 284 1 284 9 1 + 9 99 1 99 89 1 89 101 1 101 7 1 6 116 1 116 97 1 97 123 1 123 13 1 13 142 1 142 96 1 + 96 145 1 145 0 1 7 126 1 126 94 1 94 128 1 128 12 1 12 135 1 135 95 1 95 137 1 137 1 1 + 74 195 1 195 26 1 26 196 1 196 81 1 14 199 1 199 50 1 50 200 1 200 26 1 50 201 1 + 201 20 1 20 202 1 202 53 1 53 203 1 203 26 1 53 204 1 204 17 1 75 207 1 207 27 1 + 27 208 1 208 50 1 76 211 1 211 27 1 15 213 1 213 51 1 51 214 1 214 27 1 51 215 1 + 215 20 1 51 216 1 216 28 1 28 217 1 217 52 1 52 218 1 218 20 1 77 220 1 220 28 1 + 78 223 1 223 28 1 16 225 1 225 52 1 53 226 1 226 29 1 29 227 1 227 80 1 52 229 1 + 229 29 1 79 231 1 231 29 1 79 234 1 234 30 1 30 235 1 235 87 1 16 237 1 237 54 1 + 54 238 1 238 30 1 54 239 1 239 21 1 21 240 1 240 57 1 57 241 1 241 30 1 57 242 1 + 242 8 1 78 244 1 244 31 1 31 245 1 245 54 1 82 247 1 247 31 1; + setAttr ".ed[166:331]" 18 249 1 249 55 1 55 250 1 250 31 1 55 251 1 251 21 1 + 55 252 1 252 32 1 32 253 1 253 56 1 56 254 1 254 21 1 83 256 1 256 32 1 84 259 1 + 259 32 1 19 261 1 261 56 1 57 262 1 262 33 1 33 263 1 263 86 1 56 265 1 265 33 1 + 85 267 1 267 33 1 85 270 1 270 34 1 34 271 1 271 93 1 19 273 1 273 58 1 58 274 1 + 274 34 1 58 275 1 275 22 1 22 276 1 276 61 1 61 277 1 277 34 1 61 278 1 278 11 1 + 84 280 1 280 35 1 35 281 1 281 58 1 88 283 1 283 35 1 9 285 1 285 59 1 59 286 1 286 35 1 + 59 287 1 287 22 1 59 288 1 288 36 1 36 289 1 289 60 1 60 98 1 98 22 1 89 100 1 100 36 1 + 90 103 1 103 36 1 10 105 1 105 60 1 61 106 1 106 37 1 37 107 1 107 92 1 60 109 1 + 109 37 1 91 111 1 111 37 1 91 114 1 114 38 1 38 115 1 115 97 1 10 117 1 117 62 1 + 62 118 1 118 38 1 62 119 1 119 23 1 23 120 1 120 65 1 65 121 1 121 38 1 65 122 1 + 122 13 1 90 124 1 124 39 1 39 125 1 125 62 1 94 127 1 127 39 1 12 129 1 129 63 1 + 63 130 1 130 39 1 63 131 1 131 23 1 63 132 1 132 40 1 40 133 1 133 64 1 64 134 1 + 134 23 1 95 136 1 136 40 1 75 138 1 138 40 1 14 139 1 139 64 1 65 140 1 140 41 1 + 41 141 1 141 96 1 64 143 1 143 41 1 74 144 1 144 41 1 95 146 1 146 42 1 42 147 1 + 147 76 1 12 148 1 148 66 1 66 149 1 149 42 1 66 150 1 150 24 1 24 151 1 151 69 1 + 69 152 1 152 42 1 69 153 1 153 15 1 94 154 1 154 43 1 43 155 1 155 66 1 89 156 1 + 156 43 1 9 157 1 157 67 1 67 158 1 158 43 1 67 159 1 159 24 1 67 160 1 160 44 1 44 161 1 + 161 68 1 68 162 1 162 24 1 88 163 1 163 44 1 83 164 1 164 44 1 18 165 1 165 68 1 + 69 166 1 166 45 1 45 167 1 167 77 1; + setAttr ".ed[332:497]" 68 168 1 168 45 1 82 169 1 169 45 1 97 170 1 170 46 1 + 46 171 1 171 92 1 13 172 1 172 70 1 70 173 1 173 46 1 70 174 1 174 25 1 25 175 1 + 175 73 1 73 176 1 176 46 1 73 177 1 177 11 1 96 178 1 178 47 1 47 179 1 179 70 1 + 81 180 1 180 47 1 17 181 1 181 71 1 71 182 1 182 47 1 71 183 1 183 25 1 71 184 1 + 184 48 1 48 185 1 185 72 1 72 186 1 186 25 1 80 187 1 187 48 1 87 188 1 188 48 1 + 8 189 1 189 72 1 73 190 1 190 49 1 49 191 1 191 93 1 72 192 1 192 49 1 86 193 1 193 49 1 + 194 290 1 290 197 1 195 290 1 196 290 1 198 291 1 291 195 1 199 291 1 200 291 1 200 292 1 + 292 203 1 201 292 1 202 292 1 196 293 1 293 205 1 203 293 1 204 293 1 206 294 1 294 199 1 + 207 294 1 208 294 1 209 295 1 295 207 1 210 295 1 211 295 1 211 296 1 296 214 1 212 296 1 + 213 296 1 208 297 1 297 201 1 214 297 1 215 297 1 215 298 1 298 218 1 216 298 1 217 298 1 + 213 299 1 299 216 1 219 299 1 220 299 1 220 300 1 300 223 1 221 300 1 222 300 1 217 301 1 + 301 225 1 223 301 1 224 301 1 204 302 1 302 228 1 226 302 1 227 302 1 202 303 1 303 226 1 + 218 303 1 229 303 1 229 304 1 304 231 1 225 304 1 230 304 1 227 305 1 305 233 1 231 305 1 + 232 305 1 232 306 1 306 236 1 234 306 1 235 306 1 230 307 1 307 234 1 237 307 1 238 307 1 + 238 308 1 308 241 1 239 308 1 240 308 1 235 309 1 309 243 1 241 309 1 242 309 1 224 310 1 + 310 237 1 244 310 1 245 310 1 222 311 1 311 244 1 246 311 1 247 311 1 247 312 1 312 250 1 + 248 312 1 249 312 1 245 313 1 313 239 1 250 313 1 251 313 1 251 314 1 314 254 1 252 314 1 + 253 314 1 249 315 1 315 252 1 255 315 1 256 315 1 256 316 1 316 259 1 257 316 1 258 316 1 + 253 317 1 317 261 1 259 317 1 260 317 1 242 318 1 318 264 1; + setAttr ".ed[498:663]" 262 318 1 263 318 1 240 319 1 319 262 1 254 319 1 265 319 1 + 265 320 1 320 267 1 261 320 1 266 320 1 263 321 1 321 269 1 267 321 1 268 321 1 268 322 1 + 322 272 1 270 322 1 271 322 1 266 323 1 323 270 1 273 323 1 274 323 1 274 324 1 324 277 1 + 275 324 1 276 324 1 271 325 1 325 279 1 277 325 1 278 325 1 260 326 1 326 273 1 280 326 1 + 281 326 1 258 327 1 327 280 1 282 327 1 283 327 1 283 328 1 328 286 1 284 328 1 285 328 1 + 281 329 1 329 275 1 286 329 1 287 329 1 287 330 1 330 98 1 288 330 1 289 330 1 285 331 1 + 331 288 1 99 331 1 100 331 1 100 332 1 332 103 1 101 332 1 102 332 1 289 333 1 333 105 1 + 103 333 1 104 333 1 278 334 1 334 108 1 106 334 1 107 334 1 276 335 1 335 106 1 98 335 1 + 109 335 1 109 336 1 336 111 1 105 336 1 110 336 1 107 337 1 337 113 1 111 337 1 112 337 1 + 112 338 1 338 116 1 114 338 1 115 338 1 110 339 1 339 114 1 117 339 1 118 339 1 118 340 1 + 340 121 1 119 340 1 120 340 1 115 341 1 341 123 1 121 341 1 122 341 1 104 342 1 342 117 1 + 124 342 1 125 342 1 102 343 1 343 124 1 126 343 1 127 343 1 127 344 1 344 130 1 128 344 1 + 129 344 1 125 345 1 345 119 1 130 345 1 131 345 1 131 346 1 346 134 1 132 346 1 133 346 1 + 129 347 1 347 132 1 135 347 1 136 347 1 136 348 1 348 138 1 137 348 1 209 348 1 133 349 1 + 349 139 1 138 349 1 206 349 1 122 350 1 350 142 1 140 350 1 141 350 1 120 351 1 351 140 1 + 134 351 1 143 351 1 143 352 1 352 144 1 139 352 1 198 352 1 141 353 1 353 145 1 144 353 1 + 194 353 1 137 354 1 354 210 1 146 354 1 147 354 1 135 355 1 355 146 1 148 355 1 149 355 1 + 149 356 1 356 152 1 150 356 1 151 356 1 147 357 1 357 212 1 152 357 1 153 357 1 128 358 1 + 358 148 1 154 358 1 155 358 1 126 359 1 359 154 1 101 359 1 156 359 1; + setAttr ".ed[664:767]" 156 360 1 360 158 1 99 360 1 157 360 1 155 361 1 361 150 1 + 158 361 1 159 361 1 159 362 1 362 162 1 160 362 1 161 362 1 157 363 1 363 160 1 284 363 1 + 163 363 1 163 364 1 364 164 1 282 364 1 257 364 1 161 365 1 365 165 1 164 365 1 255 365 1 + 153 366 1 366 219 1 166 366 1 167 366 1 151 367 1 367 166 1 162 367 1 168 367 1 168 368 1 + 368 169 1 165 368 1 248 368 1 167 369 1 369 221 1 169 369 1 246 369 1 116 370 1 370 113 1 + 170 370 1 171 370 1 123 371 1 371 170 1 172 371 1 173 371 1 173 372 1 372 176 1 174 372 1 + 175 372 1 171 373 1 373 108 1 176 373 1 177 373 1 142 374 1 374 172 1 178 374 1 179 374 1 + 145 375 1 375 178 1 197 375 1 180 375 1 180 376 1 376 182 1 205 376 1 181 376 1 179 377 1 + 377 174 1 182 377 1 183 377 1 183 378 1 378 186 1 184 378 1 185 378 1 181 379 1 379 184 1 + 228 379 1 187 379 1 187 380 1 380 188 1 233 380 1 236 380 1 185 381 1 381 189 1 188 381 1 + 243 381 1 177 382 1 382 279 1 190 382 1 191 382 1 175 383 1 383 190 1 186 383 1 192 383 1 + 192 384 1 384 193 1 189 384 1 264 384 1 191 385 1 385 272 1 193 385 1 269 385 1; + setAttr -s 384 -ch 1536 ".fc[0:383]" -type "polyFaces" + f 4 0 384 385 -33 + mu 0 4 0 1 2 3 + f 4 1 96 386 -385 + mu 0 4 1 4 5 2 + f 4 -387 97 98 387 + mu 0 4 2 5 6 7 + f 4 -386 -388 99 -34 + mu 0 4 3 2 7 8 + f 4 2 388 389 -97 + mu 0 4 4 9 10 5 + f 4 3 100 390 -389 + mu 0 4 9 11 12 10 + f 4 -391 101 102 391 + mu 0 4 10 12 13 14 + f 4 -390 -392 103 -98 + mu 0 4 5 10 14 6 + f 4 -104 392 393 109 + mu 0 4 6 14 15 16 + f 4 -103 104 394 -393 + mu 0 4 14 13 17 15 + f 4 -395 105 106 395 + mu 0 4 15 17 412 417 + f 4 -394 -396 107 108 + mu 0 4 16 15 417 416 + f 4 -100 396 397 -35 + mu 0 4 8 7 21 22 + f 4 -99 -110 398 -397 + mu 0 4 7 6 16 21 + f 4 -399 -109 110 399 + mu 0 4 21 16 416 415 + f 4 -398 -400 111 -36 + mu 0 4 22 21 415 390 + f 4 4 400 401 -101 + mu 0 4 11 25 26 12 + f 4 5 112 402 -401 + mu 0 4 25 27 28 26 + f 4 -403 113 114 403 + mu 0 4 26 28 29 30 + f 4 -402 -404 115 -102 + mu 0 4 12 26 30 13 + f 4 6 404 405 -113 + mu 0 4 27 31 32 28 + f 4 7 40 406 -405 + mu 0 4 31 33 34 32 + f 4 -407 41 116 407 + mu 0 4 32 34 35 36 + f 4 -406 -408 117 -114 + mu 0 4 28 32 36 29 + f 4 -118 408 409 121 + mu 0 4 29 36 37 38 + f 4 -117 42 410 -409 + mu 0 4 36 35 39 37 + f 4 -411 43 118 411 + mu 0 4 37 39 40 414 + f 4 -410 -412 119 120 + mu 0 4 38 37 414 413 + f 4 -116 412 413 -105 + mu 0 4 13 30 43 17 + f 4 -115 -122 414 -413 + mu 0 4 30 29 38 43 + f 4 -415 -121 122 415 + mu 0 4 43 38 413 411 + f 4 -414 -416 123 -106 + mu 0 4 17 43 411 412 + f 4 -124 416 417 129 + mu 0 4 18 44 45 46 + f 4 -123 124 418 -417 + mu 0 4 44 42 47 45 + f 4 -419 125 126 419 + mu 0 4 45 47 48 49 + f 4 -418 -420 127 128 + mu 0 4 46 45 49 50 + f 4 -120 420 421 -125 + mu 0 4 42 41 51 47 + f 4 -119 44 422 -421 + mu 0 4 41 401 52 51 + f 4 -423 45 130 423 + mu 0 4 51 52 53 54 + f 4 -422 -424 131 -126 + mu 0 4 47 51 54 48 + f 4 -132 424 425 133 + mu 0 4 48 54 55 56 + f 4 -131 46 426 -425 + mu 0 4 54 53 57 55 + f 4 -427 47 -16 427 + mu 0 4 55 57 58 59 + f 4 -426 -428 -15 132 + mu 0 4 56 55 59 60 + f 4 -128 428 429 135 + mu 0 4 50 49 61 62 + f 4 -127 -134 430 -429 + mu 0 4 49 48 56 61 + f 4 -431 -133 -14 431 + mu 0 4 61 56 60 63 + f 4 -430 -432 -13 134 + mu 0 4 62 61 63 64 + f 4 -112 432 433 -37 + mu 0 4 24 23 65 66 + f 4 -111 136 434 -433 + mu 0 4 23 20 67 65 + f 4 -435 137 138 435 + mu 0 4 65 67 68 69 + f 4 -434 -436 139 -38 + mu 0 4 66 65 69 70 + f 4 -108 436 437 -137 + mu 0 4 20 19 71 67 + f 4 -107 -130 438 -437 + mu 0 4 19 18 46 71 + f 4 -439 -129 140 439 + mu 0 4 71 46 50 72 + f 4 -438 -440 141 -138 + mu 0 4 67 71 72 68 + f 4 -142 440 441 143 + mu 0 4 68 72 73 74 + f 4 -141 -136 442 -441 + mu 0 4 72 50 62 73 + f 4 -443 -135 -12 443 + mu 0 4 73 62 64 75 + f 4 -442 -444 -11 142 + mu 0 4 74 73 75 76 + f 4 -140 444 445 -39 + mu 0 4 70 69 77 78 + f 4 -139 -144 446 -445 + mu 0 4 69 68 74 77 + f 4 -447 -143 -10 447 + mu 0 4 77 74 76 79 + f 4 -446 -448 -9 -40 + mu 0 4 78 77 79 80 + f 4 8 448 449 -49 + mu 0 4 80 79 81 82 + f 4 9 144 450 -449 + mu 0 4 79 76 83 81 + f 4 -451 145 146 451 + mu 0 4 81 83 84 85 + f 4 -450 -452 147 -50 + mu 0 4 82 81 85 86 + f 4 10 452 453 -145 + mu 0 4 76 75 87 83 + f 4 11 148 454 -453 + mu 0 4 75 64 88 87 + f 4 -455 149 150 455 + mu 0 4 87 88 89 90 + f 4 -454 -456 151 -146 + mu 0 4 83 87 90 84 + f 4 -152 456 457 157 + mu 0 4 84 90 91 92 + f 4 -151 152 458 -457 + mu 0 4 90 89 93 91 + f 4 -459 153 154 459 + mu 0 4 91 93 94 95 + f 4 -458 -460 155 156 + mu 0 4 92 91 95 96 + f 4 -148 460 461 -51 + mu 0 4 86 85 97 98 + f 4 -147 -158 462 -461 + mu 0 4 85 84 92 97 + f 4 -463 -157 158 463 + mu 0 4 97 92 96 99 + f 4 -462 -464 159 -52 + mu 0 4 98 97 99 100 + f 4 12 464 465 -149 + mu 0 4 64 63 101 88 + f 4 13 160 466 -465 + mu 0 4 63 60 102 101 + f 4 -467 161 162 467 + mu 0 4 101 102 103 104 + f 4 -466 -468 163 -150 + mu 0 4 88 101 104 89 + f 4 14 468 469 -161 + mu 0 4 60 59 105 102 + f 4 15 56 470 -469 + mu 0 4 59 58 106 105 + f 4 -471 57 164 471 + mu 0 4 105 106 107 108 + f 4 -470 -472 165 -162 + mu 0 4 102 105 108 103 + f 4 -166 472 473 169 + mu 0 4 103 108 109 110 + f 4 -165 58 474 -473 + mu 0 4 108 107 111 109 + f 4 -475 59 166 475 + mu 0 4 109 111 112 113 + f 4 -474 -476 167 168 + mu 0 4 110 109 113 114 + f 4 -164 476 477 -153 + mu 0 4 89 104 115 93 + f 4 -163 -170 478 -477 + mu 0 4 104 103 110 115 + f 4 -479 -169 170 479 + mu 0 4 115 110 114 116 + f 4 -478 -480 171 -154 + mu 0 4 93 115 116 94 + f 4 -172 480 481 177 + mu 0 4 94 116 117 118 + f 4 -171 172 482 -481 + mu 0 4 116 114 119 117 + f 4 -483 173 174 483 + mu 0 4 117 119 120 121 + f 4 -482 -484 175 176 + mu 0 4 118 117 121 122 + f 4 -168 484 485 -173 + mu 0 4 114 113 123 119 + f 4 -167 60 486 -485 + mu 0 4 113 112 124 123 + f 4 -487 61 178 487 + mu 0 4 123 124 125 126 + f 4 -486 -488 179 -174 + mu 0 4 119 123 126 120 + f 4 -180 488 489 181 + mu 0 4 120 126 127 128 + f 4 -179 62 490 -489 + mu 0 4 126 125 129 127 + f 4 -491 63 -24 491 + mu 0 4 127 129 130 131 + f 4 -490 -492 -23 180 + mu 0 4 128 127 131 132 + f 4 -176 492 493 183 + mu 0 4 122 121 133 134 + f 4 -175 -182 494 -493 + mu 0 4 121 120 128 133 + f 4 -495 -181 -22 495 + mu 0 4 133 128 132 135 + f 4 -494 -496 -21 182 + mu 0 4 134 133 135 136 + f 4 -160 496 497 -53 + mu 0 4 100 99 137 138 + f 4 -159 184 498 -497 + mu 0 4 99 96 139 137 + f 4 -499 185 186 499 + mu 0 4 137 139 140 141 + f 4 -498 -500 187 -54 + mu 0 4 138 137 141 142 + f 4 -156 500 501 -185 + mu 0 4 96 95 143 139 + f 4 -155 -178 502 -501 + mu 0 4 95 94 118 143 + f 4 -503 -177 188 503 + mu 0 4 143 118 122 144 + f 4 -502 -504 189 -186 + mu 0 4 139 143 144 140 + f 4 -190 504 505 191 + mu 0 4 140 144 145 146 + f 4 -189 -184 506 -505 + mu 0 4 144 122 134 145 + f 4 -507 -183 -20 507 + mu 0 4 145 134 136 147 + f 4 -506 -508 -19 190 + mu 0 4 146 145 147 148 + f 4 -188 508 509 -55 + mu 0 4 142 141 149 150 + f 4 -187 -192 510 -509 + mu 0 4 141 140 146 149 + f 4 -511 -191 -18 511 + mu 0 4 149 146 148 151 + f 4 -510 -512 -17 -56 + mu 0 4 150 149 151 152 + f 4 16 512 513 -65 + mu 0 4 152 151 153 154 + f 4 17 192 514 -513 + mu 0 4 151 148 155 153 + f 4 -515 193 194 515 + mu 0 4 153 155 156 157 + f 4 -514 -516 195 -66 + mu 0 4 154 153 157 158 + f 4 18 516 517 -193 + mu 0 4 148 147 159 155 + f 4 19 196 518 -517 + mu 0 4 147 136 160 159 + f 4 -519 197 198 519 + mu 0 4 159 160 161 162 + f 4 -518 -520 199 -194 + mu 0 4 155 159 162 156 + f 4 -200 520 521 205 + mu 0 4 156 162 163 164 + f 4 -199 200 522 -521 + mu 0 4 162 161 165 163 + f 4 -523 201 202 523 + mu 0 4 163 165 405 410 + f 4 -522 -524 203 204 + mu 0 4 164 163 410 409 + f 4 -196 524 525 -67 + mu 0 4 158 157 169 170 + f 4 -195 -206 526 -525 + mu 0 4 157 156 164 169 + f 4 -527 -205 206 527 + mu 0 4 169 164 409 408 + f 4 -526 -528 207 -68 + mu 0 4 170 169 408 392 + f 4 20 528 529 -197 + mu 0 4 136 135 173 160 + f 4 21 208 530 -529 + mu 0 4 135 132 174 173 + f 4 -531 209 210 531 + mu 0 4 173 174 175 176 + f 4 -530 -532 211 -198 + mu 0 4 160 173 176 161 + f 4 22 532 533 -209 + mu 0 4 132 131 177 174 + f 4 23 72 534 -533 + mu 0 4 131 130 178 177 + f 4 -535 73 212 535 + mu 0 4 177 178 179 180 + f 4 -534 -536 213 -210 + mu 0 4 174 177 180 175 + f 4 -214 536 537 217 + mu 0 4 175 180 181 182 + f 4 -213 74 538 -537 + mu 0 4 180 179 183 181 + f 4 -539 75 214 539 + mu 0 4 181 183 184 407 + f 4 -538 -540 215 216 + mu 0 4 182 181 407 406 + f 4 -212 540 541 -201 + mu 0 4 161 176 187 165 + f 4 -211 -218 542 -541 + mu 0 4 176 175 182 187 + f 4 -543 -217 218 543 + mu 0 4 187 182 406 404 + f 4 -542 -544 219 -202 + mu 0 4 165 187 404 405 + f 4 -220 544 545 225 + mu 0 4 166 188 189 190 + f 4 -219 220 546 -545 + mu 0 4 188 186 191 189 + f 4 -547 221 222 547 + mu 0 4 189 191 192 193 + f 4 -546 -548 223 224 + mu 0 4 190 189 193 194 + f 4 -216 548 549 -221 + mu 0 4 186 185 195 191 + f 4 -215 76 550 -549 + mu 0 4 185 399 196 195 + f 4 -551 77 226 551 + mu 0 4 195 196 197 198 + f 4 -550 -552 227 -222 + mu 0 4 191 195 198 192 + f 4 -228 552 553 229 + mu 0 4 192 198 199 200 + f 4 -227 78 554 -553 + mu 0 4 198 197 201 199 + f 4 -555 79 -32 555 + mu 0 4 199 201 202 203 + f 4 -554 -556 -31 228 + mu 0 4 200 199 203 204 + f 4 -224 556 557 231 + mu 0 4 194 193 205 206 + f 4 -223 -230 558 -557 + mu 0 4 193 192 200 205 + f 4 -559 -229 -30 559 + mu 0 4 205 200 204 207 + f 4 -558 -560 -29 230 + mu 0 4 206 205 207 208 + f 4 -208 560 561 -69 + mu 0 4 172 171 209 210 + f 4 -207 232 562 -561 + mu 0 4 171 168 211 209 + f 4 -563 233 234 563 + mu 0 4 209 211 212 213 + f 4 -562 -564 235 -70 + mu 0 4 210 209 213 214 + f 4 -204 564 565 -233 + mu 0 4 168 167 215 211 + f 4 -203 -226 566 -565 + mu 0 4 167 166 190 215 + f 4 -567 -225 236 567 + mu 0 4 215 190 194 216 + f 4 -566 -568 237 -234 + mu 0 4 211 215 216 212 + f 4 -238 568 569 239 + mu 0 4 212 216 217 218 + f 4 -237 -232 570 -569 + mu 0 4 216 194 206 217 + f 4 -571 -231 -28 571 + mu 0 4 217 206 208 219 + f 4 -570 -572 -27 238 + mu 0 4 218 217 219 220 + f 4 -236 572 573 -71 + mu 0 4 214 213 221 222 + f 4 -235 -240 574 -573 + mu 0 4 213 212 218 221 + f 4 -575 -239 -26 575 + mu 0 4 221 218 220 223 + f 4 -574 -576 -25 -72 + mu 0 4 222 221 223 224 + f 4 24 576 577 -81 + mu 0 4 224 223 225 226 + f 4 25 240 578 -577 + mu 0 4 223 220 227 225 + f 4 -579 241 242 579 + mu 0 4 225 227 228 229 + f 4 -578 -580 243 -82 + mu 0 4 226 225 229 230 + f 4 26 580 581 -241 + mu 0 4 220 219 231 227 + f 4 27 244 582 -581 + mu 0 4 219 208 232 231 + f 4 -583 245 246 583 + mu 0 4 231 232 233 234 + f 4 -582 -584 247 -242 + mu 0 4 227 231 234 228 + f 4 -248 584 585 253 + mu 0 4 228 234 235 236 + f 4 -247 248 586 -585 + mu 0 4 234 233 237 235 + f 4 -587 249 250 587 + mu 0 4 235 237 238 239 + f 4 -586 -588 251 252 + mu 0 4 236 235 239 240 + f 4 -244 588 589 -83 + mu 0 4 230 229 241 242 + f 4 -243 -254 590 -589 + mu 0 4 229 228 236 241 + f 4 -591 -253 254 591 + mu 0 4 241 236 240 243 + f 4 -590 -592 255 -84 + mu 0 4 242 241 243 244 + f 4 28 592 593 -245 + mu 0 4 208 207 245 232 + f 4 29 256 594 -593 + mu 0 4 207 204 246 245 + f 4 -595 257 258 595 + mu 0 4 245 246 247 248 + f 4 -594 -596 259 -246 + mu 0 4 232 245 248 233 + f 4 30 596 597 -257 + mu 0 4 204 203 249 246 + f 4 31 88 598 -597 + mu 0 4 203 202 250 249 + f 4 -599 89 260 599 + mu 0 4 249 250 251 252 + f 4 -598 -600 261 -258 + mu 0 4 246 249 252 247 + f 4 -262 600 601 265 + mu 0 4 247 252 253 254 + f 4 -261 90 602 -601 + mu 0 4 252 251 255 253 + f 4 -603 91 262 603 + mu 0 4 253 255 256 257 + f 4 -602 -604 263 264 + mu 0 4 254 253 257 258 + f 4 -260 604 605 -249 + mu 0 4 233 248 259 237 + f 4 -259 -266 606 -605 + mu 0 4 248 247 254 259 + f 4 -607 -265 266 607 + mu 0 4 259 254 258 260 + f 4 -606 -608 267 -250 + mu 0 4 237 259 260 238 + f 4 -268 608 609 273 + mu 0 4 238 260 261 262 + f 4 -267 268 610 -609 + mu 0 4 260 258 263 261 + f 4 -611 269 270 611 + mu 0 4 261 263 264 265 + f 4 -610 -612 271 272 + mu 0 4 262 261 265 266 + f 4 -264 612 613 -269 + mu 0 4 258 257 267 263 + f 4 -263 92 614 -613 + mu 0 4 257 256 268 267 + f 4 -615 93 274 615 + mu 0 4 267 268 269 270 + f 4 -614 -616 275 -270 + mu 0 4 263 267 270 264 + f 4 -276 616 617 277 + mu 0 4 264 270 271 272 + f 4 -275 94 618 -617 + mu 0 4 270 269 273 271 + f 4 -619 95 -8 619 + mu 0 4 271 273 33 31 + f 4 -618 -620 -7 276 + mu 0 4 272 271 31 27 + f 4 -272 620 621 279 + mu 0 4 266 265 274 275 + f 4 -271 -278 622 -621 + mu 0 4 265 264 272 274 + f 4 -623 -277 -6 623 + mu 0 4 274 272 27 25 + f 4 -622 -624 -5 278 + mu 0 4 275 274 25 11 + f 4 -256 624 625 -85 + mu 0 4 244 243 276 277 + f 4 -255 280 626 -625 + mu 0 4 243 240 278 276 + f 4 -627 281 282 627 + mu 0 4 276 278 279 280 + f 4 -626 -628 283 -86 + mu 0 4 277 276 280 281 + f 4 -252 628 629 -281 + mu 0 4 240 239 282 278 + f 4 -251 -274 630 -629 + mu 0 4 239 238 262 282 + f 4 -631 -273 284 631 + mu 0 4 282 262 266 283 + f 4 -630 -632 285 -282 + mu 0 4 278 282 283 279 + f 4 -286 632 633 287 + mu 0 4 279 283 284 285 + f 4 -285 -280 634 -633 + mu 0 4 283 266 275 284 + f 4 -635 -279 -4 635 + mu 0 4 284 275 11 9 + f 4 -634 -636 -3 286 + mu 0 4 285 284 9 4 + f 4 -284 636 637 -87 + mu 0 4 281 280 286 287 + f 4 -283 -288 638 -637 + mu 0 4 280 279 285 286 + f 4 -639 -287 -2 639 + mu 0 4 286 285 4 1 + f 4 -638 -640 -1 -88 + mu 0 4 287 286 1 0 + f 4 -96 640 641 -41 + mu 0 4 33 273 288 34 + f 4 -95 288 642 -641 + mu 0 4 273 269 289 288 + f 4 -643 289 290 643 + mu 0 4 288 289 290 291 + f 4 -642 -644 291 -42 + mu 0 4 34 288 291 35 + f 4 -94 644 645 -289 + mu 0 4 269 268 292 289 + f 4 -93 292 646 -645 + mu 0 4 268 256 293 292 + f 4 -647 293 294 647 + mu 0 4 292 293 294 295 + f 4 -646 -648 295 -290 + mu 0 4 289 292 295 290 + f 4 -296 648 649 301 + mu 0 4 290 295 296 297 + f 4 -295 296 650 -649 + mu 0 4 295 294 298 296 + f 4 -651 297 298 651 + mu 0 4 296 298 396 403 + f 4 -650 -652 299 300 + mu 0 4 297 296 403 402 + f 4 -292 652 653 -43 + mu 0 4 35 291 302 39 + f 4 -291 -302 654 -653 + mu 0 4 291 290 297 302 + f 4 -655 -301 302 655 + mu 0 4 302 297 402 400 + f 4 -654 -656 303 -44 + mu 0 4 39 302 400 40 + f 4 -92 656 657 -293 + mu 0 4 256 255 304 293 + f 4 -91 304 658 -657 + mu 0 4 255 251 305 304 + f 4 -659 305 306 659 + mu 0 4 304 305 306 307 + f 4 -658 -660 307 -294 + mu 0 4 293 304 307 294 + f 4 -90 660 661 -305 + mu 0 4 251 250 308 305 + f 4 -89 -80 662 -661 + mu 0 4 250 202 201 308 + f 4 -663 -79 308 663 + mu 0 4 308 201 197 309 + f 4 -662 -664 309 -306 + mu 0 4 305 308 309 306 + f 4 -310 664 665 313 + mu 0 4 306 309 310 311 + f 4 -309 -78 666 -665 + mu 0 4 309 197 196 310 + f 4 -667 -77 310 667 + mu 0 4 310 196 399 398 + f 4 -666 -668 311 312 + mu 0 4 311 310 398 397 + f 4 -308 668 669 -297 + mu 0 4 294 307 314 298 + f 4 -307 -314 670 -669 + mu 0 4 307 306 311 314 + f 4 -671 -313 314 671 + mu 0 4 314 311 397 395 + f 4 -670 -672 315 -298 + mu 0 4 298 314 395 396 + f 4 -316 672 673 321 + mu 0 4 299 315 316 317 + f 4 -315 316 674 -673 + mu 0 4 315 313 318 316 + f 4 -675 317 318 675 + mu 0 4 316 318 319 320 + f 4 -674 -676 319 320 + mu 0 4 317 316 320 321 + f 4 -312 676 677 -317 + mu 0 4 313 312 322 318 + f 4 -311 -76 678 -677 + mu 0 4 312 184 183 322 + f 4 -679 -75 322 679 + mu 0 4 322 183 179 323 + f 4 -678 -680 323 -318 + mu 0 4 318 322 323 319 + f 4 -324 680 681 325 + mu 0 4 319 323 324 325 + f 4 -323 -74 682 -681 + mu 0 4 323 179 178 324 + f 4 -683 -73 -64 683 + mu 0 4 324 178 130 129 + f 4 -682 -684 -63 324 + mu 0 4 325 324 129 125 + f 4 -320 684 685 327 + mu 0 4 321 320 326 327 + f 4 -319 -326 686 -685 + mu 0 4 320 319 325 326 + f 4 -687 -325 -62 687 + mu 0 4 326 325 125 124 + f 4 -686 -688 -61 326 + mu 0 4 327 326 124 112 + f 4 -304 688 689 -45 + mu 0 4 401 303 328 52 + f 4 -303 328 690 -689 + mu 0 4 303 301 329 328 + f 4 -691 329 330 691 + mu 0 4 328 329 330 331 + f 4 -690 -692 331 -46 + mu 0 4 52 328 331 53 + f 4 -300 692 693 -329 + mu 0 4 301 300 332 329 + f 4 -299 -322 694 -693 + mu 0 4 300 299 317 332 + f 4 -695 -321 332 695 + mu 0 4 332 317 321 333 + f 4 -694 -696 333 -330 + mu 0 4 329 332 333 330 + f 4 -334 696 697 335 + mu 0 4 330 333 334 335 + f 4 -333 -328 698 -697 + mu 0 4 333 321 327 334 + f 4 -699 -327 -60 699 + mu 0 4 334 327 112 111 + f 4 -698 -700 -59 334 + mu 0 4 335 334 111 107 + f 4 -332 700 701 -47 + mu 0 4 53 331 336 57 + f 4 -331 -336 702 -701 + mu 0 4 331 330 335 336 + f 4 -703 -335 -58 703 + mu 0 4 336 335 107 106 + f 4 -702 -704 -57 -48 + mu 0 4 57 336 106 58 + f 4 80 704 705 71 + mu 0 4 224 226 337 222 + f 4 81 336 706 -705 + mu 0 4 226 230 338 337 + f 4 -707 337 338 707 + mu 0 4 337 338 339 340 + f 4 -706 -708 339 70 + mu 0 4 222 337 340 214 + f 4 82 708 709 -337 + mu 0 4 230 242 341 338 + f 4 83 340 710 -709 + mu 0 4 242 244 342 341 + f 4 -711 341 342 711 + mu 0 4 341 342 343 344 + f 4 -710 -712 343 -338 + mu 0 4 338 341 344 339 + f 4 -344 712 713 349 + mu 0 4 339 344 345 346 + f 4 -343 344 714 -713 + mu 0 4 344 343 347 345 + f 4 -715 345 346 715 + mu 0 4 345 347 387 394 + f 4 -714 -716 347 348 + mu 0 4 346 345 394 393 + f 4 -340 716 717 69 + mu 0 4 214 340 351 210 + f 4 -339 -350 718 -717 + mu 0 4 340 339 346 351 + f 4 -719 -349 350 719 + mu 0 4 351 346 393 391 + f 4 -718 -720 351 68 + mu 0 4 210 351 391 172 + f 4 84 720 721 -341 + mu 0 4 244 277 353 342 + f 4 85 352 722 -721 + mu 0 4 277 281 354 353 + f 4 -723 353 354 723 + mu 0 4 353 354 355 356 + f 4 -722 -724 355 -342 + mu 0 4 342 353 356 343 + f 4 86 724 725 -353 + mu 0 4 281 287 357 354 + f 4 87 32 726 -725 + mu 0 4 287 0 3 357 + f 4 -727 33 356 727 + mu 0 4 357 3 8 358 + f 4 -726 -728 357 -354 + mu 0 4 354 357 358 355 + f 4 -358 728 729 361 + mu 0 4 355 358 359 360 + f 4 -357 34 730 -729 + mu 0 4 358 8 22 359 + f 4 -731 35 358 731 + mu 0 4 359 22 390 389 + f 4 -730 -732 359 360 + mu 0 4 360 359 389 388 + f 4 -356 732 733 -345 + mu 0 4 343 356 363 347 + f 4 -355 -362 734 -733 + mu 0 4 356 355 360 363 + f 4 -735 -361 362 735 + mu 0 4 363 360 388 386 + f 4 -734 -736 363 -346 + mu 0 4 347 363 386 387 + f 4 -364 736 737 369 + mu 0 4 348 364 365 366 + f 4 -363 364 738 -737 + mu 0 4 364 362 367 365 + f 4 -739 365 366 739 + mu 0 4 365 367 368 369 + f 4 -738 -740 367 368 + mu 0 4 366 365 369 370 + f 4 -360 740 741 -365 + mu 0 4 362 361 371 367 + f 4 -359 36 742 -741 + mu 0 4 361 24 66 371 + f 4 -743 37 370 743 + mu 0 4 371 66 70 372 + f 4 -742 -744 371 -366 + mu 0 4 367 371 372 368 + f 4 -372 744 745 373 + mu 0 4 368 372 373 374 + f 4 -371 38 746 -745 + mu 0 4 372 70 78 373 + f 4 -747 39 48 747 + mu 0 4 373 78 80 82 + f 4 -746 -748 49 372 + mu 0 4 374 373 82 86 + f 4 -368 748 749 375 + mu 0 4 370 369 375 376 + f 4 -367 -374 750 -749 + mu 0 4 369 368 374 375 + f 4 -751 -373 50 751 + mu 0 4 375 374 86 98 + f 4 -750 -752 51 374 + mu 0 4 376 375 98 100 + f 4 -352 752 753 67 + mu 0 4 392 352 377 170 + f 4 -351 376 754 -753 + mu 0 4 352 350 378 377 + f 4 -755 377 378 755 + mu 0 4 377 378 379 380 + f 4 -754 -756 379 66 + mu 0 4 170 377 380 158 + f 4 -348 756 757 -377 + mu 0 4 350 349 381 378 + f 4 -347 -370 758 -757 + mu 0 4 349 348 366 381 + f 4 -759 -369 380 759 + mu 0 4 381 366 370 382 + f 4 -758 -760 381 -378 + mu 0 4 378 381 382 379 + f 4 -382 760 761 383 + mu 0 4 379 382 383 384 + f 4 -381 -376 762 -761 + mu 0 4 382 370 376 383 + f 4 -763 -375 52 763 + mu 0 4 383 376 100 138 + f 4 -762 -764 53 382 + mu 0 4 384 383 138 142 + f 4 -380 764 765 65 + mu 0 4 158 380 385 154 + f 4 -379 -384 766 -765 + mu 0 4 380 379 384 385 + f 4 -767 -383 54 767 + mu 0 4 385 384 142 150 + f 4 -766 -768 55 64 + mu 0 4 154 385 150 152; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; + setAttr ".dr" 1; +createNode transform -n "bomb_fusel_geo" -p "blue_bomb_grp"; + rename -uid "4FD3AC7C-4214-B5DC-6DD2-079848DEBA02"; + setAttr ".rp" -type "double3" -0.14830780029296875 134.06875228881836 26.331522464752197 ; + setAttr ".sp" -type "double3" -0.14830780029296875 134.06875228881836 26.331522464752197 ; +createNode mesh -n "bomb_fusel_geoShape" -p "bomb_fusel_geo"; + rename -uid "886FA12C-4DC4-32B0-F944-04A58BF93969"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.96506036027698583 0.25866145083626496 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 201 ".uvst[0].uvsp[0:200]" -type "float2" 0.89337885 0.57913435 + 0.89738053 0.57359242 0.90437698 0.57471895 0.9027344 0.58310556 0.91390723 0.57570332 + 0.92378312 0.57592958 0.92422354 0.58455765 0.91312921 0.58510053 0.94959068 0.5642767 + 0.94302952 0.57472467 0.9351455 0.56954092 0.93985069 0.5603779 0.95340103 0.53832424 + 0.953116 0.55157143 0.9427256 0.54962617 0.9430477 0.53821629 0.94151586 0.52762926 + 0.95049459 0.52572739 0.93348414 0.50920212 0.93082553 0.51773578 0.91905683 0.51599824 + 0.92021483 0.50612122 0.90640694 0.50732768 0.90734881 0.51630259 0.89912724 0.51787525 + 0.8949694 0.51250732 0.88699448 0.52204055 0.89572161 0.52506 0.89243442 0.53559273 + 0.88193047 0.53423637 0.89093351 0.54680914 0.8802551 0.5473122 0.88151908 0.56000626 + 0.89209187 0.55762696 0.89472902 0.56704295 0.88651967 0.57100397 0.92093575 0.50017595 + 0.95018089 0.34302062 0.95047688 0.29430905 0.95023769 0.31011748 0.94940317 0.26270118 + 0.94983792 0.27870166 0.94946086 0.24711367 0.94844347 0.37257594 0.94669634 0.38781744 + 0.93707436 0.11788419 0.94096196 0.13189951 0.94434202 0.14563644 0.94844109 0.1703313 + 0.94972736 0.18255013 0.95095581 0.19424218 0.9518494 0.20585424 0.9513877 0.21822244 + 0.95030117 0.23212445 0.97877693 0.32794777 0.97819138 0.34448472 0.96733946 0.34381497 + 0.96787 0.32756662 0.96455038 0.39030334 0.96570873 0.37473881 0.97660947 0.37528425 + 0.9756577 0.39102572 0.97499394 0.40692902 0.96311951 0.40597856 0.96794522 0.12649103 + 0.96996915 0.14118887 0.95972526 0.1424613 0.95738137 0.12803128 0.96441448 0.18094562 + 0.96308094 0.1686331 0.97322166 0.16743413 0.97420543 0.17992426 0.96657795 0.20502807 + 0.96551561 0.19279049 0.97536629 0.19191876 0.97630817 0.20432498 0.96752489 0.23201862 + 0.96711099 0.21805276 0.97741985 0.21736978 0.9780364 0.23150076 0.96781331 0.26165888 + 0.96763819 0.24652065 0.97864765 0.24614225 0.97901499 0.26140997 0.97911811 0.27755868 + 0.96795309 0.27765954 0.9792496 0.29401296 0.97915173 0.31081069 0.96804661 0.31079865 + 0.96805304 0.29411387 0.90206891 0.54669499 0.90326661 0.53598028 0.93064326 0.54801589 + 0.91623068 0.54701734 0.9171899 0.53643185 0.93186575 0.53733325 0.90287977 0.55690342 + 0.90390766 0.56637979 0.92879504 0.55827135 0.92583787 0.56765795 0.91465431 0.5667575 + 0.91528654 0.55720264 0.90561253 0.5253256 0.91813862 0.52553636 0.93112826 0.52667034 + 0.93131649 0.57549816 0.9349466 0.58210337 0.94715732 0.15797973 0.97170597 0.15456894 + 0.96169847 0.15580732 0.96667159 0.35951293 0.9773438 0.36024481 0.94416571 0.51573902 + 0.94992137 0.35816246 0.93899935 0.52026576 0.99075568 0.34523028 0.98456967 0.34485537 + 0.98554248 0.32801971 0.99240142 0.32816213 0.98349655 0.36042801 0.98955578 0.36058673 + 0.98949176 0.37516522 0.98318541 0.37531036 0.98272061 0.39115399 0.9898982 0.39091527 + 0.99002409 0.40623879 0.9825387 0.40708482 0.97471672 0.12605725 0.98153257 0.12594511 + 0.98179865 0.14063087 0.97593617 0.14083387 0.97694027 0.15407707 0.98206067 0.15362932 + 0.98349673 0.16625208 0.97840029 0.16684173 0.97939247 0.17949648 0.98454273 0.17907079 + 0.98544705 0.19127798 0.98041815 0.19159047 0.98150778 0.20380048 0.98661464 0.20330082 + 0.98851734 0.21605316 0.98304361 0.21671094 0.98407018 0.23105642 0.98995638 0.23055987 + 0.99148393 0.24566592 0.98504794 0.24592951 0.98568726 0.26147681 0.9923737 0.26153499 + 0.99276626 0.27808428 0.98597491 0.27779555 0.98600423 0.29389855 0.99241793 0.29377258 + 0.99304634 0.31020463 0.98612827 0.31052622 0.95610601 0.34324422 0.95635533 0.32708827 + 0.95551205 0.35870826 0.95444363 0.37354511 0.95298976 0.38895547 0.94314098 0.11581838 + 0.94684559 0.13029635 0.94973063 0.14436036 0.95189011 0.15724584 0.95356762 0.16977996 + 0.95489317 0.18199456 0.95601076 0.19370699 0.95678151 0.20564741 0.95688587 0.2184124 + 0.95646942 0.23224336 0.9561094 0.24694818 0.95587873 0.26214075 0.95612448 0.27815759 + 0.95637524 0.29422057 0.9564411 0.31053489 0.90517706 0.50155783 0.95009482 0.32678279 + 0.8915931 0.5079788 0.88173288 0.51906675 0.87582833 0.53303534 0.8739022 0.54771227 + 0.87612772 0.56194371 0.88232166 0.57403147 0.89080155 0.58285946 0.90130407 0.58775687 + 0.91278458 0.58991545 0.92499161 0.58943999 0.93689424 0.58605909 0.94680226 0.57834029 + 0.9547475 0.566872 0.95901734 0.55279303 0.95947975 0.5379355 0.95585847 0.52358872 + 0.94797969 0.51211458 0.93586671 0.50412357 0.97351384 0.11023807 0.96608055 0.11098389 + 0.95134461 0.40433368 0.94500089 0.40277255 0.9544909 0.11291561 0.98100317 0.1106566; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 175 ".vt"; + setAttr ".vt[0:165]" -16.25593567 141.24441528 31.55838394 -13.9241333 142.4052124 30.66499138 + -12.90013123 142.60452271 23.99211311 -16.39982605 141.37004089 23.28151703 -10.83326721 142.45016479 17.25279617 + -12.78433228 141.33372498 15.21451378 -4.030075073 142.7960968 15.71494675 -4.33062744 142.052139282 11.58333015 + 4.85699463 142.85107422 17.023584366 6.0054779053 142.32138062 13.084763527 11.29220581 142.66769409 20.58965492 + 13.57324219 142.10372925 19.15222931 10.68217468 142.83790588 28.69349289 14.57392883 142.30380249 29.35428429 + 7.75915527 142.75222778 36.11274338 9.34938049 142.31312561 38.2779808 0.21458435 142.87724304 36.70288467 + -0.37953186 142.36500549 40.853302 -8.32771301 142.81735229 34.44223785 -10.30151367 142.12228394 38.25874329 + 17.28074646 125.32315826 29.50039291 16.26069641 125.70858765 17.47162056 10.72245789 125.22406006 40.29098129 + -0.66947937 125.30457306 43.60759354 -11.74694824 125.44008636 40.42311859 7.17730713 125.22595978 10.74964809 + -4.63056946 125.27321625 9.49880123 -14.1885376 126.061729431 13.80387402 -18.3618927 126.17545319 22.71692657 + -18.10470581 126.079124451 32.10884857 18.78993225 134.5856781 29.95951271 16.73506165 134.70368958 17.23419762 + 7.63392639 134.62286377 8.86343765 -4.65840149 134.41137695 7.75918722 -14.21783447 134.20048523 13.60835075 + -18.73800659 134.17074585 22.67217827 -18.18865967 134.050750732 32.34430695 -11.9385376 134.21928406 41.2086525 + -0.77702332 134.46537781 45.37158585 11.66810608 134.51834106 41.38125992 2.59657288 142.97270203 27.11697388 + -5.63381958 142.96289063 25.52558136 -11.87391663 142.56982422 20.12508583 -14.96789551 141.43955994 19.055152893 + -17.14334106 134.22712708 17.92815018 -16.83821106 126.059158325 17.96522331 17.71525574 125.57151794 23.1002121 + 18.81930542 134.68244934 23.31230164 14.86584473 142.17390442 23.95445633 11.33580017 142.77897644 23.99851227 + 3.91116333 142.95422363 21.39795685 -4.51231384 142.94067383 20.20005417 -13.59448242 142.54252625 27.81160355 + -16.775177 141.30888367 27.51550865 -19.1240387 134.12460327 27.46522331 -18.66427612 126.22488403 27.45276451 + 14.70617676 125.16216278 35.64929199 16.22506714 134.53688049 36.31689835 12.58569336 142.3380127 34.48675156 + 9.26783752 142.82382202 33.14020157 1.23510742 142.96139526 32.50455856 -6.89332581 142.94035339 30.34918594 + 8.75004578 142.78666687 18.80117416 10.48155212 142.24261475 15.6131773 12.90710449 134.69577026 12.33341312 + 12.61837769 125.3959198 13.31649685 5.42915344 125.2098999 42.76752853 5.70608521 134.51010132 44.4878006 + 4.83085632 142.37278748 40.26768494 4.6242981 142.8364563 36.61291885 5.60229492 142.93403625 32.79476929 + 6.90715027 142.95085144 27.97504807 7.93461609 142.91174316 22.87852097 -9.082687378 141.76313782 12.90339565 + -8.10191345 142.66618347 16.45484352 -8.46551514 142.85055542 20.26573944 -9.38586426 142.88552856 24.70191956 + -10.44271851 142.85159302 28.91613007 -11.69207764 142.67593384 32.41563034 -13.9710083 141.71324158 35.12319565 + -15.78086853 134.12620544 37.040462494 -15.77842712 125.63790131 36.51507187 -10.0546875 125.60484314 10.98299026 + -10.076522827 134.29933167 10.0648489 0.91990662 142.22061157 11.7003727 0.43850708 142.84333801 15.85072613 + -0.34863281 142.96292114 20.65928078 -1.59869385 142.9753418 26.29972839 -3.034072876 142.96534729 31.78029633 + -4.26951599 142.87602234 36.058101654 -5.56481934 142.36938477 40.10084534 -6.84864807 134.38357544 44.19908142 + -6.54536438 125.29575348 42.85946274 1.31700134 125.22177887 9.47360897 1.50627136 134.55177307 7.34590292 + 18.95736694 130.20010376 29.89687729 18.95069885 130.35107422 23.13946533 16.86474609 130.43902588 17.068166733 + 13.10205078 130.31518555 12.25020599 7.79122925 130.1361084 8.69761658 1.54826355 130.020614624 7.13880634 + -4.70085144 130.091171265 7.56909084 -10.20172119 130.15013123 9.94120121 -14.32655334 130.18017578 13.49794769 + -17.27864075 130.15501404 17.80085182 -18.8649292 130.24267578 22.58965874 -19.25398254 130.18527222 27.42937279 + -18.33247375 130.17698669 32.35861206 -15.95948792 130.034408569 37.076873779 -12.069473267 130.036514282 41.2833786 + -6.92745972 129.96632385 44.3086586 -0.79475403 129.96386719 45.52423859 5.76560974 130.021408081 44.62663269 + 11.75492859 130.032516479 41.52132416 16.3815155 130.074630737 36.42115784 18.084854126 139.16117859 29.91868973 + 18.11225891 139.11506653 23.47690201 16.15065002 139.11340332 17.6161499 12.52552795 139.19270325 12.89240074 + 7.2885437 139.23544312 9.58509636 1.32157898 139.028015137 8.13220787 -4.68464661 138.70584106 8.43681812 + -9.98269653 138.34767151 10.6230545 -13.96762085 138.13163757 13.98256493 -16.77410889 138.02722168 18.17631721 + -18.33769226 137.97401428 22.82658577 -18.72337341 137.91719055 27.5097065 -17.83258057 137.92752075 32.20226288 + -15.49256897 138.15620422 36.71125412 -11.75770569 138.58950806 40.72587204 -6.67260742 138.96617126 43.60184479 + -0.71151733 139.1985321 44.61581421 5.60224915 139.21588135 43.7705307 11.2870636 139.18061829 40.85793304 + 15.61663818 139.14595032 36.032875061 16.69812012 141.25843811 29.71069145 16.80860901 141.091567993 23.66792297 + 15.13076782 141.019500732 18.24679375 11.76330566 141.24713135 13.97292137 6.7791748 141.29782104 11.016215324 + 1.14442444 141.10887146 9.57789707 -4.59689331 140.81640625 9.65421104 -9.72001648 140.39083862 11.45982647 + -13.57717896 139.95561218 14.42383957 -16.15690613 139.98506165 18.48263168 -17.65722656 139.91499329 22.99736977 + -18.035522461 139.84321594 27.52647591 -17.2862854 139.79200745 31.9588356 -15.034164429 140.23953247 36.12005615 + -11.31608582 140.81861877 39.84380341 -6.27012634 141.2368927 42.26399231 -0.55285645 141.31469727 43.095630646 + 5.32731628 141.32084656 42.37303925 10.54969788 141.25109863 39.8681488 14.44978333 141.28761292 35.47840881 + 18.87411499 127.80917358 23.043731689 18.89756775 127.47811127 29.85586166 16.33891296 127.26724243 36.52539063 + 11.72366333 127.32995605 41.5400238 5.85649109 127.26683044 44.53629684 -0.74386597 127.28718567 45.42610168 + -6.95832825 127.40092468 44.23438263 -12.17961121 127.63260651 41.21153641 -16.094360352 127.79047394 36.95575333 + -18.37841797 128.10009766 32.28462982 -19.21617126 128.16233826 27.45143127; + setAttr ".vt[166:174]" -18.84851074 128.16616821 22.60754585 -17.27572632 128.069564819 17.77822876 + -14.38594055 128.088546753 13.53288555 -10.34963989 127.7617569 10.067559242 -4.83761597 127.33950806 7.68443203 + 1.53109741 127.13658905 7.28326225 7.8558197 127.26994324 8.80378151 13.22381592 127.69602203 12.3616972 + 16.90222168 127.98551178 17.088863373; + setAttr -s 338 ".ed"; + setAttr ".ed[0:165]" 0 1 1 1 52 1 2 3 1 3 53 1 2 42 1 4 5 1 5 43 1 7 73 1 + 4 74 1 6 7 1 9 84 1 6 85 1 8 9 1 8 62 1 10 11 1 11 63 1 10 49 1 12 13 1 13 48 1 12 59 1 + 14 15 1 15 58 1 14 69 1 16 17 1 17 68 1 16 89 1 0 79 1 18 78 1 19 90 1 18 19 1 13 135 1 + 11 137 1 20 46 0 15 153 1 22 56 0 17 151 1 23 66 0 19 149 1 24 92 0 9 139 1 21 65 0 + 7 141 1 25 93 0 5 143 1 26 82 0 3 145 1 27 45 0 0 147 1 28 55 0 29 81 0 30 95 1 31 97 1 + 32 99 1 33 101 1 34 103 1 35 105 1 36 107 1 37 109 1 38 111 1 39 113 1 30 47 1 31 64 1 + 32 94 1 33 83 1 34 44 1 35 54 1 36 80 1 37 91 1 38 67 1 39 57 1 16 60 1 18 61 1 40 50 1 + 41 51 1 40 87 1 41 76 1 12 71 1 42 4 1 43 3 1 44 35 1 45 28 0 46 21 0 47 31 1 48 11 1 + 49 12 1 50 8 1 51 6 1 42 43 1 43 144 1 44 104 1 46 155 1 47 116 1 48 49 1 49 72 1 + 50 86 1 51 75 1 52 2 1 53 0 1 54 36 1 55 29 0 56 20 0 57 30 1 58 13 1 59 14 1 60 40 1 + 61 41 1 52 53 1 53 146 1 54 106 1 56 157 1 57 134 1 58 59 1 59 70 1 60 88 1 61 77 1 + 62 10 1 63 9 1 64 32 1 65 25 0 66 22 0 67 39 1 68 15 1 69 16 1 70 60 1 71 40 1 72 50 1 + 62 63 1 63 138 1 64 98 1 66 159 1 67 132 1 68 69 1 69 70 1 70 71 1 71 72 1 72 62 1 + 73 5 1 74 6 1 75 42 1 76 2 1 77 52 1 78 1 1 79 19 1 80 37 1 81 24 0 82 27 0 83 34 1 + 73 74 1 74 75 1 75 76 1 76 77 1 77 78 1 78 79 1 79 148 1 80 108 1 82 169 1 83 122 1 + 84 7 1 85 8 1 86 51 1 87 41 1 88 61 1 89 18 1 90 17 1 91 38 1 92 23 0; + setAttr ".ed[166:331]" 93 26 0 94 33 1 84 85 1 85 86 1 86 87 1 87 88 1 88 89 1 + 89 90 1 90 150 1 91 110 1 93 171 1 94 120 1 95 156 1 96 47 1 97 174 1 98 173 1 99 172 1 + 100 94 1 101 170 1 102 83 1 103 168 1 104 167 1 105 166 1 106 165 1 107 164 1 108 163 1 + 109 162 1 110 161 1 111 160 1 112 67 1 113 158 1 114 57 1 95 96 1 96 97 1 97 98 1 + 98 99 1 99 100 1 100 101 1 101 102 1 102 103 1 103 104 1 104 105 1 105 106 1 106 107 1 + 107 108 1 108 109 1 109 110 1 110 111 1 111 112 1 112 113 1 113 114 1 114 95 1 115 30 1 + 116 136 1 117 31 1 118 64 1 119 32 1 120 140 1 121 33 1 122 142 1 123 34 1 124 44 1 + 125 35 1 126 54 1 127 36 1 128 80 1 129 37 1 130 91 1 131 38 1 132 152 1 133 39 1 + 134 154 1 115 116 1 116 117 1 117 118 1 118 119 1 119 120 1 120 121 1 121 122 1 122 123 1 + 123 124 1 124 125 1 125 126 1 126 127 1 127 128 1 128 129 1 129 130 1 130 131 1 131 132 1 + 132 133 1 133 134 1 134 115 1 135 115 1 136 48 1 137 117 1 138 118 1 139 119 1 140 84 1 + 141 121 1 142 73 1 143 123 1 144 124 1 145 125 1 146 126 1 147 127 1 148 128 1 149 129 1 + 150 130 1 151 131 1 152 68 1 153 133 1 154 58 1 135 136 1 136 137 1 137 138 1 138 139 1 + 139 140 1 140 141 1 141 142 1 142 143 1 143 144 1 144 145 1 145 146 1 146 147 1 147 148 1 + 148 149 1 149 150 1 150 151 1 151 152 1 152 153 1 153 154 1 154 135 1 155 96 1 156 20 1 + 157 114 1 158 22 1 159 112 1 160 23 1 161 92 1 162 24 1 163 81 1 164 29 1 165 55 1 + 166 28 1 167 45 1 168 27 1 169 102 1 170 26 1 171 100 1 172 25 1 173 65 1 174 21 1 + 155 156 1 156 157 1 157 158 1 158 159 1 159 160 1 160 161 1 161 162 1 162 163 1 163 164 1 + 164 165 1 165 166 1 166 167 1 167 168 1 168 169 1; + setAttr ".ed[332:337]" 169 170 1 170 171 1 171 172 1 172 173 1 173 174 1 174 155 1; + setAttr -s 164 -ch 656 ".fc[0:163]" -type "polyFaces" + f 4 0 1 106 97 + mu 0 4 0 1 2 3 + f 4 4 87 78 -3 + mu 0 4 4 5 6 7 + f 4 7 147 137 9 + mu 0 4 8 9 10 11 + f 4 10 168 158 12 + mu 0 4 12 13 14 15 + f 4 13 126 116 -13 + mu 0 4 15 16 17 12 + f 4 92 84 17 18 + mu 0 4 18 19 20 21 + f 4 111 103 20 21 + mu 0 4 22 23 24 25 + f 4 131 122 23 24 + mu 0 4 26 27 28 29 + f 4 25 173 163 -24 + mu 0 4 28 30 31 29 + f 4 -30 27 152 142 + mu 0 4 32 33 34 35 + f 4 278 259 -19 30 + mu 0 4 36 194 18 21 + f 4 296 277 -22 33 + mu 0 4 177 175 22 25 + f 4 294 275 -25 35 + mu 0 4 179 178 26 29 + f 4 -164 174 293 -36 + mu 0 4 29 31 180 179 + f 4 -117 127 281 -40 + mu 0 4 12 17 192 191 + f 4 282 263 -11 39 + mu 0 4 191 190 13 12 + f 4 284 265 -8 41 + mu 0 4 189 188 9 8 + f 4 -79 88 287 -46 + mu 0 4 7 6 186 185 + f 4 -98 107 289 -48 + mu 0 4 0 3 184 183 + f 4 -143 153 291 -38 + mu 0 4 32 35 182 181 + f 4 198 179 -61 50 + mu 0 4 54 55 56 57 + f 4 -118 128 201 -53 + mu 0 4 58 59 60 61 + f 4 202 183 -63 52 + mu 0 4 61 62 63 58 + f 4 204 185 -64 53 + mu 0 4 64 65 66 67 + f 4 -80 89 207 -56 + mu 0 4 68 69 70 71 + f 4 -99 108 209 -57 + mu 0 4 72 73 74 75 + f 4 -144 154 211 -58 + mu 0 4 76 77 78 79 + f 4 -165 175 213 -59 + mu 0 4 80 81 82 83 + f 4 214 195 -69 58 + mu 0 4 83 84 85 80 + f 4 216 197 -70 59 + mu 0 4 86 87 88 89 + f 4 172 -26 70 113 + mu 0 4 90 30 28 91 + f 4 170 -75 72 94 + mu 0 4 92 93 94 95 + f 4 114 151 -28 71 + mu 0 4 96 97 34 33 + f 4 95 149 -76 73 + mu 0 4 98 99 100 101 + f 4 -123 132 123 -71 + mu 0 4 28 27 102 91 + f 4 134 125 -73 -125 + mu 0 4 103 104 95 94 + f 4 -88 77 5 6 + mu 0 4 6 5 105 106 + f 4 286 -89 -7 43 + mu 0 4 187 186 6 106 + f 4 206 -90 -65 54 + mu 0 4 108 70 69 109 + f 4 -83 -180 199 -52 + mu 0 4 110 56 55 111 + f 4 -84 -260 279 -32 + mu 0 4 112 18 194 193 + f 4 16 -93 83 -15 + mu 0 4 114 19 18 112 + f 4 -86 -126 135 -14 + mu 0 4 15 95 104 16 + f 4 169 -95 85 -159 + mu 0 4 14 92 95 15 + f 4 148 -96 86 -138 + mu 0 4 10 99 98 11 + f 4 -107 96 2 3 + mu 0 4 3 2 4 7 + f 4 288 -108 -4 45 + mu 0 4 185 184 3 7 + f 4 208 -109 -66 55 + mu 0 4 71 74 73 68 + f 4 -102 -198 217 -51 + mu 0 4 57 88 87 54 + f 4 -103 -278 297 -31 + mu 0 4 21 22 175 36 + f 4 19 -112 102 -18 + mu 0 4 20 23 22 21 + f 4 -124 133 124 -105 + mu 0 4 91 102 103 94 + f 4 171 -114 104 74 + mu 0 4 93 90 91 94 + f 4 150 -115 105 75 + mu 0 4 100 97 96 101 + f 4 -127 115 14 15 + mu 0 4 17 16 114 112 + f 4 280 -128 -16 31 + mu 0 4 193 192 17 112 + f 4 200 -129 -62 51 + mu 0 4 111 60 59 110 + f 4 -121 -196 215 -60 + mu 0 4 89 85 84 86 + f 4 -122 -276 295 -34 + mu 0 4 25 26 178 177 + f 4 22 -132 121 -21 + mu 0 4 24 27 26 25 + f 4 -133 -23 -104 112 + mu 0 4 102 27 24 23 + f 4 -134 -113 -20 76 + mu 0 4 103 102 23 20 + f 4 93 -135 -77 -85 + mu 0 4 19 104 103 20 + f 4 -136 -94 -17 -116 + mu 0 4 16 104 19 114 + f 4 -148 136 -6 8 + mu 0 4 10 9 106 105 + f 4 -78 -139 -149 -9 + mu 0 4 105 5 99 10 + f 4 -150 138 -5 -140 + mu 0 4 100 99 5 4 + f 4 -97 -141 -151 139 + mu 0 4 4 2 97 100 + f 4 -152 140 -2 -142 + mu 0 4 34 97 2 1 + f 4 -153 141 -1 26 + mu 0 4 35 34 1 0 + f 4 290 -154 -27 47 + mu 0 4 183 182 35 0 + f 4 210 -155 -67 56 + mu 0 4 75 78 77 72 + f 4 -147 -186 205 -55 + mu 0 4 109 66 65 108 + f 4 -137 -266 285 -44 + mu 0 4 106 9 188 187 + f 4 -169 157 -10 11 + mu 0 4 14 13 8 11 + f 4 -160 -170 -12 -87 + mu 0 4 98 92 14 11 + f 4 -161 -171 159 -74 + mu 0 4 101 93 92 98 + f 4 -162 -172 160 -106 + mu 0 4 96 90 93 101 + f 4 -163 -173 161 -72 + mu 0 4 33 30 90 96 + f 4 -174 162 29 28 + mu 0 4 31 30 33 32 + f 4 292 -175 -29 37 + mu 0 4 181 180 31 32 + f 4 212 -176 -68 57 + mu 0 4 79 82 81 76 + f 4 -168 -184 203 -54 + mu 0 4 67 199 196 64 + f 4 -158 -264 283 -42 + mu 0 4 8 13 190 189 + f 4 90 318 299 32 + mu 0 4 115 116 117 118 + f 4 337 -91 81 -318 + mu 0 4 119 116 115 120 + f 4 -317 336 317 40 + mu 0 4 121 122 119 120 + f 4 335 316 118 -316 + mu 0 4 123 122 121 124 + f 4 176 334 315 42 + mu 0 4 125 126 123 124 + f 4 333 -177 166 -314 + mu 0 4 127 195 200 128 + f 4 155 332 313 44 + mu 0 4 129 130 127 128 + f 4 331 -156 145 -312 + mu 0 4 131 130 129 132 + f 4 -311 330 311 46 + mu 0 4 133 134 131 132 + f 4 329 310 80 -310 + mu 0 4 135 134 133 136 + f 4 -309 328 309 48 + mu 0 4 137 138 135 136 + f 4 327 308 99 -308 + mu 0 4 139 138 137 140 + f 4 -307 326 307 49 + mu 0 4 141 142 139 140 + f 4 325 306 144 -306 + mu 0 4 143 142 141 144 + f 4 -305 324 305 38 + mu 0 4 145 146 143 144 + f 4 323 304 165 -304 + mu 0 4 147 146 145 148 + f 4 129 322 303 36 + mu 0 4 149 150 147 148 + f 4 321 -130 119 -302 + mu 0 4 151 150 149 152 + f 4 109 320 301 34 + mu 0 4 153 154 151 152 + f 4 319 -110 100 -300 + mu 0 4 117 154 153 118 + f 4 91 -239 218 60 + mu 0 4 56 155 156 57 + f 4 -240 -92 82 -221 + mu 0 4 157 155 56 110 + f 4 -222 -241 220 61 + mu 0 4 59 158 157 110 + f 4 -242 221 117 -223 + mu 0 4 159 158 59 58 + f 4 177 -243 222 62 + mu 0 4 63 197 159 58 + f 4 -244 -178 167 -225 + mu 0 4 161 160 199 67 + f 4 156 -245 224 63 + mu 0 4 66 162 161 67 + f 4 -246 -157 146 -227 + mu 0 4 163 162 66 109 + f 4 -228 -247 226 64 + mu 0 4 69 164 163 109 + f 4 -248 227 79 -229 + mu 0 4 165 164 69 68 + f 4 -230 -249 228 65 + mu 0 4 73 166 165 68 + f 4 -250 229 98 -231 + mu 0 4 167 166 73 72 + f 4 -232 -251 230 66 + mu 0 4 77 168 167 72 + f 4 -252 231 143 -233 + mu 0 4 169 168 77 76 + f 4 -234 -253 232 67 + mu 0 4 81 170 169 76 + f 4 -254 233 164 -235 + mu 0 4 171 170 81 80 + f 4 130 -255 234 68 + mu 0 4 85 172 171 80 + f 4 -256 -131 120 -237 + mu 0 4 173 172 85 89 + f 4 110 -257 236 69 + mu 0 4 88 174 173 89 + f 4 -258 -111 101 -219 + mu 0 4 156 174 88 57 + f 4 238 219 -279 258 + mu 0 4 156 155 37 176 + f 4 -280 -220 239 -261 + mu 0 4 113 37 155 157 + f 4 240 -262 -281 260 + mu 0 4 157 158 43 113 + f 4 -282 261 241 -263 + mu 0 4 44 43 158 159 + f 4 242 223 -283 262 + mu 0 4 159 197 198 44 + f 4 -284 -224 243 -265 + mu 0 4 46 45 160 161 + f 4 244 225 -285 264 + mu 0 4 161 162 47 46 + f 4 -286 -226 245 -267 + mu 0 4 107 47 162 163 + f 4 246 -268 -287 266 + mu 0 4 163 164 48 107 + f 4 -288 267 247 -269 + mu 0 4 49 48 164 165 + f 4 248 -270 -289 268 + mu 0 4 165 166 50 49 + f 4 -290 269 249 -271 + mu 0 4 51 50 166 167 + f 4 250 -272 -291 270 + mu 0 4 167 168 52 51 + f 4 -292 271 251 -273 + mu 0 4 53 52 168 169 + f 4 252 -274 -293 272 + mu 0 4 169 170 42 53 + f 4 -294 273 253 -275 + mu 0 4 40 42 170 171 + f 4 254 235 -295 274 + mu 0 4 171 172 41 40 + f 4 -296 -236 255 -277 + mu 0 4 38 41 172 173 + f 4 256 237 -297 276 + mu 0 4 173 174 39 38 + f 4 -298 -238 257 -259 + mu 0 4 176 39 174 156 + f 4 -319 298 -199 178 + mu 0 4 117 116 55 54 + f 4 -218 -301 -320 -179 + mu 0 4 54 87 154 117 + f 4 -321 300 -217 196 + mu 0 4 151 154 87 86 + f 4 -216 -303 -322 -197 + mu 0 4 86 84 150 151 + f 4 -323 302 -215 194 + mu 0 4 147 150 84 83 + f 4 -214 193 -324 -195 + mu 0 4 83 82 146 147 + f 4 -325 -194 -213 192 + mu 0 4 143 146 82 79 + f 4 -212 191 -326 -193 + mu 0 4 79 78 142 143 + f 4 -327 -192 -211 190 + mu 0 4 139 142 78 75 + f 4 -210 189 -328 -191 + mu 0 4 75 74 138 139 + f 4 -329 -190 -209 188 + mu 0 4 135 138 74 71 + f 4 -208 187 -330 -189 + mu 0 4 71 70 134 135 + f 4 -331 -188 -207 186 + mu 0 4 131 134 70 108 + f 4 -206 -313 -332 -187 + mu 0 4 108 65 130 131 + f 4 -333 312 -205 184 + mu 0 4 127 130 65 64 + f 4 -204 -315 -334 -185 + mu 0 4 64 196 195 127 + f 4 -335 314 -203 182 + mu 0 4 123 126 62 61 + f 4 -202 181 -336 -183 + mu 0 4 61 60 122 123 + f 4 -337 -182 -201 180 + mu 0 4 119 122 60 111 + f 4 -200 -299 -338 -181 + mu 0 4 111 55 116 119; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; + setAttr ".dr" 1; +createNode transform -n "eyebrow_l" -p "blue_bomb_grp"; + rename -uid "63D6A38A-4731-DF8F-55A8-C89BD1B981B4"; +createNode mesh -n "eyebrow_lShape" -p "eyebrow_l"; + rename -uid "877AFBEC-43D0-610E-FDF1-5F967AA98CD9"; + setAttr -k off ".v"; + setAttr ".iog[0].og[0].gcl" -type "componentList" 248 "f[0]" "f[1]" "f[2]" "f[3]" "f[4]" "f[5]" "f[6]" "f[7]" "f[8]" "f[9]" "f[10]" "f[11]" "f[12]" "f[13]" "f[14]" "f[15]" "f[16]" "f[17]" "f[18]" "f[19]" "f[20]" "f[21]" "f[22]" "f[23]" "f[24]" "f[25]" "f[26]" "f[27]" "f[28]" "f[29]" "f[30]" "f[31]" "f[32]" "f[33]" "f[34]" "f[35]" "f[36]" "f[37]" "f[38]" "f[39]" "f[40]" "f[41]" "f[42]" "f[43]" "f[44]" "f[45]" "f[46]" "f[47]" "f[48]" "f[49]" "f[50]" "f[51]" "f[52]" "f[53]" "f[54]" "f[55]" "f[56]" "f[57]" "f[58]" "f[59]" "f[60]" "f[61]" "f[62]" "f[63]" "f[64]" "f[65]" "f[66]" "f[67]" "f[68]" "f[69]" "f[70]" "f[71]" "f[72]" "f[73]" "f[74]" "f[75]" "f[76]" "f[77]" "f[78]" "f[79]" "f[80]" "f[81]" "f[82]" "f[83]" "f[84]" "f[85]" "f[86]" "f[87]" "f[88]" "f[89]" "f[90]" "f[91]" "f[92]" "f[93]" "f[94]" "f[95]" "f[96]" "f[97]" "f[98]" "f[99]" "f[100]" "f[101]" "f[102]" "f[103]" "f[104]" "f[105]" "f[106]" "f[107]" "f[108]" "f[109]" "f[110]" "f[111]" "f[112]" "f[113]" "f[114]" "f[115]" "f[116]" "f[117]" "f[118]" "f[119]" "f[120]" "f[121]" "f[122]" "f[123]" "f[124]" "f[125]" "f[126]" "f[127]" "f[128]" "f[129]" "f[130]" "f[131]" "f[132]" "f[133]" "f[134]" "f[135]" "f[136]" "f[137]" "f[138]" "f[139]" "f[140]" "f[141]" "f[142]" "f[143]" "f[144]" "f[145]" "f[146]" "f[147]" "f[148]" "f[149]" "f[150]" "f[151]" "f[152]" "f[153]" "f[154]" "f[155]" "f[156]" "f[157]" "f[158]" "f[159]" "f[160]" "f[161]" "f[162]" "f[163]" "f[164]" "f[165]" "f[166]" "f[167]" "f[168]" "f[169]" "f[170]" "f[171]" "f[172]" "f[173]" "f[174]" "f[175]" "f[176]" "f[177]" "f[178]" "f[179]" "f[180]" "f[181]" "f[182]" "f[183]" "f[184]" "f[185]" "f[186]" "f[187]" "f[188]" "f[189]" "f[190]" "f[191]" "f[192]" "f[193]" "f[194]" "f[195]" "f[196]" "f[197]" "f[198]" "f[199]" "f[200]" "f[201]" "f[202]" "f[203]" "f[204]" "f[205]" "f[206]" "f[207]" "f[208]" "f[209]" "f[210]" "f[211]" "f[212]" "f[213]" "f[214]" "f[215]" "f[216]" "f[217]" "f[218]" "f[219]" "f[220]" "f[221]" "f[222]" "f[223]" "f[224]" "f[225]" "f[226]" "f[227]" "f[228]" "f[229]" "f[230]" "f[231]" "f[232]" "f[233]" "f[234]" "f[235]" "f[236]" "f[237]" "f[238]" "f[239]" "f[240]" "f[241]" "f[242]" "f[243]" "f[244]" "f[245]" "f[246]" "f[247]"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 302 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.73386776 0.36341652 0.73405111 + 0.36543596 0.72913408 0.36470464 0.72874224 0.36216336 0.73511904 0.37445211 0.72866082 + 0.37541232 0.72842944 0.37266558 0.73361266 0.37181026 0.72873563 0.3596715 0.7345221 + 0.36103863 0.73650515 0.36168167 0.73716998 0.36450398 0.67556912 0.36236256 0.67529601 + 0.36455214 0.67257696 0.36415526 0.67282039 0.36155641 0.71715212 0.31627992 0.71786094 + 0.31422278 0.72235608 0.31286749 0.72155094 0.31453177 0.6801737 0.36109835 0.6796487 + 0.36389998 0.67451566 0.35991365 0.67983818 0.35871226 0.66786522 0.31634313 0.6721524 + 0.31706387 0.67241752 0.31887171 0.66819507 0.31775358 0.67570728 0.37083012 0.68037426 + 0.37204814 0.67988479 0.37446892 0.67444974 0.37316042 0.72898978 0.37022185 0.73390293 + 0.36978471 0.67535508 0.3687304 0.67977744 0.36963794 0.67317605 0.37176055 0.67281759 + 0.369111 0.67189741 0.30965382 0.6719076 0.31242228 0.66776466 0.31327105 0.66794127 + 0.31159535 0.72306037 0.30708438 0.72316337 0.3091287 0.71856105 0.30882126 0.71846294 + 0.30558029 0.73768759 0.37015253 0.73700929 0.37352043 0.70541173 0.37045455 0.71353447 + 0.37054792 0.71334529 0.37347668 0.70539421 0.37341118 0.71363896 0.36054385 0.7136752 + 0.36371109 0.70551479 0.36349219 0.70557994 0.36028415 0.70544618 0.35763162 0.71347284 + 0.35796082 0.6960116 0.31636971 0.70358568 0.31606922 0.70320052 0.3184391 0.69583213 + 0.31879151 0.70377862 0.30526346 0.70386094 0.30914837 0.69610679 0.30965587 0.6960907 + 0.30605638 0.71325904 0.37635812 0.70529449 0.37634027 0.72412086 0.36429128 0.7238692 + 0.36141944 0.72353625 0.37312075 0.72397196 0.37042576 0.72358745 0.37591332 0.71384084 + 0.3087661 0.7137264 0.30505526 0.71267998 0.31735873 0.71329534 0.31514037 0.72375923 + 0.35888612 0.71944046 0.36399159 0.71930546 0.36094445 0.71897286 0.37336403 0.71929175 + 0.37052584 0.71894205 0.37618336 0.70936644 0.30888343 0.70926577 0.30500928 0.70843816 + 0.31798494 0.70895541 0.31567925 0.7191515 0.35838336 0.69962299 0.36332613 0.69973826 + 0.36008003 0.6996277 0.37339029 0.69954997 0.37040141 0.69951445 0.37626207 0.69051939 + 0.31015149 0.69047958 0.30646986 0.69047904 0.31905448 0.69055676 0.31672612 0.699624 + 0.3574906 0.69353533 0.36328176 0.69370592 0.36004502 0.6936875 0.37323102 0.69350559 + 0.37026367 0.69353026 0.37601358 0.6847657 0.31073797 0.68470776 0.30709216 0.68494052 + 0.31924787 0.68491477 0.31702971 0.69358921 0.35751605 0.68616152 0.36347649 0.68643761 + 0.36034426 0.68655145 0.37281114 0.68619823 0.37001777 0.68629253 0.37541711 0.67784572 + 0.31154069 0.67778206 0.30813307 0.67825085 0.31929746 0.67809218 0.31724921 0.68629193 + 0.35789818 0.72825181 0.38789794 0.72828144 0.38703096 0.73347104 0.3860257 0.73312712 + 0.38682598 0.72331941 0.38884109 0.72332227 0.38794589 0.71861523 0.38950396 0.71862978 + 0.38858837 0.71279299 0.39006576 0.71282077 0.38911328 0.70460814 0.39053515 0.70465797 + 0.38940942 0.69858825 0.39027211 0.6986708 0.38918534 0.69236195 0.38981426 0.69247693 + 0.38867822 0.68488264 0.38878858 0.68502784 0.38761705 0.67846477 0.38736823 0.67857456 + 0.38609827 0.67363662 0.38504323 0.67396158 0.38601583 0.6604653 0.3680276 0.66141933 + 0.36823478 0.66117859 0.37032497 0.66030192 0.36979955 0.66171449 0.36285964 0.66174322 + 0.36456284 0.66086876 0.36470026 0.66107887 0.36317369 0.67955577 0.34740385 0.67956561 + 0.3480753 0.67492855 0.34908935 0.67511481 0.34842083 0.68573254 0.34635544 0.68576711 + 0.34702161 0.69289327 0.34574124 0.6929369 0.34639737 0.69885451 0.34552068 0.6989004 + 0.34617758 0.70461041 0.34555563 0.70465606 0.34620714 0.7124486 0.34612861 0.71251047 + 0.34676921 0.7180258 0.34680092 0.71809411 0.34742728 0.72254032 0.34756637 0.72261065 + 0.34818751 0.72729987 0.34865618 0.72738594 0.34926575 0.73222983 0.35060695 0.73203838 + 0.35001799 0.74906647 0.3619895 0.74828321 0.36208412 0.74827814 0.3600364 0.74889141 + 0.3600938 0.74946624 0.36922002 0.74892408 0.36670142 0.7497822 0.36630273 0.75011313 + 0.36856747 0.71317375 0.37893826 0.70518434 0.37897891 0.71888238 0.37868765 0.72355622 + 0.37832743 0.72867131 0.37773508 0.73536122 0.37673333 0.73983645 0.36998665 0.73984873 + 0.37418556 0.73894548 0.36055669 0.73926282 0.36365065 0.72855276 0.35752881 0.73429954 + 0.35885715 0.72355944 0.35667938 0.71895164 0.35610211 0.71328878 0.3556146 0.70529747 + 0.35523733 0.69949257 0.35512412 0.69346988 0.35519579 0.68617839 0.35565692 0.67970461 + 0.35654595 0.6742146 0.35766572 0.67043018 0.36397651 0.67044497 0.36126909 0.67080468 + 0.37221053 0.67063373 0.36928546 0.67951089 0.37671083 0.67377603 0.37540624 0.68605906 + 0.3778097 0.69335002 0.37853578 0.69937897 0.37887001 0.71306497 0.38219556 0.70502687 + 0.38230485 0.71880436 0.38185441 0.72349006 0.38139123 0.72859657 0.38068068 0.7351656 + 0.37962741 0.74244565 0.369528 0.74330658 0.37341633 0.74212658 0.35987777 0.74199933 + 0.36286426 0.72822338 0.35482657 0.73376805 0.35612419 0.72327363 0.35390112 0.7186892 + 0.35325265 0.7130487 0.3526988 0.70509654 0.3522523 0.69931126 0.3521716 0.69330698 + 0.35230386 0.68604195 0.35284516 0.67961133 0.35379216 0.67419744 0.35483956 0.66776234 + 0.36396664 0.66750389 0.36134627 0.6678043 0.37227401 0.66791171 0.36929017 0.67915708 + 0.37958288 0.67319334 0.37828338 0.68576139 0.38085556 0.69310045 0.38173783 0.69917333 + 0.38214809 0.71294069 0.38572595 0.70483941 0.38590935 0.71871215 0.38529414 0.72339714 + 0.38473302 0.72845018 0.3839044 0.73453337 0.38285136 0.7456345 0.36832044 0.74660945 + 0.37157547 0.74543822 0.35979053 0.74515933 0.36237291 0.72779995 0.35191932 0.73303854 + 0.35322776; + setAttr ".uvst[0].uvsp[250:301]" 0.72293603 0.35090497 0.71838856 0.35019007 + 0.71277726 0.34957591 0.70486867 0.34906933 0.69910038 0.34901866 0.69311678 0.34920216 + 0.68589801 0.3498002 0.67957038 0.35081071 0.67439651 0.35183659 0.66478336 0.36414966 + 0.66442937 0.36190948 0.66452485 0.37184632 0.66486621 0.36895576 0.67884314 0.38274881 + 0.67295539 0.38150072 0.6854133 0.38420469 0.69279665 0.38522586 0.69892478 0.38570434 + 0.67527276 0.36694539 0.67961138 0.36725605 0.68600821 0.36729363 0.69339675 0.36734748 + 0.69951403 0.3674407 0.70543659 0.36756828 0.7136817 0.36771113 0.71951789 0.36780787 + 0.72424889 0.3678695 0.72925043 0.36789006 0.73399544 0.36785147 0.73784637 0.3673653 + 0.73970127 0.36680236 0.74214083 0.36610818 0.74520051 0.36537096 0.74857783 0.36460346 + 0.74945766 0.36440396 0.7229743 0.31076401 0.71833634 0.31141946 0.71370327 0.31183621 + 0.70931983 0.31211179 0.70386398 0.31235033 0.69610816 0.31258723 0.69056749 0.31312352 + 0.68484455 0.31365794 0.67795938 0.31424174 0.67201382 0.31458989 0.66769862 0.31459725 + 0.66063941 0.36659104 0.66160184 0.36657858 0.66493171 0.36668599 0.66788125 0.3668465 + 0.67052317 0.36693609 0.67265654 0.36696023; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 250 ".vt"; + setAttr ".vt[0:165]" 28.50944519 100.99010468 66.21337891 27.66217041 103.75875854 65.32604218 + 6.45639038 99.99169159 75.084403992 7.43792725 97.37288666 76.36476898 25.2585907 101.042694092 61.73071671 + 5.72172546 97.25595093 70.82269287 6.51635742 95.26889038 71.96567535 25.53523254 98.52465057 63.21937943 + 17.19638062 103.064979553 70.15613556 18.68592834 98.68672943 71.83722687 16.51046753 95.792099 67.41995239 + 15.22438049 99.82299805 65.097953796 28.51895142 102.57271576 65.72837067 18.051879883 101.41085815 71.4648819 + 6.66851807 98.82023621 75.92256927 5.92532349 96.21347046 71.37160492 15.78445435 97.38718414 65.80168915 + 25.6438446 99.72714233 62.20046616 25.77763367 103.94857788 66.1669693 26.78393555 102.51256561 66.9486084 + 26.9750061 100.30422211 67.43688202 24.064407349 97.64041138 63.96873856 23.95172119 98.97822571 62.53590775 + 23.36898804 101.14917755 61.93297195 25.29444885 99.84741211 68.46350861 24.97624207 102.34632874 67.99057007 + 23.9402771 103.9003067 67.0041046143 21.58010864 101.0081710815 62.44975662 22.2315979 98.47169495 63.089099884 + 22.51846313 97.056404114 64.71237183 23.65774536 99.51340485 69.34749603 23.25386047 102.1468277 68.9090271 + 22.23245239 103.75845337 67.79307556 19.94656372 100.77725983 63.045337677 20.60862732 98.11184692 63.70360184 + 21.029708862 96.6492157 65.40138245 21.60978699 99.14733887 70.3995285 21.10679626 101.86191559 69.99377441 + 20.13841248 103.50205231 68.77114105 17.96592712 100.42183685 63.85476303 18.60554504 97.76834106 64.5411377 + 19.16418457 96.25765991 66.24199677 16.56286621 98.29252625 72.85105133 15.84770203 101.042579651 72.50305939 + 15.032470703 102.72011566 71.11179352 13.22566223 99.48161316 66.046134949 13.82110596 97.011550903 66.79506683 + 14.59484863 95.50899506 68.32250214 14.35757446 97.90083313 73.88459778 13.55958557 100.64118958 73.54737091 + 12.80574036 102.31529236 72.099960327 11.19676208 99.079109192 67.07510376 11.80096436 96.65213776 67.84465027 + 12.61091614 95.23184967 69.25434113 11.67280579 97.46411133 75.10302734 10.78489685 100.10871124 74.73951721 + 10.14323425 101.7300415 73.29393768 8.80384827 98.52384186 68.38555145 9.38264465 96.28022766 69.14994049 + 10.2051239 94.96976471 70.36969757 9.26806641 97.21233368 76.045692444 8.3563385 99.52744293 75.62967682 + 7.90429688 100.97505188 74.33530426 6.86880493 97.89899445 69.67603302 7.33164978 96.10993958 70.36875916 + 8.085891724 94.92757416 71.31886292 27.70959473 103.99510956 64.1810379 25.29614258 104.16606903 65.18547058 + 23.41133118 104.059829712 66.020484924 21.69577026 103.86386871 66.80562592 19.60046387 103.58670044 67.76444244 + 16.68045044 103.13452148 69.12173462 14.54512024 102.77098846 70.081878662 12.3359375 102.35661316 71.084129333 + 9.68492126 101.75616455 72.31467438 7.39434814 101.016174316 73.43133545 5.76445007 99.83159637 74.44726563 + 5.77111816 98.25875092 75.51107788 6.9949646 96.61219025 75.93841553 9.12034607 96.41633606 75.45113373 + 11.52941895 96.69892883 74.46188354 14.18190002 97.12214661 73.25063324 16.35655212 97.4963913 72.23270416 + 18.45259094 97.85419464 71.24435425 21.33145142 98.32896423 69.84322357 23.36914063 98.6760025 68.82781982 + 25.015991211 98.98948669 67.97400665 26.73681641 99.43998718 66.97290039 28.50059509 100.24471283 65.65415955 + 29.64077759 102.16029358 64.3159256 16.2902832 102.78853607 68.21585846 19.18560791 103.25217438 66.88762665 + 21.26931763 103.5372467 65.95819855 22.98472595 103.72676086 65.20935822 24.87449646 103.8584137 64.41143036 + 27.37329102 103.74451447 63.42142868 29.38597107 101.62471008 63.59141159 28.05166626 99.76692963 65.16870117 + 26.27461243 98.97107697 66.40872192 24.56964111 98.50666046 67.3646698 22.95481873 98.15642548 68.19528961 + 20.9535675 97.78370667 69.18360901 18.11618042 97.31441498 70.54049683 16.055892944 96.96765137 71.51306915 + 13.91893005 96.60542297 72.51637268 11.30812073 96.21508789 73.7095108 8.9331665 95.98638153 74.69477081 + 6.79949951 96.17292023 75.26451111 5.34393311 97.7540741 74.87689209 5.38447571 99.50931549 73.75263214 + 7.081466675 100.71401978 72.60153198 9.37203979 101.42650604 71.43359375 11.99603271 102.013999939 70.1841507 + 14.18009949 102.42517853 69.17500305 15.86540222 102.14250946 67.1443634 18.7363739 102.59531403 65.86429596 + 20.80126953 102.88637543 64.97594452 22.49938965 103.094787598 64.2664032 24.37480164 103.25330353 63.52846909 + 26.83982849 103.16347504 62.66193771 28.54393005 100.9777298 62.97491074 27.36534119 99.28159332 64.56290436 + 25.63623047 98.48040771 65.67302704 23.96708679 97.99046326 66.56654358 22.38822937 97.62075043 67.35639954 + 20.4316864 97.22628021 68.30536652 17.65943909 96.72593689 69.61774445 15.64402771 96.39541626 70.56970215 + 13.54974365 96.068214417 71.54831696 10.9931488 95.73141479 72.7141571 8.68405151 95.54634857 73.69719696 + 6.63716125 95.74733734 74.32772064 5.067657471 97.14693451 73.96509552 5.070770264 99.0055541992 72.85368347 + 6.79211426 100.1581955 71.59455109 9.055755615 100.82312775 70.3792038 11.63798523 101.38350677 69.11417389 + 13.78723145 101.78357697 68.10083008 15.44502258 101.33948517 66.030288696 18.28234863 101.80339813 64.79515839 + 20.32254028 102.10767365 63.94994736 22.0043945313 102.31802368 63.29217911 23.86573792 102.46270752 62.64328384 + 26.18434143 102.31748199 62.029453278 27.35406494 100.32527924 62.48508072 26.57388306 98.82432556 63.91383743 + 24.93507385 97.98741913 64.87562561 23.31066895 97.46257019 65.70241547 21.77580261 97.059928894 66.45113373 + 19.86399841 96.65279388 67.35409546 17.15130615 96.15111542 68.60839081 15.18266296 95.840065 69.53790283 + 13.1401062 95.53117371 70.49623871 10.65150452 95.21715546 71.64347839 8.41197205 95.0990448 72.61617279 + 6.49815369 95.3453064 73.28476715 5.07043457 96.54790497 72.86564636 4.92799377 98.34429932 71.87033081 + 6.53128052 99.45823669 70.52909088 8.74520874 100.088798523 69.26715851 11.28312683 100.61505127 67.99179077 + 13.39505005 100.99939728 66.97737885 15.19358826 100.26452637 65.17385864 17.97883606 100.7855072 63.96289444 + 19.97880554 101.12542725 63.14943314 21.62998962 101.34954834 62.54006577; + setAttr ".vt[166:249]" 23.4515686 101.4786377 61.99432755 25.46095276 101.31132507 61.72314072 + 25.99848938 99.81681061 62.22075272 25.73979187 98.55831146 63.34105301 24.2383728 97.67098999 64.13581085 + 22.67837524 97.088562012 64.8991394 21.17819214 96.68387604 65.60005188 19.30511475 96.28175354 66.45457458 + 16.63818359 95.81433105 67.64533234 14.715271 95.51546478 68.55562592 12.72053528 95.22962189 69.4930954 + 10.29898071 94.94636536 70.61812592 8.14804077 94.88457489 71.575737 6.48345947 95.2205658 72.22794342 + 5.67179871 96.22449493 71.66629791 5.45707703 97.47640991 70.99959564 6.63032532 98.35059357 69.73410797 + 8.6834259 98.97760773 68.44582367 11.12680054 99.52466583 67.14524841 13.18778992 99.90771484 66.12878418 + 6.50198364 99.39028931 75.59444427 8.079406738 100.32264709 75.13150787 10.45820618 101.027488708 74.16763306 + 13.20043945 101.60086823 72.97350311 15.47061157 102.011054993 71.95592499 17.66741943 102.3480835 70.94787598 + 20.68270874 102.7882843 69.51290894 22.81658936 103.045829773 68.47089386 24.54515076 103.20215607 67.60441589 + 26.38386536 103.28069305 66.64081573 28.2121582 103.19419098 65.54585266 29.18214417 103.35250854 64.021621704 + 29.0088195801 102.99580383 63.05487442 28.25819397 102.23561096 62.38739395 27.13110352 101.30898285 61.99748611 + 25.85655212 100.48442078 61.90150833 25.52684021 100.3000412 61.913311 23.73220825 99.91783142 62.11698532 + 21.93876648 99.57170105 62.61130142 20.28399658 99.26995087 63.23250198 18.27859497 98.91767883 64.083610535 + 15.49319458 98.43847656 65.3780899 13.50906372 98.071815491 66.36048126 11.48428345 97.68978119 67.41316986 + 9.07762146 97.23665619 68.74471283 7.080886841 96.87082672 70.028022766 5.81268311 96.66444397 71.12332153 + 5.52761841 96.76720428 71.37352753 4.81877136 97.34015656 72.46294403 4.8515625 98.00034332275 73.53342438 + 5.1700592 98.57426453 74.43953705 5.62507629 99.00042724609 75.097335815 28.62406921 101.71866608 66.016456604 + 27.010009766 101.34190369 67.31667328 25.28382874 101.010559082 68.42049408 23.60476685 100.73130798 69.35456848 + 21.50888062 100.39816284 70.45010376 18.51745605 99.94078064 71.92415619 16.35070801 99.5592041 72.96555328 + 14.096801758 99.16895294 74.019004822 11.3276062 98.70620728 75.21438599 8.81532288 98.31892395 76.077484131 + 7.0043029785 98.046585083 76.24565125 6.19555664 97.29129028 75.90815735 5.88485718 96.76491547 75.24538422 + 5.68937683 96.23119354 74.30453491 5.66833496 95.76621246 73.18068695 6.0184021 95.61637115 71.99227905 + 6.19084167 95.65322113 71.6884613 7.67698669 95.30850983 70.84738922 9.79820251 95.31852722 69.74576569 + 12.23600769 95.57348633 68.52513885 14.25015259 95.8479538 67.52612305 16.19975281 96.15766144 66.57541656 + 18.95420837 96.56909943 65.35634613 20.90861511 96.96800232 64.51746368 22.48278809 97.41005707 63.86053085 + 24.11959839 98.067016602 63.21206284 25.65626526 99.01776886 62.69543839 25.95925903 99.071029663 62.76753616 + 27.089584351 99.41100311 63.19453049 28.087753296 99.94886017 63.77982712 28.86810303 100.51004791 64.39883423 + 29.25325012 101.049980164 65.017166138; + setAttr -s 496 ".ed"; + setAttr ".ed[0:165]" 0 218 1 1 18 1 2 186 1 3 60 1 1 66 1 2 76 1 4 23 1 + 3 78 1 0 88 1 6 65 1 7 244 1 5 212 1 8 44 1 9 36 1 10 41 1 11 45 1 8 191 1 9 83 1 + 10 239 1 11 162 1 12 196 1 13 223 1 14 228 1 15 234 1 16 207 1 17 202 1 12 19 1 13 43 1 + 14 77 1 15 64 1 16 40 1 17 168 1 18 26 1 19 25 1 20 0 1 21 7 1 22 17 1 23 27 1 18 195 1 + 19 219 1 20 87 1 21 243 1 22 203 1 23 166 1 24 20 1 25 31 1 26 32 1 27 33 1 28 22 1 + 29 21 1 24 220 1 25 194 1 26 68 1 27 204 1 28 242 1 29 171 1 30 24 1 31 37 1 32 38 1 + 33 39 1 34 28 1 35 29 1 30 221 1 31 193 1 32 69 1 33 205 1 34 241 1 35 172 1 36 30 1 + 37 13 1 38 8 1 39 11 1 40 34 1 41 35 1 36 222 1 37 192 1 38 70 1 39 206 1 40 240 1 + 41 173 1 42 9 1 43 49 1 44 50 1 45 51 1 46 16 1 47 10 1 42 224 1 43 190 1 44 72 1 + 45 208 1 46 238 1 47 175 1 48 42 1 49 55 1 50 56 1 51 57 1 52 46 1 53 47 1 48 225 1 + 49 189 1 50 73 1 51 209 1 52 237 1 53 176 1 54 48 1 55 61 1 56 62 1 57 63 1 58 52 1 + 59 53 1 54 226 1 55 188 1 56 74 1 57 210 1 58 236 1 59 177 1 60 54 1 61 14 1 62 2 1 + 63 5 1 64 58 1 65 59 1 60 227 1 61 187 1 62 75 1 63 211 1 64 235 1 65 178 1 66 95 1 + 67 18 1 68 93 1 69 92 1 70 91 1 71 8 1 72 113 1 73 112 1 74 111 1 75 110 1 76 109 1 + 77 108 1 78 107 1 79 60 1 80 54 1 81 48 1 82 42 1 83 102 1 84 36 1 85 30 1 86 24 1 + 87 98 1 88 97 1 89 12 1 66 67 1 67 68 1 68 69 1 69 70 1 70 71 1 71 72 1 72 73 1 73 74 1 + 74 75 1 75 76 1 76 217 1 77 229 1 78 79 1 79 80 1; + setAttr ".ed[166:331]" 80 81 1 81 82 1 82 83 1 83 84 1 84 85 1 85 86 1 86 87 1 + 87 88 1 88 249 1 89 197 1 90 71 1 91 115 1 92 116 1 93 117 1 94 67 1 95 119 1 96 89 1 + 97 121 1 98 122 1 99 86 1 100 85 1 101 84 1 102 126 1 103 82 1 104 81 1 105 80 1 + 106 79 1 107 131 1 108 132 1 109 133 1 110 134 1 111 135 1 112 136 1 113 137 1 90 91 1 + 91 92 1 92 93 1 93 94 1 94 95 1 95 198 1 96 248 1 97 98 1 98 99 1 99 100 1 100 101 1 + 101 102 1 102 103 1 103 104 1 104 105 1 105 106 1 106 107 1 107 230 1 108 216 1 109 110 1 + 110 111 1 111 112 1 112 113 1 113 90 1 114 90 1 115 139 1 116 140 1 117 141 1 118 94 1 + 119 143 1 120 96 1 121 145 1 122 146 1 123 99 1 124 100 1 125 101 1 126 150 1 127 103 1 + 128 104 1 129 105 1 130 106 1 131 155 1 132 156 1 133 157 1 134 158 1 135 159 1 136 160 1 + 137 161 1 114 115 1 115 116 1 116 117 1 117 118 1 118 119 1 119 199 1 120 247 1 121 122 1 + 122 123 1 123 124 1 124 125 1 125 126 1 126 127 1 127 128 1 128 129 1 129 130 1 130 131 1 + 131 231 1 132 215 1 133 134 1 134 135 1 135 136 1 136 137 1 137 114 1 138 114 1 139 163 1 + 140 164 1 141 165 1 142 118 1 143 167 1 144 120 1 145 169 1 146 170 1 147 123 1 148 124 1 + 149 125 1 150 174 1 151 127 1 152 128 1 153 129 1 154 130 1 155 179 1 156 180 1 157 181 1 + 158 182 1 159 183 1 160 184 1 161 185 1 138 139 1 139 140 1 140 141 1 141 142 1 142 143 1 + 143 200 1 144 246 1 145 146 1 146 147 1 147 148 1 148 149 1 149 150 1 150 151 1 151 152 1 + 152 153 1 153 154 1 154 155 1 155 232 1 156 214 1 157 158 1 158 159 1 159 160 1 160 161 1 + 161 138 1 162 138 1 163 39 1 164 33 1 165 27 1 166 142 1 167 4 1 168 144 1 169 7 1 + 170 21 1 171 147 1 172 148 1 173 149 1; + setAttr ".ed[332:495]" 174 10 1 175 151 1 176 152 1 177 153 1 178 154 1 179 6 1 + 180 15 1 181 5 1 182 63 1 183 57 1 184 51 1 185 45 1 162 163 1 163 164 1 164 165 1 + 165 166 1 166 167 1 167 201 1 168 245 1 169 170 1 170 171 1 171 172 1 172 173 1 173 174 1 + 174 175 1 175 176 1 176 177 1 177 178 1 178 179 1 179 233 1 180 213 1 181 182 1 182 183 1 + 183 184 1 184 185 1 185 162 1 186 14 1 187 62 1 188 56 1 189 50 1 190 44 1 191 13 1 + 192 38 1 193 32 1 194 26 1 195 19 1 196 1 1 197 66 1 198 96 1 199 120 1 200 144 1 + 201 168 1 202 4 1 203 23 1 204 28 1 205 34 1 206 40 1 207 11 1 208 46 1 209 52 1 + 210 58 1 211 64 1 212 15 1 213 181 1 214 157 1 215 133 1 216 109 1 217 77 1 186 187 1 + 187 188 1 188 189 1 189 190 1 190 191 1 191 192 1 192 193 1 193 194 1 194 195 1 195 196 1 + 196 197 1 197 198 1 198 199 1 199 200 1 200 201 1 201 202 1 202 203 1 203 204 1 204 205 1 + 205 206 1 206 207 1 207 208 1 208 209 1 209 210 1 210 211 1 211 212 1 212 213 1 213 214 1 + 214 215 1 215 216 1 216 217 1 217 186 1 218 12 1 219 20 1 220 25 1 221 31 1 222 37 1 + 223 9 1 224 43 1 225 49 1 226 55 1 227 61 1 228 3 1 229 78 1 230 108 1 231 132 1 + 232 156 1 233 180 1 234 6 1 235 65 1 236 59 1 237 53 1 238 47 1 239 16 1 240 41 1 + 241 35 1 242 29 1 243 22 1 244 17 1 245 169 1 246 145 1 247 121 1 248 97 1 249 89 1 + 218 219 1 219 220 1 220 221 1 221 222 1 222 223 1 223 224 1 224 225 1 225 226 1 226 227 1 + 227 228 1 228 229 1 229 230 1 230 231 1 231 232 1 232 233 1 233 234 1 234 235 1 235 236 1 + 236 237 1 237 238 1 238 239 1 239 240 1 240 241 1 241 242 1 242 243 1 243 244 1 244 245 1 + 245 246 1 246 247 1 247 248 1 248 249 1 249 218 1; + setAttr -s 248 -ch 992 ".fc[0:247]" -type "polyFaces" + f 4 0 464 433 34 + mu 0 4 0 1 2 3 + f 4 152 129 -2 4 + mu 0 4 4 5 6 7 + f 4 -35 40 173 -9 + mu 0 4 0 3 8 9 + f 4 174 495 -1 8 + mu 0 4 10 11 1 0 + f 4 -443 474 443 -8 + mu 0 4 12 13 14 15 + f 4 41 489 -11 -36 + mu 0 4 16 17 18 19 + f 4 122 473 442 3 + mu 0 4 20 21 13 12 + f 4 164 141 -4 7 + mu 0 4 22 23 20 12 + f 4 480 449 -10 -449 + mu 0 4 24 25 26 27 + f 4 -119 124 161 -6 + mu 0 4 28 29 30 31 + f 4 38 409 378 1 + mu 0 4 6 32 33 7 + f 4 400 369 118 2 + mu 0 4 34 35 29 28 + f 4 162 431 -3 5 + mu 0 4 36 37 34 28 + f 4 125 425 -12 -120 + mu 0 4 38 39 40 41 + f 4 -385 416 385 -7 + mu 0 4 42 43 44 45 + f 4 -379 410 379 -5 + mu 0 4 7 33 46 47 + f 4 405 374 70 16 + mu 0 4 48 49 50 51 + f 4 74 468 437 13 + mu 0 4 52 53 54 55 + f 4 169 146 -14 17 + mu 0 4 56 57 52 55 + f 4 485 454 -15 18 + mu 0 4 58 59 60 61 + f 4 77 420 389 -72 + mu 0 4 62 63 64 65 + f 4 156 133 -71 76 + mu 0 4 66 67 51 50 + f 4 -434 465 -51 44 + mu 0 4 3 2 68 69 + f 4 -377 408 -39 32 + mu 0 4 70 71 32 6 + f 4 153 -53 -33 -130 + mu 0 4 5 72 70 6 + f 4 -386 417 -54 -38 + mu 0 4 45 44 73 74 + f 4 -457 488 -42 -50 + mu 0 4 75 76 17 16 + f 4 172 -41 -45 -149 + mu 0 4 77 8 3 69 + f 4 50 466 -63 56 + mu 0 4 69 68 78 79 + f 4 -376 407 376 46 + mu 0 4 80 81 71 70 + f 4 154 -65 -47 52 + mu 0 4 72 82 80 70 + f 4 53 418 -66 -48 + mu 0 4 74 73 83 84 + f 4 -456 487 456 -62 + mu 0 4 85 86 76 75 + f 4 171 148 -57 -148 + mu 0 4 87 77 69 79 + f 4 62 467 -75 68 + mu 0 4 79 78 53 52 + f 4 -375 406 375 58 + mu 0 4 50 49 81 80 + f 4 155 -77 -59 64 + mu 0 4 82 66 50 80 + f 4 65 419 -78 -60 + mu 0 4 84 83 63 62 + f 4 -455 486 455 -74 + mu 0 4 60 59 86 85 + f 4 170 147 -69 -147 + mu 0 4 57 87 79 52 + f 4 -438 469 -87 80 + mu 0 4 55 54 88 89 + f 4 -373 404 -17 12 + mu 0 4 90 91 48 51 + f 4 157 -89 -13 -134 + mu 0 4 67 92 90 51 + f 4 -390 421 -90 -16 + mu 0 4 65 64 93 94 + f 4 -453 484 -19 -86 + mu 0 4 95 96 58 61 + f 4 168 -18 -81 -145 + mu 0 4 97 56 55 89 + f 4 86 470 -99 92 + mu 0 4 89 88 98 99 + f 4 -372 403 372 82 + mu 0 4 100 101 91 90 + f 4 158 -101 -83 88 + mu 0 4 92 102 100 90 + f 4 89 422 -102 -84 + mu 0 4 94 93 103 104 + f 4 -452 483 452 -98 + mu 0 4 105 106 96 95 + f 4 167 144 -93 -144 + mu 0 4 107 97 89 99 + f 4 98 471 -111 104 + mu 0 4 99 98 108 109 + f 4 -371 402 371 94 + mu 0 4 110 111 101 100 + f 4 159 -113 -95 100 + mu 0 4 102 112 110 100 + f 4 101 423 -114 -96 + mu 0 4 104 103 113 114 + f 4 -451 482 451 -110 + mu 0 4 115 116 106 105 + f 4 166 143 -105 -143 + mu 0 4 117 107 99 109 + f 4 110 472 -123 116 + mu 0 4 109 108 21 20 + f 4 -370 401 370 106 + mu 0 4 29 35 111 110 + f 4 160 -125 -107 112 + mu 0 4 112 30 29 110 + f 4 113 424 -126 -108 + mu 0 4 114 113 39 38 + f 4 -450 481 450 -122 + mu 0 4 26 25 116 115 + f 4 165 142 -117 -142 + mu 0 4 23 117 109 20 + f 4 43 348 325 6 + mu 0 4 118 119 120 121 + f 4 -324 347 -44 37 + mu 0 4 122 123 119 118 + f 4 -323 346 323 47 + mu 0 4 124 125 123 122 + f 4 -322 345 322 59 + mu 0 4 126 127 125 124 + f 4 19 344 321 71 + mu 0 4 128 129 127 126 + f 4 -344 367 -20 15 + mu 0 4 130 131 129 128 + f 4 -343 366 343 83 + mu 0 4 132 133 131 130 + f 4 -342 365 342 95 + mu 0 4 134 135 133 132 + f 4 -341 364 341 107 + mu 0 4 136 137 135 134 + f 4 363 340 119 -340 + mu 0 4 138 137 136 139 + f 4 426 395 339 11 + mu 0 4 140 141 142 143 + f 4 361 479 448 -338 + mu 0 4 144 145 146 147 + f 4 127 360 337 9 + mu 0 4 148 149 150 151 + f 4 115 359 -128 121 + mu 0 4 152 153 149 148 + f 4 103 358 -116 109 + mu 0 4 154 155 153 152 + f 4 91 357 -104 97 + mu 0 4 156 157 155 154 + f 4 -333 356 -92 85 + mu 0 4 158 159 157 156 + f 4 79 355 332 14 + mu 0 4 160 161 159 158 + f 4 67 354 -80 73 + mu 0 4 162 163 161 160 + f 4 55 353 -68 61 + mu 0 4 164 165 163 162 + f 4 -329 352 -56 49 + mu 0 4 166 167 165 164 + f 4 351 328 35 -328 + mu 0 4 168 167 166 169 + f 4 490 459 327 10 + mu 0 4 170 171 172 173 + f 4 349 415 384 -326 + mu 0 4 174 175 176 177 + f 4 -201 176 -157 132 + mu 0 4 178 179 67 66 + f 4 -202 -133 -156 131 + mu 0 4 180 178 66 82 + f 4 -203 -132 -155 130 + mu 0 4 181 180 82 72 + f 4 -204 -131 -154 -181 + mu 0 4 182 181 72 5 + f 4 -205 180 -153 128 + mu 0 4 183 182 5 4 + f 4 -380 411 -206 -129 + mu 0 4 47 46 184 185 + f 4 -463 494 -175 150 + mu 0 4 186 187 11 10 + f 4 -174 149 -208 -151 + mu 0 4 9 8 188 189 + f 4 -209 -150 -173 -186 + mu 0 4 190 188 8 77 + f 4 -210 185 -172 -187 + mu 0 4 191 190 77 87 + f 4 -211 186 -171 -188 + mu 0 4 192 191 87 57 + f 4 -212 187 -170 145 + mu 0 4 193 192 57 56 + f 4 -213 -146 -169 -190 + mu 0 4 194 193 56 97 + f 4 -214 189 -168 -191 + mu 0 4 195 194 97 107 + f 4 -215 190 -167 -192 + mu 0 4 196 195 107 117 + f 4 -216 191 -166 -193 + mu 0 4 197 196 117 23 + f 4 -217 192 -165 140 + mu 0 4 198 197 23 22 + f 4 -444 475 -218 -141 + mu 0 4 15 14 199 200 + f 4 -399 430 -163 138 + mu 0 4 201 202 37 36 + f 4 -162 137 -220 -139 + mu 0 4 31 30 203 204 + f 4 -221 -138 -161 136 + mu 0 4 205 203 30 112 + f 4 -222 -137 -160 135 + mu 0 4 206 205 112 102 + f 4 -223 -136 -159 134 + mu 0 4 207 206 102 92 + f 4 -224 -135 -158 -177 + mu 0 4 179 207 92 67 + f 4 -249 224 200 177 + mu 0 4 208 209 179 178 + f 4 -250 -178 201 178 + mu 0 4 210 208 178 180 + f 4 -251 -179 202 179 + mu 0 4 211 210 180 181 + f 4 -252 -180 203 -229 + mu 0 4 212 211 181 182 + f 4 -253 228 204 181 + mu 0 4 213 212 182 183 + f 4 205 412 -254 -182 + mu 0 4 185 184 214 215 + f 4 -462 493 462 183 + mu 0 4 216 217 187 186 + f 4 207 184 -256 -184 + mu 0 4 189 188 218 219 + f 4 -257 -185 208 -234 + mu 0 4 220 218 188 190 + f 4 -258 233 209 -235 + mu 0 4 221 220 190 191 + f 4 -259 234 210 -236 + mu 0 4 222 221 191 192 + f 4 -260 235 211 188 + mu 0 4 223 222 192 193 + f 4 -261 -189 212 -238 + mu 0 4 224 223 193 194 + f 4 -262 237 213 -239 + mu 0 4 225 224 194 195 + f 4 -263 238 214 -240 + mu 0 4 226 225 195 196 + f 4 -264 239 215 -241 + mu 0 4 227 226 196 197 + f 4 -265 240 216 193 + mu 0 4 228 227 197 198 + f 4 217 476 -266 -194 + mu 0 4 200 199 229 230 + f 4 -398 429 398 195 + mu 0 4 231 232 202 201 + f 4 219 196 -268 -196 + mu 0 4 204 203 233 234 + f 4 -269 -197 220 197 + mu 0 4 235 233 203 205 + f 4 -270 -198 221 198 + mu 0 4 236 235 205 206 + f 4 -271 -199 222 199 + mu 0 4 237 236 206 207 + f 4 -272 -200 223 -225 + mu 0 4 209 237 207 179 + f 4 -297 272 248 225 + mu 0 4 238 239 209 208 + f 4 -298 -226 249 226 + mu 0 4 240 238 208 210 + f 4 -299 -227 250 227 + mu 0 4 241 240 210 211 + f 4 -300 -228 251 -277 + mu 0 4 242 241 211 212 + f 4 -301 276 252 229 + mu 0 4 243 242 212 213 + f 4 253 413 -302 -230 + mu 0 4 215 214 244 245 + f 4 -461 492 461 231 + mu 0 4 246 247 217 216 + f 4 255 232 -304 -232 + mu 0 4 219 218 248 249 + f 4 -305 -233 256 -282 + mu 0 4 250 248 218 220 + f 4 -306 281 257 -283 + mu 0 4 251 250 220 221 + f 4 -307 282 258 -284 + mu 0 4 252 251 221 222 + f 4 -308 283 259 236 + mu 0 4 253 252 222 223 + f 4 -309 -237 260 -286 + mu 0 4 254 253 223 224 + f 4 -310 285 261 -287 + mu 0 4 255 254 224 225 + f 4 -311 286 262 -288 + mu 0 4 256 255 225 226 + f 4 -312 287 263 -289 + mu 0 4 257 256 226 227 + f 4 -313 288 264 241 + mu 0 4 258 257 227 228 + f 4 265 477 -314 -242 + mu 0 4 230 229 259 260 + f 4 -397 428 397 243 + mu 0 4 261 262 232 231 + f 4 267 244 -316 -244 + mu 0 4 234 233 263 264 + f 4 -317 -245 268 245 + mu 0 4 265 263 233 235 + f 4 -318 -246 269 246 + mu 0 4 266 265 235 236 + f 4 -319 -247 270 247 + mu 0 4 267 266 236 237 + f 4 -320 -248 271 -273 + mu 0 4 239 267 237 209 + f 4 -345 320 296 273 + mu 0 4 127 129 239 238 + f 4 -346 -274 297 274 + mu 0 4 125 127 238 240 + f 4 -347 -275 298 275 + mu 0 4 123 125 240 241 + f 4 -348 -276 299 -325 + mu 0 4 119 123 241 242 + f 4 -349 324 300 277 + mu 0 4 120 119 242 243 + f 4 301 414 -350 -278 + mu 0 4 245 244 175 174 + f 4 -460 491 460 279 + mu 0 4 172 171 247 246 + f 4 303 280 -352 -280 + mu 0 4 249 248 167 168 + f 4 -353 -281 304 -330 + mu 0 4 165 167 248 250 + f 4 -354 329 305 -331 + mu 0 4 163 165 250 251 + f 4 -355 330 306 -332 + mu 0 4 161 163 251 252 + f 4 -356 331 307 284 + mu 0 4 159 161 252 253 + f 4 -357 -285 308 -334 + mu 0 4 157 159 253 254 + f 4 -358 333 309 -335 + mu 0 4 155 157 254 255 + f 4 -359 334 310 -336 + mu 0 4 153 155 255 256 + f 4 -360 335 311 -337 + mu 0 4 149 153 256 257 + f 4 -361 336 312 289 + mu 0 4 150 149 257 258 + f 4 313 478 -362 -290 + mu 0 4 260 259 145 144 + f 4 -396 427 396 291 + mu 0 4 142 141 262 261 + f 4 315 292 -364 -292 + mu 0 4 264 263 137 138 + f 4 -365 -293 316 293 + mu 0 4 135 137 263 265 + f 4 -366 -294 317 294 + mu 0 4 133 135 265 266 + f 4 -367 -295 318 295 + mu 0 4 131 133 266 267 + f 4 -368 -296 319 -321 + mu 0 4 129 131 267 239 + f 4 -118 123 -401 368 + mu 0 4 268 269 35 34 + f 4 -402 -124 -106 111 + mu 0 4 111 35 269 270 + f 4 -403 -112 -94 99 + mu 0 4 101 111 270 271 + f 4 -404 -100 -82 87 + mu 0 4 91 101 271 272 + f 4 -405 -88 -28 -374 + mu 0 4 48 91 272 273 + f 4 -70 75 -406 373 + mu 0 4 273 274 49 48 + f 4 -407 -76 -58 63 + mu 0 4 81 49 274 275 + f 4 -408 -64 -46 51 + mu 0 4 71 81 275 276 + f 4 -409 -52 -34 -378 + mu 0 4 32 71 276 277 + f 4 -410 377 -27 20 + mu 0 4 33 32 277 278 + f 4 -411 -21 -152 175 + mu 0 4 46 33 278 279 + f 4 -412 -176 -183 -381 + mu 0 4 184 46 279 280 + f 4 -413 380 -231 -382 + mu 0 4 214 184 280 281 + f 4 -414 381 -279 -383 + mu 0 4 244 214 281 282 + f 4 -415 382 -327 -384 + mu 0 4 175 244 282 283 + f 4 -416 383 -32 25 + mu 0 4 176 175 283 284 + f 4 -417 -26 -37 42 + mu 0 4 44 43 285 286 + f 4 -418 -43 -49 -387 + mu 0 4 73 44 286 287 + f 4 -419 386 -61 -388 + mu 0 4 83 73 287 288 + f 4 -420 387 -73 -389 + mu 0 4 63 83 288 289 + f 4 -421 388 -31 24 + mu 0 4 64 63 289 290 + f 4 -422 -25 -85 -391 + mu 0 4 93 64 290 291 + f 4 -423 390 -97 -392 + mu 0 4 103 93 291 292 + f 4 -424 391 -109 -393 + mu 0 4 113 103 292 293 + f 4 -425 392 -121 -394 + mu 0 4 39 113 293 294 + f 4 -426 393 -30 -395 + mu 0 4 40 39 294 295 + f 4 -339 362 -427 394 + mu 0 4 296 297 141 140 + f 4 -428 -363 -291 314 + mu 0 4 262 141 297 298 + f 4 -429 -315 -243 266 + mu 0 4 232 262 298 299 + f 4 -430 -267 -195 218 + mu 0 4 202 232 299 300 + f 4 -431 -219 -140 -400 + mu 0 4 37 202 300 301 + f 4 -432 399 -29 -369 + mu 0 4 34 37 301 268 + f 4 -465 432 26 39 + mu 0 4 2 1 278 277 + f 4 -466 -40 33 -435 + mu 0 4 68 2 277 276 + f 4 -467 434 45 -436 + mu 0 4 78 68 276 275 + f 4 -468 435 57 -437 + mu 0 4 53 78 275 274 + f 4 -469 436 69 21 + mu 0 4 54 53 274 273 + f 4 -470 -22 27 -439 + mu 0 4 88 54 273 272 + f 4 -471 438 81 -440 + mu 0 4 98 88 272 271 + f 4 -472 439 93 -441 + mu 0 4 108 98 271 270 + f 4 -473 440 105 -442 + mu 0 4 21 108 270 269 + f 4 -474 441 117 22 + mu 0 4 13 21 269 268 + f 4 -475 -23 28 163 + mu 0 4 14 13 268 301 + f 4 -476 -164 139 -445 + mu 0 4 199 14 301 300 + f 4 -477 444 194 -446 + mu 0 4 229 199 300 299 + f 4 -478 445 242 -447 + mu 0 4 259 229 299 298 + f 4 -479 446 290 -448 + mu 0 4 145 259 298 297 + f 4 -480 447 338 23 + mu 0 4 146 145 297 296 + f 4 29 126 -481 -24 + mu 0 4 295 294 25 24 + f 4 -482 -127 120 114 + mu 0 4 116 25 294 293 + f 4 -483 -115 108 102 + mu 0 4 106 116 293 292 + f 4 -484 -103 96 90 + mu 0 4 96 106 292 291 + f 4 -485 -91 84 -454 + mu 0 4 58 96 291 290 + f 4 30 78 -486 453 + mu 0 4 290 289 59 58 + f 4 -487 -79 72 66 + mu 0 4 86 59 289 288 + f 4 -488 -67 60 54 + mu 0 4 76 86 288 287 + f 4 -489 -55 48 -458 + mu 0 4 17 76 287 286 + f 4 -490 457 36 -459 + mu 0 4 18 17 286 285 + f 4 31 350 -491 458 + mu 0 4 284 283 171 170 + f 4 -492 -351 326 302 + mu 0 4 247 171 283 282 + f 4 -493 -303 278 254 + mu 0 4 217 247 282 281 + f 4 -494 -255 230 206 + mu 0 4 187 217 281 280 + f 4 -495 -207 182 -464 + mu 0 4 11 187 280 279 + f 4 -496 463 151 -433 + mu 0 4 1 11 279 278; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; +createNode transform -n "eyebrow_r" -p "blue_bomb_grp"; + rename -uid "5FF1E5B6-445E-F71A-6305-4CA0BBEDE8F2"; +createNode mesh -n "eyebrow_rShape" -p "eyebrow_r"; + rename -uid "E41747E1-475C-0D38-8A04-DA9CB037B5CB"; + setAttr -k off ".v"; + setAttr ".iog[0].og[0].gcl" -type "componentList" 248 "f[0]" "f[1]" "f[2]" "f[3]" "f[4]" "f[5]" "f[6]" "f[7]" "f[8]" "f[9]" "f[10]" "f[11]" "f[12]" "f[13]" "f[14]" "f[15]" "f[16]" "f[17]" "f[18]" "f[19]" "f[20]" "f[21]" "f[22]" "f[23]" "f[24]" "f[25]" "f[26]" "f[27]" "f[28]" "f[29]" "f[30]" "f[31]" "f[32]" "f[33]" "f[34]" "f[35]" "f[36]" "f[37]" "f[38]" "f[39]" "f[40]" "f[41]" "f[42]" "f[43]" "f[44]" "f[45]" "f[46]" "f[47]" "f[48]" "f[49]" "f[50]" "f[51]" "f[52]" "f[53]" "f[54]" "f[55]" "f[56]" "f[57]" "f[58]" "f[59]" "f[60]" "f[61]" "f[62]" "f[63]" "f[64]" "f[65]" "f[66]" "f[67]" "f[68]" "f[69]" "f[70]" "f[71]" "f[72]" "f[73]" "f[74]" "f[75]" "f[76]" "f[77]" "f[78]" "f[79]" "f[80]" "f[81]" "f[82]" "f[83]" "f[84]" "f[85]" "f[86]" "f[87]" "f[88]" "f[89]" "f[90]" "f[91]" "f[92]" "f[93]" "f[94]" "f[95]" "f[96]" "f[97]" "f[98]" "f[99]" "f[100]" "f[101]" "f[102]" "f[103]" "f[104]" "f[105]" "f[106]" "f[107]" "f[108]" "f[109]" "f[110]" "f[111]" "f[112]" "f[113]" "f[114]" "f[115]" "f[116]" "f[117]" "f[118]" "f[119]" "f[120]" "f[121]" "f[122]" "f[123]" "f[124]" "f[125]" "f[126]" "f[127]" "f[128]" "f[129]" "f[130]" "f[131]" "f[132]" "f[133]" "f[134]" "f[135]" "f[136]" "f[137]" "f[138]" "f[139]" "f[140]" "f[141]" "f[142]" "f[143]" "f[144]" "f[145]" "f[146]" "f[147]" "f[148]" "f[149]" "f[150]" "f[151]" "f[152]" "f[153]" "f[154]" "f[155]" "f[156]" "f[157]" "f[158]" "f[159]" "f[160]" "f[161]" "f[162]" "f[163]" "f[164]" "f[165]" "f[166]" "f[167]" "f[168]" "f[169]" "f[170]" "f[171]" "f[172]" "f[173]" "f[174]" "f[175]" "f[176]" "f[177]" "f[178]" "f[179]" "f[180]" "f[181]" "f[182]" "f[183]" "f[184]" "f[185]" "f[186]" "f[187]" "f[188]" "f[189]" "f[190]" "f[191]" "f[192]" "f[193]" "f[194]" "f[195]" "f[196]" "f[197]" "f[198]" "f[199]" "f[200]" "f[201]" "f[202]" "f[203]" "f[204]" "f[205]" "f[206]" "f[207]" "f[208]" "f[209]" "f[210]" "f[211]" "f[212]" "f[213]" "f[214]" "f[215]" "f[216]" "f[217]" "f[218]" "f[219]" "f[220]" "f[221]" "f[222]" "f[223]" "f[224]" "f[225]" "f[226]" "f[227]" "f[228]" "f[229]" "f[230]" "f[231]" "f[232]" "f[233]" "f[234]" "f[235]" "f[236]" "f[237]" "f[238]" "f[239]" "f[240]" "f[241]" "f[242]" "f[243]" "f[244]" "f[245]" "f[246]" "f[247]"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 302 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.72352457 0.42254478 0.72862983 + 0.421211 0.7282781 0.42375809 0.72337306 0.42456681 0.72244728 0.43359834 0.723912 + 0.4309333 0.72910792 0.43170685 0.72891974 0.43445683 0.72283286 0.42017767 0.72859716 + 0.41871944 0.72085994 0.42085177 0.72023988 0.42368421 0.78179967 0.42057452 0.78453541 + 0.41972536 0.78481966 0.42232016 0.78210717 0.42275959 0.59661138 0.35399115 0.59206259 + 0.35268191 0.59109849 0.35110441 0.59570473 0.35201323 0.77717578 0.41938269 0.77774477 + 0.42217582 0.78281456 0.41810933 0.77747381 0.41699159 0.64566785 0.34923029 0.64547759 + 0.35066628 0.6413849 0.35219225 0.6414718 0.35036716 0.78179443 0.42904332 0.78308845 + 0.43135375 0.77767456 0.43274727 0.77714717 0.43033439 0.7235899 0.42891264 0.72850925 + 0.42927229 0.78211367 0.42693835 0.77770615 0.4279151 0.78433996 0.42993394 0.78465688 + 0.42727911 0.64100033 0.34296769 0.64512753 0.34451273 0.64546722 0.34616309 0.64126116 + 0.3457239 0.58983165 0.34541801 0.59425974 0.34347117 0.59447932 0.34670615 0.58992922 + 0.34746253 0.72054291 0.43269694 0.7198115 0.42934012 0.75208789 0.42913401 0.75215185 + 0.43209004 0.74420285 0.43228054 0.74396759 0.42935506 0.74370575 0.4193539 0.75175977 + 0.41896752 0.7518754 0.42217416 0.74371934 0.42252129 0.7518518 0.4163132 0.74383122 + 0.41676858 0.61765915 0.35201147 0.61807483 0.35440406 0.61070734 0.35477448 0.61009216 + 0.35245365 0.60884255 0.34171867 0.61657113 0.34175533 0.61690736 0.34533915 0.60914081 + 0.34559298 0.74433434 0.43516022 0.75229752 0.4350172 0.73349059 0.4203904 0.73328418 + 0.42326581 0.73400766 0.43208495 0.73352963 0.42939717 0.73400027 0.43487793 0.59892219 + 0.34248504 0.59917146 0.34618926 0.60116768 0.35462704 0.6003381 0.35247958 0.73356056 + 0.41785571 0.73804629 0.41984361 0.73795927 0.42289248 0.73857427 0.43225634 0.73821074 + 0.42942351 0.73864931 0.43507484 0.60335684 0.34200275 0.60363585 0.34586817 0.60545039 + 0.35483509 0.6047101 0.3525911 0.73815984 0.41728044 0.75759757 0.41867164 0.75776386 + 0.4219155 0.75791728 0.43197858 0.75794804 0.42898881 0.75807554 0.43484822 0.62219572 + 0.3416177 0.62251639 0.34528556 0.62342793 0.35414186 0.62312281 0.35183227 0.75767106 + 0.41608071 0.7636286 0.41854188 0.76385003 0.42177555 0.76385421 0.43172607 0.76398945 + 0.42875618 0.76405507 0.43450582 0.6280008 0.34167212 0.62829995 0.3453061 0.62895882 + 0.35379225 0.62876725 0.35158223 0.76370555 0.41601139 0.77090079 0.41872698 0.77122605 + 0.42185453 0.77098274 0.43119425 0.77129203 0.42839563 0.77128243 0.43379587 0.63499504 + 0.34203023 0.63526523 0.34542769 0.63562119 0.35318688 0.63557863 0.35113296 0.77100796 + 0.41627887 0.72952473 0.44693431 0.72463328 0.44593912 0.72427678 0.44514436 0.72948152 + 0.4460679 0.7344712 0.4477998 0.73445433 0.44690475 0.73918509 0.44838861 0.73915625 + 0.44747338 0.74501532 0.4488588 0.74497265 0.44790688 0.75320637 0.44919959 0.75313896 + 0.44807479 0.7592212 0.44884208 0.75912178 0.44775674 0.76543951 0.44828659 0.76530677 + 0.4471525 0.77290177 0.44714367 0.77273834 0.44597462 0.77929664 0.44562292 0.77916694 + 0.44435483 0.78408766 0.44322252 0.78377807 0.4442001 0.79699063 0.42600214 0.79718161 + 0.4277713 0.79631341 0.42831036 0.79603994 0.42622426 0.7956605 0.42085436 0.79630101 + 0.4211584 0.79653502 0.42268151 0.79565847 0.4225578 0.77757847 0.40568009 0.78203487 + 0.40662718 0.78223163 0.40729269 0.77757919 0.40635157 0.77138591 0.40472871 0.77136177 + 0.40539536 0.76421624 0.40422705 0.76418298 0.40488377 0.75825214 0.40410012 0.75821662 + 0.40475771 0.75249732 0.40422556 0.75246197 0.40487769 0.7446689 0.40492171 0.74461716 + 0.40556329 0.73910278 0.40568182 0.73904443 0.40630913 0.73460084 0.40651828 0.73454034 + 0.40714043 0.72985893 0.40768299 0.72978252 0.40829381 0.72496027 0.4097113 0.72514248 + 0.4091194 0.708305 0.42135811 0.70845014 0.41945991 0.70906234 0.41939279 0.70908976 + 0.4214403 0.70801973 0.42859393 0.70736253 0.42795172 0.70765758 0.4256821 0.7085219 + 0.42606711 0.74446011 0.43773872 0.7524491 0.43765378 0.73874831 0.43757784 0.73406947 + 0.4372912 0.72894573 0.43677941 0.72224098 0.43588299 0.71771437 0.43340683 0.71766031 + 0.42920825 0.71840221 0.41976544 0.71813381 0.42286402 0.72302103 0.41799298 0.72874618 + 0.41657415 0.73372561 0.41564614 0.73832375 0.41499633 0.74397826 0.41441977 0.75196278 + 0.41391689 0.75776529 0.41371244 0.7637884 0.41368952 0.77108622 0.4140361 0.77757329 + 0.41482341 0.78308022 0.4158569 0.78690606 0.4194009 0.78696334 0.42210776 0.78671807 + 0.4303467 0.78684312 0.42741925 0.78379726 0.43358877 0.77808356 0.4349831 0.77155346 + 0.43618453 0.76427495 0.43702492 0.75825197 0.43745375 0.74461997 0.44099385 0.75265872 + 0.44097686 0.73887599 0.44074309 0.73418373 0.44035357 0.72906673 0.43972343 0.72248203 + 0.43877357 0.71424472 0.43269235 0.7150442 0.4287909 0.71521068 0.41913688 0.7153852 + 0.42212096 0.72350937 0.41525206 0.72903293 0.41386706 0.73396754 0.41286373 0.73854131 + 0.41214317 0.74417233 0.41150057 0.75211668 0.41092908 0.75790006 0.41075742 0.76390588 + 0.41079536 0.77117848 0.41122252 0.77762324 0.41206846 0.78305298 0.41303077 0.78984815 + 0.41943198 0.78963077 0.42205608 0.7897191 0.43036312 0.78956485 0.42738131 0.78442502 + 0.4364565 0.77848232 0.43784928 0.77189893 0.43922535 0.76457465 0.44022268 0.75850904 + 0.44072819 0.74479961 0.44452187 0.75290269 0.44457799 0.73902225 0.44418085 0.7343291 + 0.44369352 0.72926372 0.44294441 0.7231648 0.44198713 0.7109133 0.43090394 0.7118367 + 0.42763388 0.71189809 0.41910204 0.71221775 0.42167965 0.7241931 0.41234452 0.72941047 + 0.41095358; + setAttr ".uvst[0].uvsp[250:301]" 0.73425788 0.40986267 0.73879355 0.40907621 + 0.7443946 0.4083738 0.75229442 0.40774289 0.75806141 0.40760159 0.76404727 0.40769106 + 0.77127457 0.40817568 0.77761739 0.40908673 0.78280675 0.41003129 0.79293108 0.41994691 + 0.79261231 0.42219236 0.7929914 0.42988402 0.79260474 0.42699918 0.78471339 0.43966973 + 0.77884591 0.44100994 0.77229935 0.44256866 0.76493299 0.44370556 0.75881326 0.44428015 + 0.78216791 0.42515221 0.77783477 0.42553088 0.77143931 0.42566878 0.76405251 0.42583865 + 0.75793743 0.42602789 0.75201762 0.42624849 0.74377578 0.42652094 0.73794192 0.42670947 + 0.73321247 0.42684555 0.72821194 0.42694491 0.72346687 0.42698115 0.71960878 0.42655584 + 0.71774518 0.42602226 0.71529502 0.42536673 0.71222401 0.42467797 0.70883501 0.42396399 + 0.70795208 0.42377844 0.59495723 0.34926993 0.59027737 0.34907153 0.5996089 0.34923121 + 0.6039983 0.34907645 0.60945117 0.34877992 0.61719292 0.34825659 0.62275946 0.34824803 + 0.6285072 0.34821975 0.63541651 0.34812689 0.64136755 0.34789148 0.64566278 0.34747648 + 0.796794 0.42456847 0.79583144 0.4245711 0.79250365 0.42473072 0.78955704 0.42493749 + 0.78691685 0.42506847 0.78478408 0.42512602; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 250 ".vt"; + setAttr ".vt[0:165]" -28.50944519 100.99010468 66.21337891 -27.66217041 103.75875854 65.32604218 + -6.45639038 99.99169159 75.084403992 -7.43792725 97.37288666 76.36476898 -25.2585907 101.042694092 61.73071671 + -5.72172546 97.25595093 70.82269287 -6.51635742 95.26889038 71.96567535 -25.53523254 98.52465057 63.21937943 + -17.19638062 103.064979553 70.15613556 -18.68592834 98.68672943 71.83722687 -16.51046753 95.792099 67.41995239 + -15.22438049 99.82299805 65.097953796 -28.51895142 102.57271576 65.72837067 -18.051879883 101.41085815 71.4648819 + -6.66851807 98.82023621 75.92256927 -5.92532349 96.21347046 71.37160492 -15.78445435 97.38718414 65.80168915 + -25.6438446 99.72714233 62.20046616 -25.77763367 103.94857788 66.1669693 -26.78393555 102.51256561 66.9486084 + -26.9750061 100.30422211 67.43688202 -24.064407349 97.64041138 63.96873856 -23.95172119 98.97822571 62.53590775 + -23.36898804 101.14917755 61.93297195 -25.29444885 99.84741211 68.46350861 -24.97624207 102.34632874 67.99057007 + -23.9402771 103.9003067 67.0041046143 -21.58010864 101.0081710815 62.44975662 -22.2315979 98.47169495 63.089099884 + -22.51846313 97.056404114 64.71237183 -23.65774536 99.51340485 69.34749603 -23.25386047 102.1468277 68.9090271 + -22.23245239 103.75845337 67.79307556 -19.94656372 100.77725983 63.045337677 -20.60862732 98.11184692 63.70360184 + -21.029708862 96.6492157 65.40138245 -21.60978699 99.14733887 70.3995285 -21.10679626 101.86191559 69.99377441 + -20.13841248 103.50205231 68.77114105 -17.96592712 100.42183685 63.85476303 -18.60554504 97.76834106 64.5411377 + -19.16418457 96.25765991 66.24199677 -16.56286621 98.29252625 72.85105133 -15.84770203 101.042579651 72.50305939 + -15.032470703 102.72011566 71.11179352 -13.22566223 99.48161316 66.046134949 -13.82110596 97.011550903 66.79506683 + -14.59484863 95.50899506 68.32250214 -14.35757446 97.90083313 73.88459778 -13.55958557 100.64118958 73.54737091 + -12.80574036 102.31529236 72.099960327 -11.19676208 99.079109192 67.07510376 -11.80096436 96.65213776 67.84465027 + -12.61091614 95.23184967 69.25434113 -11.67280579 97.46411133 75.10302734 -10.78489685 100.10871124 74.73951721 + -10.14323425 101.7300415 73.29393768 -8.80384827 98.52384186 68.38555145 -9.38264465 96.28022766 69.14994049 + -10.2051239 94.96976471 70.36969757 -9.26806641 97.21233368 76.045692444 -8.3563385 99.52744293 75.62967682 + -7.90429688 100.97505188 74.33530426 -6.86880493 97.89899445 69.67603302 -7.33164978 96.10993958 70.36875916 + -8.085891724 94.92757416 71.31886292 -27.70959473 103.99510956 64.1810379 -25.29614258 104.16606903 65.18547058 + -23.41133118 104.059829712 66.020484924 -21.69577026 103.86386871 66.80562592 -19.60046387 103.58670044 67.76444244 + -16.68045044 103.13452148 69.12173462 -14.54512024 102.77098846 70.081878662 -12.3359375 102.35661316 71.084129333 + -9.68492126 101.75616455 72.31467438 -7.39434814 101.016174316 73.43133545 -5.76445007 99.83159637 74.44726563 + -5.77111816 98.25875092 75.51107788 -6.9949646 96.61219025 75.93841553 -9.12034607 96.41633606 75.45113373 + -11.52941895 96.69892883 74.46188354 -14.18190002 97.12214661 73.25063324 -16.35655212 97.4963913 72.23270416 + -18.45259094 97.85419464 71.24435425 -21.33145142 98.32896423 69.84322357 -23.36914063 98.6760025 68.82781982 + -25.015991211 98.98948669 67.97400665 -26.73681641 99.43998718 66.97290039 -28.50059509 100.24471283 65.65415955 + -29.64077759 102.16029358 64.3159256 -16.2902832 102.78853607 68.21585846 -19.18560791 103.25217438 66.88762665 + -21.26931763 103.5372467 65.95819855 -22.98472595 103.72676086 65.20935822 -24.87449646 103.8584137 64.41143036 + -27.37329102 103.74451447 63.42142868 -29.38597107 101.62471008 63.59141159 -28.05166626 99.76692963 65.16870117 + -26.27461243 98.97107697 66.40872192 -24.56964111 98.50666046 67.3646698 -22.95481873 98.15642548 68.19528961 + -20.9535675 97.78370667 69.18360901 -18.11618042 97.31441498 70.54049683 -16.055892944 96.96765137 71.51306915 + -13.91893005 96.60542297 72.51637268 -11.30812073 96.21508789 73.7095108 -8.9331665 95.98638153 74.69477081 + -6.79949951 96.17292023 75.26451111 -5.34393311 97.7540741 74.87689209 -5.38447571 99.50931549 73.75263214 + -7.081466675 100.71401978 72.60153198 -9.37203979 101.42650604 71.43359375 -11.99603271 102.013999939 70.1841507 + -14.18009949 102.42517853 69.17500305 -15.86540222 102.14250946 67.1443634 -18.7363739 102.59531403 65.86429596 + -20.80126953 102.88637543 64.97594452 -22.49938965 103.094787598 64.2664032 -24.37480164 103.25330353 63.52846909 + -26.83982849 103.16347504 62.66193771 -28.54393005 100.9777298 62.97491074 -27.36534119 99.28159332 64.56290436 + -25.63623047 98.48040771 65.67302704 -23.96708679 97.99046326 66.56654358 -22.38822937 97.62075043 67.35639954 + -20.4316864 97.22628021 68.30536652 -17.65943909 96.72593689 69.61774445 -15.64402771 96.39541626 70.56970215 + -13.54974365 96.068214417 71.54831696 -10.9931488 95.73141479 72.7141571 -8.68405151 95.54634857 73.69719696 + -6.63716125 95.74733734 74.32772064 -5.067657471 97.14693451 73.96509552 -5.070770264 99.0055541992 72.85368347 + -6.79211426 100.1581955 71.59455109 -9.055755615 100.82312775 70.3792038 -11.63798523 101.38350677 69.11417389 + -13.78723145 101.78357697 68.10083008 -15.44502258 101.33948517 66.030288696 -18.28234863 101.80339813 64.79515839 + -20.32254028 102.10767365 63.94994736 -22.0043945313 102.31802368 63.29217911 -23.86573792 102.46270752 62.64328384 + -26.18434143 102.31748199 62.029453278 -27.35406494 100.32527924 62.48508072 -26.57388306 98.82432556 63.91383743 + -24.93507385 97.98741913 64.87562561 -23.31066895 97.46257019 65.70241547 -21.77580261 97.059928894 66.45113373 + -19.86399841 96.65279388 67.35409546 -17.15130615 96.15111542 68.60839081 -15.18266296 95.840065 69.53790283 + -13.1401062 95.53117371 70.49623871 -10.65150452 95.21715546 71.64347839 -8.41197205 95.0990448 72.61617279 + -6.49815369 95.3453064 73.28476715 -5.07043457 96.54790497 72.86564636 -4.92799377 98.34429932 71.87033081 + -6.53128052 99.45823669 70.52909088 -8.74520874 100.088798523 69.26715851 -11.28312683 100.61505127 67.99179077 + -13.39505005 100.99939728 66.97737885 -15.19358826 100.26452637 65.17385864 -17.97883606 100.7855072 63.96289444 + -19.97880554 101.12542725 63.14943314 -21.62998962 101.34954834 62.54006577; + setAttr ".vt[166:249]" -23.4515686 101.4786377 61.99432755 -25.46095276 101.31132507 61.72314072 + -25.99848938 99.81681061 62.22075272 -25.73979187 98.55831146 63.34105301 -24.2383728 97.67098999 64.13581085 + -22.67837524 97.088562012 64.8991394 -21.17819214 96.68387604 65.60005188 -19.30511475 96.28175354 66.45457458 + -16.63818359 95.81433105 67.64533234 -14.715271 95.51546478 68.55562592 -12.72053528 95.22962189 69.4930954 + -10.29898071 94.94636536 70.61812592 -8.14804077 94.88457489 71.575737 -6.48345947 95.2205658 72.22794342 + -5.67179871 96.22449493 71.66629791 -5.45707703 97.47640991 70.99959564 -6.63032532 98.35059357 69.73410797 + -8.6834259 98.97760773 68.44582367 -11.12680054 99.52466583 67.14524841 -13.18778992 99.90771484 66.12878418 + -6.50198364 99.39028931 75.59444427 -8.079406738 100.32264709 75.13150787 -10.45820618 101.027488708 74.16763306 + -13.20043945 101.60086823 72.97350311 -15.47061157 102.011054993 71.95592499 -17.66741943 102.3480835 70.94787598 + -20.68270874 102.7882843 69.51290894 -22.81658936 103.045829773 68.47089386 -24.54515076 103.20215607 67.60441589 + -26.38386536 103.28069305 66.64081573 -28.2121582 103.19419098 65.54585266 -29.18214417 103.35250854 64.021621704 + -29.0088195801 102.99580383 63.05487442 -28.25819397 102.23561096 62.38739395 -27.13110352 101.30898285 61.99748611 + -25.85655212 100.48442078 61.90150833 -25.52684021 100.3000412 61.913311 -23.73220825 99.91783142 62.11698532 + -21.93876648 99.57170105 62.61130142 -20.28399658 99.26995087 63.23250198 -18.27859497 98.91767883 64.083610535 + -15.49319458 98.43847656 65.3780899 -13.50906372 98.071815491 66.36048126 -11.48428345 97.68978119 67.41316986 + -9.07762146 97.23665619 68.74471283 -7.080886841 96.87082672 70.028022766 -5.81268311 96.66444397 71.12332153 + -5.52761841 96.76720428 71.37352753 -4.81877136 97.34015656 72.46294403 -4.8515625 98.00034332275 73.53342438 + -5.1700592 98.57426453 74.43953705 -5.62507629 99.00042724609 75.097335815 -28.62406921 101.71866608 66.016456604 + -27.010009766 101.34190369 67.31667328 -25.28382874 101.010559082 68.42049408 -23.60476685 100.73130798 69.35456848 + -21.50888062 100.39816284 70.45010376 -18.51745605 99.94078064 71.92415619 -16.35070801 99.5592041 72.96555328 + -14.096801758 99.16895294 74.019004822 -11.3276062 98.70620728 75.21438599 -8.81532288 98.31892395 76.077484131 + -7.0043029785 98.046585083 76.24565125 -6.19555664 97.29129028 75.90815735 -5.88485718 96.76491547 75.24538422 + -5.68937683 96.23119354 74.30453491 -5.66833496 95.76621246 73.18068695 -6.0184021 95.61637115 71.99227905 + -6.19084167 95.65322113 71.6884613 -7.67698669 95.30850983 70.84738922 -9.79820251 95.31852722 69.74576569 + -12.23600769 95.57348633 68.52513885 -14.25015259 95.8479538 67.52612305 -16.19975281 96.15766144 66.57541656 + -18.95420837 96.56909943 65.35634613 -20.90861511 96.96800232 64.51746368 -22.48278809 97.41005707 63.86053085 + -24.11959839 98.067016602 63.21206284 -25.65626526 99.01776886 62.69543839 -25.95925903 99.071029663 62.76753616 + -27.089584351 99.41100311 63.19453049 -28.087753296 99.94886017 63.77982712 -28.86810303 100.51004791 64.39883423 + -29.25325012 101.049980164 65.017166138; + setAttr -s 496 ".ed"; + setAttr ".ed[0:165]" 0 218 1 218 219 1 219 20 1 20 0 1 66 67 1 67 18 1 1 18 1 + 1 66 1 20 87 1 87 88 1 0 88 1 88 249 1 249 218 1 228 3 1 228 229 1 229 78 1 3 78 1 + 21 243 1 243 244 1 7 244 1 21 7 1 60 227 1 227 228 1 3 60 1 78 79 1 79 60 1 234 235 1 + 235 65 1 6 65 1 234 6 1 62 2 1 62 75 1 75 76 1 2 76 1 18 195 1 195 196 1 196 1 1 + 186 187 1 187 62 1 2 186 1 76 217 1 217 186 1 63 211 1 211 212 1 5 212 1 63 5 1 202 4 1 + 202 203 1 203 23 1 4 23 1 196 197 1 197 66 1 191 192 1 192 38 1 38 8 1 8 191 1 36 222 1 + 222 223 1 223 9 1 9 36 1 83 84 1 84 36 1 9 83 1 239 240 1 240 41 1 10 41 1 10 239 1 + 39 206 1 206 207 1 207 11 1 39 11 1 70 71 1 71 8 1 38 70 1 219 220 1 24 220 1 24 20 1 + 194 26 1 194 195 1 18 26 1 67 68 1 26 68 1 203 204 1 27 204 1 23 27 1 242 29 1 242 243 1 + 29 21 1 86 87 1 86 24 1 220 221 1 30 221 1 30 24 1 193 32 1 193 194 1 26 32 1 68 69 1 + 32 69 1 204 205 1 33 205 1 27 33 1 241 35 1 241 242 1 35 29 1 85 86 1 85 30 1 221 222 1 + 36 30 1 192 193 1 32 38 1 69 70 1 205 206 1 33 39 1 240 241 1 41 35 1 84 85 1 223 224 1 + 42 224 1 42 9 1 190 44 1 190 191 1 8 44 1 71 72 1 44 72 1 207 208 1 45 208 1 11 45 1 + 238 47 1 238 239 1 47 10 1 82 83 1 82 42 1 224 225 1 48 225 1 48 42 1 189 50 1 189 190 1 + 44 50 1 72 73 1 50 73 1 208 209 1 51 209 1 45 51 1 237 53 1 237 238 1 53 47 1 81 82 1 + 81 48 1 225 226 1 54 226 1 54 48 1 188 56 1 188 189 1 50 56 1 73 74 1 56 74 1 209 210 1 + 57 210 1 51 57 1 236 59 1 236 237 1 59 53 1 80 81 1 80 54 1 226 227 1 60 54 1; + setAttr ".ed[166:331]" 187 188 1 56 62 1 74 75 1 210 211 1 57 63 1 235 236 1 + 65 59 1 79 80 1 23 166 1 166 167 1 167 4 1 165 27 1 165 166 1 164 33 1 164 165 1 + 163 39 1 163 164 1 11 162 1 162 163 1 185 45 1 185 162 1 184 51 1 184 185 1 183 57 1 + 183 184 1 182 63 1 182 183 1 181 182 1 181 5 1 212 213 1 213 181 1 179 233 1 233 234 1 + 179 6 1 65 178 1 178 179 1 59 177 1 177 178 1 53 176 1 176 177 1 47 175 1 175 176 1 + 174 10 1 174 175 1 41 173 1 173 174 1 35 172 1 172 173 1 29 171 1 171 172 1 170 21 1 + 170 171 1 169 170 1 169 7 1 244 245 1 245 169 1 167 201 1 201 202 1 90 91 1 90 71 1 + 70 91 1 91 92 1 69 92 1 92 93 1 68 93 1 93 94 1 94 67 1 94 95 1 66 95 1 197 198 1 + 95 198 1 248 97 1 248 249 1 88 97 1 87 98 1 97 98 1 98 99 1 99 86 1 99 100 1 100 85 1 + 100 101 1 101 84 1 101 102 1 83 102 1 102 103 1 103 82 1 103 104 1 104 81 1 104 105 1 + 105 80 1 105 106 1 106 79 1 106 107 1 78 107 1 229 230 1 107 230 1 216 109 1 216 217 1 + 76 109 1 75 110 1 109 110 1 110 111 1 74 111 1 111 112 1 73 112 1 112 113 1 72 113 1 + 113 90 1 114 115 1 114 90 1 91 115 1 115 116 1 92 116 1 116 117 1 93 117 1 117 118 1 + 118 94 1 118 119 1 95 119 1 198 199 1 119 199 1 247 121 1 247 248 1 97 121 1 98 122 1 + 121 122 1 122 123 1 123 99 1 123 124 1 124 100 1 124 125 1 125 101 1 125 126 1 102 126 1 + 126 127 1 127 103 1 127 128 1 128 104 1 128 129 1 129 105 1 129 130 1 130 106 1 130 131 1 + 107 131 1 230 231 1 131 231 1 215 133 1 215 216 1 109 133 1 110 134 1 133 134 1 134 135 1 + 111 135 1 135 136 1 112 136 1 136 137 1 113 137 1 137 114 1 138 139 1 138 114 1 115 139 1 + 139 140 1 116 140 1 140 141 1 117 141 1 141 142 1; + setAttr ".ed[332:495]" 142 118 1 142 143 1 119 143 1 199 200 1 143 200 1 246 145 1 + 246 247 1 121 145 1 122 146 1 145 146 1 146 147 1 147 123 1 147 148 1 148 124 1 148 149 1 + 149 125 1 149 150 1 126 150 1 150 151 1 151 127 1 151 152 1 152 128 1 152 153 1 153 129 1 + 153 154 1 154 130 1 154 155 1 131 155 1 231 232 1 155 232 1 214 157 1 214 215 1 133 157 1 + 134 158 1 157 158 1 158 159 1 135 159 1 159 160 1 136 160 1 160 161 1 137 161 1 161 138 1 + 162 138 1 139 163 1 140 164 1 141 165 1 166 142 1 143 167 1 200 201 1 245 246 1 145 169 1 + 146 170 1 171 147 1 172 148 1 173 149 1 150 174 1 175 151 1 176 152 1 177 153 1 178 154 1 + 155 179 1 232 233 1 213 214 1 157 181 1 158 182 1 159 183 1 160 184 1 161 185 1 61 14 1 + 61 187 1 186 14 1 55 61 1 55 188 1 49 55 1 49 189 1 43 49 1 43 190 1 13 43 1 191 13 1 + 37 13 1 37 192 1 31 37 1 31 193 1 25 31 1 25 194 1 19 25 1 195 19 1 12 19 1 12 196 1 + 89 12 1 89 197 1 96 89 1 198 96 1 120 96 1 199 120 1 144 120 1 200 144 1 168 144 1 + 201 168 1 17 168 1 17 202 1 22 17 1 22 203 1 28 22 1 204 28 1 34 28 1 205 34 1 40 34 1 + 206 40 1 16 40 1 16 207 1 46 16 1 208 46 1 52 46 1 209 52 1 58 52 1 210 58 1 64 58 1 + 211 64 1 15 64 1 212 15 1 180 15 1 180 213 1 156 180 1 156 214 1 132 156 1 132 215 1 + 108 132 1 108 216 1 77 108 1 217 77 1 14 77 1 218 12 1 19 219 1 220 25 1 221 31 1 + 222 37 1 13 223 1 224 43 1 225 49 1 226 55 1 227 61 1 14 228 1 77 229 1 230 108 1 + 231 132 1 232 156 1 233 180 1 15 234 1 64 235 1 58 236 1 52 237 1 46 238 1 239 16 1 + 40 240 1 34 241 1 28 242 1 243 22 1 244 17 1 168 245 1 144 246 1 120 247 1 96 248 1 + 249 89 1; + setAttr -s 248 -ch 992 ".fc[0:247]" -type "polyFaces" + f 4 -4 -3 -2 -1 + mu 0 4 0 1 2 3 + f 4 -8 6 -6 -5 + mu 0 4 4 5 6 7 + f 4 10 -10 -9 3 + mu 0 4 0 8 9 1 + f 4 -11 0 -13 -12 + mu 0 4 10 0 3 11 + f 4 16 -16 -15 13 + mu 0 4 12 13 14 15 + f 4 20 19 -19 -18 + mu 0 4 16 17 18 19 + f 4 -24 -14 -23 -22 + mu 0 4 20 12 15 21 + f 4 -17 23 -26 -25 + mu 0 4 22 12 20 23 + f 4 29 28 -28 -27 + mu 0 4 24 25 26 27 + f 4 33 -33 -32 30 + mu 0 4 28 29 30 31 + f 4 -7 -37 -36 -35 + mu 0 4 6 5 32 33 + f 4 -40 -31 -39 -38 + mu 0 4 34 28 31 35 + f 4 -34 39 -42 -41 + mu 0 4 36 28 34 37 + f 4 45 44 -44 -43 + mu 0 4 38 39 40 41 + f 4 49 -49 -48 46 + mu 0 4 42 43 44 45 + f 4 7 -52 -51 36 + mu 0 4 5 46 47 32 + f 4 -56 -55 -54 -53 + mu 0 4 48 49 50 51 + f 4 -60 -59 -58 -57 + mu 0 4 52 53 54 55 + f 4 -63 59 -62 -61 + mu 0 4 56 53 52 57 + f 4 -67 65 -65 -64 + mu 0 4 58 59 60 61 + f 4 70 -70 -69 -68 + mu 0 4 62 63 64 65 + f 4 -74 54 -73 -72 + mu 0 4 66 50 49 67 + f 4 -77 75 -75 2 + mu 0 4 1 68 69 2 + f 4 -80 34 -79 77 + mu 0 4 70 6 33 71 + f 4 5 79 81 -81 + mu 0 4 7 6 70 72 + f 4 84 83 -83 48 + mu 0 4 43 73 74 44 + f 4 87 17 -87 85 + mu 0 4 75 16 19 76 + f 4 89 76 8 -89 + mu 0 4 77 68 1 9 + f 4 -93 91 -91 -76 + mu 0 4 68 78 79 69 + f 4 -96 -78 -95 93 + mu 0 4 80 70 71 81 + f 4 -82 95 97 -97 + mu 0 4 72 70 80 82 + f 4 100 99 -99 -84 + mu 0 4 73 83 84 74 + f 4 103 -86 -103 101 + mu 0 4 85 75 76 86 + f 4 105 92 -90 -105 + mu 0 4 87 78 68 77 + f 4 -108 56 -107 -92 + mu 0 4 78 52 55 79 + f 4 -110 -94 -109 53 + mu 0 4 50 80 81 51 + f 4 -98 109 73 -111 + mu 0 4 82 80 50 66 + f 4 112 67 -112 -100 + mu 0 4 83 62 65 84 + f 4 114 -102 -114 64 + mu 0 4 60 85 86 61 + f 4 61 107 -106 -116 + mu 0 4 57 52 78 87 + f 4 -119 117 -117 58 + mu 0 4 53 88 89 54 + f 4 -122 55 -121 119 + mu 0 4 90 49 48 91 + f 4 72 121 123 -123 + mu 0 4 67 49 90 92 + f 4 126 125 -125 69 + mu 0 4 63 93 94 64 + f 4 129 66 -129 127 + mu 0 4 95 59 58 96 + f 4 131 118 62 -131 + mu 0 4 97 88 53 56 + f 4 -135 133 -133 -118 + mu 0 4 88 98 99 89 + f 4 -138 -120 -137 135 + mu 0 4 100 90 91 101 + f 4 -124 137 139 -139 + mu 0 4 92 90 100 102 + f 4 142 141 -141 -126 + mu 0 4 93 103 104 94 + f 4 145 -128 -145 143 + mu 0 4 105 95 96 106 + f 4 147 134 -132 -147 + mu 0 4 107 98 88 97 + f 4 -151 149 -149 -134 + mu 0 4 98 108 109 99 + f 4 -154 -136 -153 151 + mu 0 4 110 100 101 111 + f 4 -140 153 155 -155 + mu 0 4 102 100 110 112 + f 4 158 157 -157 -142 + mu 0 4 103 113 114 104 + f 4 161 -144 -161 159 + mu 0 4 115 105 106 116 + f 4 163 150 -148 -163 + mu 0 4 117 108 98 107 + f 4 -166 21 -165 -150 + mu 0 4 108 20 21 109 + f 4 -168 -152 -167 38 + mu 0 4 31 110 111 35 + f 4 -156 167 31 -169 + mu 0 4 112 110 31 30 + f 4 170 42 -170 -158 + mu 0 4 113 38 41 114 + f 4 172 -160 -172 27 + mu 0 4 26 115 116 27 + f 4 25 165 -164 -174 + mu 0 4 23 20 108 117 + f 4 -50 -177 -176 -175 + mu 0 4 118 119 120 121 + f 4 -85 174 -179 177 + mu 0 4 122 118 121 123 + f 4 -101 -178 -181 179 + mu 0 4 124 122 123 125 + f 4 -113 -180 -183 181 + mu 0 4 126 124 125 127 + f 4 -71 -182 -185 -184 + mu 0 4 128 126 127 129 + f 4 -127 183 -187 185 + mu 0 4 130 128 129 131 + f 4 -143 -186 -189 187 + mu 0 4 132 130 131 133 + f 4 -159 -188 -191 189 + mu 0 4 134 132 133 135 + f 4 -171 -190 -193 191 + mu 0 4 136 134 135 137 + f 4 194 -46 -192 -194 + mu 0 4 138 139 136 137 + f 4 -45 -195 -197 -196 + mu 0 4 140 141 142 143 + f 4 199 -30 -199 -198 + mu 0 4 144 145 146 147 + f 4 -29 -200 -202 -201 + mu 0 4 148 149 150 151 + f 4 -173 200 -204 -203 + mu 0 4 152 148 151 153 + f 4 -162 202 -206 -205 + mu 0 4 154 152 153 155 + f 4 -146 204 -208 -207 + mu 0 4 156 154 155 157 + f 4 -130 206 -210 208 + mu 0 4 158 156 157 159 + f 4 -66 -209 -212 -211 + mu 0 4 160 158 159 161 + f 4 -115 210 -214 -213 + mu 0 4 162 160 161 163 + f 4 -104 212 -216 -215 + mu 0 4 164 162 163 165 + f 4 -88 214 -218 216 + mu 0 4 166 164 165 167 + f 4 219 -21 -217 -219 + mu 0 4 168 169 166 167 + f 4 -20 -220 -222 -221 + mu 0 4 170 171 172 173 + f 4 176 -47 -224 -223 + mu 0 4 174 175 176 177 + f 4 -227 71 -226 224 + mu 0 4 178 66 67 179 + f 4 -229 110 226 227 + mu 0 4 180 82 66 178 + f 4 -231 96 228 229 + mu 0 4 181 72 82 180 + f 4 232 80 230 231 + mu 0 4 182 7 72 181 + f 4 -235 4 -233 233 + mu 0 4 183 4 7 182 + f 4 234 236 -236 51 + mu 0 4 46 184 185 47 + f 4 -240 11 -239 237 + mu 0 4 186 10 11 187 + f 4 239 241 -241 9 + mu 0 4 8 188 189 9 + f 4 243 88 240 242 + mu 0 4 190 77 9 189 + f 4 245 104 -244 244 + mu 0 4 191 87 77 190 + f 4 247 115 -246 246 + mu 0 4 192 57 87 191 + f 4 -250 60 -248 248 + mu 0 4 193 56 57 192 + f 4 251 130 249 250 + mu 0 4 194 97 56 193 + f 4 253 146 -252 252 + mu 0 4 195 107 97 194 + f 4 255 162 -254 254 + mu 0 4 196 117 107 195 + f 4 257 173 -256 256 + mu 0 4 197 23 117 196 + f 4 -260 24 -258 258 + mu 0 4 198 22 23 197 + f 4 259 261 -261 15 + mu 0 4 13 199 200 14 + f 4 -265 40 -264 262 + mu 0 4 201 36 37 202 + f 4 264 266 -266 32 + mu 0 4 29 203 204 30 + f 4 -269 168 265 267 + mu 0 4 205 112 30 204 + f 4 -271 154 268 269 + mu 0 4 206 102 112 205 + f 4 -273 138 270 271 + mu 0 4 207 92 102 206 + f 4 225 122 272 273 + mu 0 4 179 67 92 207 + f 4 -277 -225 -276 274 + mu 0 4 208 178 179 209 + f 4 -279 -228 276 277 + mu 0 4 210 180 178 208 + f 4 -281 -230 278 279 + mu 0 4 211 181 180 210 + f 4 282 -232 280 281 + mu 0 4 212 182 181 211 + f 4 -285 -234 -283 283 + mu 0 4 213 183 182 212 + f 4 284 286 -286 -237 + mu 0 4 184 214 215 185 + f 4 -290 -238 -289 287 + mu 0 4 216 186 187 217 + f 4 289 291 -291 -242 + mu 0 4 188 218 219 189 + f 4 293 -243 290 292 + mu 0 4 220 190 189 219 + f 4 295 -245 -294 294 + mu 0 4 221 191 190 220 + f 4 297 -247 -296 296 + mu 0 4 222 192 191 221 + f 4 -300 -249 -298 298 + mu 0 4 223 193 192 222 + f 4 301 -251 299 300 + mu 0 4 224 194 193 223 + f 4 303 -253 -302 302 + mu 0 4 225 195 194 224 + f 4 305 -255 -304 304 + mu 0 4 226 196 195 225 + f 4 307 -257 -306 306 + mu 0 4 227 197 196 226 + f 4 -310 -259 -308 308 + mu 0 4 228 198 197 227 + f 4 309 311 -311 -262 + mu 0 4 199 229 230 200 + f 4 -315 -263 -314 312 + mu 0 4 231 201 202 232 + f 4 314 316 -316 -267 + mu 0 4 203 233 234 204 + f 4 -319 -268 315 317 + mu 0 4 235 205 204 234 + f 4 -321 -270 318 319 + mu 0 4 236 206 205 235 + f 4 -323 -272 320 321 + mu 0 4 237 207 206 236 + f 4 275 -274 322 323 + mu 0 4 209 179 207 237 + f 4 -327 -275 -326 324 + mu 0 4 238 208 209 239 + f 4 -329 -278 326 327 + mu 0 4 240 210 208 238 + f 4 -331 -280 328 329 + mu 0 4 241 211 210 240 + f 4 332 -282 330 331 + mu 0 4 242 212 211 241 + f 4 -335 -284 -333 333 + mu 0 4 243 213 212 242 + f 4 334 336 -336 -287 + mu 0 4 214 244 245 215 + f 4 -340 -288 -339 337 + mu 0 4 246 216 217 247 + f 4 339 341 -341 -292 + mu 0 4 218 248 249 219 + f 4 343 -293 340 342 + mu 0 4 250 220 219 249 + f 4 345 -295 -344 344 + mu 0 4 251 221 220 250 + f 4 347 -297 -346 346 + mu 0 4 252 222 221 251 + f 4 -350 -299 -348 348 + mu 0 4 253 223 222 252 + f 4 351 -301 349 350 + mu 0 4 254 224 223 253 + f 4 353 -303 -352 352 + mu 0 4 255 225 224 254 + f 4 355 -305 -354 354 + mu 0 4 256 226 225 255 + f 4 357 -307 -356 356 + mu 0 4 257 227 226 256 + f 4 -360 -309 -358 358 + mu 0 4 258 228 227 257 + f 4 359 361 -361 -312 + mu 0 4 229 259 260 230 + f 4 -365 -313 -364 362 + mu 0 4 261 231 232 262 + f 4 364 366 -366 -317 + mu 0 4 233 263 264 234 + f 4 -369 -318 365 367 + mu 0 4 265 235 234 264 + f 4 -371 -320 368 369 + mu 0 4 266 236 235 265 + f 4 -373 -322 370 371 + mu 0 4 267 237 236 266 + f 4 325 -324 372 373 + mu 0 4 239 209 237 267 + f 4 -376 -325 -375 184 + mu 0 4 127 238 239 129 + f 4 -377 -328 375 182 + mu 0 4 125 240 238 127 + f 4 -378 -330 376 180 + mu 0 4 123 241 240 125 + f 4 378 -332 377 178 + mu 0 4 121 242 241 123 + f 4 -380 -334 -379 175 + mu 0 4 120 243 242 121 + f 4 379 222 -381 -337 + mu 0 4 244 174 177 245 + f 4 -383 -338 -382 221 + mu 0 4 172 246 247 173 + f 4 382 218 -384 -342 + mu 0 4 248 168 167 249 + f 4 384 -343 383 217 + mu 0 4 165 250 249 167 + f 4 385 -345 -385 215 + mu 0 4 163 251 250 165 + f 4 386 -347 -386 213 + mu 0 4 161 252 251 163 + f 4 -388 -349 -387 211 + mu 0 4 159 253 252 161 + f 4 388 -351 387 209 + mu 0 4 157 254 253 159 + f 4 389 -353 -389 207 + mu 0 4 155 255 254 157 + f 4 390 -355 -390 205 + mu 0 4 153 256 255 155 + f 4 391 -357 -391 203 + mu 0 4 151 257 256 153 + f 4 -393 -359 -392 201 + mu 0 4 150 258 257 151 + f 4 392 197 -394 -362 + mu 0 4 259 144 147 260 + f 4 -396 -363 -395 196 + mu 0 4 142 261 262 143 + f 4 395 193 -397 -367 + mu 0 4 263 138 137 264 + f 4 -398 -368 396 192 + mu 0 4 135 265 264 137 + f 4 -399 -370 397 190 + mu 0 4 133 266 265 135 + f 4 -400 -372 398 188 + mu 0 4 131 267 266 133 + f 4 374 -374 399 186 + mu 0 4 129 239 267 131 + f 4 -403 37 -402 400 + mu 0 4 268 34 35 269 + f 4 -405 403 401 166 + mu 0 4 111 270 269 35 + f 4 -407 405 404 152 + mu 0 4 101 271 270 111 + f 4 -409 407 406 136 + mu 0 4 91 272 271 101 + f 4 410 409 408 120 + mu 0 4 48 273 272 91 + f 4 -411 52 -413 411 + mu 0 4 273 48 51 274 + f 4 -415 413 412 108 + mu 0 4 81 275 274 51 + f 4 -417 415 414 94 + mu 0 4 71 276 275 81 + f 4 418 417 416 78 + mu 0 4 33 277 276 71 + f 4 -421 419 -419 35 + mu 0 4 32 278 277 33 + f 4 -423 421 420 50 + mu 0 4 47 279 278 32 + f 4 424 423 422 235 + mu 0 4 185 280 279 47 + f 4 426 425 -425 285 + mu 0 4 215 281 280 185 + f 4 428 427 -427 335 + mu 0 4 245 282 281 215 + f 4 430 429 -429 380 + mu 0 4 177 283 282 245 + f 4 -433 431 -431 223 + mu 0 4 176 284 283 177 + f 4 -435 433 432 47 + mu 0 4 44 285 286 45 + f 4 436 435 434 82 + mu 0 4 74 287 285 44 + f 4 438 437 -437 98 + mu 0 4 84 288 287 74 + f 4 440 439 -439 111 + mu 0 4 65 289 288 84 + f 4 -443 441 -441 68 + mu 0 4 64 290 289 65 + f 4 444 443 442 124 + mu 0 4 94 291 290 64 + f 4 446 445 -445 140 + mu 0 4 104 292 291 94 + f 4 448 447 -447 156 + mu 0 4 114 293 292 104 + f 4 450 449 -449 169 + mu 0 4 41 294 293 114 + f 4 452 451 -451 43 + mu 0 4 40 295 294 41 + f 4 -453 195 -455 453 + mu 0 4 296 140 143 297 + f 4 -457 455 454 394 + mu 0 4 262 298 297 143 + f 4 -459 457 456 363 + mu 0 4 232 299 298 262 + f 4 -461 459 458 313 + mu 0 4 202 300 299 232 + f 4 462 461 460 263 + mu 0 4 37 301 300 202 + f 4 402 463 -463 41 + mu 0 4 34 268 301 37 + f 4 -466 -420 -465 1 + mu 0 4 2 277 278 3 + f 4 466 -418 465 74 + mu 0 4 69 276 277 2 + f 4 467 -416 -467 90 + mu 0 4 79 275 276 69 + f 4 468 -414 -468 106 + mu 0 4 55 274 275 79 + f 4 -470 -412 -469 57 + mu 0 4 54 273 274 55 + f 4 470 -410 469 116 + mu 0 4 89 272 273 54 + f 4 471 -408 -471 132 + mu 0 4 99 271 272 89 + f 4 472 -406 -472 148 + mu 0 4 109 270 271 99 + f 4 473 -404 -473 164 + mu 0 4 21 269 270 109 + f 4 -475 -401 -474 22 + mu 0 4 15 268 269 21 + f 4 -476 -464 474 14 + mu 0 4 14 301 268 15 + f 4 476 -462 475 260 + mu 0 4 200 300 301 14 + f 4 477 -460 -477 310 + mu 0 4 230 299 300 200 + f 4 478 -458 -478 360 + mu 0 4 260 298 299 230 + f 4 479 -456 -479 393 + mu 0 4 147 297 298 260 + f 4 -481 -454 -480 198 + mu 0 4 146 296 297 147 + f 4 480 26 -482 -452 + mu 0 4 295 24 27 294 + f 4 -483 -450 481 171 + mu 0 4 116 293 294 27 + f 4 -484 -448 482 160 + mu 0 4 106 292 293 116 + f 4 -485 -446 483 144 + mu 0 4 96 291 292 106 + f 4 485 -444 484 128 + mu 0 4 58 290 291 96 + f 4 -486 63 -487 -442 + mu 0 4 290 58 61 289 + f 4 -488 -440 486 113 + mu 0 4 86 288 289 61 + f 4 -489 -438 487 102 + mu 0 4 76 287 288 86 + f 4 489 -436 488 86 + mu 0 4 19 285 287 76 + f 4 490 -434 -490 18 + mu 0 4 18 286 285 19 + f 4 -491 220 -492 -432 + mu 0 4 284 170 173 283 + f 4 -493 -430 491 381 + mu 0 4 247 282 283 173 + f 4 -494 -428 492 338 + mu 0 4 217 281 282 247 + f 4 -495 -426 493 288 + mu 0 4 187 280 281 217 + f 4 495 -424 494 238 + mu 0 4 11 279 280 187 + f 4 464 -422 -496 12 + mu 0 4 3 278 279 11; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; +createNode transform -n "eye_l" -p "blue_bomb_grp"; + rename -uid "3019210D-42C7-795F-9E56-95B4ADD42BE3"; + setAttr ".t" -type "double3" 2.339561596741953 19.084177591924384 11.632760854596796 ; + setAttr ".r" -type "double3" 1.7127857507912274 -0.21987756354569279 -0.92077561397425078 ; + setAttr ".s" -type "double3" 0.80886256216097563 0.80886256216097563 0.80886256216097563 ; + setAttr ".rp" -type "double3" 13.785771124456112 72.645472087988168 55.286223895478606 ; + setAttr ".rpt" -type "double3" 0.91807090429021787 -1.9120785312042323 2.1991022194381884 ; + setAttr ".sp" -type "double3" 17.043403625488281 89.811885833740234 68.350578308105469 ; + setAttr ".spt" -type "double3" -3.2576325010321687 -17.166413745752074 -13.064354412626862 ; +createNode mesh -n "eye_lShape" -p "eye_l"; + rename -uid "1F1B955D-4D10-0487-6E52-6AA1A9F0D675"; + setAttr -k off ".v"; + setAttr -s 2 ".iog[0].og"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.53728891909122467 0.41572575271129608 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; +createNode mesh -n "eye_lShape1" -p "eye_l"; + rename -uid "73E1253A-4AF4-9FF7-2BEB-25871248EB3F"; + setAttr -k off ".v"; + setAttr ".io" yes; + setAttr ".iog[0].og[0].gcl" -type "componentList" 320 "f[0]" "f[1]" "f[2]" "f[3]" "f[4]" "f[5]" "f[6]" "f[7]" "f[8]" "f[9]" "f[10]" "f[11]" "f[12]" "f[13]" "f[14]" "f[15]" "f[16]" "f[17]" "f[18]" "f[19]" "f[20]" "f[21]" "f[22]" "f[23]" "f[24]" "f[25]" "f[26]" "f[27]" "f[28]" "f[29]" "f[30]" "f[31]" "f[32]" "f[33]" "f[34]" "f[35]" "f[36]" "f[37]" "f[38]" "f[39]" "f[40]" "f[41]" "f[42]" "f[43]" "f[44]" "f[45]" "f[46]" "f[47]" "f[48]" "f[49]" "f[50]" "f[51]" "f[52]" "f[53]" "f[54]" "f[55]" "f[56]" "f[57]" "f[58]" "f[59]" "f[60]" "f[61]" "f[62]" "f[63]" "f[64]" "f[65]" "f[66]" "f[67]" "f[68]" "f[69]" "f[70]" "f[71]" "f[72]" "f[73]" "f[74]" "f[75]" "f[76]" "f[77]" "f[78]" "f[79]" "f[80]" "f[81]" "f[82]" "f[83]" "f[84]" "f[85]" "f[86]" "f[87]" "f[88]" "f[89]" "f[90]" "f[91]" "f[92]" "f[93]" "f[94]" "f[95]" "f[96]" "f[97]" "f[98]" "f[99]" "f[100]" "f[101]" "f[102]" "f[103]" "f[104]" "f[105]" "f[106]" "f[107]" "f[108]" "f[109]" "f[110]" "f[111]" "f[112]" "f[113]" "f[114]" "f[115]" "f[116]" "f[117]" "f[118]" "f[119]" "f[120]" "f[121]" "f[122]" "f[123]" "f[124]" "f[125]" "f[126]" "f[127]" "f[128]" "f[129]" "f[130]" "f[131]" "f[132]" "f[133]" "f[134]" "f[135]" "f[136]" "f[137]" "f[138]" "f[139]" "f[140]" "f[141]" "f[142]" "f[143]" "f[144]" "f[145]" "f[146]" "f[147]" "f[148]" "f[149]" "f[150]" "f[151]" "f[152]" "f[153]" "f[154]" "f[155]" "f[156]" "f[157]" "f[158]" "f[159]" "f[160]" "f[161]" "f[162]" "f[163]" "f[164]" "f[165]" "f[166]" "f[167]" "f[168]" "f[169]" "f[170]" "f[171]" "f[172]" "f[173]" "f[174]" "f[175]" "f[176]" "f[177]" "f[178]" "f[179]" "f[180]" "f[181]" "f[182]" "f[183]" "f[184]" "f[185]" "f[186]" "f[187]" "f[188]" "f[189]" "f[190]" "f[191]" "f[192]" "f[193]" "f[194]" "f[195]" "f[196]" "f[197]" "f[198]" "f[199]" "f[200]" "f[201]" "f[202]" "f[203]" "f[204]" "f[205]" "f[206]" "f[207]" "f[208]" "f[209]" "f[210]" "f[211]" "f[212]" "f[213]" "f[214]" "f[215]" "f[216]" "f[217]" "f[218]" "f[219]" "f[220]" "f[221]" "f[222]" "f[223]" "f[224]" "f[225]" "f[226]" "f[227]" "f[228]" "f[229]" "f[230]" "f[231]" "f[232]" "f[233]" "f[234]" "f[235]" "f[236]" "f[237]" "f[238]" "f[239]" "f[240]" "f[241]" "f[242]" "f[243]" "f[244]" "f[245]" "f[246]" "f[247]" "f[248]" "f[249]" "f[250]" "f[251]" "f[252]" "f[253]" "f[254]" "f[255]" "f[256]" "f[257]" "f[258]" "f[259]" "f[260]" "f[261]" "f[262]" "f[263]" "f[264]" "f[265]" "f[266]" "f[267]" "f[268]" "f[269]" "f[270]" "f[271]" "f[272]" "f[273]" "f[274]" "f[275]" "f[276]" "f[277]" "f[278]" "f[279]" "f[280]" "f[281]" "f[282]" "f[283]" "f[284]" "f[285]" "f[286]" "f[287]" "f[288]" "f[289]" "f[290]" "f[291]" "f[292]" "f[293]" "f[294]" "f[295]" "f[296]" "f[297]" "f[298]" "f[299]" "f[300]" "f[301]" "f[302]" "f[303]" "f[304]" "f[305]" "f[306]" "f[307]" "f[308]" "f[309]" "f[310]" "f[311]" "f[312]" "f[313]" "f[314]" "f[315]" "f[316]" "f[317]" "f[318]" "f[319]"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 378 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.50200844 0.41010666 0.5018965 + 0.40864468 0.50374442 0.4089784 0.50383604 0.41046709 0.5025835 0.41286525 0.50068963 + 0.41235748 0.54167199 0.41164404 0.54464591 0.41311309 0.54436767 0.41507781 0.54148793 + 0.41314504 0.50226742 0.37517938 0.50425684 0.37486643 0.50520265 0.37746128 0.50332558 + 0.37768364 0.49927619 0.41135684 0.49898973 0.40962315 0.60353625 0.44162801 0.60432887 + 0.44345701 0.60247481 0.44302431 0.60216892 0.44081011 0.54010057 0.41316739 0.54035628 + 0.4116855 0.54241157 0.41578692 0.54097795 0.41589546 0.60235798 0.4839066 0.60250711 + 0.48273036 0.604213 0.48253879 0.60389161 0.48360601 0.54205811 0.37875441 0.54073203 + 0.37856993 0.54143071 0.37584725 0.54272783 0.37611988 0.50496423 0.37912983 0.50310004 + 0.37930638 0.54208875 0.38054198 0.54085064 0.3803646 0.54499018 0.37748569 0.54514658 + 0.37962908 0.56669247 0.48218882 0.56854331 0.48221517 0.56880057 0.48342365 0.56718791 + 0.48321527 0.56585234 0.4419471 0.56599259 0.44407901 0.56397444 0.44474709 0.56408376 + 0.4429329 0.500305 0.37810504 0.50076228 0.37614003 0.52062118 0.41248041 0.52080011 + 0.41068494 0.52817833 0.41114843 0.52805185 0.41292426 0.52914882 0.37752348 0.52910173 + 0.37957603 0.52190781 0.37920696 0.52191782 0.37710524 0.52182603 0.37387553 0.52919579 + 0.37422657 0.56407022 0.46249354 0.56651139 0.46240157 0.56676751 0.47025341 0.56438071 + 0.47039178 0.60521525 0.47072095 0.60314822 0.47053707 0.60320866 0.4624418 0.60536373 + 0.4625839 0.52774882 0.41618568 0.5201422 0.41568726 0.51483405 0.37899423 0.51483285 + 0.37697238 0.51343167 0.41185051 0.51362181 0.41009328 0.51280832 0.41491014 0.60321385 + 0.45443171 0.60544288 0.45459217 0.56407392 0.45504624 0.56645906 0.45490479 0.51461971 + 0.3738634 0.50393122 0.39398575 0.50376183 0.40004241 0.50159019 0.39992604 0.50170785 + 0.39388701 0.52153218 0.40101582 0.51447737 0.40056956 0.51471782 0.39459884 0.52174819 + 0.39503887 0.52867937 0.40148547 0.52879822 0.39543855 0.54231071 0.40242913 0.54094958 + 0.40236652 0.54082918 0.39595559 0.54215789 0.39599529 0.54606581 0.39590681 0.54601514 + 0.40257162 0.58523357 0.48444611 0.58523858 0.48299021 0.59233522 0.4831512 0.59233797 + 0.48457807 0.59198248 0.46188846 0.59209889 0.46990907 0.58512664 0.46978498 0.58496118 + 0.46187377 0.58474916 0.45396057 0.59186417 0.45397681 0.5915271 0.43930697 0.59157455 + 0.4418489 0.58430135 0.44202977 0.58417463 0.43944854 0.49785557 0.3999626 0.4979507 + 0.39377159 0.54078925 0.38965642 0.54210329 0.38968629 0.52186382 0.38903478 0.52890742 + 0.38938481 0.51486397 0.38862526 0.50201434 0.38788861 0.50419998 0.38797128 0.4984096 + 0.38769189 0.57708216 0.4423008 0.5769217 0.43972963 0.57791555 0.46198094 0.57767916 + 0.45425555 0.57811624 0.46980378 0.5782584 0.48407957 0.57826042 0.4826594 0.54599261 + 0.38947693 0.53545451 0.44242057 0.53712249 0.43766478 0.53852737 0.43785235 0.5365876 + 0.44221142 0.51415902 0.4419544 0.5156498 0.43579388 0.5239104 0.43663514 0.52281511 + 0.44267803 0.50588131 0.44058204 0.50755346 0.4347122 0.49443093 0.43199879 0.49657747 + 0.43243873 0.49481043 0.43807209 0.49298641 0.43754059 0.47154167 0.41324887 0.47760478 + 0.41235143 0.47798595 0.41425511 0.47221377 0.41464496 0.46913496 0.39425871 0.47557482 + 0.39408177 0.47581705 0.40139514 0.4692851 0.40221119 0.4693726 0.38637316 0.47607127 + 0.38668352 0.47820467 0.37303269 0.47786161 0.37536204 0.47228548 0.37471622 0.47347263 + 0.37300432 0.50198245 0.34877187 0.50193393 0.35372549 0.49973091 0.35376012 0.50024605 + 0.34923309 0.52027947 0.34687343 0.52068901 0.35307002 0.51298177 0.35329309 0.51241529 + 0.34724551 0.52870798 0.34700948 0.52859819 0.35339066 0.54241264 0.35468474 0.54106116 + 0.3545931 0.54100013 0.3497431 0.54201353 0.35029811 0.57175159 0.37805739 0.56700885 + 0.37813023 0.56691158 0.37617165 0.57123089 0.37652388 0.57461309 0.39536822 0.56837916 + 0.39573264 0.56789577 0.3884744 0.57388973 0.3877674 0.57468534 0.40322307 0.56838262 + 0.40316746 0.57283938 0.41560107 0.56811559 0.41664803 0.56807876 0.41457337 0.57329571 + 0.41403896 0.5134989 0.35898012 0.52105248 0.35892034 0.52141857 0.36479405 0.51396906 + 0.3648411 0.49982259 0.35954198 0.50214112 0.35944265 0.50257313 0.36558643 0.50017309 + 0.3657859 0.49083439 0.37366638 0.49016806 0.37601882 0.4838104 0.37557513 0.48425928 + 0.37317869 0.48141077 0.39384452 0.48192027 0.38687122 0.48803309 0.38703945 0.48744687 + 0.39370704 0.48150995 0.40085447 0.48749819 0.40037924 0.48366633 0.41371414 0.48322722 + 0.41172403 0.48918709 0.41111466 0.48966599 0.41304582 0.49757013 0.42096776 0.49975595 + 0.42148235 0.49817875 0.42714933 0.49606213 0.42664471 0.51707208 0.43034416 0.50926393 + 0.4292919 0.51079005 0.42374033 0.51846349 0.42466992 0.52519107 0.43098581 0.52640736 + 0.42536569 0.54025984 0.43206427 0.53881156 0.43193129 0.54021966 0.42578816 0.5417515 + 0.42578793 0.55543756 0.41485575 0.56196153 0.41494048 0.56193876 0.41715968 0.55522525 + 0.41712648 0.56249595 0.39590019 0.56245315 0.40312642 0.55625427 0.40300545 0.55657983 + 0.39594758 0.56219077 0.38882509 0.55627012 0.38905582 0.56125176 0.37604609 0.56136858 + 0.37816715 0.55529511 0.37836644 0.5550698 0.37621665 0.54312897 0.36645043 0.54174459 + 0.36628643 0.54141116 0.36024529 0.54276979 0.36035171 0.52877486 0.35923114 0.52900529 + 0.36508453 0.54124856 0.41909027 0.54279995 0.41894549 0.51966071 0.41895458 0.52741063 + 0.41946989 0.51219535 0.41803151 0.49954572 0.41495001 0.50158691 0.41560405 0.49575379 + 0.41028386 0.49626181 0.41221088 0.49409235 0.39366347 0.4940401 0.40001726 0.49467996 + 0.38746354; + setAttr ".uvst[0].uvsp[250:377]" 0.49786919 0.374982 0.49716195 0.37718967 + 0.50362116 0.37199327 0.50144589 0.37242639 0.52174997 0.37056589 0.51447773 0.37067524 + 0.52918971 0.37087935 0.54306555 0.37304974 0.54170811 0.3727316 0.54862309 0.37888283 + 0.54826057 0.37669522 0.5500052 0.39597744 0.54996312 0.38931978 0.54978836 0.40281904 + 0.54824841 0.41404393 0.54787982 0.41625914 0.50840533 0.37902126 0.5084728 0.3771714 + 0.50805199 0.3941837 0.50825131 0.38821974 0.50784755 0.40017885 0.50701797 0.41100442 + 0.50715125 0.40936774 0.50619328 0.4138912 0.50383222 0.42244866 0.50544679 0.41683236 + 0.50214338 0.42811763 0.50058043 0.43326908 0.49832848 0.43876866 0.60294867 0.44698527 + 0.60524201 0.44700548 0.58452976 0.44676816 0.59168309 0.44654417 0.57732844 0.44705266 + 0.56402683 0.44812685 0.56632519 0.44797578 0.50604558 0.35365269 0.50529528 0.34804612 + 0.5064683 0.35923877 0.50704145 0.36520106 0.5077008 0.37115034 0.5080204 0.37418848 + 0.5353173 0.41146517 0.53519154 0.41312081 0.53564942 0.3957783 0.53559721 0.4019652 + 0.5356735 0.3896156 0.53608525 0.37811726 0.53603411 0.38003623 0.53638101 0.37486488 + 0.53637624 0.36571813 0.53645754 0.37160742 0.53616679 0.35983083 0.53599453 0.35423872 + 0.53683901 0.34807208 0.56753755 0.47779977 0.5652827 0.47808698 0.58526421 0.47744715 + 0.57823718 0.47728932 0.59235132 0.47767097 0.60496682 0.47833675 0.60302383 0.47817355 + 0.53179741 0.43693036 0.53096271 0.44270825 0.53318167 0.43141699 0.53429496 0.42570835 + 0.53523302 0.41963506 0.53527629 0.4163692 0.50372332 0.40574381 0.50168437 0.40559635 + 0.51408768 0.40624508 0.50753641 0.40581664 0.52121401 0.40675291 0.52843869 0.40725079 + 0.53548157 0.40781084 0.54205215 0.40848431 0.54071724 0.40841502 0.5455879 0.40913624 + 0.55587649 0.41004679 0.54904449 0.40948069 0.56205952 0.41016388 0.56798327 0.41014633 + 0.57395351 0.41045901 0.59894741 0.48300806 0.59897506 0.48436353 0.59868866 0.47016239 + 0.59885126 0.47780785 0.59858012 0.46215841 0.59850329 0.45411289 0.59842193 0.44698352 + 0.59895957 0.43947285 0.59875202 0.44216031 0.47677836 0.40828452 0.47062168 0.40992042 + 0.48229674 0.40742275 0.48824927 0.40685937 0.49468791 0.40627167 0.49817631 0.40604511 + 0.54078853 0.38380447 0.54205012 0.38387799 0.52898955 0.38357973 0.53580201 0.38379538 + 0.52192247 0.38329795 0.51492691 0.38292998 0.50839341 0.38260943 0.50267971 0.382305 + 0.50467837 0.38234538 0.49924287 0.38169014 0.48905292 0.38053268 0.49587455 0.38128355 + 0.48297623 0.38011456 0.47719637 0.37970862 0.47068211 0.37835994 0.56982726 0.44309044 + 0.5694055 0.44058374 0.57093096 0.45460838 0.5705955 0.44769695 0.57109952 0.46224856 + 0.57133842 0.47005495 0.57183933 0.47720855 0.57192683 0.48366982 0.57192564 0.4822962 + 0.56721926 0.38195986 0.57261229 0.38114765 0.56163287 0.3822886 0.55574191 0.38251176 + 0.54932201 0.38302603 0.54572773 0.38341334; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 322 ".vt"; + setAttr ".vt[0:165]" 11.98245239 96.8085022 74.20733643 13.14677429 84.48868561 77.30686188 + 27.43138123 84.14548492 71.37966156 26.49604797 97.6607666 68.50406647 21.42710876 96.051856995 59.45363998 + 6.0001373291 95.75045776 65.17888641 22.24034119 82.06477356 62.46157455 7.98312378 81.30294037 68.65630341 + 20.21788025 83.87202454 75.1153717 18.89886475 97.61638641 71.69338989 13.44212341 96.48660278 61.71944427 + 14.71542358 80.74710846 65.019866943 12.037567139 90.76360321 76.38580322 19.97688293 90.966362 73.69067383 + 27.62060547 90.9701767 69.91107941 22.11109924 88.77565765 60.15574646 13.522995 88.50589752 62.704422 + 5.55332947 88.35842133 66.55447388 21.71398926 97.77012634 70.60522461 22.66609192 91.0063171387 72.50276947 + 22.98706055 83.87477875 73.94098663 17.55674744 80.73573303 63.71424484 16.50218201 88.58396912 61.633255 + 16.49560547 96.47284698 60.68214417 17.45777893 84.00046539307 76.073379517 17.25636292 90.91320038 74.79244232 + 16.16421509 97.36341858 72.69111633 10.50846863 96.47172546 62.89530182 10.55413818 88.41448212 63.79650879 + 12.065246582 80.88796234 66.29555511 11.86946106 93.16674805 75.82270813 17.0070037842 93.18470764 74.15919495 + 19.72888184 93.26842499 73.078262329 22.45075989 93.35914612 71.91062164 27.49760437 93.57714844 69.28452301 + 21.97242737 91.53002167 59.58985138 16.33203125 91.30561829 61.055198669 13.29722595 91.23976135 62.10935974 + 10.31117249 91.18969727 63.17481995 5.21923828 91.17675018 65.91662598 27.66581726 88.40258026 70.4888382 + 22.81643677 88.63162994 73.056190491 20.16381836 88.64218903 74.30290222 17.44845581 88.61093903 75.35655975 + 12.3238678 88.37212372 76.83983612 5.86410522 85.5657959 67.13497925 10.90113831 85.65595245 64.3671875 + 13.78971863 85.7558136 63.25851059 16.72296143 85.83640289 62.15462494 22.18634033 86.094909668 60.8331871 + 25.16577148 97.86956787 64.4189682 19.65809631 98.95191956 66.45954132 16.75538635 98.66782379 67.63259125 + 13.95565796 98.20733643 68.74959564 9.34020996 96.71430969 70.9545517 7.85601807 92.36991119 72.73111725 + 8.010971069 89.80180359 73.36971283 8.35321045 87.22802734 73.99000549 10.44340515 82.48547363 74.47412872 + 15.44711304 81.56481171 72.47016144 18.1534729 81.48550415 71.32204437 20.88294983 81.50144958 70.1157608 + 25.52017212 82.91928864 67.58737183 27.11169434 87.39482117 65.81759644 27.39141846 90.057884216 65.049278259 + 27.37322998 92.87416077 64.50713348 17.01852417 81.023918152 69.26205444 14.3216095 81.123703 70.42596436 + 9.39631653 81.99828339 72.36811066 7.33735657 86.68068695 71.77803802 7.056411743 89.29976654 71.13132477 + 6.81941223 91.93367004 70.52194977 8.24472046 96.34178162 68.99315643 12.81552124 97.78549194 66.77724457 + 15.61474609 98.21930695 65.59844208 18.55300903 98.46019745 64.44437408 23.90855408 97.40913391 62.39006424 + 25.79705811 92.3937912 62.55067062 25.82748413 89.64994049 63.21361542 25.61369324 86.99866486 63.9587059 + 24.31567383 82.49701691 65.675354 19.7649231 80.99310303 68.062973022 26.47688293 98.41638184 66.5846405 + 20.76873779 99.053001404 68.65616608 17.86872864 98.75076294 69.73828125 15.093063354 98.34981537 70.81908417 + 10.55656433 97.21325684 72.99271393 9.076950073 92.96155548 75.1055069 9.23439026 90.38562012 75.76210785 + 9.61106873 87.87001801 76.32147217 11.84147644 83.25083923 76.48430634 16.54647827 82.3658371 74.41351318 + 19.23881531 82.24201965 73.28922272 21.99081421 82.19664001 72.11341095 26.80836487 83.2794342 69.64330292 + 28.49917603 87.79394531 67.96338654 28.80206299 90.52628326 67.347435 28.7460022 93.40045929 66.78476715 + 15.89628601 80.66197205 67.21181488 13.21066284 80.79298401 68.44142914 8.46879578 81.53730011 70.36650085 + 6.2922821 86.1375885 69.73153687 6.010635376 88.86507416 69.048919678 5.76251221 91.58581543 68.4744873 + 7.059570313 96.13234711 67.15506744 11.61016846 97.37358856 64.88172913 14.49804688 97.7146759 63.68286896 + 17.4397583 97.89341736 62.46495438 22.65190125 96.85669708 60.54254913 24.1446228 91.9439621 60.84723282 + 24.18634033 89.20606995 61.51689148 24.096038818 86.55547333 62.26523209 23.20507813 82.15275574 63.85002136 + 18.68197632 80.56799316 66.011077881 15.010284424 84.22460938 76.80699158 14.82624817 88.53339386 76.17933655 + 14.60870361 90.84278107 75.68691254 14.40200806 93.13628387 75.10301208 13.75831604 97.073143005 73.57717133 + 12.60971069 97.92457581 71.84838104 11.45568848 97.64396667 69.86076355 10.27444458 97.21216583 67.88018799 + 9.13671875 96.9776001 66.080299377 7.8230896 96.34835052 64.20153046 7.55479431 91.1318512 64.28358459 + 7.90382385 88.33826447 64.88894653 8.24824524 85.52629852 65.48586273 9.64616394 81.015991211 67.55367279 + 10.75059509 80.96891022 69.53353882 11.78205872 81.33629608 71.48129272 12.91981506 81.77990723 73.52971649 + 14.053939819 82.57616425 75.46069336 24.36132813 97.76795959 69.50441742 25.047592163 93.45191956 70.67615509 + 25.2492981 91.022827148 71.26052856 25.35061646 88.5861969 71.82339478 25.53147888 83.97702026 72.64278412 + 24.61993408 82.38220215 70.85803986 23.46336365 81.83564758 68.85842896 22.34954834 81.30891418 66.84906769 + 21.34118652 80.82062531 64.90345001 20.3914032 81.050384521 62.61079025 19.52503967 85.89710236 61.10909271 + 19.3731842 88.65414429 60.57064819 19.2631073 91.43549347 60.028533936 19.37554932 96.43623352 59.77807617 + 20.31520081 97.82494354 61.4047699 21.44909668 98.31046295 63.3211937 22.54069519 98.75439453 65.33917999 + 23.67886353 99.055778503 67.52787018 11.87084961 95.30044556 75.031608582 14.16793823 95.23197174 74.39857483 + 16.68331909 95.32211304 73.49138641 19.40863037 95.46973419 72.45157623 22.13722229 95.59368134 71.31639862 + 24.74295044 95.72093201 70.11488342 27.063980103 95.9670639 68.79686737 28.25276184 96.23483276 66.41932678 + 26.81893921 95.62407684 64.12429047 25.3646698 95.091629028 62.14585114 23.80380249 94.57936859 60.4106369 + 21.75849915 94.13379669 59.27204132 19.1697998 94.007194519 59.63331223 16.25769043 93.89306641 60.57403946 + 13.21875 93.82125854 61.58806229 10.16835022 93.789505 62.64967728; + setAttr ".vt[166:321]" 7.49394226 93.79067993 63.70414734 5.1443634 94.069747925 65.49519348 + 5.8914032 94.23055267 67.94870758 6.97517395 94.41890717 69.90527344 8.1191864 94.8194809 71.97718811 + 9.37106323 95.40692902 74.21323395 27.6272583 86.072166443 71.0072097778 25.4163208 86.2751236 72.30218506 + 22.91014099 86.32821655 73.55545807 20.26313782 86.37715149 74.79781342 17.5539856 86.38093567 75.80709076 + 14.98857117 86.35086823 76.55516815 12.75358582 86.19325256 77.15814972 10.2454834 85.37291718 76.82928467 + 8.870224 84.71562195 74.52073669 7.78753662 84.14310455 72.4071579 6.78665161 83.5280838 70.39134979 + 6.49253845 82.74230957 67.86030579 8.75 82.92285156 66.091003418 11.27311707 83.040611267 64.92834473 + 14.10525513 83.097259521 63.76010895 17.016265869 83.17952728 62.60708618 19.71580505 83.38245392 61.61165619 + 22.24938965 83.71472931 61.61994553 23.85665894 84.17520142 63.029483795 25.22013855 84.58950043 64.73303986 + 26.60388184 84.94563293 66.58294678 28.076461792 85.30646515 68.68809509 26.75509644 98.36798096 67.73564911 + 24.15101624 98.86186981 68.76032257 21.32293701 98.83745575 69.88161469 18.43301392 98.60668945 70.9543457 + 15.65727234 98.24353027 71.95993042 13.19061279 97.86716461 72.89759827 11.21170044 97.28591156 73.82427216 + 10.47332764 95.60881805 75.082206726 10.31236267 93.25601196 76.093276978 10.49765015 90.69967651 76.69006348 + 10.86686707 88.20501709 77.11536407 11.42523193 85.78286743 77.41584015 12.4886322 83.76093292 77.14373779 + 14.58206177 83.20529938 76.35032654 17.054748535 83.0023345947 75.41548157 19.78918457 82.86779785 74.36328888 + 22.57592773 82.81219482 73.20302582 25.22712708 82.87562561 71.93971252 27.3299408 83.54826355 70.5896759 + 28.68127441 85.54747009 70.010742188 28.91049194 88.10717773 69.51255798 28.94244385 90.81375122 68.95560455 + 28.75805664 93.61558533 68.35822296 28.14468384 96.30963135 67.84786987 11.94985962 96.3433609 74.48091888 + 13.89274597 96.50453949 73.85424042 16.33395386 96.73193359 72.96274567 19.067352295 96.95248413 71.95503235 + 21.85275269 97.09249115 70.84310913 24.4906311 97.13279724 69.71643066 26.68276978 97.13448334 68.60829926 + 27.31365967 97.80725098 67.82324219 27.24833679 97.90184784 66.44132996 25.84413147 97.29508209 64.19174194 + 24.51509094 96.78784943 62.17798615 23.12046814 96.20275879 60.36552048 21.54980469 95.46563721 59.30086517 + 19.27703857 95.68438721 59.58488846 16.37112427 95.67430115 60.49642944 13.30178833 95.66765594 61.48244095 + 10.29495239 95.66888428 62.56183243 7.53927612 95.61451721 63.72024155 5.62280273 95.28100586 65.23415375 + 6.54769897 95.64559174 67.46550751 7.70291138 95.86078644 69.34438324 8.83016968 96.22809601 71.32348633 + 10.055801392 96.7726059 73.44837952 10.93693542 96.8535614 74.32289124 27.54205322 84.7974472 71.29556274 + 25.50013733 84.76013947 72.54081726 22.97102356 84.71179199 73.83132172 20.25402832 84.72975159 75.059150696 + 17.50489807 84.81407166 76.026481628 15.0097351074 84.9499588 76.74514008 13.015197754 85.068595886 77.27024078 + 12.08140564 84.39909363 77.45565033 11.15588379 83.84781647 76.79816437 9.70381165 83.084487915 74.65388489 + 8.63059998 82.55764008 72.53205109 7.6893158 82.042678833 70.48574829 7.34054565 81.64040375 68.3536377 + 9.22038269 81.46110535 66.86432648 11.69096375 81.44281769 65.61408997 14.40180969 81.38832855 64.35361481 + 17.29444885 81.44935608 63.1295166 20.14274597 81.75119019 62.081630707 22.27156067 82.59851074 62.12537003 + 23.490448 82.80304718 63.52857208 24.7147522 83.14627075 65.30554199 25.99487305 83.5248642 67.19076538 + 27.38595581 83.85074615 69.25776672 27.98780823 84.12723541 70.42059326 26.068115234 97.69037628 68.72067261 + 26.24728394 97.14202881 68.85509491 26.61203003 95.92966461 69.10391998 27.012115479 93.5586319 69.59177399 + 27.15419006 90.98823547 70.21424103 27.2114563 88.4465332 70.78916931 27.19265747 86.11869812 71.29660797 + 27.13687134 84.79206085 71.56604004 27.076126099 84.092880249 71.67936707 26.94850159 83.32913971 70.89859009 + 26.40386963 83.0019378662 69.89311981 25.14916992 82.59828949 67.83953094 23.97705078 82.14328003 65.90304565 + 22.89938354 81.74938202 64.035621643 21.90374756 81.77716827 62.4284668 21.86383057 82.35670471 61.97833633 + 21.74041748 83.59188843 61.44955826 21.63362122 86.013015747 60.72945023 21.53475952 88.71876526 60.095760345 + 21.40318298 91.48963928 59.55866623 21.21760559 94.10054779 59.24550629 21.079208374 95.51809692 59.29264069 + 21.0070648193 96.18460083 59.43178558 22.19429016 97.16741943 60.64702225 23.43052673 97.69326019 62.5401001 + 24.65000916 98.14417267 64.57480621 25.92735291 98.64910126 66.76202393 26.24075317 98.51071167 67.96374512 + 13.80354309 84.39219666 77.15668488 13.71742249 85.029975891 77.10858154 13.53952026 86.25204468 76.96941376 + 13.20239258 88.43244934 76.62833405 12.93928528 90.79499054 76.15701294 12.75990295 93.16316986 75.59375763 + 12.68066406 95.28836823 74.8379364 12.63340759 96.40953827 74.28083038 12.60624695 96.91342163 74.0035095215 + 11.89848328 97.55056 73.53128815 11.24963379 97.5376358 72.59970856 10.040924072 97.1341095 70.57553864 + 8.92269897 96.72492218 68.61038208 7.75036621 96.52029419 66.78391266 6.58135986 96.045898438 64.7971344 + 6.15890503 95.46005249 64.54206848 5.77662659 93.95565796 64.62242126 5.90254211 91.11544037 65.16454315 + 6.24731445 88.29761505 65.79359436 6.57278442 85.49232483 66.38596344 7.1758728 82.71683502 67.10339355 + 7.94592285 81.4894104 67.7765274 8.54534912 81.13381958 68.26434326 9.2497406 81.23782349 70.096672058 + 10.21186829 81.65891266 72.091003418 11.29263306 82.12414551 74.18854523 12.60968018 82.91876984 76.18341827 + 13.2277832 83.5196228 76.92292786; + setAttr -s 640 ".ed"; + setAttr ".ed[0:165]" 0 218 1 1 294 1 2 242 1 3 266 1 3 194 1 0 200 1 4 288 1 + 4 230 1 2 212 1 1 206 1 7 316 1 5 236 1 8 20 1 9 26 1 10 27 1 11 21 1 8 245 1 9 197 1 + 10 233 1 11 98 1 12 44 1 13 32 1 14 34 1 15 49 1 16 47 1 17 45 1 12 298 1 13 19 1 + 14 215 1 15 284 1 16 28 1 17 102 1 18 9 1 19 134 1 20 136 1 21 141 1 22 16 1 23 10 1 + 18 222 1 19 41 1 20 210 1 21 258 1 22 36 1 23 107 1 24 8 1 25 13 1 26 118 1 27 123 1 + 28 125 1 29 11 1 24 246 1 25 31 1 26 198 1 27 234 1 28 46 1 29 99 1 30 12 1 31 152 1 + 32 153 1 33 19 1 34 156 1 35 15 1 36 163 1 37 16 1 38 28 1 39 17 1 30 299 1 31 32 1 + 32 33 1 33 133 1 34 216 1 35 285 1 36 37 1 37 38 1 38 124 1 39 103 1 40 14 1 41 174 1 + 42 13 1 43 25 1 44 178 1 45 183 1 46 185 1 47 186 1 48 22 1 49 189 1 40 271 1 41 42 1 + 42 43 1 43 115 1 44 204 1 45 313 1 46 47 1 47 48 1 48 142 1 49 111 1 50 76 1 51 83 1 + 52 74 1 53 73 1 54 72 1 55 87 1 56 88 1 57 69 1 58 68 1 59 91 1 60 92 1 61 81 1 62 80 1 + 63 95 1 64 78 1 65 77 1 50 291 1 51 52 1 52 53 1 53 120 1 54 239 1 55 56 1 56 57 1 + 57 180 1 58 319 1 59 60 1 60 61 1 61 138 1 62 263 1 63 64 1 64 65 1 65 158 1 66 60 1 + 67 59 1 68 100 1 69 101 1 70 56 1 71 55 1 72 104 1 73 105 1 74 106 1 75 51 1 76 108 1 + 77 109 1 78 110 1 79 63 1 80 112 1 81 113 1 66 67 1 67 129 1 68 252 1 69 70 1 70 71 1 + 71 169 1 72 306 1 73 74 1 74 75 1 75 147 1 76 228 1 77 78 1 78 79 1 79 191 1 80 278 1 + 81 66 1 82 50 1 83 196 1 84 52 1 85 53 1 86 54 1 87 202 1; + setAttr ".ed[166:331]" 88 203 1 89 57 1 90 58 1 91 208 1 92 209 1 93 61 1 94 62 1 + 95 214 1 96 64 1 97 65 1 82 292 1 83 84 1 84 85 1 85 119 1 86 240 1 87 88 1 88 89 1 + 89 179 1 90 320 1 91 92 1 92 93 1 93 137 1 94 264 1 95 96 1 96 97 1 97 157 1 98 66 1 + 99 67 1 100 7 1 101 45 1 102 70 1 103 71 1 104 5 1 105 27 1 106 10 1 107 75 1 108 4 1 + 109 35 1 110 15 1 111 79 1 112 6 1 113 21 1 98 99 1 99 128 1 100 253 1 101 102 1 + 102 103 1 103 168 1 104 307 1 105 106 1 106 107 1 107 146 1 108 229 1 109 110 1 110 111 1 + 111 190 1 112 279 1 113 98 1 114 24 1 115 297 1 116 25 1 117 31 1 118 302 1 119 304 1 + 120 305 1 121 73 1 122 105 1 123 308 1 124 311 1 125 312 1 126 46 1 127 29 1 128 317 1 + 129 318 1 130 59 1 131 91 1 114 247 1 115 116 1 116 117 1 117 151 1 118 199 1 119 120 1 + 120 121 1 121 122 1 122 123 1 123 235 1 124 125 1 125 126 1 126 184 1 127 128 1 128 129 1 + 129 130 1 130 131 1 131 207 1 132 18 1 133 269 1 134 270 1 135 41 1 136 274 1 137 276 1 + 138 277 1 139 81 1 140 113 1 141 280 1 142 283 1 143 22 1 144 36 1 145 23 1 146 289 1 + 147 290 1 148 51 1 149 83 1 132 223 1 133 134 1 134 135 1 135 173 1 136 211 1 137 138 1 + 138 139 1 139 140 1 140 141 1 141 259 1 142 143 1 143 144 1 144 162 1 145 146 1 146 147 1 + 147 148 1 148 149 1 149 195 1 150 30 1 151 219 1 152 220 1 153 221 1 154 33 1 155 133 1 + 156 224 1 157 226 1 158 227 1 159 77 1 160 109 1 161 35 1 162 231 1 163 232 1 164 37 1 + 165 38 1 166 124 1 167 39 1 168 237 1 169 238 1 170 55 1 171 87 1 150 300 1 151 152 1 + 152 153 1 153 154 1 154 155 1 155 268 1 156 217 1 157 158 1 158 159 1 159 160 1 160 161 1 + 161 286 1 162 163 1 163 164 1; + setAttr ".ed[332:497]" 164 165 1 165 166 1 166 310 1 167 168 1 168 169 1 169 170 1 + 170 171 1 171 201 1 172 40 1 173 243 1 174 244 1 175 42 1 176 43 1 177 115 1 178 248 1 + 179 250 1 180 251 1 181 69 1 182 101 1 183 254 1 184 255 1 185 256 1 186 257 1 187 48 1 + 188 142 1 189 260 1 190 261 1 191 262 1 192 63 1 193 95 1 172 272 1 173 174 1 174 175 1 + 175 176 1 176 177 1 177 296 1 178 205 1 179 180 1 180 181 1 181 182 1 182 183 1 183 314 1 + 184 185 1 185 186 1 186 187 1 187 188 1 188 282 1 189 190 1 190 191 1 191 192 1 192 193 1 + 193 213 1 194 82 1 195 132 1 196 18 1 197 84 1 198 85 1 199 119 1 200 86 1 201 150 1 + 202 30 1 203 12 1 204 89 1 205 179 1 206 90 1 207 114 1 208 24 1 209 8 1 210 93 1 + 211 137 1 212 94 1 213 172 1 214 40 1 215 96 1 216 97 1 217 157 1 194 293 1 195 196 1 + 196 197 1 197 198 1 198 199 1 199 303 1 200 241 1 201 202 1 202 203 1 203 204 1 204 205 1 + 205 249 1 206 321 1 207 208 1 208 209 1 209 210 1 210 211 1 211 275 1 212 265 1 213 214 1 + 214 215 1 215 216 1 216 217 1 217 225 1 218 150 1 219 118 1 220 26 1 221 9 1 222 154 1 + 223 155 1 224 3 1 225 194 1 226 82 1 227 50 1 228 159 1 229 160 1 230 161 1 231 145 1 + 232 23 1 233 164 1 234 165 1 235 166 1 236 167 1 237 104 1 238 72 1 239 170 1 240 171 1 + 241 201 1 218 301 1 219 220 1 220 221 1 221 222 1 222 223 1 223 267 1 224 225 1 225 226 1 + 226 227 1 227 228 1 228 229 1 229 230 1 230 287 1 231 232 1 232 233 1 233 234 1 234 235 1 + 235 309 1 236 237 1 237 238 1 238 239 1 239 240 1 240 241 1 241 218 1 242 172 1 243 136 1 + 244 20 1 245 175 1 246 176 1 247 177 1 248 1 1 249 206 1 250 90 1 251 58 1 252 181 1 + 253 182 1 254 7 1 255 127 1 256 29 1 257 11 1 258 187 1 259 188 1; + setAttr ".ed[498:639]" 260 6 1 261 112 1 262 80 1 263 192 1 264 193 1 265 213 1 + 242 273 1 243 244 1 244 245 1 245 246 1 246 247 1 247 295 1 248 249 1 249 250 1 250 251 1 + 251 252 1 252 253 1 253 254 1 254 315 1 255 256 1 256 257 1 257 258 1 258 259 1 259 281 1 + 260 261 1 261 262 1 262 263 1 263 264 1 264 265 1 265 242 1 266 132 1 267 224 1 268 156 1 + 269 34 1 270 14 1 271 135 1 272 173 1 273 243 1 274 2 1 275 212 1 276 94 1 277 62 1 + 278 139 1 279 140 1 280 6 1 281 260 1 282 189 1 283 49 1 284 143 1 285 144 1 286 162 1 + 287 231 1 288 145 1 289 108 1 290 76 1 291 148 1 292 149 1 293 195 1 266 267 1 267 268 1 + 268 269 1 269 270 1 270 271 1 271 272 1 272 273 1 273 274 1 274 275 1 275 276 1 276 277 1 + 277 278 1 278 279 1 279 280 1 280 281 1 281 282 1 282 283 1 283 284 1 284 285 1 285 286 1 + 286 287 1 287 288 1 288 289 1 289 290 1 290 291 1 291 292 1 292 293 1 293 266 1 294 114 1 + 295 248 1 296 178 1 297 44 1 298 116 1 299 117 1 300 151 1 301 219 1 302 0 1 303 200 1 + 304 86 1 305 54 1 306 121 1 307 122 1 308 5 1 309 236 1 310 167 1 311 39 1 312 17 1 + 313 126 1 314 184 1 315 255 1 316 127 1 317 100 1 318 68 1 319 130 1 320 131 1 321 207 1 + 294 295 1 295 296 1 296 297 1 297 298 1 298 299 1 299 300 1 300 301 1 301 302 1 302 303 1 + 303 304 1 304 305 1 305 306 1 306 307 1 307 308 1 308 309 1 309 310 1 310 311 1 311 312 1 + 312 313 1 313 314 1 314 315 1 315 316 1 316 317 1 317 318 1 318 319 1 319 320 1 320 321 1 + 321 294 1; + setAttr -s 320 -ch 1280 ".fc[0:319]" -type "polyFaces" + f 4 0 456 619 592 + mu 0 4 0 1 2 3 + f 4 -593 620 593 -6 + mu 0 4 0 3 4 5 + f 4 462 439 -5 -439 + mu 0 4 6 7 8 9 + f 4 420 639 -2 9 + mu 0 4 10 11 12 13 + f 4 414 479 -1 5 + mu 0 4 14 15 1 0 + f 4 -599 626 599 -12 + mu 0 4 16 17 18 19 + f 4 556 529 438 3 + mu 0 4 20 21 6 9 + f 4 408 583 -4 4 + mu 0 4 22 23 20 9 + f 4 468 577 -7 7 + mu 0 4 24 25 26 27 + f 4 -537 564 537 -9 + mu 0 4 28 29 30 31 + f 4 612 585 486 1 + mu 0 4 12 32 33 13 + f 4 504 563 536 2 + mu 0 4 34 35 29 28 + f 4 426 527 -3 8 + mu 0 4 36 37 34 28 + f 4 570 543 498 -543 + mu 0 4 38 39 40 41 + f 4 516 633 -11 -493 + mu 0 4 42 43 44 45 + f 4 -487 510 487 -10 + mu 0 4 13 33 46 47 + f 4 -436 459 -39 32 + mu 0 4 48 49 50 51 + f 4 -483 506 -17 12 + mu 0 4 52 53 54 55 + f 4 423 -41 -13 -400 + mu 0 4 56 57 52 55 + f 4 -496 519 -42 -16 + mu 0 4 58 59 60 61 + f 4 -447 470 -19 -38 + mu 0 4 62 63 64 65 + f 4 410 -18 -33 -387 + mu 0 4 66 67 48 51 + f 4 507 -51 44 16 + mu 0 4 54 68 69 55 + f 4 -435 458 435 13 + mu 0 4 70 71 49 48 + f 4 411 -53 -14 17 + mu 0 4 67 72 70 48 + f 4 471 -54 -15 18 + mu 0 4 64 73 74 65 + f 4 -495 518 495 -50 + mu 0 4 75 76 59 58 + f 4 422 399 -45 -399 + mu 0 4 77 56 55 69 + f 4 616 -67 56 26 + mu 0 4 78 79 80 81 + f 4 -68 -52 45 21 + mu 0 4 82 83 84 85 + f 4 -69 -22 27 -60 + mu 0 4 86 82 85 87 + f 4 -532 559 532 22 + mu 0 4 88 89 90 91 + f 4 429 -71 -23 28 + mu 0 4 92 93 88 91 + f 4 29 574 -72 61 + mu 0 4 94 95 96 97 + f 4 -73 -43 36 -64 + mu 0 4 98 99 100 101 + f 4 -65 -74 63 30 + mu 0 4 102 103 98 101 + f 4 -602 629 602 -66 + mu 0 4 104 105 106 107 + f 4 416 393 -57 -393 + mu 0 4 108 109 81 80 + f 4 -533 560 -87 76 + mu 0 4 91 90 110 111 + f 4 -88 -40 -28 -79 + mu 0 4 112 113 87 85 + f 4 -46 -80 -89 78 + mu 0 4 85 84 114 112 + f 4 -588 615 -27 20 + mu 0 4 115 116 78 81 + f 4 417 -91 -21 -394 + mu 0 4 109 117 115 81 + f 4 -603 630 -92 -26 + mu 0 4 107 106 118 119 + f 4 -93 -55 -31 24 + mu 0 4 120 121 102 101 + f 4 -94 -25 -37 -85 + mu 0 4 122 120 101 100 + f 4 -546 573 -30 23 + mu 0 4 123 124 95 94 + f 4 428 -29 -77 -405 + mu 0 4 125 92 91 111 + f 4 578 551 202 6 + mu 0 4 126 127 128 129 + f 4 -201 216 -44 37 + mu 0 4 130 131 132 133 + f 4 -200 215 200 14 + mu 0 4 134 135 131 130 + f 4 214 625 598 -199 + mu 0 4 136 137 138 139 + f 4 474 451 198 11 + mu 0 4 140 141 142 143 + f 4 31 212 -76 65 + mu 0 4 144 145 146 147 + f 4 -196 211 -32 25 + mu 0 4 148 149 145 144 + f 4 210 515 492 -195 + mu 0 4 150 151 152 153 + f 4 634 607 194 10 + mu 0 4 154 155 156 157 + f 4 19 208 -56 49 + mu 0 4 158 159 160 161 + f 4 -208 223 -20 15 + mu 0 4 162 163 159 158 + f 4 222 569 542 -207 + mu 0 4 164 165 166 167 + f 4 522 499 206 -499 + mu 0 4 168 169 170 171 + f 4 -205 220 -96 -24 + mu 0 4 172 173 174 175 + f 4 -204 219 204 -62 + mu 0 4 176 177 173 172 + f 4 -203 218 467 -8 + mu 0 4 178 179 180 181 + f 4 -145 128 -122 -130 + mu 0 4 182 183 184 185 + f 4 -609 636 -121 104 + mu 0 4 186 187 188 189 + f 4 -490 513 -147 -105 + mu 0 4 190 191 192 193 + f 4 -148 -104 -119 -133 + mu 0 4 194 195 196 197 + f 4 -149 132 -118 -134 + mu 0 4 198 194 197 199 + f 4 -453 476 -117 100 + mu 0 4 200 201 202 203 + f 4 -596 623 -151 -101 + mu 0 4 204 205 206 207 + f 4 -152 -100 -115 98 + mu 0 4 208 209 210 211 + f 4 -153 -99 -114 -138 + mu 0 4 212 208 211 213 + f 4 -553 580 -113 96 + mu 0 4 214 215 216 217 + f 4 465 -155 -97 -442 + mu 0 4 218 219 220 221 + f 4 -156 -112 -127 110 + mu 0 4 222 223 224 225 + f 4 -157 -111 -126 -142 + mu 0 4 226 222 225 227 + f 4 -501 524 -125 108 + mu 0 4 228 229 230 231 + f 4 -540 567 -159 -109 + mu 0 4 232 233 234 235 + f 4 -160 -108 -123 -129 + mu 0 4 183 236 237 184 + f 4 112 581 -177 160 + mu 0 4 217 216 238 239 + f 4 113 -163 -178 -98 + mu 0 4 213 211 240 241 + f 4 114 -164 -179 162 + mu 0 4 211 210 242 240 + f 4 -595 622 595 -165 + mu 0 4 243 244 205 204 + f 4 116 477 -181 164 + mu 0 4 203 202 245 246 + f 4 117 102 -182 -102 + mu 0 4 199 197 247 248 + f 4 118 -168 -183 -103 + mu 0 4 197 196 249 247 + f 4 -489 512 489 -169 + mu 0 4 250 251 191 190 + f 4 120 637 -185 168 + mu 0 4 189 188 252 253 + f 4 121 106 -186 -106 + mu 0 4 185 184 254 255 + f 4 122 -172 -187 -107 + mu 0 4 184 237 256 254 + f 4 -539 566 539 -173 + mu 0 4 257 258 233 232 + f 4 124 525 -189 172 + mu 0 4 231 230 259 260 + f 4 125 -175 -190 -110 + mu 0 4 227 225 261 262 + f 4 126 -176 -191 174 + mu 0 4 225 224 263 261 + f 4 464 441 -161 -441 + mu 0 4 264 218 221 265 + f 4 -209 192 144 -194 + mu 0 4 160 159 183 182 + f 4 -608 635 608 130 + mu 0 4 156 155 187 186 + f 4 146 514 -211 -131 + mu 0 4 193 192 151 150 + f 4 -212 -132 147 -197 + mu 0 4 145 149 195 194 + f 4 -213 196 148 -198 + mu 0 4 146 145 194 198 + f 4 -452 475 452 134 + mu 0 4 142 141 201 200 + f 4 150 624 -215 -135 + mu 0 4 207 206 137 136 + f 4 -216 -136 151 136 + mu 0 4 131 135 209 208 + f 4 -217 -137 152 -202 + mu 0 4 132 131 208 212 + f 4 -552 579 552 138 + mu 0 4 128 127 215 214 + f 4 466 -219 -139 154 + mu 0 4 219 180 179 220 + f 4 -220 -140 155 140 + mu 0 4 173 177 223 222 + f 4 -221 -141 156 -206 + mu 0 4 174 173 222 226 + f 4 -500 523 500 142 + mu 0 4 170 169 229 228 + f 4 158 568 -223 -143 + mu 0 4 235 234 165 164 + f 4 -224 -144 159 -193 + mu 0 4 159 163 236 183 + f 4 50 508 -243 224 + mu 0 4 69 68 266 267 + f 4 -244 -90 79 -227 + mu 0 4 268 269 114 84 + f 4 -228 -245 226 51 + mu 0 4 83 270 268 84 + f 4 -434 457 434 46 + mu 0 4 271 272 71 70 + f 4 412 -247 -47 52 + mu 0 4 72 273 271 70 + f 4 -248 -180 163 115 + mu 0 4 274 275 242 210 + f 4 -249 -116 99 -232 + mu 0 4 276 274 210 209 + f 4 -250 231 135 -233 + mu 0 4 277 276 209 135 + f 4 -251 232 199 47 + mu 0 4 278 277 135 134 + f 4 472 -252 -48 53 + mu 0 4 73 279 280 74 + f 4 -253 -75 64 48 + mu 0 4 281 282 103 102 + f 4 -254 -49 54 -237 + mu 0 4 283 281 102 121 + f 4 -494 517 494 -238 + mu 0 4 284 285 76 75 + f 4 55 209 -256 237 + mu 0 4 161 160 286 287 + f 4 -257 -210 193 145 + mu 0 4 288 286 160 182 + f 4 -258 -146 129 -241 + mu 0 4 289 288 182 185 + f 4 -259 240 105 -242 + mu 0 4 290 289 185 255 + f 4 -398 421 398 -225 + mu 0 4 267 291 77 69 + f 4 38 460 -279 260 + mu 0 4 51 50 292 293 + f 4 -280 -70 59 33 + mu 0 4 294 295 86 87 + f 4 -281 -34 39 -264 + mu 0 4 296 294 87 113 + f 4 -482 505 482 34 + mu 0 4 297 298 53 52 + f 4 424 -283 -35 40 + mu 0 4 57 299 297 52 + f 4 -284 -188 171 123 + mu 0 4 300 301 256 237 + f 4 -285 -124 107 -268 + mu 0 4 302 300 237 236 + f 4 -286 267 143 -269 + mu 0 4 303 302 236 163 + f 4 -287 268 207 35 + mu 0 4 304 303 163 162 + f 4 41 520 -288 -36 + mu 0 4 61 60 305 306 + f 4 -289 -95 84 -272 + mu 0 4 307 308 122 100 + f 4 -290 271 42 -273 + mu 0 4 309 307 100 99 + f 4 -446 469 446 -274 + mu 0 4 310 311 63 62 + f 4 43 217 -292 273 + mu 0 4 133 132 312 313 + f 4 -293 -218 201 153 + mu 0 4 314 312 132 212 + f 4 -294 -154 137 -277 + mu 0 4 315 314 212 213 + f 4 -295 276 97 -278 + mu 0 4 316 315 213 241 + f 4 -386 409 386 -261 + mu 0 4 293 317 66 51 + f 4 617 -319 296 66 + mu 0 4 79 318 319 80 + f 4 -320 -246 227 57 + mu 0 4 320 321 270 83 + f 4 -321 -58 67 58 + mu 0 4 322 320 83 82 + f 4 -322 -59 68 -301 + mu 0 4 323 322 82 86 + f 4 -323 300 69 -302 + mu 0 4 324 323 86 295 + f 4 -531 558 531 60 + mu 0 4 325 326 89 88 + f 4 430 -325 -61 70 + mu 0 4 93 327 325 88 + f 4 127 -326 -192 175 + mu 0 4 224 328 329 263 + f 4 -306 -327 -128 111 + mu 0 4 223 330 328 224 + f 4 -307 -328 305 139 + mu 0 4 177 331 330 223 + f 4 -329 306 203 -308 + mu 0 4 332 331 177 176 + f 4 71 575 -330 307 + mu 0 4 97 96 333 334 + f 4 -331 -291 272 62 + mu 0 4 335 336 309 99 + f 4 -332 -63 72 -311 + mu 0 4 337 335 99 98 + f 4 73 -312 -333 310 + mu 0 4 98 103 338 337 + f 4 -313 -334 311 74 + mu 0 4 282 339 338 103 + f 4 -601 628 601 -314 + mu 0 4 340 341 105 104 + f 4 75 213 -336 313 + mu 0 4 147 146 342 343 + f 4 -337 -214 197 149 + mu 0 4 344 342 146 198 + f 4 -338 -150 133 -317 + mu 0 4 345 344 198 199 + f 4 -339 316 101 -318 + mu 0 4 346 345 199 248 + f 4 -392 415 392 -297 + mu 0 4 319 347 108 80 + f 4 86 561 -363 340 + mu 0 4 111 110 348 349 + f 4 -364 -282 263 77 + mu 0 4 350 351 296 113 + f 4 -365 -78 87 -344 + mu 0 4 352 350 113 112 + f 4 88 -345 -366 343 + mu 0 4 112 114 353 352 + f 4 -367 344 89 -346 + mu 0 4 354 353 114 269 + f 4 -587 614 587 80 + mu 0 4 355 356 116 115 + f 4 418 -369 -81 90 + mu 0 4 117 357 355 115 + f 4 -370 -184 167 119 + mu 0 4 358 359 249 196 + f 4 -371 -120 103 -350 + mu 0 4 360 358 196 195 + f 4 -372 349 131 -351 + mu 0 4 361 360 195 149 + f 4 -373 350 195 81 + mu 0 4 362 361 149 148 + f 4 91 631 -374 -82 + mu 0 4 119 118 363 364 + f 4 -375 -255 236 82 + mu 0 4 365 366 283 121 + f 4 -376 -83 92 83 + mu 0 4 367 365 121 120 + f 4 -377 -84 93 -356 + mu 0 4 368 367 120 122 + f 4 -378 355 94 -357 + mu 0 4 369 368 122 308 + f 4 -545 572 545 85 + mu 0 4 370 371 124 123 + f 4 95 221 -380 -86 + mu 0 4 175 174 372 373 + f 4 -381 -222 205 157 + mu 0 4 374 372 174 226 + f 4 -382 -158 141 -361 + mu 0 4 375 374 226 227 + f 4 -383 360 109 -362 + mu 0 4 376 375 227 262 + f 4 -404 427 404 -341 + mu 0 4 349 377 125 111 + f 4 176 582 -409 384 + mu 0 4 239 238 23 22 + f 4 -410 -296 277 161 + mu 0 4 66 317 316 241 + f 4 177 -388 -411 -162 + mu 0 4 241 240 67 66 + f 4 178 -389 -412 387 + mu 0 4 240 242 72 67 + f 4 -390 -413 388 179 + mu 0 4 275 273 72 242 + f 4 -594 621 594 -391 + mu 0 4 5 4 244 243 + f 4 180 478 -415 390 + mu 0 4 246 245 15 14 + f 4 -416 -340 317 165 + mu 0 4 108 347 346 248 + f 4 181 166 -417 -166 + mu 0 4 248 247 109 108 + f 4 182 -395 -418 -167 + mu 0 4 247 249 117 109 + f 4 -396 -419 394 183 + mu 0 4 359 357 117 249 + f 4 -488 511 488 -397 + mu 0 4 47 46 251 250 + f 4 184 638 -421 396 + mu 0 4 253 252 11 10 + f 4 -422 -260 241 169 + mu 0 4 77 291 290 255 + f 4 185 170 -423 -170 + mu 0 4 255 254 56 77 + f 4 186 -401 -424 -171 + mu 0 4 254 256 57 56 + f 4 -402 -425 400 187 + mu 0 4 301 299 57 256 + f 4 -538 565 538 -403 + mu 0 4 31 30 258 257 + f 4 188 526 -427 402 + mu 0 4 260 259 37 36 + f 4 -428 -384 361 173 + mu 0 4 125 377 376 262 + f 4 189 -406 -429 -174 + mu 0 4 262 261 92 125 + f 4 190 -407 -430 405 + mu 0 4 261 263 93 92 + f 4 191 -408 -431 406 + mu 0 4 263 329 327 93 + f 4 -440 463 440 -385 + mu 0 4 8 7 264 265 + f 4 618 -457 432 318 + mu 0 4 318 2 1 319 + f 4 -458 -298 319 298 + mu 0 4 71 272 321 320 + f 4 -459 -299 320 299 + mu 0 4 49 71 320 322 + f 4 -460 -300 321 -437 + mu 0 4 50 49 322 323 + f 4 -461 436 322 -438 + mu 0 4 292 50 323 324 + f 4 -530 557 530 302 + mu 0 4 6 21 326 325 + f 4 324 431 -463 -303 + mu 0 4 325 327 7 6 + f 4 -464 -432 407 303 + mu 0 4 264 7 327 329 + f 4 325 304 -465 -304 + mu 0 4 329 328 218 264 + f 4 326 -443 -466 -305 + mu 0 4 328 330 219 218 + f 4 327 -444 -467 442 + mu 0 4 330 331 180 219 + f 4 -468 443 328 -445 + mu 0 4 181 180 331 332 + f 4 329 576 -469 444 + mu 0 4 334 333 25 24 + f 4 -470 -309 330 309 + mu 0 4 63 311 336 335 + f 4 -471 -310 331 -448 + mu 0 4 64 63 335 337 + f 4 332 -449 -472 447 + mu 0 4 337 338 73 64 + f 4 333 -450 -473 448 + mu 0 4 338 339 279 73 + f 4 -600 627 600 -451 + mu 0 4 19 18 341 340 + f 4 335 314 -475 450 + mu 0 4 343 342 141 140 + f 4 -476 -315 336 315 + mu 0 4 201 141 342 344 + f 4 -477 -316 337 -454 + mu 0 4 202 201 344 345 + f 4 -478 453 338 -455 + mu 0 4 245 202 345 346 + f 4 -479 454 339 -456 + mu 0 4 15 245 346 347 + f 4 -480 455 391 -433 + mu 0 4 1 15 347 319 + f 4 362 562 -505 480 + mu 0 4 349 348 35 34 + f 4 -506 -342 363 342 + mu 0 4 53 298 351 350 + f 4 -507 -343 364 -484 + mu 0 4 54 53 350 352 + f 4 365 -485 -508 483 + mu 0 4 352 353 68 54 + f 4 -509 484 366 -486 + mu 0 4 266 68 353 354 + f 4 -586 613 586 346 + mu 0 4 33 32 356 355 + f 4 -511 -347 368 419 + mu 0 4 46 33 355 357 + f 4 -512 -420 395 347 + mu 0 4 251 46 357 359 + f 4 -513 -348 369 348 + mu 0 4 191 251 359 358 + f 4 -514 -349 370 -491 + mu 0 4 192 191 358 360 + f 4 -515 490 371 -492 + mu 0 4 151 192 360 361 + f 4 -516 491 372 351 + mu 0 4 152 151 361 362 + f 4 373 632 -517 -352 + mu 0 4 364 363 43 42 + f 4 -518 -353 374 353 + mu 0 4 76 285 366 365 + f 4 -519 -354 375 354 + mu 0 4 59 76 365 367 + f 4 -520 -355 376 -497 + mu 0 4 60 59 367 368 + f 4 -521 496 377 -498 + mu 0 4 305 60 368 369 + f 4 -544 571 544 357 + mu 0 4 40 39 371 370 + f 4 379 358 -523 -358 + mu 0 4 373 372 169 168 + f 4 -524 -359 380 359 + mu 0 4 229 169 372 374 + f 4 -525 -360 381 -502 + mu 0 4 230 229 374 375 + f 4 -526 501 382 -503 + mu 0 4 259 230 375 376 + f 4 -527 502 383 -504 + mu 0 4 37 259 376 377 + f 4 -528 503 403 -481 + mu 0 4 34 37 377 349 + f 4 278 461 -557 528 + mu 0 4 293 292 21 20 + f 4 -558 -462 437 323 + mu 0 4 326 21 292 324 + f 4 -559 -324 301 261 + mu 0 4 89 326 324 295 + f 4 -560 -262 279 262 + mu 0 4 90 89 295 294 + f 4 -561 -263 280 -534 + mu 0 4 110 90 294 296 + f 4 -562 533 281 -535 + mu 0 4 348 110 296 351 + f 4 -563 534 341 -536 + mu 0 4 35 348 351 298 + f 4 -564 535 481 264 + mu 0 4 29 35 298 297 + f 4 -565 -265 282 425 + mu 0 4 30 29 297 299 + f 4 -566 -426 401 265 + mu 0 4 258 30 299 301 + f 4 -567 -266 283 266 + mu 0 4 233 258 301 300 + f 4 -568 -267 284 -541 + mu 0 4 234 233 300 302 + f 4 -569 540 285 -542 + mu 0 4 165 234 302 303 + f 4 -570 541 286 269 + mu 0 4 166 165 303 304 + f 4 287 521 -571 -270 + mu 0 4 306 305 39 38 + f 4 -572 -522 497 378 + mu 0 4 371 39 305 369 + f 4 -573 -379 356 270 + mu 0 4 124 371 369 308 + f 4 -574 -271 288 -547 + mu 0 4 95 124 308 307 + f 4 -575 546 289 -548 + mu 0 4 96 95 307 309 + f 4 -576 547 290 -549 + mu 0 4 333 96 309 336 + f 4 -577 548 308 -550 + mu 0 4 25 333 336 311 + f 4 -578 549 445 -551 + mu 0 4 26 25 311 310 + f 4 291 274 -579 550 + mu 0 4 313 312 127 126 + f 4 -580 -275 292 275 + mu 0 4 215 127 312 314 + f 4 -581 -276 293 -554 + mu 0 4 216 215 314 315 + f 4 -582 553 294 -555 + mu 0 4 238 216 315 316 + f 4 -583 554 295 -556 + mu 0 4 23 238 316 317 + f 4 -584 555 385 -529 + mu 0 4 20 23 317 293 + f 4 242 509 -613 584 + mu 0 4 267 266 32 12 + f 4 -614 -510 485 367 + mu 0 4 356 32 266 354 + f 4 -615 -368 345 225 + mu 0 4 116 356 354 269 + f 4 -616 -226 243 -589 + mu 0 4 78 116 269 268 + f 4 244 -590 -617 588 + mu 0 4 268 270 79 78 + f 4 -591 -618 589 245 + mu 0 4 321 318 79 270 + f 4 -592 -619 590 297 + mu 0 4 272 2 318 321 + f 4 -620 591 433 228 + mu 0 4 3 2 272 271 + f 4 -621 -229 246 413 + mu 0 4 4 3 271 273 + f 4 -622 -414 389 229 + mu 0 4 244 4 273 275 + f 4 -623 -230 247 230 + mu 0 4 205 244 275 274 + f 4 -624 -231 248 -597 + mu 0 4 206 205 274 276 + f 4 -625 596 249 -598 + mu 0 4 137 206 276 277 + f 4 -626 597 250 233 + mu 0 4 138 137 277 278 + f 4 -627 -234 251 473 + mu 0 4 18 17 280 279 + f 4 -628 -474 449 334 + mu 0 4 341 18 279 339 + f 4 -629 -335 312 234 + mu 0 4 105 341 339 282 + f 4 -630 -235 252 235 + mu 0 4 106 105 282 281 + f 4 -631 -236 253 -604 + mu 0 4 118 106 281 283 + f 4 -632 603 254 -605 + mu 0 4 363 118 283 366 + f 4 -633 604 352 -606 + mu 0 4 43 363 366 285 + f 4 -634 605 493 -607 + mu 0 4 44 43 285 284 + f 4 255 238 -635 606 + mu 0 4 287 286 155 154 + f 4 -636 -239 256 239 + mu 0 4 187 155 286 288 + f 4 -637 -240 257 -610 + mu 0 4 188 187 288 289 + f 4 -638 609 258 -611 + mu 0 4 252 188 289 290 + f 4 -639 610 259 -612 + mu 0 4 11 252 290 291 + f 4 -640 611 397 -585 + mu 0 4 12 11 291 267; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; +createNode transform -n "eye_r" -p "blue_bomb_grp"; + rename -uid "DA1B888F-49A3-54F9-F6C0-148DFB88123A"; + setAttr ".t" -type "double3" -2.8169447790621143 18.145431213041878 12.660646835006716 ; + setAttr ".r" -type "double3" 0.88176590987788694 -0.0084646653340942433 0.36699586121667371 ; + setAttr ".s" -type "double3" 0.80732082168787533 0.80732082168787533 0.80732082168787533 ; + setAttr ".rp" -type "double3" -13.759494619287313 72.507005468632826 55.180845042541172 ; + setAttr ".rpt" -type "double3" -0.46696422713885644 -0.94742633616765182 1.1072504741032434 ; + setAttr ".sp" -type "double3" -17.043403625488281 89.811885833740234 68.350578308105469 ; + setAttr ".spt" -type "double3" 3.2839090062009673 -17.304880365107415 -13.169733265564297 ; +createNode mesh -n "eye_rShape" -p "eye_r"; + rename -uid "DD3063C2-40AB-D23E-D3DE-BD9C00EB5670"; + setAttr -k off ".v"; + setAttr ".iog[0].og[0].gcl" -type "componentList" 1 "f[0:319]"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 378 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.4424673 0.46585274 0.44063771 + 0.46620321 0.44073743 0.46471506 0.44258714 0.46439141 0.44377381 0.46811062 0.44187725 + 0.46860808 0.40279588 0.46717453 0.40297189 0.46867657 0.40008163 0.47059357 0.39981401 + 0.46862739 0.44239837 0.43092468 0.4413265 0.4334231 0.43945074 0.43319055 0.44041055 + 0.43060091 0.44519264 0.46711779 0.44548857 0.46538565 0.53933877 0.50317419 0.53798902 + 0.50402081 0.53824794 0.50180066 0.54009247 0.50132883 0.40435907 0.46870643 0.40411142 + 0.46722317 0.40203387 0.47131342 0.40346694 0.47142974 0.53726578 0.46093014 0.53880543 + 0.46119824 0.53914934 0.46225834 0.53743982 0.46210298 0.4025887 0.4342832 0.4019334 + 0.43164504 0.40323189 0.4313795 0.40391576 0.4341059 0.44154328 0.43504703 0.43967998 + 0.43486035 0.40254837 0.43607056 0.40378746 0.43589991 0.39966363 0.43299854 0.39949554 + 0.43514106 0.50164479 0.46340242 0.50211841 0.46236572 0.50372636 0.46212327 0.50349468 + 0.46333694 0.50165671 0.50365281 0.49986768 0.50270462 0.49971992 0.50089318 0.50175172 + 0.50151837 0.4438982 0.43189347 0.44434482 0.43386093 0.42384189 0.46812528 0.41640893 + 0.46852875 0.41629213 0.46675223 0.42367274 0.46632886 0.41550449 0.43312252 0.4227376 + 0.43274361 0.42273623 0.4348453 0.41554043 0.43517527 0.422847 0.42951444 0.41547549 + 0.42982537 0.49944007 0.48314875 0.49958324 0.47524571 0.50197244 0.47533357 0.50188267 + 0.48318902 0.54040164 0.47405231 0.54072225 0.48218438 0.53857064 0.48237208 0.53833896 + 0.47427991 0.41669419 0.47179174 0.42430341 0.47133464 0.42982328 0.43264925 0.42981106 + 0.43467104 0.43103468 0.46753448 0.4308542 0.46577621 0.43164146 0.47059739 0.54097056 + 0.49017262 0.5387454 0.4903802 0.49960136 0.4905943 0.50198895 0.49068519 0.43005329 + 0.4295415 0.44063222 0.44972163 0.44285613 0.449635 0.44294089 0.45567459 0.44076866 + 0.45577914 0.42299324 0.45665592 0.42280978 0.4506779 0.42984241 0.45027602 0.43005037 + 0.45624799 0.41584355 0.45708668 0.41575766 0.45103925 0.40220734 0.45795625 0.40239519 + 0.4515233 0.40372398 0.45149082 0.40356877 0.45790106 0.39848769 0.45141357 0.39850211 + 0.45807862 0.52013391 0.4607532 0.52723396 0.46047086 0.52726132 0.46189749 0.52016973 + 0.46220869 0.52735871 0.48316288 0.52033937 0.4833262 0.52033734 0.47541329 0.52730536 + 0.47514164 0.52029485 0.49124211 0.527408 0.49107522 0.52738142 0.50574887 0.5200277 + 0.50576299 0.52009976 0.50317967 0.52737504 0.50320649 0.44667524 0.45573148 0.44661376 + 0.44954005 0.402484 0.44521469 0.40379819 0.44519198 0.42272681 0.44467324 0.41568139 + 0.44498497 0.42972875 0.44430175 0.44258225 0.44363502 0.44039613 0.4437058 0.44618797 + 0.44345796 0.51277035 0.5056355 0.51287645 0.50306153 0.51329303 0.48336816 0.51322019 + 0.49109682 0.51332819 0.47554284 0.5131681 0.46126735 0.5132001 0.46268713 0.39859593 + 0.4449842 0.40884644 0.49798453 0.40771449 0.49776921 0.40579838 0.49339971 0.40720421 + 0.49321973 0.43014404 0.4976339 0.42148411 0.49831054 0.42042163 0.49226177 0.42868674 + 0.49146536 0.43842906 0.49630651 0.43678871 0.49042767 0.44992581 0.48778552 0.45134029 + 0.4933351 0.44951335 0.49385664 0.44777688 0.48821381 0.47291645 0.4691608 0.47223675 + 0.47055322 0.46646678 0.47013193 0.4668583 0.46823037 0.4754265 0.45018399 0.47523308 + 0.45813555 0.46870562 0.457284 0.4689877 0.44997197 0.47523174 0.44229728 0.46853149 + 0.44257119 0.46647245 0.42890894 0.47120458 0.42890635 0.4723824 0.43062466 0.46680284 + 0.43124011 0.44282702 0.40451911 0.44456086 0.40498978 0.44505131 0.40951955 0.44284856 + 0.40947291 0.42454064 0.40252113 0.43240261 0.40293598 0.43180323 0.40898043 0.42409736 + 0.4087154 0.41611147 0.40261132 0.41618651 0.40899301 0.40236521 0.41021186 0.40278822 + 0.40582743 0.4038046 0.405278 0.40371722 0.41012755 0.37289938 0.43342471 0.3734284 + 0.43189406 0.37774968 0.43156534 0.37764168 0.43352333 0.36994383 0.45071974 0.37070847 + 0.44312292 0.37669849 0.44386256 0.37617561 0.45111811 0.36982882 0.45857406 0.3761318 + 0.45855275 0.37160754 0.47096199 0.37115958 0.46939737 0.37637365 0.46996018 0.37632549 + 0.47203463 0.43125522 0.41466457 0.43075311 0.42052287 0.42330396 0.42043528 0.423702 + 0.41456363 0.4449282 0.41530082 0.44454369 0.42154273 0.44214481 0.42133018 0.44261026 + 0.41518888 0.45383942 0.42947388 0.46041709 0.42902198 0.46085298 0.43142083 0.45449293 + 0.4318299 0.46315306 0.44970301 0.4571178 0.44953269 0.45656788 0.44286197 0.46268156 + 0.44272703 0.46301579 0.45671234 0.45703021 0.4562045 0.46078941 0.46956006 0.45479351 + 0.46885908 0.45528287 0.46693054 0.46123931 0.46757236 0.44684651 0.47673765 0.44832367 + 0.48242268 0.44620436 0.48291582 0.44465792 0.47724041 0.42729396 0.48600802 0.42593342 + 0.48032629 0.43361175 0.47943839 0.43510777 0.4849982 0.41917169 0.48660558 0.41798586 + 0.48097894 0.40409732 0.48760229 0.4026396 0.48131791 0.40417147 0.48132646 0.40554622 + 0.48747715 0.38901314 0.47031128 0.38921311 0.47258317 0.38249946 0.47257984 0.38248876 + 0.47036052 0.38205788 0.45131761 0.3879737 0.45139718 0.38826087 0.45845675 0.38206148 + 0.45854399 0.38240156 0.44424427 0.38832086 0.44450718 0.38341007 0.43147057 0.38959098 + 0.43167475 0.38935399 0.43382326 0.38328171 0.43359095 0.4015848 0.4219735 0.40197721 + 0.41587678 0.40333641 0.4157778 0.40297011 0.421817 0.41571575 0.42068446 0.41597807 + 0.41483241 0.40162832 0.47446987 0.4031789 0.47462305 0.4170146 0.47507775 0.4247672 + 0.47460455 0.43223748 0.47372207 0.44490361 0.47070932 0.44285893 0.47135228 0.44820231 + 0.46798819 0.44872087 0.46606404 0.45049036 0.45580691 0.45047268 0.44945291 0.44991878 + 0.44324988; + setAttr ".uvst[0].uvsp[250:377]" 0.44679758 0.4307512 0.44749278 0.43296272 + 0.44323486 0.42817622 0.44106194 0.42773125 0.43021268 0.42635414 0.42294115 0.42620525 + 0.41549984 0.42647824 0.40161228 0.42857307 0.40297151 0.42826235 0.39639747 0.4321903 + 0.39602309 0.43437594 0.39462626 0.44480544 0.39454806 0.45146284 0.39472765 0.45830551 + 0.39620659 0.46953863 0.39656305 0.4717558 0.43618214 0.43288291 0.4362396 0.43473306 + 0.43651038 0.44989717 0.43634349 0.44393224 0.43668222 0.45589334 0.43745291 0.4667232 + 0.43732852 0.46508583 0.43826199 0.46961445 0.44057649 0.47818452 0.4389925 0.47255957 + 0.44223464 0.48386258 0.44376954 0.48902243 0.44599164 0.49453413 0.54093033 0.49776179 + 0.53863794 0.49783051 0.52022785 0.49843752 0.52738428 0.49851 0.51302207 0.4983055 + 0.49970078 0.49751309 0.5020017 0.49761549 0.43951812 0.40377533 0.43873733 0.40937775 + 0.43828428 0.41496146 0.43767864 0.42092052 0.43698692 0.42686611 0.43665081 0.42990246 + 0.40926826 0.46868652 0.40915149 0.46703017 0.40890467 0.45134172 0.40892321 0.45752883 + 0.40891415 0.44517893 0.4085649 0.43367854 0.40860569 0.43559775 0.40828687 0.43042457 + 0.40834144 0.42127797 0.40822804 0.42716673 0.40858302 0.41539189 0.40878567 0.4098008 + 0.40797478 0.40362963 0.50032222 0.4675332 0.50258249 0.4677726 0.52031261 0.46774992 + 0.51329058 0.46805647 0.5273934 0.46737611 0.53999197 0.46644348 0.53805298 0.4666478 + 0.41333652 0.49829659 0.41253316 0.49251422 0.41117877 0.48699343 0.4100965 0.48127881 + 0.40919146 0.47520047 0.40916592 0.47193441 0.44281587 0.46134424 0.44077617 0.46148062 + 0.43040925 0.46192554 0.43696269 0.46153271 0.42328018 0.46239465 0.41605294 0.46285322 + 0.40900704 0.46337503 0.40243298 0.46401274 0.4037683 0.46395075 0.39889365 0.46464545 + 0.3954353 0.46497113 0.38860026 0.46550003 0.38241678 0.46558347 0.37649316 0.46553373 + 0.37052137 0.46581393 0.53387403 0.46054497 0.53387511 0.46190062 0.53388834 0.47474888 + 0.533889 0.46710172 0.5339492 0.48275337 0.53404272 0.49079865 0.53411222 0.49792814 + 0.5348087 0.50542569 0.53454429 0.50274324 0.47385451 0.46583742 0.46770683 0.46416801 + 0.46219322 0.46327621 0.45624387 0.46268046 0.4498086 0.46205765 0.44632143 0.46181214 + 0.40256882 0.43940675 0.40383086 0.43934011 0.41563085 0.43917954 0.40881726 0.43935812 + 0.42269936 0.43893623 0.42969674 0.43860623 0.43623197 0.43832126 0.44194728 0.43804792 + 0.43994832 0.43807745 0.44538736 0.43745181 0.45558345 0.43634975 0.44875789 0.43706349 + 0.46166235 0.43596476 0.46744436 0.43559027 0.47396588 0.43427706 0.50523788 0.50494063 + 0.50560647 0.50242555 0.50646603 0.49088693 0.50627702 0.49780384 0.50647295 0.4832449 + 0.50654656 0.47543526 0.50689602 0.46827263 0.50684661 0.46181101 0.50687456 0.46318436 + 0.37202197 0.43651026 0.37741053 0.43735176 0.38299498 0.43771088 0.38888469 0.43796611 + 0.39530164 0.43851525 0.3988938 0.43892211; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr ".covm[0]" 0 1 1; + setAttr ".cdvm[0]" 0 1 1; + setAttr -s 322 ".vt"; + setAttr ".vt[0:165]" -11.98245239 96.8085022 74.20733643 -13.14677429 84.48868561 77.30686188 + -27.43138123 84.14548492 71.37966156 -26.49604797 97.6607666 68.50406647 -21.42710876 96.051856995 59.45363998 + -6.0001373291 95.75045776 65.17888641 -22.24034119 82.06477356 62.46157455 -7.98312378 81.30294037 68.65630341 + -20.21788025 83.87202454 75.1153717 -18.89886475 97.61638641 71.69338989 -13.44212341 96.48660278 61.71944427 + -14.71542358 80.74710846 65.019866943 -12.037567139 90.76360321 76.38580322 -19.97688293 90.966362 73.69067383 + -27.62060547 90.9701767 69.91107941 -22.11109924 88.77565765 60.15574646 -13.522995 88.50589752 62.704422 + -5.55332947 88.35842133 66.55447388 -21.71398926 97.77012634 70.60522461 -22.66609192 91.0063171387 72.50276947 + -22.98706055 83.87477875 73.94098663 -17.55674744 80.73573303 63.71424484 -16.50218201 88.58396912 61.633255 + -16.49560547 96.47284698 60.68214417 -17.45777893 84.00046539307 76.073379517 -17.25636292 90.91320038 74.79244232 + -16.16421509 97.36341858 72.69111633 -10.50846863 96.47172546 62.89530182 -10.55413818 88.41448212 63.79650879 + -12.065246582 80.88796234 66.29555511 -11.86946106 93.16674805 75.82270813 -17.0070037842 93.18470764 74.15919495 + -19.72888184 93.26842499 73.078262329 -22.45075989 93.35914612 71.91062164 -27.49760437 93.57714844 69.28452301 + -21.97242737 91.53002167 59.58985138 -16.33203125 91.30561829 61.055198669 -13.29722595 91.23976135 62.10935974 + -10.31117249 91.18969727 63.17481995 -5.21923828 91.17675018 65.91662598 -27.66581726 88.40258026 70.4888382 + -22.81643677 88.63162994 73.056190491 -20.16381836 88.64218903 74.30290222 -17.44845581 88.61093903 75.35655975 + -12.3238678 88.37212372 76.83983612 -5.86410522 85.5657959 67.13497925 -10.90113831 85.65595245 64.3671875 + -13.78971863 85.7558136 63.25851059 -16.72296143 85.83640289 62.15462494 -22.18634033 86.094909668 60.8331871 + -25.16577148 97.86956787 64.4189682 -19.65809631 98.95191956 66.45954132 -16.75538635 98.66782379 67.63259125 + -13.95565796 98.20733643 68.74959564 -9.34020996 96.71430969 70.9545517 -7.85601807 92.36991119 72.73111725 + -8.010971069 89.80180359 73.36971283 -8.35321045 87.22802734 73.99000549 -10.44340515 82.48547363 74.47412872 + -15.44711304 81.56481171 72.47016144 -18.1534729 81.48550415 71.32204437 -20.88294983 81.50144958 70.1157608 + -25.52017212 82.91928864 67.58737183 -27.11169434 87.39482117 65.81759644 -27.39141846 90.057884216 65.049278259 + -27.37322998 92.87416077 64.50713348 -17.01852417 81.023918152 69.26205444 -14.3216095 81.123703 70.42596436 + -9.39631653 81.99828339 72.36811066 -7.33735657 86.68068695 71.77803802 -7.056411743 89.29976654 71.13132477 + -6.81941223 91.93367004 70.52194977 -8.24472046 96.34178162 68.99315643 -12.81552124 97.78549194 66.77724457 + -15.61474609 98.21930695 65.59844208 -18.55300903 98.46019745 64.44437408 -23.90855408 97.40913391 62.39006424 + -25.79705811 92.3937912 62.55067062 -25.82748413 89.64994049 63.21361542 -25.61369324 86.99866486 63.9587059 + -24.31567383 82.49701691 65.675354 -19.7649231 80.99310303 68.062973022 -26.47688293 98.41638184 66.5846405 + -20.76873779 99.053001404 68.65616608 -17.86872864 98.75076294 69.73828125 -15.093063354 98.34981537 70.81908417 + -10.55656433 97.21325684 72.99271393 -9.076950073 92.96155548 75.1055069 -9.23439026 90.38562012 75.76210785 + -9.61106873 87.87001801 76.32147217 -11.84147644 83.25083923 76.48430634 -16.54647827 82.3658371 74.41351318 + -19.23881531 82.24201965 73.28922272 -21.99081421 82.19664001 72.11341095 -26.80836487 83.2794342 69.64330292 + -28.49917603 87.79394531 67.96338654 -28.80206299 90.52628326 67.347435 -28.7460022 93.40045929 66.78476715 + -15.89628601 80.66197205 67.21181488 -13.21066284 80.79298401 68.44142914 -8.46879578 81.53730011 70.36650085 + -6.2922821 86.1375885 69.73153687 -6.010635376 88.86507416 69.048919678 -5.76251221 91.58581543 68.4744873 + -7.059570313 96.13234711 67.15506744 -11.61016846 97.37358856 64.88172913 -14.49804688 97.7146759 63.68286896 + -17.4397583 97.89341736 62.46495438 -22.65190125 96.85669708 60.54254913 -24.1446228 91.9439621 60.84723282 + -24.18634033 89.20606995 61.51689148 -24.096038818 86.55547333 62.26523209 -23.20507813 82.15275574 63.85002136 + -18.68197632 80.56799316 66.011077881 -15.010284424 84.22460938 76.80699158 -14.82624817 88.53339386 76.17933655 + -14.60870361 90.84278107 75.68691254 -14.40200806 93.13628387 75.10301208 -13.75831604 97.073143005 73.57717133 + -12.60971069 97.92457581 71.84838104 -11.45568848 97.64396667 69.86076355 -10.27444458 97.21216583 67.88018799 + -9.13671875 96.9776001 66.080299377 -7.8230896 96.34835052 64.20153046 -7.55479431 91.1318512 64.28358459 + -7.90382385 88.33826447 64.88894653 -8.24824524 85.52629852 65.48586273 -9.64616394 81.015991211 67.55367279 + -10.75059509 80.96891022 69.53353882 -11.78205872 81.33629608 71.48129272 -12.91981506 81.77990723 73.52971649 + -14.053939819 82.57616425 75.46069336 -24.36132813 97.76795959 69.50441742 -25.047592163 93.45191956 70.67615509 + -25.2492981 91.022827148 71.26052856 -25.35061646 88.5861969 71.82339478 -25.53147888 83.97702026 72.64278412 + -24.61993408 82.38220215 70.85803986 -23.46336365 81.83564758 68.85842896 -22.34954834 81.30891418 66.84906769 + -21.34118652 80.82062531 64.90345001 -20.3914032 81.050384521 62.61079025 -19.52503967 85.89710236 61.10909271 + -19.3731842 88.65414429 60.57064819 -19.2631073 91.43549347 60.028533936 -19.37554932 96.43623352 59.77807617 + -20.31520081 97.82494354 61.4047699 -21.44909668 98.31046295 63.3211937 -22.54069519 98.75439453 65.33917999 + -23.67886353 99.055778503 67.52787018 -11.87084961 95.30044556 75.031608582 -14.16793823 95.23197174 74.39857483 + -16.68331909 95.32211304 73.49138641 -19.40863037 95.46973419 72.45157623 -22.13722229 95.59368134 71.31639862 + -24.74295044 95.72093201 70.11488342 -27.063980103 95.9670639 68.79686737 -28.25276184 96.23483276 66.41932678 + -26.81893921 95.62407684 64.12429047 -25.3646698 95.091629028 62.14585114 -23.80380249 94.57936859 60.4106369 + -21.75849915 94.13379669 59.27204132 -19.1697998 94.007194519 59.63331223 -16.25769043 93.89306641 60.57403946 + -13.21875 93.82125854 61.58806229 -10.16835022 93.789505 62.64967728; + setAttr ".vt[166:321]" -7.49394226 93.79067993 63.70414734 -5.1443634 94.069747925 65.49519348 + -5.8914032 94.23055267 67.94870758 -6.97517395 94.41890717 69.90527344 -8.1191864 94.8194809 71.97718811 + -9.37106323 95.40692902 74.21323395 -27.6272583 86.072166443 71.0072097778 -25.4163208 86.2751236 72.30218506 + -22.91014099 86.32821655 73.55545807 -20.26313782 86.37715149 74.79781342 -17.5539856 86.38093567 75.80709076 + -14.98857117 86.35086823 76.55516815 -12.75358582 86.19325256 77.15814972 -10.2454834 85.37291718 76.82928467 + -8.870224 84.71562195 74.52073669 -7.78753662 84.14310455 72.4071579 -6.78665161 83.5280838 70.39134979 + -6.49253845 82.74230957 67.86030579 -8.75 82.92285156 66.091003418 -11.27311707 83.040611267 64.92834473 + -14.10525513 83.097259521 63.76010895 -17.016265869 83.17952728 62.60708618 -19.71580505 83.38245392 61.61165619 + -22.24938965 83.71472931 61.61994553 -23.85665894 84.17520142 63.029483795 -25.22013855 84.58950043 64.73303986 + -26.60388184 84.94563293 66.58294678 -28.076461792 85.30646515 68.68809509 -26.75509644 98.36798096 67.73564911 + -24.15101624 98.86186981 68.76032257 -21.32293701 98.83745575 69.88161469 -18.43301392 98.60668945 70.9543457 + -15.65727234 98.24353027 71.95993042 -13.19061279 97.86716461 72.89759827 -11.21170044 97.28591156 73.82427216 + -10.47332764 95.60881805 75.082206726 -10.31236267 93.25601196 76.093276978 -10.49765015 90.69967651 76.69006348 + -10.86686707 88.20501709 77.11536407 -11.42523193 85.78286743 77.41584015 -12.4886322 83.76093292 77.14373779 + -14.58206177 83.20529938 76.35032654 -17.054748535 83.0023345947 75.41548157 -19.78918457 82.86779785 74.36328888 + -22.57592773 82.81219482 73.20302582 -25.22712708 82.87562561 71.93971252 -27.3299408 83.54826355 70.5896759 + -28.68127441 85.54747009 70.010742188 -28.91049194 88.10717773 69.51255798 -28.94244385 90.81375122 68.95560455 + -28.75805664 93.61558533 68.35822296 -28.14468384 96.30963135 67.84786987 -11.94985962 96.3433609 74.48091888 + -13.89274597 96.50453949 73.85424042 -16.33395386 96.73193359 72.96274567 -19.067352295 96.95248413 71.95503235 + -21.85275269 97.09249115 70.84310913 -24.4906311 97.13279724 69.71643066 -26.68276978 97.13448334 68.60829926 + -27.31365967 97.80725098 67.82324219 -27.24833679 97.90184784 66.44132996 -25.84413147 97.29508209 64.19174194 + -24.51509094 96.78784943 62.17798615 -23.12046814 96.20275879 60.36552048 -21.54980469 95.46563721 59.30086517 + -19.27703857 95.68438721 59.58488846 -16.37112427 95.67430115 60.49642944 -13.30178833 95.66765594 61.48244095 + -10.29495239 95.66888428 62.56183243 -7.53927612 95.61451721 63.72024155 -5.62280273 95.28100586 65.23415375 + -6.54769897 95.64559174 67.46550751 -7.70291138 95.86078644 69.34438324 -8.83016968 96.22809601 71.32348633 + -10.055801392 96.7726059 73.44837952 -10.93693542 96.8535614 74.32289124 -27.54205322 84.7974472 71.29556274 + -25.50013733 84.76013947 72.54081726 -22.97102356 84.71179199 73.83132172 -20.25402832 84.72975159 75.059150696 + -17.50489807 84.81407166 76.026481628 -15.0097351074 84.9499588 76.74514008 -13.015197754 85.068595886 77.27024078 + -12.08140564 84.39909363 77.45565033 -11.15588379 83.84781647 76.79816437 -9.70381165 83.084487915 74.65388489 + -8.63059998 82.55764008 72.53205109 -7.6893158 82.042678833 70.48574829 -7.34054565 81.64040375 68.3536377 + -9.22038269 81.46110535 66.86432648 -11.69096375 81.44281769 65.61408997 -14.40180969 81.38832855 64.35361481 + -17.29444885 81.44935608 63.1295166 -20.14274597 81.75119019 62.081630707 -22.27156067 82.59851074 62.12537003 + -23.490448 82.80304718 63.52857208 -24.7147522 83.14627075 65.30554199 -25.99487305 83.5248642 67.19076538 + -27.38595581 83.85074615 69.25776672 -27.98780823 84.12723541 70.42059326 -26.068115234 97.69037628 68.72067261 + -26.24728394 97.14202881 68.85509491 -26.61203003 95.92966461 69.10391998 -27.012115479 93.5586319 69.59177399 + -27.15419006 90.98823547 70.21424103 -27.2114563 88.4465332 70.78916931 -27.19265747 86.11869812 71.29660797 + -27.13687134 84.79206085 71.56604004 -27.076126099 84.092880249 71.67936707 -26.94850159 83.32913971 70.89859009 + -26.40386963 83.0019378662 69.89311981 -25.14916992 82.59828949 67.83953094 -23.97705078 82.14328003 65.90304565 + -22.89938354 81.74938202 64.035621643 -21.90374756 81.77716827 62.4284668 -21.86383057 82.35670471 61.97833633 + -21.74041748 83.59188843 61.44955826 -21.63362122 86.013015747 60.72945023 -21.53475952 88.71876526 60.095760345 + -21.40318298 91.48963928 59.55866623 -21.21760559 94.10054779 59.24550629 -21.079208374 95.51809692 59.29264069 + -21.0070648193 96.18460083 59.43178558 -22.19429016 97.16741943 60.64702225 -23.43052673 97.69326019 62.5401001 + -24.65000916 98.14417267 64.57480621 -25.92735291 98.64910126 66.76202393 -26.24075317 98.51071167 67.96374512 + -13.80354309 84.39219666 77.15668488 -13.71742249 85.029975891 77.10858154 -13.53952026 86.25204468 76.96941376 + -13.20239258 88.43244934 76.62833405 -12.93928528 90.79499054 76.15701294 -12.75990295 93.16316986 75.59375763 + -12.68066406 95.28836823 74.8379364 -12.63340759 96.40953827 74.28083038 -12.60624695 96.91342163 74.0035095215 + -11.89848328 97.55056 73.53128815 -11.24963379 97.5376358 72.59970856 -10.040924072 97.1341095 70.57553864 + -8.92269897 96.72492218 68.61038208 -7.75036621 96.52029419 66.78391266 -6.58135986 96.045898438 64.7971344 + -6.15890503 95.46005249 64.54206848 -5.77662659 93.95565796 64.62242126 -5.90254211 91.11544037 65.16454315 + -6.24731445 88.29761505 65.79359436 -6.57278442 85.49232483 66.38596344 -7.1758728 82.71683502 67.10339355 + -7.94592285 81.4894104 67.7765274 -8.54534912 81.13381958 68.26434326 -9.2497406 81.23782349 70.096672058 + -10.21186829 81.65891266 72.091003418 -11.29263306 82.12414551 74.18854523 -12.60968018 82.91876984 76.18341827 + -13.2277832 83.5196228 76.92292786; + setAttr -s 640 ".ed"; + setAttr ".ed[0:165]" 0 218 1 218 301 1 301 302 1 302 0 1 302 303 1 303 200 1 + 0 200 1 224 225 1 225 194 1 3 194 1 224 3 1 206 321 1 321 294 1 1 294 1 1 206 1 200 241 1 + 241 218 1 308 5 1 308 309 1 309 236 1 5 236 1 266 267 1 267 224 1 3 266 1 194 293 1 + 293 266 1 230 287 1 287 288 1 4 288 1 4 230 1 274 2 1 274 275 1 275 212 1 2 212 1 + 294 295 1 295 248 1 248 1 1 242 273 1 273 274 1 2 242 1 212 265 1 265 242 1 280 281 1 + 281 260 1 260 6 1 280 6 1 254 315 1 315 316 1 7 316 1 254 7 1 248 249 1 249 206 1 + 221 9 1 221 222 1 18 222 1 18 9 1 244 20 1 244 245 1 8 245 1 8 20 1 209 210 1 20 210 1 + 209 8 1 257 11 1 257 258 1 21 258 1 11 21 1 232 23 1 232 233 1 10 233 1 23 10 1 196 197 1 + 9 197 1 196 18 1 245 246 1 24 246 1 24 8 1 220 26 1 220 221 1 9 26 1 197 198 1 26 198 1 + 233 234 1 27 234 1 10 27 1 256 29 1 256 257 1 29 11 1 208 209 1 208 24 1 298 299 1 + 30 299 1 30 12 1 12 298 1 31 32 1 25 31 1 25 13 1 13 32 1 32 33 1 13 19 1 33 19 1 + 269 34 1 269 270 1 270 14 1 14 34 1 215 216 1 34 216 1 14 215 1 15 284 1 284 285 1 + 35 285 1 35 15 1 36 37 1 22 36 1 22 16 1 37 16 1 38 28 1 37 38 1 16 28 1 311 39 1 + 311 312 1 312 17 1 39 17 1 202 203 1 203 12 1 202 30 1 270 271 1 40 271 1 40 14 1 + 41 42 1 19 41 1 42 13 1 43 25 1 42 43 1 297 44 1 297 298 1 12 44 1 203 204 1 44 204 1 + 312 313 1 45 313 1 17 45 1 46 47 1 28 46 1 16 47 1 47 48 1 48 22 1 283 49 1 283 284 1 + 15 49 1 214 215 1 214 40 1 288 289 1 289 108 1 108 4 1 106 10 1 106 107 1 23 107 1 + 105 27 1 105 106 1 104 307 1 307 308 1 104 5 1 236 237 1 237 104 1 17 102 1; + setAttr ".ed[166:331]" 102 103 1 39 103 1 101 45 1 101 102 1 100 253 1 253 254 1 + 100 7 1 316 317 1 317 100 1 11 98 1 98 99 1 29 99 1 113 21 1 113 98 1 112 279 1 279 280 1 + 112 6 1 260 261 1 261 112 1 110 15 1 110 111 1 49 111 1 109 35 1 109 110 1 108 229 1 + 229 230 1 66 67 1 66 60 1 59 60 1 67 59 1 318 68 1 318 319 1 58 319 1 58 68 1 251 58 1 + 251 252 1 68 252 1 69 70 1 57 69 1 56 57 1 70 56 1 70 71 1 55 56 1 71 55 1 238 72 1 + 238 239 1 54 239 1 54 72 1 305 54 1 305 306 1 72 306 1 73 74 1 53 73 1 52 53 1 52 74 1 + 74 75 1 51 52 1 75 51 1 290 76 1 290 291 1 50 291 1 50 76 1 227 228 1 76 228 1 227 50 1 + 77 78 1 65 77 1 64 65 1 64 78 1 78 79 1 63 64 1 79 63 1 262 80 1 262 263 1 62 263 1 + 62 80 1 277 62 1 277 278 1 80 278 1 81 66 1 61 81 1 60 61 1 291 292 1 82 292 1 82 50 1 + 84 52 1 83 84 1 51 83 1 85 53 1 84 85 1 304 86 1 304 305 1 86 54 1 239 240 1 86 240 1 + 56 88 1 87 88 1 55 87 1 89 57 1 88 89 1 250 90 1 250 251 1 90 58 1 319 320 1 90 320 1 + 60 92 1 91 92 1 59 91 1 93 61 1 92 93 1 276 94 1 276 277 1 94 62 1 263 264 1 94 264 1 + 96 64 1 95 96 1 63 95 1 97 65 1 96 97 1 226 227 1 226 82 1 98 66 1 99 67 1 317 318 1 + 68 100 1 252 253 1 69 101 1 102 70 1 103 71 1 237 238 1 72 104 1 306 307 1 73 105 1 + 74 106 1 107 75 1 289 290 1 76 108 1 228 229 1 77 109 1 78 110 1 111 79 1 261 262 1 + 80 112 1 278 279 1 81 113 1 246 247 1 114 247 1 114 24 1 115 116 1 43 115 1 116 25 1 + 117 31 1 116 117 1 219 118 1 219 220 1 26 118 1 198 199 1 118 199 1 119 120 1 85 119 1 + 53 120 1 120 121 1 121 73 1 121 122 1 122 105 1; + setAttr ".ed[332:497]" 122 123 1 27 123 1 234 235 1 123 235 1 124 125 1 38 124 1 + 28 125 1 125 126 1 126 46 1 255 127 1 255 256 1 127 29 1 99 128 1 127 128 1 128 129 1 + 67 129 1 129 130 1 130 59 1 130 131 1 131 91 1 207 114 1 207 208 1 222 223 1 132 223 1 + 132 18 1 133 134 1 33 133 1 19 134 1 134 135 1 135 41 1 243 136 1 243 244 1 20 136 1 + 210 211 1 136 211 1 137 138 1 93 137 1 61 138 1 138 139 1 139 81 1 139 140 1 140 113 1 + 140 141 1 21 141 1 258 259 1 141 259 1 142 143 1 48 142 1 143 22 1 143 144 1 144 36 1 + 231 145 1 231 232 1 145 23 1 107 146 1 145 146 1 146 147 1 75 147 1 147 148 1 148 51 1 + 148 149 1 149 83 1 195 132 1 195 196 1 299 300 1 150 300 1 150 30 1 151 152 1 117 151 1 + 31 152 1 152 153 1 32 153 1 153 154 1 154 33 1 154 155 1 155 133 1 268 156 1 268 269 1 + 34 156 1 216 217 1 156 217 1 65 158 1 157 158 1 97 157 1 159 77 1 158 159 1 160 109 1 + 159 160 1 160 161 1 161 35 1 285 286 1 161 286 1 162 163 1 144 162 1 36 163 1 163 164 1 + 164 37 1 165 38 1 164 165 1 166 124 1 165 166 1 310 167 1 310 311 1 167 39 1 103 168 1 + 167 168 1 168 169 1 71 169 1 169 170 1 170 55 1 170 171 1 171 87 1 201 150 1 201 202 1 + 271 272 1 172 272 1 172 40 1 173 174 1 135 173 1 41 174 1 174 175 1 175 42 1 176 43 1 + 175 176 1 176 177 1 177 115 1 296 178 1 296 297 1 44 178 1 204 205 1 178 205 1 179 180 1 + 89 179 1 57 180 1 180 181 1 181 69 1 181 182 1 182 101 1 182 183 1 45 183 1 313 314 1 + 183 314 1 184 185 1 126 184 1 46 185 1 185 186 1 47 186 1 186 187 1 187 48 1 187 188 1 + 188 142 1 282 189 1 282 283 1 49 189 1 111 190 1 189 190 1 190 191 1 79 191 1 191 192 1 + 192 63 1 192 193 1 193 95 1 213 172 1 213 214 1 292 293 1 194 82 1; + setAttr ".ed[498:639]" 149 195 1 83 196 1 197 84 1 198 85 1 199 119 1 303 304 1 + 200 86 1 240 241 1 171 201 1 87 202 1 88 203 1 204 89 1 205 179 1 249 250 1 206 90 1 + 320 321 1 131 207 1 91 208 1 92 209 1 210 93 1 211 137 1 275 276 1 212 94 1 264 265 1 + 193 213 1 95 214 1 215 96 1 216 97 1 217 157 1 225 226 1 300 301 1 218 150 1 151 219 1 + 152 220 1 153 221 1 222 154 1 223 155 1 267 268 1 156 224 1 217 225 1 157 226 1 158 227 1 + 228 159 1 229 160 1 230 161 1 286 287 1 162 231 1 163 232 1 233 164 1 234 165 1 235 166 1 + 309 310 1 236 167 1 168 237 1 169 238 1 239 170 1 240 171 1 241 201 1 272 273 1 242 172 1 + 173 243 1 174 244 1 245 175 1 246 176 1 247 177 1 295 296 1 178 248 1 205 249 1 179 250 1 + 180 251 1 252 181 1 253 182 1 183 254 1 314 315 1 184 255 1 185 256 1 186 257 1 258 187 1 + 259 188 1 281 282 1 189 260 1 190 261 1 191 262 1 263 192 1 264 193 1 265 213 1 223 267 1 + 266 132 1 155 268 1 133 269 1 134 270 1 271 135 1 272 173 1 273 243 1 136 274 1 211 275 1 + 137 276 1 138 277 1 278 139 1 279 140 1 141 280 1 259 281 1 188 282 1 142 283 1 284 143 1 + 285 144 1 286 162 1 287 231 1 288 145 1 146 289 1 147 290 1 291 148 1 292 149 1 293 195 1 + 247 295 1 294 114 1 177 296 1 115 297 1 298 116 1 299 117 1 300 151 1 301 219 1 118 302 1 + 199 303 1 119 304 1 120 305 1 306 121 1 307 122 1 123 308 1 235 309 1 166 310 1 124 311 1 + 125 312 1 313 126 1 314 184 1 315 255 1 316 127 1 128 317 1 129 318 1 319 130 1 320 131 1 + 321 207 1; + setAttr -s 320 -ch 1280 ".fc[0:319]" -type "polyFaces" + f 4 -4 -3 -2 -1 + mu 0 4 0 1 2 3 + f 4 6 -6 -5 3 + mu 0 4 0 4 5 1 + f 4 10 9 -9 -8 + mu 0 4 6 7 8 9 + f 4 -15 13 -13 -12 + mu 0 4 10 11 12 13 + f 4 -7 0 -17 -16 + mu 0 4 14 0 3 15 + f 4 20 -20 -19 17 + mu 0 4 16 17 18 19 + f 4 -24 -11 -23 -22 + mu 0 4 20 7 6 21 + f 4 -10 23 -26 -25 + mu 0 4 22 7 20 23 + f 4 -30 28 -28 -27 + mu 0 4 24 25 26 27 + f 4 33 -33 -32 30 + mu 0 4 28 29 30 31 + f 4 -14 -37 -36 -35 + mu 0 4 12 11 32 33 + f 4 -40 -31 -39 -38 + mu 0 4 34 28 31 35 + f 4 -34 39 -42 -41 + mu 0 4 36 28 34 37 + f 4 45 -45 -44 -43 + mu 0 4 38 39 40 41 + f 4 49 48 -48 -47 + mu 0 4 42 43 44 45 + f 4 14 -52 -51 36 + mu 0 4 11 46 47 32 + f 4 -56 54 -54 52 + mu 0 4 48 49 50 51 + f 4 -60 58 -58 56 + mu 0 4 52 53 54 55 + f 4 62 59 61 -61 + mu 0 4 56 53 52 57 + f 4 66 65 -65 63 + mu 0 4 58 59 60 61 + f 4 70 69 -69 67 + mu 0 4 62 63 64 65 + f 4 73 55 72 -72 + mu 0 4 66 49 48 67 + f 4 -59 -77 75 -75 + mu 0 4 54 53 68 69 + f 4 -80 -53 -79 77 + mu 0 4 70 48 51 71 + f 4 -73 79 81 -81 + mu 0 4 67 48 70 72 + f 4 -70 84 83 -83 + mu 0 4 64 63 73 74 + f 4 87 -64 -87 85 + mu 0 4 75 58 61 76 + f 4 89 76 -63 -89 + mu 0 4 77 68 53 56 + f 4 -94 -93 91 -91 + mu 0 4 78 79 80 81 + f 4 -98 -97 95 94 + mu 0 4 82 83 84 85 + f 4 100 -100 97 98 + mu 0 4 86 87 83 82 + f 4 -105 -104 -103 101 + mu 0 4 88 89 90 91 + f 4 -108 104 106 -106 + mu 0 4 92 89 88 93 + f 4 -112 110 -110 -109 + mu 0 4 94 95 96 97 + f 4 115 -115 113 112 + mu 0 4 98 99 100 101 + f 4 -119 -116 117 116 + mu 0 4 102 99 98 103 + f 4 122 -122 -121 119 + mu 0 4 104 105 106 107 + f 4 125 92 -125 -124 + mu 0 4 108 80 79 109 + f 4 -129 127 -127 103 + mu 0 4 89 110 111 90 + f 4 131 99 130 129 + mu 0 4 112 83 87 113 + f 4 -132 133 132 96 + mu 0 4 83 112 114 84 + f 4 -137 93 -136 134 + mu 0 4 115 79 78 116 + f 4 124 136 138 -138 + mu 0 4 109 79 115 117 + f 4 141 140 -140 121 + mu 0 4 105 118 119 106 + f 4 -145 118 143 142 + mu 0 4 120 99 102 121 + f 4 146 114 144 145 + mu 0 4 122 100 99 120 + f 4 -150 108 -149 147 + mu 0 4 123 94 97 124 + f 4 151 128 107 -151 + mu 0 4 125 110 89 92 + f 4 -29 -155 -154 -153 + mu 0 4 126 127 128 129 + f 4 -71 157 -157 155 + mu 0 4 130 131 132 133 + f 4 -85 -156 -160 158 + mu 0 4 134 130 133 135 + f 4 162 -18 -162 -161 + mu 0 4 136 137 138 139 + f 4 -21 -163 -165 -164 + mu 0 4 140 141 142 143 + f 4 -123 167 -167 -166 + mu 0 4 144 145 146 147 + f 4 -142 165 -170 168 + mu 0 4 148 144 147 149 + f 4 172 -50 -172 -171 + mu 0 4 150 151 152 153 + f 4 -49 -173 -175 -174 + mu 0 4 154 155 156 157 + f 4 -88 177 -177 -176 + mu 0 4 158 159 160 161 + f 4 -67 175 -180 178 + mu 0 4 162 158 161 163 + f 4 182 -46 -182 -181 + mu 0 4 164 165 166 167 + f 4 44 -183 -185 -184 + mu 0 4 168 169 170 171 + f 4 149 187 -187 185 + mu 0 4 172 173 174 175 + f 4 111 -186 -190 188 + mu 0 4 176 172 175 177 + f 4 29 -192 -191 154 + mu 0 4 178 179 180 181 + f 4 195 194 -194 192 + mu 0 4 182 183 184 185 + f 4 -200 198 -198 196 + mu 0 4 186 187 188 189 + f 4 199 202 -202 200 + mu 0 4 190 191 192 193 + f 4 206 205 204 203 + mu 0 4 194 195 196 197 + f 4 209 208 -207 207 + mu 0 4 198 199 195 194 + f 4 -214 212 -212 210 + mu 0 4 200 201 202 203 + f 4 213 216 -216 214 + mu 0 4 204 205 206 207 + f 4 -221 219 218 217 + mu 0 4 208 209 210 211 + f 4 223 222 220 221 + mu 0 4 212 213 209 208 + f 4 -228 226 -226 224 + mu 0 4 214 215 216 217 + f 4 230 227 229 -229 + mu 0 4 218 219 220 221 + f 4 -235 233 232 231 + mu 0 4 222 223 224 225 + f 4 237 236 234 235 + mu 0 4 226 227 223 222 + f 4 -242 240 -240 238 + mu 0 4 228 229 230 231 + f 4 241 244 -244 242 + mu 0 4 232 233 234 235 + f 4 193 247 246 245 + mu 0 4 185 184 236 237 + f 4 -251 249 -249 -227 + mu 0 4 215 238 239 216 + f 4 253 252 251 -223 + mu 0 4 213 240 241 209 + f 4 -252 255 254 -220 + mu 0 4 209 241 242 210 + f 4 258 -215 -258 256 + mu 0 4 243 204 207 244 + f 4 -259 260 -260 -213 + mu 0 4 201 245 246 202 + f 4 263 262 -262 -209 + mu 0 4 199 247 248 195 + f 4 261 265 264 -206 + mu 0 4 195 248 249 196 + f 4 268 -201 -268 266 + mu 0 4 250 190 193 251 + f 4 -269 270 -270 -199 + mu 0 4 187 252 253 188 + f 4 273 272 -272 -195 + mu 0 4 183 254 255 184 + f 4 271 275 274 -248 + mu 0 4 184 255 256 236 + f 4 278 -243 -278 276 + mu 0 4 257 232 235 258 + f 4 -279 280 -280 -241 + mu 0 4 229 259 260 230 + f 4 283 282 281 -237 + mu 0 4 227 261 262 223 + f 4 -282 285 284 -234 + mu 0 4 223 262 263 224 + f 4 287 250 -231 -287 + mu 0 4 264 265 219 218 + f 4 289 -193 -289 176 + mu 0 4 160 182 185 161 + f 4 -292 -197 -291 174 + mu 0 4 156 186 189 157 + f 4 291 170 -293 -203 + mu 0 4 191 150 153 192 + f 4 294 -204 293 169 + mu 0 4 147 194 197 149 + f 4 295 -208 -295 166 + mu 0 4 146 198 194 147 + f 4 -298 -211 -297 164 + mu 0 4 142 200 203 143 + f 4 297 160 -299 -217 + mu 0 4 205 136 139 206 + f 4 -301 -218 299 159 + mu 0 4 133 208 211 135 + f 4 301 -222 300 156 + mu 0 4 132 212 208 133 + f 4 -304 -225 -303 153 + mu 0 4 128 214 217 129 + f 4 -230 303 190 -305 + mu 0 4 221 220 181 180 + f 4 -307 -232 305 189 + mu 0 4 175 222 225 177 + f 4 307 -236 306 186 + mu 0 4 174 226 222 175 + f 4 -310 -239 -309 184 + mu 0 4 170 228 231 171 + f 4 309 180 -311 -245 + mu 0 4 233 164 167 234 + f 4 288 -246 311 179 + mu 0 4 161 185 237 163 + f 4 -315 313 -313 -76 + mu 0 4 68 266 267 69 + f 4 317 -133 316 315 + mu 0 4 268 84 114 269 + f 4 -96 -318 319 318 + mu 0 4 85 84 268 270 + f 4 -323 -78 -322 320 + mu 0 4 271 70 71 272 + f 4 -82 322 324 -324 + mu 0 4 72 70 271 273 + f 4 -328 -255 326 325 + mu 0 4 274 210 242 275 + f 4 329 -219 327 328 + mu 0 4 276 211 210 274 + f 4 331 -300 -330 330 + mu 0 4 277 135 211 276 + f 4 -334 -159 -332 332 + mu 0 4 278 134 135 277 + f 4 -84 333 335 -335 + mu 0 4 74 73 279 280 + f 4 -339 -117 337 336 + mu 0 4 281 102 103 282 + f 4 340 -144 338 339 + mu 0 4 283 121 102 281 + f 4 343 -86 -343 341 + mu 0 4 284 75 76 285 + f 4 -344 345 -345 -178 + mu 0 4 159 286 287 160 + f 4 -348 -290 344 346 + mu 0 4 288 182 160 287 + f 4 349 -196 347 348 + mu 0 4 289 183 182 288 + f 4 351 -274 -350 350 + mu 0 4 290 254 183 289 + f 4 314 -90 -354 352 + mu 0 4 266 68 77 291 + f 4 -357 355 -355 -55 + mu 0 4 49 292 293 50 + f 4 -360 -101 358 357 + mu 0 4 294 87 86 295 + f 4 361 -131 359 360 + mu 0 4 296 113 87 294 + f 4 -365 -57 -364 362 + mu 0 4 297 52 55 298 + f 4 -62 364 366 -366 + mu 0 4 57 52 297 299 + f 4 -370 -275 368 367 + mu 0 4 300 236 256 301 + f 4 371 -247 369 370 + mu 0 4 302 237 236 300 + f 4 373 -312 -372 372 + mu 0 4 303 163 237 302 + f 4 -376 -179 -374 374 + mu 0 4 304 162 163 303 + f 4 375 377 -377 -66 + mu 0 4 59 305 306 60 + f 4 380 -147 379 378 + mu 0 4 307 100 122 308 + f 4 382 -114 -381 381 + mu 0 4 309 101 100 307 + f 4 385 -68 -385 383 + mu 0 4 310 62 65 311 + f 4 -386 387 -387 -158 + mu 0 4 131 312 313 132 + f 4 -390 -302 386 388 + mu 0 4 314 212 132 313 + f 4 391 -224 389 390 + mu 0 4 315 213 212 314 + f 4 393 -254 -392 392 + mu 0 4 316 240 213 315 + f 4 356 -74 -396 394 + mu 0 4 292 49 66 317 + f 4 -92 -399 397 -397 + mu 0 4 81 80 318 319 + f 4 -402 -319 400 399 + mu 0 4 320 85 270 321 + f 4 -404 -95 401 402 + mu 0 4 322 82 85 320 + f 4 405 -99 403 404 + mu 0 4 323 86 82 322 + f 4 407 -359 -406 406 + mu 0 4 324 295 86 323 + f 4 -411 -102 -410 408 + mu 0 4 325 88 91 326 + f 4 -107 410 412 -412 + mu 0 4 93 88 325 327 + f 4 -285 415 414 -414 + mu 0 4 224 263 328 329 + f 4 -233 413 417 416 + mu 0 4 225 224 329 330 + f 4 -306 -417 419 418 + mu 0 4 177 225 330 331 + f 4 421 -189 -419 420 + mu 0 4 332 176 177 331 + f 4 -422 423 -423 -111 + mu 0 4 95 333 334 96 + f 4 -427 -383 425 424 + mu 0 4 335 101 309 336 + f 4 428 -113 426 427 + mu 0 4 337 98 101 335 + f 4 -429 430 429 -118 + mu 0 4 98 337 338 103 + f 4 -338 -430 432 431 + mu 0 4 282 103 338 339 + f 4 435 -120 -435 433 + mu 0 4 340 104 107 341 + f 4 -436 437 -437 -168 + mu 0 4 145 342 343 146 + f 4 -440 -296 436 438 + mu 0 4 344 198 146 343 + f 4 441 -210 439 440 + mu 0 4 345 199 198 344 + f 4 443 -264 -442 442 + mu 0 4 346 247 199 345 + f 4 398 -126 -446 444 + mu 0 4 318 80 108 347 + f 4 -449 447 -447 -128 + mu 0 4 110 348 349 111 + f 4 -452 -362 450 449 + mu 0 4 350 113 296 351 + f 4 453 -130 451 452 + mu 0 4 352 112 113 350 + f 4 -454 455 454 -134 + mu 0 4 112 352 353 114 + f 4 457 -317 -455 456 + mu 0 4 354 269 114 353 + f 4 -461 -135 -460 458 + mu 0 4 355 115 116 356 + f 4 -139 460 462 -462 + mu 0 4 117 115 355 357 + f 4 -466 -265 464 463 + mu 0 4 358 196 249 359 + f 4 467 -205 465 466 + mu 0 4 360 197 196 358 + f 4 469 -294 -468 468 + mu 0 4 361 149 197 360 + f 4 -472 -169 -470 470 + mu 0 4 362 148 149 361 + f 4 471 473 -473 -141 + mu 0 4 118 363 364 119 + f 4 -477 -341 475 474 + mu 0 4 365 121 283 366 + f 4 -479 -143 476 477 + mu 0 4 367 120 121 365 + f 4 480 -146 478 479 + mu 0 4 368 122 120 367 + f 4 482 -380 -481 481 + mu 0 4 369 308 122 368 + f 4 -486 -148 -485 483 + mu 0 4 370 123 124 371 + f 4 485 487 -487 -188 + mu 0 4 173 372 373 174 + f 4 -490 -308 486 488 + mu 0 4 374 226 174 373 + f 4 491 -238 489 490 + mu 0 4 375 227 226 374 + f 4 493 -284 -492 492 + mu 0 4 376 261 227 375 + f 4 448 -152 -496 494 + mu 0 4 348 110 125 377 + f 4 -498 24 -497 -250 + mu 0 4 238 22 23 239 + f 4 -500 -394 498 395 + mu 0 4 66 240 316 317 + f 4 499 71 500 -253 + mu 0 4 240 66 67 241 + f 4 -501 80 501 -256 + mu 0 4 241 67 72 242 + f 4 -327 -502 323 502 + mu 0 4 275 242 72 273 + f 4 504 -257 -504 5 + mu 0 4 4 243 244 5 + f 4 -505 15 -506 -261 + mu 0 4 245 14 15 246 + f 4 -508 -444 506 445 + mu 0 4 108 247 346 347 + f 4 507 123 -509 -263 + mu 0 4 247 108 109 248 + f 4 508 137 509 -266 + mu 0 4 248 109 117 249 + f 4 -465 -510 461 510 + mu 0 4 359 249 117 357 + f 4 512 -267 -512 51 + mu 0 4 46 250 251 47 + f 4 -513 11 -514 -271 + mu 0 4 252 10 13 253 + f 4 -516 -352 514 353 + mu 0 4 77 254 290 291 + f 4 515 88 -517 -273 + mu 0 4 254 77 56 255 + f 4 516 60 517 -276 + mu 0 4 255 56 57 256 + f 4 -369 -518 365 518 + mu 0 4 301 256 57 299 + f 4 520 -277 -520 32 + mu 0 4 29 257 258 30 + f 4 -521 40 -522 -281 + mu 0 4 259 36 37 260 + f 4 -524 -494 522 495 + mu 0 4 125 261 376 377 + f 4 523 150 524 -283 + mu 0 4 261 125 92 262 + f 4 -525 105 525 -286 + mu 0 4 262 92 93 263 + f 4 -526 411 526 -416 + mu 0 4 263 93 327 328 + f 4 497 -288 -528 8 + mu 0 4 8 265 264 9 + f 4 -398 -530 1 -529 + mu 0 4 319 318 3 2 + f 4 -532 -400 530 321 + mu 0 4 71 320 321 272 + f 4 -533 -403 531 78 + mu 0 4 51 322 320 71 + f 4 533 -405 532 53 + mu 0 4 50 323 322 51 + f 4 534 -407 -534 354 + mu 0 4 293 324 323 50 + f 4 -537 -409 -536 22 + mu 0 4 6 325 326 21 + f 4 536 7 -538 -413 + mu 0 4 325 6 9 327 + f 4 -539 -527 537 527 + mu 0 4 264 328 327 9 + f 4 538 286 -540 -415 + mu 0 4 328 264 218 329 + f 4 539 228 540 -418 + mu 0 4 329 218 221 330 + f 4 -541 304 541 -420 + mu 0 4 330 221 180 331 + f 4 542 -421 -542 191 + mu 0 4 179 332 331 180 + f 4 -543 26 -544 -424 + mu 0 4 333 24 27 334 + f 4 -546 -425 544 384 + mu 0 4 65 335 336 311 + f 4 546 -428 545 68 + mu 0 4 64 337 335 65 + f 4 -547 82 547 -431 + mu 0 4 337 64 74 338 + f 4 -548 334 548 -433 + mu 0 4 338 74 280 339 + f 4 550 -434 -550 19 + mu 0 4 17 340 341 18 + f 4 -551 163 -552 -438 + mu 0 4 342 140 143 343 + f 4 -553 -439 551 296 + mu 0 4 203 344 343 143 + f 4 553 -441 552 211 + mu 0 4 202 345 344 203 + f 4 554 -443 -554 259 + mu 0 4 246 346 345 202 + f 4 555 -507 -555 505 + mu 0 4 15 347 346 246 + f 4 529 -445 -556 16 + mu 0 4 3 318 347 15 + f 4 -558 37 -557 -448 + mu 0 4 348 34 35 349 + f 4 -560 -450 558 363 + mu 0 4 55 350 351 298 + f 4 560 -453 559 57 + mu 0 4 54 352 350 55 + f 4 -561 74 561 -456 + mu 0 4 352 54 69 353 + f 4 562 -457 -562 312 + mu 0 4 267 354 353 69 + f 4 -565 -459 -564 35 + mu 0 4 32 355 356 33 + f 4 -566 -463 564 50 + mu 0 4 47 357 355 32 + f 4 -567 -511 565 511 + mu 0 4 251 359 357 47 + f 4 -568 -464 566 267 + mu 0 4 193 358 359 251 + f 4 568 -467 567 201 + mu 0 4 192 360 358 193 + f 4 569 -469 -569 292 + mu 0 4 153 361 360 192 + f 4 -571 -471 -570 171 + mu 0 4 152 362 361 153 + f 4 570 46 -572 -474 + mu 0 4 363 42 45 364 + f 4 -574 -475 572 342 + mu 0 4 76 365 366 285 + f 4 -575 -478 573 86 + mu 0 4 61 367 365 76 + f 4 575 -480 574 64 + mu 0 4 60 368 367 61 + f 4 576 -482 -576 376 + mu 0 4 306 369 368 60 + f 4 -579 -484 -578 43 + mu 0 4 40 370 371 41 + f 4 578 183 -580 -488 + mu 0 4 372 168 171 373 + f 4 -581 -489 579 308 + mu 0 4 231 374 373 171 + f 4 581 -491 580 239 + mu 0 4 230 375 374 231 + f 4 582 -493 -582 279 + mu 0 4 260 376 375 230 + f 4 583 -523 -583 521 + mu 0 4 37 377 376 260 + f 4 557 -495 -584 41 + mu 0 4 34 348 377 37 + f 4 -586 21 -585 -356 + mu 0 4 292 20 21 293 + f 4 -587 -535 584 535 + mu 0 4 326 324 293 21 + f 4 -588 -408 586 409 + mu 0 4 91 295 324 326 + f 4 -589 -358 587 102 + mu 0 4 90 294 295 91 + f 4 589 -361 588 126 + mu 0 4 111 296 294 90 + f 4 590 -451 -590 446 + mu 0 4 349 351 296 111 + f 4 591 -559 -591 556 + mu 0 4 35 298 351 349 + f 4 -593 -363 -592 38 + mu 0 4 31 297 298 35 + f 4 -594 -367 592 31 + mu 0 4 30 299 297 31 + f 4 -595 -519 593 519 + mu 0 4 258 301 299 30 + f 4 -596 -368 594 277 + mu 0 4 235 300 301 258 + f 4 596 -371 595 243 + mu 0 4 234 302 300 235 + f 4 597 -373 -597 310 + mu 0 4 167 303 302 234 + f 4 -599 -375 -598 181 + mu 0 4 166 304 303 167 + f 4 598 42 -600 -378 + mu 0 4 305 38 41 306 + f 4 -601 -577 599 577 + mu 0 4 371 369 306 41 + f 4 -602 -483 600 484 + mu 0 4 124 308 369 371 + f 4 602 -379 601 148 + mu 0 4 97 307 308 124 + f 4 603 -382 -603 109 + mu 0 4 96 309 307 97 + f 4 604 -426 -604 422 + mu 0 4 334 336 309 96 + f 4 605 -545 -605 543 + mu 0 4 27 311 336 334 + f 4 606 -384 -606 27 + mu 0 4 26 310 311 27 + f 4 -607 152 -608 -388 + mu 0 4 312 126 129 313 + f 4 -609 -389 607 302 + mu 0 4 217 314 313 129 + f 4 609 -391 608 225 + mu 0 4 216 315 314 217 + f 4 610 -393 -610 248 + mu 0 4 239 316 315 216 + f 4 611 -499 -611 496 + mu 0 4 23 317 316 239 + f 4 585 -395 -612 25 + mu 0 4 20 292 317 23 + f 4 -614 34 -613 -314 + mu 0 4 266 12 33 267 + f 4 -615 -563 612 563 + mu 0 4 356 354 267 33 + f 4 -616 -458 614 459 + mu 0 4 116 269 354 356 + f 4 616 -316 615 135 + mu 0 4 78 268 269 116 + f 4 -617 90 617 -320 + mu 0 4 268 78 81 270 + f 4 -401 -618 396 618 + mu 0 4 321 270 81 319 + f 4 -531 -619 528 619 + mu 0 4 272 321 319 2 + f 4 -621 -321 -620 2 + mu 0 4 1 271 272 2 + f 4 -622 -325 620 4 + mu 0 4 5 273 271 1 + f 4 -623 -503 621 503 + mu 0 4 244 275 273 5 + f 4 -624 -326 622 257 + mu 0 4 207 274 275 244 + f 4 624 -329 623 215 + mu 0 4 206 276 274 207 + f 4 625 -331 -625 298 + mu 0 4 139 277 276 206 + f 4 -627 -333 -626 161 + mu 0 4 138 278 277 139 + f 4 -628 -336 626 18 + mu 0 4 18 280 279 19 + f 4 -629 -549 627 549 + mu 0 4 341 339 280 18 + f 4 -630 -432 628 434 + mu 0 4 107 282 339 341 + f 4 -631 -337 629 120 + mu 0 4 106 281 282 107 + f 4 631 -340 630 139 + mu 0 4 119 283 281 106 + f 4 632 -476 -632 472 + mu 0 4 364 366 283 119 + f 4 633 -573 -633 571 + mu 0 4 45 285 366 364 + f 4 634 -342 -634 47 + mu 0 4 44 284 285 45 + f 4 -635 173 -636 -346 + mu 0 4 286 154 157 287 + f 4 -637 -347 635 290 + mu 0 4 189 288 287 157 + f 4 637 -349 636 197 + mu 0 4 188 289 288 189 + f 4 638 -351 -638 269 + mu 0 4 253 290 289 188 + f 4 639 -515 -639 513 + mu 0 4 13 291 290 253 + f 4 613 -353 -640 12 + mu 0 4 12 266 291 13; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; +createNode transform -n "body_geo" -p "blue_bomb_grp"; + rename -uid "93FAF9D4-436F-1231-2776-1892953AEBED"; + setAttr ".t" -type "double3" 0 3.4853339195251465 0 ; +createNode mesh -n "body_geoShape" -p "body_geo"; + rename -uid "C6A9FB99-4EC7-C7AE-E400-15AF94436FD4"; + setAttr -k off ".v"; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".pv" -type "double2" 0.22913009114563465 0.8418978750705719 ; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; +createNode mesh -n "bomba_braba_ajustado_olhos:polySurfaceShape1" -p "body_geo"; + rename -uid "6EC79EC3-4CE4-10F3-6D09-F9AC52D5529C"; + setAttr -k off ".v"; + setAttr ".io" yes; + setAttr ".vir" yes; + setAttr ".vif" yes; + setAttr ".uvst[0].uvsn" -type "string" "map1"; + setAttr -s 4971 ".uvst[0].uvsp"; + setAttr ".uvst[0].uvsp[0:249]" -type "float2" 0.48005 0.77525002 0.47751001 + 0.78108001 0.47126999 0.77925998 0.47385001 0.77358001 0.47523999 0.787 0.46884 0.78490001 + 0.47305 0.79301 0.46686 0.79062003 0.47082001 0.79931998 0.46476001 0.79676998 0.48423001 + 0.70203 0.48511001 0.70897001 0.47848001 0.70955002 0.47758999 0.70270997 0.48574999 + 0.71561003 0.479 0.71604002 0.48673999 0.72180998 0.4799 0.72202998 0.48725 0.72803003 + 0.48034999 0.72801 0.48734 0.73417002 0.48050001 0.73391002 0.48695999 0.74018002 + 0.48016 0.73964 0.48609 0.74593002 0.47936001 0.74511999 0.48534 0.75161999 0.47867 + 0.75059003 0.48447999 0.75735998 0.47801 0.75616997 0.48363 0.76327997 0.47729999 + 0.76194 0.48212001 0.76931 0.47589001 0.76780999 0.52099001 0.78637999 0.51853001 + 0.79334998 0.50976002 0.7906 0.51209998 0.78376001 0.51607001 0.80040002 0.50733 + 0.79751003 0.51348001 0.80765998 0.50479001 0.80457002 0.51059997 0.81514001 0.50206 + 0.81194001 0.52667999 0.69584 0.52824003 0.70398998 0.51912999 0.70524001 0.51770002 + 0.69727999 0.52954 0.71223998 0.52030998 0.71307999 0.53047001 0.72038001 0.52118999 + 0.72075999 0.53114998 0.72847003 0.52169001 0.72838002 0.53123999 0.73642999 0.52175999 + 0.73580998 0.53083003 0.74396002 0.52134001 0.74291998 0.52998 0.75116003 0.52056003 + 0.74983001 0.52881998 0.75816 0.51942998 0.75660002 0.52732998 0.76512998 0.51801997 + 0.76336002 0.52553999 0.77223003 0.51630002 0.77015001 0.52336001 0.77936 0.51431 + 0.77695 0.61742002 0.76472002 0.61834002 0.77195001 0.60948998 0.77304 0.60842001 + 0.76555997 0.61952001 0.77916998 0.61074001 0.78043002 0.62096 0.78637999 0.61225998 + 0.78801 0.62261999 0.79385 0.61425 0.79579002 0.63124001 0.67793 0.62783998 0.68502003 + 0.61947 0.68184 0.62343001 0.67455 0.62476999 0.69230998 0.61602998 0.68949002 0.62221003 + 0.69958001 0.61317998 0.69726998 0.62015003 0.70692998 0.61089998 0.70503998 0.61861998 + 0.71420997 0.60922998 0.71272999 0.61758 0.72135001 0.60813999 0.72025001 0.61690998 + 0.72839999 0.60750997 0.72758001 0.61655998 0.73545003 0.60712999 0.73480999 0.61633998 + 0.74260998 0.60693997 0.74221998 0.61641002 0.74996001 0.60702997 0.74996001 0.61675 + 0.75737 0.60754001 0.75783002 0.65788001 0.76174003 0.65869999 0.76738 0.65158999 + 0.76817 0.65090001 0.76214999 0.65963 0.77311999 0.65266001 0.77420002 0.66042 0.77920002 + 0.65345001 0.78059 0.66128999 0.78549999 0.65452999 0.78719997 0.66842002 0.69167 + 0.66601998 0.69762999 0.65912002 0.69581002 0.66163999 0.68963999 0.66390002 0.70349002 + 0.65687001 0.70200998 0.66218001 0.70925999 0.65494001 0.70788002 0.66064 0.71508998 + 0.65336001 0.71394002 0.65947998 0.72091001 0.65214998 0.71990001 0.65821999 0.72679001 + 0.65121001 0.72595 0.65745002 0.73271 0.6505 0.73198998 0.65719002 0.73861003 0.65020001 + 0.73800999 0.65700001 0.74444002 0.65003997 0.74401999 0.65704 0.75028998 0.64997 + 0.75006998 0.65745997 0.75606 0.65030998 0.75621003 0.25988001 0.76958001 0.25407001 + 0.77023 0.25040999 0.76392001 0.25911999 0.76289999 0.26978001 0.76340997 0.26995999 + 0.77012002 0.28084001 0.76503998 0.27996999 0.77147001 0.28986999 0.77433997 0.29150999 + 0.76809001 0.29960001 0.77392 0.29655999 0.77823001 0.30987999 0.78973001 0.30899 + 0.80071002 0.29999 0.79923999 0.30085999 0.79005998 0.29998001 0.78331 0.30598 0.78095001 + 0.23988 0.77718002 0.24682 0.78066999 0.24562 0.78781998 0.23515999 0.78460997 0.24304999 + 0.77126002 0.24844 0.77583998 0.2507 0.77234 0.24545 0.76646 0.24481 0.79671001 0.23488 + 0.79685003 0.30623001 0.81101 0.29802001 0.80852997 0.30246001 0.81967002 0.29581001 + 0.81388003 0.24585 0.80429 0.23559999 0.80931002 0.27002001 0.81742001 0.26914001 + 0.82621998 0.26030001 0.82388002 0.26205999 0.81484002 0.27928999 0.81955999 0.27869001 + 0.82775003 0.25193 0.82060999 0.25531 0.81230998 0.28766999 0.82801002 0.28546 0.82020998 + 0.24386001 0.81586999 0.24869999 0.80852002 0.29567999 0.82484001 0.29122999 0.81834 + 0.20174 0.77832001 0.20924 0.77586001 0.21341 0.78394002 0.20275 0.78737998 0.20020001 + 0.77367997 0.20564 0.77004999 0.17165001 0.76832002 0.17025 0.76335001 0.18041 0.76156002 + 0.18182001 0.76739001 0.18935999 0.76094002 0.18954 0.76753998 0.16114999 0.77095997 + 0.15961 0.76598001 0.15272 0.77521998 0.15036 0.77188998 0.19454999 0.76814997 0.19687 + 0.76191002 0.19797 0.77045 0.20201001 0.76563001 0.14068 0.78773999 0.14752001 0.78814 + 0.14732 0.79553002 0.14019001 0.79648 0.14401001 0.77898997 0.1489 0.78013998 0.17233001 + 0.82568002 0.1709 0.81625998 0.1794 0.81458002 0.18144 0.82296997 0.1866 0.81253999 + 0.19009 0.81993997 0.19424 0.80928999 0.19945 0.81581998 0.16146 0.82677001 0.16159999 + 0.81770998 0.20072 0.80497998 0.20914 0.80922002 0.15342 0.82460999 0.15707 0.81651998 + 0.20280001 0.79505002 0.21185 0.79715002 0.14645 0.82042998 0.1521 0.81329 0.14994 + 0.80914003 0.14277001 0.81413001 0.14105 0.80508 0.14827 0.80290997 0.24778 0.75672001 + 0.25856999 0.75721997 0.27009001 0.75779003 0.28172001 0.75994998 0.29282999 0.76416999 + 0.30258 0.77048999 0.31151 0.77853 0.31772 0.78959 0.31690001 0.80207998 0.31400001 + 0.81395 0.30878001 0.82498002 0.29976001 0.83174002 0.28986999 0.83569998 0.27849001 + 0.83601999 0.26778999 0.83467001 0.25828999 0.83252001 0.24916001 0.82968003 0.2397 + 0.82556999; + setAttr ".uvst[0].uvsp[250:499]" 0.18948001 0.75579 0.19972 0.75581998 0.15816 + 0.76326001 0.1691 0.75932997 0.17948 0.75687999 0.14758 0.76911998 0.13923 0.77737999 + 0.13496999 0.78772002 0.13371 0.79749 0.13473 0.80646998 0.13752 0.81647998 0.15133999 + 0.83052999 0.14172 0.82454997 0.17403001 0.83192003 0.16263001 0.83287001 0.19232 + 0.82694 0.18345 0.82933003 0.20377 0.82424998 0.22481 0.76589 0.21997 0.76532 0.22001 + 0.76441002 0.22480001 0.76490998 0.22936 0.76490003 0.22928999 0.76595002 0.22515 + 0.75822002 0.22059999 0.75797999 0.22037999 0.75628 0.22506 0.75642997 0.23421 0.75893003 + 0.22946 0.75809997 0.22932 0.75670999 0.23432 0.75746 0.23382001 0.76440001 0.23384 + 0.76547998 0.23091 0.82154 0.21321 0.82038999 0.22282 0.81945997 0.22326 0.80792999 + 0.20648 0.76130003 0.20928 0.76599997 0.2429 0.76251 0.21360999 0.77182001 0.23627999 + 0.77249998 0.24019 0.76779002 0.21856 0.77541 0.23086999 0.77579999 0.22415 0.78573 + 0.22471 0.77623999 0.22334 0.79694998 0.21649 0.76498997 0.21653999 0.76389998 0.21597999 + 0.75835001 0.21582 0.75656998 0.23725 0.76367998 0.23765001 0.76445001 0.21212 0.76375002 + 0.21283001 0.76280999 0.23857 0.76192999 0.23971 0.76176 0.21185 0.76090997 0.21058001 + 0.76051003 0.21252 0.75914001 0.21188 0.75755 0.23838 0.75879002 0.23784 0.75989002 + 0.21646 0.76669002 0.21156999 0.76431 0.22014 0.76763999 0.22482 0.76828998 0.22954001 + 0.76810002 0.23415001 0.76677001 0.23768 0.76536 0.21537 0.76906002 0.21085 0.76516998 + 0.21983001 0.77070999 0.22477999 0.77140999 0.22982 0.77107 0.23483001 0.76937002 + 0.23885 0.76635998 0.24068999 0.76166999 0.24192999 0.76222998 0.20924 0.76049 0.20804 + 0.76043999 0.21100999 0.75645 0.21565001 0.75501001 0.22033 0.75480998 0.22503 0.75484002 + 0.22936 0.75518 0.23449001 0.75585997 0.23921999 0.75777 0.24056999 0.75660998 0.23486 + 0.75436997 0.22953001 0.75348002 0.22504 0.75310999 0.22039001 0.75283998 0.21516 + 0.75321001 0.20968001 0.7554 0.22508 0.76128 0.22075 0.76081997 0.22953001 0.76116002 + 0.22068 0.76156002 0.22497 0.76170999 0.22958 0.76188999 0.23386 0.76146001 0.23380999 + 0.76187998 0.21649 0.76084 0.21645001 0.76139998 0.21371999 0.76109999 0.21381 0.7608 + 0.21351001 0.76090997 0.23650999 0.76191002 0.23643 0.76156002 0.23683 0.76176 0.14391001 + 0.76529998 0.15671 0.75994003 0.16828001 0.75544 0.17871 0.75217998 0.18874 0.75064999 + 0.19889 0.75007999 0.20936 0.74945998 0.21424 0.74855 0.22013 0.74826002 0.22552 + 0.74829 0.23085999 0.74892998 0.23634 0.74975997 0.24240001 0.75076997 0.24969 0.75120997 + 0.25920999 0.75225002 0.27048001 0.75353003 0.28213999 0.75563002 0.29387999 0.75961 + 0.30559 0.76574999 0.31830999 0.77373999 0.32336 0.79101002 0.32282999 0.80400002 + 0.13292 0.77472001 0.12851 0.78825998 0.12739 0.79860997 0.12874 0.80822003 0.13203999 + 0.81906998 0.13726 0.82990998 0.31990999 0.81630999 0.31358001 0.82955003 0.30333999 + 0.83823001 0.29172 0.84205002 0.27835 0.84280998 0.26642999 0.84188998 0.25665 0.83939999 + 0.24764 0.83709002 0.23736 0.83416998 0.22846 0.83196002 0.21525 0.83214998 0.22273 + 0.83046001 0.20557 0.83396 0.19476999 0.83710003 0.18472999 0.84025002 0.17362 0.84202999 + 0.16266 0.84118003 0.15005 0.83886999 0.19002999 0.69777 0.18577 0.69836998 0.18509001 + 0.69571 0.19047999 0.69514 0.17967001 0.69801003 0.18075 0.70069999 0.19419999 0.69992 + 0.19599999 0.69748998 0.1996 0.70231998 0.19722 0.70380002 0.20238 0.71068001 0.19939999 + 0.71082997 0.20186 0.71911001 0.1997 0.71886998 0.20102 0.72574002 0.19904999 0.72574002 + 0.17519 0.70317 0.17822 0.70502001 0.17415 0.71112001 0.17764001 0.71186 0.17564 + 0.71947002 0.17827 0.71935999 0.17681 0.72596002 0.17918999 0.72575003 0.1999 0.73216999 + 0.20178001 0.73171002 0.1763 0.73276001 0.17900001 0.73317999 0.17314 0.74014002 + 0.17567 0.74048001 0.20358001 0.73802 0.20584001 0.73623002 0.19132 0.70555001 0.18505999 + 0.70530999 0.18595 0.72613001 0.18617 0.73272002 0.19307999 0.72604001 0.1936 0.73232001 + 0.18566 0.72004998 0.19303 0.71969998 0.18492 0.71240002 0.19192 0.71205997 0.19502001 + 0.73838001 0.18609001 0.73912001 0.1873 0.74517 0.1776 0.74730998 0.19648001 0.74414003 + 0.20567 0.74413002 0.21098 0.73847997 0.21063 0.74062997 0.21875 0.73874998 0.21923999 + 0.74093002 0.22435001 0.73690999 0.22494 0.73905998 0.22959 0.73312002 0.23074999 + 0.73549998 0.23706 0.73144001 0.23637 0.72899002 0.2447 0.73040003 0.24488001 0.72766 + 0.25204 0.73128003 0.25143999 0.73339999 0.25587001 0.73747998 0.25718001 0.73559999 + 0.26238999 0.73729002 0.26273999 0.73973 0.26932999 0.73949999 0.26894999 0.73738003 + 0.27693999 0.73455 0.27706999 0.73694003 0.28371999 0.73537999 0.28351 0.73808002 + 0.21117 0.74382001 0.21946 0.74369001 0.22679 0.74283999 0.23209 0.73904002 0.23739 + 0.73649001 0.24355 0.73539001 0.24963 0.73760003 0.25397 0.74031001 0.26155001 0.74311 + 0.27004999 0.74347001 0.27676001 0.74219 0.29036 0.74180001 0.28985 0.74347001 0.28931001 + 0.74616998 0.28295001 0.74303001 0.29710001 0.74592 0.29732001 0.74432999 0.30362999 + 0.74285001 0.30476001 0.74458998; + setAttr ".uvst[0].uvsp[500:749]" 0.33208001 0.72259003 0.33432001 0.72547001 + 0.33252001 0.72680002 0.33050999 0.72464001 0.32539999 0.71955001 0.32864001 0.72086 + 0.32721001 0.72298998 0.32505 0.72207999 0.32131001 0.72012001 0.32168001 0.72288001 + 0.31704 0.72240001 0.31777999 0.72478002 0.31331 0.72657001 0.31443 0.72891998 0.82529002 + 0.97206998 0.82621002 0.96392 0.82681 0.96394002 0.82589 0.97206998 0.86286002 0.96838999 + 0.86330998 0.96276999 0.86971998 0.96275002 0.86923999 0.96824002 0.82639003 0.95524001 + 0.82696003 0.95529997 0.86985999 0.95719999 0.86329001 0.95718998 0.31007001 0.73262 + 0.31237999 0.73417002 0.91658002 0.9677 0.91588998 0.96774 0.91641003 0.96072 0.91711998 + 0.96065003 0.91759002 0.95516002 0.91834998 0.95517999 0.33557001 0.73044997 0.33256 + 0.73045999 0.82392001 0.97836 0.82454997 0.97833002 0.86227 0.97342002 0.86888999 + 0.97329003 0.91627997 0.97359997 0.91554999 0.97365999 0.30957001 0.73930001 0.30766001 + 0.73790002 0.33508 0.73535001 0.3321 0.73408002 0.32782 0.74795002 0.32595 0.75388002 + 0.32359001 0.75270998 0.32526001 0.74724001 0.32802999 0.74259001 0.33034 0.74384999 + 0.33282 0.74009001 0.33035001 0.73874003 0.1679 0.75208998 0.16708 0.74783999 0.16805001 + 0.74888998 0.155 0.75575 0.15554 0.75686997 0.14109001 0.76016998 0.14174999 0.76161999 + 0.1561 0.75809002 0.14230999 0.76366001 0.24343 0.74093002 0.23799001 0.74098998 + 0.24902 0.74189001 0.23389 0.74146003 0.25356999 0.74325001 0.23746 0.74520999 0.23221 + 0.74457997 0.24349999 0.7457 0.25108999 0.74601001 0.26052001 0.74809998 0.26137999 + 0.74510002 0.27057999 0.74607998 0.29012001 0.74948001 0.28040999 0.74633002 0.27072999 + 0.74962997 0.28184 0.75121999 0.29390001 0.75419003 0.29730001 0.74849999 0.29672 + 0.75177002 0.32521999 0.72526002 0.32892999 0.72767001 0.32717001 0.73145998 0.32256001 + 0.72828001 0.3251 0.73585999 0.31973001 0.73259997 0.32293999 0.74010003 0.31744999 + 0.73717999 0.32052001 0.74483001 0.31494001 0.74185002 0.31568 0.74773997 0.30656999 + 0.76008999 0.30702999 0.75494999 0.30636999 0.75002998 0.31843001 0.76633 0.32609999 + 0.75913 0.32275 0.75866997 0.31551999 0.75389999 0.31625 0.75906003 0.32798001 0.76546001 + 0.32512999 0.76639003 0.32674 0.77746999 0.32659999 0.78253001 0.33013999 0.77377999 + 0.32949999 0.79483002 0.33225 0.77201003 0.22938 0.84495002 0.22236 0.84390998 0.2313 + 0.92431003 0.24026 0.92040998 0.2502 0.94090003 0.24054 0.94542003 0.22129001 0.87001002 + 0.23006999 0.87115997 0.23105 0.89230001 0.22148 0.89191002 0.26166999 0.96192998 + 0.25167 0.96719003 0.23817 0.85043001 0.24053 0.87304997 0.24313 0.89283001 0.25156 + 0.91628999 0.26181999 0.93586999 0.27364999 0.95595998 0.24849001 0.85338002 0.25141001 + 0.87449002 0.25534999 0.89284003 0.26247999 0.91222 0.27379999 0.93118 0.28599 0.95017999 + 0.27083999 0.44114 0.28095999 0.44760001 0.26675999 0.47027999 0.25560999 0.46355999 + 0.29238001 0.45528999 0.27835 0.47735 0.30359 0.46316999 0.2897 0.4844 0.26535001 + 0.50032997 0.27688 0.50651002 0.26615 0.52827001 0.25426 0.52270001 0.25382 0.49401 + 0.24275 0.51688999 0.2427 0.48802999 0.23124 0.51134998 0.64297003 0.76271999 0.64240998 + 0.75642997 0.64213002 0.74997002 0.64213002 0.74362999 0.64230001 0.73738003 0.64271998 + 0.73114002 0.64336002 0.72487003 0.64429998 0.71859998 0.64560002 0.71236998 0.64727998 + 0.70608997 0.64933997 0.69985002 0.65175003 0.69351 0.65438998 0.68708998 0.64706999 + 0.78884 0.64574999 0.78206998 0.64371997 0.76907003 0.64466 0.77551001 0.62563998 + 0.75696999 0.62617999 0.76398998 0.62533998 0.74993002 0.62537003 0.74295002 0.62553 + 0.73606998 0.62594998 0.72930002 0.62658 0.72253001 0.62760001 0.71570998 0.62901998 + 0.70880997 0.63090998 0.70190001 0.63325 0.69496 0.63603997 0.68798 0.63906002 0.68116999 + 0.62941998 0.78498 0.63094997 0.79211998 0.62808001 0.77789003 0.62700999 0.77094001 + 0.63417 0.75664997 0.6347 0.76334 0.63393998 0.74993002 0.63388997 0.74326998 0.63411999 + 0.73672003 0.63449001 0.73022997 0.63515002 0.72372001 0.63612002 0.71717 0.63748002 + 0.71061999 0.63924998 0.70405 0.64143997 0.69746 0.64398998 0.69080001 0.64678001 + 0.68419999 0.63767999 0.78353 0.63909 0.79044998 0.63647002 0.77670997 0.63546002 + 0.76999998 0.48923999 0.77096999 0.48715001 0.77708 0.49088001 0.76476002 0.48464999 + 0.78297001 0.48255 0.78922999 0.48021001 0.79567999 0.47769001 0.80217999 0.49193999 + 0.75866002 0.493 0.75272 0.49386001 0.74677998 0.49465999 0.74075001 0.49502 0.73447001 + 0.49494001 0.72807997 0.49445999 0.72156 0.49169001 0.70112002 0.49269 0.70817 0.49351999 + 0.71503001 0.50335002 0.78136998 0.50546998 0.77472001 0.50103003 0.78786999 0.49867001 + 0.79457998 0.49621999 0.80150002 0.49353999 0.80855 0.50994998 0.70629001 0.50862998 + 0.69867998 0.51107001 0.71381998 0.51187003 0.72114003 0.51231998 0.72829002 0.51234001 + 0.7353 0.51198 0.74207997 0.51124001 0.74866998 0.51021999 0.75515997 0.50887001 + 0.76163 0.50729001 0.76815999 0.49502 0.77915001 0.4971 0.77278 0.49263999 0.78534001 + 0.49037999 0.79179001 0.48802 0.79848999 0.48532999 0.80536002 0.50098997 0.70728999 + 0.49992001 0.70002002 0.50204003 0.71443999 0.50286001 0.72136003 0.50329 0.72819 + 0.50335002 0.73483998 0.50300997 0.74137002 0.50230998 0.74768001 0.50136 0.75388998 + 0.50015998 0.76007998 0.49882999 0.76635998; + setAttr ".uvst[0].uvsp[750:999]" 0.29451001 0.85408998 0.28042999 0.85637999 + 0.26899999 0.85712999 0.25826001 0.85527998 0.26736999 0.89192998 0.26219001 0.87519997 + 0.27893001 0.88993001 0.27307999 0.87538999 0.28990999 0.88672 0.28404999 0.87352997 + 0.30068001 0.88237 0.29556999 0.87010998 0.32253999 0.50607002 0.33333999 0.51362002 + 0.32124999 0.53214002 0.31018001 0.52582997 0.29859 0.90029001 0.30928999 0.89445001 + 0.32016999 0.90719998 0.30921 0.91444999 0.33300999 0.9206 0.32170999 0.92922997 + 0.33612001 0.48767999 0.34667 0.49665999 0.31344 0.54911 0.30136001 0.54477 0.27517 + 0.90904999 0.28597 0.92629999 0.28722 0.90513003 0.29784 0.92079997 0.29822999 0.94389999 + 0.31 0.93695003 0.31459001 0.47124001 0.30081999 0.49151999 0.32539001 0.47926 0.31174001 + 0.49869001 0.28830001 0.51289999 0.29936999 0.51942998 0.27790001 0.53399003 0.28957 + 0.53979999 0.15813001 0.85275 0.14632 0.84847999 0.10118 0.49772 0.11179 0.48890999 + 0.12583999 0.50694001 0.11506 0.51447999 0.11234 0.89701998 0.12334 0.90555 0.10968 + 0.91978002 0.098779999 0.90998 0.14113 0.86124998 0.15183 0.86668003 0.14465 0.87884003 + 0.13383999 0.87261999 0.12416 0.88457 0.13516 0.89187002 0.13839 0.52710998 0.12689 + 0.53363001 0.21399 0.8448 0.20257001 0.85035998 0.19104999 0.85356998 0.17990001 + 0.85474998 0.16898 0.85402 0.20982 0.87015003 0.20677 0.89130002 0.19828001 0.87142003 + 0.19399001 0.89091998 0.18626 0.87228 0.18099 0.88988 0.17438 0.87203997 0.16850001 + 0.88757998 0.16289 0.87019002 0.15631001 0.88384002 0.19476999 0.91877002 0.20761999 + 0.92570001 0.19645999 0.94578999 0.18302 0.93849999 0.18354 0.91342998 0.17126 0.93243003 + 0.17241 0.90829998 0.15918 0.92642999 0.1594 0.90367001 0.14698 0.92010999 0.14687 + 0.89824998 0.13485999 0.91321999 0.18384001 0.96666002 0.17073999 0.95880997 0.15758 + 0.95188999 0.14529 0.94468999 0.13305999 0.93703997 0.12105 0.92878002 0.1697 0.44692999 + 0.18238001 0.43915999 0.19527 0.46303001 0.18358999 0.46956 0.15703 0.45552999 0.17084999 + 0.47749999 0.14534999 0.46379 0.15919 0.48480999 0.13386001 0.47193 0.14781 0.4921 + 0.12272 0.48025 0.13672 0.49950999 0.20799001 0.48767999 0.19549 0.49414 0.18369 + 0.50055999 0.17219999 0.50716001 0.16091 0.51380002 0.14975999 0.52051997 0.1486 + 0.54736 0.13665 0.55229002 0.21799999 0.51182997 0.20609 0.51713997 0.19461 0.52348 + 0.18327001 0.52991998 0.17189001 0.53618997 0.16034 0.54220998 0.60272002 0.77403003 + 0.60198998 0.76604003 0.60378999 0.78178 0.60531002 0.78996003 0.60790998 0.79812998 + 0.61312997 0.67913002 0.61759001 0.67141002 0.60936999 0.68737 0.60623997 0.69553 + 0.6038 0.70358998 0.60203999 0.71164 0.60087001 0.71943003 0.60022002 0.72688001 + 0.59985 0.73416001 0.59968001 0.74162 0.60061002 0.74954998 0.60136998 0.75774997 + 0.40035 0.87510002 0.39045 0.88779002 0.37509 0.87740999 0.38453999 0.86543 0.39943999 + 0.84368998 0.41620001 0.85136002 0.40917999 0.86295003 0.39276001 0.85408002 0.52888 + 0.78864002 0.52735001 0.79613 0.52486998 0.80324 0.52231997 0.8107 0.51911998 0.8186 + 0.53555 0.69361001 0.53741997 0.70238 0.53889 0.71134001 0.53979999 0.71985 0.54088002 + 0.72854 0.54102999 0.73749 0.54052001 0.74529999 0.53956997 0.75274003 0.53834999 + 0.75979 0.53681999 0.76700002 0.53363001 0.77416998 0.53109002 0.78135002 0.01545 + 0.80974001 0.02235 0.80633998 0.02585 0.81132001 0.01804 0.81487 0.034359999 0.8427 + 0.051580001 0.83275998 0.056449998 0.84829003 0.040410001 0.85645998 0.047510002 + 0.87101001 0.063129999 0.86264002 0.071050003 0.87579 0.05556 0.88516003 0.34992 + 0.47064 0.36037001 0.48098999 0.33941001 0.46147999 0.32867 0.45231 0.31777 0.44299999 + 0.30673999 0.43457001 0.29552001 0.42636999 0.28555 0.41971001 0.1552 0.42570001 + 0.16817001 0.41738999 0.14302 0.43496001 0.13123 0.44372001 0.11968 0.45296001 0.10842 + 0.46234 0.097479999 0.47202 0.08681 0.48212001 0.34722999 0.93443 0.33533999 0.94450998 + 0.32387999 0.95363998 0.31174001 0.96196002 0.29892999 0.96943003 0.28659999 0.97649002 + 0.27419999 0.98317999 0.26378 0.98907 0.16993 0.98751003 0.15683 0.97925001 0.14324 + 0.97156 0.13062 0.96328002 0.11806 0.95444 0.10607 0.94484001 0.094609998 0.93448001 + 0.083729997 0.92330003 0.13073 0.76090002 0.13023999 0.76270998 0.12215 0.75847 0.12104 + 0.76034999 0.11306 0.75725001 0.11405 0.75522 0.10557 0.75117999 0.1046 0.75335997 + 0.0977 0.74700999 0.096859999 0.74919999 0.090190001 0.74509001 0.091179997 0.74313998 + 0.08427 0.74141002 0.08506 0.73926997 0.079209998 0.73622 0.078390002 0.73790002 + 0.073129997 0.73398 0.072700001 0.73587 0.06696 0.73451 0.066919997 0.73263001 0.059980001 + 0.73312002 0.060369998 0.73460001 0.052620001 0.73596001 0.053440001 0.7374 0.046179999 + 0.74088001 0.0471 0.74230999 0.041189998 0.74590999 0.04281 0.74773002 0.035429999 + 0.75253999 0.036669999 0.75489998 0.0041899998 0.74217999 0.01664 0.74659002 0.01694 + 0.74958003 0.0044800001 0.74554998 0.02825 0.75577003 0.027349999 0.75344002 0.02337 + 0.6437 0.01093 0.64554 0.0106 0.64216 0.02272 0.64039999 0.034389999 0.63603002 0.032540001 + 0.63445997 0.038649999 0.62676001 0.04064 0.62840003 0.046890002 0.62096 0.04535 + 0.61950999 0.053289998 0.61585999; + setAttr ".uvst[0].uvsp[1000:1249]" 0.05223 0.61399001 0.060710002 0.61431998 + 0.060630001 0.61225998 0.067749999 0.61729997 0.064669997 0.61571997 0.065360002 + 0.61400998 0.069080003 0.61583 0.073980004 0.62399 0.071699999 0.62462997 0.073760003 + 0.63265002 0.071110003 0.63169998 0.072059996 0.63990998 0.068920001 0.63913 0.070119999 + 0.64677 0.067560002 0.64714003 0.071110003 0.65138 0.069389999 0.65262997 0.07519 + 0.65653002 0.075910002 0.65486002 0.082269996 0.65661001 0.082060002 0.65470999 0.088590004 + 0.65324998 0.087310001 0.65161002 0.093180001 0.64660001 0.091959998 0.64551002 0.096799999 + 0.64012998 0.095059998 0.63902003 0.098370001 0.63279998 0.10071 0.63422 0.10392 + 0.62706 0.10544 0.62876999 0.11139 0.6232 0.10988 0.62198001 0.11592 0.61923999 0.11508 + 0.61728001 0.12151 0.61537999 0.12073 0.61383998 0.12848 0.61259001 0.12804 0.61091 + 0.13499001 0.61120999 0.13451 0.60934001 0.14129999 0.61167997 0.14140999 0.6099 + 0.14812 0.61357999 0.14885999 0.61192 0.15412 0.61725003 0.15544 0.61583 0.1586 0.62360001 + 0.15973 0.62230003 0.16150001 0.63142002 0.16295999 0.63028002 0.16274001 0.63927001 + 0.16407 0.63925999 0.45236 0.89248002 0.45339 0.88489997 0.45407999 0.8847 0.45282999 + 0.89266002 0.45278999 0.87668002 0.45228001 0.87665999 0.45052001 0.86936998 0.44995999 + 0.86940998 0.44937 0.86229998 0.44879001 0.86229998 0.44848001 0.85535997 0.44797 + 0.85527003 0.44870999 0.84724998 0.44797999 0.84710002 0.45001999 0.83503997 0.44893 + 0.84140998 0.44819999 0.84136999 0.44946 0.83484 0.45263001 0.82880002 0.45225999 + 0.82824999 0.46158999 0.82073998 0.45653999 0.82376999 0.45624 0.82326001 0.46127999 + 0.82016999 0.46786001 0.81882 0.46757999 0.81812 0.49063 0.83328998 0.48646 0.82704002 + 0.48682001 0.82665002 0.49111 0.83295 0.48069999 0.82154 0.48100001 0.82103002 0.47411001 + 0.81854999 0.47420001 0.81787002 0.16277 0.64520001 0.16408999 0.64516997 0.49305999 + 0.83866 0.49353001 0.83832997 0.16212 0.65098 0.16344 0.65091002 0.49472001 0.84421998 + 0.49520999 0.84389001 0.16107 0.65741003 0.16271999 0.65723997 0.49638 0.85051 0.49689999 + 0.85021001 0.16044 0.66364998 0.16211 0.66343999 0.49805 0.85649002 0.49849999 0.85623997 + 0.15958001 0.67065001 0.16124 0.67032999 0.50006002 0.86317003 0.50053 0.86290997 + 0.49693999 0.85715002 0.49880001 0.86388999 0.48831001 0.86874998 0.48648 0.86210001 + 0.48464 0.85588002 0.49498001 0.85127997 0.48298001 0.84966999 0.49344999 0.84509999 + 0.49189001 0.83947998 0.48135999 0.84368002 0.48941001 0.83414 0.47922 0.83784997 + 0.48552001 0.82806998 0.47639999 0.83210999 0.47994 0.82287002 0.47297999 0.82700002 + 0.47387001 0.82029003 0.46974999 0.82292998 0.46434999 0.87217999 0.46617001 0.87911999 + 0.45591 0.88414001 0.45414001 0.87673002 0.46252 0.86517 0.45201001 0.86926001 0.46134001 + 0.85838997 0.45091999 0.86228001 0.46048 0.85171002 0.44984999 0.85557997 0.45991999 + 0.84495002 0.45063001 0.84767002 0.45923001 0.83879 0.45087001 0.84152001 0.45861 + 0.83311999 0.45146999 0.83555001 0.45839 0.82828999 0.45363 0.83025998 0.47713 0.87395 + 0.47510001 0.86732 0.47351 0.86066997 0.47218001 0.85415 0.47086999 0.84779 0.46943 + 0.84157997 0.4677 0.83570999 0.46577001 0.83029002 0.46386999 0.82560998 0.46241999 + 0.82224 0.4686 0.82068002 0.45728001 0.82507002 0.44768 0.89850998 0.44801 0.89893001 + 0.44093999 0.90153003 0.44099 0.90192002 0.43509001 0.90025997 0.43465999 0.90074003 + 0.41929001 0.92207003 0.42232999 0.93611002 0.42155001 0.93616003 0.41826001 0.92263001 + 0.41387001 0.91390997 0.41336 0.91420001 0.40786999 0.90622002 0.40841001 0.90588999 + 0.40494001 0.89877999 0.40422001 0.89894003 0.40513 0.89196998 0.40472999 0.89172 + 0.40979001 0.88696998 0.40768 0.88923001 0.40741 0.88889003 0.40955999 0.88647002 + 0.41688001 0.88692999 0.41725001 0.88608003 0.42249 0.89025998 0.42298999 0.88964999 + 0.42831999 0.89564002 0.42873999 0.89498001 0.41586 0.88919002 0.42113999 0.89187998 + 0.41611999 0.89910001 0.41165999 0.89419001 0.42721 0.89740002 0.42157999 0.90502 + 0.42807999 0.90946001 0.43347999 0.90204 0.41523001 0.91314 0.42197001 0.92057002 + 0.40985999 0.90500998 0.40684 0.89836001 0.40621001 0.89262003 0.4084 0.89014 0.41038999 + 0.88831002 0.41804001 0.94840997 0.41867 0.94861001 0.71885997 0.84941 0.72013003 + 0.83608001 0.72073001 0.83582002 0.71964002 0.84939998 0.71498001 0.86146998 0.71375 + 0.86137003 0.71700001 0.86891001 0.71609002 0.86944002 0.72311002 0.87414998 0.72245002 + 0.87493998 0.72943997 0.87627 0.73580998 0.88098001 0.73541999 0.88156003 0.72909999 + 0.87686998 0.74098998 0.88731003 0.74040997 0.88775003 0.74224001 0.89473999 0.74295998 + 0.89451998 0.74335003 0.90132999 0.74421 0.90125 0.74392003 0.90825999 0.74317002 + 0.90812999 0.74325001 0.91496998 0.74252999 0.91482002 0.74265999 0.92225999 0.74185002 + 0.92224002 0.74137998 0.92987001 0.74220002 0.92979002 0.79777998 0.95345998 0.80208999 + 0.94679999 0.80267 0.94716001 0.79846001 0.95379001 0.79418999 0.96077001 0.79483998 + 0.96122003 0.79154003 0.96666998 0.79206997 0.96710998 0.78732997 0.97196001 0.78775001 + 0.97244 0.78099 0.97636002 0.78122002 0.97702998 0.77322 0.97885001 0.77284998 0.97964001 + 0.76071 0.97838998 0.76119 0.97767001 0.75002998 0.97163999 0.75072002 0.97115999 + 0.74479002 0.96411997 0.74403 0.96454 0.74189001 0.95621002 0.74089003 0.95665002; + setAttr ".uvst[0].uvsp[1250:1499]" 0.74032998 0.94773 0.73929 0.94809997 0.74088001 + 0.93864 0.74000001 0.93875998 0.77371001 0.97136003 0.77673 0.96613002 0.78623003 + 0.97070998 0.78039998 0.97468001 0.76444 0.96859002 0.76640999 0.96204001 0.75501001 + 0.96508002 0.75580001 0.95848 0.74682999 0.963 0.74453002 0.95507002 0.74311 0.94676 + 0.75591999 0.95068002 0.77932 0.95993 0.79017001 0.9655 0.76782 0.95504999 0.74317002 + 0.93834001 0.75669998 0.94266999 0.78148001 0.95322001 0.79249001 0.95959002 0.76936001 + 0.94778001 0.74436003 0.92957002 0.75797999 0.93475002 0.77104002 0.94042999 0.78384 + 0.94629002 0.79597998 0.95261002 0.77420002 0.97681999 0.76245999 0.97574002 0.75256002 + 0.96990001 0.85737002 0.96293998 0.85847998 0.95722997 0.85642999 0.96886998 0.85551 + 0.97417003 0.82844001 0.96398002 0.82832003 0.95542997 0.83265001 0.95569998 0.83266002 + 0.96390998 0.82749999 0.97206998 0.83161998 0.97178 0.82617998 0.97825003 0.83051997 + 0.97779 0.824 0.98408997 0.82343 0.98427999 0.82660002 0.98873001 0.82625002 0.9892 + 0.90438002 0.96780998 0.90404999 0.97284001 0.89788997 0.97262001 0.89833999 0.96776998 + 0.90505999 0.96157002 0.89885998 0.96186 0.89881003 0.95595002 0.90534002 0.95534998 + 0.91468 0.97959 0.91521001 0.98000002 0.91057998 0.98346001 0.91099 0.98404998 0.90494001 + 0.98466998 0.90486002 0.98541999 0.89701003 0.98117 0.89688998 0.98196 0.89033002 + 0.98338002 0.89016998 0.98258001 0.88358998 0.98787999 0.88358998 0.98723 0.87799001 + 0.98971999 0.87810999 0.98904002 0.87368 0.98795003 0.87355 0.98860002 0.86830002 + 0.98426998 0.86833 0.98483998 0.86078 0.98214 0.86084998 0.98164999 0.85216999 0.98360997 + 0.85232002 0.98316002 0.84569001 0.98720002 0.84571999 0.98782003 0.84095001 0.99089998 + 0.84125 0.99155998 0.83032 0.99141997 0.83004999 0.99191999 0.83653998 0.99250001 + 0.83647001 0.99312001 0.83706999 0.95602 0.83647001 0.96366 0.83576 0.97104001 0.83484 + 0.97728002 0.83004999 0.98242998 0.82551998 0.98360997 0.83037001 0.98510998 0.82751 + 0.98751003 0.83292001 0.98596001 0.83103001 0.99010998 0.83405 0.98205 0.84186 0.95639002 + 0.84103 0.96345001 0.84025002 0.97059 0.83938003 0.97652 0.84601998 0.95651001 0.84574002 + 0.96332997 0.84491998 0.97005999 0.84398001 0.97599 0.83848 0.98145998 0.83757001 + 0.98602003 0.83670998 0.99085999 0.85118002 0.96318001 0.85193998 0.95674998 0.85026997 + 0.96954 0.84926999 0.97513002 0.86175001 0.97728002 0.85460001 0.97812998 0.84298998 + 0.98066998 0.84823 0.97952002 0.84156001 0.98510998 0.84020001 0.98922002 0.84561998 + 0.98558003 0.84683001 0.98299003 0.85316998 0.98092997 0.85272998 0.98207003 0.86110997 + 0.97915 0.86102003 0.98036999 0.87641001 0.95748001 0.87588 0.96281999 0.87538999 + 0.96832001 0.87501001 0.97364002 0.86886001 0.97746003 0.86887002 0.98004001 0.86821002 + 0.98276001 0.88099003 0.95741999 0.88145 0.96275997 0.88113999 0.96842003 0.88058001 + 0.97372001 0.88722998 0.95696002 0.88716 0.96254998 0.88666999 0.96833998 0.88599998 + 0.97346997 0.87489003 0.97843999 0.87501001 0.98196 0.87405002 0.98623002 0.88006997 + 0.97899002 0.87954003 0.98246002 0.87843001 0.98720998 0.89300001 0.96221 0.89367002 + 0.95655 0.89230001 0.96809 0.89166999 0.97302002 0.88507998 0.97834003 0.88402998 + 0.98158997 0.8836 0.98558998 0.89076 0.97688001 0.88980001 0.97877997 0.88976002 + 0.98045999 0.89762998 0.97612 0.89745998 0.97776002 0.89731002 0.97908002 0.91036999 + 0.96114999 0.91136003 0.95516998 0.91553998 0.95512003 0.91456997 0.96091998 0.91408002 + 0.96785998 0.90979999 0.96818 0.91363001 0.97382998 0.90942001 0.97399998 0.90451998 + 0.9763 0.90476 0.97896999 0.90513003 0.98285002 0.90924001 0.97627002 0.90785003 + 0.97882003 0.90954 0.98196 0.91334999 0.97851002 0.74478 0.92230999 0.75944 0.92706001 + 0.77276999 0.93312001 0.78605998 0.93928999 0.80052 0.94581997 0.80866998 0.94353998 + 0.80842 0.94309002 0.81462997 0.94283003 0.81457001 0.9436 0.81998003 0.94524002 + 0.82037002 0.94464999 0.82473999 0.94945002 0.82529998 0.94911999 0.92010999 0.95056999 + 0.92326999 0.94739997 0.92369002 0.94779003 0.92066997 0.95084 0.92728001 0.94689 + 0.92703003 0.94617999 0.93093997 0.94542998 0.93098003 0.94608998 0.93475002 0.94664001 + 0.93445998 0.9472 0.93760997 0.95115 0.93807 0.95069999 0.93987 0.95539999 0.94033998 + 0.95511001 0.94181001 0.96003997 0.94238001 0.95985001 0.94366002 0.96406001 0.94317001 + 0.96421999 0.94419998 0.96877003 0.94481999 0.96859998 0.94739002 0.97417003 0.94686002 + 0.97460997 0.95095003 0.97727001 0.95065999 0.97772998 0.95569998 0.97978997 0.95565999 + 0.98049003 0.96197999 0.98004001 0.96219999 0.98075002 0.16201 0.67694998 0.16031 + 0.67755002 0.50376999 0.86894 0.50323999 0.86922997 0.16373999 0.68110001 0.16255 + 0.68246001 0.50765002 0.87279999 0.50730997 0.87321001 0.16694 0.68621999 0.16782001 + 0.68493998 0.51295 0.87554997 0.51301998 0.87498999 0.17312001 0.68576998 0.17274 + 0.68730003 0.51914001 0.87422001 0.51924998 0.87484002 0.17219999 0.63268 0.17095999 + 0.64004999 0.16983999 0.64640999 0.16893999 0.65217 0.16802999 0.65834999 0.16707 + 0.66463 0.16615 0.67129999 0.20773999 0.64015001 0.20465 0.64703 0.20281 0.64600998 + 0.20603999 0.63901001 0.20033 0.65322 0.20206 0.65425003 0.19848 0.65916997 0.20014 + 0.65996999 0.19784001 0.66584003 0.19632 0.66478002 0.19326 0.67111999 0.19445001 + 0.67276001 0.18889 0.67747003; + setAttr ".uvst[0].uvsp[1500:1749]" 0.19005001 0.67936999 0.16535001 0.67739999 + 0.18498001 0.68342 0.18375 0.68203998 0.17862999 0.68615001 0.17788 0.68426001 0.52526999 + 0.87195998 0.52490997 0.87133002 0.19566999 0.64480001 0.19833 0.63757998 0.19357 + 0.65158999 0.1917 0.65754998 0.18954 0.66342002 0.18683 0.66962999 0.18335 0.67567003 + 0.17972 0.68105 0.17197999 0.67264998 0.17009 0.67878002 0.17359 0.66627002 0.17516001 + 0.66009998 0.17651001 0.65403998 0.17761999 0.64794999 0.17921001 0.64133 0.18102001 + 0.63454998 0.17806999 0.67422998 0.17545 0.68005002 0.18037 0.66799998 0.18241 0.66184002 + 0.18426 0.65582001 0.18589 0.64963001 0.18765999 0.64293998 0.1899 0.63617998 0.53086001 + 0.8671 0.53122997 0.86759001 0.53920001 0.85500002 0.53527999 0.86220998 0.53473002 + 0.86176997 0.53871 0.85462999 0.54205 0.84729999 0.54145002 0.84715998 0.54496002 + 0.83532 0.54369003 0.84109998 0.54303002 0.84096003 0.54430002 0.83512002 0.54689997 + 0.82792002 0.54601002 0.82769001 0.54934001 0.82117999 0.54872 0.82077003 0.55457997 + 0.8154 0.55413997 0.81487 0.21256 0.63283998 0.21378 0.63433999 0.22051001 0.63185 + 0.22058 0.62993997 0.56036001 0.81322998 0.56031001 0.81266999 0.56888998 0.81932002 + 0.56572002 0.81458002 0.56604999 0.81405997 0.56931001 0.81910002 0.23047 0.63823003 + 0.22667 0.63336003 0.22741 0.63195997 0.23185 0.63733 0.23466 0.64270002 0.23319 + 0.64354998 0.57103997 0.82485998 0.57139999 0.82468998 0.57463998 0.82988 0.57413 + 0.83012003 0.23769 0.64717001 0.23662999 0.64844 0.57011998 0.82529002 0.57274002 + 0.83078003 0.56636 0.83231997 0.56541002 0.82639998 0.56778002 0.81989998 0.56454998 + 0.82085001 0.55518001 0.82808 0.55412 0.83450001 0.5467 0.83585 0.54927999 0.82853001 + 0.55562001 0.82213002 0.55088001 0.82221001 0.56032002 0.83340001 0.56045997 0.82731998 + 0.56045002 0.82141 0.56046999 0.81470001 0.55572999 0.8168 0.56497002 0.81576002 + 0.24116001 0.64763999 0.24087 0.64976001 0.57880998 0.83203 0.57866001 0.83253998 + 0.24587999 0.64767998 0.24505 0.64599001 0.58460999 0.83178002 0.58451003 0.83117998 + 0.24831 0.64218998 0.24925999 0.64383 0.58858001 0.82799 0.58884001 0.82837999 0.59135002 + 0.82321 0.59189999 0.82371998 0.25185999 0.63919997 0.25022 0.63815999 0.25358 0.63463002 + 0.25183001 0.63397998 0.59459001 0.81950003 0.59412003 0.81901002 0.59819001 0.81590003 + 0.59775001 0.81528002 0.25573 0.62971002 0.25441 0.62843001 0.60329002 0.81335002 + 0.60316998 0.81279999 0.26051 0.62576997 0.25968999 0.62444001 0.26703 0.62364 0.26646999 + 0.62200999 0.60942 0.81348997 0.60965002 0.81285 0.61504 0.81637001 0.61554998 0.81593001 + 0.27417001 0.62453002 0.27445 0.62259001 0.61941999 0.82125002 0.62006998 0.82108998 + 0.28151 0.62577999 0.28092 0.62740999 0.62289 0.82700002 0.62224001 0.82700002 0.28622001 + 0.63202 0.28738999 0.63075 0.58490002 0.83336002 0.58950001 0.82938999 0.59424001 + 0.83254999 0.59017003 0.83684999 0.61765999 0.8477 0.61610001 0.85386002 0.61548001 + 0.85349 0.61703998 0.84714001 0.61936998 0.84232998 0.61877 0.84179002 0.59789002 + 0.8283 0.5934 0.82508999 0.59586 0.82081997 0.60095 0.82444 0.62155002 0.83693999 + 0.62086999 0.83653998 0.59917998 0.81729001 0.60376 0.82066 0.62260997 0.83212 0.62206 + 0.83181 0.60360998 0.81476998 0.60683 0.81762999 0.61435002 0.82721001 0.61597002 + 0.82379001 0.62089002 0.82696998 0.62057 0.83103001 0.61251003 0.83166999 0.61906999 + 0.83548999 0.61036998 0.83642 0.61716998 0.84034002 0.61539 0.84564 0.60802001 0.84143001 + 0.60557997 0.84693003 0.61382997 0.85250002 0.60084999 0.83697999 0.59748 0.84165001 + 0.60383999 0.83236998 0.60645998 0.82800001 0.60879999 0.82394999 0.61126 0.82058001 + 0.60882998 0.81502002 0.61372 0.81751001 0.61782002 0.82156003 0.28873 0.63682002 + 0.29034999 0.63607001 0.29190999 0.64124 0.29299 0.64708 0.29108 0.64753002 0.29018 + 0.64169002 0.29459 0.65233999 0.29249999 0.65302998 0.29607001 0.65809 0.29453 0.65904999 + 0.29874 0.66579002 0.30011001 0.66416001 0.61540002 0.86189997 0.61609 0.86190999 + 0.29728001 0.63077003 0.29883999 0.63599998 0.30021 0.64134002 0.30112001 0.6469 + 0.30542001 0.66873002 0.30465999 0.67128998 0.61786002 0.87015998 0.61723 0.87026 + 0.30208001 0.65243 0.30349001 0.65815997 0.31200001 0.67168999 0.31158999 0.67391002 + 0.62111998 0.87704998 0.62186003 0.87664002 0.62612998 0.88217002 0.62658 0.88170999 + 0.31801 0.67216003 0.31817001 0.67491001 0.63422 0.88638002 0.63436002 0.88564998 + 0.32554001 0.67039001 0.32639 0.67282999 0.30515 0.66390002 0.30834001 0.63034999 + 0.30904999 0.63586998 0.30967 0.64130002 0.31004 0.64683998 0.31028 0.65249997 0.31099001 + 0.65842003 0.3116 0.66456997 0.31975001 0.63016999 0.31964001 0.63571 0.31961 0.64112002 + 0.31933999 0.64670002 0.31878 0.65250999 0.31876999 0.65850002 0.31845 0.66477001 + 0.33239001 0.63007998 0.33144 0.63554001 0.33058 0.64085001 0.32966 0.64647001 0.32868001 + 0.65258998 0.32776001 0.65846997 0.32626 0.66443002 0.34513 0.62967998 0.34298 0.63573003 + 0.34180999 0.64060998 0.34029999 0.64617002 0.33866999 0.65292001 0.33704999 0.65860999 + 0.33355001 0.66425002 0.33467999 0.66706002 0.64458001 0.88804001 0.64437002 0.88722998 + 0.34709001 0.63060999 0.34516999 0.63652003 0.34402999 0.64125001 0.34246001 0.64753997 + 0.34053999 0.65425003; + setAttr ".uvst[0].uvsp[1750:1999]" 0.33901 0.65969002 0.65329999 0.88634002 0.65320998 + 0.88564998 0.65810001 0.88299 0.65827 0.88375002 0.66412997 0.87948 0.66437 0.88037002 + 0.66996002 0.87642002 0.67019999 0.87729001 0.67464 0.87537003 0.67438 0.87461001 + 0.67987001 0.87208998 0.68022001 0.87285 0.67535001 0.87737 0.68114001 0.87484998 + 0.68467999 0.87857997 0.67962998 0.88156998 0.67083001 0.87957001 0.67493999 0.88457 + 0.66497999 0.88266999 0.66957003 0.88773 0.65867001 0.88567001 0.66398001 0.89116001 + 0.65350997 0.88814998 0.65833998 0.89425999 0.64512002 0.89023 0.6516 0.89718002 + 0.68739998 0.87289 0.68959999 0.87571001 0.68668997 0.87101001 0.68641001 0.87032002 + 0.34737 0.62399 0.34990001 0.62443 0.69331998 0.87055999 0.69332999 0.86979997 0.35247001 + 0.61671001 0.35407001 0.61809999 0.69264001 0.87871999 0.68830001 0.88239998 0.68400002 + 0.88600999 0.67967999 0.88966 0.67491001 0.89350998 0.66973001 0.89727002 0.66443002 + 0.90101999 0.65856999 0.90473002 0.69575 0.89004999 0.69844002 0.88462001 0.70064998 + 0.88652003 0.69881999 0.89293998 0.69259 0.89512002 0.69634002 0.89897001 0.68959999 + 0.89954001 0.69357002 0.90344 0.68539 0.90428001 0.69024998 0.90906 0.68076003 0.90900999 + 0.68588001 0.91491002 0.67640001 0.91384 0.68203998 0.92025 0.67207003 0.92089999 + 0.67760998 0.92667001 0.70362997 0.88801998 0.70131999 0.89485002 0.70060998 0.89431 + 0.70282 0.8876 0.70385998 0.88101 0.70308 0.88089001 0.70112997 0.87589002 0.69783998 + 0.87289 0.69815999 0.87226999 0.70164001 0.87546003 0.69563001 0.88173997 0.69196999 + 0.88617003 0.68826002 0.89043999 0.68452001 0.89453 0.68014997 0.89894003 0.67544001 + 0.90325999 0.67066997 0.90755999 0.66538 0.91224003 0.69985998 0.87694001 0.69696999 + 0.87453997 0.69336998 0.8721 0.70118999 0.88056999 0.35912001 0.61497003 0.35822001 + 0.61276001 0.36390999 0.61326998 0.3635 0.61093998 0.37020999 0.61373001 0.37028 + 0.61194998 0.37652999 0.61716998 0.37766999 0.61497998 0.38209999 0.62171 0.38317001 + 0.62001002 0.38793999 0.62497997 0.38629001 0.62647003 0.69788998 0.90008003 0.69845998 + 0.9005 0.38981 0.63080001 0.39146 0.62927002 0.69520998 0.90498 0.69582999 0.90556997 + 0.39370999 0.63635999 0.39532 0.63463998 0.69160998 0.91082001 0.69213003 0.91149002 + 0.39747 0.64271998 0.39905 0.64094001 0.68730003 0.91696 0.68783998 0.91772997 0.40075001 + 0.64810997 0.40241 0.64616001 0.68347001 0.92220998 0.68400002 0.92295003 0.40645 + 0.65560001 0.40849999 0.6541 0.41369 0.65877998 0.41286999 0.66125 0.67475998 0.93902999 + 0.67852998 0.92980999 0.67888999 0.93099999 0.67574 0.93958002 0.42002001 0.66552001 + 0.42056999 0.66153002 0.67341 0.94806999 0.67496002 0.94826001 0.94159001 0.95432001 + 0.93931001 0.94948 0.94441998 0.94747001 0.94689 0.95251 0.94382 0.95937997 0.94867998 + 0.95745999 0.94493002 0.96363002 0.94946998 0.96212 0.94648999 0.96815997 0.95093 + 0.96669 0.94865 0.97311002 0.95301002 0.97121 0.95174003 0.97605997 0.95499998 0.97474003 + 0.95175999 0.94483 0.95354003 0.95041001 0.95498002 0.95545 0.95609999 0.96017998 + 0.95717001 0.96485001 0.95861 0.96943003 0.95991999 0.97367001 0.96763003 0.97817999 + 0.96789002 0.97886997 0.97468001 0.94358999 0.97402 0.93821001 0.97486001 0.93772 + 0.97548002 0.94318998 0.97631001 0.94962001 0.97551 0.94994003 0.97684002 0.95432001 + 0.97610003 0.95454001 0.97732002 0.95898998 0.97662002 0.95918 0.97772002 0.96460998 + 0.97685999 0.96465999 0.97599 0.97039998 0.97531003 0.97029001 0.95965999 0.94296998 + 0.96068001 0.94853002 0.96183997 0.95355999 0.96278 0.95827001 0.96375 0.96296 0.96456999 + 0.96767998 0.96535999 0.97217 0.97162998 0.97518998 0.97204 0.97574002 0.96618998 + 0.94130999 0.96705002 0.94648999 0.96805 0.95196003 0.96888 0.95657998 0.96946001 + 0.96126002 0.96998 0.96612 0.97035003 0.97057998 0.97178 0.93954003 0.97254002 0.94466001 + 0.97338998 0.95076001 0.97417003 0.95512003 0.97474998 0.95964003 0.97491002 0.96477997 + 0.97364002 0.97007 0.96706003 0.97654998 0.96144003 0.97841001 0.97065002 0.97385001 + 0.95576 0.97801 0.34204 0.78052998 0.3362 0.77790999 0.33796999 0.77616 0.34345001 + 0.77863997 0.35054001 0.78205001 0.35080999 0.77994001 0.35848999 0.78070003 0.35732001 + 0.77890003 0.36245 0.77643001 0.36664999 0.77425998 0.36803001 0.77587003 0.36366001 + 0.77811998 0.37165001 0.77361 0.37066999 0.77193999 0.37731001 0.77033001 0.37617001 + 0.76855999 0.38087001 0.76594001 0.38212001 0.76858997 0.97403997 0.93097001 0.97500002 + 0.93088001 0.38690001 0.76318002 0.38786 0.76638001 0.42478001 0.75988001 0.43445 + 0.75994998 0.43568 0.76230001 0.42513001 0.76251 0.44272 0.75397998 0.44446999 0.75656998 + 0.44997999 0.75038999 0.45058 0.75353003 0.45682999 0.75023001 0.45638999 0.75369 + 0.42997 0.66404003 0.42991999 0.66753 0.41644999 0.75857002 0.41692001 0.76086998 + 0.40843999 0.75781 0.40906999 0.76027 0.39958 0.75910997 0.40079999 0.76222998 0.39258 + 0.76103997 0.39381999 0.76438999 0.97434998 0.92470998 0.97539997 0.92473 0.97492999 + 0.91720003 0.97592998 0.91728002 0.97723001 0.90784001 0.97825003 0.90811998 0.98005003 + 0.89985001 0.98101997 0.90021998 0.98444003 0.89236999 0.98550999 0.89267999 0.98873001 + 0.88343 0.98747998 0.88314998 0.98439997 0.87357998 0.98550999 0.87343001 0.98286998 + 0.86509001 0.98390001 0.86493999 0.9849 0.85734999 0.98576999 0.85797 0.67650002 + 0.95852; + setAttr ".uvst[0].uvsp[2000:2249]" 0.67545998 0.95875001 0.61361998 0.86186999 + 0.60342997 0.85368001 0.59482002 0.84825999 0.58924001 0.84491998 0.58301997 0.84193999 + 0.57701999 0.83978999 0.57827997 0.83389997 0.57189 0.83904999 0.56588 0.83932 0.55306 + 0.8405 0.54545999 0.84148002 0.55969 0.83963001 0.24135999 0.6415 0.24567001 0.6415 + 0.23735 0.64147002 0.24135999 0.63612002 0.24592 0.63659 0.23723 0.63631999 0.23961 + 0.63125998 0.24638 0.63164002 0.23265 0.62940001 0.24022999 0.62541002 0.24841 0.62546003 + 0.23436999 0.62444001 0.23784 0.61927998 0.25632 0.62071002 0.26445001 0.61764002 + 0.27434999 0.61839002 0.26425999 0.61337 0.27401999 0.61320001 0.25474 0.61513001 + 0.24647 0.61773998 0.22815 0.62756997 0.21262001 0.62638003 0.22114 0.62550002 0.20265999 + 0.63117999 0.20483001 0.62562001 0.16700999 0.62361997 0.17487 0.62603998 0.18347999 + 0.62809998 0.19286001 0.62984002 0.17820001 0.62028003 0.18585999 0.62232 0.19508 + 0.62410003 0.16357 0.61741 0.22877 0.62256998 0.21366 0.62133002 0.22175001 0.62101001 + 0.20592 0.62055999 0.18134999 0.61531001 0.18761 0.61725998 0.1964 0.61900997 0.23023 + 0.61697 0.21469 0.61565 0.22272 0.61562002 0.20548999 0.61533999 0.18419001 0.61184001 + 0.18915001 0.61242998 0.19684 0.61374998 0.23137 0.60921001 0.23943999 0.61050999 + 0.21413 0.60821998 0.22292 0.60825998 0.20509 0.60838997 0.19029 0.60702997 0.19826999 + 0.60763001 0.25479001 0.60799998 0.26451999 0.60658997 0.27421999 0.60584998 0.24595 + 0.60980999 0.24838001 0.55403 0.26027 0.55536002 0.2577 0.57274002 0.24641 0.57233 + 0.23643 0.55281001 0.23517001 0.57209998 0.22437 0.55259001 0.22400001 0.57199001 + 0.29585001 0.56198001 0.30829 0.56494999 0.30359 0.58047003 0.29076001 0.57801002 + 0.27228999 0.55655998 0.26887 0.57359999 0.28411001 0.55871999 0.27989 0.57502002 + 0.1433 0.56944001 0.15447 0.56599998 0.15812001 0.58213001 0.14777 0.58414 0.21223 + 0.55285001 0.21277 0.57229 0.20025 0.55438 0.20149 0.57318997 0.18846001 0.55646998 + 0.19045 0.57484001 0.17703 0.55935001 0.1798 0.57743001 0.16591001 0.56279999 0.16899 + 0.57985002 0.0217 0.62228 0.02706 0.61499 0.03084 0.61870998 0.02564 0.62586999 0.03404 + 0.62259001 0.028729999 0.62940001 0.01702 0.63085997 0.0063 0.63224 0.0047900002 + 0.62739003 0.01345 0.62654001 0.0077999998 0.63709003 0.01945 0.63479 0.02131 0.75935 + 0.01247 0.75906003 0.0104 0.75449997 0.020439999 0.75629002 0.0080700004 0.75002998 + 0.018540001 0.75309002 0.02871 0.76042998 0.02891 0.76401001 0.028139999 0.75800002 + 0.033289999 0.77078003 0.034839999 0.76848 0.036490001 0.76599997 0.041250002 0.77592999 + 0.038180001 0.77765 0.035179999 0.77871001 0.037409998 0.75733 0.03788 0.76137 0.04197 + 0.76639998 0.04205 0.75936002 0.13407999 0.83978999 0.089000002 0.89945 0.10254 0.88770998 + 0.12424 0.86567998 0.13124 0.85438001 0.11438 0.87646002 0.07401 0.91148001 0.11977 + 0.81277001 0.11693 0.80110002 0.32912999 0.80751002 0.32565999 0.82046002 0.10961 + 0.81879002 0.10478 0.80857998 0.12519 0.82450998 0.33724999 0.81291997 0.33320999 + 0.82651001 0.30842 0.84482002 0.31878 0.83371001 0.33961001 0.78621 0.33407 0.78337002 + 0.34836999 0.78864002 0.33544001 0.78921002 0.34678 0.79447001 0.12935001 0.77319002 + 0.12152 0.78698999 0.12935001 0.76604998 0.12072 0.76454002 0.035119999 0.60855001 + 0.02877 0.60664999 0.034480002 0.59837002 0.02737 0.59881997 0.02922 0.58915001 0.0242 + 0.59183002 0.02902 0.81461 0.019789999 0.81920999 0.018719999 0.58626997 0.022500001 + 0.58196998 0.02847 0.80155998 0.032820001 0.80552 0.033470001 0.79478002 0.037640002 + 0.79798001 0.040509999 0.78899997 0.0352 0.78670001 0.044799998 0.78727001 0.04208 + 0.79887998 0.033860002 0.81844997 0.02297 0.82464999 0.03678 0.80826002 0.025 0.57802999 + 0.034400001 0.58630002 0.041700002 0.59750998 0.039930001 0.61258 0.032600001 0.55199999 + 0.03971 0.53995001 0.053879999 0.55065 0.047120001 0.56164002 0.048209999 0.52745003 + 0.0572 0.51512003 0.07096 0.52749002 0.062070001 0.53895998 0.076710001 0.49230999 + 0.09082 0.50648999 0.02698 0.57196999 0.037780002 0.58016002 0.1042 0.52275997 0.093719997 + 0.53153998 0.080650002 0.51652998 0.11561 0.54035997 0.066760004 0.56193 0.060279999 + 0.57200003 0.083870001 0.54099 0.075149998 0.55078 0.047789998 0.59204 0.12485 0.55716002 + 0.13716 0.58538997 0.13187 0.57270002 0.048599999 0.60776001 0.041060001 0.824 0.028069999 + 0.83218002 0.029030001 0.56318998 0.041779999 0.57183999 0.053599998 0.58187997 0.058820002 + 0.60573 0.05917 0.59605002 0.067469999 0.60692 0.073590003 0.61040998 0.064520001 + 0.58788002 0.086379997 0.56186998 0.078210004 0.57037997 0.071050003 0.57920003 0.09499 + 0.55436999 0.078570001 0.64886999 0.081880003 0.64243001 0.084540002 0.63565999 0.087559998 + 0.62858999 0.093189999 0.62181002 0.081330001 0.61594999 0.099880002 0.61578 0.10652 + 0.61045003 0.11425 0.60636002 0.12402 0.60262001 0.13446 0.60352999 0.14162 0.60443002 + 0.15034001 0.60610998 0.15981001 0.60874999 0.069430001 0.59851998 0.096780002 0.82556999 + 0.091820002 0.81576002 0.11528 0.83099997 0.12179 0.84350002 0.12373 0.85202003 0.10351 + 0.83818001 0.11033 0.84979999 0.11617 0.85898 0.064549997 0.89873999 0.079709999 + 0.88806999 0.06673 0.50326002 0.10476 0.54724002; + setAttr ".uvst[0].uvsp[2250:2499]" 0.098559998 0.85747999 0.10586 0.86767 0.093529999 + 0.87752998 0.085469998 0.8664 0.091640003 0.84575999 0.078000002 0.85421002 0.084899999 + 0.83295 0.071620002 0.84113997 0.079839997 0.82301998 0.067380004 0.82947999 0.074539997 + 0.59201002 0.081519999 0.58526999 0.089110002 0.60911 0.079630002 0.60303003 0.096359998 + 0.60358 0.085450001 0.59667999 0.10374 0.59868002 0.092919998 0.59152001 0.088880002 + 0.57813001 0.096809998 0.57121998 0.10357 0.56652999 0.27702999 0.53626001 0.26418 + 0.53355002 0.25099 0.53193998 0.23791 0.53074998 0.22471 0.53029001 0.21134 0.53046 + 0.19815999 0.53226 0.18531001 0.53499001 0.17272 0.53836 0.11376 0.56198001 0.11176 + 0.59394002 0.10023 0.58551002 0.10804 0.57779002 0.12058 0.57532001 0.11816 0.58862001 + 0.12749 0.58671999 0.34985 0.81988001 0.34387001 0.83429998 0.32655001 0.83956999 + 0.31759 0.85105002 0.30860001 0.86102998 0.30445999 0.8696 0.33722001 0.79935002 + 0.36361 0.83349001 0.35631001 0.84470999 0.34608001 0.80330998 0.33638 0.84720999 + 0.32756999 0.85887003 0.31845 0.86909002 0.31026 0.87730002 0.24742 0.91330999 0.23273 + 0.91346002 0.221 0.91356999 0.20359001 0.91236001 0.18835001 0.91087002 0.37764999 + 0.84429002 0.36980999 0.85514998 0.34799001 0.8567 0.33862999 0.8682 0.32907999 0.87861001 + 0.31951001 0.88743001 0.36083999 0.86685997 0.35093001 0.87847 0.34099001 0.88927001 + 0.33087999 0.89885998 0.36480999 0.88931 0.35455 0.90057999 0.34402001 0.91104001 + 0.35853001 0.92352998 0.36939999 0.91205001 0.37990001 0.90021002 0.59869999 0.77454001 + 0.59740001 0.76599997 0.59930003 0.78307998 0.60083002 0.79145998 0.60448998 0.80150002 + 0.60847998 0.67795002 0.61353999 0.66922998 0.60482001 0.68625998 0.60175002 0.69449002 + 0.59886998 0.70257002 0.59662002 0.71063 0.59517998 0.71842998 0.59430999 0.72548997 + 0.59407997 0.73319 0.59386998 0.74084997 0.59511 0.74875998 0.59612 0.75744998 0.42458001 + 0.59366 0.41859001 0.60048997 0.41505 0.59780002 0.42344001 0.58998001 0.41413 0.60838997 + 0.40899 0.60742998 0.41255999 0.61725998 0.40741 0.61712003 0.41519001 0.62787002 + 0.41101 0.62989002 0.42254001 0.63563001 0.41988 0.63818997 0.43158001 0.63931 0.42925 + 0.64275002 0.44091001 0.63928998 0.44064999 0.64320999 0.43845999 0.77297997 0.42938 + 0.77297997 0.42688 0.76877999 0.43996999 0.76937002 0.42118001 0.77651 0.41755 0.7737 + 0.41501001 0.78252 0.41101 0.78030998 0.41132 0.7895 0.40669999 0.78917998 0.40981999 + 0.79806 0.40474999 0.79826999 0.41012001 0.80681998 0.40504 0.80813998 0.41389999 + 0.81515002 0.40876999 0.81687999 0.42034999 0.82212001 0.41571 0.82371998 0.42853001 + 0.82608998 0.426 0.82898003 0.42607 0.76586998 0.43713999 0.76545 0.41731 0.76767999 + 0.44591999 0.76128 0.44885001 0.76661998 0.43331999 0.64901 0.42502001 0.64681 0.41670999 + 0.64169002 0.42855999 0.65371001 0.42251 0.65020001 0.45243001 0.75931001 0.4549 + 0.76391 0.41495001 0.64507997 0.40896001 0.63464999 0.40257001 0.54279 0.40794 0.55628002 + 0.39138001 0.56667 0.38635999 0.55317998 0.39596 0.52890003 0.38042 0.53978997 0.37046 + 0.49177 0.35694 0.50626999 0.37988001 0.50322998 0.36618 0.51634997 0.38837001 0.51546001 + 0.37371999 0.52715999 0.37452 0.57581002 0.36998999 0.56325001 0.36469001 0.55040997 + 0.34426001 0.52170998 0.35383999 0.53000998 0.35944 0.53797001 0.35690001 0.5855 + 0.35286 0.57264 0.34825 0.56039 0.33335999 0.53794998 0.34555 0.54443997 0.32497001 + 0.55286998 0.32109001 0.56752998 0.31810999 0.58398002 0.33425999 0.55527002 0.33425999 + 0.56658 0.33564001 0.57977998 0.40652999 0.63848001 0.45727 0.75967997 0.42761999 + 0.65838999 0.42458999 0.65763003 0.41883001 0.65539002 0.43237001 0.65736002 0.41356999 + 0.65123999 0.40481001 0.64182001 0.405 0.62612998 0.40318 0.61752999 0.40331 0.60645002 + 0.41123 0.59421998 0.40494001 0.63038999 0.40294999 0.63352001 0.40130001 0.63743001 + 0.39853999 0.63103998 0.39493001 0.62550998 0.39239001 0.62050003 0.38718 0.61454999 + 0.38069001 0.60904998 0.37283999 0.60446 0.33987999 0.61726999 0.34446001 0.60966003 + 0.35664001 0.60596001 0.3635 0.60431999 0.40031999 0.62835997 0.3985 0.62127 0.39634001 + 0.61431998 0.42265999 0.83301002 0.40759 0.82546002 0.42239001 0.5848 0.12455 0.59491003 + 0.13264 0.59546 0.14053001 0.59565002 0.14978001 0.59609997 0.15966 0.59557003 0.17028999 + 0.59341002 0.18086 0.59091997 0.17234001 0.61747003 0.17146 0.60614002 0.16881 0.61396003 + 0.18162 0.60149002 0.17676 0.61185002 0.18307 0.60808003 0.27632999 0.58850002 0.26642999 + 0.58724999 0.25580999 0.58727998 0.22355001 0.58701003 0.2129 0.58735001 0.23299 + 0.59987003 0.24345 0.60193998 0.22317 0.59893 0.25468999 0.59929001 0.26506001 0.59793001 + 0.27496001 0.59676999 0.21307001 0.59926999 0.20192 0.60119998 0.19124 0.60000998 + 0.20198999 0.58846003 0.19132 0.58945 0.23409 0.58736998 0.24484999 0.58794999 0.28935999 + 0.62151003 0.29674 0.62260002 0.28288001 0.62055999 0.39129001 0.60754001 0.38429999 + 0.60229999 0.37439001 0.59887999 0.32912999 0.62260002 0.33498001 0.61133999 0.3432 + 0.60266 0.36157 0.59723997 0.30796 0.62232 0.31941 0.62278998 0.29260001 0.61315 + 0.30419999 0.61475003 0.28285 0.61290002 0.32664001 0.61467999 0.32936999 0.60610002 + 0.33812001 0.5941 0.31727001 0.61439002 0.28406 0.60433; + setAttr ".uvst[0].uvsp[2500:2749]" 0.28463 0.59287 0.32078999 0.59485 0.31895 + 0.60505003 0.2983 0.59336001 0.29532999 0.60403001 0.30712 0.60465997 0.31073001 + 0.59463 0.37847999 0.58682001 0.38112 0.59306997 0.41288999 0.56853998 0.39570001 + 0.58090001 0.39737999 0.59890002 0.40555999 0.58798999 0.38975999 0.59381998 0.41975001 + 0.84088999 0.40406999 0.83423001 0.41845 0.57766002 0.35995001 0.81835997 0.37042999 + 0.82585001 0.38418001 0.83507001 0.36004001 0.81023002 0.37412 0.81838 0.38868001 + 0.82664001 0.36148 0.80286002 0.37658 0.81101 0.39137 0.81871998 0.40237999 0.81580001 + 0.39151001 0.81105 0.40013 0.80734003 0.40674001 0.78012002 0.41292 0.77335 0.40131 + 0.78829002 0.39974001 0.79781997 0.41194001 0.76883 0.40314999 0.76933998 0.39559999 + 0.77113003 0.38966 0.77335 0.35975 0.78689998 0.36570999 0.78467 0.37007001 0.78281999 + 0.37349999 0.78038001 0.37856999 0.77798998 0.38381001 0.77557999 0.40386 0.77503997 + 0.39708999 0.77669001 0.39098001 0.77920002 0.36583999 0.79210001 0.36324 0.79661 + 0.36963001 0.78854001 0.37384 0.78522003 0.37972999 0.78345001 0.38523999 0.78140002 + 0.37817001 0.80294001 0.39267001 0.80479997 0.38483 0.79942 0.39364001 0.79718 0.38819 + 0.79376 0.40391999 0.77867001 0.39836001 0.78239 0.39241001 0.78505999 0.3937 0.79122001 + 0.38676 0.78722 0.37424999 0.79553998 0.37966001 0.79449999 0.38146999 0.78842998 + 0.37704 0.79008001 0.3732 0.79171997 0.38299999 0.79237998 0.11129 0.76188999 0.10316 + 0.75784999 0.095579997 0.75376999 0.08867 0.74947 0.10957 0.79487002 0.11163 0.78446001 + 0.12164 0.77231002 0.11471 0.77038997 0.10719 0.7669 0.10035 0.76309001 0.09313 0.75838 + 0.086329997 0.75444001 0.082570001 0.74605 0.081490003 0.75160998 0.075860001 0.74840999 + 0.07705 0.74304998 0.045340002 0.74994999 0.049880002 0.74527001 0.055130001 0.74056 + 0.061379999 0.73896003 0.06679 0.73896998 0.072329998 0.74040002 0.071479999 0.74672002 + 0.067019999 0.74627 0.06256 0.74678999 0.057799999 0.74769998 0.053630002 0.75089997 + 0.048450001 0.75520998 0.051539999 0.81231999 0.059179999 0.81932998 0.067100003 + 0.82129002 0.042339999 0.81006002 0.099919997 0.79984999 0.085869998 0.80535001 0.074929997 + 0.81506997 0.05108 0.78999001 0.04761 0.80066001 0.05435 0.80142999 0.05906 0.79018998 + 0.0616 0.80638999 0.067460001 0.81094003 0.075110003 0.80272001 0.068510003 0.79973 + 0.05985 0.80150002 0.064549997 0.79552001 0.045230001 0.77394998 0.04752 0.78070003 + 0.05167 0.78056997 0.087590002 0.79416001 0.099009998 0.79021001 0.078380004 0.79500997 + 0.052200001 0.76119 0.046599999 0.76475 0.1011 0.7723 0.095799997 0.76734 0.090010002 + 0.76288003 0.081500001 0.75781 0.074479997 0.75164002 0.069499999 0.75325 0.064139999 + 0.75433999 0.058150001 0.75597 0.10632 0.77758002 0.096639998 0.78262001 0.093570001 + 0.77625 0.087020002 0.78600001 0.078199998 0.78816998 0.07643 0.78078997 0.08523 + 0.77889001 0.07265 0.79514998 0.07085 0.79075998 0.067929998 0.78428 0.090439998 + 0.77079999 0.083269998 0.7719 0.074249998 0.77161998 0.065480001 0.77531999 0.0579 + 0.77898002 0.049789999 0.77227998 0.055520002 0.76975 0.061919998 0.76612997 0.068619996 + 0.76326001 0.074150003 0.76021999 0.077040002 0.76600999 0.082659997 0.76586002 0.087980002 + 0.76665998 0.80483001 0.54303002 0.81220001 0.54412001 0.81041002 0.55204999 0.80282998 + 0.55146003 0.82014 0.54521 0.81879002 0.55225998 0.82852 0.54639 0.82764 0.55269003 + 0.83688003 0.54764998 0.83616 0.55321997 0.70234001 0.53105003 0.71037 0.53030998 + 0.71079999 0.53608 0.70275998 0.53648001 0.71790999 0.52970999 0.71832001 0.5359 + 0.72507 0.52934003 0.72522998 0.53538001 0.73209 0.52914 0.73189998 0.53499001 0.73913997 + 0.52914 0.73872 0.53470999 0.74645001 0.52946001 0.74577999 0.53494 0.75389999 0.53027999 + 0.75312001 0.53586 0.76143003 0.53163999 0.76043999 0.53757 0.76898998 0.53356999 + 0.7676 0.54017001 0.77649999 0.53580999 0.77473003 0.54326999 0.78393 0.53814 0.78209001 + 0.54606998 0.79105002 0.54013997 0.78917003 0.54854 0.79791999 0.54176998 0.79588002 + 0.55022001 0.92492002 0.46011999 0.93237001 0.46035999 0.93224001 0.46573001 0.92497998 + 0.46557999 0.94006997 0.46077999 0.93984002 0.46608999 0.94809002 0.46144 0.94782001 + 0.46665001 0.8143 0.48080999 0.82253999 0.47933 0.82376999 0.48528001 0.81536001 + 0.48604 0.83073997 0.47799999 0.83231997 0.48473001 0.83846003 0.47674999 0.84031999 + 0.4842 0.84562999 0.47543001 0.84757 0.48339999 0.85224998 0.47389999 0.85404003 + 0.48192 0.85865003 0.47205999 0.86022002 0.47982001 0.86539 0.46976 0.86681002 0.47709 + 0.87257999 0.46726 0.87396002 0.47387999 0.88019001 0.46476999 0.88147002 0.47086 + 0.88795 0.46272999 0.88901001 0.46845999 0.89556998 0.46127999 0.89638001 0.46667999 + 0.90302998 0.46044999 0.90359002 0.46561 0.91040999 0.4601 0.91070002 0.46527001 + 0.91768003 0.46006 0.91784 0.46542001 0.92391002 0.43287 0.93207002 0.43311 0.93212998 + 0.44064 0.92407 0.44047999 0.94123 0.43388 0.94076002 0.44104001 0.95077997 0.43500999 + 0.94981998 0.44207001 0.80269003 0.45613 0.81173998 0.45252001 0.81470001 0.45923001 + 0.80607003 0.46255001 0.82068998 0.44940999 0.82323003 0.45636001 0.82911998 0.44668001 + 0.83140999 0.45383 0.83701998 0.44426 0.8391 0.45153999 0.84457999 0.44225001 0.84644002 + 0.44953001 0.852 0.44025001 0.85368001 0.44764; + setAttr ".uvst[0].uvsp[2750:2999]" 0.85956001 0.43814999 0.86105001 0.44565001 + 0.86739999 0.43566 0.86870998 0.44365999 0.87603003 0.43441001 0.87699997 0.44215 + 0.88466001 0.43397999 0.88546997 0.44134 0.89304 0.43367001 0.89380997 0.44075 0.90135998 + 0.43313 0.90184999 0.44045001 0.90939999 0.43274 0.90955001 0.44025001 0.91663998 + 0.43256 0.91676003 0.44038999 0.81206 0.51075 0.82033998 0.51253003 0.81830001 0.51966 + 0.81051999 0.51792997 0.82888001 0.51473999 0.82643998 0.52195001 0.83758998 0.51775998 + 0.83491999 0.52465999 0.84647 0.52149999 0.84345001 0.52802998 0.69784999 0.50397998 + 0.70731997 0.50310999 0.708 0.51016003 0.69889998 0.51103002 0.71632999 0.50275999 + 0.71651 0.50961 0.72487003 0.50257999 0.72476 0.50937003 0.73308003 0.50242001 0.73271 + 0.50914001 0.74114001 0.50213999 0.74062002 0.50895 0.74917001 0.50173998 0.74849999 + 0.50875998 0.75738001 0.50206 0.75650001 0.50878 0.76541001 0.50283003 0.76455998 + 0.50953001 0.77323997 0.50387001 0.77244997 0.51077998 0.78103 0.50481999 0.78031999 + 0.51205999 0.78877002 0.50601 0.78799999 0.51337999 0.79637003 0.50746 0.79553002 + 0.51479 0.80407 0.50910997 0.80291998 0.51643002 0.73839998 0.54003 0.73185998 0.54053003 + 0.91781002 0.47097 0.91096002 0.47048 0.87844998 0.81636 0.87854999 0.8251 0.87202001 + 0.82530999 0.87282002 0.8154 0.88107997 0.83414 0.87418002 0.83634001 0.88314998 + 0.84663999 0.88802999 0.84226 0.89644003 0.84881997 0.89305001 0.85479999 0.90411001 + 0.86065 0.9059 0.85359001 0.91617 0.85500002 0.91610998 0.86268002 0.92865002 0.85979003 + 0.92654002 0.85280001 0.93537998 0.84740001 0.93989003 0.85316002 0.56852001 0.98974001 + 0.56290001 0.98954999 0.56395 0.98010999 0.56950003 0.98140001 0.59119999 0.96192998 + 0.59004003 0.95704001 0.60352999 0.95558 0.60284001 0.96028 0.63164997 0.97281998 + 0.62440002 0.96583003 0.62766999 0.96232998 0.6365 0.96982002 0.84193999 0.82126999 + 0.84430999 0.81257999 0.84978998 0.81294 0.84793001 0.82306999 0.83714002 0.82938999 + 0.84274 0.83329999 0.83372998 0.84122002 0.82984 0.83601999 0.81974 0.83964998 0.82126999 + 0.84542 0.80735999 0.84601003 0.80821002 0.83999997 0.79382998 0.84333003 0.79667997 + 0.83762997 0.54012001 0.98892999 0.53473002 0.98874003 0.53395998 0.97977 0.53906 + 0.97878999 0.51683003 0.95326 0.51455998 0.95886999 0.50348997 0.95583999 0.50397003 + 0.94944 0.78096998 0.83794999 0.78578001 0.83332998 0.46623001 0.96073997 0.47246999 + 0.96522999 0.46663001 0.97206998 0.46061999 0.96934998 0.74520999 0.54013002 0.56761998 + 0.97040999 0.57334 0.97350001 0.72530001 0.54124999 0.57796001 0.96208 0.58116001 + 0.96670002 0.71854001 0.54140002 0.71095997 0.54109001 0.70257002 0.54108 0.61418998 + 0.96188998 0.61646003 0.95739001 0.83622998 0.55791998 0.82705998 0.55759001 0.76585001 + 0.54628003 0.75924999 0.54307002 0.75230998 0.54093999 0.77248001 0.55014998 0.77974999 + 0.55342001 0.94178998 0.83996999 0.94735998 0.84337997 0.78698999 0.55580002 0.64218998 + 0.97974002 0.63599998 0.98144001 0.79402 0.55779999 0.80138999 0.55883002 0.80937999 + 0.55906999 0.81796998 0.55800003 0.57472998 0.98290998 0.57371998 0.99002999 0.57817 + 0.97627002 0.58437002 0.97044998 0.59252 0.96635997 0.60218 0.96476001 0.61185002 + 0.96612 0.62045002 0.9698 0.62663001 0.97575998 0.6304 0.98271 0.93185002 0.84253001 + 0.93702 0.83669001 0.92477 0.84691 0.91597003 0.84882998 0.90709001 0.84727001 0.89915001 + 0.84353 0.89210999 0.83849001 0.88660002 0.83200997 0.88388997 0.82459998 0.88362002 + 0.81730998 0.90424001 0.47071001 0.89750999 0.47196001 0.89049 0.4738 0.88306999 + 0.47637999 0.87557 0.47986999 0.86857998 0.48413 0.77064002 0.83025998 0.77719003 + 0.82709998 0.86224002 0.48778 0.53029001 0.97166002 0.53551 0.96859998 0.92488003 + 0.47148001 0.52377999 0.96438998 0.52768999 0.95963001 0.93191999 0.47136 0.93936002 + 0.47130999 0.94766003 0.4716 0.76668 0.82129002 0.77326 0.81964999 0.85610998 0.49054 + 0.84933001 0.49149001 0.47637001 0.95398003 0.48083001 0.95967001 0.48965999 0.95016003 + 0.49157 0.95627999 0.84166998 0.49133 0.83327001 0.49072999 0.82437998 0.49066001 + 0.81537998 0.49107999 0.83234 0.82572001 0.83671999 0.81939 0.82595003 0.83065999 + 0.81788999 0.83376998 0.80870003 0.83450001 0.79945999 0.8326 0.79119003 0.82874 + 0.78517997 0.82349002 0.78162998 0.81734002 0.47870001 0.96943998 0.47454 0.97530001 + 0.48526999 0.96472001 0.49359 0.96162999 0.50295001 0.96096998 0.51216 0.96328002 + 0.51964998 0.96799999 0.52512997 0.97407001 0.52855003 0.98097998 0.52934003 0.98855001 + 0.83888 0.81217998 0.86583 0.82459998 0.86690003 0.81440997 0.85992998 0.82411999 + 0.86120999 0.81369001 0.85536999 0.81326002 0.85374999 0.82391 0.86764997 0.83985001 + 0.85838997 0.83765 0.84851003 0.83807999 0.55699998 0.98922998 0.55752999 0.97921002 + 0.55136001 0.98904997 0.55159003 0.97845 0.5456 0.98901999 0.54527998 0.97797 0.56092 + 0.96654999 0.55211002 0.96654999 0.54297 0.96442997 0.76256001 0.52465999 0.77030998 + 0.52610999 0.75481999 0.52362001 0.74713999 0.52304 0.73962998 0.52282 0.73227 0.52280998 + 0.72496998 0.52297002 0.71744001 0.52326 0.70959002 0.52376997 0.70131999 0.52465999 + 0.83011001 0.53913999 0.83850002 0.54122001 0.82187998 0.53738999 0.81405002 0.53587002 + 0.80673999 0.53446001 0.79974997 0.53302997 0.79279 0.53149998 0.77803999 0.52787 + 0.78553998 0.52972001 0.77149999 0.51835001; + setAttr ".uvst[0].uvsp[3000:3249]" 0.76361001 0.51714998 0.77934998 0.51976001 + 0.78691 0.52130997 0.79430997 0.52284002 0.80150002 0.52433002 0.80865997 0.52582997 + 0.81604999 0.52746999 0.82401001 0.52948999 0.83235002 0.53188002 0.84083003 0.53465998 + 0.70872998 0.51703 0.70016998 0.51795 0.71695 0.51652002 0.72482002 0.51621002 0.73246998 + 0.51602 0.74011999 0.51595002 0.74783999 0.51602 0.75569999 0.51639003 0.88622999 + 0.44896999 0.87801999 0.45023999 0.89428002 0.44814 0.90213001 0.44769001 0.90972 + 0.44758999 0.91701001 0.44771999 0.92443001 0.44769001 0.93225002 0.44782001 0.94046003 + 0.44822001 0.94904 0.44905001 0.81765002 0.46606001 0.80935001 0.46897 0.82589 0.46355 + 0.83380997 0.46129999 0.84131998 0.45927 0.87005001 0.45190999 0.86256999 0.45377001 + 0.85543001 0.45561999 0.84845001 0.45738 0.87906998 0.4578 0.88703001 0.45616999 + 0.87124997 0.45989999 0.86396003 0.46199 0.85711998 0.4639 0.85042 0.46571001 0.84355998 + 0.46735001 0.83626002 0.46902999 0.82848001 0.47082001 0.82037002 0.47279999 0.81213999 + 0.47512001 0.94024003 0.45482001 0.94840997 0.45556 0.93233001 0.45442 0.92470002 + 0.45429 0.91736001 0.45433 0.91004997 0.45423001 0.90253001 0.45442 0.89486003 0.45502999 + 0.57416999 0.95463002 0.53323001 0.95192999 0.55289 0.95529997 0.55991 0.95466 0.54602998 + 0.95354998 0.54022002 0.94914001 0.56713998 0.95077002 0.83543998 0.84684002 0.87844998 + 0.85263002 0.86526 0.85551 0.8563 0.85273999 0.84676999 0.85312998 0.87458003 0.86242002 + 0.83611 0.85636997 0.58964002 0.95073003 0.60468 0.95024002 0.61895001 0.95266002 + 0.63187999 0.95788002 0.64231002 0.96587998 0.64978999 0.97666001 0.95490003 0.84709001 + 0.94659001 0.85995001 0.93145001 0.86655998 0.91667002 0.87063003 0.90192002 0.87063003 + 0.88923001 0.86210001 0.82170999 0.85191 0.79062003 0.85047001 0.77642 0.84429997 + 0.80593002 0.85497999 0.45921001 0.95591003 0.46990001 0.94598001 0.45221001 0.96561003 + 0.76310998 0.83534002 0.75755 0.82388997 0.50439 0.93914002 0.51924998 0.94502997 + 0.48693001 0.94189 0.44413 0.96104002 0.45014 0.95152003 0.75216001 0.83541 0.7482 + 0.82611001 0.45761001 0.94292998 0.47034001 0.93541998 0.48372 0.93239999 0.49669001 + 0.92965001 0.65016001 0.95999998 0.65865999 0.97061002 0.63813001 0.95121002 0.96538001 + 0.85038 0.95931 0.86155999 0.94560999 0.87177998 0.93252999 0.87581998 0.91842002 + 0.87963998 0.9066 0.88099003 0.77170998 0.85196 0.76077998 0.84460002 0.78573 0.85852998 + 0.79795003 0.86289001 0.82349002 0.86074001 0.81177002 0.86383998 0.89424002 0.87756002 + 0.88490999 0.87058002 0.89095002 0.88597 0.88177001 0.88053 0.82393003 0.87133998 + 0.81286001 0.87313002 0.88928998 0.89545 0.87994999 0.89173001 0.82326001 0.88338 + 0.81212997 0.88398999 0.86325997 0.87067002 0.85447001 0.86851001 0.84522998 0.86834002 + 0.87232 0.87509 0.83535999 0.86909002 0.86166 0.88545001 0.85277998 0.88389999 0.84371001 + 0.88317001 0.87072003 0.88818002 0.83402997 0.88309002 0.86141002 0.95242 0.86984998 + 0.95178002 0.89530998 0.95134997 0.90384001 0.94871998 0.82670999 0.94827998 0.83199 + 0.94857001 0.83758998 0.94955999 0.84465998 0.95096999 0.85290003 0.95098001 0.87845999 + 0.95267999 0.88678002 0.95151001 0.91141999 0.94814998 0.91859001 0.94985002 0.82179999 + 0.89523 0.81083 0.89425999 0.88823003 0.90505999 0.87849998 0.90248001 0.86012 0.89828998 + 0.85123003 0.89731002 0.84243 0.89665997 0.86922997 0.90000999 0.83284003 0.89602 + 0.94652998 0.87996 0.93374997 0.88453001 0.92018002 0.88832998 0.9084 0.88963997 + 0.89991999 0.88278002 0.89923 0.88937998 0.94837999 0.88831002 0.93531001 0.89297003 + 0.92181998 0.89674997 0.90929002 0.89841002 0.89873999 0.89802998 0.64737999 0.94193 + 0.65970999 0.95332003 0.66759002 0.96490997 0.97534001 0.85439003 0.96921998 0.86568999 + 0.95420998 0.86992002 0.95774001 0.87480998 0.79396999 0.87005001 0.78153002 0.86565 + 0.76670998 0.85882998 0.75700003 0.85114002 0.80448002 0.86658001 0.79123002 0.87778002 + 0.77776998 0.87238002 0.76296997 0.86497003 0.75253999 0.85681999 0.80353999 0.87296999 + 0.80220002 0.8818 0.74324 0.83836001 0.73881 0.82883 0.43582001 0.95652002 0.44154999 + 0.94691002 0.44938999 0.93831998 0.75393999 0.84167999 0.73229003 0.84395999 0.72745001 + 0.83258998 0.42554 0.95108998 0.43121001 0.94128001 0.44136 0.93208998 0.74932998 + 0.84536999 0.74352002 0.85045999 0.46754 0.92664999 0.48098001 0.92312002 0.49373001 + 0.92083001 0.46136001 0.93676001 0.46360999 0.91631001 0.47882 0.91281998 0.49272999 + 0.91100001 0.45655999 0.93172997 0.45056 0.92453003 0.5115 0.93049997 0.52215999 + 0.93498999 0.51368999 0.92158997 0.52363998 0.92449999 0.51484001 0.91153002 0.52462 + 0.91337001 0.62263 0.94584 0.60674 0.94279999 0.59135997 0.94207001 0.59306997 0.93259001 + 0.60887998 0.93379998 0.62671 0.93681997 0.59353 0.92199999 0.60951 0.92321002 0.62822998 + 0.92575997 0.64915001 0.92918003 0.57800001 0.94308001 0.53332001 0.93956 0.55365002 + 0.94467998 0.56073999 0.94414997 0.54710001 0.94334 0.54048997 0.94082999 0.56865001 + 0.94286001 0.58034003 0.93257999 0.53303999 0.92773002 0.55448997 0.93314999 0.56173998 + 0.93324 0.54773003 0.93220001 0.54080999 0.93001997 0.5704 0.93260998 0.58135998 + 0.92151999 0.53349 0.91576999 0.55532998 0.92072999 0.56288999 0.92115003 0.54834002 + 0.91953999 0.54121 0.91785002 0.57151002 0.92123002 0.50432998 0.92655998 0.50421 + 0.91979003 0.50446999 0.91047001; + setAttr ".uvst[0].uvsp[3250:3499]" 0.66960001 0.94756001 0.67277998 0.95950001 + 0.98268002 0.85562998 0.98017001 0.86549002 0.97360998 0.87313998 0.96112001 0.88262999 + 0.98144001 0.87404001 0.98474997 0.88243002 0.97672999 0.88199002 0.98163003 0.89152002 + 0.97505999 0.88911003 0.97109002 0.89559001 0.97746003 0.89883 0.96746999 0.90363002 + 0.97456002 0.90711999 0.96500999 0.91439998 0.97228998 0.917 0.96458 0.93431002 0.97153997 + 0.93122 0.96386999 0.92567003 0.97157001 0.92464 0.96424001 0.89187002 0.96011001 + 0.90399998 0.95775998 0.91470999 0.95552999 0.92603999 0.95795 0.93496001 0.93551999 + 0.94512999 0.94041002 0.94047999 0.94944 0.93782002 0.93221003 0.93880999 0.93087 + 0.94366002 0.92641002 0.94442999 0.92517 0.93900001 0.92214 0.94635999 0.91839999 + 0.94215 0.93110001 0.93295002 0.93878001 0.93225998 0.92383999 0.93386 0.91619003 + 0.93649 0.90911001 0.93910003 0.94698 0.93001002 0.90008003 0.93997002 0.95012999 + 0.89708 0.93699002 0.90139002 0.92330998 0.90556002 0.90960002 0.90793002 0.89827001 + 0.90715998 0.88749999 0.91365999 0.87769002 0.91192001 0.86825001 0.91013002 0.85890001 + 0.90864998 0.84992999 0.90763998 0.84119999 0.90657002 0.83159 0.90600002 0.82056999 + 0.90542001 0.80987 0.90469003 0.90831 0.93167001 0.91415 0.92954999 0.94376999 0.92330003 + 0.94984001 0.92120999 0.93629003 0.92548001 0.90161002 0.93146998 0.95002002 0.91464001 + 0.94995999 0.90625 0.93884999 0.90956998 0.94177997 0.91644001 0.93308002 0.91949999 + 0.92549998 0.91453999 0.90998 0.91715002 0.92164999 0.92188001 0.91325003 0.92368001 + 0.92798001 0.92286998 0.92927003 0.92732 0.92193002 0.92812997 0.89779001 0.91530001 + 0.90390998 0.92448002 0.89554 0.92276001 0.90854001 0.92633998 0.8865 0.92139 0.87722999 + 0.92012 0.86786002 0.91868001 0.85803002 0.91720003 0.84886998 0.91599 0.84013999 + 0.9149 0.83056003 0.91456997 0.81964999 0.91412997 0.80958998 0.91329998 0.88562 + 0.9285 0.87674999 0.92751998 0.86738002 0.92657 0.85729003 0.92574 0.84802002 0.92457998 + 0.83890003 0.92357999 0.82911003 0.92303997 0.81920999 0.92219001 0.81023002 0.92324001 + 0.88486999 0.93475997 0.87632 0.93405998 0.86668003 0.93357998 0.85663998 0.93270999 + 0.84723997 0.93175 0.83806998 0.93099999 0.82814997 0.93039 0.81834 0.92815 0.89381999 + 0.92979002 0.89231998 0.93619001 0.86277002 0.94533002 0.86927998 0.94572002 0.85416001 + 0.94420999 0.87772 0.94573998 0.88565999 0.94528002 0.89295 0.94418001 0.89007998 + 0.94013 0.86620998 0.94072998 0.85589999 0.93880999 0.87632 0.94014001 0.88449001 + 0.94002002 0.84595001 0.94313002 0.84663999 0.93774003 0.83832002 0.94239998 0.83767003 + 0.93757999 0.82138002 0.94312 0.82424003 0.94199002 0.81576997 0.93864 0.81479001 + 0.94081998 0.80777001 0.94190001 0.80712003 0.93743998 0.79819 0.93778998 0.78657001 + 0.93197 0.82787001 0.93752998 0.83222002 0.94168001 0.81699002 0.93489999 0.80751002 + 0.93127 0.79777998 0.92833 0.78722 0.92400998 0.74515003 0.91534001 0.76100999 0.91864997 + 0.77438003 0.92584997 0.42032 0.94914001 0.42436999 0.93598998 0.72169 0.84939998 + 0.72236001 0.83512002 0.73435998 0.85224003 0.72992003 0.85604 0.72715998 0.86093998 + 0.71812999 0.86172003 0.72666001 0.86491001 0.71934003 0.86760002 0.73008001 0.86773002 + 0.72487003 0.87202001 0.74589998 0.90859997 0.75708002 0.90904999 0.74653 0.90105999 + 0.75463998 0.90016001 0.75125003 0.89231998 0.74488002 0.89393002 0.74690998 0.88367999 + 0.74256003 0.88612998 0.74052 0.87616998 0.73685002 0.87941998 0.73571002 0.87197 + 0.73038 0.87463999 0.74067998 0.85611999 0.73387998 0.86486 0.73724002 0.86076999 + 0.76651001 0.90865999 0.76819998 0.91564 0.76357001 0.89793998 0.75588 0.89050001 + 0.75291002 0.88135999 0.74159998 0.87105 0.74934 0.86233997 0.74542999 0.86681998 + 0.75981998 0.87032998 0.77683002 0.91942 0.77386999 0.88056999 0.78904998 0.88686001 + 0.80070001 0.89164001 0.79967999 0.90151 0.79890001 0.91042 0.79854 0.91962999 0.78865999 + 0.89709002 0.78798997 0.90649998 0.7877 0.91562998 0.77604997 0.89207 0.77632999 + 0.90215999 0.77696002 0.91162997 0.75555998 0.87467998 0.76466 0.88116997 0.76437002 + 0.88810998 0.66279 0.93984997 0.67212999 0.93751001 0.66513997 0.93058002 0.61556 + 0.87050998 0.60970002 0.87505001 0.60837001 0.86679 0.61928999 0.87807 0.61601001 + 0.88253999 0.62493998 0.88343 0.62121999 0.88709998 0.63384002 0.88832998 0.62936997 + 0.89188999 0.63918 0.89428997 0.64503998 0.90096998 0.60010999 0.86136001 0.65035999 + 0.90728003 0.65785003 0.91821003 0.62794 0.91465998 0.64665997 0.91768998 0.59101999 + 0.85415 0.58171999 0.85101998 0.57331997 0.84714001 0.5643 0.84755999 0.55023003 + 0.84807003 0.54364997 0.84767002 0.55703002 0.84753001 0.57130998 0.85922003 0.56283998 + 0.85808003 0.54789001 0.85696 0.54048997 0.85598999 0.55506998 0.85733002 0.58912998 + 0.86517 0.57999003 0.86184001 0.59869999 0.86997002 0.56932002 0.87050998 0.56097001 + 0.86905003 0.54525 0.86628002 0.53675002 0.86337 0.55298001 0.86758 0.58721 0.87566 + 0.57799 0.87260997 0.59683001 0.87936997 0.60641998 0.88369 0.43375999 0.91685998 + 0.43599001 0.92565 0.43393001 0.91025001 0.44112 0.90298998 0.45407999 0.89313 0.46291 + 0.89100999 0.45739999 0.89849001 0.44891 0.90004998 0.45122999 0.90559 0.44284999 + 0.91125 0.44556999 0.91801 0.45554 0.91062999 0.5018 0.87001002 0.48995 0.87557 0.47960001 + 0.8804 0.46976 0.88587999 0.50638998 0.8743; + setAttr ".uvst[0].uvsp[3500:3749]" 0.50512999 0.88134003 0.50054997 0.87726003 + 0.51275003 0.87703001 0.51119 0.88358998 0.51954001 0.87647998 0.51810002 0.88270998 + 0.52622998 0.87364 0.52516001 0.88015997 0.53222001 0.86887997 0.53015 0.87677002 + 0.53612 0.87598002 0.47135001 0.89331001 0.46241999 0.90263999 0.48493001 0.88441002 + 0.46814999 0.90671003 0.47898999 0.90118003 0.49335 0.90039003 0.48616001 0.89200002 + 0.49643999 0.89012003 0.50692999 0.88940001 0.51683998 0.89007998 0.52647001 0.88753998 + 0.53482002 0.88925999 0.50522 0.90006 0.51572001 0.90068001 0.54369998 0.87747997 + 0.54249001 0.89064002 0.56730002 0.88196999 0.55912 0.88064998 0.55124998 0.87914002 + 0.58539999 0.88621998 0.57607001 0.88388997 0.59529001 0.88862002 0.60385001 0.89034998 + 0.56563997 0.89468998 0.55756003 0.89344001 0.54987001 0.89204001 0.58380997 0.89736998 + 0.57438999 0.89602 0.59533 0.89876002 0.60992002 0.89883 0.52530003 0.90116 0.60883999 + 0.91157001 0.59337997 0.91046 0.58227998 0.90955001 0.53395998 0.90284997 0.55638999 + 0.90710002 0.56426001 0.90798002 0.54900998 0.90596998 0.54176998 0.90463001 0.57279998 + 0.90877002 0.62643999 0.90384001 0.616 0.88984001 0.62669998 0.89625001 0.63590002 + 0.89876997 0.64129001 0.90562999 0.18494 0.69510001 0.19058 0.69453001 0.19641 0.69692999 + 0.20013 0.70199001 0.20307 0.71064001 0.20238 0.71916002 0.20163 0.72575003 0.20220999 + 0.73161 0.20635 0.73580998 0.21106 0.73799998 0.21864 0.73825002 0.22421999 0.73641998 + 0.22934 0.73258001 0.23621 0.72841001 0.24492 0.72702998 0.25218001 0.73076999 0.25747001 + 0.73517001 0.26231 0.73673999 0.26888001 0.73689997 0.27691001 0.73400003 0.28380001 + 0.73466003 0.29047 0.74141997 0.29736999 0.74396998 0.30339 0.74246001 0.30721 0.73756999 + 0.30954 0.73227 0.31303999 0.72601998 0.31682 0.72179002 0.32122001 0.71945 0.32549 + 0.71893001 0.32898 0.72036999 0.33243999 0.72209001 0.3348 0.72512001 0.33625999 + 0.73044997 0.33583999 0.73566002 0.33340001 0.74040997 0.33090001 0.74416 0.32843 + 0.74812001 0.32648 0.75414002 0.32686001 0.75922 0.32863 0.76524001 0.33273 0.77161002 + 0.33838001 0.77577001 0.34377 0.77822 0.35088 0.77946001 0.35705999 0.77849001 0.36217999 + 0.77604002 0.36634001 0.77389002 0.37044999 0.77155 0.37591001 0.76814997 0.38058999 + 0.76533002 0.38668999 0.76244998 0.39230001 0.76027 0.39928001 0.75835001 0.40830001 + 0.75725001 0.41633999 0.75801003 0.42469001 0.75928003 0.43417001 0.75940001 0.44231999 + 0.75339001 0.44983 0.74965 0.45702001 0.74926001 0.42997 0.66851002 0.4199 0.66641998 + 0.41269001 0.66180998 0.40597001 0.65595001 0.40037 0.64855999 0.39710999 0.64311999 + 0.39335001 0.63674998 0.38944 0.63115001 0.38591 0.62681001 0.38185999 0.6221 0.37628001 + 0.61765999 0.37018999 0.61413002 0.36401001 0.61378998 0.35933 0.61545998 0.35442999 + 0.61842 0.35047999 0.62453002 0.34753001 0.63081998 0.34568 0.63670999 0.34452999 + 0.64139998 0.34294999 0.64784998 0.34097001 0.65455002 0.33945 0.65992999 0.33495 + 0.66771001 0.32657999 0.67338002 0.31821001 0.67557001 0.31150001 0.67442 0.30447999 + 0.67188001 0.29843 0.66615999 0.29416001 0.65928 0.29201001 0.65319002 0.29058 0.64763999 + 0.28979 0.64179999 0.28834999 0.63700002 0.28595999 0.63230002 0.28077999 0.62778002 + 0.27410999 0.62497002 0.26715001 0.62401003 0.26069999 0.62607998 0.25602001 0.63 + 0.25398001 0.63477999 0.25224 0.63944 0.24947999 0.64420998 0.24606 0.64806002 0.24079999 + 0.65025002 0.23638 0.64873999 0.23284 0.64375001 0.23015 0.63844001 0.22651 0.63366997 + 0.22048999 0.63229001 0.21404999 0.63467997 0.20812 0.64039999 0.20506001 0.64726001 + 0.20246001 0.65448999 0.20056 0.66016001 0.19823 0.66610003 0.19473 0.67313999 0.19033 + 0.67982 0.18528 0.68375999 0.1788 0.68658 0.17264999 0.68764001 0.16673 0.68651998 + 0.16226999 0.68277001 0.15989 0.67769003 0.15919 0.67071998 0.16006 0.66369998 0.16068 + 0.65745002 0.16181999 0.65099001 0.16247 0.64521003 0.16244 0.63928002 0.16117001 + 0.63169003 0.15835001 0.6239 0.15381999 0.61756998 0.14793999 0.61398 0.14128 0.61212999 + 0.13510001 0.61163002 0.1286 0.61300999 0.12169 0.61574 0.11614 0.61971998 0.11184 + 0.62357998 0.10579 0.62917 0.10126 0.63454998 0.097230002 0.64039999 0.093529999 + 0.64688998 0.088880002 0.65362 0.082369998 0.65719998 0.074979998 0.65701997 0.068960004 + 0.65293998 0.066950001 0.64723003 0.068209998 0.63896 0.070500001 0.63147998 0.07119 + 0.62478 0.067460001 0.61763 0.064369999 0.61651999 0.060729999 0.61478001 0.05353 + 0.61628002 0.04724 0.62129003 0.041129999 0.62880999 0.03486 0.63643998 0.02352 0.64445001 + 0.01101 0.64630997 0.0166 0.74583 0.0041299998 0.74141002 0.027170001 0.75291002 + 0.035149999 0.75199997 0.040819999 0.74550003 0.045940001 0.74050999 0.052420001 + 0.73561001 0.05988 0.73271 0.066909999 0.73220998 0.073239997 0.73354 0.079389997 + 0.73584002 0.08523 0.73878002 0.091420002 0.74264002 0.098169997 0.74603999 0.10584 + 0.75062001 0.11427 0.75476998 0.12241 0.75805002 0.13084 0.76049 0.14094 0.75981998 + 0.15487 0.75550002 0.16686 0.74760002 0.17258 0.74005997 0.17569999 0.73266 0.17626999 + 0.72600001 0.17502999 0.71951002 0.17333999 0.71095002 0.17444 0.70271999 0.17942999 + 0.69739002 0.64868999 0.81158 0.64990997 0.81323999 0.64840001 0.81586999 0.64662999 + 0.81352001 0.69977999 0.83721; + setAttr ".uvst[0].uvsp[3750:3999]" 0.69938999 0.83425999 0.70209998 0.83433998 + 0.70227998 0.83745003 0.69226003 0.84375 0.68968999 0.84322 0.69067001 0.83976001 + 0.69292003 0.84134001 0.65987003 0.82841998 0.66052002 0.83162999 0.65653002 0.83082998 + 0.65684003 0.82615 0.65420002 0.85430998 0.65732002 0.85415 0.65920001 0.85689998 + 0.65482002 0.85838002 0.65676999 0.84072 0.66277999 0.84157997 0.66122001 0.84689999 + 0.65597999 0.84574997 0.69976002 0.82665998 0.70427001 0.82312 0.70736998 0.82599002 + 0.70407999 0.82870001 0.69919002 0.83103001 0.70223999 0.83152002 0.70271999 0.81927001 + 0.69804001 0.82178003 0.69981003 0.81059998 0.70130998 0.81484002 0.69652998 0.81715 + 0.69505 0.81269997 0.69815999 0.80172998 0.69409001 0.80059999 0.69577998 0.79538 + 0.70050001 0.79699999 0.69629002 0.80484003 0.69334 0.80506998 0.66601002 0.77793002 + 0.66724002 0.78378999 0.69440001 0.84235001 0.69559002 0.84173 0.69634002 0.84384 + 0.69454002 0.84397 0.70142001 0.84024 0.69994998 0.83934999 0.65131003 0.81092 0.65015 + 0.81036001 0.69234002 0.83741999 0.69409001 0.83973998 0.69766998 0.83765 0.69676 + 0.83473003 0.69870001 0.84012002 0.7001 0.84196001 0.65594 0.81318998 0.6559 0.8154 + 0.65373999 0.81516999 0.65461999 0.81252003 0.65318 0.81823999 0.65578997 0.81835997 + 0.65998 0.82393003 0.66272998 0.82699001 0.65841001 0.81796998 0.65847999 0.82095999 + 0.65588999 0.82178998 0.65831 0.81480998 0.65732002 0.81209999 0.65595001 0.81041998 + 0.65034997 0.80870003 0.65213001 0.80869001 0.64809 0.80913001 0.64561999 0.81010002 + 0.65031999 0.85903001 0.65012002 0.85437 0.65117002 0.84494001 0.65175998 0.83986998 + 0.65231001 0.83002001 0.65276998 0.82555002 0.69505 0.82805997 0.69375002 0.82362002 + 0.69230998 0.81893998 0.69094002 0.81426001 0.68952 0.80546999 0.68985999 0.80018997 + 0.69090998 0.79456002 0.69602001 0.83169001 0.68831003 0.83774 0.69047999 0.83506 + 0.65289003 0.82156998 0.64686 0.81887001 0.64433998 0.81597 0.64289999 0.81121999 + 0.68682998 0.84274 0.64529997 0.82269001 0.64108998 0.81945997 0.63988 0.81221998 + 0.68368 0.84268999 0.68515998 0.83506 0.6882 0.83271003 0.66285002 0.73319 0.66276997 + 0.73917001 0.66478002 0.72749001 0.64431 0.82766998 0.64015001 0.82626998 0.66215003 + 0.83626997 0.65683001 0.83560997 0.65214998 0.83481002 0.64349002 0.83293003 0.63909 + 0.83194 0.66284001 0.74493003 0.66289997 0.75048 0.66368997 0.76146001 0.66447997 + 0.76683003 0.66509002 0.7723 0.66314 0.75599998 0.67602998 0.80084002 0.67624998 + 0.79492003 0.68120003 0.79469001 0.68090999 0.80050999 0.64276999 0.83831 0.63827997 + 0.83756 0.64218003 0.84372002 0.63766998 0.84315002 0.65490001 0.85033 0.65052998 + 0.84978002 0.65912998 0.85134 0.64175999 0.84903002 0.63730001 0.84867001 0.64140999 + 0.85426003 0.63682997 0.85411 0.64118999 0.85968 0.63638997 0.85970998 0.67444998 + 0.69330001 0.67230999 0.69911999 0.67032999 0.70484 0.66864997 0.71043003 0.66722 + 0.71614999 0.6663 0.72180003 0.67041999 0.80774999 0.67063999 0.80116999 0.67605001 + 0.80706 0.67097998 0.81418997 0.67659998 0.81287003 0.67216998 0.82033002 0.67778999 + 0.81857002 0.67403001 0.82630998 0.67953002 0.82424998 0.67651999 0.83182001 0.68197 + 0.82968998 0.67840999 0.83758998 0.67869002 0.84389001 0.63546997 0.81945002 0.63484001 + 0.81313998 0.63510001 0.82542002 0.63432002 0.83111 0.63348001 0.83683002 0.63288999 + 0.84254003 0.63248003 0.84820002 0.6318 0.85386002 0.63126999 0.85965002 0.67106003 + 0.79497999 0.68608999 0.82757002 0.68414003 0.82239002 0.68256003 0.81708002 0.69389999 + 0.80861002 0.69792002 0.80702001 0.68983001 0.80967999 0.68093002 0.80642998 0.68150002 + 0.81171 0.7058 0.80725002 0.70823002 0.81141001 0.70225 0.80396998 0.66658998 0.84829003 + 0.66355997 0.85368001 0.66799998 0.84271997 0.70534003 0.80009001 0.70955998 0.80497003 + 0.71188003 0.81045002 0.66771001 0.83631998 0.70859998 0.81689 0.71294999 0.81687999 + 0.70815003 0.81998003 0.66513997 0.83104998 0.71104002 0.82273 0.65061998 0.81735998 + 0.65169001 0.81445998 0.65292001 0.81171 0.65420002 0.80917001 0.69836998 0.84324002 + 0.69711 0.84096003 0.69575 0.83850998 0.69441003 0.83578002 0.69309998 0.83298999 + 0.69158 0.82971001 0.68993998 0.82541001 0.68830001 0.82059997 0.68689001 0.81566 + 0.68583 0.8107 0.68540001 0.80593002 0.68550998 0.80023003 0.68606001 0.79434001 + 0.64582998 0.85435998 0.64578003 0.85933 0.64613998 0.84938002 0.64662999 0.84429002 + 0.64719999 0.83907998 0.64778 0.83393002 0.64832997 0.82902998 0.64907002 0.82450002 + 0.64981002 0.82071 0.56537998 0.73904002 0.56537002 0.74136001 0.56246001 0.74150997 + 0.56370002 0.73825002 0.56380999 0.75759 0.56129998 0.75480002 0.56292999 0.75388002 + 0.56529999 0.75541002 0.56845999 0.74045998 0.56756997 0.73760003 0.55611002 0.73528999 + 0.55563998 0.73196 0.55834001 0.73158002 0.55809999 0.73443002 0.56567001 0.73545003 + 0.55475998 0.72882998 0.55790001 0.72790003 0.55672997 0.72426999 0.55271 0.72632003 + 0.54751003 0.72070998 0.55190003 0.71919 0.54636002 0.71379 0.55204999 0.71437001 + 0.54773998 0.70762002 0.55285001 0.70934999 0.55474001 0.70472997 0.55053997 0.70156002 + 0.55607003 0.69641 0.55869001 0.70064998 0.56256002 0.69393998 0.56406999 0.69937003 + 0.56268001 0.75164002 0.56590998 0.75242001 0.55971998 0.75158 0.55699998 0.76283997 + 0.55417001 0.76235002 0.55399001 0.75876999 0.55616999 0.75959998 0.55702001 0.76694 + 0.55374998 0.76576 0.54720998 0.77482003; + setAttr ".uvst[0].uvsp[4000:4249]" 0.55182999 0.76844001 0.55557001 0.77111 0.55129999 + 0.77607 0.54452002 0.78179997 0.54945999 0.78241998 0.55027002 0.78706002 0.54500002 + 0.78865999 0.55400002 0.80002999 0.54804999 0.79499 0.55259001 0.79202998 0.55700999 + 0.79571003 0.56151003 0.79705 0.56050003 0.80206001 0.55738002 0.75821 0.55945998 + 0.76148999 0.55456001 0.75568002 0.55952001 0.73559999 0.55708998 0.73804998 0.56084001 + 0.73242003 0.47356001 0.74945998 0.47409999 0.74434 0.47422001 0.73913002 0.46169999 + 0.78846002 0.46373999 0.78298002 0.45953 0.79446 0.47441 0.73370999 0.4727 0.70987999 + 0.47185999 0.70319998 0.47332999 0.71623999 0.47391999 0.72218001 0.47433999 0.72803998 + 0.56891 0.75356001 0.56809998 0.75737 0.57012999 0.73593003 0.57137001 0.73982 0.57932001 + 0.71806002 0.57782 0.72362 0.57357001 0.72217 0.57493001 0.71697003 0.58024001 0.71227998 + 0.57590002 0.71139997 0.58078998 0.70608997 0.57643002 0.70556998 0.57639003 0.69937998 + 0.58058 0.69954997 0.57604003 0.69300997 0.58003998 0.69325 0.57370001 0.80261999 + 0.57353997 0.79708999 0.57739002 0.79680997 0.57765001 0.80265999 0.56756002 0.73299003 + 0.56147999 0.72921997 0.56612003 0.76003999 0.56063998 0.76455998 0.56182998 0.72632003 + 0.56966001 0.73049998 0.57383001 0.73404998 0.57476002 0.73975998 0.57226002 0.75462002 + 0.57183999 0.76027 0.56844997 0.76287001 0.56072003 0.76762998 0.57172 0.72697002 + 0.57600999 0.72886002 0.46621999 0.77759999 0.46862 0.77214998 0.47293001 0.75509 + 0.47200999 0.76077998 0.47059 0.76651001 0.58477998 0.69322002 0.58552998 0.69972998 + 0.58178002 0.79650003 0.58236003 0.80242997 0.58170998 0.79032999 0.57722002 0.79088998 + 0.58153999 0.78406 0.57700002 0.78485 0.58090001 0.77784002 0.57628 0.77879 0.57976002 + 0.77182001 0.57514 0.77278 0.57831001 0.76605999 0.57358003 0.76677001 0.57708001 + 0.7604 0.57681 0.75515002 0.57967001 0.73537999 0.57928997 0.74056 0.58130997 0.73034 + 0.58304 0.72500002 0.58434999 0.71925998 0.58519 0.71324998 0.58569998 0.70670998 + 0.56839001 0.69909 0.56843001 0.70489001 0.56440002 0.7044 0.56799001 0.70973998 + 0.56383997 0.70876002 0.56721002 0.71463001 0.56296003 0.71324003 0.56620997 0.71934003 + 0.56206 0.71767002 0.56480002 0.72355998 0.56107998 0.72180998 0.56590998 0.79742998 + 0.56550002 0.80264997 0.56770003 0.69327003 0.56089002 0.70425999 0.55927998 0.70728999 + 0.55805999 0.71144998 0.55715001 0.71566999 0.55605 0.71884 0.57336998 0.79141003 + 0.57295001 0.78565001 0.56983 0.76835001 0.57111001 0.77406001 0.57218999 0.77982998 + 0.56581002 0.79245001 0.56200999 0.79281002 0.56525999 0.78750002 0.56116003 0.78855002 + 0.56202 0.77247 0.55782998 0.77502 0.56325001 0.77736998 0.55903 0.77933002 0.56432003 + 0.78241998 0.56016999 0.78394002 0.55453998 0.78116 0.55549997 0.78556001 0.55712998 + 0.78985 0.55860001 0.79290998 0.55405998 0.77762997 0.55926001 0.75635999 0.55667001 + 0.75294 0.55939001 0.74040002 0.56155002 0.73701 0.56335002 0.73369002 0.56466001 + 0.73085999 0.56599998 0.72803998 0.56816 0.72507 0.56985998 0.72078001 0.57103002 + 0.71579999 0.57191002 0.71057999 0.57242 0.7051 0.57252002 0.69916999 0.57216001 + 0.69305998 0.56985998 0.80273998 0.56985998 0.79736 0.56963003 0.79194999 0.56910002 + 0.78653002 0.56829 0.78104001 0.56722999 0.77561003 0.56606001 0.77029002 0.56498998 + 0.76523 0.56370002 0.76242 0.5618 0.75963002 0.84034002 0.51090997 0.84965003 0.51494002 + 0.79944003 0.45003 0.80892998 0.44599 0.76639003 0.49638 0.77385998 0.49709001 0.87555999 + 0.42776999 0.88379002 0.42737001 0.81707001 0.71187001 0.81624001 0.70003003 0.82460999 + 0.69892001 0.82449001 0.71196997 0.80599999 0.71359003 0.80440998 0.70336998 0.77006 + 0.69099998 0.76916999 0.70187002 0.76024997 0.70156002 0.76111001 0.68984002 0.78223997 + 0.69480997 0.78059 0.70459998 0.73149002 0.79409999 0.72162998 0.78777999 0.72715998 + 0.78226 0.73765999 0.78724003 0.73003 0.77850002 0.74124998 0.78217 0.88435 0.79369998 + 0.88332999 0.80456001 0.87501001 0.80421001 0.87602001 0.79313999 0.86988997 0.80382001 + 0.87090999 0.79291999 0.71252 0.77961999 0.71803999 0.77495998 0.70016003 0.75871003 + 0.70697999 0.75476998 0.71117997 0.76530999 0.70512998 0.76972997 0.69646001 0.72509998 + 0.70546001 0.72219998 0.70472997 0.73264998 0.69647002 0.73591 0.78122002 0.71565998 + 0.77155 0.71363002 0.77455997 0.73755997 0.78241003 0.74009001 0.78035003 0.75176001 + 0.77288002 0.74829 0.76543999 0.76776999 0.77129 0.77269 0.764 0.78219998 0.75863999 + 0.77702999 0.88668001 0.72079003 0.87669998 0.71891999 0.87746 0.70471001 0.88800001 + 0.70964003 0.88571 0.78276998 0.87716001 0.78176999 0.87884998 0.77147001 0.88717997 + 0.77232999 0.88801998 0.74302 0.87981999 0.74281001 0.87862003 0.73198003 0.88729 + 0.73242003 0.80533999 0.72474998 0.81480002 0.72342002 0.81269997 0.73518997 0.80457997 + 0.73628002 0.81598002 0.79822999 0.80773997 0.79825002 0.80763 0.78755999 0.81558001 + 0.78737998 0.80698001 0.77721 0.80579001 0.76714998 0.81329 0.76639998 0.81489003 + 0.77679998 0.86681998 0.42930999 0.85838997 0.43143001 0.88835001 0.75285 0.88024998 + 0.75248998 0.85045999 0.43331 0.88810998 0.76244998 0.88001001 0.76174003 0.84281999 + 0.43518001 0.8351 0.43724999 0.82700998 0.43968999 0.81822997 0.44262999 0.94173998 + 0.42704999 0.95165998 0.42820001 0.93241 0.42660001 0.81197 0.74607003 0.80427998 + 0.74725002 0.92388999 0.42656001 0.80478001 0.75735998; + setAttr ".uvst[0].uvsp[4250:4499]" 0.81233001 0.75647002 0.91614002 0.42662999 + 0.90846997 0.42671999 0.90030003 0.42682001 0.89195001 0.42710999 0.78219002 0.72757 + 0.77385002 0.72526997 0.75862998 0.49612001 0.75044 0.49618 0.74199998 0.49623001 + 0.77670002 0.76244998 0.77012998 0.75801003 0.73363 0.49616 0.72523999 0.49585 0.71645999 + 0.49579 0.75590003 0.79067999 0.74913001 0.78540999 0.70695001 0.49599001 0.69689 + 0.49678001 0.83118999 0.50800002 0.82207 0.50575 0.69743001 0.74722999 0.70499998 + 0.74365997 0.81332999 0.50384003 0.80489999 0.50207001 0.79688001 0.50045002 0.69604999 + 0.71474999 0.70627999 0.71139002 0.69365001 0.70497 0.70475 0.69941998 0.78141999 + 0.49794 0.78909999 0.49904001 0.72612 0.79958999 0.71653998 0.79268003 0.76928002 + 0.78693002 0.76163 0.79521 0.77670997 0.77706999 0.78233999 0.76616001 0.78614998 + 0.75465 0.7881 0.74254 0.78860998 0.72996998 0.78819001 0.71777999 0.78825003 0.70703 + 0.79018998 0.69825 0.68848997 0.71788001 0.68624002 0.70920998 0.68910003 0.72804999 + 0.68943 0.73910999 0.69072002 0.75072998 0.69388002 0.76261997 0.69941002 0.77395999 + 0.70736998 0.78404999 0.89187998 0.79418999 0.89074999 0.80479997 0.89327002 0.78358001 + 0.89468998 0.77315003 0.89560997 0.76313001 0.89586997 0.75331002 0.89547998 0.74352998 + 0.89455003 0.73346001 0.89358997 0.72297001 0.89500999 0.71302998 0.79830998 0.71553999 + 0.79683 0.70608002 0.79817998 0.72632003 0.79791999 0.73769999 0.79793 0.74857002 + 0.79837 0.75835001 0.79909998 0.76775002 0.80001003 0.77753001 0.80049002 0.78771001 + 0.80039001 0.79803997 0.71298999 0.69660002 0.71346003 0.70987999 0.71485001 0.76267999 + 0.72132999 0.77200001 0.70999998 0.73100001 0.70981002 0.74172997 0.7112 0.75261998 + 0.71131998 0.72082001 0.76471001 0.71319002 0.74487001 0.78157002 0.75520003 0.77375001 + 0.76810002 0.74686998 0.76897001 0.73593998 0.76182002 0.76481998 0.76793998 0.72455001 + 0.76555997 0.75655001 0.87173003 0.78073001 0.87378001 0.77074999 0.86963999 0.71867001 + 0.86988002 0.70305002 0.87511998 0.76124001 0.87325001 0.73269999 0.87476999 0.74327999 + 0.87537003 0.75244999 0.82086003 0.72342998 0.81796998 0.73527998 0.82034999 0.78715998 + 0.82108003 0.79802001 0.81691998 0.74542999 0.81958997 0.77664 0.81760001 0.76600999 + 0.81694001 0.75604999 0.82928002 0.69875997 0.82923001 0.71274 0.82410997 0.72360998 + 0.82081002 0.73527998 0.81962001 0.74501997 0.81945997 0.75580001 0.82073998 0.76569998 + 0.82309997 0.77653003 0.82292998 0.78701001 0.82381999 0.79786003 0.86714 0.80355 + 0.86813998 0.79276001 0.86870003 0.78009999 0.87102002 0.77028 0.87238997 0.76106 + 0.87272 0.75247997 0.87206 0.74357998 0.87033999 0.73319 0.86571002 0.71868002 0.86540997 + 0.70310003 0.75589001 0.70231998 0.75669998 0.69024998 0.71706998 0.69564998 0.71799999 + 0.70938998 0.71478999 0.72039002 0.71289003 0.73030001 0.71244001 0.74089003 0.71329999 + 0.75168002 0.71669 0.76146001 0.72294003 0.77052999 0.73119998 0.77657998 0.74285001 + 0.77954 0.75365001 0.77209002 0.76001 0.76336998 0.76335001 0.75586998 0.76572001 + 0.74620003 0.76622999 0.73517001 0.76506001 0.72424001 0.76142001 0.71328002 0.74269003 + 0.77820998 0.73174 0.77556002 0.73280001 0.76792997 0.74315 0.76924998 0.83146 0.71324998 + 0.84763998 0.71060002 0.84895003 0.72105998 0.83673 0.72264999 0.84083003 0.75501001 + 0.85075003 0.75418001 0.85132998 0.76378 0.84151 0.76462001 0.84026003 0.74495 0.85017997 + 0.74400997 0.85983998 0.74378997 0.86053002 0.75336999 0.83085001 0.75553 0.83052999 + 0.74550998 0.74392003 0.73101002 0.73363 0.73006999 0.73400003 0.72069001 0.74475002 + 0.72153002 0.74361002 0.74107999 0.73343998 0.74032998 0.76446003 0.74585998 0.75371999 + 0.74313003 0.75404 0.73286998 0.76480001 0.73477 0.72377002 0.74005997 0.72443998 + 0.72981 0.73487002 0.71034002 0.74804002 0.71179003 0.75401998 0.72316003 0.76357001 + 0.72409999 0.72592002 0.72014999 0.71386999 0.74049002 0.71442997 0.72997999 0.71670997 + 0.72025001 0.83937001 0.73466998 0.84969997 0.73316997 0.85890001 0.73342001 0.83060998 + 0.73554999 0.86914998 0.73342001 0.87094003 0.74370998 0.87163001 0.75248998 0.85821003 + 0.72442001 0.82051003 0.75568002 0.82073998 0.74484003 0.82199001 0.73527002 0.83033001 + 0.72665 0.82543999 0.72373003 0.86407 0.71872997 0.73799002 0.70030999 0.75351 0.70284998 + 0.75444001 0.71460998 0.72830999 0.7105 0.72042 0.70916998 0.75975001 0.71341997 + 0.76221001 0.75551999 0.75264001 0.75224 0.72372001 0.74997002 0.71441001 0.75123 + 0.74327999 0.75161999 0.73343003 0.75094998 0.85235 0.77262002 0.84254003 0.77345002 + 0.83147001 0.76539999 0.82204002 0.76554 0.86105001 0.76277 0.87116998 0.76095998 + 0.74296999 0.76025999 0.7335 0.75958002 0.72482002 0.75866997 0.72627997 0.76498997 + 0.72377998 0.76975 0.71765 0.76084 0.75897998 0.76257002 0.75127 0.76008999 0.75 + 0.76547003 0.75287002 0.77117997 0.85427999 0.78039002 0.84369999 0.78114003 0.86109 + 0.77179998 0.83326 0.77388 0.85587001 0.78872001 0.84404999 0.78973001 0.83621001 + 0.78072 0.82459003 0.77645999 0.83292001 0.78517002 0.86184001 0.7773 0.86976999 + 0.77003998 0.86742997 0.77981001 0.83152997 0.69927001 0.82398999 0.78694999 0.82495999 + 0.79777998 0.86601001 0.80340999 0.86698997 0.79268998 0.86321998 0.70372999 0.75450999 + 0.69073999 0.71917999 0.69537997 0.030339999 0.43496999 0.02523 0.43588001 0.024019999 + 0.43200999 0.02916 0.43103999 0.092150003 0.43393999 0.086900003 0.43318999 0.087949999 + 0.42923999; + setAttr ".uvst[0].uvsp[4500:4749]" 0.093230002 0.43000999 0.057950001 0.43426999 + 0.050590001 0.43467 0.05054 0.43081 0.05785 0.43044999 0.065980002 0.43393001 0.065789998 + 0.43008 0.081289999 0.43329999 0.082099997 0.42925999 0.07277 0.43360001 0.07277 + 0.42965001 0.03576 0.43496999 0.034790002 0.43097001 0.044020001 0.43492001 0.043740001 + 0.43098 0.040139999 0.435 0.03951 0.43090001 0.039310001 0.43485999 0.038589999 0.43074 + 0.039749999 0.43493 0.039080001 0.43081999 0.076719999 0.43347999 0.07705 0.42936 + 0.077869996 0.43340001 0.078340001 0.42921999 0.07722 0.43347999 0.07762 0.42932999 + 0.023530001 0.43076 0.02857 0.42954001 0.088500001 0.42769 0.093670003 0.42873999 + 0.050500002 0.42877999 0.05776 0.42879 0.065669999 0.42829999 0.082939997 0.42671001 + 0.07277 0.42750001 0.033890001 0.42853999 0.043540001 0.42851001 0.03926 0.42826 + 0.03757 0.42822999 0.038320001 0.42825001 0.077100001 0.42688999 0.079429999 0.42642999 + 0.078220002 0.42668 0.02084 0.42545 0.02592 0.42438 0.090910003 0.42225999 0.095980003 + 0.42322999 0.050340001 0.42473 0.057640001 0.42473 0.065499999 0.42425001 0.085539997 + 0.42148 0.072980002 0.42308 0.031490002 0.42363 0.042879999 0.42410001 0.03819 0.42333999 + 0.03554 0.42309999 0.036699999 0.42315999 0.07728 0.42207 0.081129998 0.42126 0.078989998 + 0.42162001 0.017200001 0.41953999 0.02297 0.41846001 0.093500003 0.41606 0.099239998 + 0.41705999 0.04944 0.4206 0.057399999 0.42072001 0.066059999 0.42012 0.087899998 + 0.41534999 0.0748 0.41801 0.028969999 0.41786 0.04084 0.41914001 0.036120001 0.41778001 + 0.032740001 0.41711 0.03421 0.41736001 0.079130001 0.41646999 0.083860002 0.41486001 + 0.081129998 0.41560999 0.01322 0.41227999 0.02036 0.41137999 0.095849998 0.40876001 + 0.10299 0.40957999 0.048129998 0.41584 0.057149999 0.41624999 0.06696 0.41527 0.089550003 + 0.40810001 0.076190002 0.41191 0.02696 0.41084999 0.039009999 0.41317999 0.034279998 + 0.41097 0.03083 0.40996 0.032340001 0.41032001 0.080519997 0.40961999 0.085330002 + 0.40746 0.082510002 0.40845999 0.0081700003 0.39873001 0.01719 0.39919999 0.098480001 + 0.39631999 0.10753 0.39581999 0.047529999 0.40803999 0.056850001 0.40902001 0.066979997 + 0.40733999 0.090989999 0.39688 0.07626 0.40299001 0.02489 0.40007001 0.038320001 + 0.40439001 0.033410002 0.40158001 0.02964 0.40000001 0.031330001 0.40062001 0.08072 + 0.40013999 0.085869998 0.39717999 0.082829997 0.39871001 0.0067599998 0.38584 0.016340001 + 0.38852 0.098750003 0.38556999 0.10838 0.38295999 0.047660001 0.40160999 0.056729998 + 0.40274 0.066509999 0.40074 0.090999998 0.38793999 0.075730003 0.39638001 0.024219999 + 0.39146 0.038380001 0.39796001 0.033319999 0.39495 0.029510001 0.39272001 0.03122 + 0.39368999 0.08027 0.39337999 0.085440002 0.38973001 0.082359999 0.39175999 0.0088200001 + 0.37278 0.018449999 0.37829 0.09606 0.37538999 0.10581 0.37013999 0.047680002 0.39517 + 0.056559999 0.3964 0.066069998 0.39407 0.088880002 0.37981999 0.075070001 0.38999999 + 0.025660001 0.38359001 0.038619999 0.39182001 0.034000002 0.38876 0.030610001 0.38607001 + 0.032129999 0.38730001 0.079240002 0.38705 0.083849996 0.38299999 0.081090003 0.38539001 + 0.01196 0.36467001 0.02135 0.37197 0.092689998 0.36954001 0.1022 0.36238 0.047800001 + 0.38817 0.05638 0.38920999 0.065540001 0.38710999 0.086390004 0.37516001 0.074670002 + 0.38431001 0.02778 0.37832001 0.038880002 0.38593999 0.03469 0.38372001 0.031890001 + 0.38139001 0.03308 0.38248 0.07858 0.38213 0.082319997 0.37876001 0.080329999 0.38093999 + 0.01956 0.35510001 0.02595 0.36296999 0.087530002 0.36098 0.094269998 0.35350001 + 0.048599999 0.37913001 0.056219999 0.37994999 0.064400002 0.37806001 0.082759999 + 0.36737999 0.072410002 0.37627 0.03042 0.37013999 0.04056 0.37775999 0.035769999 + 0.37667999 0.032839999 0.37461999 0.034049999 0.37562001 0.076569997 0.37492001 0.080839999 + 0.37237 0.07852 0.37415001 0.02431 0.35054001 0.0287 0.35692 0.084739998 0.35576999 + 0.089270003 0.34954 0.0491 0.36787 0.05596 0.36813 0.063429996 0.36725 0.081320003 + 0.36133 0.071089998 0.36682999 0.032140002 0.36271 0.041510001 0.3678 0.037039999 + 0.36758 0.034189999 0.36632001 0.035360001 0.36700001 0.075170003 0.36645001 0.079570003 + 0.36528999 0.077169999 0.36633 0.031300001 0.34571001 0.033890001 0.34999001 0.079740003 + 0.3497 0.082089998 0.34525001 0.050299998 0.35576001 0.056019999 0.35572001 0.062259998 + 0.35571 0.07756 0.35367 0.068769999 0.35622001 0.036520001 0.35376 0.044059999 0.35633001 + 0.040520001 0.35663 0.038180001 0.35611001 0.039170001 0.35644001 0.072149999 0.35653999 + 0.075800002 0.35624 0.073760003 0.35666001 0.041999999 0.34057999 0.043090001 0.34240001 + 0.070299998 0.3427 0.071170002 0.34077999 0.05294 0.34454 0.05641 0.34457999 0.060139999 + 0.34483999 0.069190003 0.34444001 0.063989997 0.34518 0.044599999 0.34400001 0.049210001 + 0.34483001 0.047169998 0.34507999 0.04575 0.34498999 0.046360001 0.34507 0.065909997 + 0.34547001 0.067989998 0.34551001 0.066799998 0.34559 0.26188001 0.77205002 0.25658 + 0.77271998 0.27057001 0.77261001 0.27915001 0.77372003 0.28773999 0.7762 0.29376999 + 0.77970999 0.29714999 0.79855001 0.29787999 0.7906 0.29695001 0.78447002 0.24956 + 0.78232002 0.24841 0.78854001 0.2511 0.77801001 0.25334999 0.77477998 0.24778 0.79629999 + 0.29552001 0.80662 0.29337999 0.81150001 0.24872001 0.80321997 0.26317999 0.81295002 + 0.27008 0.81516999; + setAttr ".uvst[0].uvsp[4750:4970]" 0.27812001 0.81707001 0.25727999 0.81081003 + 0.28371999 0.81757998 0.25138 0.80730999 0.28915 0.81571001 0.20027 0.78775001 0.19929001 + 0.77970999 0.19778 0.77542001 0.18086 0.76958001 0.17195 0.77045 0.18764 0.76959997 + 0.16265 0.77271003 0.15505999 0.77654999 0.19226 0.77016002 0.19553 0.77236998 0.14999001 + 0.78846002 0.14979 0.79500997 0.15138 0.78114998 0.17151 0.81421 0.17904 0.81270999 + 0.18548 0.81092 0.19232 0.80812001 0.16317999 0.81558001 0.1983 0.80383003 0.15886 + 0.81445003 0.20028999 0.79465997 0.15203001 0.80721998 0.15421 0.81116998 0.15053999 + 0.80158001 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 + 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 + 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 + 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 + 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 + 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 + 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 + 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 + 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 + 0 1 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1; + setAttr ".cuvs" -type "string" "map1"; + setAttr ".dcc" -type "string" "Ambient+Diffuse"; + setAttr -s 4259 ".vt"; + setAttr ".vt[0:165]" -72.20059204 61.5603714 24.81374359 -71.90860748 60.22448349 22.72764969 + -71.32631683 58.36184311 21.15611458 -70.53469086 56.127285 20.28508949 -69.68514252 53.71928406 20.47957039 + -69.085609436 51.74338531 22.10440445 -68.78208923 50.72793579 24.49424553 -68.58942413 50.55239868 27.0069065094 + -68.65831757 51.099468231 29.4244194 -69.0207901 52.37933731 31.45304108 -69.65354919 54.24303436 32.75419617 + -70.45484161 56.35845566 33.14224625 -71.2026062 58.45920944 32.67424774 -71.81861877 60.33112717 31.48628998 + -72.17666626 61.67303085 29.59774208 -72.29582977 62.10105896 27.21948433 -74.52553558 60.47527313 24.77661514 + -74.27886963 59.18209457 22.7287426 -73.79000092 57.39575958 21.16975975 -73.046920776 55.29131317 20.26050758 + -72.22846222 52.97818756 20.39451599 -71.69033813 51.13536453 22.075645447 -71.45590973 50.27693558 24.46567154 + -71.30388641 50.14100266 26.89962387 -71.37008667 50.62279892 29.23156166 -71.68245697 51.7623024 31.22562027 + -72.24223328 53.48073578 32.53488541 -72.96208954 55.47790527 32.94097137 -73.65013123 57.47800446 32.47364426 + -74.19972229 59.27861786 31.28511047 -74.51112366 60.56934738 29.4281044 -74.61064148 60.99169922 27.11795998 + -56.77615738 68.42992401 25.058401108 -56.21147919 66.88513947 22.67970467 -55.40457153 64.68655396 20.91539955 + -54.41319656 62.00365448 19.94997025 -53.34854507 59.076793671 20.14132881 -52.38791656 56.5081749 21.77581406 + -51.75543594 54.92905426 24.5021534 -51.53488922 54.51822281 27.63562775 -51.69680023 55.27666855 30.66523933 + -52.25022507 57.1082077 33.054607391 -53.061901093 59.55321121 34.42768097 -54.0036621094 62.19392395 34.78375244 + -54.96763992 64.7416153 34.23723984 -55.88355255 66.9783783 32.84384918 -56.63451004 68.56472015 30.62770271 + -56.95053864 69.074058533 27.84515572 -60.09740448 66.9513092 25.045749664 -59.5911293 65.45905304 22.71683693 + -58.81848145 63.30858994 20.97760391 -57.85978317 60.68794632 20.032905579 -56.8254509 57.85481262 20.23229027 + -55.91619873 55.4128418 21.86141586 -55.34230423 53.96596909 24.5030098 -55.15041733 53.62237167 27.49464035 + -55.33710098 54.3587265 30.35073853 -55.87065506 56.058319092 32.60858154 -56.64862823 58.34815979 33.97729874 + -57.55490875 60.87223434 34.39638519 -58.49105072 63.34014511 33.914608 -59.34994888 65.49911499 32.56845856 + -59.98538589 67.0082397461 30.4166832 -60.24985123 67.52850342 27.74983406 59.60182953 67.05191803 24.83728409 + 59.0021133423 65.51546478 22.54259682 58.20090866 63.34819031 20.8690033 57.27024078 60.74477005 19.99433517 + 56.28191757 57.95415497 20.23398209 55.44051743 55.55208588 21.84402466 54.94320679 54.082473755 24.4674511 + 54.83658981 53.68798447 27.44297028 55.11137009 54.35942841 30.2864418 55.72172165 55.99740601 32.54584122 + 56.55285645 58.25623703 33.94438553 57.48139191 60.78860474 34.39889145 58.40288544 63.30929947 33.93439102 + 59.20357513 65.55701447 32.5639534 59.74598694 67.14405823 30.33332443 59.8841095 67.67507935 27.57461929 + 56.46625137 68.46146393 24.90256119 55.85408783 66.8584671 22.54615211 55.030422211 64.63790894 20.83903122 + 54.049880981 61.94194794 19.94300079 53.0064239502 59.031681061 20.21025848 52.10977936 56.51169968 21.89445114 + 51.55617905 54.97546005 24.61315918 51.41098022 54.58605576 27.70178986 51.67817307 55.32008362 30.63344574 + 52.29938889 57.033992767 32.95095062 53.14712143 59.38348389 34.34300613 54.084403992 61.97969055 34.74375153 + 55.013721466 64.54307556 34.24437332 55.86286926 66.8608017 32.87289429 56.5201416 68.56700134 30.62560844 + 56.73562622 69.13768768 27.75492477 74.39551544 60.47760773 24.62944412 73.96495819 59.30981445 22.71052551 + 73.35155487 57.63456345 21.21414566 72.5479126 55.55875778 20.29062271 71.72202301 53.28393555 20.33222771 + 71.13580322 51.42917252 21.77462769 70.87345123 50.46380997 24.023900986 70.85652924 50.18273544 26.44919205 + 71.050415039 50.53175354 28.84626389 71.45257568 51.57109451 30.95929146 71.96743011 53.34063721 32.45716476 + 72.64752197 55.54821777 32.96102524 73.46387482 57.70729828 32.42576218 74.14565277 59.51616669 31.096138 + 74.54776764 60.67800522 29.12784004 74.62756348 60.97806931 26.84432411 71.85926819 61.65761185 24.66926003 + 71.37477875 60.41224289 22.6602459 70.72364807 58.6042099 21.13862991 69.86465454 56.3870163 20.27942848 + 68.99359131 53.99426651 20.44721413 68.35002899 52.038173676 21.94316673 68.030471802 50.94355011 24.24599838 + 67.97550201 50.64702606 26.74490547 68.17973328 51.09041214 29.20389366 68.63047028 52.2979126 31.29575348 + 69.2811203 54.18375015 32.7045784 70.067550659 56.43497467 33.16669464 70.89281464 58.6553154 32.66501236 + 71.59182739 60.56605911 31.37323761 72.011764526 61.84217453 29.38011551 72.095687866 62.18854523 26.98980141 + 14.47436047 78.78314209 74.90172577 12.34735394 79.30867004 75.5647583 10.87888145 77.16753387 76.43887329 + 13.73669052 76.53642273 75.5692749 17.10497856 76.32462311 74.40532684 17.25399017 78.61110687 73.89691162 + 20.62902641 76.47187042 72.90527344 20.475214 78.63117218 72.55109406 23.9635067 77.0069656372 71.24427032 + 23.50916672 78.92750549 71.11122131 26.84596443 78.15463257 69.64056396 25.84673882 79.76665497 69.80836487 + 31.17406464 86.19509125 65.82097626 28.77838707 86.48147583 67.1078949 28.40417862 83.69487 67.8895874 + 30.51250076 82.90148163 66.86784363 27.41178513 81.40223694 68.7820816 29.073162079 80.12400055 68.17193604 + 8.8936348 83.64019012 75.78022766 8.2861042 86.20806885 75.39438629 4.50378609 85.23616791 76.58654022 + 6.55310726 82.27651978 76.80850983 9.71938038 81.71524811 75.96109772 7.69607353 80.18621063 76.96109772 + 4.54910326 89.88058472 75.63480377 8.35276413 89.28023529 74.80306244 28.58633423 89.24765015 66.46481323 + 30.85484123 89.55647278 65.098701477 27.73901939 91.60922241 66.28620148 29.71238518 92.58792877 64.89491272 + 9.30974483 92.19786835 74.066696167 5.38630009 94.72370911 74.32277679 19.33614922 98.70558167 68.84185028 + 16.064292908 98.63140869 70.30115509 16.68520737 95.78783417 71.13835907 19.52070999 95.97283173 69.82567596 + 22.48758698 98.23026276 67.36991882 22.15291405 95.7694931 68.46495056; + setAttr ".vt[166:331]" 12.75893021 98.078948975 71.62873077 13.90146446 95.17250061 72.3334198 + 24.45031166 94.99742889 67.32220459 25.38790703 97.070594788 66.088676453 9.36633873 96.99421692 72.8529892 + 11.34015942 94.16654968 73.21478271 -6.53924417 82.24385834 76.82181549 -4.47585392 85.25255585 76.61488342 + -8.29846191 86.23137665 75.45788574 -8.90541553 83.58321381 75.80950928 -7.94181776 80.2085495 76.85592651 + -9.84394646 81.65138245 75.89928436 -20.32390404 77.014350891 73.092285156 -17.07015419 76.7021637 74.48807526 + -16.85120392 78.68312836 74.12081909 -19.92008781 78.78370667 72.82129669 -14.42795467 78.82846832 74.94959259 + -14.07735157 76.77505493 75.51098633 -22.91038895 79.12516022 71.32145691 -23.50416756 77.64891815 71.46596527 + -26.34822845 78.80213928 69.8615799 -25.40792656 80.0092544556 69.9329071 -11.46756935 77.34069061 76.26610565 + -12.54068279 79.33048248 75.49226379 -28.07147789 83.9180603 67.96618652 -28.54030991 86.38784027 67.22793579 + -30.64130592 86.15411377 66.21914673 -29.86977005 83.32672119 67.23390198 -27.060203552 81.68075562 68.82834625 + -28.46340942 80.77399445 68.44535828 -20.97446632 95.89865112 69.12534332 -18.15089607 95.81921387 70.52588654 + -17.51704407 98.53599548 69.747612 -20.7553978 98.4881134 68.22446442 -15.21570015 95.32225037 71.8407135 + -14.095044136 98.072311401 71.22409058 -10.48632336 97.021003723 72.60741425 -12.34018803 94.2756424 73.011253357 + -23.35761833 95.48769379 67.83457184 -23.73482132 97.82181549 66.80014038 -6.0019950867 94.76647949 74.22892761 + -9.84665871 92.32536316 73.97408295 -25.31932068 94.49966431 66.86457062 -26.35044479 96.43486786 65.69102478 + -4.77808666 89.93597412 75.6268158 -8.51704693 89.38111877 74.81856537 -29.87471962 91.84457397 65.022987366 + -27.95772362 91.031661987 66.25875854 -30.6505928 89.066596985 65.40674591 -28.53232384 88.82673645 66.57289124 + 12.77131557 74.030914307 75.94525909 8.81648731 74.39277649 77.039115906 16.7347641 73.89220428 74.65310669 + 20.66171837 74.12746429 73.020759583 24.40288353 74.78482056 71.15494537 27.88443947 76.1228714 69.23345947 + 30.9401474 78.39274597 67.23023224 33.012653351 81.75523376 65.37540436 33.88184738 85.78829956 64.0040283203 + 33.50611877 89.97560883 63.10268402 32.13476944 93.95256042 62.69117355 26.53750229 99.72070313 64.12992859 + 22.84281921 101.19953918 65.68035889 19.0011539459 101.75556946 67.42546844 15.29169083 101.73886108 69.027084351 + 11.56244469 101.32876587 70.42765808 7.50035906 100.4611969 71.76735687 -13.61730957 74.41081238 75.81095123 + -9.66383076 74.59597015 76.8754425 -20.61275482 75.097061157 73.20137024 -24.11209106 75.95496368 71.41867828 + -17.075958252 74.54385376 74.65830231 -27.39369583 77.32618713 69.54496002 -30.10360146 79.55451202 67.71717834 + -32.06137085 82.49349976 66.076972961 -33.086585999 85.78593445 64.75022125 -33.070922852 89.23681641 63.77500153 + -32.21417618 92.76721191 63.15583801 -27.63221931 98.89476013 63.78884125 -20.48301315 101.51810455 66.81284332 + -24.22792816 100.75774384 65.086784363 -16.78757668 101.5656662 68.50434113 -13.0017223358 101.19489288 70.057449341 + -8.75132751 100.4179306 71.52024841 -1.8528049 77.83315277 77.88247681 -1.85218585 77.30870056 77.66472626 + -0.026887299 77.33952332 77.68000793 -0.01664475 77.89295197 77.93011475 3.51808023 77.15587616 77.61184692 + 3.55894423 77.63492584 77.81504059 -1.80643237 75.60141754 77.52724457 -1.86845946 74.89892578 77.8174057 + -0.082232669 74.93599701 77.8846817 -0.02017406 75.62820435 77.54589081 3.52725697 75.016220093 77.83180237 + 3.52728009 75.61300659 77.5991745 1.80900872 77.29164886 77.66949463 1.81412673 77.8430481 77.90183258 + 1.74694192 75.59952545 77.61712646 1.66666937 74.95856476 77.903862 3.63793063 99.41488647 72.75531769 + -4.38391447 99.31347656 72.71829224 -0.15955418 98.92248535 73.13326263 -0.20516807 94.72931671 74.73505402 + -6.20662546 78.61634827 77.48834229 6.15591335 78.71258545 77.50976563 -4.6023941 80.54117584 77.44218445 + 4.77127266 80.54101563 77.43410492 -2.5136826 81.91947937 77.40459442 2.70740199 81.90074921 77.39638519 + 0.091003381 82.29747772 77.4204483 0.01464691 85.8332901 76.82405853 -0.12357649 90.18411255 75.95599365 + -3.36728954 77.22712708 77.61870575 -3.39087677 77.72637177 77.79969788 -3.52088904 75.60910797 77.48596954 + -3.60915446 74.93102264 77.70720673 4.77681303 76.89956665 77.51792145 4.94797993 77.20296478 77.69371033 + -4.89572811 77.28435516 77.65828705 -4.65286732 76.96116638 77.49268341 5.25753641 76.36138916 77.41765594 + 5.60078526 76.29328156 77.58995819 -5.52005959 76.27650452 77.52503204 -5.11014462 76.38871765 77.35766602 + -5.017307758 75.30228424 77.58385468 -4.75543976 75.829216 77.39455414 4.84319258 75.79762268 77.49615479 + 5.043940067 75.37115479 77.69293213 -5.13171291 77.57678223 77.68247986 -3.44581604 78.3881073 77.78450775 + -1.80716741 78.71657562 77.85198212 0.034490339 78.83654785 77.88840485 1.91358519 78.69654846 77.86108398 + 3.68977284 78.24240875 77.80082703 5.10893917 77.5377121 77.71916199 5.51595068 78.0039596558 77.65694427 + 4.015725136 79.20464325 77.6812973 2.11344504 79.95306396 77.71164703 0.072892778 80.18047333 77.73681641 + -1.9362433 79.9872818 77.71048737 -3.76971531 79.30832672 77.67414856 -5.47938728 77.96270752 77.63722992 + 10.77941322 80.2787323 75.9162674 8.83389759 78.39836121 76.94303131 7.2167058 76.70796204 77.47101593 + 5.92722034 76.2599411 77.6391983 6.42401552 76.34393311 77.6029129 29.69346809 97.23877716 63.10409927 + 27.86868286 95.16847992 65.21530914 26.33242416 93.58044434 66.56937408 -11.028245926 80.26898193 75.79414368 + -9.45480633 78.56296539 76.70265198 -7.56969166 76.7495575 77.37942505 -5.93952894 76.22436523 77.58480835 + -6.47266769 76.2477951 77.55268097 -30.44363022 96.12915802 63.065162659 -28.45259476 94.38534546 65.077186584 + -26.87135696 92.97168732 66.33644867 -5.32617569 74.87552643 77.59455109 -3.70451379 74.30859375 77.69791412 + -1.89776421 74.23717499 77.81893158 -0.11533496 74.25873566 77.89543915 1.63561451 74.29872131 77.90596771 + 3.5647819 74.39794159 77.83512878 5.29537916 74.95333862 77.7060318; + setAttr ".vt[332:497]" 5.99916363 74.23570251 77.5696106 3.717489 73.55368042 77.75440979 + 1.693874 73.40177155 77.82084656 -0.11027216 73.33831787 77.79984283 -1.93134546 73.30278015 77.71239471 + -3.88236737 73.43809509 77.58138275 -6.11833906 74.22587585 77.44076538 -1.76269495 76.28514862 76.66448975 + 0.026019 76.29431152 76.5929184 1.83592927 76.26611328 76.68271637 0.00382558 76.715271 76.69258118 + -1.77192533 76.70393372 76.79624176 1.8478843 76.67713165 76.74646759 3.50816798 76.21709442 76.84799957 + 3.50156713 76.6008606 76.84831238 -3.38819003 76.25693512 76.83502197 -3.36108398 76.64627838 76.92100525 + -4.43268061 76.56482697 76.93998718 -4.43723011 76.30039215 76.87931061 -4.68788385 76.42662811 76.89937592 + 4.57510805 76.51659393 76.89588165 4.56764507 76.23191833 76.88809204 4.84981489 76.37372589 76.88848877 + -24.56165314 74.28178406 71.19577789 -28.44312096 75.60089111 68.97113037 -20.76992416 73.35315704 73.030303955 + -17.14433289 72.54871368 74.46019745 -13.59730911 72.18018341 75.62931061 -9.93669796 72.069885254 76.52577972 + -6.47071934 71.96221161 77.072479248 -4.23393297 71.70909882 77.2902298 -2.073003054 71.59073639 77.45394897 + -0.0096943201 71.54351807 77.55551147 1.97241378 71.65574646 77.59942627 4.043935776 71.77866364 77.53050995 + 6.36196375 71.91505432 77.25975037 9.13393497 71.90770721 76.67340088 12.61036015 71.98394775 75.74008942 + 16.52225876 71.97719574 74.50815582 20.49940681 72.078529358 72.85881042 24.52614975 72.58880615 70.93096161 + 28.63357925 73.7335434 68.71471405 33.044136047 76.15748596 65.73741913 35.62420273 80.80415344 63.34962845 + 36.55664063 85.4184494 61.7952652 -31.91837311 78.073570251 66.63549042 -34.57233047 81.41934204 64.4129715 + -35.76635742 85.27402496 62.7008667 -35.75291061 89.22296143 61.58069992 -34.81886673 93.54953003 60.69913101 + -32.59525681 98.067573547 60.31242371 36.29868317 90.28573608 60.59993744 34.70759583 95.38132477 59.86035919 + 31.63284492 99.58395386 60.26731873 27.65026283 102.66208649 61.57611465 23.059200287 104.32509613 63.55208588 + 14.67444706 104.96592712 67.22648621 18.64572334 104.99958038 65.52235413 10.81677151 104.64785767 68.61831665 + 6.65229607 104.059539795 69.84184265 2.91174078 103.35877991 70.70845795 -0.10632623 103.012298584 71.013473511 + -3.55625629 103.41311646 70.60949707 -7.73772717 104.14378357 69.58461761 -12.13799191 104.80264282 68.12515259 + -16.24002075 105.19289398 66.44790649 -20.38262367 105.025230408 64.63609314 -24.57212639 104.02230072 62.82736969 + -28.8755455 101.8859787 61.14057922 -12.43424129 52.3146019 70.36277771 -12.12839603 51.55318832 69.024482727 + -10.14695072 51.57316589 69.53856659 -10.59981632 52.22262192 70.90314484 -13.93505001 53.018989563 69.74766541 + -13.9907732 52.51587677 68.58428192 -8.41881561 52.56952286 70.33449554 -9.15104008 52.78326797 71.33826447 + -7.54070616 54.54641342 71.23853302 -8.59866524 54.35820389 72.28100586 -7.25667763 57.50613785 72.22819519 + -8.4067173 57.047084808 73.1968689 -7.51707888 60.3809433 73.42378998 -8.65716267 60.007686615 73.96891022 + -7.90428686 62.81658936 74.29507446 -9.027311325 62.62159729 74.57410431 -14.81453133 54.63713455 70.13956451 + -15.35288525 54.6193428 68.46512604 -15.34892178 57.1269455 70.94226837 -16.0094261169 57.34634781 69.25727844 + -15.43676376 59.85519791 71.77135468 -16.19298363 60.12234497 70.45541382 -15.52129745 62.38940811 72.4363327 + -16.30125618 62.5976181 71.28513336 -7.78629827 65.024589539 74.89373016 -8.93938255 65.074745178 75.17384338 + -15.99519253 65.094207764 72.92005157 -16.90163994 65.15049744 71.7432785 -17.39041519 68.098403931 73.10187531 + -18.29338837 67.83110809 71.90206146 -6.67391014 66.71379852 75.41352844 -7.82634497 67.5087204 75.93257904 + -10.75888252 54.18043518 72.57028961 -13.099533081 54.22682571 71.75657654 -13.64157486 62.35890579 73.84191132 + -13.80672169 64.97322083 74.18677521 -13.57970619 59.74557877 73.47129059 -13.53196621 56.83658981 72.83045959 + -10.89729118 56.79840088 73.69400024 -10.97435474 59.78065491 74.27513123 -11.14635181 62.43868256 74.59992218 + -11.16222286 64.9759903 74.96323395 -10.90244484 67.41331482 75.48144531 -14.048838615 67.52072144 74.62020874 + -13.89466 69.93696594 75.19198608 -17.30427933 70.55754852 73.9986496 -10.51052094 69.75878143 76.030838013 + -7.33587694 69.8133316 76.56416321 -5.0038170815 67.62000275 75.82917786 -5.22701979 68.53427887 76.43642426 + -2.73473668 67.7547226 76.036888123 -2.57522249 68.64910126 76.6938324 -0.87010443 66.97955322 75.98121643 + -0.45996228 67.89650726 76.66452789 0.85700309 65.47418213 75.58924103 1.42733943 66.40522003 76.34117889 + 3.1517241 63.87438965 74.95753479 3.57550049 64.87626648 75.78469086 6.078378201 63.30434799 74.34304047 + 6.20558119 64.3241806 75.26365662 8.73012161 64.30474854 74.14610291 8.65338802 65.14252472 75.016937256 + 10.681777 65.69885254 73.9960556 10.56451607 66.36838531 74.88043213 12.41283989 66.24992371 73.54911041 + 12.7567606 66.97993469 74.33831024 14.46915817 65.7124939 72.85610199 14.98584747 66.53369904 73.51898956 + 16.71313095 64.48278809 71.70471191 17.20835876 65.44591522 72.42528534 19.051746368 64.46122742 70.69825745 + 19.42334366 65.49654388 71.41906738 -4.97640133 69.88621521 76.86325073 -2.35095763 69.82678223 77.09337616 + 0.29314312 69.3249054 77.15953827 2.089566469 67.6337204 76.79579163 3.93914533 66.49801636 76.38806152 + 6.15164661 66.030830383 75.99001312 8.35404491 66.55450439 75.73740387 10.2580328 67.43799591 75.47463989 + 12.78564358 68.059089661 74.8607254 15.484128 67.79316711 73.9573822 17.76772118 67.013031006 72.9618988 + 19.70299911 66.97522736 72.078300476 21.49211502 65.91641998 69.99698639 21.74221039 66.62841034 70.6114502 + 22.003742218 67.63928223 71.072296143 23.66730499 66.13896179 69.12229156 24.063848495 66.82093811 69.53862 + 25.10415077 65.031539917 67.92188263 26.37722969 65.69277191 67.96469116 31.56765747 56.21442795 60.23120117 + 31.84179878 56.46751785 61.17819977 31.25127602 55.74115372 61.81966019 30.76532364 55.1847496 60.74225235 + 29.24098015 55.20222473 63.012401581 28.61781693 54.73582077 62.22239304; + setAttr ".vt[498:663]" 28.61533546 55.86823273 63.73011398 27.5604229 55.40534973 63.059406281 + 27.85159874 57.16459656 64.48880005 26.69041443 56.65850067 63.99705887 27.40153885 58.96054459 65.32527161 + 26.12477684 58.47421265 64.96672821 20.36647415 56.91069031 68.74043274 20.20962715 58.98319626 69.74313354 + 6.99004984 55.7746048 72.3615799 6.88358116 57.83780289 73.24163055 6.92528057 53.77672958 71.46067047 + 20.25107956 54.8467598 67.76203918 27.26973724 61.0037002563 66.16030121 25.85087776 60.77616501 66.004776001 + 32.038082123 57.96244431 60.024757385 32.25844574 57.62284088 61.37645721 6.71980286 59.71390915 73.9524231 + 20.015022278 60.7486763 70.49311066 25.68732071 62.96809769 66.931427 27.016269684 63.21070862 66.91230011 + 32.28057861 59.83089828 60.22360611 32.44103241 59.18101883 61.70617294 32.36122894 67.18663788 62.76986313 + 31.8435936 66.69462585 64.14374542 31.81313133 64.63365936 63.52417755 32.22423553 65.011665344 62.22743607 + 32.10128021 62.72793961 62.85757828 32.372509 63.24598694 61.55621719 32.37149811 60.98954391 62.24088669 + 32.41298676 61.6324234 60.84608078 -20.72469711 71.93916321 72.69650269 -20.59504509 70.83620453 72.19320679 + -20.68141747 70.3311615 71.56375122 -24.54222107 72.67271423 70.55645752 -24.4623127 72.18345642 70.096237183 + -28.68680382 72.99838257 68.26576996 -28.43857574 72.41105652 67.81562042 -24.63249016 73.25511169 70.91460419 + -29.53649902 74.11540985 68.093109131 6.31081533 67.99676514 76.54590607 4.29027605 68.19300842 76.8506012 + 8.37071037 68.17528534 76.18795776 2.84220982 68.53056335 77.024253845 10.12842655 68.60264587 75.82083893 + 2.34652185 69.82548523 77.30005646 4.28486729 69.90058136 77.21807098 6.51737022 69.87787628 76.91497803 + 9.30321789 69.77443695 76.28028107 12.73321342 70.28878784 75.41331482 12.83294773 69.03931427 75.12333679 + 15.97918606 68.94434357 74.12339783 19.23028374 68.41901398 72.73445892 22.45441437 68.87334442 71.27753448 + 16.32389832 70.34745026 74.2990036 20.046108246 70.29050446 72.74755096 24.10563469 70.39890289 70.79943085 + 24.52717972 67.82377625 69.83145905 24.8324604 69.10932922 70.11101532 29.75617599 54.74236679 61.51815033 + 30.1897068 55.26214981 62.63019562 31.59796524 56.74099731 62.63764954 30.16832542 56.10900497 63.55728531 + 31.67603493 58.26148987 63.35522842 29.8845787 57.51508713 64.40977478 31.47633934 60.13187027 63.96679306 + 29.56830597 59.38708115 65.1523819 31.11253738 62.036258698 64.46816254 29.28646851 61.39457321 65.72814178 + 30.71601486 63.96882629 65.048728943 29.064176559 63.45363617 66.22261047 29.79204559 65.59545898 66.13637543 + 28.48774719 71.34309387 68.48148346 28.054653168 69.34764862 68.33328247 27.35594749 67.59703827 68.22377014 + 32.56831741 72.36439514 65.70162201 33.032535553 69.056175232 62.84787369 32.45024872 68.96169281 64.59799194 + 30.2993412 67.90049744 66.41152191 31.049690247 69.66756439 66.34886169 34.14810562 70.84864807 62.42695236 + 33.96887207 71.38070679 63.86278915 35.81139374 74.72303772 63.0081939697 36.46554565 77.30603027 62.61252975 + 35.9045105 73.1620636 62.39522934 37.86863327 81.01448822 61.040534973 35.79349136 72.20422363 61.38318253 + 4.82560539 125.1750412 8.91285515 -0.28722057 125.35684967 8.77352524 3.94241261 124.37935638 46.17866898 + -0.43004397 124.46766663 46.29898453 3.43501449 115.12805939 60.76012802 -0.32740867 114.94036102 61.11241913 + 4.17540169 127.062576294 37.6893158 -0.50125879 127.20720673 37.72180939 7.51134062 115.41249084 59.83036041 + 8.61956024 123.95215607 45.70199966 9.11743736 126.4551239 37.42074585 10.16384792 124.42621613 9.16895103 + 11.76932907 115.3844986 58.66213989 13.3875494 123.1210022 45.025024414 14.13610744 125.36450958 36.97433853 + 15.46843147 123.13745117 9.55420399 12.89151573 75.095443726 -23.8655777 15.3103447 112.66472626 -7.5668354 + 10.21215439 113.67425537 -8.37371731 5.032654762 114.27180481 -8.86182117 -0.13113792 114.42444611 -9.047194481 + 15.50978565 118.7420578 0.47888878 10.27893829 119.93282318 -0.13370819 4.94886827 120.63158417 -0.5134092 + -0.28547075 120.81864929 -0.65809625 14.4660759 98.28742218 -18.49069214 9.75790119 98.8844986 -19.45565605 + 4.97141695 99.2675705 -20.02914238 0.13138686 99.29988861 -20.27590179 62.82820892 65.6543808 24.76831055 + 63.12716675 66.24140167 27.41343307 63.021247864 65.73248291 30.073225021 62.52975082 64.22219849 32.24230957 + 61.75628662 62.051876068 33.57804489 60.86042404 59.60211182 34.01713562 59.95454407 57.15613937 33.54538727 + 59.1570549 55.0044631958 32.15148544 58.57954407 53.47890472 29.94962883 58.31015015 52.84165573 27.23113441 + 58.38871384 53.18824005 24.38023567 58.84046555 54.58042908 21.86351013 59.61542511 56.86761093 20.30788994 + 60.53675079 59.54314804 20.060693741 61.439888 62.079563141 20.90100288 62.2298317 64.1819458 22.53157425 + 68.99967194 62.96894455 24.67656708 69.25648499 63.51305389 27.12044144 69.16781616 63.095149994 29.60853386 + 68.71482849 61.72497177 31.64888 67.99737549 59.72702789 32.9553566 67.16170502 57.42536926 33.44304276 + 66.32344055 55.1091156 32.98302078 65.60758209 53.13816452 31.58108521 65.11296844 51.81506729 29.46378899 + 64.89148712 51.29155731 26.93554115 64.96520996 51.60647964 24.33554459 65.3403244 52.80942917 21.99269676 + 66.019424438 54.86772156 20.45643044 66.8825531 57.36515045 20.19890976 67.74378967 59.71611786 21.0085601807 + 68.46703339 61.6444397 22.5704174 66.25653076 64.86943054 27.26196671 65.96835327 64.30554199 24.70733452 + 65.39279938 62.90373611 22.52809715 64.62728119 60.87949753 20.93070602 63.74848938 58.4246521 20.12206078 + 62.8679657 55.8427887 20.3927021 62.14802933 53.67429733 21.93808937 61.73503494 52.36999512 24.35253143 + 61.66175842 52.044513702 27.072454453 61.90920639 52.63264465 29.685009 62.44471741 54.049350739 31.84548569 + 63.20495987 56.10549545 33.24596786 64.078048706 58.48426819 33.70746613 64.94538879 60.85648346 33.24677277 + 65.68554688 62.94249344 31.93111038 66.16372681 64.39255524 29.83375359 -63.56795883 66.061798096 27.627388 + -63.41993332 65.52039337 24.98932648 -62.95700836 64.089393616 22.72054482; + setAttr ".vt[664:829]" -62.21324539 62.0010871887 21.017044067 -61.27993774 59.4400444 20.10688591 + -60.30298233 56.69614029 20.33270836 -59.45889664 54.37031174 21.94047165 -58.92786789 53.021976471 24.49645996 + -58.76039886 52.75289536 27.35705566 -58.9409256 53.46893311 30.06212616 -59.43988037 55.04712677 32.22893524 + -60.17418289 57.20807266 33.57457352 -61.042896271 59.61676407 34.0082931519 -61.93747711 61.99092865 33.56700516 + -62.75345612 64.073860168 32.28213501 -63.33572769 65.53559113 30.20747566 -66.71686554 64.67520142 27.47736168 + -66.59024811 64.1451416 24.91646194 -66.19033051 62.7636528 22.71074677 -65.47917938 60.75249863 21.045700073 + -64.5776825 58.26396942 20.16796684 -63.66293335 55.6053009 20.42709541 -62.91624069 53.41295242 22.035047531 + -62.43975067 52.16459656 24.50049591 -62.2627449 51.92507935 27.22528076 -62.41327667 52.59244537 29.82035637 + -62.86424637 54.061164856 31.93442535 -63.56248093 56.12166977 33.27394867 -64.39928436 58.43844604 33.69160843 + -65.24562836 60.72162628 33.2373848 -65.9993515 62.72914124 31.9872551 -66.51325226 64.16382599 29.9922924 + -69.64818573 63.34218979 27.33826447 -69.5476532 62.80996704 24.85959435 -69.21361542 61.46153259 22.72050667 + -68.53920746 59.52852249 21.10060501 -67.68487549 57.14454651 20.23547173 -66.81778717 54.610466 20.48733711 + -66.14743042 52.53196335 22.09526062 -65.75125122 51.38375854 24.50255966 -65.55306244 51.16410828 27.11042213 + -65.6566925 51.7739296 29.61521721 -66.064979553 53.15804672 31.68577003 -66.73722076 55.12651443 33.01467514 + -67.56247711 57.35031128 33.41992188 -68.36177826 59.54638672 32.94867706 -69.04875946 61.48318863 31.72340012 + -69.4829483 62.8740654 29.78499985 28.35120773 110.77307892 53.2379837 24.23695946 112.72194672 54.62786102 + 20.085039139 114.1964035 55.9186058 15.9478178 114.98717499 57.35174179 18.046800613 121.83991241 44.28281021 + 22.5135746 120.088424683 43.59580612 26.73488617 117.85842133 43.056983948 30.70046425 115.15193939 42.69549561 + 29.24254227 106.92920685 -3.85147357 33.35567856 104.32676697 -2.048713446 28.061094284 119.18457031 36.040988922 + 32.18863297 116.14980316 36.024234772 29.99318123 116.29457855 11.7270937 34.29657745 113.029632568 12.73130322 + 29.78425407 112.34999847 3.51333976 33.99359131 109.3495636 4.93303823 27.71711731 94.73365784 -13.56840229 + 31.91331673 93.0362854 -11.07779789 19.013965607 123.78653717 36.53425598 23.6689415 121.72987366 36.21130371 + 20.58213615 121.32778168 10.086845398 25.4186573 119.053619385 10.82612038 20.53440094 117.065376282 1.29961848 + 25.29549789 114.93041229 2.31478906 20.23316574 111.18491364 -6.5226388 24.88757515 109.24925995 -5.29339123 + 19.060745239 97.48803711 -17.13973045 23.47301292 96.30509949 -15.50837421 16.38318253 75.68312836 -22.86951637 + 19.8927269 75.61240387 -21.57261086 -29.90933037 104.91994476 -5.060966015 -33.99350357 101.94952393 -3.41093659 + -32.0099563599 114.27639771 10.73720074 -36.12068176 110.77884674 11.69555283 -31.061338425 117.11968994 35.59856415 + -35.13607025 113.66610718 35.47692871 -26.95975876 110.95401001 54.38359833 -30.91570473 108.26268768 53.44149399 + -29.7844162 115.78379059 42.81084824 -33.78120422 112.58990479 42.37093353 -31.14335632 110.43757629 2.46793246 + -35.22597885 107.15922546 3.76036906 -4.75770998 114.94485474 60.7845726 -9.37597466 115.09538269 59.72821808 + -14.00071620941 114.91124725 58.35383224 -18.49979973 114.19976044 56.92137527 -22.82274628 112.88874817 55.57898712 + -5.85082483 124.16182709 46.13600159 -10.98271275 123.4821701 45.62945557 -15.94984722 122.34674072 44.90594864 + -20.77839661 120.69391632 44.14503098 -25.42473221 118.5010376 43.41611099 -6.18783283 126.84495544 37.56190872 + -11.61272812 125.96582794 37.18131638 -16.81790352 124.54906464 36.70481873 -21.83711052 122.59605408 36.25703049 + -26.61647797 120.10957336 35.86474228 -6.034952164 124.95293427 8.75266171 -11.94393158 123.85409546 8.76261711 + -17.4572525 122.1992569 8.95031834 -22.64152908 120.03678894 9.36782074 -27.49791908 117.38625336 9.96866035 + -5.78331041 120.43467712 -0.63906306 -11.51255322 119.39232635 -0.48126331 -16.89191246 117.83900452 -0.087661549 + -21.95397377 115.81165314 0.54988372 -26.71216965 113.32788849 1.39658511 -5.54683638 114.050621033 -9.0037002563 + -10.89670753 113.12329865 -8.73205853 -16.014884949 111.70301056 -8.21268082 -20.89640045 109.84198761 -7.43477964 + -25.52837944 107.56555176 -6.40001249 -26.81227684 91.98690033 -15.28756237 -30.63833237 90.059684753 -13.26997089 + -4.72259712 98.97405243 -20.19104385 -9.49523735 98.18013 -19.83810234 -14.11356354 97.014480591 -19.18526268 + -18.52059937 95.50801849 -18.24460411 -22.73991776 93.78488922 -16.96982002 54.15891647 69.69970703 24.92618561 + 53.45222855 68.031478882 22.38528252 52.51350784 65.70053864 20.57430649 51.45930481 62.83092117 19.611063 + 50.37135315 59.66662216 19.90333176 49.44654846 56.94208908 21.76876831 48.86152649 55.35377121 24.69743919 + 48.69382095 55.038482666 27.96698952 48.94688416 55.86520767 31.029840469 49.55904388 57.69531631 33.43552017 + 50.39354324 60.17496109 34.82738495 51.31871033 62.84989166 35.17109299 52.26502228 65.48487091 34.63880157 + 53.19446182 67.89078522 33.30063629 54.075897217 69.67443085 31.026790619 54.43280792 70.3475647 28.0019435883 + 33.3915062 116.24929047 28.60048866 34.10405731 115.27758789 20.73752594 50.33904648 87.77944183 30.42657471 + 50.61887741 86.63262939 23.011779785 -53.95401382 69.95022583 24.97380066 -53.21211243 68.41462708 22.3758812 + -52.31375122 66.1030426 20.45065117 -51.27956009 63.21567154 19.41840744 -50.18334579 60.0057945251 19.61957932 + -49.14823532 57.18334198 21.27725601 -48.44782639 55.39121628 24.20692825 -48.20692062 54.89406967 27.65584183 + -48.36387634 55.67603683 31.035848618 -48.97224045 57.76776886 33.64665985 -49.85655212 60.51640701 35.023174286 + -50.83855438 63.40330124 35.32417297 -51.81199265 66.19342041 34.73845673 -52.80848694 68.55181885 33.24946213 + -53.78084564 70.12488556 30.8753643 -54.18477631 70.59909058 27.93310928 -36.077529907 113.8365097 27.87613106 + -36.43148422 112.92832947 19.84850883 -50.74539566 84.29573822 32.88097763 -51.19358063 83.88471222 24.9134903 + -48.019260406 95.54875183 30.26966095 -48.50873566 94.41246796 23.1750927; + setAttr ".vt[830:995]" 29.75891876 118.63852692 20.12511253 25.19035912 121.44454956 19.56483841 + 20.3262825 123.77285004 19.17543793 15.18028736 125.6346817 18.98849297 9.90412998 126.94908142 18.85419083 + 4.62300873 127.70359802 18.75186539 -0.41805869 127.88344574 18.64330673 -6.25807619 127.46729279 18.57346153 + -12.1300354 126.36724854 18.38789749 -17.63096428 124.6947403 18.37615585 -22.85664177 122.4813385 18.51032257 + -27.75493813 119.75774384 18.80578995 -32.29099655 116.55652618 19.25185776 29.11836433 119.51293945 28.30814743 + 24.57931328 122.26545715 28.13460541 19.79165459 124.51332855 28.091236115 14.75171566 126.28994751 28.20949936 + 9.55815029 127.54865265 28.38497543 4.41040373 128.26123047 28.45269012 -0.46994174 128.43531799 28.41146278 + -6.26687574 128.037857056 28.29672241 -12.0090589523 127.015518188 27.98104286 -17.40920258 125.41640472 27.7457428 + -22.56933022 123.27310944 27.59772873 -27.44365692 120.60355377 27.54908562 -31.95272446 117.44487762 27.64406204 + -31.88900566 72.014778137 65.92458344 -31.212286 71.46809387 65.60072327 -33.8481636 70.11312103 63.73677444 + -32.91877747 69.68456268 63.43999863 -35.26141739 67.79969025 61.69413376 -34.22254944 67.3839035 61.38876724 + -36.43411255 65.10943604 59.74831772 -35.34725571 64.5616684 59.60391998 -37.29556656 62.39731598 57.87777328 + -36.24503708 61.75463486 57.91941452 -37.80827713 59.88403702 56.12338638 -36.74068451 59.40333939 56.1439476 + -38.091468811 57.66545486 54.39274216 -36.99119949 57.28012466 54.32658386 -38.29915237 55.71318817 52.59599304 + -37.27514648 55.39553452 52.55339432 -38.64554977 54.1544075 50.7610817 -37.6808548 53.75645065 50.6431694 + -39.13455963 52.97937012 48.73937988 -38.2575531 52.53897476 48.49256134 -39.96338272 52.31233215 46.43766785 + -39.27080536 51.77177429 46.11177063 -41.15857697 52.47790527 43.91871643 -40.51988602 52.0093078613 43.43885803 + -42.55072403 53.46564102 41.58488464 -41.8674736 53.072357178 41.0093231201 -43.9211731 54.85802841 39.60044098 + -43.026752472 54.58335876 38.9635849 -45.48585892 56.015148163 37.0070419312 -44.5112381 55.50349426 36.48731232 + -43.81316757 52.16804123 29.69179153 -45.039402008 52.95334244 29.88147736 -44.93476105 54.79571915 33.39797211 + -45.94338226 55.38328552 33.75395203 -44.22195435 51.27062225 25.35544014 -42.7891922 50.43229294 25.07126236 + -44.38097382 52.069561005 20.74290466 -42.99822998 51.26752853 20.25703812 -45.1909523 54.6712265 17.16263199 + -44.097644806 54.32726288 16.35054588 -46.34281158 57.80332184 14.93682957 -45.28738022 57.58021164 14.047011375 + -47.20719528 61.11977005 12.98985958 -46.18582535 60.7696991 12.20782757 -47.43844986 63.87583923 10.80961514 + -46.44093323 63.34370041 10.32741833 -46.92367554 65.49051666 8.24923706 -46.07616806 64.70090485 8.17025566 + -45.28870392 65.13045502 4.69177723 -44.85983276 64.28185272 5.48195791 -43.54396439 62.79608917 2.62915659 + -43.65322876 62.33758545 4.3961072 -42.22035599 59.50655365 2.85253572 -42.59589386 59.90657806 4.54655218 + -41.20285416 56.82238007 3.65879107 -41.52112961 57.24023438 5.40420437 -40.1573143 54.42715836 4.48698282 + -40.29894257 54.5527916 5.99254704 -39.14599609 52.95194626 4.56496906 -38.90757751 52.68392563 5.46726942 + -37.90825272 52.39701843 2.99314809 -37.31632233 51.77340698 3.63819242 -36.78194046 52.6321373 1.15172398 + -36.086765289 52.18783188 1.26011634 -36.6387825 54.10432816 -0.39602122 -35.5083847 53.93177032 -0.85905254 + -36.88983154 56.58272934 -1.89812171 -35.7376442 56.47505569 -2.5315659 -37.4299202 59.16348648 -3.11866975 + -36.10400009 59.11437225 -3.8207159 -37.83397675 61.71730804 -4.42942858 -36.3040657 61.57007217 -5.18891001 + -37.59962082 64.40498352 -5.97484922 -36.14941025 64.032737732 -6.58474684 -36.96459961 67.012321472 -7.53742886 + -35.64110565 66.54962158 -8.095287323 -36.24037552 69.30351257 -8.99624538 -35.019512177 68.59079742 -9.30143261 + -35.10453796 71.29904175 -10.50615978 -34.051353455 70.54016113 -10.63197041 -33.42050552 73.058525085 -12.21187401 + -32.55604553 72.20656586 -12.11403751 -31.57215881 74.062507629 -13.93988705 -30.89110184 73.20722198 -13.64719963 + -29.507267 74.33939362 -15.53606415 -29.081680298 73.4413681 -15.13001347 -27.20289993 73.98217773 -17.18846512 + -27.072154999 73.051116943 -16.59946632 -24.94843292 72.80603027 -18.55041313 -25.08212471 71.92462921 -17.74546242 + -23.15136337 70.51971436 -19.16125298 -23.3545475 69.77292633 -18.34466553 -21.43431473 67.50697327 -19.39775848 + -22.092346191 66.98397064 -18.390131 -20.67695808 64.14243317 -18.77790833 -21.33654404 64.20716095 -18.042409897 + -35.10447693 53.10689545 -1.93911791 -36.088603973 51.29132843 1.014411688 -35.29483032 55.96391296 -3.61794829 + -35.5980072 58.5882225 -4.92431498 -35.72580719 61.029594421 -6.27821398 -35.58358002 63.4446907 -7.61233711 + -35.089336395 65.85327148 -9.18650055 -34.47566605 67.98706818 -10.3965807 -33.6588974 69.92878723 -11.47961235 + -32.53056335 71.46251678 -12.64505482 -31.076288223 72.36330414 -13.92368603 -29.29961586 72.48401642 -15.42170143 + -27.37587357 72.08959198 -16.82144356 -23.24558258 66.6989212 -18.10011673 -22.59789085 64.047958374 -17.70035362 + -24.36035347 69.30828094 -18.12283134 -25.78933334 71.22951508 -17.68130302 -20.38266563 61.75575256 -18.13554192 + -21.008764267 61.89396667 -17.47795105 -22.29367256 61.72772598 -17.088249207 -20.26322746 59.56830215 -17.34691238 + -20.90054512 59.70714188 -16.70087433 -22.22297668 59.49996185 -16.29684448 -20.13820648 57.28242874 -16.40553284 + -20.81469727 57.4168396 -15.68904591 -22.14689636 57.2040596 -15.31610966 -19.98565483 54.97595596 -15.38861656 + -20.6762104 55.11574936 -14.66515541 -21.92609215 54.90908813 -14.25495529 -19.6917572 52.61004639 -14.16804981 + -20.34059334 52.72876358 -13.43357277 -21.62921333 52.46596527 -13.083883286 -29.014530182 52.47531128 -8.36469746 + -29.37644577 54.96622086 -9.61788368 -29.56430054 57.43197632 -10.83027172 -29.5974617 59.85202408 -11.9731741 + -29.53808784 62.24702835 -13.013150215 -29.46205139 64.63918304 -13.92207813 -29.43632317 66.99054718 -14.64514351 + -29.44413567 69.21865845 -15.15116978 -29.42403984 71.13777161 -15.43453598 -25.1578331 52.33452225 -11.14703751 + -25.4383316 54.79819107 -12.38212585 -25.64556313 57.18420029 -13.49141788; + setAttr ".vt[996:1161]" -25.73495865 59.54735947 -14.51713085 -25.78244019 61.8787117 -15.41298866 + -25.93962097 64.25748444 -16.13736725 -26.27092743 66.73606873 -16.6526165 -26.79545021 69.11955261 -16.88419342 + -27.32702255 71.031967163 -16.87093544 -31.3625927 71.22292328 -13.89076805 -31.86710548 69.50389862 -13.27655506 + -32.29551697 67.42569733 -12.4755125 -32.6562767 65.17128754 -11.49254322 -32.97888565 62.78159332 -10.28652 + -33.13290787 60.37215805 -9.072315216 -33.096073151 57.92470932 -7.81055403 -32.84807205 55.38166809 -6.52348232 + -32.41579056 52.82189178 -5.242733 -37.45998001 50.84244537 3.75900221 -39.44603729 51.99409103 6.27367401 + -41.20620346 54.3418808 6.89565802 -42.55154419 49.79916 19.1948967 -43.6560173 53.36685944 14.29849529 + -45.11742783 57.083835602 12.7071352 -46.077342987 60.23870468 11.047472954 -46.40547943 62.67196274 9.414114 + -46.2022438 64.0099639893 8.051408768 -45.18024826 63.62404633 5.80493498 -44.54084396 62.031078339 5.42789555 + -43.63447571 59.73736954 5.64496946 -42.54356384 56.99645615 6.4481163 -42.62302399 54.16245651 9.85160351 + -43.99097824 56.92367554 9.39766884 -44.99972916 59.77941895 8.32527447 -45.59258652 62.1831398 7.42253971 + -45.77266312 63.92082977 6.82262039 -45.56871414 64.7637558 6.65632582 -46.11951447 65.73701477 6.31433439 + -42.59699249 49.21501541 24.95060158 -43.40919113 50.55054855 30.34986115 -44.56631851 53.13312149 34.10613632 + -44.40026093 53.83826447 36.575737 -43.2755661 53.093570709 38.73485184 -40.59600067 50.89494705 43.15136337 + -42.018745422 51.88681793 40.69205475 -39.18557358 50.59290695 46.10696411 -38.092514038 51.34411621 48.91096497 + -37.33263779 52.55312729 51.39909744 -36.78227234 54.34954453 53.57550049 -36.30607224 56.28178787 55.5549736 + -35.92391586 58.38640976 57.41478348 -35.41596985 60.71710205 59.18269348 -16.99401474 54.20838165 67.96477509 + -17.70376015 57.21271896 69.12976837 -17.84715843 59.92805862 70.30967712 -17.81853676 62.40914917 71.13748932 + -18.22714424 64.89861298 71.65118408 -19.25530624 67.27659607 71.89499664 -21.075056076 69.15753174 71.66085052 + -24.67467117 70.80561829 70.37981415 -28.39614105 71.21572113 68.35033417 -30.84992599 70.37013245 66.49514771 + -32.46232986 68.43281555 64.66508484 -33.71481705 66.10285187 62.72544479 -34.69554138 63.46574402 60.92299652 + -21.6968441 67.53939056 71.2129364 -21.6675663 65.21838379 70.61447906 -25.21473122 68.52650452 69.88430786 + -25.70031929 65.99160767 69.052864075 -28.67666054 69.40715027 68.061431885 -29.52823639 67.10190582 66.97881317 + -30.4761219 64.58843994 65.48019409 -21.76435089 62.6797142 69.8256073 -26.25551033 63.40603638 67.94303131 + -31.21682358 61.92457199 63.85329437 -22.0084953308 60.084300995 68.78938293 -26.73485947 60.75775909 66.60901642 + -31.72338676 59.22513962 62.18304443 -27.065933228 58.10087585 65.13192749 -22.13151741 57.42724228 67.51728821 + 4.95307922 53.76276016 71.71743774 4.6604805 55.83935928 72.68569946 4.42648602 58.010635376 73.61274719 + 4.17686224 59.97792816 74.35412598 -6.66744041 54.33483505 71.4200058 -6.43512535 57.25034714 72.67440796 + -6.67432594 60.10280609 73.88835144 -6.99972963 62.51911163 74.68353271 -6.96673822 64.54826355 75.18296814 + -6.1583643 65.95540619 75.57346344 25.11343193 62.59976959 67.80147552 25.28382683 60.4691124 66.90621185 + 25.47659492 58.13883209 65.81459808 25.89043808 56.16955948 64.7151947 24.6550827 64.24626923 68.44696045 + 23.46320534 65.14057922 69.34151459 21.76933098 64.90240479 70.082977295 19.46063232 63.5310173 71.026496887 + 16.93387413 63.51625443 72.11541748 14.65770054 64.70844269 73.053909302 12.73761463 65.1953125 73.72908783 + 10.98156357 64.68400574 74.11424255 8.85563755 63.44957352 74.30142975 6.20474815 62.65982056 74.55641937 + 3.29898453 63.23443604 75.021751404 0.81427109 64.59150696 75.62192535 -1.11891401 65.96699524 75.98770142 + -4.69905233 66.69243622 75.89235687 -2.72807145 66.71035767 76.057228088 -5.16558981 54.080955505 71.74130249 + -5.044373512 56.92506027 73.046714783 -5.2376833 59.76536942 74.13010406 -5.48619938 62.14403915 74.82065582 + -5.53968287 63.98543167 75.27285767 -5.38384056 65.11794281 75.55000305 -4.23858643 65.23790741 75.68927002 + -3.97759533 63.64671707 75.33178711 -3.3830657 53.9325943 71.92359924 -3.45748925 56.63912201 73.14544678 + -3.60620356 59.36449051 74.18185425 -3.80339384 61.7440567 74.86643982 -1.50922966 53.88182068 72.017570496 + -1.70184624 56.39521408 73.13587952 -1.86121988 58.99932098 74.16441345 -2.058950186 61.31254959 74.8706131 + -2.27374887 63.26820374 75.36536407 -2.51831174 65.063934326 75.7844162 2.47321701 53.68143082 71.86959076 + 2.29602456 55.99340439 72.92087555 2.073525906 58.32437134 73.90283966 1.81180787 60.42977905 74.66348267 + 3.88871098 61.52708054 74.83250427 6.5452733 61.17229843 74.42101288 1.50880098 62.15350342 75.17741394 + 0.15443018 53.78610229 71.99243927 0.15466057 56.18319321 73.064575195 -0.01192188 58.65896225 74.082176208 + -0.24060543 60.89684677 74.82746124 -0.50939512 62.78211212 75.33945465 -0.86186081 64.49702454 75.74533081 + 1.1121639 63.55146408 75.49913788 3.51444173 62.61419678 75.035453796 6.33634996 62.068901062 74.6044693 + 9.42364979 53.83528137 71.009803772 9.42587566 55.84692764 71.94422913 9.32998466 57.86888123 72.82208252 + 9.22856331 59.76050186 73.54151917 9.17507267 61.33618927 74.034759521 9.086812019 62.46208191 74.27587128 + 11.88936234 54.10847473 70.55308533 11.77866364 56.024353027 71.47953033 11.66540337 58.044864655 72.38004303 + 11.54685974 60.016738892 73.14566803 13.73610687 54.26594162 70.09601593 13.91200352 56.20928192 70.96851349 + 13.83879852 58.25549316 71.88993835 13.65844727 60.24424362 72.69311523 11.46269703 61.8068161 73.68527985 + 11.34430504 63.26483536 73.98310852 13.43383217 62.12480927 73.27767944 13.1524601 63.64528275 73.60102081 + 18.3787632 54.65356445 68.54511261 18.23683357 56.62420273 69.58795166 18.035745621 58.67162704 70.58827209 + 17.78868484 60.46946335 71.38225555 16.039470673 54.38433456 69.35593414 16.066545486 56.39905548 70.33698273 + 15.92856693 58.4553299 71.30199432 15.68808651 60.3653717 72.1177063; + setAttr ".vt[1162:1327]" 15.34648609 62.085468292 72.728302 14.96341228 63.40925598 73.038497925 + 17.45870972 61.87821579 71.9254837 17.12927818 62.75435638 72.16905975 19.83807182 62.051540375 70.92578125 + 19.663517 62.84671402 71.081809998 22.47724533 55.10642242 66.67224884 22.4979763 57.30884933 67.77557373 + 22.32181931 59.48225784 68.83431244 22.1655426 61.32675552 69.58491516 23.92867661 62.070075989 68.70578766 + 24.11328125 60.06829071 67.89794922 24.30653763 57.7364502 66.78284454 24.51461029 55.60177231 65.59983826 + 22.094081879 62.64943695 69.94966125 21.94547081 63.72007751 70.12297821 23.68519402 63.2818718 69.12348175 + 23.17997551 64.095901489 69.52490997 -32.073799133 56.63723373 60.45540619 -27.30566788 55.4905014 63.5583725 + -22.25153732 54.81728363 66.095321655 -14.49799156 51.91108322 68.05254364 -12.13446426 50.76072311 68.38519287 + -9.64910126 50.82537079 69.10348511 -7.57351732 52.062301636 70.22405243 28.014915466 53.8286972 62.13587189 + 26.73372841 54.64492035 63.4334259 29.46844482 53.74395752 61.0087394714 30.93414688 54.27775192 60.10429764 + 32.26694489 55.59657669 59.60277557 33.014827728 57.65423203 59.69211197 33.28295898 59.71873474 60.0741539 + 33.40688324 61.65914917 60.72833633 33.33663177 63.32543945 61.45941162 33.27542496 65.10036469 62.13599014 + 33.35865402 67.071037292 62.60339737 33.81771469 68.72044373 62.71522522 34.67780685 70.048194885 62.36120987 + 36.1289978 71.16683197 61.3250885 -19.048521042 50.45664978 -13.15163898 -19.5613308 50.4444313 -12.39772701 + -20.87920189 49.85188675 -11.94681358 -18.078708649 49.049507141 -12.72086525 -18.30801392 48.67581177 -11.88069725 + -18.9194088 47.89064789 -11.59019184 -16.35821342 48.0073127747 -12.81246376 -16.4825573 47.44564819 -11.94795322 + -16.82734489 46.4862709 -11.61218929 -14.39191914 47.70332336 -13.42273903 -14.31825733 47.099693298 -12.60017395 + -14.4134264 46.019779205 -12.30730438 -5.61331749 65.20697021 -23.50362015 -6.52441454 62.47898102 -22.57640457 + -7.002099514 59.80415344 -21.56109238 -7.34200287 57.49271393 -20.59291267 -7.76875687 55.26114655 -19.59763527 + -8.45344543 52.89155579 -18.31323242 -9.53601646 50.66393661 -16.75136185 -5.34711981 62.3313446 -22.099401474 + -4.44361162 64.94859314 -23.024311066 -5.83473301 59.64881134 -21.14998436 -6.1882453 57.36104965 -20.28510857 + -6.65467739 55.052555084 -19.28564262 -7.42685223 52.53996277 -17.86063957 -8.56352997 50.28231812 -16.22996521 + -10.96493149 48.96983337 -15.36536312 -10.12240028 48.61275482 -14.96250153 -12.16227818 47.56060028 -13.65633869 + -12.62936401 48.072814941 -14.31550312 -12.0028848648 46.39988708 -13.46781254 -18.39836884 66.59477997 -20.82516098 + -18.47817039 63.80104828 -19.97994423 -18.47586441 61.34090042 -19.14492226 -18.44968796 59.10028076 -18.28197098 + -18.39443207 56.82326126 -17.30416298 -18.31505013 54.52498245 -16.20101738 -18.16606522 52.20725632 -14.95059681 + -17.98254967 50.17184067 -13.7318182 -16.16979408 49.63793182 -14.22798443 -16.0093727112 51.74034882 -15.65721226 + -15.90262985 53.99617386 -16.98618889 -15.79346943 56.26441574 -18.17957306 -15.70885944 58.53720093 -19.23336601 + -15.63959503 60.86946869 -20.18496704 -15.46534157 63.4054451 -21.12054253 -15.13904667 66.078948975 -21.99357796 + -14.13687229 49.26701355 -14.79592323 -13.69001102 51.29470444 -16.26721191 -13.29511261 53.50658798 -17.66558456 + -12.98399925 55.7696228 -18.92577934 -12.73191833 58.043655396 -20.038417816 -12.52366257 60.41588593 -21.046758652 + -12.24421597 63.0011100769 -22.0072059631 -11.75018597 65.69233704 -22.88623428 -12.35339069 49.10805511 -15.271945 + -11.50673676 50.93429184 -16.69236374 -10.724473 53.12805176 -18.16568565 -10.18231869 55.41752243 -19.4630127 + -9.80179787 57.66482544 -20.55885506 -9.49175739 60.0041770935 -21.55854988 -9.10209465 62.63524246 -22.53956985 + -8.40957832 65.41160583 -23.44472694 -9.87325096 47.46449661 -14.80878162 -7.77218628 49.014514923 -16.26985931 + -6.46820498 51.91718292 -18.17678642 -5.61579514 54.70052719 -19.7122097 -5.059684277 57.12097168 -20.80291367 + -4.67412281 59.39892578 -21.68876266 -4.13700962 61.99983978 -22.67944527 -3.52053142 64.44459534 -23.40023994 + -2.62343097 67.15238953 -23.68231583 -2.10838795 66.26507568 -23.90791702 -3.55279899 67.92669678 -24.28318596 + -0.39460552 69.01663208 -24.5440712 -0.36555803 68.14562225 -23.98027992 -0.25314745 67.10538483 -24.099491119 + 3.14880943 66.079307556 -23.31580544 2.58775401 65.63166046 -23.59034538 3.96158719 66.64092255 -23.8467617 + 1.47154355 66.89993286 -23.94911385 1.74769175 67.72558594 -23.80469131 2.06079483 68.45101929 -24.3470974 + 4.89971399 64.37249756 -23.1234169 4.17399502 64.093040466 -22.69576454 3.49956942 63.70210266 -22.98821068 + 5.44005013 62.41840363 -21.97236633 4.72742414 61.52635193 -22.26268196 5.90923691 63.019870758 -22.54765511 + -2.31588626 59.75428391 -22.28998566 -2.10892892 62.19966888 -23.1190052 -2.010543108 64.52277374 -23.71505165 + 2.39523816 60.83896637 -22.63295937 1.94350338 63.1230545 -23.32639313 1.51351595 65.23843384 -23.84223366 + 0.10598224 60.26996994 -22.58678436 0.00163338 62.61961746 -23.32090759 -0.14417216 64.94900513 -23.87275505 + 7.32539463 62.71879196 -22.35807991 7.12023497 61.85702515 -21.60671616 7.035081863 60.82611084 -21.70921326 + 8.87023735 63.24830246 -22.35076141 9.016766548 62.50891876 -21.66997147 9.54649544 61.33269501 -21.60792351 + 9.958745 64.50476837 -22.44094467 10.35764027 63.98140335 -21.7930088 11.10327625 63.39059067 -21.89826012 + 11.17721844 65.87719727 -21.78711128 12.14049816 65.32098389 -22.12495995 10.59545708 66.18305206 -22.57766724 + 11.18117046 67.97048187 -22.78285599 11.85548592 67.72628784 -21.95358276 12.84510994 67.16834259 -22.26186752 + 12.85633469 69.46050262 -22.19126701 13.75760078 68.85842133 -22.33718491 12.25487709 69.9479599 -22.97825241 + 14.53667831 70.89025879 -21.99629211 15.079690933 70.21669769 -22.15883827 14.21851158 71.51902008 -22.68040085 + 16.73646545 72.28211975 -22.045495987 16.77448273 71.51807404 -21.41860008 16.77659035 70.66908264 -21.71544266 + 19.074008942 71.067497253 -20.51742554 18.73860359 70.24576569 -20.95666504 19.43114853 71.87647247 -21.056964874 + 21.081912994 69.74678802 -19.55269432 20.53303528 69.23313141 -20.014867783; + setAttr ".vt[1328:1493]" 21.69887543 70.52729797 -19.95345879 22.3872261 67.95582581 -18.550457 + 21.67374229 67.84742737 -19.15221977 23.58516312 68.47010803 -18.70227814 21.026916504 60.23352814 -17.42020798 + 20.80402565 57.69555283 -16.46106339 21.74833679 57.56359482 -15.33156967 21.89399147 59.93553543 -16.22415733 + 21.4024601 62.3888092 -18.030078888 22.22034836 62.082374573 -16.85070229 21.7746048 64.39641571 -18.45314789 + 22.63812828 64.1808548 -17.37148857 21.94216156 66.2377243 -18.76933479 22.76250458 66.083808899 -17.8897419 + 16.40034485 69.61492157 -21.96478844 15.58717442 68.13654327 -22.051713943 14.83807564 66.41132355 -21.95726776 + 14.048291206 64.57608795 -21.77592087 13.036828041 62.62381744 -21.50951004 12.022647858 60.47628403 -21.084506989 + 14.86986065 59.50698471 -19.99287415 15.73850918 61.68959427 -20.4909153 16.54339218 63.7168808 -20.84973145 + 17.1947403 65.64068604 -21.11837959 17.74707794 67.43022156 -21.27726746 18.30469513 68.99055481 -21.25089836 + 18.055879593 58.50056839 -18.37724304 18.62364388 60.82778549 -19.074712753 19.18588066 62.94013596 -19.56447601 + 19.65270996 64.93952179 -19.92091942 19.99194145 66.78188324 -20.15947151 20.23588181 68.28663635 -20.2480526 + 23.95082474 66.0015335083 -17.86153603 23.47430801 61.82444 -16.697855 23.83567238 63.95789719 -17.28026772 + 23.18067932 59.72003555 -16.068065643 22.93008804 57.51921844 -15.19377613 23.1468277 55.20054245 -13.93647099 + 22.065008163 54.94178391 -13.84785461 21.017089844 54.42079926 -14.76226711 39.40460205 65.52664948 -4.63205862 + 38.40390396 63.36371994 -5.057118893 37.50613403 61.47839737 -5.19693232 36.51142883 59.39256668 -5.30245829 + 23.99633217 53.38763809 -12.49110508 23.041772842 52.61855316 -12.027005196 22.39000702 51.71664429 -12.45945358 + 35.41410828 57.059570313 -5.37309885 34.18085098 54.95558548 -5.45183897 25.54247475 52.077468872 -10.7809906 + 24.65303993 51.12563324 -10.19117355 24.13139915 50.027412415 -10.4270134 26.53853607 50.45786667 -8.32250118 + 26.31612206 49.34796143 -8.41906834 27.3980751 51.4808197 -9.079790115 29.14435196 50.82595444 -6.36125374 + 29.27335548 49.67366791 -6.21806335 29.79555511 51.68767929 -7.26039791 32.34718323 53.012119293 -5.92840862 + 26.79750443 67.76004028 -17.047067642 26.62836075 65.45376587 -16.56338501 26.39527702 63.33760834 -16.038261414 + 25.97025299 61.20586777 -15.50211239 25.50671959 59.090263367 -14.88706684 25.071277618 56.92675018 -14.091218948 + 24.67438698 54.81926727 -13.16403008 30.19209671 67.18992615 -14.65591621 29.78801155 64.86172485 -14.30669022 + 29.33714485 62.7311058 -13.90678978 28.74726677 60.60746765 -13.4882555 28.067842484 58.47220993 -13.0094089508 + 27.38938141 56.28352356 -12.3675909 26.56980324 54.067398071 -11.60646725 33.50785828 66.5925827 -11.74928474 + 32.91925049 64.31577301 -11.53780651 32.27409744 62.21829605 -11.30999088 31.51024055 60.10091019 -11.060378075 + 30.63134003 57.939888 -10.76866341 29.73117828 55.75187683 -10.331604 28.63453865 53.53236008 -9.79687691 + 37.052726746 66.41123199 -8.12703133 36.03673172 63.7904892 -8.25597763 35.22671127 61.77665329 -8.24727821 + 34.32292557 59.67321777 -8.19007778 33.30464172 57.44707108 -8.067354202 32.20360565 55.30453491 -7.8844552 + 30.87483406 53.27240753 -7.73539162 32.11893845 52.36565781 -4.72874737 32.90232086 51.26741791 -4.061076641 + 39.71948242 65.18473053 -3.1229403 38.82285309 63.083114624 -3.52137041 37.87735748 61.26958084 -3.65810347 + 35.7559967 56.64146042 -3.96152902 36.80748749 59.030525208 -3.78371501 34.48464203 54.56169128 -4.10129786 + 35.30314255 53.85625458 -3.33231568 36.61892319 55.99110413 -3.14724874 37.81461716 58.33965302 -2.98947525 + 38.90972519 60.61485291 -2.89687705 39.83621216 62.58070755 -2.78743744 40.75639343 64.7820282 -2.44588208 + 45.53300476 65.038505554 5.90007591 45.43156815 62.85615921 7.075016022 45.14655304 60.82131195 7.9859643 + 44.62852478 58.52545547 8.97941303 43.90538788 56.036655426 9.9596529 43.10965347 53.65187073 10.99490166 + 42.11672211 50.90085602 12.51766109 45.41973877 67.16563416 4.53856659 41.62436676 66.99297333 -1.77444315 + 40.76592636 67.41782379 -2.3277247 40.68224335 67.95568848 -3.75819826 41.98087692 69.31834412 -1.13950503 + 42.44674301 68.54056549 -0.78616434 42.19464493 70.16874695 -2.26281404 42.49333191 66.88262177 -0.84141022 + 41.94997406 64.70142365 -1.061518669 41.2110672 62.49379349 -1.17004061 40.42169189 60.3612442 -1.16851747 + 39.46769333 58.067245483 -1.16100788 38.36463165 55.70755386 -1.14212811 37.082668304 53.42325592 -1.15628529 + 35.41299057 51.019058228 -1.25924635 45.055271149 67.020996094 3.48877764 45.017829895 64.86899567 4.38288736 + 44.80158615 62.68275833 5.24594212 44.43593216 60.59866333 5.9826827 43.83934402 58.28120041 6.67383337 + 43.067901611 55.84956741 7.3435936 42.20822525 53.43640137 8.17298603 41.11354828 50.64268112 9.54087639 + 45.68598557 65.35231018 7.13845634 45.51717758 67.63653564 5.66240454 44.99817276 68.6109314 3.18159461 + 45.091079712 69.42255402 3.79611659 44.18266296 70.25874329 1.95758784 44.30013275 69.15451813 1.82928705 + 43.45625687 69.064712524 0.49349815 43.1241684 70.17420197 0.38831592 43.45804977 66.97711182 0.56306523 + 43.094615936 64.71937561 0.68787563 42.5529213 62.52404404 0.88218427 41.91934586 60.33108902 1.12417376 + 41.13600159 58.012634277 1.36716008 40.17872238 55.63531876 1.59110272 39.042469025 53.26634598 1.82210279 + 37.56290436 50.80114746 1.97031713 44.33060455 67.041374207 2.058880329 44.12316895 64.77764893 2.52880788 + 43.74969101 62.58962631 3.036262274 43.25885773 60.42658997 3.53177547 42.59352112 58.09948349 4.012027264 + 41.76107025 55.70811462 4.46722794 40.78437805 53.31388855 4.98332882 39.50825119 50.68977356 5.64533997 + 43.70877457 71.20058441 -0.25291279 44.93131638 71.28538513 1.64718413 45.92905807 70.28449249 3.84074593 + 46.57384872 68.31608582 5.97427034 46.71184158 65.87025452 7.61432314 46.58616638 63.4870491 8.91827011 + 45.55056381 63.15076828 8.28513908 46.2834549 61.35980988 9.93744946 45.2457962 61.077899933 9.32066441 + 45.7541008 59.0028381348 10.99807072 44.69279099 58.70260239 10.42092323; + setAttr ".vt[1494:1659]" 44.97653961 56.51012421 12.050002098 43.8850174 56.20577621 11.52695847 + 44.15362549 54.12675858 13.28382206 43.033802032 53.81800842 12.64207268 43.069911957 51.19145584 15.26251125 + 42.038764954 50.98209381 14.37365723 42.27632904 49.10780334 17.3766861 41.083538055 48.55169296 16.74304008 + 40.80892944 47.71217346 14.99851036 41.79270554 47.7832489 20.030731201 40.22350693 46.93753815 19.70845985 + 39.55092621 45.012931824 18.33652496 41.59495163 60.88021851 50.91065979 41.60198593 62.80118179 52.13685226 + 41.54652786 64.76015472 53.26530075 41.39730072 66.43244934 54.12936401 41.11584091 68.061203003 54.96085358 + 40.61020279 69.74660492 55.93099213 39.84514999 71.14235687 57.13898849 34.78774643 57.69799423 58.65139008 + 35.10956192 59.89661789 59.34629059 35.16680145 61.84711838 60.087162018 35.017669678 63.59156418 60.86475754 + 34.92325974 65.38932037 61.54325104 34.93778229 67.26864624 62.030895233 34.97870636 68.89815521 62.27685928 + 37.64645386 71.75284576 59.83233643 37.34837723 72.77864075 59.85468674 41.79729843 61.31729507 49.45514679 + 41.83928299 63.18117905 50.75064087 41.83481216 65.18595886 51.98427963 41.69968033 66.85700989 52.95163345 + 41.42621231 68.48808289 53.84367371 40.96747589 70.2640686 54.94153976 40.074298859 71.75665283 56.47282028 + 37.025920868 58.26859283 56.820858 37.17726898 60.48007965 57.76579285 37.15684128 62.43278503 58.58932495 + 37.015224457 64.23256683 59.38019562 36.8517189 66.016960144 60.11045074 36.70761871 67.82234955 60.70907974 + 36.49695969 69.55741119 61.13960648 38.88011932 71.75461578 58.42779922 38.73729706 72.63105011 58.26864624 + 39.12924576 59.19435501 54.759655 39.13549042 61.31464005 55.85952377 39.057304382 63.22235489 56.76041031 + 38.89331055 65.0012664795 57.56980133 38.66298294 66.75580597 58.332798 38.36911011 68.50074768 59.050487518 + 38.021202087 70.19526672 59.61916351 40.68602753 60.13851166 52.78284454 40.67657471 62.12139893 53.90504837 + 40.5918808 64.037246704 54.91151428 40.42284393 65.76737976 55.75581741 40.14043427 67.45428467 56.57188416 + 39.74337387 69.15496063 57.3984642 39.26460648 70.6787262 58.14853668 37.61209869 73.81694031 60.60209274 + 39.16895676 73.74908447 58.82595825 40.80596161 72.74355316 56.64821625 41.99040222 70.84270477 54.68738556 + 42.79033279 67.26893616 52.47305679 42.51131058 68.93100739 53.42865372 42.9011879 65.64318085 51.55269241 + 43.0036315918 63.67731094 50.29445267 43.19542694 61.92126465 48.94710159 41.59563065 58.602314 49.15502167 + 41.76200104 59.40772629 47.79292297 43.34622574 60.098400116 47.33920288 42.98258591 50.93640137 31.27996063 + 44.13742447 51.19316101 30.61466217 41.67334366 48.5329361 28.71844101 42.88536453 48.89619827 27.82117844 + 40.53725052 46.65909576 26.2612114 41.87060547 47.38622284 25.57180023 40.03755188 46.1152916 23.34259605 + 41.52456284 47.047775269 23.13301468 44.32454681 52.65630341 34.26052094 43.14983368 52.23819351 34.64946365 + 43.97575378 53.53336334 37.54200745 42.79380798 52.91111755 37.94097519 43.61011124 54.66031647 40.41808701 + 42.27373886 54.050632477 40.94423294 43.49991608 56.41394806 43.20427704 41.97032166 55.77175522 43.85214615 + 43.44342804 58.29262924 45.4978447 41.79212952 57.64392471 46.034057617 41.698246 56.51374817 47.27685547 + 41.92934799 54.43755341 44.84574509 42.22798538 52.53525162 41.67352676 42.62636948 51.30800629 38.49666214 + 42.98626328 50.60759354 35.26128006 42.71592331 49.37437439 32.036113739 41.55558014 47.061222076 29.73286629 + 40.34020615 45.16250992 27.19462967 39.65774155 44.42763138 23.36590195 17.53986549 55.81243896 -17.38484955 + 14.2550087 56.9269104 -19.16833878 11.88816452 57.62788773 -20.12825775 9.32402515 58.12843704 -20.83688545 + 6.85953093 58.4957695 -21.36276054 4.87228346 58.55289459 -21.65403366 2.4796896 58.15338898 -21.74517441 + -2.60887671 57.36887741 -21.36368561 -0.01474998 57.78451538 -21.66719627 7.48604584 64.59353638 -23.16680717 + 9.04421711 64.6615448 -22.90757751 5.96973276 64.59286499 -23.30368996 7.50665236 66.61754608 -23.76110458 + 9.24356937 66.51576996 -23.36040306 5.964221 66.57860565 -23.90702438 6.88790178 68.54006958 -24.27653885 + 9.45802879 68.49452972 -23.73301125 4.37814474 69.26146698 -24.63574219 7.12585878 71.0089950562 -24.66109467 + 10.29647255 71.10208893 -24.023708344 4.9419384 71.3682251 -24.97754669 6.27144146 73.48479462 -25.036375046 + 13.36216259 72.87610626 -23.47037125 16.4369545 73.75085449 -22.65285492 19.69477463 73.42210388 -21.45117188 + 9.64256287 74.1567688 -24.53764534 2.33152485 70.091835022 -24.90440559 -0.30460712 70.61806488 -25.063177109 + -3.41872549 70.32566071 -24.95323563 -7.28695011 68.032173157 -24.18976593 -6.698843 70.35442352 -24.69782829 + -20.48486137 70.21937561 -20.70471191 -17.77515602 69.24947357 -21.72166634 -14.546278 68.68036652 -22.75952148 + -10.9890976 68.28380585 -23.62548637 -16.81572151 71.66184235 -22.48202133 -13.88942528 71.053909302 -23.33783722 + -10.37840176 70.63308716 -24.13687134 -22.15199089 72.3740387 -20.23110771 2.6565733 72.059837341 -25.2253952 + -3.22216034 72.39925385 -25.26631165 -0.10799924 72.50974274 -25.3543911 -6.46504021 72.45383453 -24.9878273 + -15.82457066 73.76366425 -23.037298203 -13.34969234 73.16535187 -23.71762276 -10.047782898 72.75862122 -24.44202042 + 3.18059111 74.36940002 -25.38861847 -3.1016686 74.70505524 -25.43943405 0.14934164 74.7703476 -25.52381134 + -6.57583761 74.66324615 -25.12551689 -14.87879467 75.21253967 -23.41867065 -12.93510056 75.15818024 -23.94922066 + -9.93770313 74.91846466 -24.60466194 3.62784934 77.46041107 -25.43083 6.80758572 77.0022583008 -25.11330032 + -3.37774062 77.61226654 -25.4617157 0.19453989 77.73779297 -25.56414223 -6.88616896 77.3044281 -25.13753319 + -12.71707058 77.37187958 -24.021835327 -9.64043808 77.3494873 -24.70259857 12.86305046 77.94991302 -23.92987442 + 16.58043861 78.38864899 -22.8223381 20.22477722 78.54201508 -21.43182182 9.45714283 77.2359848 -24.69611549 + 13.87464619 91.78756714 -21.30115509 9.36403847 92.074691772 -22.28880119 4.79726791 92.23234558 -22.89663696 + 0.21890196 92.19966125 -23.14008522 26.39322281 88.86032104 -16.58018875; + setAttr ".vt[1660:1825]" 30.72522163 87.33403778 -14.001080513 18.24213409 91.26037598 -19.97995377 + 22.39100647 90.32452393 -18.41269112 -25.46988487 86.081321716 -17.84961319 -29.062124252 84.73148346 -15.86500931 + -4.37177801 91.88588715 -23.043067932 -8.92513943 91.22989655 -22.62641144 -13.32487106 90.25193787 -21.9068737 + -17.51494789 88.94958496 -20.90967178 -21.57529831 87.51312256 -19.56020927 -48.52103043 59.66994095 18.25363922 + -47.50270844 56.69050217 19.98113632 -47.48530197 58.72511292 16.63544273 -46.44419098 55.70206833 18.57736588 + -46.77502441 54.63238525 23.091869354 -46.5190239 53.99058914 27.062057495 -45.39871597 52.60625458 26.26359558 + -45.67222595 53.41126251 21.92907906 -46.89580536 55.016521454 30.81575966 -45.99966431 53.95411682 30.32390022 + -47.60517883 57.22550583 33.74530411 -46.87041473 56.5614624 34.2637558 -48.57761002 60.35837936 35.55134964 + -47.98416519 60.056350708 36.45071411 -48.929039 63.70588684 37.44124603 -49.55438614 63.81570435 36.18477631 + -46.080551147 56.78235626 37.55799103 -47.064804077 58.44011307 37.30406952 -47.66227341 60.51060104 38.37990189 + -46.48670578 58.22226334 39.076873779 -34.44598389 105.19910431 52.59623337 -38.72592926 109.85601807 35.57800293 + -39.72842407 109.87438965 28.30061722 -37.27666473 109.05115509 42.16347504 -40.10793304 108.95241547 20.61615562 + -49.69347763 90.10668945 31.31001472 -50.17511749 89.052711487 24.16231728 48.93809891 92.92816162 30.3087883 + 49.28478622 91.96214294 22.90127373 28.89029503 106.16939545 57.63063049 23.57511139 108.37641144 59.83334351 + 19.1686058 109.49932098 61.52030182 15.039874077 109.78557587 63.20366669 11.025660515 109.71916199 64.63394165 + 6.87066555 109.22756958 65.97841644 3.10574579 108.29857635 67.18572998 -0.13556419 107.96851349 67.55964661 + -3.84973025 108.30870819 67.10391235 -8.30565453 109.25737 65.67356873 -12.87569237 109.77798462 64.010971069 + -17.24489784 109.646698 62.38335037 -21.47471428 108.86120605 60.81990814 -25.60777664 107.46388245 59.25106812 + -29.86086273 104.96321106 57.86264801 -34.32110214 100.77038574 56.75541687 -38.45674133 89.53636169 58.54349518 + -38.93239594 84.51286316 59.53820038 -37.052383423 94.56275177 57.77561569 38.69304657 85.61105347 59.45643997 + 38.33154678 90.76066589 58.17655563 33.4485054 101.30628204 57.29534149 36.60626984 96.2397995 57.33504868 + 37.88871765 75.53617096 60.86031342 39.43913651 75.76616669 59.11828613 41.78380203 75.051315308 56.05651474 + 39.0068016052 77.73318481 59.80709839 42.020862579 77.85412598 55.92687225 -33.69739532 76.64015198 65.26221466 + -36.76930618 80.013549805 62.53582382 -33.00080108643 73.057800293 65.5281601 -35.047325134 71.26146698 63.46075058 + -49.60843277 63.48795319 17.64297104 -50.67470169 67.18338776 18.71510887 -51.65090561 69.90419006 21.37976646 + -52.48519897 72.21489716 28.058387756 -52.3403511 71.57826996 24.69604874 -52.15158463 71.73582458 31.30274963 + -51.4005661 70.093658447 33.99638367 -50.46774292 67.42500305 35.80318451 -49.79684448 67.84669495 37.65127563 + -50.83769226 71.29846954 35.29928207 -51.86219025 73.95470428 28.45710754 -51.80067444 73.42726898 24.37117195 + -51.52679443 73.31535339 32.18836594 -51.23106384 71.69866943 20.056724548 -50.17897797 68.44341278 16.51926613 + -48.65620804 63.1275177 15.1464386 -50.76599884 82.51760864 18.17256355 -49.80070114 87.42678833 17.27979279 + -48.18125153 92.63053894 16.20742226 -39.80833435 106.91056824 12.82021141 -38.95845413 103.44277954 5.2251277 + -37.70102692 98.65774536 -1.52723396 -49.63460541 80.64549255 12.12460899 -48.69549561 85.31038666 10.99778461 + -47.1206665 90.24082947 9.69820499 -34.21952057 88.068145752 -10.90291882 -32.40328598 83.49639893 -13.60127735 + -48.62060165 66.043792725 12.28387451 -51.72260666 76.1962738 29.38117218 -51.76727295 75.94221497 24.41020584 + -51.25521088 74.39261627 19.30310822 -50.02532196 71.27523804 14.15818214 -47.91288376 67.67781067 8.98369408 + -48.68177414 71.33058167 9.44805813 -51.4845314 79.4129715 30.8455162 -51.66814804 79.40395355 24.7532692 + -51.19660187 78.078201294 18.80419731 -50.097484589 76.16550446 13.26435757 -46.81298828 68.13058472 5.9742794 + -45.49108505 67.54574585 3.39723945 -48.64879227 75.17912292 8.55353832 -47.057613373 83.42718506 5.71114016 + -45.52503586 87.61302185 4.1178112 -48.077461243 79.22983551 7.167099 -38.60442352 54.15477371 1.93240952 + -39.30902481 56.59154129 0.67807871 -40.079216003 59.22546768 -0.40827987 -40.67198563 62.071578979 -1.53427815 + -40.58449936 65.12738037 -3.2508285 -43.50815964 66.22779846 0.45067748 -39.97828674 68.09236908 -5.12939882 + -39.063766479 70.78013611 -6.93721485 -37.64646149 73.17288208 -8.87852955 -35.52752686 75.66857147 -11.24295139 + -32.46507263 76.1608429 -13.92641258 -30.068712234 76.39955139 -15.76175976 -27.3104763 76.31461334 -17.6279583 + -23.9118309 75.68196106 -19.59345245 -47.19829178 71.41021729 5.58204603 -41.32997513 90.1375351 54.44610596 + -42.30725861 85.60057831 54.77442551 -39.78842926 95.24983215 53.76707458 -37.84062576 100.2574234 52.76214981 + -36.84735107 103.39338684 51.26928329 -45.74770355 100.70885468 29.48678017 -42.96230698 105.49760437 28.83949661 + -46.22932053 99.61431122 22.27599335 -45.94451904 97.71713257 15.10769272 -44.98760605 94.8997345 8.29707527 + -43.53483963 91.44245911 2.41634607 -40.91941833 95.12446594 0.48276788 -42.24682617 99.33127594 6.77821445 + -43.11728668 102.53367615 13.97415924 -43.39512253 104.50535583 21.43569946 -40.23621368 105.23929596 42.22950363 + -42.72270584 100.98082733 42.71003723 -44.85860443 96.10076904 43.37906265 -46.51593018 90.93069458 44.014339447 + -47.52004623 86.50613403 44.41139603 -41.85816574 105.68213654 35.87862396 -44.52925491 101.11852264 36.41213989 + -46.73694992 96.1227951 37.11166 -48.37200165 90.9111557 37.96606064 -49.25231934 86.34888458 39.059391022 + -46.14072037 78.095046997 2.76101637 -46.93068695 74.67417908 4.41804743 -42.9704361 69.50610352 -1.63961112 + -45.32207489 70.79876709 1.91460323 -42.080120087 72.4471283 -3.57986069 -44.74184799 73.89149475 0.32549429 + -40.80542374 75.15113831 -5.55922651 -43.69116592 76.84876251 -1.55303895 -44.97707748 81.70877838 1.06096077 + -43.52830124 85.23348236 -0.54137725 -41.90178299 87.85897064 -2.12247682; + setAttr ".vt[1826:1991]" 32.6683197 98.75596619 -7.30658197 28.58441925 100.82019806 -9.51243687 + 24.28981781 102.76690674 -11.25805759 19.7481308 104.37243652 -12.72214222 14.97912407 105.55835724 -13.94643688 + 10.046264648 106.34455872 -14.89018154 5.041908264 106.82744598 -15.45118713 -0.01357889 106.91795349 -15.68347454 + -5.15016079 106.6007309 -15.59365845 -10.18194962 105.71496582 -15.29450321 -15.035524368 104.38313293 -14.72830963 + -19.68903351 102.69631195 -13.85572433 -24.13218498 100.70404816 -12.65962505 -28.36182022 98.45222473 -11.11511898 + -32.37312698 95.9837265 -9.1787138 -36.056549072 93.32112122 -6.93095064 -39.27461243 90.54773712 -4.50880051 + -39.26418304 77.87892151 -7.46746254 -42.35678864 80.021331787 -3.35478115 -40.74252701 83.85611725 -4.94070625 + -37.4728508 86.068374634 -8.2392292 -37.78517151 80.54711151 -8.98521423 -35.33351517 82.21614838 -11.24609566 + 41.065891266 86.021934509 56.28291321 40.58146667 91.43088531 54.87079239 38.85054779 96.94415283 53.93704987 + 36.089221954 102.087875366 53.46167755 33.034545898 106.50814056 52.91723251 31.306427 109.51042175 51.56493378 + 40.17256165 81.32342529 58.24406815 44.30226517 86.024581909 51.26723099 43.23237228 92.083938599 50.18071365 + 42.79092026 81.15081787 54.68132019 41.33525085 97.65274048 49.37960815 38.66757584 102.81071472 48.81472397 + 35.62829208 107.27596283 48.31018448 32.62377167 110.77970886 47.92950058 29.22216034 113.42559814 48.43124008 + 25.32843971 115.74256897 49.21857452 21.23838043 117.57944489 50.13123322 16.9724102 118.89957428 51.18667221 + 12.55675888 119.78567505 52.22920609 8.07043457 120.28548431 53.13066101 3.71034884 120.47206879 53.77009201 + -0.34244463 120.461586 53.99171829 -5.38566637 120.25413513 53.77983475 -10.23469925 119.85233307 53.078601837 + -14.96645737 119.094284058 52.08367157 -19.59286308 117.85415649 51.0055656433 -24.084228516 116.056190491 49.96518326 + -28.34900665 113.68550873 49.057159424 -32.27311325 110.77921295 48.35936737 -35.67871094 107.56926727 47.85586929 + -38.38235092 104.37229919 47.57464981 -40.49530029 100.56474304 48.14310074 -42.54636002 95.73560333 48.85510254 + -44.19473267 90.56481171 49.42456436 -45.23869324 86.026275635 49.67220688 47.16518021 87.80285645 44.37268829 + 45.75288391 92.90697479 44.16478729 49.14666367 88.20270538 37.57602692 47.71308899 93.24822998 37.46701813 + 43.68902969 98.30617523 43.70185089 40.95137787 103.4752121 43.27034378 37.78741455 108.068710327 42.85153198 + 34.38589859 111.93637085 42.57959366 45.59407043 98.58356476 37.22180176 42.82354355 103.78491211 36.90739822 + 39.60802841 108.4846344 36.50793076 36.057876587 112.59074402 36.16797638 46.85329819 98.28687286 30.13593864 + 44.13640213 103.49232483 29.86790848 40.94959259 108.23699188 29.45088196 37.35769272 112.48376465 28.99106026 + 38.093589783 111.43974304 21.40849113 41.63592529 107.18262482 22.036268234 44.69874191 102.50950623 22.49619484 + 47.28863907 97.35980225 22.75247574 52.74955368 70.94402313 24.92783737 52.087917328 69.11309052 21.91410828 + 51.065906525 66.55419159 19.67558098 49.98878098 63.34638596 18.51515961 48.7743721 59.53598404 18.93161774 + 47.74889374 56.43206787 21.22180176 47.15280533 54.70855331 24.52755928 46.98609161 54.39788818 28.23308182 + 47.17640305 55.39481735 31.78790855 47.73954391 57.55503464 34.46603394 48.53410721 60.35241699 35.99388123 + 49.46743774 63.31232452 36.40181351 50.48353195 66.27793121 35.81350327 51.45207977 68.95559692 34.3318367 + 52.36660004 70.84585571 31.79939842 52.84497833 71.60253143 28.44091034 52.02457428 72.40229797 25.082799911 + 51.40867233 70.42844391 21.091426849 50.42325211 67.48304749 18.10481834 49.34337616 63.86501694 16.79806709 + 47.92394638 59.27241516 17.13817787 46.89996338 55.66633606 20.094869614 46.24237061 53.66534042 23.57446861 + 45.89016724 53.0033226013 28.020717621 46.1648674 54.48107147 32.83058929 46.75485611 57.06205368 36.15422821 + 47.77033615 60.4585228 37.61359024 48.78459549 63.90710068 38.061794281 49.77826309 67.23673248 37.41098404 + 50.68480301 70.21417236 35.76120377 51.47616577 72.26676178 33.11435318 51.98730469 73.096092224 29.49258614 + 45.45946121 55.064460754 36.78213882 45.33564758 53.48913574 33.6420517 45.014774323 51.919487 29.7330265 + 43.96399689 49.94332886 26.7200737 44.84837723 51.20185471 24.90921593 45.41005325 52.45375061 21.896101 + 46.1455307 54.60026169 18.79694176 43.90044785 49.87594223 22.87279701 44.53331375 51.26702499 20.53407097 + 43.088748932 48.65826416 24.44442368 45.30101013 53.41057205 17.81335831 46.93723679 57.39833069 16.17287445 + 49.84287643 85.018203735 15.47844028 48.6246376 90.49900818 15.42728329 46.77289581 95.89038086 15.35098362 + 38.23265076 109.30284119 13.79238701 41.61889267 105.25538635 14.69969654 44.39681625 100.90261841 15.19387531 + 47.92775345 83.53399658 8.19273758 46.86079788 88.79397583 8.1131916 45.21485901 94.096282959 8.16001129 + 37.88776779 105.94096375 6.54926252 41.11080551 102.43781281 8.032212257 43.23429871 99.0068740845 8.46705723 + 44.84499359 81.74632263 1.12252903 43.95771027 87.025947571 1.10655785 42.63971329 92.31244659 1.47938919 + 37.22603226 101.49718475 0.20195845 40.84627151 98.14110565 2.69285607 36.35040665 96.72654724 -4.74307919 + 35.91253281 91.45037079 -7.98358202 35.31207275 85.20178223 -10.61871147 38.98122025 95.22238922 -2.41177416 + 39.53209686 91.056793213 -3.9428184 40.095981598 85.73853302 -5.098614693 46.11996841 56.22280884 15.17673588 + 42.61537552 48.14507294 22.81639481 42.94672394 48.79001236 21.20728874 43.37855911 49.92338562 19.025188446 + 44.13986969 51.92504501 16.77080536 45.21538544 55.057861328 14.28039265 48.96912766 64.21492767 14.94899464 + 47.99007797 60.92334747 14.90667152 50.057243347 68.5171814 15.83274174 51.22454071 72.27909088 20.020090103 + 47.31850052 59.12597275 14.80942345 46.74567795 58.45327759 13.84479332 45.93840408 57.38390732 12.94102764 + 46.68561554 59.80714035 12.10685444 47.28609848 62.2398262 11.27731609 47.7204895 64.58937073 10.49970722 + 47.88534164 67.29938507 9.1473093 47.6681633 70.036804199 7.25768757 46.88548279 72.36801147 4.75042629 + 39.76708603 70.18004608 -6.023550987 41.78472519 72.78266907 -3.91739678; + setAttr ".vt[1992:2157]" 44.13129044 73.57904053 -0.57535827 45.56773376 73.5145874 1.85307992 + 47.42038345 60.66931915 13.24500942 48.20847702 63.40297318 12.91634464 48.84617615 66.35835266 12.55122948 + 51.47634506 75.51180267 31.87125397 51.75879669 74.52848816 25.20142555 -33.54597092 79.093040466 -13.16867924 + -35.66399384 78.53774261 -11.29119492 -30.96861839 79.65426636 -15.17680073 -27.94660568 80.15299225 -17.2231102 + -24.53522491 80.87447357 -19.15774536 -20.7502861 82.15292358 -20.88558197 -16.83330536 83.57723999 -22.26083183 + -19.09346962 72.64900208 -21.71641541 -19.89556122 77.11645508 -21.57713318 -20.5601368 73.88314819 -21.19330215 + -16.23396111 79.37905121 -22.89798546 -17.66150856 75.0054244995 -22.45730782 -15.4850626 76.70209503 -23.2454052 + 4.17900324 81.28268433 -25.18844414 8.42866993 80.48544312 -24.7373867 0.19267467 81.50376892 -25.34559059 + 12.88799858 81.48288727 -23.70772171 20.58852959 81.99559021 -21.037334442 16.89808273 81.82817078 -22.48012733 + -3.87881351 81.20645142 -25.22305298 -8.3265276 80.17796326 -24.79334831 -12.58110142 80.30281067 -23.90452194 + 0.21716478 86.28329468 -24.65675354 -4.13920355 85.96386719 -24.54307747 -8.54063797 85.308815 -24.10211563 + -12.7983942 84.60955048 -23.32201958 21.18856049 85.35506439 -20.25755692 17.44738388 86.014465332 -21.64519119 + 13.29000378 86.16827393 -22.91269302 4.54069185 86.24090576 -24.45569038 8.91517544 86.072174072 -23.8931675 + 27.60497475 70.72855377 -17.14225578 24.9190731 71.58296204 -18.80493736 22.50667572 72.48232269 -20.14352036 + 49.031711578 69.42700958 11.25519276 48.67695999 72.21089172 9.10859394 47.6757431 74.51941681 6.10755825 + 36.70746231 69.69699097 -9.4803257 39.061199188 72.91057587 -7.46531534 41.66173172 75.8010025 -4.40978432 + 45.57201767 76.56113434 1.71011424 30.63396835 70.16465759 -14.95824909 33.91431046 69.53704834 -12.138484 + 26.42876434 74.72801208 -18.25491524 30.10206413 73.40122223 -15.75809479 23.14792061 75.31204987 -20.084724426 + 36.43184662 72.44953156 -10.27681828 37.85825348 75.40216827 -9.034603119 40.43545532 79.80970001 -5.82316828 + 34.094020844 72.93439484 -12.51954937 23.8406086 78.70980072 -19.70579529 24.27605247 83.2874527 -19.041067123 + 36.043491364 80.59933472 -10.71307087 35.035800934 76.61012268 -11.87619972 29.015459061 82.44995117 -16.23531342 + 27.71413803 78.29298401 -17.47619247 31.52030563 77.43573761 -14.83030796 32.91464615 81.29842377 -13.48374939 + 48.50485611 78.88106537 8.44628716 48.74749756 76.12006378 8.7351532 50.15420914 72.082115173 14.26069736 + 51.13354492 75.25216675 18.48449135 49.69288254 74.84909821 11.78120136 50.50414658 79.14115143 15.44835281 + 51.43928146 79.13222504 31.15961456 51.68880463 77.65119934 24.46780205 51.13091278 83.12561035 30.63816643 + 51.36462402 81.67742157 23.39653206 46.23633575 83.39741516 48.56912231 48.14076233 83.80886078 43.93425369 + 49.98712921 83.81001282 37.56769943 45.78503799 80.66300201 49.91377258 48.38954163 80.45017242 44.21940231 + 50.30967712 80.064224243 37.87678146 45.38559723 77.70102692 50.75973129 48.25941086 77.36495209 44.85042953 + 50.24172974 76.84400177 38.63412476 50.88644791 73.43767548 35.56538391 49.86951828 74.16645813 39.96071625 + 50.22457123 71.082519531 37.75866699 46.52457047 58.13451767 38.47607803 47.39439011 60.91088104 39.26641464 + 48.29129028 64.61283112 40.23370361 49.39298248 68.10270691 39.29256439 45.36973953 56.33581543 39.13893127 + 45.13560104 57.98883438 41.93618393 44.98177338 59.85242462 44.3337822 44.88422394 61.71532822 46.19050217 + 43.26682663 72.32062531 53.60668945 43.89176178 70.2778244 52.23296356 44.17717743 68.62394714 51.28085709 + 44.30588913 67.18361664 50.49477005 44.5283165 65.4083252 49.2433548 44.7291069 63.57555389 47.82466888 + 46.29046249 59.67567062 40.98651505 46.16376495 61.51976013 43.14617157 46.080821991 63.45313644 44.94116592 + 45.049678802 72.87158203 51.04278183 45.087638855 75.088172913 51.16835403 45.12556839 70.93927765 50.52357101 + 45.22022629 68.89430237 49.70236969 45.65400696 67.084434509 48.094276428 45.9163475 65.31215668 46.57321548 + 47.88578415 74.19862366 45.68796921 49.48979568 71.66277313 40.75046921 48.32959366 71.54983521 44.12978745 + 48.90357208 69.025909424 41.51141739 48.02249527 68.93834686 43.88050461 46.99597549 61.14228439 40.66561508 + 47.1856575 63.081310272 41.96820068 47.15828323 65.17420197 43.66786194 48.16820526 66.96430206 42.36894608 + 46.96460342 66.99380493 45.28326416 46.62229919 72.37445831 48.15771866 47.23651123 70.92344666 46.52450562 + 46.61684036 68.4701004 46.8221817 46.32023239 69.96001434 48.050418854 46.048069 71.18767548 48.97468567 + 47.32910538 69.51947021 45.78437042 -36.61090851 68.93183899 61.40719604 -38.55171204 63.54870605 57.49813843 + -37.752491 66.25969696 59.42247009 -39.075805664 60.99282074 55.66876602 -40.50980377 81.26734924 58.1998024 + -39.20013428 77.639534 59.97235489 -35.70314407 74.89122009 63.42297363 -37.19119263 72.6627655 61.77924347 + -38.36565018 70.19680023 60.10539246 -39.2587204 67.58285522 58.39562225 -39.935009 64.82391357 56.58826828 + -40.44880295 62.28771973 54.80025864 -39.43571091 58.82122803 53.96225739 -40.75853348 60.44974899 53.38938141 + -40.99069214 58.52836227 51.79663467 -39.6814003 56.9288063 52.27762604 -44.61825943 55.6729393 40.45730972 + -43.30223083 54.47862244 42.53468704 -42.020751953 53.63307953 44.60267258 -41.032531738 53.65512466 46.81478882 + -40.34879684 54.28083801 48.81741714 -39.91389465 55.40402985 50.64928055 -41.26076126 57.31959915 50.43855667 + -41.80303192 56.59829712 48.865345 -42.48025894 56.1545105 47.13546371 -43.24362564 55.98125839 45.30644608 + -44.18668747 56.51398468 43.67082214 -45.37937546 57.47047806 41.5694809 -50.74307251 77.61566162 36.66436386 + -50.19344711 81.41172791 38.20074081 -49.39517212 83.55112457 40.43286896 -51.25253677 75.10692596 33.78064346 + -42.94561386 81.51940155 54.79211426 -46.080181122 81.24616241 49.45697784 -48.23374557 82.84880829 44.18305206 + -50.52857208 72.81122589 37.08757782 -49.58505249 69.77218628 39.60463333 -50.078327179 74.31073761 39.39613342 + -48.88766861 71.16168976 42.50457382 -49.62251663 77.3146286 41.26416779; + setAttr ".vt[2158:2323]" -49.10931778 79.98277283 42.50211716 -47.78097916 78.39658356 46.28006363 + -48.53419113 76.23110962 44.52831268 -49.5918808 75.26338196 41.34949875 -48.75650024 74.049659729 43.70467377 + -48.42773438 63.48540497 39.10621643 -49.0015602112 66.013114929 39.32763672 -48.68647385 66.6179657 40.87187958 + -45.15440369 77.34123993 51.63204956 -42.60743713 77.78271484 55.60357666 -46.83358765 76.16590118 48.50162506 + -46.14842606 59.97459793 42.66016769 -47.11053848 60.50812149 40.36669159 -40.36945343 71.21318817 58.0010108948 + -40.82545471 68.53848267 56.82468414 -41.28396988 65.92749786 55.38295364 -41.93842697 62.75252151 53.078639984 + -41.90045166 59.44636536 51.11459732 -42.84975433 59.36421585 49.45272827 -43.76334763 59.1319313 47.50880051 + -44.72531509 58.83686447 45.13566971 -39.82490158 74.054512024 59.068717957 -42.41153717 74.47972107 55.76206589 + -42.36659241 71.54631805 55.42652512 -44.61283493 74.19044495 52.41894913 -46.31210709 73.57359314 49.31979752 + -44.21000671 71.18779755 52.58380127 -45.85317612 70.54081726 49.5418129 -47.71076202 75.24515533 46.55986023 + -47.61649704 73.34370422 46.50484467 -47.36121368 70.45384216 46.31153488 -42.31430054 68.92871094 54.93545532 + -43.72445297 68.29795074 52.62225342 -45.090637207 66.72887421 49.68375778 -46.71159363 66.80872345 46.31362152 + -47.93669128 66.96640778 43.30511093 -47.88479996 63.47670364 40.98044968 -47.052906036 63.32180405 43.27512741 + -45.90188217 62.9487381 45.86588287 -44.68146896 62.77241516 48.39402008 -43.47611237 62.52448273 50.51309204 + -43.89127731 65.022842407 51.12466431 -43.030872345 65.88359833 52.88327026 -42.22960663 66.96015167 54.47763443 + 25.51084137 25.058057785 22.63683128 24.44338417 24.77436256 19.93644142 22.51316452 24.30303955 17.55212212 + 19.69453621 23.70041466 16.13256645 16.55283165 23.074748993 16.33449554 13.9226408 22.56860352 17.91706276 + 12.074487686 22.20155334 20.15709686 10.95433235 21.9535656 22.66238022 10.49971676 21.81483459 25.29557991 + 10.74690723 21.80694389 27.96215248 11.87717533 21.97655296 30.46010208 13.87519932 22.34251595 32.44159698 + 16.47482681 22.87333488 33.63516235 19.35229683 23.49294281 33.74898148 22.047080994 24.10474777 32.65727997 + 24.14917374 24.62965202 30.62625885 25.43053246 24.9866581 28.093946457 25.84973717 25.13020325 25.38092613 + 25.16954041 28.40851974 22.7763176 24.084608078 27.93981552 20.0072803497 22.14208984 27.1321888 17.53555298 + 19.27423096 26.20257378 16.079881668 16.1016674 25.37900352 16.34737396 13.46738148 24.82531929 17.98437119 + 11.62432766 24.48329353 20.2371254 10.55774498 24.20075989 22.70483971 10.17095661 24.0048809052 25.27051544 + 10.46698093 23.94734192 27.86834717 11.59270763 24.12381363 30.31319618 13.56929398 24.57270432 32.26930237 + 16.11624146 25.26420403 33.45016861 18.9039669 26.13016891 33.64598846 21.57249069 27.039310455 32.71955872 + 23.73837471 27.79122734 30.7904129 25.060203552 28.30344391 28.2737484 25.50929451 28.51023865 25.56111526 + -11.0096445084 21.93657112 22.57309341 -12.20303059 22.14751053 20.000089645386 -14.11951828 22.50120544 17.76499176 + -16.77609825 23.028123856 16.26810455 -19.88376045 23.6894455 16.17152023 -22.61919785 24.32005692 17.63269424 + -24.48485947 24.79735947 19.99105263 -25.52531242 25.075435638 22.64086342 -25.87379837 25.13550949 25.29942513 + -25.5227356 24.98124313 27.90125275 -24.3605938 24.62520027 30.38043213 -22.35583496 24.11280823 32.46712112 + -19.63207817 23.50267792 33.69594193 -16.65131187 22.88734627 33.67338181 -13.98123741 22.35873032 32.51207733 + -11.94479465 21.9942627 30.54550362 -10.77801323 21.82836342 28.029466629 -10.52077675 21.8335228 25.29344177 + -10.7047348 24.025535583 22.585783 -11.88787365 24.25466919 20.056005478 -13.77782249 24.63241196 17.84171677 + -16.40425491 25.24454689 16.31618881 -19.51841736 26.11675262 16.16782951 -22.27224922 27.055034637 17.6485424 + -24.13714027 27.82800102 20.045646667 -25.21458054 28.29876709 22.6857338 -25.60848618 28.38967323 25.30534935 + -25.28116226 28.12679863 27.87329865 -24.11895943 27.57738304 30.34946251 -22.044715881 26.80341721 32.41506958 + -19.26651573 25.96929932 33.56524658 -16.30364418 25.18847847 33.48952866 -13.68369198 24.51841164 32.34934998 + -11.70071697 24.042913437 30.43507576 -10.54178619 23.84668159 27.98376656 -10.2399168 23.87975693 25.28508949 + -10.10104275 11.25325012 22.53624535 -11.27762127 11.43086338 19.38345337 -13.52792931 11.70916939 16.51917648 + -16.79429054 11.9931221 14.71612644 -20.51547241 12.22975445 14.70900917 -23.74793625 12.34091854 16.44571304 + -25.96173859 12.33222961 19.18473434 -27.1672554 12.28150749 22.27989578 -27.48409653 12.24268532 25.43240547 + -27.014759064 12.17570114 28.52398682 -25.7383728 12.030374527 31.44413757 -23.53409386 11.78018761 33.9160614 + -20.44545555 11.70923233 35.41596222 -17.049583435 11.72215748 35.45161057 -14.0084762573 11.61041737 34.041404724 + -11.72406673 11.3698616 31.59020042 -10.33114338 11.18352795 28.63888931 -9.81858349 11.14108276 25.61292458 + -10.47244644 14.16517353 22.54387093 -11.66047001 14.3211565 19.56168175 -13.79521084 14.56528282 16.88840866 + -16.87029648 14.86741257 15.17293739 -20.38790512 15.12929726 15.1457653 -23.44350815 15.27285767 16.79853249 + -25.5611496 15.31250477 19.40386581 -26.72878647 15.2894001 22.36067772 -27.042779922 15.24993706 25.37153244 + -26.56329727 15.1751318 28.30250359 -25.28834915 15.01918602 31.029319763 -23.18750954 14.79726601 33.318367 + -20.28066635 14.64031506 34.7277298 -17.031709671 14.52342987 34.73789215 -14.11942005 14.33985615 33.38226318 + -11.92318916 14.15447998 31.12029839 -10.58716488 14.046938896 28.37883377 -10.13119316 14.070711136 25.4950695 + 27.24855232 11.92858696 22.45537186 26.079523087 11.86468697 19.2495842 23.91562271 11.82365894 16.46716881 + 20.76997375 11.81913757 14.69431305 17.078289032 11.77969074 14.59649181 13.77849388 11.65755844 16.26802826 + 11.4656353 11.51464367 19.048940659 10.18820667 11.39390755 22.30153084 9.86314297 11.31040859 25.68025398 + 10.45482254 11.25808907 28.98105431 11.94871616 11.2746954 31.97112083 14.29920387 11.46156883 34.31676865 + 17.29387093 11.70667839 35.52563095 20.45603561 11.88862228 35.38796616; + setAttr ".vt[2324:2489]" 23.31306648 11.94159126 34.030719757 25.5227356 11.94727707 31.7649498 + 26.90989685 11.94932842 28.91931534 27.49202538 11.96208477 25.7556057 26.78978539 14.87586308 22.44171143 + 25.67291069 14.82251358 19.46739769 23.60912132 14.80074596 16.84837341 20.60817146 14.76135731 15.14372921 + 17.101017 14.66319275 15.070038795 13.9921608 14.46768951 16.67612648 11.80252838 14.24636173 19.26783562 + 10.53250027 14.078098297 22.30591393 10.13920116 13.95763779 25.47924042 10.64982605 13.89825916 28.59175873 + 12.073820114 13.9097929 31.38869476 14.31809139 14.048282623 33.59823227 17.18823624 14.31594753 34.83522415 + 20.27259827 14.59217453 34.75407028 23.052497864 14.75054741 33.40875244 25.17259979 14.82846832 31.19705009 + 26.5200367 14.87378502 28.48059464 27.059703827 14.91096783 25.50704575 6.63846636 25.43223953 25.14974213 + 7.099459648 25.49251747 28.56312561 -7.28794956 25.50732613 28.74300003 -6.78769779 25.43900108 25.23819923 + 4.72593546 25.31719398 29.059902191 4.40700245 25.23774338 25.10048294 11.41309166 26.90533829 34.42946243 + 9.87050056 27.093399048 36.52545166 18.46248436 29.49616432 36.64464951 18.43488884 30.32569885 39.47489548 + 24.98087692 31.96503258 33.31913757 26.43312073 33.28258896 35.32598495 27.19302559 32.87720871 22.35189438 + 29.02444458 34.19342804 21.8668251 14.43888855 28.95748138 12.81803513 14.88157177 28.2919445 14.64761543 + 23.50649452 32.10460663 14.91029263 22.61014366 31.023311615 16.23849297 -5.010398388 25.34986115 29.27772903 + -4.64429092 25.25872993 25.18678856 -11.28197861 26.89914513 34.5982399 -9.7958107 27.074474335 36.58981323 + -18.83522224 29.37255478 35.79749298 -19.10512161 30.22821617 38.11280823 -22.69842148 30.76702881 34.32791901 + -23.753479 31.95913887 36.29821396 -14.84792423 28.29878044 14.58004093 -14.12673378 29.01600647 12.32210922 + -18.84035873 29.7251873 14.45612717 -18.9460659 30.78780746 12.12846756 -25.95009422 32.21409988 31.81447983 + -27.71155739 33.68286133 33.21871185 -27.88353729 33.34952927 21.98044205 -30.21757126 35.13803101 21.29339218 + 8.57722664 25.96134567 31.84802818 6.31025553 25.90715408 33.20100784 4.7559967 25.50832748 21.29407501 + 6.98101234 25.66786194 21.83102417 6.29062033 26.21251488 17.47228813 8.40531063 26.2256012 18.71841812 + 9.89890003 27.451828 14.33199883 11.22294235 27.12768364 16.15891838 19.20182419 30.57159424 13.077345848 + 18.92173386 29.63810349 14.66104221 14.83253765 28.12441826 36.081317902 14.035206795 28.61239815 38.67089844 + 21.99283028 30.84397316 35.73213196 22.72522926 31.93569565 38.33811951 26.94922829 32.70767593 29.91564369 + 28.98683739 34.24122238 31.07853508 27.69146347 33.019695282 26.12294769 29.77427101 34.4952774 26.33067322 + 25.47805405 32.22469711 18.91693497 26.87849426 33.3693428 17.96554756 8.67162514 25.3166256 25.20929718 + 9.012403488 25.51924133 22.36999893 10.25279808 25.89904976 19.71082306 12.48936558 26.41095161 17.40498352 + 15.50326633 27.13707352 15.8327589 18.97974396 28.17585754 15.64655876 22.097625732 29.42811012 17.15534592 + 24.34819794 30.58736229 19.69173622 25.68484116 31.21061707 22.70334625 26.093183517 31.34564781 25.83805847 + 25.5011673 31.064201355 28.89863777 23.94944954 30.44871902 31.67629242 21.50252533 29.50283623 33.71191406 + 18.55407333 28.33240128 34.51281357 15.54382801 27.20765305 34.14392853 12.73507404 26.28199768 32.86413193 + 10.45366096 25.62695313 30.77113342 9.12055111 25.32390785 28.081708908 -8.75687313 25.98993301 32.028751373 + -6.60506487 25.9575119 33.41384888 -14.81580734 28.073623657 35.92256927 -14.1946764 28.54084778 38.19721603 + -28.11204147 33.31609344 28.67203522 -30.37692833 35.044494629 29.34653282 -7.26225662 25.69761848 21.76762962 + -5.17611313 25.56403923 21.17164421 -8.77696991 26.2656517 18.65134048 -6.7568717 26.30153847 17.26933861 + -11.35947704 27.1345768 16.12175941 -9.86825562 27.49346542 14.1015358 -28.72197914 33.68455887 25.36997986 + -31.053461075 35.44606018 25.35090065 -25.84622955 32.4839592 18.71374321 -27.7880497 34.132164 17.29325676 + -22.72873878 31.19692612 16.0034980774 -23.78603172 32.53957748 14.034563065 -9.30042934 25.27535057 28.21808624 + -10.62843418 25.58257484 30.87220955 -12.78065395 26.24728203 32.91719437 -15.64238071 27.11735916 34.079029083 + -18.90771484 28.075897217 34.12298584 -22.02532196 29.16130638 32.91558456 -24.4711113 30.29003334 30.75272179 + -25.98014069 31.12977219 28.12462425 -26.4591198 31.51152039 25.34552383 -25.8805294 31.3047657 22.49926186 + -24.4305172 30.56483841 19.69895744 -22.18501091 29.43618011 17.22802925 -19.11441994 28.19641685 15.73007965 + -15.72268009 27.097354889 15.87451363 -12.80049324 26.3321743 17.38350868 -10.63081741 25.82566643 19.63316917 + -9.27038479 25.46906662 22.30601883 -8.82906055 25.2691288 25.26856995 2.092342377 25.1014595 25.02945137 + 2.319556 25.20931244 29.36130905 -0.16619097 25.17032623 29.45214272 -0.16626602 25.064144135 25.014955521 + -2.43842125 25.120224 25.085420609 -2.68252754 25.2372036 29.56320953 3.75346208 26.056114197 35.31631088 + -0.17248321 25.85346031 34.91375351 -4.13418865 26.093154907 35.42322159 2.30114198 25.39651108 20.86707306 + -0.20784853 25.36760902 20.67800522 -2.77642226 25.4495697 20.66192245 3.53073454 26.31617928 15.67114162 + -0.16606402 26.11968231 15.94951344 -3.88114738 26.41985321 15.28067207 17.025074005 17.2157383 34.32010269 + 20.043109894 17.53170776 34.28852463 22.77711487 17.77928734 32.99301529 24.84328461 17.96186066 30.83151245 + 26.15113258 18.077852249 28.19821167 26.66265869 18.12669182 25.36101532 26.3824501 18.10539055 22.47740746 + 25.30100441 18.034809113 19.67176437 23.30408096 17.93848038 17.17058372 20.39669609 17.78528976 15.55068207 + 17.029184341 17.54486084 15.54430199 14.10409927 17.24790764 17.10692596 12.029513359 16.97526169 19.55467033 + 10.78890324 16.7784996 22.39182472 10.34579468 16.664505 25.37189865 10.74643517 16.64321518 28.33057594 + 12.069161415 16.72394753 31.014396667 14.24350834 16.92199135 33.11652756 16.77825356 20.13872147 33.95489502 + 19.7388916 20.567873 33.98561478 22.45357513 20.96153831 32.76478195; + setAttr ".vt[2490:2655]" 24.51582527 21.28908157 30.64948273 25.80370331 21.51662827 28.071998596 + 26.27453423 21.61037064 25.31752396 25.9655571 21.57620811 22.53108215 24.8891964 21.42362595 19.81277657 + 22.93437195 21.16211891 17.41374016 20.10013199 20.80626106 15.91106892 16.86029053 20.38197708 15.99515438 + 14.087932587 19.97268295 17.54113007 12.12496758 19.64933586 19.86538696 10.93458271 19.43299484 22.52368546 + 10.46220398 19.32211685 25.32083702 10.75692463 19.3263855 28.13730049 11.97448826 19.46504211 30.73301506 + 14.074319839 19.74662399 32.76572037 -16.8574028 20.2945137 33.94861984 -19.89972115 20.73877525 33.92740631 + -22.63358879 21.16532326 32.62407684 -24.6273632 21.50103188 30.50130272 -25.83550072 21.72170448 28.00032806396 + -26.27053452 21.82101631 25.31702042 -25.95400238 21.78582191 22.55416489 -24.87417412 21.63187981 19.8268013 + -22.92519951 21.35562134 17.42842293 -20.11957932 20.96882439 15.93029976 -16.91243362 20.51134872 15.9941988 + -14.14649582 20.088937759 17.51472282 -12.16046524 19.78252602 19.84774017 -10.95141125 19.60899544 22.53612709 + -10.47537994 19.5361042 25.34123039 -10.76715374 19.5127449 28.14191628 -11.98836136 19.62639427 30.73411942 + -14.10282898 19.89864349 32.76643753 -16.97904587 17.46677589 34.26187515 -20.10046959 17.74737167 34.23800659 + -22.88502884 18.013687134 32.89749908 -24.91948128 18.24189568 30.72172928 -26.16961861 18.39608002 28.13251305 + -26.64599037 18.46598816 25.34029579 -26.33903885 18.47756004 22.45572472 -25.21589088 18.42949867 19.61679268 + -23.18482018 18.30325317 17.12495995 -20.2693634 18.079820633 15.55540562 -16.92872238 17.75944519 15.60635567 + -14.024629593 17.42056656 17.21824837 -11.97709846 17.16044235 19.70348358 -10.77633381 17.0085525513 22.52835274 + -10.35978985 16.93985558 25.41330528 -10.73079586 16.90094185 28.25027847 -12.0042457581 16.98268127 30.89548111 + -14.15717793 17.18841743 33.016090393 8.44509125 28.051115036 11.28396893 -7.92430019 28.11031723 10.78119755 + -0.01089086 27.22012901 11.47676849 2.91813517 27.43247414 11.077525139 -2.84595394 27.48551941 10.86303329 + -5.14735317 28.13056374 9.44220734 5.61664629 28.087730408 9.75253868 -8.79233551 27.48605728 39.015872955 + 8.46867752 27.52761269 39.31781006 3.50804639 27.57875824 41.52323151 -0.24877664 27.2579937 40.88985825 + -4.056045532 27.57253647 41.39307022 7.6315794 28.66524887 43.42699814 -8.25804424 28.55771065 42.8500824 + 14.36240387 29.75886917 10.36058712 19.7808075 31.49975014 11.095678329 24.65706444 33.22509384 13.32802296 + 28.59648895 34.76844788 16.78084183 31.20020294 35.88362122 21.14064026 32.31148911 36.46802139 26.17443275 + 31.81851768 36.54782486 32.32335281 28.012020111 34.84358597 37.46982193 23.67083359 33.3214798 41.12611008 + 18.43527222 31.63886452 43.38364029 13.12364483 29.2924633 41.81357956 -13.77031898 29.17626572 40.88257217 + -25.062105179 33.36648941 38.76998901 -29.47783089 35.3038063 35.18065643 -19.61256981 31.47672272 41.53809357 + -30.46507454 36.60469055 15.35572052 -32.77790451 37.41369247 20.6875515 -33.6294899 37.73043442 25.33646011 + -33.081306458 37.39134216 30.46219635 -13.40270424 29.9465332 9.06292057 -19.29184341 32.33263779 8.32881832 + -25.2195282 34.2523613 11.38587952 -41.2088623 46.85971069 24.85037994 -40.67013931 46.68369293 20.12561226 + -41.030395508 46.73120499 29.91942787 -39.041728973 45.75192642 15.31752872 -33.58141327 43.47980881 5.97463131 + -28.88066864 41.22428894 2.47606349 -24.27075386 39.46234512 -0.0090908604 36.81031799 41.54047775 19.020313263 + 37.90880966 42.076889038 24.33227348 34.14822769 40.51015472 13.019997597 38.2768631 42.58931351 29.64392471 + 33.90430832 40.020690918 39.17535019 30.39801407 38.5327301 43.10773087 26.24053574 37.17022324 46.61978531 + 22.17470551 35.95743179 48.99178696 -33.82276917 41.080307007 41.53269958 -36.78741837 42.69480133 37.35462189 + -29.4263916 39.1555481 45.7629509 -24.74921608 37.50537491 48.95717239 -12.29423809 33.97545242 52.47341537 + -16.58352089 35.26435852 52.22378159 15.15788364 35.47292709 53.43213272 11.26149559 34.11936951 53.20174789 + 16.038883209 32.14592361 46.87005997 12.023096085 30.30316162 45.38491821 -12.94210529 30.11429596 44.29177094 + -17.33256531 31.88117599 45.17271805 15.27992916 33.50490952 50.10401917 11.41281509 31.92322922 49.26392746 + -12.44560051 31.70588684 48.25781631 -16.66757393 33.2103157 48.57043839 3.45748234 29.69204712 47.19195175 + -0.25821313 29.40997505 46.82429886 -4.025575638 29.66403389 47.027744293 7.35492325 30.5666256 48.15369034 + -8.046243668 30.41414833 47.56652832 3.51314306 32.35943604 52.41559601 -0.21862702 32.15106201 52.28374863 + -3.98659968 32.35108185 52.3227272 7.34534264 33.029972076 52.77310562 -7.97614765 32.94744873 52.42194366 + 6.048799992 51.95838165 70.68109894 9.32838631 51.85353851 70.03061676 18.95741081 52.86090088 67.29441833 + 21.86645889 52.64072418 65.61820984 -5.8235321 51.41221237 70.30760956 -3.30100942 51.50390625 70.73296356 + -0.53548843 51.75719452 71.011230469 2.6994679 51.5147171 70.78483582 12.65538979 52.40636444 69.4706955 + 15.78940773 52.37494659 68.38082123 24.73028946 53.10864639 64.074317932 -11.63922596 46.13513565 65.54425049 + -15.11596203 45.67544174 63.96867752 14.77209663 46.43135452 65.091804504 11.43861675 45.81027985 65.79790497 + 3.61529016 45.089359283 66.77203369 -0.22062545 44.98254395 66.87023163 -3.96203732 45.22333908 66.76293945 + 7.62660742 45.40454102 66.42871094 -7.83391905 45.77234268 66.37100983 32.82785797 38.24399185 36.56538773 + 29.27874756 36.61826324 40.37928772 25.019004822 35.1667366 43.95931244 20.97525597 33.99947739 46.36702728 + 18.53715515 33.59417343 47.91910934 18.69536591 34.89276886 50.19504166 35.096946716 42.13531876 41.51280594 + 31.47471619 40.63885117 45.58691025 27.27165413 39.31673431 49.14104843 22.95145607 38.066001892 51.68976974 + 18.96959877 36.82764053 53.064796448 30.90915871 36.94566345 15.14423561 33.8856163 38.35183334 20.044521332 + 35.23174667 39.14455414 25.24821663 35.35831451 39.47842789 30.34178352 35.05632782 39.71261215 34.04775238 + 36.45161057 41.42859268 35.053405762 -22.57914543 33.77473831 44.0057220459; + setAttr ".vt[2656:2821]" -26.80897522 35.25043869 41.30514908 -31.12861824 37.16625214 37.59574509 + -34.21886826 38.93952179 33.80110931 -20.055055618 33.26708603 45.81018829 -23.938797 35.58533859 46.36547089 + -28.28520584 37.17966843 43.58461761 -32.6342926 39.16273117 39.70046234 -35.51020432 40.74744415 35.76924896 + -20.28723717 34.47663498 48.064025879 -20.56237793 36.35446548 51.087970734 -36.094078064 40.30147171 29.089626312 + -36.21025848 40.43457031 25.046945572 -35.56022644 40.22040558 20.58806229 -34.30783081 39.82030869 16.28951263 + -35.98439407 40.4078598 31.73788643 -38.42110062 43.11600494 29.043087006 -38.69678116 43.44693375 24.87406349 + -38.14403534 43.27105713 20.43618774 -36.82371521 42.66103745 16.08880043 -37.33976746 42.14384079 32.51578522 + -38.90871429 44.38907242 33.72735214 -30.97480011 38.25439835 11.45556164 -26.78367233 36.34770203 8.45641518 + -22.41120338 34.94284821 5.74488592 -33.58609009 39.92512131 13.39899635 -32.16421127 40.45991516 8.84173298 + -28.065324783 38.64150238 5.59765625 -23.73683548 37.10800552 3.086415529 -35.10176086 41.92076874 12.38521957 + -36.90748596 44.70667648 10.97139549 -16.89273262 33.026363373 4.47108173 -12.64220715 31.29468918 5.22185421 + -16.22644997 34.55068588 1.18277252 -12.30674648 33.14600372 1.39719057 -16.0064868927 36.69921494 -2.23663354 + -12.15444946 35.50602722 -2.42106867 28.44653893 39.52414322 4.77932882 34.59520721 42.97840881 8.43761539 + 21.92210197 36.93209457 1.86633539 15.98144627 35.15911484 0.1667981 15.053504944 31.16550255 7.23402977 + 20.7044487 32.89702225 8.53957081 26.19338417 34.8933754 11.21081448 15.74747372 32.98308945 3.83743 + 21.59590721 34.75146484 5.4624424 27.76835251 37.14932632 8.41144753 9.96675587 29.88191795 6.95399523 + -8.3485384 29.9335537 6.055196762 0.16547191 28.65089417 7.31822729 3.020032644 28.8247509 7.11897659 + -2.53049421 28.85118103 6.96831989 -5.22854805 29.32446671 6.34110165 6.18278933 29.28108597 6.74394894 + 10.77009678 31.79740906 3.18399549 -8.51502132 31.97819519 1.89237583 0.33759069 30.55442238 3.076163769 + 3.32458425 30.68497658 3.055803299 -2.45524859 30.74220848 2.82752681 -5.3158741 31.23459053 2.34421945 + 6.75560236 31.1146431 2.96165013 11.13385582 34.084003448 -0.66538906 -8.56548595 34.48586273 -2.22583985 + 0.51065618 33.052165985 -1.32477045 3.62800932 33.12203217 -1.19859302 -2.40657759 33.2693367 -1.57059669 + -5.36193895 33.74718475 -1.90290511 7.12893248 33.46663284 -1.055143476 -19.70388222 34.50658035 3.84445572 + -19.90351105 35.91314316 1.54844594 -19.99230766 38.020793915 -1.53725028 40.087551117 45.13527298 31.89208031 + 37.99003601 43.71445465 36.86463165 41.44291306 47.4858284 34.015476227 42.021274567 48.91680145 35.97151184 + 41.40685654 49.11303711 38.93466949 40.97130585 50.28544235 42.45568848 40.71622086 52.36598969 46.039035797 + 40.59383774 57.65258026 51.27310562 40.54549408 54.98002625 49.16196442 39.47608566 46.48843002 39.3862381 + 39.14497375 48.36268997 44.085567474 38.94481277 50.57556152 47.68098831 38.44718933 53.15284348 51.26273727 + 38.92377853 56.47446442 53.26536942 33.84871292 54.74398041 57.8996582 36.63606644 55.57284546 55.57427216 + 31.33335495 52.9024353 58.97131729 29.16957474 52.061302185 60.20828247 27.019123077 52.12592697 61.87690735 + 31.15353203 50.88277435 57.77074432 33.59241486 51.89627838 56.22133255 28.73655891 50.12166977 59.23855591 + 26.24878693 49.90457535 60.97555542 23.77276611 49.92396545 62.69816589 36.057361603 52.71596909 54.13631821 + 20.55922127 49.35570526 64.29202271 36.10852814 44.45300293 44.0072402954 32.45550156 42.94577408 47.95397568 + 28.16931343 41.72024536 51.60637283 23.51264763 40.46918869 54.42364502 19.21092224 39.079452515 55.92449188 + 15.20248413 37.74567032 56.57497406 11.24308109 36.57752228 56.77587509 7.3513236 35.69095612 56.77056503 + 3.52827978 35.18669128 56.76206589 -0.20093866 35.06350708 56.79489899 -3.92623854 35.24765015 56.78926468 + -7.92318916 35.75310898 56.67451859 -12.30056286 36.61832809 56.34994888 -16.62022972 37.7022171 55.68445969 + 32.89719391 49.43912125 54.98164368 25.65043449 47.60071564 59.71924973 23.4468689 47.43097687 61.13534927 + 35.19760132 50.11785889 52.97517395 36.89955902 50.65611649 51.23098755 21.0062999725 46.67993546 62.11729813 + 36.85606003 48.90486526 49.37801361 36.57414627 46.68725967 46.86187363 33.37402725 45.37520218 50.077728271 + 34.42077255 47.77996826 51.59166718 31.80173111 47.17448807 54.048721313 29.1865387 44.54433441 53.95502472 + 23.78985023 43.18842316 57.20078278 28.098522186 46.20470047 56.64411545 25.21384239 45.60018539 58.40676498 + 30.18077087 47.28104782 55.78106689 30.6268692 48.82633591 56.67786026 28.20304298 48.068462372 58.12519073 + 19.2227993 41.33495331 58.45428467 21.73469543 44.72246933 60.078159332 18.62745857 43.38936615 60.79224777 + 23.45758629 45.81660843 59.86069107 15.23471165 40.043159485 59.25714111 11.31128216 39.035438538 59.73493958 + 7.41491175 38.28398514 59.9743309 3.53378296 37.83951187 60.10031891 -0.22309691 37.71531296 60.1450882 + -3.93094516 37.85773468 60.059700012 -7.90897417 38.38164902 59.88553619 -12.24635887 39.27966309 59.5031395 + -16.47382736 40.3352356 58.77268982 15.10243988 42.26926804 61.54414368 11.3981123 41.39763641 62.13529205 + 7.54795551 40.73479462 62.510849 3.57111192 40.31153107 62.70730972 -0.24278411 40.16282272 62.73184204 + -3.95131087 40.30399704 62.60601425 -7.88156366 40.8783226 62.40961838 -12.062337875 41.80758667 62.016719818 + -16.07718277 42.87541199 61.33461761 14.93409824 44.42961884 63.49049759 11.4315958 43.66571808 64.14060974 + 7.62994242 43.12240219 64.65320587 3.61912036 42.79971313 64.97467041 -0.22807065 42.67440796 65.03338623 + -3.99060845 42.84740448 64.89413452 -7.88974094 43.40871429 64.59576416 -11.72393131 44.1907692 64.11360168 + 18.11499023 45.45824432 62.81059265 17.62042999 47.41640472 64.52919769 9.023919106 49.72581482 68.94521332 + 6.36314297 49.5344696 69.31404114 3.037544489 49.18476868 69.47563934 12.20445728 49.93520355 68.23659515 + 15.26958942 50.14724731 67.31951141 17.96761513 50.19192505 66.18869019; + setAttr ".vt[2822:2987]" 16.886343 48.59088516 65.68828583 7.65579033 47.83398438 68.0701828 + 3.48643303 47.19266891 68.21504974 11.61733437 47.87981033 67.15499878 14.76018906 48.22260666 66.32963562 + -0.30505157 49.050746918 69.53331757 -0.22508463 47.041320801 68.29408264 -3.3505075 49.13646317 69.43109894 + -3.77011776 47.33215714 68.24964905 -8.78149414 50.0035400391 68.85094452 -11.96847057 49.83948898 67.84503174 + -15.090192795 50.58806992 67.10909271 -18.38675308 51.80113983 66.33039093 -22.81964111 52.36523056 64.46202087 + -7.56647635 48.17133713 68.038764954 -5.57361507 49.4073143 69.24653625 -11.75665665 48.29182053 66.91803741 + -15.44988918 48.53358078 65.7388916 -19.26828384 49.17838669 64.43939972 -23.36077881 49.81572723 62.61885834 + -32.30662155 53.76804352 58.45623398 -27.45561981 52.95456696 61.94458008 -41.23161697 47.42318344 33.070659637 + -42.31253433 49.1944313 33.86198807 -43.14190674 50.88752365 35.41374207 -43.44572449 51.86706924 36.68253708 + -42.54053497 51.013317108 38.26889038 -34.23577881 52.062156677 55.20111084 -35.48924637 50.45322418 52.29113388 + -36.86425018 49.5036087 49.30744553 -38.32706833 48.93802643 45.99435043 -40.067661285 49.31823349 42.68606949 + -41.31132507 50.030784607 40.46445084 -39.85356522 46.028167725 35.42457581 -41.67300034 49.32140732 37.68024826 + -40.79138565 47.68942642 36.68392944 -31.37019348 49.79742813 56.43645096 -30.32384872 51.26140594 58.5847435 + -32.96746445 47.75244522 52.78320694 -35.58816147 47.92342758 49.46032333 -36.7021637 46.84232712 46.084354401 + -39.8498764 48.11174774 41.095298767 -37.78899384 44.44864655 38.87433243 -38.79293442 46.21838379 40.065490723 + -34.85292816 42.9305687 43.094291687 -27.32945824 50.54624939 60.48163605 -30.51977539 41.61506653 48.27091217 + -25.16550255 39.75297165 51.89591599 -20.72930336 38.65993118 54.27344513 -20.59507179 41.19620895 57.30755615 + -20.25469589 43.75731277 59.93141174 -19.73398209 46.44417572 62.35155487 -24.8868885 42.15912247 55.11064911 + -24.46173477 44.68281174 57.96197891 -23.90091705 47.25779724 60.48358917 -29.31419373 43.58901596 52.39613342 + -28.66913605 45.9464035 55.56044769 -27.85454369 48.29859543 58.37190247 -36.041526794 44.82824707 44.14458084 + -33.38575363 43.85393524 47.42000198 -33.13689804 45.28674698 49.72302246 38.14108276 44.30049896 14.43955803 + 39.11612701 46.78798294 11.32984066 20.61135483 49.59025574 -12.45621967 19.66102028 52.19842529 -14.51707268 + 23.37085724 48.24128723 -9.90617371 25.44157219 47.7410965 -8.099031448 28.37322235 47.92020798 -5.88560677 + 31.46867371 48.78508377 -3.74644208 33.73920441 48.65159225 -1.13832569 16.76691437 52.92609024 -16.29471207 + 35.50849152 48.29666901 1.66568053 37.45426178 47.63464355 5.94320583 28.25016785 41.82714081 0.93063188 + 33.93340302 44.80582047 4.099555492 12.94196892 54.44822693 -18.43786049 9.23371601 54.73813248 -19.4814167 + 5.75041103 55.60232544 -20.43901825 2.32342386 55.02822876 -20.4414196 -3.27081585 54.61045074 -20.11015129 + -0.56632257 54.80811691 -20.36851311 5.46269894 51.21706772 -18.27248955 2.073419094 51.28924942 -18.56440163 + -3.94405365 51.48200226 -18.45464516 -1.036043882 51.3521347 -18.60233688 12.68776608 50.42732239 -16.33003235 + 8.99665833 50.86227798 -17.52008438 16.51798248 49.81754303 -14.58223438 5.079919338 47.2760849 -15.88044071 + 1.69913769 47.46549606 -16.24605942 -4.62357473 48.2266922 -16.43854523 -1.5146811 47.76154327 -16.41728783 + 12.34261036 46.82153702 -14.045791626 8.62222195 47.061912537 -15.17165184 16.15954971 46.62013245 -12.51257133 + 19.865839 46.41411591 -10.57161236 -41.31938553 50.93563461 11.42182541 -40.58966446 48.53128815 13.94446945 + -41.24914932 52.34093857 9.19445515 -33.65353394 50.040401459 -1.54286659 -35.34496307 49.23487473 1.526245 + -37.11408615 48.9426918 4.72956705 -39.17231369 49.67949295 7.99572945 -38.40615082 47.37574005 9.66416264 + -36.0033760071 46.63101959 5.60471249 -25.042186737 49.96998596 -9.70452976 -28.4227314 50.058467865 -7.19927406 + -31.57940102 50.17830276 -4.16838217 -19.51850891 45.95824051 -10.15076256 -21.92232132 47.33994293 -9.79391289 + -17.5161705 44.78953934 -10.23657036 -14.89931202 44.25593185 -10.94887066 -12.27208328 44.5041008 -12.12527561 + -10.33142757 45.058063507 -13.1265192 -7.97040033 45.091270447 -13.67729187 -31.25232315 47.70317078 -2.34697461 + -33.93025208 46.93138123 1.85098827 -26.71152115 47.91564941 -6.92742825 -32.3600235 44.80003357 2.15237784 + -28.8961544 44.12519073 -1.26711297 -24.075361252 41.99727249 -3.38444138 -26.35608673 45.45055771 -5.079592228 + -23.012691498 44.48578644 -6.75473356 -19.12797165 43.36200333 -8.18390656 -15.40184879 42.10594177 -8.83025169 + -11.68348026 42.14120102 -10.27390099 -8.34771442 41.23920822 -10.32008553 -19.78752136 40.54013062 -4.84478712 + -15.79325581 39.332901 -5.70828724 -4.9976902 44.52135086 -13.76955891 -5.24439383 40.60667801 -10.29779243 + 4.64778852 43.48204422 -13.032212257 1.29162633 43.64982986 -13.40885448 -1.91103852 43.9956398 -13.64675617 + 11.99182892 43.40952301 -11.39512157 8.21318913 43.38826752 -12.37249279 15.92317486 43.67315292 -10.1606884 + 19.11277771 44.18568039 -9.074068069 4.27487135 39.72176361 -9.54550552 0.95458102 39.83015442 -9.89711189 + -2.19595861 40.13430405 -10.14757061 11.70124054 40.095344543 -8.24782753 7.83407784 39.78988266 -9.012280464 + 16.1689949 40.84856415 -7.194139 21.66796112 42.70814896 -5.98496342 -12.022603035 38.45462036 -6.28776503 + 21.77616692 39.46730804 -1.96882057 15.97601986 37.79624557 -3.64178872 11.36289787 36.87786484 -4.57757139 + -8.54121876 37.58757401 -6.35852718 0.71644163 36.20405579 -5.77033663 3.95268321 36.18826675 -5.51296806 + -2.33535457 36.44549179 -6.00023651123 -5.35005045 36.89673615 -6.20304632 7.4655118 36.39948654 -5.14918041 + 27.66307259 44.11406326 -2.65620971 23.62438202 46.075153351 -7.99242163 27.59920883 46.12683105 -4.94294882 + 30.55903053 47.09916687 -3.11893153 32.51257706 46.52143478 -0.27337384 -7.023695469 57.45124435 72.32602692 + -7.29455233 60.30360031 73.57766724 -7.67162561 62.72700119 74.45117188 -7.56671381 64.89102173 74.9808197 + -6.52382088 66.49646759 75.43275452 -4.91701794 67.36509705 75.82511902; + setAttr ".vt[2988:3153]" -2.74917078 67.46891022 76.018455505 -0.99039149 66.69203949 75.94269562 + 0.80339479 65.20246887 75.55579376 3.1765461 63.65749741 74.93017578 6.11260128 63.088993073 74.39202118 + 8.76030064 64.042228699 74.18035126 10.76274586 65.41387939 74.018356323 12.48818016 65.95891571 73.59350586 + 14.49755859 65.4158783 72.89528656 16.77441025 64.16399384 71.83768463 19.18450546 64.14548492 70.80220032 + 21.56694031 65.60982513 69.97177124 23.58320236 65.84550476 69.14091492 24.95248985 64.80671692 68.03742981 + 25.51137161 62.86100388 67.1772995 25.66366386 60.68645859 66.25058746 25.90919113 58.37012863 65.1905899 + 26.45763779 56.50405121 64.19416809 27.35687256 55.19451523 63.14025116 28.44922638 54.50722885 62.17489624 + 29.63920975 54.50120163 61.33892059 30.77803802 54.93244934 60.55882645 31.72642708 56.025154114 60.073154449 + 32.27865219 57.85642624 59.93853378 32.52868652 59.79883575 60.16005707 32.66386795 61.65878296 60.77838135 + 32.6233139 63.2796402 61.50739288 32.50860596 65.041770935 62.17660141 32.62134552 67.15005493 62.66864014 + 33.24565887 68.93696594 62.76192856 34.29071045 70.60913086 62.3367691 35.84440613 71.90658569 61.29255295 + 37.37108994 72.47729492 59.78408432 38.70907211 72.34655762 58.28221893 39.94403839 71.54366302 56.62417984 + 40.79896164 70.099227905 55.18000793 41.32611847 68.3657074 54.14011765 41.60979843 66.74197388 53.27599335 + 41.75244141 65.074829102 52.34620667 41.77223969 63.083480835 51.14440155 41.73914337 61.19797897 49.8669281 + 41.69791794 59.16518402 48.14450836 41.77473068 57.326828 46.36423111 42.02841568 55.42479324 44.15240479 + 42.34963608 53.65275574 41.17660904 42.82437515 52.46936798 38.11947632 43.15113449 51.78342056 34.83354187 + 42.85615921 50.51646423 31.49497986 41.69702148 48.13546753 29.0011634827 40.60178375 46.25011444 26.47801018 + 40.050895691 45.61671066 23.27895164 40.23413467 46.41645432 19.40445709 41.087165833 48.26354599 16.32012558 + 42.12506104 50.96857452 13.8755188 43.087528229 53.77295685 12.21933365 43.89954758 56.161026 11.12169075 + 44.67243958 58.65847397 10.039341927 45.209198 61.00094985962 8.95514107 45.49850464 63.054267883 7.95486975 + 45.59836578 65.24525452 6.78304005 45.45494843 67.4777298 5.31490469 44.9906044 69.2048645 3.58436131 + 44.16314697 69.97503662 1.92839026 43.20045471 69.88885498 0.45820296 42.083580017 69.11712646 -0.95153457 + 41.0066642761 67.27735901 -2.13808036 40.0080337524 65.038444519 -2.93503332 39.091468811 62.90312958 -3.32334375 + 38.13327408 61.052574158 -3.43577123 37.036952972 58.79983139 -3.54538536 35.92882919 56.42606354 -3.73431563 + 34.64967728 54.33441925 -3.91678858 32.31005096 52.095737457 -4.5927968 29.24279594 50.51194382 -6.305439 + 26.49910545 50.14639282 -8.36465549 24.47894669 50.83090591 -10.26589966 22.84503746 52.41563797 -12.15851402 + 21.8616848 54.81301117 -14.041015625 21.55711365 57.55771637 -15.6021862 21.7115078 60.0091590881 -16.54354477 + 22.053487778 62.15952301 -17.17928505 22.43998909 64.22735596 -17.65657043 22.55712509 66.1047287 -18.090478897 + 22.15706444 67.89315033 -18.64051437 20.86645126 69.59380341 -19.64049911 18.95041656 70.82418823 -20.6044693 + 16.76973152 71.24534607 -21.45169067 14.6621027 70.6660614 -22.000078201294 13.08394146 69.27268219 -22.18494606 + 12.10296249 67.56803131 -22.043315887 11.41596317 65.71710968 -21.91556358 10.51706123 63.80319214 -21.83136559 + 9.10908413 62.26214981 -21.66884041 7.090082169 61.62088013 -21.63728905 5.27932453 62.26292038 -22.054676056 + 4.008289814 63.9851799 -22.75312424 2.98487234 65.94726563 -23.36844635 1.6369257 67.51350403 -23.80239105 + -0.33087537 67.89459229 -23.99647331 -2.43380356 66.92132568 -23.73209763 -4.16518974 64.77210236 -23.092351913 + -5.015520096 62.19798279 -22.24958229 -5.5420661 59.53474045 -21.27543259 -5.92245388 57.25459671 -20.424963 + -6.41682625 54.92714691 -19.41071892 -7.23128176 52.3379364 -17.94647598 -8.40201283 50.030525208 -16.33182526 + -9.98888493 48.34411621 -15.0060119629 -12.067231178 47.25550461 -13.66220379 -14.31147194 46.8169632 -12.55344582 + -16.56602097 47.20957947 -11.89174557 -18.48972702 48.51272583 -11.84375191 -19.81274033 50.33642578 -12.3936758 + -20.58267784 52.64890671 -13.40942001 -20.90626144 55.062198639 -14.60078621 -21.075334549 57.34883881 -15.6477623 + -21.15254402 59.63897324 -16.63928986 -21.24483871 61.83717346 -17.39642334 -21.57258606 64.14411163 -17.9664402 + -22.30895615 66.87490082 -18.33259773 -23.55362129 69.60734558 -18.29328918 -25.24077606 71.67549896 -17.72057915 + -27.16855621 72.74240875 -16.67058182 -29.1437149 73.15820313 -15.22566032 -30.92515182 72.94340515 -13.71554279 + -32.59537888 71.94284821 -12.22562695 -34.0017356873 70.3318634 -10.81452751 -34.95275116 68.39622498 -9.56491947 + -35.59446716 66.333992 -8.35054016 -36.089855194 63.85668945 -6.78265667 -36.22800446 61.41544342 -5.40366364 + -36.052997589 58.96644592 -4.03621006 -35.71506119 56.32495499 -2.73910356 -35.53327942 53.78813934 -1.10668218 + -36.13089371 51.98636627 1.12540329 -37.38521576 51.54544449 3.61702275 -39.018745422 52.52935791 5.54128265 + -40.53281403 54.47893143 6.15066576 -41.79671097 57.16246796 5.60898829 -42.89105225 59.84873581 4.77605534 + -43.90612793 62.21353149 4.64819384 -44.97149277 64.073890686 5.59307528 -45.65497589 64.54333496 6.68045998 + -46.10948563 64.48294067 8.12505341 -46.44658661 63.12840271 10.12417793 -46.19242859 60.60984421 11.95634079 + -45.29255676 57.40371323 13.77095699 -44.12577438 54.043128967 15.98840904 -43.0066184998 50.95058441 20.067468643 + -42.77812576 50.11890793 25.033538818 -43.78891754 51.80292511 29.793993 -44.84072876 54.34593201 33.56849289 + -44.48605347 55.054336548 36.48779297 -43.14308548 54.18642044 38.89809799 -41.96146774 52.76197433 40.90455627 + -40.57757568 51.703228 43.35164642 -39.29358292 51.44090271 46.11586761 -38.26822281 52.22321701 48.61078262 + -37.67756271 53.45399094 50.85405731 -37.26206207 55.16924667 52.8032341 -36.98937607 57.073471069 54.58519745 + -36.72417831 59.15122223 56.41385269 -36.2216568 61.46464157 58.20506668 -35.35050964 64.26366425 59.89358902 + -34.2423172 67.021934509 61.67825317 -32.95121384 69.32404327 63.72577667; + setAttr ".vt[3154:3319]" -31.19979668 71.13905334 65.82813263 -28.43066406 72.086776733 68.011566162 + -24.5015316 71.82550812 70.21942139 -20.76026344 69.98326111 71.58350372 -18.50781441 67.6263504 71.87293243 + -17.17201233 65.045043945 71.71279144 -16.6010685 62.52321243 71.27497101 -16.5208149 60.040958405 70.50639343 + -16.33641815 57.2819252 69.30747986 -15.64461231 54.54346466 68.40995026 -14.13155174 52.37072372 68.41545868 + -12.12962532 51.3264389 68.77716064 -10.010720253 51.35472107 69.33800507 -8.19282818 52.42653656 70.22106171 + -7.29324532 54.50462341 71.22376251 -12.18131447 51.70083618 69.37883759 -10.29214478 51.68409729 69.87693787 + -8.65173531 52.62073135 70.65723419 -7.77081251 54.50495148 71.53404236 -7.49437952 57.38805389 72.47054291 + -7.77643108 60.29583359 73.5176239 -8.17765141 62.78921127 74.30316925 -8.03914547 65.056770325 74.98009491 + -6.91560745 66.86422729 75.57939911 -5.087337494 67.84467316 76.0068817139 -2.69762564 67.99092102 76.22834015 + -0.77053201 67.21141052 76.18331909 0.99668837 65.69936371 75.81624603 3.2566061 64.095092773 75.19785309 + 6.1173501 63.54372406 74.57837677 8.7144289 64.52330017 74.35551453 10.65877628 65.87184906 74.22882843 + 12.51222992 66.43506622 73.75699615 14.59758663 65.91992188 73.027580261 16.82497025 64.73403931 71.85813904 + 19.11082077 64.75778961 70.84111023 21.54442787 66.11592865 70.15904999 23.77268028 66.32089233 69.23757935 + 25.32930565 65.17433929 67.97173309 25.99270821 63.049438477 66.91490173 26.19341278 60.84500885 66.02256012 + 26.42040253 58.63046646 65.02381897 26.9622345 56.84724045 64.078826904 27.82181931 55.59611893 63.22663498 + 28.82860184 54.91023636 62.45782471 29.90465736 54.87378311 61.82680511 30.87657166 55.33924484 61.04598999 + 31.61174965 56.32328796 60.53124619 32.080131531 57.92970276 60.38177109 32.28214645 59.69027328 60.5999527 + 32.37462997 61.48007202 61.18381882 32.27235031 63.12044907 61.86318588 32.098999023 64.92915344 62.53551102 + 32.27593994 67.093139648 63.093929291 32.95734787 69.052810669 63.23536301 34.15129852 70.98203278 62.7907753 + 35.85116577 72.43820953 61.67286301 37.42984009 73.017913818 60.096767426 38.86208344 72.8761673 58.43618393 + 40.28343582 71.9491272 56.52647018 41.24135971 70.35662079 54.89429474 41.68852234 68.55091095 53.74522781 + 41.95613861 66.90901947 52.83197021 42.080379486 65.25028229 51.8702774 42.10674286 63.24875259 50.6208992 + 42.13576126 61.42724609 49.31108475 42.16738129 59.54533768 47.68999863 42.21204376 57.77993774 45.91009903 + 42.31959915 55.93947601 43.68077087 42.55202103 54.2040596 40.82369995 43.051544189 53.082199097 37.83657455 + 43.44478989 52.38034058 34.54207993 43.31214905 51.0058174133 31.10418129 41.98067856 48.62377167 28.47545433 + 40.84092331 46.88650894 26.085634232 40.36980057 46.45040894 23.31705856 40.61414337 47.21549606 19.77597809 + 41.37980652 48.71724319 16.8827877 42.28051376 51.02444458 14.60794163 43.31032944 53.86548996 12.81978321 + 44.1675148 56.25013733 11.66764927 44.97073746 58.74808884 10.56136322 45.5123291 61.12325287 9.46881199 + 45.80850983 63.20939255 8.42776012 45.94737244 65.44342041 7.22993374 45.78790665 67.7609787 5.71581268 + 45.3061676 69.58419037 3.77145123 44.37945938 70.47343445 1.84888351 43.27661133 70.38709259 0.21974353 + 42.073040009 69.44890594 -1.39298105 40.7709198 67.47505188 -2.64423132 39.71138 65.26663208 -3.41728282 + 38.79070663 63.16697693 -3.82817245 37.86325836 61.34012222 -3.97817707 36.81837082 59.14904022 -4.10946321 + 35.75666046 56.76773834 -4.26476431 34.48780441 54.68408203 -4.39552927 32.24432373 52.5590477 -5.015088558 + 29.28348541 51.049194336 -6.59745502 26.72361374 50.70788574 -8.49412727 24.88133621 51.34274292 -10.31147575 + 23.30740166 52.81629944 -12.11757851 22.33656693 55.052043915 -13.87327099 22.010196686 57.59499359 -15.29808044 + 22.1782589 59.90766144 -16.17926216 22.48568535 62.041923523 -16.79246521 22.88575554 64.14942169 -17.35761261 + 23.0029182434 66.091949463 -17.91560555 22.59866333 68.032501221 -18.63817024 21.24651718 69.89906311 -19.65769196 + 19.18175125 71.25958252 -20.65101242 16.78497505 71.70057678 -21.57204056 14.47982979 71.039611816 -22.15874863 + 12.7405901 69.57740021 -22.38115311 11.70468426 67.78650665 -22.13544655 11.028226852 65.97344208 -21.95429039 + 10.2463026 64.14865875 -21.94594574 8.95161629 62.69700241 -21.83587074 7.17482471 62.053783417 -21.77200699 + 5.59430885 62.54944992 -22.082233429 4.36628103 64.17384338 -22.79135323 3.32095337 66.17018127 -23.42101288 + 1.84128642 67.87847137 -23.93922997 -0.38289279 68.35193634 -24.11693382 -2.78409052 67.30552673 -23.81920815 + -4.67701387 65.036781311 -23.16315842 -5.60400534 62.38801193 -22.22080803 -6.094167709 59.70750809 -21.2413578 + -6.44391012 57.4194603 -20.33220863 -6.89539862 55.13943863 -19.34294319 -7.63965988 52.67136383 -17.97703362 + -8.77270126 50.43385696 -16.35543251 -10.32705402 48.75696945 -15.060258865 -12.31625557 47.7093277 -13.80497837 + -14.35341167 47.23200989 -12.776968 -16.44213676 47.561409 -12.13266659 -18.22323608 48.76753998 -12.080527306 + -19.40967178 50.48019028 -12.58053875 -20.18183136 52.73204803 -13.60665035 -20.52092743 55.10614777 -14.84318542 + -20.65667915 57.4123764 -15.85216141 -20.76501656 59.69947815 -16.84733009 -20.88863373 61.88103867 -17.63058853 + -21.22513008 64.21375275 -18.20689583 -22.0086479187 67.085540771 -18.58594131 -23.31869507 69.90911102 -18.54268265 + -25.067728043 72.08795929 -17.94447327 -27.089162827 73.2665329 -16.7255764 -29.16189384 73.66203308 -15.20527649 + -31.041471481 73.39757538 -13.71345425 -32.70557404 72.38968658 -12.14228058 -34.23531723 70.70185089 -10.62667847 + -35.22815704 68.7673645 -9.24680233 -35.86024475 66.68225861 -7.9722724 -36.4178772 64.14451599 -6.48941946 + -36.60970306 61.62975311 -5.057449341 -36.34992599 59.16417313 -3.6929915 -35.94018555 56.54642868 -2.42235899 + -35.72852325 54.02274704 -0.80012059 -36.25395584 52.36981964 1.25180817 -37.42142868 51.95194244 3.51584387 + -38.96244431 52.79243851 5.2245965 -40.28970718 54.55841827 5.65744638 -41.49677658 57.13729858 5.023055553 + -42.55353546 59.81357956 4.19610548 -43.68703079 62.38824463 4.099985123; + setAttr ".vt[3320:3485]" -44.94982147 64.45017242 5.3056078 -45.62467194 65.025131226 6.58926821 + -46.26231003 64.87207794 8.15939426 -46.68260574 63.43556213 10.4075079 -46.41717911 60.8216362 12.37130833 + -45.5187912 57.64295578 14.28075504 -44.3239212 54.43851471 16.58418655 -43.33285904 51.4799118 20.36291122 + -43.15859985 50.64863205 25.10458946 -44.12384033 52.41637421 29.70054245 -45.21631241 54.98297119 33.48494339 + -44.78660965 55.65180206 36.6312027 -43.25218582 54.66864777 39.11951828 -42.012989044 53.20274353 41.15011215 + -40.65028 52.16109467 43.55641174 -39.41165543 51.9376297 46.18033218 -38.45657349 52.6531105 48.5455513 + -37.90417862 53.85622787 50.65304184 -37.50987244 55.45466614 52.553936 -37.24894714 57.36942291 54.32997131 + -36.98627853 59.55365372 56.077972412 -36.47596359 61.99054718 57.77587509 -35.60109711 64.73232269 59.57023621 + -34.46570206 67.48937225 61.44942474 -33.14451218 69.79166412 63.49095535 -31.38034248 71.61517334 65.67010498 + -28.49644661 72.59269714 67.90773773 -24.47315598 72.34407806 70.19975281 -20.63730812 70.46048737 71.72744751 + -18.14066315 67.86808014 72.16408539 -16.72649384 65.14865875 72.037345886 -16.13925362 62.54156494 71.55617523 + -16.0072975159 60.060241699 70.73703766 -15.82894325 57.31644058 69.63790131 -15.20271111 54.68225098 68.87309265 + -13.96833229 52.68005753 68.93715668 82.53973389 53.52069092 35.095596313 82.54740143 53.86744308 33.93424988 + 79.12980652 54.35482407 34.995121 79.58312225 53.78496933 35.79949188 82.23027802 51.99528122 33.57499313 + 82.29342651 51.79157257 34.74983978 79.33618927 51.9833107 35.52561188 78.73621368 51.96121597 34.68388367 + 85.58630371 52.93668747 20.83455658 83.97380066 53.14392853 20.28461647 83.74375916 54.69615173 31.24814987 + 85.099098206 54.40896606 30.73130226 87.046577454 54.79394913 24.012939453 85.32299042 55.9843483 24.14900589 + 87.032104492 55.14173126 28.23924637 85.27804565 56.24710464 28.17622948 85.26418304 52.12069702 30.0074939728 + 83.13967896 51.98714828 30.73125076 83.21769714 51.43364716 28.75658607 85.33473969 51.64445877 28.43876839 + 83.15297699 51.043815613 24.96811485 85.23939514 51.21415329 24.65049171 83.6295166 51.36846924 20.36201668 + 85.23487091 51.26543045 21.08175087 79.9069519 53.34399796 36.25974274 79.7660141 52.10057068 36.033126831 + 82.19274902 51.87398911 35.53675461 82.39464569 53.14990234 35.81922913 80.42313385 51.18802643 33.81721497 + 80.70613861 51.15353394 35.01625061 80.94303894 51.64015579 35.97864914 81.18942261 53.51313782 36.41675568 + 81.16163635 54.3949852 35.6255455 81.096672058 55.03729248 34.49039459 85.3874588 53.34785461 30.82049751 + 83.87924957 53.26979065 31.50559998 82.66703796 52.89837646 33.73328781 82.65172577 52.6335907 34.88690567 + 82.37926483 52.47038651 35.77975082 81.10945892 52.47991943 36.49628067 79.79838562 52.70176697 36.25216293 + 79.22129059 52.90571213 35.76363754 78.56450653 53.19469452 35.062995911 80.51190186 53.76453781 20.030443192 + 81.7924118 57.49822235 24.31854057 81.83039093 57.67127609 28.32324791 81.23212433 56.31134796 31.77384186 + 79.91415405 51.22579193 31.1353054 79.8030014 50.76870728 29.37423325 79.64784241 50.33903885 25.41430473 + 80.090232849 51.80386353 19.94841385 76.93604279 51.69550705 32.43105698 77.78607941 56.29518509 32.75782013 + 76.67088318 54.046302795 33.52241898 82.32829285 52.209095 32.29562759 82.9016571 53.14958954 32.5317421 + 82.7473526 54.19466782 32.62815857 81.098114014 55.63947678 33.20804596 78.58460236 55.085319519 34.035491943 + 77.77462006 53.5566597 34.28148651 78.044670105 51.9278183 33.70205307 80.13844299 51.37622452 32.57058334 + 78.50550079 58.94272995 28.72349167 85.9651413 54.90301132 29.83998489 84.52959442 55.71957016 29.8531208 + 81.51973724 57.073741913 30.14710045 78.23994446 57.98758698 30.74336243 78.37036133 58.80872345 24.45462418 + 78.00087738037 57.79111481 22.60729408 77.4547348 56.32769012 21.13339233 76.83333588 54.46152115 20.14434814 + 78.5522995 59.22942352 26.56392097 76.28113556 52.37133789 20.073978424 81.94861603 57.85300446 26.31933403 + 85.5959549 56.31400299 26.16402817 87.46690369 55.038654327 26.1373558 81.42572021 56.6524353 22.53454781 + 84.72987366 55.35560226 22.45359039 86.17269135 54.42337799 22.28547668 80.96897888 55.4134407 21.067968369 + 84.19684601 54.49132156 21.16882896 85.36220551 54.068500519 21.29286003 75.93293762 50.79672241 21.54362488 + 75.78517151 50.096118927 23.65013123 75.80073547 49.82714844 25.87893295 75.9732132 49.98607254 28.13382721 + 76.34664154 50.62407303 30.29307175 74.14533997 52.76414871 20.18453407 73.67330933 51.027168274 21.61559677 + 73.46826935 50.1866951 23.81018448 73.46595001 49.8970108 26.1490612 73.66317749 50.14738846 28.48457146 + 74.059257507 50.9877739 30.6295681 74.44143677 52.52500916 32.35643387 74.82103729 54.7733345 33.058544159 + 75.64257813 56.9587326 32.41360474 76.32067108 58.65058517 30.88370323 76.67983246 59.70936203 28.90326881 + 76.73548126 60.0088195801 26.69144821 76.53324127 59.54147339 24.53811455 76.13156891 58.44882584 22.6679821 + 75.52097321 56.89548111 21.19073296 74.81851196 54.94134903 20.22776222 85.3955307 51.45133972 26.52647591 + 83.22109222 51.22439957 26.83888245 79.71356201 50.4342041 27.42172241 84.42377472 50.83688736 21.8994236 + 83.16092682 50.79547882 21.73914909 79.80219269 50.73196411 21.54551697 79.65385437 50.42607498 23.44124794 + 83.078216553 50.86417007 23.25705147 84.84413147 50.958992 23.010684967 87.45623779 51.62574005 24.19687843 + 87.79602051 51.89328766 26.21151352 86.55802917 51.35557938 22.4090538 88.062782288 53.097934723 23.9600029 + 87.040718079 52.92980957 22.061275482 88.44920349 53.28294373 26.11042595 88.043922424 53.47671509 28.30761719 + 87.49021149 52.06671524 28.28527451 86.84820557 52.35915375 29.53977203 86.88074493 53.5524292 29.90826797 + 81.99742889 54.65454483 34.20657349 81.9916687 54.13085938 35.38382721 81.94115448 53.36997223 36.17293167 + 81.82695007 52.43862152 36.26011658 81.68040466 51.67440796 35.78038406 81.57332611 51.2866478 34.81920242 + 81.38762665 51.42689514 33.59968567 81.26494598 51.66962814 32.30794525; + setAttr ".vt[3486:3651]" 81.34333038 51.49214172 30.79950333 81.41478729 51.095378876 29.024734497 + 81.4057312 50.85951614 27.11769295 81.36206055 50.73918533 25.19853401 81.36560059 50.68512344 23.35394096 + 81.53686523 50.77258301 21.6082592 81.88653564 51.57249069 20.042219162 82.26622009 53.44447708 20.078119278 + 82.63718414 54.95756149 21.096124649 83.10164642 56.044715881 22.51283264 83.52833557 56.80778885 24.25016975 + 83.70483398 57.15563965 26.22601128 83.50373077 57.014900208 28.20140266 83.012634277 56.44439316 29.94116402 + 82.49237823 55.66622543 31.45275688 82.098274231 55.088104248 32.87801743 80.28400421 54.27043915 35.74639893 + 80.075019836 54.93677139 34.74191284 79.8586731 55.67105484 33.58338165 79.74345398 56.57150269 32.18752289 + 79.9489212 57.55659866 30.45043945 80.18756866 58.29495621 28.51856995 80.25746155 58.53227615 26.4372921 + 80.092102051 58.15104294 24.38170242 79.73459625 57.22034454 22.56038284 79.24710846 55.85746765 21.081760406 + 78.70905304 54.077129364 20.061597824 78.23218536 52.058444977 19.98357391 77.94910431 50.70954895 21.52009964 + 77.82810211 50.18251419 23.5291996 77.83321381 49.98753357 25.63942909 77.94992828 50.096260071 27.77744484 + 78.16072083 50.57368088 29.85756111 78.48808289 51.15238571 31.75086403 79.0043869019 51.3513298 33.069618225 + 79.47412872 51.31327438 34.20151901 79.89333344 51.39501572 35.26018143 80.23322296 51.81696701 36.060630798 + 80.38595581 52.5724678 36.48109436 80.41806793 53.48000336 36.41152573 -79.62756348 53.52455902 35.91416931 + -82.67887878 53.52082443 34.65967178 -82.48913574 51.99374771 34.30025482 -79.43450165 51.93783951 35.47651672 + -79.14315033 54.046813965 35.19306564 -82.71120453 54.03245163 33.62264633 -78.85746765 51.97799683 34.72565079 + -82.48555756 52.10508728 33.27651215 -86.63488007 54.57359314 29.46165657 -85.72097015 51.9238205 29.26659966 + -84.39522552 54.88339233 30.88852692 -83.58808136 52.012245178 30.61390686 -87.87200165 54.41299438 27.44893074 + -86.46413422 51.66881943 27.46546936 -87.10379028 54.2733078 23.30900764 -86.27024078 51.27534866 23.38712311 + -85.55961609 54.35325623 21.82473946 -85.17129517 51.16083527 21.53509331 -78.7158432 53.021678925 35.1220665 + -79.48348999 52.67582321 35.89677048 -82.73722839 52.68578339 34.62593842 -82.87340546 53.031581879 33.41363525 + -84.64391327 53.25970459 31.17085075 -86.77729034 53.062675476 29.76311493 -88.027755737 52.67837906 27.6327095 + -87.49985504 52.48092651 22.97735023 -85.82090759 52.69999695 21.095401764 -81.095787048 54.8718605 34.82384872 + -81.42710114 53.84307098 35.99938583 -81.44997406 52.34516907 36.17720032 -81.10420227 51.33106613 35.22420883 + -80.65725708 51.19703293 33.84664536 -80.5694809 55.41350174 20.99364853 -80.12471008 53.59375381 19.98048401 + -79.69432831 51.54914856 20.12611008 -76.76116943 52.038757324 32.68160629 -79.41640472 50.60163116 21.98554039 + -79.2489624 50.30700302 24.14737129 -79.19460297 50.24211884 26.25262451 -79.25263214 50.42282867 28.25247574 + -77.57641602 55.89311981 32.99721146 -76.71353912 54.0056343079 33.50970459 -76.19126892 50.91168594 30.85004616 + -75.88736725 50.13597488 28.84856033 -75.75852203 49.81349564 26.63084412 -75.7962265 49.97838211 24.32043266 + -75.97534943 50.58945847 21.99694443 -76.38687897 52.042709351 20.20943451 -77.031471252 54.22529602 20.10219574 + -77.60288239 56.20921326 21.083946228 -79.98468018 51.27867126 31.35036087 -80.83082581 56.2320137 32.35395432 + -83.13939667 54.47841644 32.26577759 -83.38366699 53.26738358 32.16059494 -82.79018402 52.23950577 31.97212791 + -80.31539917 51.37233353 32.58059311 -78.068206787 52.089416504 33.78378677 -77.87013245 53.44992828 34.28216934 + -78.48560333 54.72638321 34.21620178 -80.84244537 55.56708908 33.59867859 -79.51429749 50.85567856 29.98844719 + -78.26245117 58.92327499 24.64844131 -78.015953064 57.81376648 22.65488243 -77.91103363 57.69779968 31.17151451 + -78.21672821 58.88098907 29.16238594 -78.34515381 59.32056046 26.90859604 -74.45250702 52.42440033 20.29395676 + -75.20194244 54.66915894 20.18218994 -75.8677597 56.70498276 21.13619614 -76.29502106 58.40839386 22.70261192 + -76.52748108 59.61448669 24.7232399 -76.60257721 60.071975708 27.024309158 -76.48178864 59.6291008 29.29521942 + -76.15305328 58.37842941 31.19337845 -75.63977051 56.63542557 32.53759766 -75.01386261 54.70629883 33.039661407 + -74.51577759 52.78949738 32.48705292 -74.061737061 51.28107071 31.041027069 -73.7674408 50.3034935 29.052349091 + -73.67762756 49.89141083 26.78251457 -73.76353455 50.039367676 24.4133625 -73.97576904 50.76824951 22.046211243 + -82.75028229 50.78676605 22.21864128 -83.25243378 51.20698166 20.57240868 -82.57332611 50.8999176 24.005897522 + -82.50318146 51.068172455 25.83365822 -82.45726013 51.20160294 27.62459183 -82.65723419 51.42895889 29.21838379 + -83.79733276 54.64305115 21.21088219 -83.67194366 52.99338913 20.24599266 -84.16355133 50.87322617 22.46931076 + -84.41899109 51.056625366 23.85023689 -84.5041275 51.30723572 25.61956215 -84.45796967 51.4704361 27.37212944 + -84.3780899 51.5888176 28.67961502 -87.92192841 54.32312012 25.346838 -88.17214966 52.47860718 25.29886818 + -86.60250092 51.4695282 25.43381882 -81.31326294 57.71871185 24.40839386 -80.98287964 56.79776382 22.53271294 + -81.11330414 57.083034515 30.6077919 -81.3807373 57.79432678 28.62074089 -81.46612549 58.063549042 26.50458336 + -83.93722534 55.74188232 22.52234459 -84.35860443 56.41402054 24.071725845 -84.59944916 56.022644043 29.46669769 + -84.76213074 56.60000992 27.79885674 -84.70743561 56.72725296 25.90690613 -85.14788818 55.2933197 22.63158226 + -86.50315857 55.75495911 27.46083641 -86.43481445 55.78339386 25.59098434 -85.8525238 55.57285309 23.80326271 + -86.089729309 55.53635025 28.87942123 -80.35195923 53.7271347 36.14420319 -80.35325623 52.43327713 36.29211426 + -80.090507507 51.5112648 35.48592758 -79.60696411 51.31492996 34.28823471 -79.087402344 51.3880043 33.12973022 + -78.48796082 51.25718307 31.9341507 -77.98845673 50.74238205 30.4425602 -77.69032288 50.17290497 28.56872177 + -77.57632446 49.93405533 26.45548058 -77.60002899 50.069454193 24.22803497 -77.75763702 50.54156494 21.96978569 + -78.083511353 51.76626205 20.14665604 -78.6124649 53.90725327 20.034502029; + setAttr ".vt[3652:3817]" -79.11805725 55.80649567 21.029382706 -79.53141785 57.30127716 22.59320831 + -79.82160187 58.3133812 24.54354095 -79.93008423 58.67574692 26.73729897 -79.80760193 58.3106041 28.93901062 + -79.51490021 57.37104034 30.96498871 -79.29367065 56.21479797 32.71128464 -79.59043121 55.33926773 33.96077728 + -80.017097473 54.62462234 35.1066246 -82.018112183 51.56259537 34.7526207 -82.36089325 52.4410553 35.54547882 + -82.31752777 53.72974777 35.35380554 -82.097091675 54.67886353 34.24360275 -82.12174988 55.29654694 32.99468231 + -82.46958923 55.79976654 31.73944855 -82.79853821 56.60731506 30.095972061 -83.022109985 57.23810959 28.22673225 + -83.0442276 57.43454742 26.22202873 -82.81593323 57.099006653 24.25045204 -82.45441437 56.27466965 22.49959755 + -82.10952759 55.018802643 21.023815155 -81.77806854 53.2845726 20.0047206879 -81.39811707 51.35700607 20.2247467 + -81.066421509 50.69678879 22.078355789 -80.86206818 50.62397766 24.08155632 -80.76594543 50.6615448 26.048181534 + -80.75915527 50.80054092 27.94201851 -80.97398376 51.1316452 29.62253761 -81.53601837 51.57597351 30.95209122 + -81.5727005 51.69776535 32.17307281 -81.677948 51.50576782 33.47219849 20.96976471 -0.56611407 13.77865791 + 16.56123352 -0.54487032 14.017402649 -16.71150208 -0.34591833 13.84440899 -20.87268448 -0.36030293 13.70243454 + 17.10180664 -0.10365386 43.55747986 21.70419502 -0.19612792 43.1993866 -21.72176933 -0.27261496 42.66688919 + -16.51480865 -0.26840004 43.015457153 -21.25501633 4.41985369 41.30318832 -16.59529114 4.39895344 41.51296616 + -20.85822296 7.071203232 38.62420654 -16.85048866 7.076216698 38.80927658 17.27162361 4.55301714 41.57913971 + 21.60795593 4.46439838 41.21977615 17.34761047 7.20200253 38.82225418 21.074766159 7.12225294 38.55118942 + 20.96123695 6.07946825 13.70876789 16.85013008 6.036922932 13.77184391 20.98134995 3.11687708 13.33744335 + 16.67700958 3.11584568 13.53385353 -16.70233345 6.30199099 13.84329796 -20.82265091 6.43172216 13.74257183 + -16.67257118 3.34226608 13.52130318 -20.93292236 3.40535212 13.36846924 27.059717178 6.14577007 18.94203949 + 27.50635719 3.17535162 18.93256569 27.9872036 6.38610935 30.44178963 28.68481064 3.45202804 31.43846893 + 10.61189651 5.93005896 19.027160645 10.2040987 2.99755859 19.30114746 9.77040482 6.48142862 30.40632057 + 9.19156837 3.66107035 31.39893532 -26.9473629 6.40527487 18.75881577 -27.39513397 3.30041313 18.64915848 + -27.011623383 6.68668985 32.9897728 -27.94129562 3.78203869 33.94312286 -10.83691216 6.42913103 33.7085495 + -10.064052582 3.66840553 35.12106323 -10.65429401 6.0040073395 18.95851898 -10.44429493 3.19807601 18.84751129 + -24.49969101 6.91483402 36.39654541 -25.47172546 4.16465378 38.2845726 -28.20325089 6.45310879 29.30906677 + -28.90553856 3.4632237 29.76701927 -28.6037159 6.35216284 25.72429466 -29.1578331 3.30907559 25.94108009 + -28.26542854 6.35853004 22.20532417 -28.75865364 3.27827549 22.26759338 -24.47696304 6.45122623 15.66939068 + -24.80615997 3.36941695 15.42158222 -13.12292862 6.13067675 15.81945229 -13.0015153885 3.25998807 15.56627369 + -9.38530445 5.97121334 22.58714294 -9.088927269 3.20463896 22.72069931 -8.74252892 3.26665163 26.7057457 + -9.11640358 6.027842522 26.2669487 -9.049764633 3.40988421 30.84914207 -9.58450699 6.16918182 29.98065186 + -13.28120708 6.81494522 36.95339584 -12.54079437 4.080958366 39.13276291 13.81089401 7.013294697 37.26054382 + 13.16206646 4.33997154 39.54735947 11.2324667 6.71512032 34.22387314 10.45445633 3.99541235 35.83360291 + 9.16085243 6.21703196 26.52328682 8.75552273 3.31941986 27.16644859 9.3618269 6.0070905685 22.72617912 + 8.98486519 3.076906681 23.17967224 13.13888931 5.95973253 15.79952526 12.76456451 3.055398703 15.81943607 + 24.55394554 6.10628605 15.67055607 24.79563904 3.1362803 15.39616871 28.36121559 6.20384264 22.75601196 + 28.86972809 3.22713614 23.0593853 28.55714798 6.2735548 26.68027115 29.11445045 3.30398798 27.323349 + 26.66965103 6.5866847 33.86559677 27.57019424 3.73691225 35.26705933 24.34687996 6.86090231 36.70331192 + 25.30137634 4.13017797 38.72894287 20.90327835 8.94962311 14.18602562 16.99706459 8.90980053 14.13939571 + 13.4923687 8.83330822 15.95048046 11.054458618 8.76364899 18.94228172 9.78689957 8.73948574 22.41391563 + 9.54135418 8.80067825 26.007642746 10.19019794 8.89736176 29.57554817 11.73928833 9.036745071 32.88129044 + 14.23050022 9.21617699 35.40383148 17.37894821 9.35929871 36.63421631 20.65684891 9.39339352 36.42850494 + 23.63639259 9.34082127 34.99297714 25.96534348 9.27348328 32.61898804 27.3771801 9.19752502 29.55838394 + 27.98859024 9.1576128 26.13512802 27.78097916 9.12069416 22.54730415 26.55384254 9.055095673 19.059329987 + 24.24385071 8.99164486 16.047027588 -16.73173332 9.20714474 14.26465416 -20.67221832 9.39825344 14.22495937 + -24.1064415 9.46580315 16.04842186 -26.43930244 9.43121147 18.96058655 -27.6908741 9.37771893 22.21865463 + -28.0047206879 9.34785461 25.53891563 -27.55109215 9.35490417 28.83882332 -26.27565765 9.36405277 32.051773071 + -23.87159538 9.27005577 34.80865097 -20.57609558 9.25721073 36.51161194 -17.024612427 9.28162193 36.60255051 + -13.80702019 9.16129875 35.12242508 -11.41337299 8.90358639 32.44350052 -10.030790329 8.70592499 29.19530869 + -9.49859333 8.62766075 25.87567711 -9.74906349 8.6563406 22.52566338 -10.94728661 8.76408195 19.14970779 + -13.29705524 8.96720123 16.14878273 25.61291695 -0.28992936 40.55070496 27.38625717 -0.43740872 19.28559685 + 24.76881599 -0.52130491 15.67677307 28.54778099 -0.43441546 32.57598114 28.82967186 -0.46444336 28.15143967 + 28.6391983 -0.40638131 23.59017372 27.62217903 -0.38028276 36.68041229 12.90057182 -0.0474375 41.51276779 + 12.78493214 -0.58618373 16.39021873 9.35935211 -0.28017217 32.60208893 9.16098785 -0.38667652 27.77288055 + 10.55845261 -0.593503 19.89574623 10.32002735 -0.12805483 37.40774536 9.50524902 -0.52265877 23.47929955 + -24.80694008 -0.47344431 15.70789528 -27.045080185 -0.56186211 18.86581993 -26.15915489 -0.1959058 39.53749466 + -28.28726196 -0.53795826 22.50620842 -28.28863144 -0.21662071 34.5795517; + setAttr ".vt[3818:3983]" -28.85774422 -0.33333707 30.1118145 -28.84956169 -0.45423663 26.21973419 + -12.23414421 -0.2007183 40.72592545 -9.93000984 -0.27897698 36.26385117 -13.2047224 -0.31494379 15.69006634 + -9.22373867 -0.24821398 31.72898102 -10.85199261 -0.47657508 18.88166237 -9.52306747 -0.46229094 22.91517639 + -9.10894203 -0.25693467 27.18046379 -21.63862038 2.10375047 42.93348312 -16.44796753 2.10181475 43.15196228 + -12.070065498 1.85416138 40.4211235 -9.57208633 1.54238534 35.91464233 -8.73690128 1.41273868 31.40172195 + -8.54710293 1.35966372 26.98245049 -8.95580482 1.32596564 22.80272293 -10.36968327 1.3072921 18.78244019 + -12.96013069 1.32057667 15.45337963 -16.64894104 1.31388676 13.38201046 -20.94579887 1.33235931 13.20866776 + -25.01294899 1.24230218 15.37302876 -27.64685059 1.15308046 18.6553936 -29.023597717 1.16082811 22.35459328 + -29.47362137 1.22281945 26.070940018 -29.3531723 1.37623775 29.95533752 -28.58761406 1.62510753 34.3841629 + -26.19102669 1.89806092 39.38386536 17.19590569 2.18563175 43.38308334 21.87831879 2.13531184 42.97496796 + 25.87422371 1.93680942 40.034942627 28.12724876 1.62705362 36.18810654 29.13238907 1.37666082 32.12520981 + 29.44934082 1.25007093 27.79253197 29.15265465 1.20586467 23.310606 27.75423241 1.15586746 18.99955559 + 24.92104721 1.088143468 15.29371548 20.99764633 1.053075671 13.19526386 16.56857681 1.069020391 13.45563889 + 12.57296562 1.01358676 15.88149643 9.99560642 0.97153288 19.49620819 8.82423878 1.050542474 23.29781151 + 8.5380106 1.2531594 27.48934937 8.83015919 1.49956465 32.093200684 9.92571926 1.79029262 36.86451721 + 12.73436165 2.0521667 41.020404816 -20.8201313 -0.6528554 26.76187897 -16.66287422 -0.6499573 26.96709824 + -20.87779236 -0.60868615 30.78779793 -16.66625214 -0.60529095 31.035749435 21.33221436 -0.59087992 32.41539764 + 17.17110252 -0.58887029 32.53867722 21.29667473 -0.63762462 28.15516663 17.063522339 -0.63613325 28.23872757 + 21.346632 -0.54641449 36.37091446 17.30018425 -0.54346883 36.59396744 25.37496758 -0.62160057 28.16141129 + 25.18078232 -0.57978469 32.44099808 24.69352722 -0.53532988 36.42073441 12.82943153 -0.60466695 28.1199646 + 12.97903347 -0.54681116 32.60655212 13.45738125 -0.48144576 36.91064835 -20.96771049 -0.56160301 35.020332336 + -16.70227242 -0.55808085 35.28264236 -21.23657417 -0.4958145 39.35092926 -16.73303413 -0.49118182 39.7096405 + -24.92301369 -0.5163179 34.57836914 -25.071357727 -0.57409436 30.42767334 -25.033079147 -0.63144773 26.47482491 + -24.50092506 -0.46253949 38.074630737 -12.54741383 -0.58795011 27.10888672 -12.59344482 -0.54934961 31.35679817 + -12.90252113 -0.51816356 35.63069153 -13.58079815 -0.45432124 39.12369537 21.42280197 -0.47383037 40.28903198 + 17.29766655 -0.45334288 40.54929733 14.26251507 -0.4045991 40.15008926 24.080598831 -0.48306403 39.57606888 + 12.96337509 -0.66564816 23.98439789 25.318367 -0.64681071 23.84736443 21.21673584 -0.68494052 23.82916641 + 17.012611389 -0.68315297 23.95087051 -20.70908546 -0.69462371 22.94486237 -16.70672989 -0.69221741 23.11373138 + -12.74575806 -0.66312557 23.10490608 -24.71713638 -0.68054581 22.67800903 21.063703537 -0.72543955 20.049983978 + 16.97164726 -0.72328717 20.24371338 24.77139664 -0.68418956 20.012149811 20.96348953 -0.7338376 16.56962395 + 16.80990219 -0.72832704 16.81569481 23.87137413 -0.70331264 17.22351837 13.34962368 -0.70867515 20.52187538 + 13.9455061 -0.71828955 17.89958 -20.60479355 -0.73218763 19.42411041 -16.87017632 -0.73013568 19.59936142 + -24.11897469 -0.71423858 19.20118523 -13.41957188 -0.69583476 19.54520416 -20.69176674 -0.69671261 16.30135536 + -16.98406601 -0.69284147 16.45834923 -14.29404736 -0.64390731 16.99118233 -23.51955605 -0.69165158 16.83730125 + -21.83189964 0.50540775 43.4205513 -16.42652512 0.50817895 43.6945076 -11.94417 0.46221161 40.93764877 + -9.40788651 0.29712698 36.27065277 -8.62494564 0.28597361 31.68831253 -8.48167706 0.27212313 27.1298542 + -8.91694069 0.1145904 22.84678078 -10.3690834 0.10066059 18.73856926 -12.9616251 0.2250082 15.41508389 + -16.64093971 0.19416061 13.35197735 -20.92546272 0.18745483 13.19593716 -25.085561752 0.063160099 15.41236496 + -27.70196533 -0.045808662 18.70874214 -29.074443817 -0.02552212 22.41635895 -29.58057022 0.063165389 26.13844109 + -29.53337669 0.20678946 30.02731514 -28.85498619 0.37617892 34.55065918 -26.47293854 0.48245585 39.79890442 + 17.10038567 0.70392609 43.98925781 21.85920143 0.62450397 43.61108017 26.042613983 0.48941547 40.59105301 + 28.30443573 0.30919525 36.62034607 29.27862549 0.17241445 32.47460938 29.5507431 0.10540434 28.039855957 + 29.24931717 0.13678607 23.4554348 27.83818436 0.098989442 19.066553116 24.94968033 0.01209471 15.29643345 + 20.99045563 -0.0346976 13.20934677 16.5219574 -0.01248077 13.466115 12.51634979 -0.068527892 15.94834805 + 9.94879818 -0.095641837 19.61903954 8.7981348 -0.012375 23.32541275 8.47489643 0.15983848 27.63141632 + 8.70757961 0.32050198 32.44519424 9.75899601 0.53695875 37.32923126 12.61002159 0.690853 41.59780502 + 0.033964582 76.41072845 75.35037994 -1.7554009 76.40234375 75.4267807 1.85313678 76.37427521 75.42750549 + -1.75349629 76.63819885 75.53354645 0.01119608 76.64922333 75.42365265 1.85654974 76.59896088 75.48129272 + 3.50334191 76.28509521 75.60149384 3.4988718 76.50759888 75.59790039 -3.36050677 76.35080719 75.61039734 + -3.36090064 76.56460571 75.67153168 -4.39130354 76.50188446 75.71588898 -4.37266493 76.36193848 75.67353058 + -4.6053915 76.42227936 75.70049286 4.53529501 76.43480682 75.66505432 4.51050711 76.25859833 75.66246796 + 4.76829624 76.34087372 75.67726135 0.033075429 76.21873474 74.51367188 -1.75408185 76.22863007 74.52770996 + 1.84775841 76.13713074 74.53125 -1.75808907 76.99069214 74.56639099 0.01407203 77.034912109 74.55258942 + 1.86346412 76.88445282 74.5533371 3.4983232 75.95783997 74.56833649 3.49934721 76.61395264 74.56307983 + -3.35995102 76.1675415 74.56246948 -3.36529326 76.7728653 74.57933807 -4.38571596 76.58827972 74.58183289 + -4.3727684 76.22596741 74.57367706 -4.59898567 76.38404083 74.57801056; + setAttr ".vt[3984:4149]" 4.52109289 76.4077301 74.57318878 4.51845121 75.9462204 74.57866669 + 4.76577234 76.17233276 74.5772934 0.026892209 75.41925812 72.98208618 -1.80128849 75.57363129 72.98152924 + 1.87299693 75.34695435 72.99990082 -1.83735561 77.55896759 73.083610535 0.024493219 77.69586945 73.11894226 + 1.95090985 77.36001587 73.06539917 3.57237697 75.29374695 73.026153564 3.62385249 76.77655029 73.001373291 + -3.45653057 75.80290985 72.9855957 -3.50665712 77.092422485 73.01550293 -4.49372101 76.66661072 72.98459625 + -4.50129843 76.047409058 72.98293304 -4.70433903 76.32498169 72.97937012 4.5883255 76.33280182 72.98877716 + 4.68069792 75.52639771 73.020973206 4.88741159 75.96414948 72.99869537 0.01150524 74.47871399 71.17465973 + -2.13837504 74.75038147 71.1739502 2.17980289 74.42147064 71.19676971 -2.21054101 78.13760376 71.3007431 + 0.01311392 78.34020996 71.34461975 2.31215954 77.82830048 71.27811432 4.18105841 74.49643707 71.22937775 + 4.36318827 76.9797821 71.19860077 -4.08813715 75.2525177 71.17901611 -4.25304222 77.47229767 71.21614838 + -5.32613087 76.71878052 71.17776489 -5.31901217 75.73130035 71.17569733 -5.55040646 76.17288971 71.17126465 + 5.39256048 76.20016479 71.18296814 5.50124454 74.93250275 71.22294617 5.73230219 75.61766815 71.19528198 + -0.01685519 73.7719574 68.90591431 -2.80034566 74.13700104 68.90503693 2.79048061 73.70345306 68.9338913 + -2.89927459 78.71683502 69.065406799 -0.01477187 78.98394012 69.12091064 2.96816444 78.30226898 69.036781311 + 5.38154411 73.82523346 68.9751358 5.645154 77.18058777 68.93621063 -5.32473803 74.82620239 68.91143036 + -5.56242466 77.84025574 68.95841217 -6.93308783 76.81436157 68.9098587 -6.91837597 75.48303223 68.90724945 + -7.21796656 76.077827454 68.90163422 6.95641708 76.119133 68.91643524 7.090814114 74.41461182 68.96700287 + 7.38996792 75.33333588 68.93200684 -0.052088249 72.95658112 65.73693848 -3.62274218 73.42485046 65.73580933 + 3.54915452 72.86869812 65.77282715 -3.74964857 79.29985809 65.94152069 -0.049415961 79.6424942 66.01272583 + 3.77708721 78.76805115 65.90480804 6.87296391 73.024917603 65.825737 7.21112347 77.32915497 65.77578735 + -6.86102629 74.30895996 65.7440033 -7.16592932 78.17538452 65.80427551 -8.92421532 76.85936737 65.74198914 + -8.90534019 75.15154266 65.73863983 -9.28965473 75.91454315 65.73144531 8.89320755 75.9675293 65.75042725 + 9.065610886 73.78096771 65.81528473 9.44936562 74.9595108 65.77040863 -0.075677559 71.96608734 62.76212311 + -4.17336512 72.50347137 62.7608223 4.057113647 71.86523438 62.80330658 -4.31900358 79.24563599 62.99690628 + -0.072611257 79.63885498 63.078624725 4.31868792 78.6353302 62.95477676 7.87152147 72.044509888 62.86402893 + 8.25959206 76.98405457 62.8067131 -7.8896246 73.51807404 62.77023315 -8.23953247 77.95519257 62.83939743 + -10.25734138 76.44493103 62.76791382 -10.23568058 74.4850235 62.76408005 -10.67672157 75.36064911 62.75582123 + 10.18995476 75.42145538 62.77760315 10.38780594 72.91215515 62.85204315 10.82820225 74.26464844 62.80053329 + -0.096326649 70.73525238 60.1619072 -4.65535402 71.33169556 60.14368057 4.50175714 70.62459564 60.21076584 + -4.81738949 78.82266998 60.19513702 -0.092915103 79.2616806 60.27354813 4.79278135 78.14392853 60.16743088 + 8.74561214 70.82548523 60.27256393 9.17737389 76.30644226 60.054664612 -8.79001236 72.45816803 60.12242889 + -9.17931366 77.38539124 60.060604095 -11.42429924 75.70681763 60.028438568 -11.40020084 73.53125763 60.085399628 + -11.8908968 74.50291443 60.04888916 11.32506752 74.5710907 60.071163177 11.54519463 71.78816223 60.23216629 + 12.035173416 73.28778839 60.13274002 -0.10518818 69.23626709 58.44088364 -4.86218977 69.8525238 58.35123825 + 4.69256592 69.12731934 58.50466156 -5.031260967 77.62559509 57.51613235 -0.10162809 78.090080261 57.54537582 + 4.99622822 76.91856384 57.56791687 9.12070751 69.34294128 58.54491425 9.5712204 75 57.66892624 + -9.17639351 71.017974854 58.19560623 -9.58260059 76.11940002 57.54711914 -11.92507267 74.37517548 57.71285248 + -11.89992809 72.12620544 58.029933929 -12.41193199 73.12934113 57.8768425 11.8121748 73.20266724 57.89185333 + 12.04186058 70.33630371 58.38884735 12.55311871 71.8793869 58.10789871 -0.077330641 67.61402893 56.52194977 + -4.21194458 68.14054871 56.4088974 4.092703342 67.52372742 56.58329773 -4.35889435 74.79892731 55.23790741 + -0.074236177 75.20139313 55.2362175 4.35663557 74.1918869 55.32355499 7.94148588 67.7121048 56.60552979 + 8.33305168 72.5423584 55.52188492 -7.96169281 69.13710785 56.20707321 -8.31475449 73.50115204 55.3519249 + -10.3507452 72.0057983398 55.59600067 -10.32888985 70.083709717 55.99990845 -10.7739048 70.94036102 55.80968857 + 10.28081036 71.0045089722 55.81838226 10.48044491 68.56014252 56.413311 10.92480946 69.87527466 56.081478119 + -0.029934511 66.12906647 55.44676971 -3.1056416 66.47084808 55.25535965 3.072121143 66.079444885 55.50876617 + -3.21495652 70.84841919 53.014606476 -0.027632769 71.12782288 52.9271965 3.26845813 70.4447937 53.20422363 + 5.93519974 66.21514893 55.4838562 6.22648239 69.34064484 53.69554901 -5.89505053 67.12034607 54.9015274 + -6.15769005 69.97071838 53.37195587 -7.67224836 68.9835434 53.86204529 -7.65598726 67.73397064 54.55467987 + -7.98703051 68.28870392 54.23888779 7.67540359 68.3351593 54.2311821 7.82391214 66.76346588 55.16851807 + 8.15447044 67.60655975 54.65604401 0.02156141 64.27848053 54.24559021 -1.90364516 64.41355133 54.043235779 + 1.96326077 64.26851654 54.29389572 -1.97207034 66.20317841 51.56806564 0.023001909 66.33309174 51.4408493 + 2.086155891 66.033370972 51.78688431 3.75537467 64.33657074 54.24181747 3.93769884 65.56113434 52.37033081 + -3.64964652 64.6730423 53.66416931 -3.814044 65.81841278 52.01348114 -4.76206541 65.41054535 52.56322479 + -4.75188637 64.91465759 53.29909515 -4.95909977 65.13245392 52.96781921 4.84463644 65.1559906 52.95044708 + 4.93759394 64.55094147 53.91260529 5.14450312 64.87277985 53.39113235 0.05710943 62.47789001 53.20910263 + -1.073888779 62.52096939 53.069820404 1.19779694 62.48040771 53.23854828; + setAttr ".vt[4150:4258]" -1.11408651 63.1268692 51.34276581 0.05795582 63.17979813 51.24752808 + 1.26999402 63.066642761 51.49742508 2.25060773 62.5106163 53.1970253 2.35771775 62.89487839 51.91312027 + -2.099609375 62.60538483 52.80781555 -2.19618845 62.98180771 51.66425323 -2.75312042 62.84127045 52.049610138 + -2.74714017 62.68191528 52.5568924 -2.86887193 62.75052643 52.32945251 2.89051437 62.7610817 52.31545258 + 2.94512415 62.57761002 52.97135162 3.066676378 62.67355347 52.61690521 14.94883633 80.6534729 74.16838074 + 13.31561089 80.97148895 74.73732758 17.40932274 80.56686401 73.25520325 20.21554756 80.52836609 72.11927795 + 22.81946373 80.62761688 70.9331131 24.67866325 81.17642975 69.91061401 26.60573578 86.69944763 68.013534546 + 26.45149231 84.25455475 68.64917755 25.84088516 82.38938904 69.21670532 11.16110134 84.3589859 74.71203613 + 10.9429636 86.41548157 74.28554535 11.54103947 82.81408691 74.95949554 12.21690273 81.69094849 74.97089386 + 10.9761982 88.79030609 73.89891052 26.53190994 89.15270996 67.38404083 26.10454559 90.97203064 67.14110565 + 11.54725742 90.86932373 73.52757263 17.087926865 93.36663055 71.4888382 19.50434494 93.570755 70.33908081 + 21.84028816 93.70730591 69.081840515 14.82480335 92.99945068 72.39231873 23.69682503 93.40789032 68.044837952 + 12.87619686 92.26364136 73.039146423 25.11860466 92.45243073 67.36981964 -10.85402012 86.45465088 74.39917755 + -11.10338306 84.21782684 74.78178406 -11.55353069 82.63683319 74.92240143 -16.84582138 80.46797943 73.54401398 + -19.58323669 80.42608643 72.44744873 -14.76958752 80.58572388 74.2423172 -22.26027489 80.59410095 71.10148621 + -24.40419006 81.2228241 69.97859955 -13.36052799 80.90270996 74.690979 -12.29537487 81.57911682 74.87921906 + -26.30429459 84.45207977 68.50444031 -26.59414864 86.59072113 67.95677948 -25.63309097 82.50708771 69.11367798 + -20.95433807 93.66735077 69.58572388 -18.50287247 93.52027893 70.81975555 -16.094327927 93.21514893 71.88614655 + -13.76183319 92.53018188 72.74964142 -23.074729919 93.5978775 68.38021851 -11.90243053 91.11171722 73.39782715 + -24.54647446 93.017944336 67.52080536 -10.98046589 88.90292358 73.93550873 -26.33885765 90.422966 67.060340881 + -25.64783478 91.91012573 67.055984497 -26.6044178 88.64196777 67.41195679 15.39679241 81.70741272 73.68628693 + 14.0036659241 81.96798706 74.19319153 17.61598969 81.61790466 72.8815155 19.99969864 81.56871796 71.92389679 + 22.23713875 81.6415329 70.9039917 23.86273766 82.027565002 70.021057129 25.37036514 86.76554108 68.48332214 + 25.25497246 84.61461639 69.053794861 24.80547333 83.030883789 69.48492432 12.47084904 84.71601105 74.086112976 + 12.32807732 86.47386169 73.67424011 12.73052406 83.45384979 74.30422211 13.18871593 82.53644562 74.3165741 + 12.096053123 88.58843231 73.4526062 25.30937576 88.91822052 67.90684509 25.041181564 90.45966339 67.63460541 + 12.45411396 90.39328766 73.20733643 17.26956749 92.31596375 71.46082306 19.38316727 92.41990662 70.44895935 + 21.50108719 92.58948517 69.31263733 15.2604599 92.10662079 72.25819397 23.04473877 92.46471405 68.42962646 + 13.53417206 91.54277802 72.83249664 24.17532921 91.68405151 67.85314941 -12.27157593 86.55464935 73.73442078 + -12.4552002 84.54987335 74.11312866 -12.76086712 83.27185822 74.23364258 -17.10547829 81.59222412 73.091621399 + -19.43645096 81.53412628 72.17321014 -15.27580833 81.69648743 73.68736267 -21.7229805 81.64805603 71.0086517334 + -23.59930038 82.12012482 70.078102112 -14.089873314 81.91700745 74.11064911 -13.25871849 82.43741608 74.19502258 + -25.051845551 84.86827087 68.88389587 -25.27975464 86.67844391 68.43229675 -24.55575943 83.14191437 69.35617828 + -20.64843369 92.43045044 69.76979828 -18.53796577 92.37321472 70.82480621 -16.47859573 92.26893616 71.74424744 + -14.37732124 91.83272552 72.51694489 -22.63103676 92.49077606 68.65444946 -12.72674084 90.66682434 73.06325531 + -23.79459953 92.057006836 67.95220184 -12.065127373 88.66387939 73.47224426 -25.19522858 89.98375702 67.57667542 + -24.77173996 91.22451019 67.46381378 -25.29368019 88.43628693 67.95191956; + setAttr -s 8515 ".ed"; + setAttr ".ed[0:165]" 0 1 0 1 17 0 17 16 0 16 0 0 1 2 0 2 18 0 18 17 0 2 3 0 + 3 19 0 19 18 0 3 4 0 4 20 0 20 19 0 4 5 0 5 21 0 21 20 0 5 6 0 6 22 0 22 21 0 6 7 0 + 7 23 0 23 22 0 7 8 0 8 24 0 24 23 0 8 9 0 9 25 0 25 24 0 9 10 0 10 26 0 26 25 0 10 11 0 + 11 27 0 27 26 0 11 12 0 12 28 0 28 27 0 12 13 0 13 29 0 29 28 0 13 14 0 14 30 0 30 29 0 + 14 15 0 15 31 0 31 30 0 15 0 0 16 31 0 32 33 0 33 49 0 49 48 0 48 32 0 33 34 0 34 50 0 + 50 49 0 34 35 0 35 51 0 51 50 0 35 36 0 36 52 0 52 51 0 36 37 0 37 53 0 53 52 0 37 38 0 + 38 54 0 54 53 0 38 39 0 39 55 0 55 54 0 39 40 0 40 56 0 56 55 0 40 41 0 41 57 0 57 56 0 + 41 42 0 42 58 0 58 57 0 42 43 0 43 59 0 59 58 0 43 44 0 44 60 0 60 59 0 44 45 0 45 61 0 + 61 60 0 45 46 0 46 62 0 62 61 0 46 47 0 47 63 0 63 62 0 47 32 0 48 63 0 64 65 0 65 81 0 + 81 80 0 80 64 0 65 66 0 66 82 0 82 81 0 66 67 0 67 83 0 83 82 0 67 68 0 68 84 0 84 83 0 + 68 69 0 69 85 0 85 84 0 69 70 0 70 86 0 86 85 0 70 71 0 71 87 0 87 86 0 71 72 0 72 88 0 + 88 87 0 72 73 0 73 89 0 89 88 0 73 74 0 74 90 0 90 89 0 74 75 0 75 91 0 91 90 0 75 76 0 + 76 92 0 92 91 0 76 77 0 77 93 0 93 92 0 77 78 0 78 94 0 94 93 0 78 79 0 79 95 0 95 94 0 + 79 64 0 80 95 0 96 97 0 97 113 0 113 112 0 112 96 0 97 98 0 98 114 0 114 113 0 98 99 0 + 99 115 0 115 114 0 99 100 0 100 116 0 116 115 0 100 101 0 101 117 0 117 116 0 101 102 0 + 102 118 0 118 117 0 102 103 0 103 119 0 119 118 0; + setAttr ".ed[166:331]" 103 104 0 104 120 0 120 119 0 104 105 0 105 121 0 121 120 0 + 105 106 0 106 122 0 122 121 0 106 107 0 107 123 0 123 122 0 107 108 0 108 124 0 124 123 0 + 108 109 0 109 125 0 125 124 0 109 110 0 110 126 0 126 125 0 110 111 0 111 127 0 127 126 0 + 111 96 0 112 127 0 128 129 0 129 130 0 130 131 0 131 128 0 131 132 0 132 133 0 133 128 0 + 132 134 0 134 135 0 135 133 0 137 135 0 134 136 0 136 137 0 136 138 0 138 139 0 139 137 0 + 143 140 0 140 141 0 141 142 0 142 143 0 142 144 0 144 145 0 145 143 0 144 139 0 138 145 0 + 149 146 0 146 147 0 147 148 0 148 149 0 151 150 0 150 146 0 149 151 0 129 309 0 309 310 0 + 310 130 0 153 152 0 152 148 0 147 153 0 155 154 0 154 141 0 140 155 0 157 156 0 156 154 0 + 155 157 0 153 158 0 158 159 0 159 152 0 163 160 0 160 161 0 161 162 0 162 163 0 165 164 0 + 164 160 0 163 165 0 161 166 0 166 167 0 167 162 0 169 164 0 165 168 0 168 169 0 166 170 0 + 170 171 0 171 167 0 157 315 0 315 316 0 316 156 0 170 159 0 158 171 0 175 172 0 172 173 0 + 173 174 0 174 175 0 177 176 0 176 172 0 175 177 0 181 178 0 178 179 0 179 180 0 180 181 0 + 183 182 0 182 180 0 179 183 0 181 184 0 184 185 0 185 178 0 187 186 0 186 185 0 184 187 0 + 189 182 0 183 188 0 188 189 0 177 317 0 317 318 0 318 176 0 193 190 0 190 191 0 191 192 0 + 192 193 0 195 194 0 194 190 0 193 195 0 187 194 0 195 186 0 199 196 0 196 197 0 197 198 0 + 198 199 0 197 200 0 200 201 0 201 198 0 203 202 0 202 201 0 200 203 0 205 204 0 204 196 0 + 199 205 0 207 206 0 206 202 0 203 207 0 209 208 0 208 204 0 205 209 0 211 210 0 210 206 0 + 207 211 0 209 323 0 323 324 0 324 208 0 173 210 0 211 174 0 213 212 0 212 214 0 214 215 0 + 215 213 0 214 192 0 191 215 0 217 216 0 216 131 0 130 217 0 216 218 0; + setAttr ".ed[332:497]" 218 132 0 218 219 0 219 134 0 219 220 0 220 136 0 220 221 0 + 221 138 0 221 222 0 222 145 0 222 223 0 223 143 0 223 224 0 224 140 0 224 225 0 225 155 0 + 225 226 0 226 157 0 314 315 0 226 314 0 169 227 0 227 228 0 228 164 0 228 229 0 229 160 0 + 229 230 0 230 161 0 231 166 0 230 231 0 232 170 0 231 232 0 183 233 0 233 234 0 234 188 0 + 236 235 0 235 178 0 185 236 0 235 237 0 237 179 0 237 233 0 238 236 0 186 238 0 239 238 0 + 195 239 0 193 240 0 240 239 0 241 240 0 192 241 0 242 241 0 214 242 0 243 242 0 212 243 0 + 244 322 0 322 323 0 209 244 0 199 245 0 245 246 0 246 205 0 246 244 0 248 247 0 247 198 0 + 201 248 0 247 245 0 202 249 0 249 248 0 253 250 0 250 251 0 251 252 0 252 253 0 252 262 0 + 262 263 0 263 253 0 259 256 0 256 257 0 257 258 0 258 259 0 261 264 0 264 265 0 265 260 0 + 260 261 0 262 254 0 254 255 0 255 263 0 264 259 0 258 265 0 266 159 0 232 266 0 267 249 0 + 206 267 0 266 268 0 268 269 0 269 159 0 206 269 0 268 267 0 318 319 0 319 270 0 270 176 0 + 310 311 0 311 217 0 270 272 0 272 172 0 149 273 0 273 271 0 271 151 0 272 274 0 274 173 0 + 148 275 0 275 273 0 277 173 0 274 276 0 276 277 0 148 277 0 276 275 0 278 152 0 269 278 0 + 210 278 0 277 278 0 280 279 0 279 251 0 250 280 0 256 281 0 281 282 0 282 257 0 254 283 0 + 283 284 0 284 255 0 280 285 0 285 286 0 286 279 0 283 287 0 287 288 0 288 284 0 290 286 0 + 285 289 0 289 290 0 292 291 0 291 282 0 281 292 0 294 293 0 293 261 0 260 294 0 287 293 0 + 294 288 0 292 290 0 289 291 0 296 295 0 295 285 0 280 296 0 297 296 0 250 297 0 253 298 0 + 298 297 0 299 298 0 263 299 0 255 300 0 300 299 0 301 300 0 284 301 0 296 307 0 307 308 0 + 308 295 0 297 306 0 306 307 0 298 305 0 305 306 0 299 304 0 304 305 0; + setAttr ".ed[498:663]" 303 304 0 300 303 0 302 303 0 301 302 0 273 303 0 302 271 0 + 275 304 0 276 305 0 274 306 0 272 307 0 270 308 0 309 150 0 151 310 0 271 311 0 288 312 0 + 312 301 0 312 313 0 313 302 0 313 311 0 169 315 0 314 227 0 168 316 0 317 189 0 188 318 0 + 234 319 0 295 320 0 320 289 0 308 321 0 321 320 0 319 321 0 322 243 0 212 323 0 213 324 0 + 320 325 0 325 291 0 325 326 0 326 282 0 326 327 0 327 257 0 327 328 0 328 258 0 328 329 0 + 329 265 0 329 330 0 330 260 0 330 331 0 331 294 0 331 312 0 332 313 0 331 332 0 330 333 0 + 333 332 0 329 334 0 334 333 0 328 335 0 335 334 0 327 336 0 336 335 0 326 337 0 337 336 0 + 325 338 0 338 337 0 321 338 0 332 217 0 234 338 0 340 339 0 339 256 0 259 340 0 264 341 0 + 341 340 0 343 342 0 342 252 0 251 343 0 342 344 0 344 262 0 345 341 0 261 345 0 344 346 0 + 346 254 0 339 347 0 347 281 0 279 348 0 348 343 0 349 348 0 286 349 0 347 350 0 350 292 0 + 290 351 0 351 349 0 350 351 0 346 352 0 352 283 0 293 353 0 353 345 0 354 287 0 352 354 0 + 354 353 0 356 355 0 355 236 0 238 356 0 355 357 0 357 235 0 357 358 0 358 237 0 358 359 0 + 359 233 0 359 360 0 360 234 0 360 361 0 361 338 0 361 362 0 362 337 0 362 363 0 363 336 0 + 364 335 0 363 364 0 365 334 0 364 365 0 365 366 0 366 333 0 367 332 0 366 367 0 368 217 0 + 367 368 0 368 369 0 369 216 0 369 370 0 370 218 0 370 371 0 371 219 0 371 372 0 372 220 0 + 372 373 0 373 221 0 373 374 0 374 222 0 374 375 0 375 223 0 375 376 0 376 224 0 239 377 0 + 377 356 0 378 377 0 240 378 0 379 378 0 241 379 0 380 379 0 242 380 0 243 381 0 381 380 0 + 322 382 0 382 381 0 376 383 0 383 225 0 383 384 0 384 226 0 384 385 0 385 314 0 385 386 0 + 386 227 0 386 387 0 387 228 0 389 388 0 388 230 0 229 389 0 387 389 0; + setAttr ".ed[664:829]" 388 390 0 390 231 0 390 391 0 391 232 0 392 266 0 391 392 0 + 394 267 0 268 393 0 393 394 0 392 393 0 394 395 0 395 249 0 395 396 0 396 248 0 397 247 0 + 396 397 0 397 398 0 398 245 0 398 399 0 399 246 0 399 400 0 400 244 0 400 382 0 404 401 0 + 401 3169 0 3169 3170 0 3170 404 0 3355 3169 0 401 405 0 405 3355 0 408 404 0 3170 3171 0 + 3171 408 0 3171 3172 0 3172 410 0 410 408 0 3172 3173 0 3173 412 0 412 410 0 3173 3174 0 + 3174 414 0 414 412 0 3174 3175 0 3175 416 0 416 414 0 3354 3355 0 405 417 0 417 3354 0 + 3353 3354 0 417 419 0 419 3353 0 3352 3353 0 419 421 0 421 3352 0 3351 3352 0 421 423 0 + 423 3351 0 426 416 0 3175 3176 0 3176 426 0 3350 3351 0 423 427 0 427 3350 0 3349 3350 0 + 427 429 0 429 3349 0 432 426 0 3176 3177 0 3177 432 0 404 433 0 433 434 0 434 401 0 + 410 433 0 434 417 0 423 435 0 435 436 0 436 427 0 435 441 0 441 442 0 442 436 0 421 437 0 + 437 435 0 437 440 0 440 441 0 419 438 0 438 437 0 438 439 0 439 440 0 434 438 0 433 439 0 + 412 439 0 414 440 0 416 441 0 426 442 0 432 443 0 443 442 0 443 444 0 444 436 0 444 429 0 + 444 445 0 445 446 0 446 429 0 443 447 0 447 445 0 432 448 0 448 447 0 445 359 0 358 446 0 + 447 360 0 448 361 0 3177 3178 0 3178 450 0 450 432 0 3178 3179 0 3179 452 0 452 450 0 + 3179 3180 0 3180 454 0 454 452 0 3180 3181 0 3181 456 0 456 454 0 458 456 0 3181 3182 0 + 3182 458 0 460 458 0 3182 3183 0 3183 460 0 3183 3184 0 3184 462 0 462 460 0 464 462 0 + 3184 3185 0 3185 464 0 3185 3186 0 3186 466 0 466 464 0 468 466 0 3186 3187 0 3187 468 0 + 3187 3188 0 3188 470 0 470 468 0 3188 3189 0 3189 472 0 472 470 0 473 448 0 450 473 0 + 474 473 0 452 474 0 475 474 0 454 475 0 476 475 0 456 476 0 458 477 0 477 476 0 478 477 0 + 460 478 0 479 478 0 462 479 0 480 479 0 464 480 0 481 480 0 466 481 0 482 481 0 468 482 0; + setAttr ".ed[830:995]" 483 482 0 470 483 0 3189 3190 0 3190 486 0 486 472 0 + 487 484 0 484 472 0 486 487 0 489 486 0 3190 3191 0 3191 489 0 3191 3192 0 3192 491 0 + 491 489 0 3200 3201 0 3201 493 0 493 494 0 494 3200 0 3198 3199 0 3199 557 0 557 496 0 + 496 3198 0 3197 3198 0 496 498 0 498 3197 0 3196 3197 0 498 500 0 500 3196 0 3195 3196 0 + 500 502 0 502 3195 0 413 411 0 411 2982 0 2982 2983 0 2983 413 0 507 506 0 506 1137 0 + 1137 1138 0 1138 507 0 411 409 0 409 3168 0 3168 2982 0 1136 1137 0 506 508 0 508 1136 0 + 3194 3195 0 502 510 0 510 3194 0 511 3003 0 3003 3004 0 3004 503 0 503 511 0 3004 3005 0 + 3005 501 0 501 503 0 3201 3202 0 3202 513 0 513 493 0 415 413 0 2983 2984 0 2984 415 0 + 514 507 0 1138 1139 0 1139 514 0 516 3002 0 3002 3003 0 511 516 0 510 517 0 517 3193 0 + 3193 3194 0 517 491 0 3192 3193 0 3202 3203 0 3203 519 0 519 513 0 3206 3207 0 3207 521 0 + 521 522 0 522 3206 0 522 524 0 524 3205 0 3205 3206 0 3204 3205 0 524 526 0 526 3204 0 + 3203 3204 0 526 519 0 528 446 0 357 528 0 3348 3349 0 429 529 0 529 3348 0 528 529 0 + 3347 3348 0 529 531 0 531 3347 0 3346 3347 0 531 533 0 533 3346 0 355 535 0 535 528 0 + 535 531 0 536 535 0 356 536 0 536 533 0 478 537 0 537 538 0 538 477 0 539 537 0 479 539 0 + 538 540 0 540 476 0 541 539 0 480 541 0 543 542 0 542 540 0 538 543 0 537 544 0 544 543 0 + 539 545 0 545 544 0 541 545 0 473 362 0 474 363 0 475 364 0 543 366 0 365 542 0 544 367 0 + 545 368 0 545 546 0 546 369 0 541 547 0 547 546 0 481 547 0 475 542 0 548 547 0 482 548 0 + 487 550 0 550 549 0 549 484 0 483 549 0 549 548 0 546 551 0 551 370 0 548 551 0 549 552 0 + 552 551 0 484 483 0 552 371 0 550 553 0 553 552 0 554 487 0 489 554 0 555 550 0 554 555 0 + 555 553 0 553 372 0 3199 3200 0 494 557 0 559 557 0 494 558 0 558 559 0 559 498 0 + 513 558 0 558 560 0 560 561 0; + setAttr ".ed[996:1161]" 561 559 0 561 500 0 519 560 0 560 562 0 562 563 0 563 561 0 + 563 502 0 526 562 0 562 564 0 564 565 0 565 563 0 565 510 0 524 564 0 564 566 0 566 567 0 + 567 565 0 567 517 0 522 566 0 566 568 0 568 567 0 568 491 0 521 568 0 553 569 0 569 373 0 + 555 570 0 570 569 0 554 571 0 571 570 0 491 571 0 569 572 0 572 374 0 3207 3208 0 + 3208 574 0 574 521 0 575 571 0 568 575 0 574 575 0 576 575 0 574 576 0 576 570 0 + 576 572 0 3208 3209 0 3209 578 0 578 574 0 572 579 0 579 580 0 580 374 0 578 572 0 + 581 579 0 578 581 0 580 582 0 582 375 0 3209 3210 0 3210 581 0 392 1705 0 1705 1706 0 + 1706 393 0 587 586 0 586 590 0 590 591 0 591 587 0 589 588 0 588 1869 0 1869 1870 0 + 1870 589 0 590 848 0 848 849 0 849 591 0 391 1704 0 1704 1705 0 588 592 0 592 1868 0 + 1868 1869 0 586 593 0 593 594 0 594 590 0 594 847 0 847 848 0 390 1703 0 1703 1704 0 + 592 596 0 596 1867 0 1867 1868 0 593 597 0 597 598 0 598 594 0 598 846 0 846 847 0 + 585 584 0 584 607 0 607 608 0 608 585 0 584 595 0 595 606 0 606 607 0 595 599 0 599 605 0 + 605 606 0 602 601 0 601 1830 0 1830 1831 0 1831 602 0 603 602 0 1831 1832 0 1832 603 0 + 604 603 0 1832 1833 0 1833 604 0 605 601 0 602 606 0 603 607 0 604 608 0 112 629 0 + 629 630 0 630 127 0 630 631 0 631 126 0 631 632 0 632 125 0 632 633 0 633 124 0 633 634 0 + 634 123 0 634 635 0 635 122 0 635 636 0 636 121 0 636 637 0 637 120 0 637 638 0 638 119 0 + 638 639 0 639 118 0 639 640 0 640 117 0 640 641 0 641 116 0 641 642 0 642 115 0 113 644 0 + 644 629 0 114 643 0 643 644 0 642 643 0 614 613 0 613 64 0 79 614 0 615 614 0 78 615 0 + 77 616 0 616 615 0 76 617 0 617 616 0 75 618 0 618 617 0 619 618 0 74 619 0 620 619 0 + 73 620 0 621 620 0 72 621 0 622 621 0 71 622 0 623 622 0 70 623 0 624 623 0; + setAttr ".ed[1162:1327]" 69 624 0 625 624 0 68 625 0 626 625 0 67 626 0 66 627 0 + 627 626 0 628 627 0 65 628 0 613 628 0 645 646 0 646 613 0 614 645 0 660 645 0 615 660 0 + 616 659 0 659 660 0 617 658 0 658 659 0 618 657 0 657 658 0 656 657 0 619 656 0 655 656 0 + 620 655 0 654 655 0 621 654 0 653 654 0 622 653 0 652 653 0 623 652 0 651 652 0 624 651 0 + 650 651 0 625 650 0 649 650 0 626 649 0 627 648 0 648 649 0 647 648 0 628 647 0 646 647 0 + 15 693 0 693 694 0 694 0 0 708 693 0 14 708 0 694 695 0 695 1 0 695 696 0 696 2 0 + 696 697 0 697 3 0 697 698 0 698 4 0 707 708 0 13 707 0 706 707 0 12 706 0 705 706 0 + 11 705 0 704 705 0 10 704 0 703 704 0 9 703 0 702 703 0 8 702 0 701 702 0 7 701 0 + 698 699 0 699 5 0 699 700 0 700 6 0 700 701 0 629 646 0 645 630 0 644 647 0 643 648 0 + 642 649 0 641 650 0 640 651 0 639 652 0 638 653 0 637 654 0 636 655 0 635 656 0 634 657 0 + 633 658 0 632 659 0 631 660 0 662 661 0 661 63 0 48 662 0 663 662 0 49 663 0 50 664 0 + 664 663 0 665 664 0 51 665 0 52 666 0 666 665 0 53 667 0 667 666 0 668 667 0 54 668 0 + 669 668 0 55 669 0 56 670 0 670 669 0 57 671 0 671 670 0 58 672 0 672 671 0 59 673 0 + 673 672 0 60 674 0 674 673 0 61 675 0 675 674 0 62 676 0 676 675 0 661 676 0 678 677 0 + 677 661 0 662 678 0 679 678 0 663 679 0 664 680 0 680 679 0 681 680 0 665 681 0 666 682 0 + 682 681 0 667 683 0 683 682 0 684 683 0 668 684 0 685 684 0 669 685 0 670 686 0 686 685 0 + 671 687 0 687 686 0 672 688 0 688 687 0 673 689 0 689 688 0 674 690 0 690 689 0 675 691 0 + 691 690 0 676 692 0 692 691 0 677 692 0 693 677 0 678 694 0 679 695 0 680 696 0 681 697 0 + 682 698 0 683 699 0 684 700 0 685 701 0 686 702 0 687 703 0 688 704 0; + setAttr ".ed[1328:1493]" 689 705 0 690 706 0 691 707 0 692 708 0 386 1699 0 1699 1700 0 + 1700 387 0 389 1701 0 1701 1702 0 1702 388 0 1700 1701 0 1702 1703 0 1866 1867 0 + 596 712 0 712 1866 0 1865 1866 0 712 711 0 711 1865 0 1864 1865 0 711 710 0 710 1864 0 + 1863 1864 0 710 709 0 709 1863 0 723 724 0 724 718 0 718 717 0 717 723 0 715 716 0 + 716 720 0 720 719 0 719 715 0 720 804 0 804 843 0 843 719 0 721 722 0 722 724 0 723 721 0 + 718 1826 0 1826 1827 0 1827 717 0 597 713 0 713 727 0 727 598 0 713 714 0 714 728 0 + 728 727 0 714 715 0 719 728 0 727 845 0 845 846 0 728 844 0 844 845 0 843 844 0 599 729 0 + 729 731 0 731 605 0 729 730 0 730 732 0 732 731 0 730 721 0 723 732 0 731 733 0 733 601 0 + 732 734 0 734 733 0 717 734 0 733 1829 0 1829 1830 0 734 1828 0 1828 1829 0 1827 1828 0 + 399 1712 0 1712 1713 0 1713 400 0 742 741 0 741 749 0 749 750 0 750 742 0 744 743 0 + 743 855 0 855 824 0 824 744 0 746 745 0 745 1876 0 1876 1877 0 1877 746 0 748 747 0 + 747 743 0 744 748 0 749 739 0 739 740 0 740 750 0 1706 1707 0 1707 394 0 1707 1708 0 + 1708 395 0 1708 1709 0 1709 396 0 1709 1710 0 1710 397 0 1710 1711 0 1711 398 0 1711 1712 0 + 751 589 0 1870 1871 0 1871 751 0 752 751 0 1871 1872 0 1872 752 0 753 752 0 1872 1873 0 + 1873 753 0 754 753 0 1873 1874 0 1874 754 0 755 754 0 1874 1875 0 1875 755 0 745 755 0 + 1875 1876 0 756 587 0 591 761 0 761 756 0 757 756 0 761 762 0 762 757 0 758 757 0 + 762 763 0 763 758 0 759 758 0 763 764 0 764 759 0 760 759 0 764 765 0 765 760 0 747 760 0 + 765 743 0 849 850 0 850 761 0 850 851 0 851 762 0 851 852 0 852 763 0 852 853 0 853 764 0 + 853 854 0 854 765 0 854 855 0 766 585 0 608 771 0 771 766 0 767 766 0 771 772 0 772 767 0 + 768 767 0 772 773 0 773 768 0 769 768 0 773 774 0 774 769 0 770 769 0 774 775 0 775 770 0 + 741 770 0 775 749 0; + setAttr ".ed[1494:1659]" 604 776 0 776 771 0 776 777 0 777 772 0 777 778 0 778 773 0 + 778 779 0 779 774 0 779 780 0 780 775 0 780 739 0 739 1839 0 1839 1840 0 1840 740 0 + 1833 1834 0 1834 776 0 1834 1835 0 1835 777 0 1835 1836 0 1836 778 0 1836 1837 0 + 1837 779 0 1837 1838 0 1838 780 0 1838 1839 0 81 789 0 789 788 0 788 80 0 82 790 0 + 790 789 0 83 791 0 791 790 0 84 792 0 792 791 0 85 793 0 793 792 0 86 794 0 794 793 0 + 87 795 0 795 794 0 88 796 0 796 795 0 89 797 0 797 796 0 90 798 0 798 797 0 91 799 0 + 799 798 0 92 800 0 800 799 0 93 801 0 801 800 0 94 802 0 802 801 0 95 803 0 803 802 0 + 788 803 0 1698 1903 0 1903 1896 0 1896 1697 0 1697 1698 0 2065 2066 0 2066 807 0 + 807 806 0 806 2065 0 32 808 0 808 809 0 809 33 0 809 810 0 810 34 0 810 811 0 811 35 0 + 811 812 0 812 36 0 812 813 0 813 37 0 813 814 0 814 38 0 814 815 0 815 39 0 815 816 0 + 816 40 0 816 817 0 817 41 0 817 818 0 818 42 0 818 819 0 819 43 0 819 820 0 820 44 0 + 820 821 0 821 45 0 821 822 0 822 46 0 822 823 0 823 47 0 823 808 0 823 1734 0 1734 1735 0 + 1735 808 0 827 826 0 826 1695 0 1695 1696 0 1696 827 0 829 828 0 828 1795 0 1795 1797 0 + 1797 829 0 830 805 0 805 722 0 721 830 0 831 830 0 730 831 0 832 831 0 729 832 0 + 833 832 0 599 833 0 834 833 0 595 834 0 835 834 0 584 835 0 836 835 0 585 836 0 837 836 0 + 766 837 0 838 837 0 767 838 0 839 838 0 768 839 0 840 839 0 769 840 0 841 840 0 770 841 0 + 842 841 0 741 842 0 825 842 0 742 825 0 804 805 0 830 843 0 831 844 0 832 845 0 833 846 0 + 834 847 0 835 848 0 836 849 0 837 850 0 838 851 0 839 852 0 840 853 0 841 854 0 842 855 0 + 825 824 0 3345 3346 0 533 856 0 856 3345 0 3344 3345 0 856 858 0 858 3344 0 858 860 0 + 860 3343 0 3343 3344 0 3342 3343 0 860 862 0 862 3342 0 3341 3342 0 862 864 0; + setAttr ".ed[1660:1825]" 864 3341 0 864 866 0 866 3340 0 3340 3341 0 866 868 0 + 868 3339 0 3339 3340 0 3338 3339 0 868 870 0 870 3338 0 3337 3338 0 870 872 0 872 3337 0 + 872 874 0 874 3336 0 3336 3337 0 3335 3336 0 874 876 0 876 3335 0 3334 3335 0 876 878 0 + 878 3334 0 3333 3334 0 878 880 0 880 3333 0 3332 3333 0 880 882 0 882 3332 0 3331 3332 0 + 882 884 0 884 3331 0 3328 3329 0 3329 887 0 887 890 0 890 3328 0 889 887 0 3329 3330 0 + 3330 889 0 884 889 0 3330 3331 0 3327 3328 0 890 892 0 892 3327 0 3326 3327 0 892 894 0 + 894 3326 0 894 896 0 896 3325 0 3325 3326 0 3324 3325 0 896 898 0 898 3324 0 3323 3324 0 + 898 900 0 900 3323 0 3322 3323 0 900 902 0 902 3322 0 3320 3321 0 3321 1030 0 1030 904 0 + 904 3320 0 904 906 0 906 3319 0 3319 3320 0 906 908 0 908 3318 0 3318 3319 0 908 910 0 + 910 3317 0 3317 3318 0 910 912 0 912 3316 0 3316 3317 0 912 914 0 914 3315 0 3315 3316 0 + 3314 3315 0 914 916 0 916 3314 0 3313 3314 0 916 918 0 918 3313 0 3312 3313 0 918 920 0 + 920 3312 0 3311 3312 0 920 922 0 922 3311 0 3310 3311 0 922 924 0 924 3310 0 924 926 0 + 926 3309 0 3309 3310 0 926 928 0 928 3308 0 3308 3309 0 3307 3308 0 928 930 0 930 3307 0 + 3306 3307 0 930 932 0 932 3306 0 3305 3306 0 932 934 0 934 3305 0 3304 3305 0 934 936 0 + 936 3304 0 3303 3304 0 936 938 0 938 3303 0 3302 3303 0 938 940 0 940 3302 0 3301 3302 0 + 940 942 0 942 3301 0 3300 3301 0 942 944 0 944 3300 0 3299 3300 0 944 946 0 946 3299 0 + 3298 3299 0 946 948 0 948 3298 0 3297 3298 0 948 950 0 950 3297 0 919 921 0 921 3121 0 + 3121 3122 0 3122 919 0 3120 3121 0 921 923 0 923 3120 0 3119 3120 0 923 925 0 925 3119 0 + 3118 3119 0 925 927 0 927 3118 0 3117 3118 0 927 929 0 929 3117 0 3116 3117 0 929 931 0 + 931 3116 0 3114 3115 0 3115 933 0 933 935 0 935 3114 0 3113 3114 0 935 937 0 937 3113 0 + 931 933 0 3115 3116 0 3111 3112 0 3112 939 0 939 941 0 941 3111 0 937 939 0 3112 3113 0 + 3110 3111 0; + setAttr ".ed[1826:1991]" 941 943 0 943 3110 0 3106 3107 0 3107 949 0 949 951 0 + 951 3106 0 3107 3108 0 3108 947 0 947 949 0 3109 3110 0 943 945 0 945 3109 0 3108 3109 0 + 945 947 0 3296 3297 0 950 969 0 969 3296 0 3105 3106 0 951 970 0 970 3105 0 3295 3296 0 + 969 972 0 972 3295 0 3104 3105 0 970 973 0 973 3104 0 3294 3295 0 972 975 0 975 3294 0 + 3103 3104 0 973 976 0 976 3103 0 3293 3294 0 975 978 0 978 3293 0 3102 3103 0 976 979 0 + 979 3102 0 3292 3293 0 978 981 0 981 3292 0 3101 3102 0 979 982 0 982 3101 0 980 983 0 + 983 993 0 993 994 0 994 980 0 994 995 0 995 977 0 977 980 0 995 996 0 996 974 0 974 977 0 + 971 974 0 996 997 0 997 971 0 966 971 0 997 998 0 998 966 0 965 966 0 998 999 0 999 965 0 + 967 965 0 999 1000 0 1000 967 0 968 967 0 1000 1001 0 1001 968 0 1009 1010 0 1010 952 0 + 952 954 0 954 1009 0 1008 1009 0 954 955 0 955 1008 0 1007 1008 0 955 956 0 956 1007 0 + 1006 1007 0 956 957 0 957 1006 0 1005 1006 0 957 958 0 958 1005 0 1004 1005 0 958 959 0 + 959 1004 0 1003 1004 0 959 960 0 960 1003 0 1002 1003 0 960 961 0 961 1002 0 993 984 0 + 984 985 0 985 994 0 985 986 0 986 995 0 986 987 0 987 996 0 987 988 0 988 997 0 988 989 0 + 989 998 0 989 990 0 990 999 0 990 991 0 991 1000 0 991 992 0 992 1001 0 991 1003 0 + 1002 992 0 990 1004 0 989 1005 0 988 1006 0 987 1007 0 986 1008 0 985 1009 0 984 1010 0 + 963 964 0 964 1001 0 992 963 0 962 963 0 1002 962 0 961 962 0 964 968 0 917 919 0 + 3122 3123 0 3123 917 0 915 917 0 3123 3124 0 3124 915 0 913 915 0 3124 3125 0 3125 913 0 + 3135 3136 0 3136 893 0 893 895 0 895 3135 0 3134 3135 0 895 897 0 897 3134 0 897 899 0 + 899 3133 0 3133 3134 0 3132 3133 0 899 901 0 901 3132 0 3131 3132 0 901 903 0 903 3131 0 + 3129 3130 0 3130 1029 0 1029 905 0 905 3129 0 3128 3129 0 905 907 0 907 3128 0 3127 3128 0 + 907 909 0 909 3127 0 3126 3127 0 909 911 0 911 3126 0 911 913 0; + setAttr ".ed[1992:2157]" 3125 3126 0 1021 1022 0 1022 1026 0 1026 1027 0 1027 1021 0 + 1023 1025 0 1025 1026 0 1022 1023 0 1024 1025 0 1023 1013 0 1013 1024 0 1016 1025 0 + 1024 1015 0 1015 1016 0 1016 1017 0 1017 1026 0 1017 1018 0 1018 1027 0 3130 3131 0 + 903 1029 0 3321 3322 0 902 1030 0 1018 1019 0 1019 1028 0 1028 1027 0 1020 1021 0 + 1028 1020 0 891 893 0 3136 3137 0 3137 891 0 886 891 0 3137 3138 0 3138 886 0 3138 3139 0 + 3139 888 0 888 886 0 3139 3140 0 3140 885 0 885 888 0 3140 3141 0 3141 883 0 883 885 0 + 3142 3143 0 3143 879 0 879 881 0 881 3142 0 3141 3142 0 881 883 0 3143 3144 0 3144 877 0 + 877 879 0 875 877 0 3144 3145 0 3145 875 0 873 875 0 3145 3146 0 3146 873 0 3146 3147 0 + 3147 871 0 871 873 0 3147 3148 0 3148 869 0 869 871 0 3148 3149 0 3149 867 0 867 869 0 + 865 867 0 3149 3150 0 3150 865 0 3162 3163 0 3163 418 0 418 420 0 420 3162 0 3161 3162 0 + 420 422 0 422 3161 0 3160 3161 0 422 424 0 424 3160 0 3159 3160 0 424 428 0 428 3159 0 + 3158 3159 0 428 430 0 430 3158 0 3157 3158 0 430 530 0 530 3157 0 530 532 0 532 3156 0 + 3156 3157 0 532 534 0 534 3155 0 3155 3156 0 3154 3155 0 534 857 0 857 3154 0 3153 3154 0 + 857 859 0 859 3153 0 3152 3153 0 859 861 0 861 3152 0 3151 3152 0 861 863 0 863 3151 0 + 3150 3151 0 863 865 0 1058 1059 0 1059 1049 0 1049 1050 0 1050 1058 0 1060 1061 0 + 1061 1059 0 1058 1060 0 1062 1063 0 1063 1061 0 1060 1062 0 1054 1055 0 1055 1063 0 + 1062 1054 0 1055 1056 0 1056 1064 0 1064 1063 0 1065 1048 0 1048 1049 0 1059 1065 0 + 1061 1066 0 1066 1065 0 1064 1066 0 1056 1057 0 1057 1067 0 1067 1064 0 1068 1047 0 + 1047 1048 0 1065 1068 0 1066 1069 0 1069 1068 0 1067 1069 0 1057 1044 0 1044 1070 0 + 1070 1067 0 1070 1071 0 1071 1069 0 1071 1072 0 1072 1068 0 1072 1046 0 1046 1047 0 + 1058 1051 0 1051 1052 0 1052 1060 0 1052 1053 0 1053 1062 0 1053 1054 0 1050 1051 0 + 1074 1073 0 1073 508 0 506 1074 0 1075 1074 0 507 1075 0 1076 1075 0 514 1076 0 1078 1077 0 + 1077 1102 0 1102 1103 0 1103 1078 0; + setAttr ".ed[2158:2323]" 1079 1078 0 1103 1104 0 1104 1079 0 1080 1079 0 1104 1105 0 + 1105 1080 0 2984 2985 0 2985 425 0 425 415 0 2985 2986 0 2986 431 0 431 425 0 1170 1171 0 + 1171 515 0 515 505 0 505 1170 0 1169 1170 0 505 504 0 504 1169 0 509 1168 0 1168 1169 0 + 504 509 0 3001 3002 0 516 490 0 490 3001 0 3000 3001 0 490 488 0 488 3000 0 2999 3000 0 + 488 485 0 485 2999 0 2998 2999 0 485 471 0 471 2998 0 471 469 0 469 2997 0 2997 2998 0 + 469 467 0 467 2996 0 2996 2997 0 467 465 0 465 2995 0 2995 2996 0 2994 2995 0 465 463 0 + 463 2994 0 2993 2994 0 463 461 0 461 2993 0 461 459 0 459 2992 0 2992 2993 0 459 457 0 + 457 2991 0 2991 2992 0 2990 2991 0 457 455 0 455 2990 0 2989 2990 0 455 453 0 453 2989 0 + 2986 2987 0 2987 449 0 449 431 0 2987 2988 0 2988 451 0 451 449 0 2988 2989 0 453 451 0 + 1102 1110 0 1110 1111 0 1111 1103 0 1111 1112 0 1112 1104 0 1112 1113 0 1113 1105 0 + 1105 1106 0 1106 1081 0 1081 1080 0 1107 1082 0 1082 1081 0 1106 1107 0 1108 1100 0 + 1100 1082 0 1107 1108 0 1109 1108 0 1106 1109 0 1110 1114 0 1114 1115 0 1115 1111 0 + 1115 1116 0 1116 1112 0 1116 1117 0 1117 1113 0 1113 1109 0 1114 1127 0 1127 1128 0 + 1128 1115 0 1128 1129 0 1129 1116 0 1129 1130 0 1130 1117 0 1117 1118 0 1118 1109 0 + 1119 1108 0 1118 1119 0 1101 1100 0 1119 1101 0 1121 1120 0 1120 1073 0 1074 1121 0 + 1122 1121 0 1075 1122 0 1123 1122 0 1076 1123 0 514 1125 0 1125 1124 0 1124 1076 0 + 1130 1131 0 1131 1118 0 1127 1120 0 1121 1128 0 1122 1129 0 1123 1130 0 1123 1126 0 + 1126 1131 0 1124 1126 0 1132 1099 0 1099 1101 0 1119 1132 0 1131 1132 0 1098 1099 0 + 1132 1133 0 1133 1098 0 1126 1133 0 1124 1134 0 1134 1133 0 1134 1097 0 1097 1098 0 + 1125 1135 0 1135 1134 0 1135 1096 0 1096 1097 0 1142 1143 0 1143 1137 0 1136 1142 0 + 1143 1144 0 1144 1138 0 1144 1145 0 1145 1139 0 1139 1140 0 1140 1125 0 1140 1141 0 + 1141 1135 0 1141 1095 0 1095 1096 0 1146 1147 0 1147 1143 0 1142 1146 0 1147 1148 0 + 1148 1144 0 1148 1149 0 1149 1145 0 1158 1159 0 1159 1147 0 1146 1158 0; + setAttr ".ed[2324:2489]" 1159 1160 0 1160 1148 0 1160 1161 0 1161 1149 0 1145 1150 0 + 1150 1140 0 1150 1151 0 1151 1141 0 1151 1094 0 1094 1095 0 1149 1152 0 1152 1150 0 + 1152 1153 0 1153 1151 0 1153 1093 0 1093 1094 0 504 1155 0 1155 1154 0 1154 509 0 + 1156 1155 0 505 1156 0 1157 1156 0 515 1157 0 1155 1159 0 1158 1154 0 1156 1160 0 + 1157 1161 0 1161 1162 0 1162 1152 0 1162 1163 0 1163 1153 0 1163 1092 0 1092 1093 0 + 1157 1164 0 1164 1162 0 1164 1165 0 1165 1163 0 1091 1092 0 1165 1091 0 515 1166 0 + 1166 1164 0 1166 1167 0 1167 1165 0 1167 1090 0 1090 1091 0 1174 1175 0 1175 1086 0 + 1086 1085 0 1085 1174 0 1085 1084 0 1084 1173 0 1173 1174 0 1084 1083 0 1083 1172 0 + 1172 1173 0 1172 1171 0 1170 1173 0 1169 1174 0 1168 1175 0 1171 1176 0 1176 1166 0 + 1176 1177 0 1177 1167 0 1177 1089 0 1089 1090 0 1172 1178 0 1178 1176 0 1178 1179 0 + 1179 1177 0 1179 1088 0 1088 1089 0 1083 1087 0 1087 1178 0 1087 1088 0 1044 1043 0 + 1043 1180 0 1180 1070 0 1180 1181 0 1181 1071 0 1181 1182 0 1182 1072 0 1182 1045 0 + 1045 1046 0 406 418 0 3163 3164 0 3164 406 0 3164 3165 0 3165 402 0 402 406 0 403 402 0 + 3165 3166 0 3166 403 0 409 407 0 407 3167 0 3167 3168 0 407 403 0 3166 3167 0 3006 3007 0 + 3007 497 0 497 499 0 499 3006 0 499 501 0 3005 3006 0 556 497 0 3007 3008 0 3008 556 0 + 3008 3009 0 3009 495 0 495 556 0 3009 3010 0 3010 492 0 492 495 0 512 492 0 3010 3011 0 + 3011 512 0 518 512 0 3011 3012 0 3012 518 0 527 518 0 3012 3013 0 3013 527 0 3013 3014 0 + 3014 525 0 525 527 0 523 525 0 3014 3015 0 3015 523 0 3015 3016 0 3016 520 0 520 523 0 + 3016 3017 0 3017 573 0 573 520 0 3017 3018 0 3018 577 0 577 573 0 3018 3019 0 3019 583 0 + 583 577 0 981 1201 0 1201 3291 0 3291 3292 0 982 1202 0 1202 3100 0 3100 3101 0 1201 1204 0 + 1204 3290 0 3290 3291 0 1202 1205 0 1205 3099 0 3099 3100 0 3289 3290 0 1204 1207 0 + 1207 3289 0 3098 3099 0 1205 1208 0 1208 3098 0 1207 1210 0 1210 3288 0 3288 3289 0 + 1208 1211 0 1211 3097 0 3097 3098 0 948 1232 0 1232 1233 0 1233 950 0; + setAttr ".ed[2490:2655]" 1233 1234 0 1234 969 0 1234 1235 0 1235 972 0 1235 1236 0 + 1236 975 0 1236 1237 0 1237 978 0 1237 1238 0 1238 981 0 3279 3280 0 3280 1214 0 + 1214 1213 0 1213 3279 0 1215 1214 0 3280 3281 0 3281 1215 0 1216 1215 0 3281 3282 0 + 3282 1216 0 3282 3283 0 3283 1217 0 1217 1216 0 1218 1217 0 3283 3284 0 3284 1218 0 + 1219 1218 0 3284 3285 0 3285 1219 0 1238 1239 0 1239 1201 0 3285 3286 0 3286 1227 0 + 1227 1219 0 3286 3287 0 3287 1230 0 1230 1227 0 1210 1230 0 3287 3288 0 3096 3097 0 + 1211 1229 0 1229 3096 0 1262 1263 0 1263 1213 0 1214 1262 0 1261 1262 0 1215 1261 0 + 1260 1261 0 1216 1260 0 1217 1259 0 1259 1260 0 1218 1258 0 1258 1259 0 1257 1258 0 + 1219 1257 0 1256 1257 0 1227 1256 0 1238 1241 0 1241 1240 0 1240 1239 0 1237 1242 0 + 1242 1241 0 1243 1242 0 1236 1243 0 1244 1243 0 1235 1244 0 1234 1245 0 1245 1244 0 + 1233 1246 0 1246 1245 0 1232 1247 0 1247 1246 0 1241 1249 0 1249 1248 0 1248 1240 0 + 1242 1250 0 1250 1249 0 1251 1250 0 1243 1251 0 1252 1251 0 1244 1252 0 1245 1253 0 + 1253 1252 0 1246 1254 0 1254 1253 0 1247 1255 0 1255 1254 0 1207 1240 0 1248 1210 0 + 1204 1239 0 1249 1257 0 1256 1248 0 1250 1258 0 1251 1259 0 1252 1260 0 1253 1261 0 + 1254 1262 0 1255 1263 0 1256 1230 0 1229 1228 0 1228 3095 0 3095 3096 0 3093 3094 0 + 3094 1226 0 1226 1225 0 1225 3093 0 3094 3095 0 1228 1226 0 3092 3093 0 1225 1224 0 + 1224 3092 0 3090 3091 0 3091 1223 0 1223 1222 0 1222 3090 0 3091 3092 0 1224 1223 0 + 3089 3090 0 1222 1220 0 1220 3089 0 3088 3089 0 1220 1221 0 1221 3088 0 3087 3088 0 + 1221 1272 0 1272 3087 0 1213 1274 0 1274 3278 0 3278 3279 0 3277 3278 0 1274 1275 0 + 1275 3277 0 3086 3087 0 1272 1276 0 1276 3086 0 3084 3085 0 3085 1282 0 1282 1278 0 + 1278 3084 0 3275 3276 0 3276 1283 0 1283 1280 0 1280 3275 0 3085 3086 0 1276 1282 0 + 3276 3277 0 1275 1283 0 1280 1284 0 1284 3274 0 3274 3275 0 3083 3084 0 1278 1285 0 + 1285 3083 0 1285 1287 0 1287 3082 0 3082 3083 0 1284 1289 0 1289 3273 0 3273 3274 0 + 1286 1288 0 1288 1293 0 1293 1294 0 1294 1286 0 1279 1286 0 1294 1295 0 1295 1279 0; + setAttr ".ed[2656:2821]" 1291 1290 0 1290 1269 0 1269 1270 0 1270 1291 0 1292 1291 0 + 1270 1271 0 1271 1292 0 1293 1296 0 1296 1297 0 1297 1294 0 1297 1298 0 1298 1295 0 + 1296 1290 0 1291 1297 0 1292 1298 0 1277 1298 0 1292 1273 0 1273 1277 0 1277 1281 0 + 1281 1295 0 1271 1273 0 1281 1279 0 1289 1299 0 1299 3272 0 3272 3273 0 1287 1300 0 + 1300 3081 0 3081 3082 0 3271 3272 0 1299 1302 0 1302 3271 0 3080 3081 0 1300 1303 0 + 1303 3080 0 1302 1305 0 1305 3270 0 3270 3271 0 1303 1306 0 1306 3079 0 3079 3080 0 + 1306 1308 0 1308 3078 0 3078 3079 0 3269 3270 0 1305 1310 0 1310 3269 0 3268 3269 0 + 1310 1311 0 1311 3268 0 3077 3078 0 1308 1312 0 1312 3077 0 3076 3077 0 1312 1314 0 + 1314 3076 0 3267 3268 0 1311 1316 0 1316 3267 0 3075 3076 0 1314 1317 0 1317 3075 0 + 3266 3267 0 1316 1319 0 1319 3266 0 3265 3266 0 1319 1320 0 1320 3265 0 3074 3075 0 + 1317 1321 0 1321 3074 0 3073 3074 0 1321 1323 0 1323 3073 0 3264 3265 0 1320 1325 0 + 1325 3264 0 3072 3073 0 1323 1326 0 1326 3072 0 1325 1328 0 1328 3263 0 3263 3264 0 + 1326 1329 0 1329 3071 0 3071 3072 0 3262 3263 0 1328 1331 0 1331 3262 0 1304 1307 0 + 1307 1346 0 1346 1347 0 1347 1304 0 1335 1334 0 1334 3066 0 3066 3067 0 3067 1335 0 + 1337 1335 0 3067 3068 0 3068 1337 0 1345 1346 0 1307 1309 0 1309 1345 0 1309 1313 0 + 1313 1344 0 1344 1345 0 1339 1337 0 3068 3069 0 3069 1339 0 1313 1315 0 1315 1343 0 + 1343 1344 0 1341 1339 0 3069 3070 0 3070 1341 0 1315 1318 0 1318 1342 0 1342 1343 0 + 1358 1359 0 1359 1330 0 1330 1340 0 1340 1358 0 1357 1358 0 1340 1338 0 1338 1357 0 + 1356 1357 0 1338 1336 0 1336 1356 0 1336 1332 0 1332 1355 0 1355 1356 0 1354 1355 0 + 1332 1333 0 1333 1354 0 1346 1349 0 1349 1348 0 1348 1347 0 1350 1349 0 1345 1350 0 + 1344 1351 0 1351 1350 0 1343 1352 0 1352 1351 0 1342 1353 0 1353 1352 0 1349 1355 0 + 1354 1348 0 1350 1356 0 1351 1357 0 1352 1358 0 1353 1359 0 1342 1322 0 1322 1324 0 + 1324 1353 0 1324 1327 0 1327 1359 0 1318 1322 0 1327 1330 0 1329 1341 0 3070 3071 0 + 3261 3262 0 1331 1360 0 1360 3261 0 1362 1361 0 1361 3259 0 3259 3260 0 3260 1362 0; + setAttr ".ed[2822:2987]" 1360 1362 0 3260 3261 0 1361 1363 0 1363 3258 0 3258 3259 0 + 1363 1364 0 1364 3257 0 3257 3258 0 3256 3257 0 1364 1365 0 1365 3256 0 3065 3066 0 + 1334 1366 0 1366 3065 0 1331 1387 0 1387 1388 0 1388 1360 0 1388 1389 0 1389 1362 0 + 1389 1390 0 1390 1361 0 1365 1372 0 1372 3255 0 3255 3256 0 1366 1373 0 1373 3064 0 + 3064 3065 0 1390 1391 0 1391 1363 0 1391 1392 0 1392 1364 0 1372 1377 0 1377 3254 0 + 3254 3255 0 3063 3064 0 1373 1378 0 1378 3063 0 3062 3063 0 1378 1380 0 1380 3062 0 + 1377 1382 0 1382 3253 0 3253 3254 0 3061 3062 0 1380 1383 0 1383 3061 0 1382 1385 0 + 1385 3252 0 3252 3253 0 1392 1393 0 1393 1365 0 1387 1394 0 1394 1395 0 1395 1388 0 + 1395 1396 0 1396 1389 0 1396 1397 0 1397 1390 0 1397 1398 0 1398 1391 0 1398 1399 0 + 1399 1392 0 1399 1400 0 1400 1393 0 1394 1401 0 1401 1402 0 1402 1395 0 1402 1403 0 + 1403 1396 0 1403 1404 0 1404 1397 0 1404 1405 0 1405 1398 0 1405 1406 0 1406 1399 0 + 1406 1407 0 1407 1400 0 1401 1408 0 1408 1409 0 1409 1402 0 1409 1410 0 1410 1403 0 + 1410 1411 0 1411 1404 0 1411 1412 0 1412 1405 0 1412 1413 0 1413 1406 0 1413 1414 0 + 1414 1407 0 1408 1368 0 1368 1369 0 1369 1409 0 1369 1370 0 1370 1410 0 1370 1371 0 + 1371 1411 0 1371 1375 0 1375 1412 0 1375 1376 0 1376 1413 0 1376 1386 0 1386 1414 0 + 1382 1407 0 1414 1385 0 1377 1400 0 1372 1393 0 3251 3252 0 1385 1386 0 1386 3251 0 + 3060 3061 0 1383 1415 0 1415 3060 0 1368 3245 0 3245 3246 0 3246 1369 0 3246 3247 0 + 3247 1370 0 3248 3249 0 3249 1375 0 1371 3248 0 3249 3250 0 3250 1376 0 3250 3251 0 + 3247 3248 0 3059 3060 0 1415 1422 0 1422 3059 0 1422 1420 0 1420 3058 0 3058 3059 0 + 1420 1421 0 1421 3057 0 3057 3058 0 1421 1419 0 1419 3056 0 3056 3057 0 3055 3056 0 + 1419 1418 0 1418 3055 0 1418 1417 0 1417 3054 0 3054 3055 0 1427 1428 0 1428 1444 0 + 1444 1445 0 1445 1427 0 1426 1427 0 1445 1446 0 1446 1426 0 1425 1426 0 1446 1447 0 + 1447 1425 0 1424 1425 0 1447 1448 0 1448 1424 0 1423 1424 0 1448 1449 0 1449 1423 0 + 1416 1423 0 1449 1450 0 1450 1416 0 1437 1443 0 1443 1444 0 1428 1437 0 3053 3054 0; + setAttr ".ed[2988:3153]" 1417 1438 0 1438 3053 0 1368 1439 0 1439 3244 0 3244 3245 0 + 3052 3053 0 1438 1440 0 1440 3052 0 1439 1442 0 1442 3243 0 3243 3244 0 1443 1467 0 + 1467 1468 0 1468 1444 0 1468 1469 0 1469 1445 0 1469 1470 0 1470 1446 0 1470 1471 0 + 1471 1447 0 1471 1472 0 1472 1448 0 1472 1473 0 1473 1449 0 1473 1474 0 1474 1450 0 + 1452 1451 0 1451 1436 0 1436 1429 0 1429 1452 0 1453 1452 0 1429 1430 0 1430 1453 0 + 1454 1453 0 1430 1431 0 1431 1454 0 1455 1454 0 1431 1432 0 1432 1455 0 1456 1455 0 + 1432 1433 0 1433 1456 0 1457 1456 0 1433 1434 0 1434 1457 0 1458 1457 0 1434 1435 0 + 1435 1458 0 1460 1459 0 1459 3047 0 3047 3048 0 3048 1460 0 1462 1460 0 3048 3049 0 + 3049 1462 0 3050 3051 0 3051 1466 0 1466 1463 0 1463 3050 0 3049 3050 0 1463 1462 0 + 3051 3052 0 1440 1466 0 1467 1475 0 1475 1476 0 1476 1468 0 1476 1477 0 1477 1469 0 + 1477 1478 0 1478 1470 0 1478 1479 0 1479 1471 0 1479 1480 0 1480 1472 0 1480 1481 0 + 1481 1473 0 1481 1482 0 1482 1474 0 1475 1451 0 1452 1476 0 1453 1477 0 1454 1478 0 + 1455 1479 0 1456 1480 0 1457 1481 0 1458 1482 0 1464 1475 0 1467 1465 0 1465 1464 0 + 1443 1441 0 1441 1465 0 1464 1461 0 1461 1451 0 1461 1436 0 1437 1441 0 3242 3243 0 + 1442 1483 0 1483 3242 0 3241 3242 0 1483 1484 0 1484 3241 0 3240 3241 0 1484 1485 0 + 1485 3240 0 3239 3240 0 1485 1486 0 1486 3239 0 3238 3239 0 1486 1487 0 1487 3238 0 + 1487 1488 0 1488 3237 0 3237 3238 0 3046 3047 0 1459 1489 0 1489 3046 0 3236 3237 0 + 1488 1490 0 1490 3236 0 3045 3046 0 1489 1491 0 1491 3045 0 3235 3236 0 1490 1492 0 + 1492 3235 0 3044 3045 0 1491 1493 0 1493 3044 0 3234 3235 0 1492 1494 0 1494 3234 0 + 3043 3044 0 1493 1495 0 1495 3043 0 3233 3234 0 1494 1496 0 1496 3233 0 3042 3043 0 + 1495 1497 0 1497 3042 0 3232 3233 0 1496 1498 0 1498 3232 0 1498 1500 0 1500 3231 0 + 3231 3232 0 3040 3041 0 3041 1499 0 1499 1501 0 1501 3040 0 3230 3231 0 1500 1503 0 + 1503 3230 0 3039 3040 0 1501 1504 0 1504 3039 0 1193 1192 0 1192 1513 0 1513 1514 0 + 1514 1193 0 1194 1193 0 1514 1515 0 1515 1194 0 1195 1194 0 1515 1516 0 1516 1195 0; + setAttr ".ed[3154:3319]" 1196 1195 0 1516 1517 0 1517 1196 0 1197 1196 0 1517 1518 0 + 1518 1197 0 1198 1197 0 1518 1519 0 1519 1198 0 1513 1529 0 1529 1530 0 1530 1514 0 + 1530 1531 0 1531 1515 0 1531 1532 0 1532 1516 0 1532 1533 0 1533 1517 0 1533 1534 0 + 1534 1518 0 1534 1535 0 1535 1519 0 3019 3020 0 3020 1521 0 1521 583 0 3027 3028 0 + 3028 1522 0 1522 1523 0 1523 3027 0 1523 1524 0 1524 3026 0 3026 3027 0 1524 1525 0 + 1525 3025 0 3025 3026 0 1525 1526 0 1526 3024 0 3024 3025 0 1526 1527 0 1527 3023 0 + 3023 3024 0 1527 1528 0 1528 3022 0 3022 3023 0 1529 1538 0 1538 1539 0 1539 1530 0 + 1539 1540 0 1540 1531 0 1540 1541 0 1541 1532 0 1541 1542 0 1542 1533 0 1542 1543 0 + 1543 1534 0 1543 1544 0 1544 1535 0 3020 3021 0 3021 1537 0 1537 1521 0 1538 1545 0 + 1545 1546 0 1546 1539 0 1546 1547 0 1547 1540 0 1547 1548 0 1548 1541 0 1548 1549 0 + 1549 1542 0 1549 1550 0 1550 1543 0 1550 1551 0 1551 1544 0 3021 3022 0 1528 1537 0 + 1545 1506 0 1506 1507 0 1507 1546 0 1507 1508 0 1508 1547 0 1508 1509 0 1509 1548 0 + 1509 1510 0 1510 1549 0 1510 1511 0 1511 1550 0 1511 1512 0 1512 1551 0 1520 1200 0 + 1200 1535 0 1544 1520 0 1551 1536 0 1536 1520 0 1200 1199 0 1199 1519 0 1512 1536 0 + 1199 1198 0 1553 1552 0 1552 3211 0 3211 3212 0 3212 1553 0 1552 581 0 3210 3211 0 + 1554 1553 0 3212 3213 0 3213 1554 0 1555 1554 0 3213 3214 0 3214 1555 0 3215 3216 0 + 3216 1556 0 1556 1557 0 1557 3215 0 3214 3215 0 1557 1555 0 1558 1556 0 3216 3217 0 + 3217 1558 0 1559 1558 0 3217 3218 0 3218 1559 0 3218 3219 0 3219 1560 0 1560 1559 0 + 3028 3029 0 3029 1562 0 1562 1522 0 3219 3220 0 3220 1563 0 1563 1560 0 3225 3226 0 + 3226 1565 0 1565 1572 0 1572 3225 0 3226 3227 0 3227 1567 0 1567 1565 0 3227 3228 0 + 3228 1569 0 1569 1567 0 3228 3229 0 3229 1571 0 1571 1569 0 1503 1571 0 3229 3230 0 + 3224 3225 0 1572 1574 0 1574 3224 0 3223 3224 0 1574 1576 0 1576 3223 0 3222 3223 0 + 1576 1578 0 1578 3222 0 3221 3222 0 1578 1580 0 1580 3221 0 1580 1563 0 3220 3221 0 + 3029 3030 0 3030 1581 0 1581 1562 0 3030 3031 0 3031 1579 0 1579 1581 0 3031 3032 0; + setAttr ".ed[3320:3485]" 3032 1577 0 1577 1579 0 3032 3033 0 3033 1575 0 1575 1577 0 + 3033 3034 0 3034 1573 0 1573 1575 0 1564 1573 0 3034 3035 0 3035 1564 0 3035 3036 0 + 3036 1566 0 1566 1564 0 3036 3037 0 3037 1568 0 1568 1566 0 3037 3038 0 3038 1570 0 + 1570 1568 0 3038 3039 0 1504 1570 0 1333 1367 0 1367 1591 0 1591 1354 0 1591 1592 0 + 1592 1348 0 1592 1593 0 1593 1347 0 1593 1594 0 1594 1304 0 1594 1595 0 1595 1301 0 + 1301 1304 0 1596 1288 0 1288 1301 0 1595 1596 0 1596 1597 0 1597 1293 0 1290 1598 0 + 1598 1268 0 1268 1269 0 1597 1599 0 1599 1296 0 1599 1598 0 1299 1600 0 1600 1601 0 + 1601 1302 0 1289 1602 0 1602 1600 0 1284 1602 0 1601 1305 0 1600 1603 0 1603 1604 0 + 1604 1601 0 1602 1605 0 1605 1603 0 1280 1605 0 1604 1310 0 1603 1606 0 1606 1607 0 + 1607 1604 0 1605 1606 0 1280 1608 0 1608 1606 0 1607 1311 0 1606 1609 0 1609 1610 0 + 1610 1607 0 1610 1316 0 1611 1609 0 1608 1611 0 1612 1609 0 1611 1612 0 1610 1613 0 + 1613 1319 0 1613 1614 0 1614 1320 0 1614 1615 0 1615 1325 0 1614 737 0 737 738 0 + 738 1615 0 1613 600 0 600 737 0 1612 1616 0 1616 1610 0 1616 600 0 1283 1617 0 1617 1608 0 + 1619 1618 0 1618 1275 0 1274 1619 0 1618 1617 0 1620 1274 0 1263 1620 0 1621 1619 0 + 1620 1621 0 948 1622 0 1622 1623 0 1623 1232 0 1623 1624 0 1624 1247 0 1624 1625 0 + 1625 1255 0 1625 1620 0 1623 1626 0 1626 1627 0 1627 1624 0 1627 1628 0 1628 1625 0 + 1628 1621 0 946 1629 0 1629 1622 0 1617 1630 0 1630 1611 0 1619 1631 0 1631 1632 0 + 1632 1618 0 1632 1630 0 1621 1633 0 1633 1631 0 1626 1634 0 1634 1635 0 1635 1627 0 + 1635 1636 0 1636 1628 0 1636 1633 0 1630 1637 0 1637 1612 0 1631 1638 0 1638 1639 0 + 1639 1632 0 1639 1637 0 1633 1640 0 1640 1638 0 1634 1641 0 1641 1642 0 1642 1635 0 + 1642 1643 0 1643 1636 0 1643 1640 0 1637 1644 0 1644 1645 0 1645 1612 0 1638 1646 0 + 1646 1647 0 1647 1639 0 1647 1644 0 1640 1648 0 1648 1646 0 1642 1649 0 1649 1650 0 + 1650 1643 0 1650 1648 0 600 1651 0 1651 1652 0 1652 737 0 1652 1653 0 1653 738 0 + 1645 1654 0 1654 1616 0 1654 1651 0 610 609 0 609 1655 0 1655 1656 0; + setAttr ".ed[3486:3651]" 1656 610 0 611 610 0 1656 1657 0 1657 611 0 612 611 0 + 1657 1658 0 1658 612 0 725 726 0 726 1660 0 1660 1659 0 1659 725 0 609 735 0 735 1661 0 + 1661 1655 0 735 736 0 736 1662 0 1662 1661 0 736 725 0 1659 1662 0 782 781 0 781 1663 0 + 1663 1664 0 1664 782 0 783 612 0 1658 1665 0 1665 783 0 784 783 0 1665 1666 0 1666 784 0 + 785 784 0 1666 1667 0 1667 785 0 786 785 0 1667 1668 0 1668 786 0 787 786 0 1668 1669 0 + 1669 787 0 781 787 0 1669 1663 0 812 1670 0 1670 1671 0 1671 813 0 1670 1672 0 1672 1673 0 + 1673 1671 0 1672 896 0 894 1673 0 1674 1675 0 1675 815 0 814 1674 0 890 1676 0 1676 1677 0 + 1677 892 0 1677 1673 0 1671 1674 0 1677 1674 0 1676 1675 0 1675 1678 0 1678 816 0 + 1676 1679 0 1679 1678 0 887 1679 0 1678 1680 0 1680 817 0 1679 1681 0 1681 1680 0 + 889 1681 0 1680 1682 0 1682 818 0 1681 1683 0 1683 1682 0 1683 1684 0 1684 1685 0 + 1685 1682 0 1685 819 0 884 1686 0 1686 1681 0 1681 1687 0 1687 1688 0 1688 1683 0 + 1686 1689 0 1689 1687 0 1713 1714 0 1714 382 0 824 1692 0 1692 1691 0 1691 744 0 + 1877 1878 0 1878 1690 0 1690 746 0 1691 1693 0 1693 748 0 1694 1692 0 825 1694 0 + 380 1715 0 1715 1716 0 1716 379 0 1695 828 0 829 1696 0 376 1718 0 1718 1719 0 1719 383 0 + 807 1698 0 1697 806 0 1699 709 0 710 1700 0 711 1701 0 712 1702 0 596 1703 0 592 1704 0 + 588 1705 0 589 1706 0 751 1707 0 752 1708 0 753 1709 0 754 1710 0 755 1711 0 745 1712 0 + 746 1713 0 1690 1714 0 1715 1790 0 1790 1791 0 1791 1716 0 1714 1717 0 1717 381 0 + 1717 1715 0 1718 1849 0 1849 1850 0 1850 1719 0 1720 1699 0 385 1720 0 384 1721 0 + 1721 1720 0 1719 1721 0 582 1718 0 1723 1722 0 1722 1552 0 1553 1723 0 1722 579 0 + 1724 1723 0 1554 1724 0 1722 1725 0 1725 580 0 1723 1725 0 1726 1725 0 1724 1726 0 + 377 1727 0 1727 536 0 1728 1727 0 378 1728 0 1716 1728 0 536 1729 0 1729 856 0 1729 1730 0 + 1730 858 0 1731 1670 0 811 1731 0 1732 1731 0 810 1732 0 1733 1732 0 809 1733 0 1734 1741 0 + 1741 1742 0 1742 1735 0 1735 1733 0; + setAttr ".ed[3652:3817]" 822 1736 0 1736 1734 0 821 1737 0 1737 1736 0 1738 1737 0 + 820 1738 0 1685 1738 0 1684 1739 0 1739 1738 0 1739 1740 0 1740 1737 0 1741 1759 0 + 1759 1760 0 1760 1742 0 1736 1743 0 1743 1741 0 1740 1743 0 1742 1744 0 1744 1733 0 + 1744 1745 0 1745 1732 0 1745 1746 0 1746 1731 0 1746 1672 0 1696 1748 0 1748 1747 0 + 1747 827 0 1797 1798 0 1798 1749 0 1749 829 0 742 1750 0 1750 1694 0 1749 1748 0 + 1760 1761 0 1761 1744 0 1751 1750 0 750 1751 0 1751 1802 0 1802 1803 0 1803 1750 0 + 1752 1751 0 740 1752 0 1748 1754 0 1754 1753 0 1753 1747 0 1798 1799 0 1799 1755 0 + 1755 1749 0 1755 1754 0 1761 1762 0 1762 1745 0 1840 1841 0 1841 1752 0 1664 1757 0 + 1757 1756 0 1756 782 0 1746 898 0 1746 1758 0 1758 900 0 1759 1765 0 1765 1766 0 + 1766 1760 0 1766 1767 0 1767 1761 0 1767 1768 0 1768 1762 0 1762 1758 0 1758 1763 0 + 1763 902 0 1762 1764 0 1764 1763 0 1765 826 0 827 1766 0 1747 1767 0 1753 1768 0 + 1763 1769 0 1769 1030 0 1770 904 0 1769 1770 0 1768 1771 0 1771 1764 0 1773 1772 0 + 1772 1754 0 1755 1773 0 1774 1753 0 1772 1774 0 1774 1771 0 1799 1800 0 1800 1773 0 + 920 1775 0 1775 1776 0 1776 922 0 1776 1777 0 1777 924 0 1777 1778 0 1778 926 0 1775 912 0 + 910 1776 0 908 1777 0 906 1778 0 1775 916 0 1779 928 0 1778 1779 0 1780 1779 0 906 1780 0 + 1770 1780 0 1781 930 0 1779 1781 0 1782 932 0 1781 1782 0 1783 934 0 1782 1783 0 + 1783 1784 0 1784 936 0 1784 1785 0 1785 938 0 1785 1786 0 1786 940 0 1786 1787 0 + 1787 942 0 1787 1788 0 1788 944 0 1788 1629 0 1764 1789 0 1789 1769 0 1790 1882 0 + 1882 1883 0 1883 1791 0 1717 1792 0 1792 1790 0 1714 1793 0 1793 1792 0 1794 1793 0 + 1690 1794 0 1792 1881 0 1881 1882 0 1793 1880 0 1880 1881 0 1794 1879 0 1879 1880 0 + 1694 1804 0 1804 1796 0 1796 1692 0 1803 1804 0 1802 1801 0 1801 1800 0 1799 1802 0 + 1798 1803 0 1797 1804 0 1795 1796 0 1806 1805 0 1805 1810 0 1810 1811 0 1811 1806 0 + 1807 1806 0 1811 1812 0 1812 1807 0 1808 1807 0 1812 1813 0 1813 1808 0 1809 1808 0 + 1813 1814 0 1814 1809 0 1878 1879 0 1810 1796 0 1795 1811 0; + setAttr ".ed[3818:3983]" 828 1812 0 1695 1813 0 826 1814 0 1691 1810 0 1805 1693 0 + 1816 1771 0 1774 1815 0 1815 1816 0 1816 1789 0 1780 1817 0 1817 1781 0 1789 1818 0 + 1818 1770 0 1818 1817 0 1819 1782 0 1817 1819 0 1818 1820 0 1820 1819 0 1816 1820 0 + 1819 1821 0 1821 1783 0 1822 1821 0 1820 1822 0 1815 1822 0 1772 1823 0 1823 1815 0 + 1773 1824 0 1824 1823 0 1800 1825 0 1825 1824 0 1826 726 0 725 1827 0 736 1828 0 + 735 1829 0 609 1830 0 610 1831 0 611 1832 0 612 1833 0 783 1834 0 784 1835 0 785 1836 0 + 786 1837 0 787 1838 0 781 1839 0 782 1840 0 1756 1841 0 1801 1842 0 1842 1825 0 1841 1842 0 + 1801 1752 0 1821 1843 0 1843 1784 0 1822 1844 0 1844 1843 0 1823 1844 0 1824 1845 0 + 1845 1844 0 1842 1846 0 1846 1845 0 1845 1825 0 1756 1846 0 1845 1847 0 1847 1843 0 + 1848 1846 0 1757 1848 0 1848 1847 0 1849 1856 0 1856 1857 0 1857 1850 0 1850 1851 0 + 1851 1721 0 1851 1852 0 1852 1720 0 1852 1853 0 1853 1699 0 1854 709 0 1853 1854 0 + 582 1855 0 1855 1849 0 1725 1855 0 1856 1884 0 1884 1885 0 1885 1857 0 1858 1856 0 + 1855 1858 0 1726 1858 0 1857 1859 0 1859 1851 0 1859 1860 0 1860 1852 0 1860 1861 0 + 1861 1853 0 1861 1862 0 1862 1854 0 715 1864 0 1863 716 0 714 1865 0 713 1866 0 597 1867 0 + 593 1868 0 586 1869 0 587 1870 0 756 1871 0 757 1872 0 758 1873 0 759 1874 0 760 1875 0 + 747 1876 0 748 1877 0 1693 1878 0 1805 1879 0 1806 1880 0 1807 1881 0 1808 1882 0 + 1809 1883 0 1862 1863 0 1884 1886 0 1886 1887 0 1887 1885 0 1886 806 0 1697 1887 0 + 1885 1888 0 1888 1859 0 1888 1889 0 1889 1860 0 1889 1890 0 1890 1861 0 1890 1891 0 + 1891 1862 0 1891 716 0 1887 1892 0 1892 1888 0 1892 1893 0 1893 1889 0 1893 1894 0 + 1894 1890 0 1894 1895 0 1895 1891 0 1895 720 0 1896 1892 0 1896 1897 0 1897 1893 0 + 1897 1898 0 1898 1894 0 1898 1899 0 1899 1895 0 1899 804 0 1899 1900 0 1900 805 0 + 1898 1901 0 1901 1900 0 1897 1902 0 1902 1901 0 1903 1902 0 789 1905 0 1905 1904 0 + 1904 788 0 790 1906 0 1906 1905 0 791 1907 0 1907 1906 0 792 1908 0 1908 1907 0 793 1909 0 + 1909 1908 0 794 1910 0; + setAttr ".ed[3984:4149]" 1910 1909 0 795 1911 0 1911 1910 0 796 1912 0 1912 1911 0 + 797 1913 0 1913 1912 0 798 1914 0 1914 1913 0 799 1915 0 1915 1914 0 800 1916 0 1916 1915 0 + 801 1917 0 1917 1916 0 802 1918 0 1918 1917 0 803 1919 0 1919 1918 0 1904 1919 0 + 1905 1921 0 1921 1920 0 1920 1904 0 1906 1922 0 1922 1921 0 1907 1923 0 1923 1922 0 + 1908 1924 0 1924 1923 0 1909 1925 0 1925 1924 0 1910 1926 0 1926 1925 0 1911 1927 0 + 1927 1926 0 1912 1928 0 1928 1927 0 1913 1929 0 1929 1928 0 1914 1930 0 1930 1929 0 + 1915 1931 0 1931 1930 0 1916 1932 0 1932 1931 0 1917 1933 0 1933 1932 0 1918 1934 0 + 1934 1933 0 1919 1935 0 1935 1934 0 1920 1935 0 1928 1937 0 1937 1938 0 1938 1927 0 + 1936 1937 0 1929 1936 0 1572 1937 0 1936 1574 0 1565 1938 0 1939 1938 0 1567 1939 0 + 1939 1940 0 1940 1927 0 1940 1941 0 1941 1926 0 1941 1942 0 1942 1925 0 1940 1943 0 + 1943 1944 0 1944 1941 0 1939 1945 0 1945 1943 0 1569 1945 0 1944 1946 0 1946 1942 0 + 1942 1947 0 1947 1924 0 807 1948 0 1948 1949 0 1949 1698 0 1949 1950 0 1950 1903 0 + 1900 1951 0 1951 722 0 1901 1952 0 1952 1951 0 1902 1953 0 1953 1952 0 1950 1953 0 + 1948 1954 0 1954 1955 0 1955 1949 0 1955 1956 0 1956 1950 0 1951 1957 0 1957 724 0 + 1952 1958 0 1958 1957 0 1953 1959 0 1959 1958 0 1956 1959 0 1954 1960 0 1960 1961 0 + 1961 1955 0 1961 1962 0 1962 1956 0 1957 1963 0 1963 718 0 1958 1964 0 1964 1963 0 + 1959 1964 0 1962 1964 0 1963 1965 0 1965 1826 0 1965 1966 0 1966 726 0 1967 1660 0 + 1966 1967 0 1964 1968 0 1968 1965 0 1962 1969 0 1969 1968 0 1961 1970 0 1970 1969 0 + 1969 1966 0 1970 1967 0 1946 1971 0 1971 1947 0 1972 1945 0 1571 1972 0 1503 1973 0 + 1973 1972 0 1974 1973 0 1500 1974 0 1973 1943 0 1974 1944 0 1974 1975 0 1975 1946 0 + 1498 1975 0 1975 1976 0 1976 1971 0 1496 1976 0 3041 3042 0 1497 1499 0 1978 1977 0 + 1977 1923 0 1924 1978 0 1977 1979 0 1979 1922 0 1979 1980 0 1980 1921 0 1947 1981 0 + 1981 1978 0 1971 1982 0 1982 1981 0 1976 1983 0 1983 1982 0 1494 1983 0 1492 1984 0 + 1984 1983 0 1490 1985 0 1985 1984 0 1488 1986 0 1986 1985 0 1487 1987 0; + setAttr ".ed[4150:4315]" 1987 1986 0 1486 1988 0 1988 1987 0 1485 1989 0 1989 1988 0 + 1408 1990 0 1990 1439 0 1990 1991 0 1991 1442 0 1991 1992 0 1992 1483 0 1992 1993 0 + 1993 1484 0 1993 1989 0 1994 1982 0 1984 1994 0 1985 1995 0 1995 1994 0 1994 1978 0 + 1995 1977 0 1986 1996 0 1996 1995 0 1996 1979 0 1920 1998 0 1998 1997 0 1997 1935 0 + 1980 1998 0 2000 1999 0 1999 1785 0 1784 2000 0 2000 1847 0 1848 1999 0 1757 2001 0 + 2001 1999 0 2001 1786 0 1664 2002 0 2002 2001 0 2002 1787 0 1663 2003 0 2003 2002 0 + 2003 1788 0 1669 2004 0 2004 2003 0 1668 2005 0 2005 2004 0 2006 1626 0 1622 2006 0 + 2004 2007 0 2007 1788 0 2007 2008 0 2008 1629 0 2008 2006 0 2005 2009 0 2009 2007 0 + 2006 2010 0 2010 1634 0 2007 2010 0 2010 2011 0 2011 1641 0 2011 1649 0 2009 2011 0 + 1662 2025 0 2025 2026 0 2026 1661 0 2026 2027 0 2027 1655 0 1658 2021 0 2021 2022 0 + 2022 1665 0 1644 2012 0 2012 2013 0 2013 1645 0 1647 2014 0 2014 2012 0 2013 1654 0 + 2013 2015 0 2015 1651 0 2017 2016 0 2016 1653 0 1652 2017 0 2015 2017 0 2018 2014 0 + 1646 2018 0 1648 2019 0 2019 2018 0 1649 2020 0 2020 2019 0 2019 1650 0 2009 2020 0 + 2021 2014 0 2018 2022 0 2019 2023 0 2023 2022 0 2023 1666 0 2023 2024 0 2024 1667 0 + 2020 2024 0 2024 2005 0 2025 2016 0 2017 2026 0 2015 2027 0 2012 2028 0 2028 2029 0 + 2029 2013 0 2021 2028 0 2028 1657 0 1656 2029 0 2027 2029 0 2031 2030 0 2030 1387 0 + 1331 2031 0 1615 2032 0 2032 1328 0 2032 2031 0 1987 2033 0 2033 1996 0 1988 2034 0 + 2034 2033 0 1989 2035 0 2035 2034 0 1408 2036 0 2036 2037 0 2037 1990 0 2037 2038 0 + 2038 1991 0 2038 2039 0 2039 1992 0 2039 1993 0 2039 2035 0 2030 2040 0 2040 1394 0 + 2040 2041 0 2041 1401 0 2041 2036 0 2031 2042 0 2042 2043 0 2043 2030 0 738 2044 0 + 2044 2032 0 2044 2042 0 2036 2045 0 2045 2046 0 2046 2037 0 2046 2047 0 2047 2038 0 + 2047 1960 0 1960 2039 0 2043 2040 0 2043 2048 0 2048 2041 0 2048 2045 0 1653 2049 0 + 2049 2044 0 1659 2050 0 2050 2025 0 2016 2050 0 2050 2049 0 2047 1970 0 2047 2051 0 + 2051 1967 0 2046 2052 0 2052 2051 0 2048 2052 0 2053 2050 0 1660 2053 0 2054 2049 0; + setAttr ".ed[4316:4481]" 2053 2054 0 2054 2042 0 2054 2055 0 2055 2043 0 2055 2052 0 + 2053 2056 0 2056 2055 0 2056 2051 0 1967 2056 0 1954 2057 0 2057 2039 0 2058 2035 0 + 2057 2058 0 2066 2062 0 2062 1948 0 1979 2059 0 2059 2060 0 2060 1980 0 2033 2059 0 + 2034 2061 0 2061 2059 0 2061 2062 0 2062 2060 0 1998 2064 0 2064 2063 0 2063 1997 0 + 2060 2064 0 2064 2066 0 2065 2063 0 2062 2057 0 2058 2061 0 1856 2067 0 2067 2068 0 + 2068 1884 0 2068 2069 0 2069 1886 0 2069 2065 0 1858 2070 0 2070 2067 0 2070 2071 0 + 2071 2068 0 2071 2072 0 2072 2069 0 2072 2063 0 1726 2073 0 2073 2070 0 2073 2074 0 + 2074 2071 0 2074 2075 0 2075 2072 0 2075 1997 0 1997 2076 0 2076 1934 0 2075 2077 0 + 2077 2076 0 2076 2078 0 2078 1933 0 1930 2080 0 2080 2079 0 2079 1929 0 1931 2081 0 + 2081 2080 0 1932 2082 0 2082 2081 0 2078 2082 0 2079 2083 0 2083 1936 0 2083 1576 0 + 2083 2084 0 2084 1578 0 2085 1580 0 2084 2085 0 2086 1563 0 2085 2086 0 2087 1724 0 + 1555 2087 0 2088 2087 0 1557 2088 0 1556 2089 0 2089 2088 0 1558 2090 0 2090 2089 0 + 1559 2091 0 2091 2090 0 1560 2092 0 2092 2091 0 2086 2092 0 2079 2093 0 2093 2084 0 + 2093 2094 0 2094 2085 0 2094 2095 0 2095 2086 0 2087 2096 0 2096 2097 0 2097 1724 0 + 2088 2098 0 2098 2096 0 2089 2099 0 2099 2098 0 2090 2099 0 2091 2100 0 2100 2099 0 + 2092 2101 0 2101 2100 0 2095 2101 0 2097 2073 0 2097 2102 0 2102 2074 0 2102 2077 0 + 2077 2103 0 2103 2078 0 2104 2103 0 2102 2104 0 2103 2105 0 2105 2082 0 2106 2105 0 + 2104 2106 0 2107 2093 0 2080 2107 0 2107 2108 0 2108 2094 0 2081 2108 0 2109 2095 0 + 2108 2109 0 2081 2110 0 2110 2109 0 2105 2110 0 2106 2110 0 2111 2109 0 2106 2111 0 + 2111 2101 0 2096 2112 0 2112 2102 0 2112 2113 0 2113 2104 0 2114 2100 0 2111 2114 0 + 2114 2115 0 2115 2099 0 2115 2116 0 2116 2098 0 2116 2112 0 2115 2113 0 2117 2114 0 + 2106 2117 0 2113 2117 0 1730 2118 0 2118 860 0 2120 2119 0 2119 864 0 862 2120 0 + 2119 2121 0 2121 866 0 2118 2120 0 1716 2122 0 2122 2123 0 2123 1728 0 2123 2124 0 + 2124 1727 0 2124 1729 0 2124 2125 0 2125 1730 0 2125 2126 0 2126 2118 0 2126 2127 0; + setAttr ".ed[4482:4647]" 2127 2120 0 2127 2128 0 2128 2119 0 2128 2129 0 2129 2121 0 + 2121 2130 0 2130 868 0 2129 2131 0 2131 2130 0 2131 2132 0 2132 2133 0 2133 2130 0 + 2133 870 0 882 2134 0 2134 1686 0 880 2135 0 2135 2134 0 878 2136 0 2136 2135 0 876 2137 0 + 2137 2136 0 874 2138 0 2138 2137 0 872 2139 0 2139 2138 0 2133 2139 0 2132 2140 0 + 2140 2139 0 2141 2138 0 2140 2141 0 2142 2137 0 2141 2142 0 2142 2143 0 2143 2136 0 + 2144 2135 0 2143 2144 0 2145 2134 0 2144 2145 0 2145 1689 0 1765 2146 0 2146 2147 0 + 2147 826 0 2147 2148 0 2148 1814 0 1743 2149 0 2149 1759 0 2149 2146 0 1791 2150 0 + 2150 2122 0 2151 2150 0 1883 2151 0 2152 2151 0 1809 2152 0 2148 2152 0 2154 2153 0 + 2153 1740 0 1739 2154 0 2153 2149 0 2153 2155 0 2155 2146 0 2156 2155 0 2154 2156 0 + 2146 2157 0 2157 2158 0 2158 2147 0 2158 2152 0 2158 2159 0 2159 2151 0 2157 2160 0 + 2160 2159 0 2155 2161 0 2161 2157 0 2161 2162 0 2162 2160 0 2156 2162 0 1684 2163 0 + 2163 2164 0 2164 1739 0 1688 2163 0 2164 2165 0 2165 2154 0 2151 2166 0 2166 2167 0 + 2167 2150 0 2167 2123 0 2159 2168 0 2168 2166 0 2145 2169 0 2169 2170 0 2170 1689 0 + 2126 2171 0 2171 2172 0 2172 2127 0 2172 2173 0 2173 2128 0 2173 2174 0 2174 2129 0 + 2174 2131 0 2174 2175 0 2175 2132 0 2175 2140 0 2175 2176 0 2176 2141 0 2176 2177 0 + 2177 2142 0 2177 2178 0 2178 2143 0 2178 2144 0 2178 2169 0 2123 2179 0 2179 2125 0 + 2179 2171 0 2180 2179 0 2167 2180 0 2180 2181 0 2181 2171 0 2182 2180 0 2166 2182 0 + 2183 2182 0 2168 2183 0 2185 2184 0 2184 2182 0 2183 2185 0 2184 2181 0 2186 2168 0 + 2160 2186 0 2186 2187 0 2187 2183 0 2162 2187 0 2188 2185 0 2187 2188 0 2156 2188 0 + 2181 2189 0 2189 2172 0 2190 2189 0 2184 2190 0 2185 2191 0 2191 2190 0 2192 2191 0 + 2188 2192 0 2193 2192 0 2156 2193 0 2170 1688 0 2165 2193 0 2194 2165 0 2163 2194 0 + 2170 2194 0 2194 2195 0 2195 2193 0 2169 2195 0 2196 2192 0 2195 2196 0 2178 2196 0 + 2197 2191 0 2196 2197 0 2177 2197 0 2197 2198 0 2198 2199 0 2199 2191 0 2200 2190 0 + 2199 2200 0 2176 2198 0 2201 2189 0 2200 2201 0 2201 2173 0 2174 2198 0; + setAttr ".ed[4648:4813]" 2174 2200 0 2202 2203 0 2203 2221 0 2221 2220 0 2220 2202 0 + 2203 2204 0 2204 2222 0 2222 2221 0 2204 2205 0 2205 2223 0 2223 2222 0 2205 2206 0 + 2206 2224 0 2224 2223 0 2206 2207 0 2207 2225 0 2225 2224 0 2207 2208 0 2208 2226 0 + 2226 2225 0 2208 2209 0 2209 2227 0 2227 2226 0 2209 2210 0 2210 2228 0 2228 2227 0 + 2210 2211 0 2211 2229 0 2229 2228 0 2211 2212 0 2212 2230 0 2230 2229 0 2212 2213 0 + 2213 2231 0 2231 2230 0 2213 2214 0 2214 2232 0 2232 2231 0 2214 2215 0 2215 2233 0 + 2233 2232 0 2215 2216 0 2216 2234 0 2234 2233 0 2216 2217 0 2217 2235 0 2235 2234 0 + 2217 2218 0 2218 2236 0 2236 2235 0 2218 2219 0 2219 2237 0 2237 2236 0 2219 2202 0 + 2220 2237 0 2238 2239 0 2239 2257 0 2257 2256 0 2256 2238 0 2239 2240 0 2240 2258 0 + 2258 2257 0 2240 2241 0 2241 2259 0 2259 2258 0 2241 2242 0 2242 2260 0 2260 2259 0 + 2242 2243 0 2243 2261 0 2261 2260 0 2243 2244 0 2244 2262 0 2262 2261 0 2244 2245 0 + 2245 2263 0 2263 2262 0 2245 2246 0 2246 2264 0 2264 2263 0 2246 2247 0 2247 2265 0 + 2265 2264 0 2247 2248 0 2248 2266 0 2266 2265 0 2248 2249 0 2249 2267 0 2267 2266 0 + 2249 2250 0 2250 2268 0 2268 2267 0 2250 2251 0 2251 2269 0 2269 2268 0 2251 2252 0 + 2252 2270 0 2270 2269 0 2252 2253 0 2253 2271 0 2271 2270 0 2253 2254 0 2254 2272 0 + 2272 2271 0 2254 2255 0 2255 2273 0 2273 2272 0 2255 2238 0 2256 2273 0 2274 2275 0 + 2275 2293 0 2293 2292 0 2292 2274 0 2275 2276 0 2276 2294 0 2294 2293 0 2276 2277 0 + 2277 2295 0 2295 2294 0 2277 2278 0 2278 2296 0 2296 2295 0 2278 2279 0 2279 2297 0 + 2297 2296 0 2279 2280 0 2280 2298 0 2298 2297 0 2280 2281 0 2281 2299 0 2299 2298 0 + 2281 2282 0 2282 2300 0 2300 2299 0 2282 2283 0 2283 2301 0 2301 2300 0 2283 2284 0 + 2284 2302 0 2302 2301 0 2284 2285 0 2285 2303 0 2303 2302 0 2285 2286 0 2286 2304 0 + 2304 2303 0 2286 2287 0 2287 2305 0 2305 2304 0 2287 2288 0 2288 2306 0 2306 2305 0 + 2288 2289 0 2289 2307 0 2307 2306 0 2289 2290 0 2290 2308 0 2308 2307 0 2290 2291 0 + 2291 2309 0 2309 2308 0 2291 2274 0 2292 2309 0 2310 2311 0 2311 2329 0 2329 2328 0; + setAttr ".ed[4814:4979]" 2328 2310 0 2311 2312 0 2312 2330 0 2330 2329 0 2312 2313 0 + 2313 2331 0 2331 2330 0 2313 2314 0 2314 2332 0 2332 2331 0 2314 2315 0 2315 2333 0 + 2333 2332 0 2315 2316 0 2316 2334 0 2334 2333 0 2316 2317 0 2317 2335 0 2335 2334 0 + 2317 2318 0 2318 2336 0 2336 2335 0 2318 2319 0 2319 2337 0 2337 2336 0 2319 2320 0 + 2320 2338 0 2338 2337 0 2320 2321 0 2321 2339 0 2339 2338 0 2321 2322 0 2322 2340 0 + 2340 2339 0 2322 2323 0 2323 2341 0 2341 2340 0 2323 2324 0 2324 2342 0 2342 2341 0 + 2324 2325 0 2325 2343 0 2343 2342 0 2325 2326 0 2326 2344 0 2344 2343 0 2326 2327 0 + 2327 2345 0 2345 2344 0 2327 2310 0 2328 2345 0 2229 2417 0 2417 2400 0 2400 2228 0 + 2273 2453 0 2453 2436 0 2436 2272 0 2346 2347 0 2347 2350 0 2350 2351 0 2351 2346 0 + 2347 2380 0 2380 2381 0 2381 2350 0 2353 2352 0 2352 2390 0 2390 2391 0 2391 2353 0 + 2355 2354 0 2354 2392 0 2392 2393 0 2393 2355 0 2357 2356 0 2356 2394 0 2394 2395 0 + 2395 2357 0 2351 2382 0 2382 2383 0 2383 2346 0 2361 2360 0 2360 2388 0 2388 2389 0 + 2389 2361 0 2358 2398 0 2398 2399 0 2399 2359 0 2359 2358 0 2348 2349 0 2349 2365 0 + 2365 2364 0 2364 2348 0 2418 2419 0 2419 2367 0 2367 2366 0 2366 2418 0 2420 2421 0 + 2421 2369 0 2369 2368 0 2368 2420 0 2369 2371 0 2371 2370 0 2370 2368 0 2349 2424 0 + 2424 2425 0 2425 2365 0 2373 2372 0 2372 2374 0 2374 2375 0 2375 2373 0 2371 2377 0 + 2377 2376 0 2376 2370 0 2379 2378 0 2378 2430 0 2430 2431 0 2431 2379 0 2353 2381 0 + 2380 2352 0 2416 2417 0 2230 2416 0 2382 2384 0 2384 2385 0 2385 2383 0 2400 2401 0 + 2401 2227 0 2384 2386 0 2386 2387 0 2387 2385 0 2401 2402 0 2402 2226 0 2386 2360 0 + 2361 2387 0 2402 2403 0 2403 2225 0 2403 2404 0 2404 2224 0 2363 2389 0 2388 2362 0 + 2362 2363 0 2404 2405 0 2405 2223 0 2233 2413 0 2413 2414 0 2414 2232 0 2390 2354 0 + 2355 2391 0 2414 2415 0 2415 2231 0 2415 2416 0 2392 2356 0 2357 2393 0 2234 2412 0 + 2412 2413 0 2411 2412 0 2235 2411 0 2394 2396 0 2396 2397 0 2397 2395 0 2410 2411 0 + 2236 2410 0 2396 2358 0 2359 2397 0 2237 2409 0 2409 2410 0 2408 2409 0 2220 2408 0; + setAttr ".ed[4980:5145]" 2398 2363 0 2362 2399 0 2407 2408 0 2221 2407 0 2222 2406 0 + 2406 2407 0 2405 2406 0 2383 2401 0 2400 2346 0 2385 2402 0 2387 2403 0 2361 2404 0 + 2389 2405 0 2363 2406 0 2398 2407 0 2358 2408 0 2396 2409 0 2394 2410 0 2356 2411 0 + 2392 2412 0 2354 2413 0 2390 2414 0 2352 2415 0 2380 2416 0 2347 2417 0 2364 2419 0 + 2418 2348 0 2436 2437 0 2437 2271 0 2437 2438 0 2438 2270 0 2367 2421 0 2420 2366 0 + 2438 2439 0 2439 2269 0 2439 2440 0 2440 2268 0 2440 2441 0 2441 2267 0 2441 2442 0 + 2442 2266 0 2423 2422 0 2422 2376 0 2377 2423 0 2442 2443 0 2443 2265 0 2424 2426 0 + 2426 2427 0 2427 2425 0 2256 2452 0 2452 2453 0 2426 2428 0 2428 2429 0 2429 2427 0 + 2257 2451 0 2451 2452 0 2428 2372 0 2373 2429 0 2450 2451 0 2258 2450 0 2449 2450 0 + 2259 2449 0 2430 2422 0 2423 2431 0 2443 2444 0 2444 2264 0 2444 2445 0 2445 2263 0 + 2433 2432 0 2432 2378 0 2379 2433 0 2435 2434 0 2434 2432 0 2433 2435 0 2445 2446 0 + 2446 2262 0 2446 2447 0 2447 2261 0 2448 2449 0 2260 2448 0 2447 2448 0 2374 2434 0 + 2435 2375 0 2418 2437 0 2436 2348 0 2366 2438 0 2420 2439 0 2368 2440 0 2370 2441 0 + 2376 2442 0 2422 2443 0 2430 2444 0 2378 2445 0 2432 2446 0 2434 2447 0 2374 2448 0 + 2372 2449 0 2428 2450 0 2426 2451 0 2424 2452 0 2349 2453 0 2455 2454 0 2454 2351 0 + 2350 2455 0 2455 2456 0 2456 2457 0 2457 2454 0 2365 2458 0 2458 2459 0 2459 2364 0 + 2458 2457 0 2456 2459 0 2381 2460 0 2460 2455 0 2460 2461 0 2461 2456 0 2459 2462 0 + 2462 2419 0 2461 2462 0 2454 2463 0 2463 2382 0 2457 2464 0 2464 2463 0 2425 2465 0 + 2465 2458 0 2465 2464 0 2463 2466 0 2466 2384 0 2464 2467 0 2467 2466 0 2427 2468 0 + 2468 2465 0 2468 2467 0 2214 2487 0 2487 2488 0 2488 2215 0 2504 2487 0 2213 2504 0 + 2212 2503 0 2503 2504 0 2502 2503 0 2211 2502 0 2501 2502 0 2210 2501 0 2500 2501 0 + 2209 2500 0 2208 2499 0 2499 2500 0 2207 2498 0 2498 2499 0 2497 2498 0 2206 2497 0 + 2496 2497 0 2205 2496 0 2204 2495 0 2495 2496 0 2494 2495 0 2203 2494 0 2493 2494 0 + 2202 2493 0 2492 2493 0 2219 2492 0 2491 2492 0 2218 2491 0 2488 2489 0 2489 2216 0; + setAttr ".ed[5146:5311]" 2490 2491 0 2217 2490 0 2489 2490 0 2470 2469 0 2469 2340 0 + 2341 2470 0 2471 2470 0 2342 2471 0 2472 2471 0 2343 2472 0 2344 2473 0 2473 2472 0 + 2345 2474 0 2474 2473 0 2328 2475 0 2475 2474 0 2329 2476 0 2476 2475 0 2330 2477 0 + 2477 2476 0 2478 2477 0 2331 2478 0 2332 2479 0 2479 2478 0 2333 2480 0 2480 2479 0 + 2481 2480 0 2334 2481 0 2482 2481 0 2335 2482 0 2336 2483 0 2483 2482 0 2337 2484 0 + 2484 2483 0 2338 2485 0 2485 2484 0 2486 2485 0 2339 2486 0 2469 2486 0 2487 2469 0 + 2470 2488 0 2471 2489 0 2472 2490 0 2473 2491 0 2474 2492 0 2475 2493 0 2476 2494 0 + 2477 2495 0 2478 2496 0 2479 2497 0 2480 2498 0 2481 2499 0 2482 2500 0 2483 2501 0 + 2484 2502 0 2485 2503 0 2486 2504 0 2305 2523 0 2523 2524 0 2524 2304 0 2306 2540 0 + 2540 2523 0 2539 2540 0 2307 2539 0 2538 2539 0 2308 2538 0 2537 2538 0 2309 2537 0 + 2292 2536 0 2536 2537 0 2293 2535 0 2535 2536 0 2294 2534 0 2534 2535 0 2295 2533 0 + 2533 2534 0 2532 2533 0 2296 2532 0 2531 2532 0 2297 2531 0 2530 2531 0 2298 2530 0 + 2529 2530 0 2299 2529 0 2524 2525 0 2525 2303 0 2525 2526 0 2526 2302 0 2526 2527 0 + 2527 2301 0 2527 2528 0 2528 2300 0 2528 2529 0 2506 2505 0 2505 2251 0 2250 2506 0 + 2507 2506 0 2249 2507 0 2508 2507 0 2248 2508 0 2509 2508 0 2247 2509 0 2510 2509 0 + 2246 2510 0 2511 2510 0 2245 2511 0 2244 2512 0 2512 2511 0 2243 2513 0 2513 2512 0 + 2242 2514 0 2514 2513 0 2241 2515 0 2515 2514 0 2516 2515 0 2240 2516 0 2517 2516 0 + 2239 2517 0 2518 2517 0 2238 2518 0 2519 2518 0 2255 2519 0 2254 2520 0 2520 2519 0 + 2253 2521 0 2521 2520 0 2252 2522 0 2522 2521 0 2505 2522 0 2523 2505 0 2506 2524 0 + 2507 2525 0 2508 2526 0 2509 2527 0 2510 2528 0 2511 2529 0 2512 2530 0 2513 2531 0 + 2514 2532 0 2515 2533 0 2516 2534 0 2517 2535 0 2518 2536 0 2519 2537 0 2520 2538 0 + 2521 2539 0 2522 2540 0 2466 2541 0 2541 2386 0 2542 2468 0 2429 2542 0 2467 2543 0 + 2543 2544 0 2544 2466 0 2468 2545 0 2545 2543 0 2542 2546 0 2546 2545 0 2544 2547 0 + 2547 2541 0 2462 2548 0 2548 2367 0 2549 2460 0 2353 2549 0 2460 2550 0 2550 2551 0; + setAttr ".ed[5312:5477]" 2551 2461 0 2551 2552 0 2552 2462 0 2549 2553 0 2553 2550 0 + 2554 2548 0 2552 2554 0 2541 2555 0 2555 2360 0 2555 2556 0 2556 2388 0 2556 2557 0 + 2557 2362 0 2557 2558 0 2558 2399 0 2558 2559 0 2559 2359 0 2559 2560 0 2560 2397 0 + 2560 2561 0 2561 2395 0 2561 2562 0 2562 2357 0 2562 2563 0 2563 2393 0 2563 2564 0 + 2564 2355 0 2564 2565 0 2565 2391 0 2565 2549 0 2548 2566 0 2566 2421 0 2371 2567 0 + 2567 2568 0 2568 2377 0 2369 2569 0 2569 2567 0 2566 2569 0 2571 2570 0 2570 2433 0 + 2379 2571 0 2431 2572 0 2572 2571 0 2423 2573 0 2573 2572 0 2568 2573 0 2575 2574 0 + 2574 2373 0 2375 2575 0 2574 2542 0 2576 2575 0 2435 2576 0 2570 2576 0 2572 2667 0 + 2667 2668 0 2668 2571 0 2573 2666 0 2666 2667 0 2668 2669 0 2669 2570 0 2570 2677 0 + 2677 2678 0 2678 2576 0 2678 2679 0 2679 2575 0 2559 2650 0 2650 2651 0 2651 2560 0 + 2558 2649 0 2649 2650 0 2651 2652 0 2652 2561 0 2561 2638 0 2638 2639 0 2639 2562 0 + 2639 2640 0 2640 2563 0 2640 2641 0 2641 2564 0 2568 2657 0 2657 2658 0 2658 2573 0 + 2567 2656 0 2656 2657 0 2569 2655 0 2655 2656 0 2566 2602 0 2602 2603 0 2603 2569 0 + 2564 2600 0 2600 2601 0 2601 2565 0 2600 2604 0 2604 2605 0 2605 2601 0 2601 2553 0 + 2602 2606 0 2606 2607 0 2607 2603 0 2554 2602 0 2604 2598 0 2598 2599 0 2599 2605 0 + 2606 2596 0 2596 2597 0 2597 2607 0 2550 2608 0 2608 2609 0 2609 2551 0 2609 2610 0 + 2610 2552 0 2553 2611 0 2611 2608 0 2610 2612 0 2612 2554 0 2605 2611 0 2612 2606 0 + 2608 2613 0 2613 2614 0 2614 2609 0 2614 2615 0 2615 2610 0 2611 2616 0 2616 2613 0 + 2615 2617 0 2617 2612 0 2599 2616 0 2617 2596 0 508 2618 0 2618 2619 0 2619 1136 0 + 509 2620 0 2620 2621 0 2621 1168 0 1073 2618 0 1077 1186 0 1186 2622 0 2622 1102 0 + 2622 2623 0 2623 1110 0 2623 2624 0 2624 1114 0 2624 1127 0 1120 2625 0 2625 2618 0 + 2624 2625 0 2619 2626 0 2626 1142 0 2626 1146 0 2626 2627 0 2627 1158 0 1154 2620 0 + 2627 2620 0 2621 2628 0 2628 1175 0 2628 1188 0 1188 1086 0 2596 2764 0 2764 2765 0 + 2765 2597 0 2598 2757 0 2757 2758 0 2758 2599 0 2613 2760 0 2760 2761 0 2761 2614 0; + setAttr ".ed[5478:5643]" 2761 2762 0 2762 2615 0 2616 2759 0 2759 2760 0 2762 2763 0 + 2763 2617 0 2758 2759 0 2763 2764 0 2638 2588 0 2588 2589 0 2589 2639 0 2589 2590 0 + 2590 2640 0 2590 2591 0 2591 2641 0 2641 2642 0 2642 2600 0 2642 2643 0 2643 2604 0 + 2591 2643 0 2588 2644 0 2644 2645 0 2645 2589 0 2645 2646 0 2646 2590 0 2646 2647 0 + 2647 2591 0 2643 2648 0 2648 2598 0 2647 2648 0 2649 2586 0 2586 2584 0 2584 2650 0 + 2584 2585 0 2585 2651 0 2585 2587 0 2587 2652 0 2652 2653 0 2653 2638 0 2587 2654 0 + 2654 2653 0 2654 2588 0 2655 2660 0 2660 2661 0 2661 2656 0 2661 2662 0 2662 2657 0 + 2662 2663 0 2663 2658 0 2603 2659 0 2659 2655 0 2660 2595 0 2595 2594 0 2594 2661 0 + 2594 2592 0 2592 2662 0 2592 2593 0 2593 2663 0 2659 2664 0 2664 2660 0 2607 2664 0 + 2664 2665 0 2665 2595 0 2597 2665 0 2666 2671 0 2671 2672 0 2672 2667 0 2672 2673 0 + 2673 2668 0 2673 2674 0 2674 2669 0 2658 2670 0 2670 2666 0 2671 2579 0 2579 2577 0 + 2577 2672 0 2577 2578 0 2578 2673 0 2578 2580 0 2580 2674 0 2670 2675 0 2675 2671 0 + 2663 2675 0 2593 2676 0 2676 2675 0 2676 2579 0 2677 2681 0 2681 2682 0 2682 2678 0 + 2682 2683 0 2683 2679 0 2669 2680 0 2680 2677 0 2681 2581 0 2581 2582 0 2582 2682 0 + 2582 2583 0 2583 2683 0 2674 2684 0 2684 2680 0 2684 2681 0 2580 2685 0 2685 2684 0 + 2685 2581 0 2575 2686 0 2686 2687 0 2687 2574 0 2686 2688 0 2688 2689 0 2689 2687 0 + 2688 2690 0 2690 2691 0 2691 2689 0 2557 2698 0 2698 2649 0 2556 2697 0 2697 2698 0 + 2555 2696 0 2696 2697 0 2696 2699 0 2699 2700 0 2700 2697 0 2700 2701 0 2701 2698 0 + 2701 2586 0 2699 2695 0 2695 2694 0 2694 2700 0 2694 2692 0 2692 2701 0 2692 2693 0 + 2693 2586 0 2541 2702 0 2702 2696 0 2687 2703 0 2703 2542 0 2543 2704 0 2704 2705 0 + 2705 2544 0 2545 2706 0 2706 2704 0 2546 2707 0 2707 2706 0 2705 2708 0 2708 2547 0 + 2708 2702 0 2703 2707 0 2702 2709 0 2709 2699 0 2689 2710 0 2710 2703 0 2704 2711 0 + 2711 2712 0 2712 2705 0 2706 2713 0 2713 2711 0 2707 2714 0 2714 2713 0 2712 2715 0 + 2715 2708 0 2715 2709 0 2710 2714 0 2709 2716 0 2716 2695 0 2691 2717 0 2717 2710 0; + setAttr ".ed[5644:5809]" 2711 2718 0 2718 2719 0 2719 2712 0 2713 2720 0 2720 2718 0 + 2714 2721 0 2721 2720 0 2719 2722 0 2722 2715 0 2722 2716 0 2717 2721 0 2679 2723 0 + 2723 2686 0 2723 2724 0 2724 2688 0 2683 2724 0 2724 2725 0 2725 2690 0 2583 2725 0 + 1505 1590 0 1590 2585 0 2584 1505 0 1590 1589 0 1589 2587 0 2587 2726 0 2726 2727 0 + 2727 2654 0 1589 1588 0 1588 2726 0 2727 2644 0 1588 1587 0 1587 2728 0 2728 2726 0 + 1587 1586 0 1586 2729 0 2729 2728 0 2730 2729 0 1586 1585 0 1585 2730 0 2731 2730 0 + 1585 1584 0 1584 2731 0 2732 2731 0 1584 1583 0 1583 2732 0 1545 2733 0 2733 1561 0 + 1561 1506 0 2733 2734 0 2734 1582 0 1582 1561 0 2734 2732 0 1583 1582 0 2728 2735 0 + 2735 2727 0 2730 2735 0 2736 2735 0 2731 2736 0 2732 2737 0 2737 2736 0 2738 2737 0 + 2734 2738 0 2739 2738 0 2733 2739 0 1538 2739 0 1192 1191 0 1191 2740 0 2740 1513 0 + 2740 2741 0 2741 1529 0 2741 2739 0 2742 2740 0 1191 1190 0 1190 2742 0 1190 1189 0 + 1189 2743 0 2743 2742 0 1187 2744 0 2744 2743 0 1189 1187 0 2628 2744 0 1187 1188 0 + 2742 2745 0 2745 2746 0 2746 2740 0 2747 2745 0 2743 2747 0 2744 2748 0 2748 2747 0 + 2628 2749 0 2749 2748 0 2750 2738 0 2741 2750 0 2746 2750 0 2621 2751 0 2751 2749 0 + 2735 2752 0 2752 2644 0 2752 2753 0 2753 2645 0 2753 2754 0 2754 2646 0 2754 2755 0 + 2755 2647 0 2755 2756 0 2756 2648 0 2757 2788 0 2788 2789 0 2789 2758 0 2789 2790 0 + 2790 2759 0 2790 2791 0 2791 2760 0 2791 2792 0 2792 2761 0 2792 2793 0 2793 2762 0 + 2793 2794 0 2794 2763 0 2794 2795 0 2795 2764 0 2795 2796 0 2796 2765 0 2756 2757 0 + 2749 2768 0 2768 2767 0 2767 2748 0 2750 2769 0 2769 2770 0 2770 2738 0 2746 2766 0 + 2766 2769 0 2751 2771 0 2771 2768 0 2770 2772 0 2772 2737 0 2772 2773 0 2773 2736 0 + 2773 2752 0 2773 2774 0 2774 2753 0 2772 2775 0 2775 2774 0 2769 2775 0 2776 2775 0 + 2766 2776 0 2776 2777 0 2777 2774 0 2777 2754 0 2777 2778 0 2778 2755 0 2777 2779 0 + 2779 2780 0 2780 2778 0 2776 2781 0 2781 2779 0 2766 2782 0 2782 2781 0 2782 2783 0 + 2783 2779 0 2745 2782 0 2747 2783 0 2767 2783 0 2767 2780 0 2778 2784 0 2784 2756 0; + setAttr ".ed[5810:5975]" 2778 2785 0 2785 2786 0 2786 2784 0 2787 2785 0 2780 2787 0 + 2768 2787 0 2771 2785 0 2788 2797 0 2797 2798 0 2798 2789 0 2798 2799 0 2799 2790 0 + 2799 2800 0 2800 2791 0 2800 2801 0 2801 2792 0 2801 2802 0 2802 2793 0 2802 2803 0 + 2803 2794 0 2803 2804 0 2804 2795 0 2804 2805 0 2805 2796 0 2784 2788 0 2797 2806 0 + 2806 2807 0 2807 2798 0 2807 2808 0 2808 2799 0 2808 2809 0 2809 2800 0 2809 2810 0 + 2810 2801 0 2810 2811 0 2811 2802 0 2811 2812 0 2812 2803 0 2812 2813 0 2813 2804 0 + 2813 2630 0 2630 2805 0 2786 2797 0 2806 2631 0 2631 2632 0 2632 2807 0 2632 2636 0 + 2636 2808 0 2636 2633 0 2633 2809 0 2633 2634 0 2634 2810 0 2634 2635 0 2635 2811 0 + 2635 2637 0 2637 2812 0 2637 2629 0 2629 2813 0 2629 2630 0 2771 2814 0 2814 2786 0 + 2814 2806 0 2751 2815 0 2815 2814 0 2815 2631 0 2817 2816 0 2816 2619 0 2618 2817 0 + 2818 2817 0 2625 2818 0 2626 2819 0 2819 2820 0 2820 2627 0 2820 2821 0 2821 2620 0 + 2816 2819 0 2821 2751 0 2821 2822 0 2822 2815 0 2817 2823 0 2823 2816 0 2818 2824 0 + 2824 2823 0 2819 2825 0 2825 2826 0 2826 2820 0 2826 2822 0 2823 2825 0 2826 2631 0 + 2825 2632 0 2823 2636 0 2824 2633 0 2624 2827 0 2827 2818 0 2824 2828 0 2828 2634 0 + 2827 2828 0 2623 2829 0 2829 2827 0 2830 2828 0 2829 2830 0 2830 2635 0 1186 1185 0 + 1185 2831 0 2831 2622 0 2832 2831 0 1185 1184 0 1184 2832 0 1184 1183 0 1183 2833 0 + 2833 2832 0 1183 1045 0 1045 2834 0 2834 2833 0 2835 2834 0 1182 2835 0 2830 2836 0 + 2836 2637 0 2829 2837 0 2837 2836 0 2622 2837 0 2836 2838 0 2838 2629 0 2832 2838 0 + 2836 2831 0 2833 2839 0 2839 2838 0 2839 2630 0 2834 2840 0 2840 2839 0 2841 2840 0 + 2835 2841 0 1043 1042 0 1042 2842 0 2842 1180 0 2842 2843 0 2843 1181 0 2577 1031 0 + 1031 1014 0 1014 2578 0 2579 1032 0 1032 1031 0 2579 2844 0 2844 2845 0 2845 1032 0 + 2845 2846 0 2846 1033 0 1033 1032 0 2846 2847 0 2847 1034 0 1034 1033 0 2847 2848 0 + 2848 1035 0 1035 1034 0 1041 2849 0 2849 2842 0 1042 1041 0 1040 2850 0 2850 2849 0 + 1041 1040 0 2851 2850 0 1040 1039 0 1039 2851 0 2852 2851 0 1039 1038 0 1038 2852 0; + setAttr ".ed[5976:6141]" 2853 2852 0 1038 1036 0 1036 2853 0 2854 2853 0 1036 1037 0 + 1037 2854 0 2848 2854 0 1037 1035 0 2676 2855 0 2855 2844 0 2846 2856 0 2856 2848 0 + 2845 2857 0 2857 2856 0 2855 2857 0 2849 2858 0 2858 2859 0 2859 2842 0 2850 2860 0 + 2860 2858 0 2851 2861 0 2861 2860 0 2852 2862 0 2862 2861 0 2853 2863 0 2863 2862 0 + 2854 2863 0 2856 2863 0 2593 2864 0 2864 2855 0 2857 2865 0 2865 2863 0 2864 2865 0 + 2592 2866 0 2866 2864 0 2843 2835 0 2859 2867 0 2867 2843 0 2867 2841 0 2594 2868 0 + 2868 2866 0 2595 2869 0 2869 2868 0 2665 2870 0 2870 2869 0 2765 2870 0 2796 2871 0 + 2871 2870 0 2805 2872 0 2872 2871 0 2630 2873 0 2873 2872 0 2840 2873 0 2871 2874 0 + 2874 2869 0 2872 2875 0 2875 2874 0 2873 2876 0 2876 2875 0 2841 2876 0 2874 2877 0 + 2877 2868 0 2875 2878 0 2878 2877 0 2876 2879 0 2879 2878 0 2867 2879 0 2858 2879 0 + 2860 2878 0 2866 2880 0 2880 2865 0 2880 2862 0 2868 2881 0 2881 2880 0 2877 2882 0 + 2882 2881 0 2882 2862 0 2860 2882 0 2586 2883 0 2883 1505 0 1502 1505 0 2883 2884 0 + 2884 1502 0 1435 1502 0 2884 1458 0 1367 1374 0 1374 2885 0 2885 2886 0 2886 1367 0 + 1374 1379 0 1379 2887 0 2887 2885 0 1379 1381 0 1381 2888 0 2888 2887 0 1381 1384 0 + 1384 2889 0 2889 2888 0 1384 1416 0 1416 2890 0 2890 2889 0 2891 2890 0 1450 2891 0 + 2886 2892 0 2892 1591 0 1474 2893 0 2893 2891 0 1482 2894 0 2894 2893 0 2884 2894 0 + 2693 2884 0 2692 2895 0 2895 2896 0 2896 2693 0 2896 2894 0 2892 2897 0 2897 1592 0 + 2897 1593 0 2897 2898 0 2898 1594 0 2898 2899 0 2899 1595 0 2899 1596 0 2899 2900 0 + 2900 1597 0 1598 2901 0 2901 1267 0 1267 1268 0 2900 2902 0 2902 1599 0 2902 2901 0 + 2899 2903 0 2903 2904 0 2904 2900 0 2901 2905 0 2905 1266 0 1266 1267 0 2904 2906 0 + 2906 2902 0 2906 2905 0 2897 2907 0 2907 2908 0 2908 2898 0 2908 2903 0 2909 2907 0 + 2892 2909 0 2885 2909 0 2903 2910 0 2910 2911 0 2911 2904 0 2905 2912 0 2912 1265 0 + 1265 1266 0 2911 2913 0 2913 2906 0 2913 2912 0 2907 2914 0 2914 2915 0 2915 2908 0 + 2915 2910 0 2909 2916 0 2916 2914 0 2885 2917 0 2917 2916 0 1014 1015 0 1015 2918 0; + setAttr ".ed[6142:6307]" 2918 2919 0 2919 1014 0 1024 2920 0 2920 2918 0 2919 2580 0 + 1012 2920 0 1013 1012 0 953 952 0 952 2921 0 2921 2922 0 2922 953 0 1011 953 0 2922 2923 0 + 2923 1011 0 1012 1011 0 2923 2924 0 2924 1012 0 2919 2925 0 2925 2685 0 2918 2924 0 + 2924 2925 0 2923 2926 0 2926 2925 0 2926 2581 0 983 1203 0 1203 2927 0 2927 993 0 + 984 2928 0 2928 2929 0 2929 1010 0 2927 2928 0 2929 2921 0 1203 1206 0 1206 2930 0 + 2930 2931 0 2931 1203 0 1206 1209 0 1209 2932 0 2932 2930 0 1209 1212 0 1212 2933 0 + 2933 2932 0 1212 1231 0 1231 2934 0 2934 2933 0 1231 1264 0 1264 2935 0 2935 2934 0 + 1264 1265 0 1265 2936 0 2936 2935 0 2921 2937 0 2937 2938 0 2938 2922 0 2938 2926 0 + 2931 2939 0 2939 2927 0 2928 2939 0 2939 2937 0 2937 2929 0 2581 2940 0 2940 2941 0 + 2941 2582 0 2938 2940 0 2937 2941 0 2941 2942 0 2942 2583 0 2941 2943 0 2943 2944 0 + 2944 2942 0 2939 2943 0 2931 2944 0 2930 2945 0 2945 2944 0 2932 2945 0 2933 2946 0 + 2946 2945 0 2934 2947 0 2947 2946 0 2935 2947 0 2936 2948 0 2948 2947 0 2945 2949 0 + 2949 2942 0 2949 2725 0 2946 2950 0 2950 2949 0 2950 2690 0 2951 2936 0 2912 2951 0 + 2951 2952 0 2952 2948 0 2910 2953 0 2953 2954 0 2954 2911 0 2954 2955 0 2955 2913 0 + 2955 2951 0 2914 2956 0 2956 2957 0 2957 2915 0 2957 2953 0 2916 2958 0 2958 2956 0 + 2917 2959 0 2959 2958 0 2953 2960 0 2960 2961 0 2961 2954 0 2961 2962 0 2962 2955 0 + 2962 2952 0 2956 2963 0 2963 2964 0 2964 2957 0 2964 2960 0 2958 2965 0 2965 2963 0 + 2959 2966 0 2966 2965 0 2950 2967 0 2967 2691 0 2694 2968 0 2968 2895 0 2695 2969 0 + 2969 2968 0 2716 2970 0 2970 2969 0 2967 2971 0 2971 2717 0 2718 2972 0 2972 2973 0 + 2973 2719 0 2720 2974 0 2974 2972 0 2721 2975 0 2975 2974 0 2973 2976 0 2976 2722 0 + 2976 2970 0 2971 2975 0 2972 2961 0 2960 2973 0 2974 2962 0 2975 2952 0 2971 2948 0 + 2967 2947 0 2964 2976 0 2963 2970 0 2965 2969 0 2966 2968 0 2966 2977 0 2977 2895 0 + 2887 2978 0 2978 2917 0 2888 2978 0 2889 2979 0 2979 2978 0 2890 2980 0 2980 2979 0 + 2891 2981 0 2981 2980 0 2893 2981 0 2896 2981 0 2977 2981 0 2977 2979 0; + setAttr ".ed[6308:6473]" 2966 2978 0 2982 1078 0 1079 2983 0 1080 2984 0 1081 2985 0 + 1082 2986 0 1100 2987 0 1101 2988 0 1099 2989 0 1098 2990 0 1097 2991 0 1096 2992 0 + 1095 2993 0 1094 2994 0 1093 2995 0 1092 2996 0 1091 2997 0 1090 2998 0 1089 2999 0 + 1088 3000 0 1087 3001 0 1083 3002 0 1084 3003 0 1085 3004 0 1086 3005 0 1188 3006 0 + 1187 3007 0 1189 3008 0 1190 3009 0 1191 3010 0 1192 3011 0 1193 3012 0 1194 3013 0 + 1195 3014 0 1196 3015 0 1197 3016 0 1198 3017 0 1199 3018 0 1200 3019 0 1520 3020 0 + 1536 3021 0 1512 3022 0 1511 3023 0 1510 3024 0 1509 3025 0 1508 3026 0 1507 3027 0 + 1506 3028 0 1561 3029 0 1582 3030 0 1583 3031 0 1584 3032 0 1585 3033 0 1586 3034 0 + 1587 3035 0 1588 3036 0 1589 3037 0 1590 3038 0 1505 3039 0 1502 3040 0 1435 3041 0 + 1434 3042 0 1433 3043 0 1432 3044 0 1431 3045 0 1430 3046 0 1429 3047 0 1436 3048 0 + 1461 3049 0 1464 3050 0 1465 3051 0 1441 3052 0 1437 3053 0 1428 3054 0 1427 3055 0 + 1426 3056 0 1425 3057 0 1424 3058 0 1423 3059 0 1416 3060 0 1384 3061 0 1381 3062 0 + 1379 3063 0 1374 3064 0 1367 3065 0 1333 3066 0 1332 3067 0 1336 3068 0 1338 3069 0 + 1340 3070 0 1330 3071 0 1327 3072 0 1324 3073 0 1322 3074 0 1318 3075 0 1315 3076 0 + 1313 3077 0 1309 3078 0 1307 3079 0 1304 3080 0 1301 3081 0 1288 3082 0 1286 3083 0 + 1279 3084 0 1281 3085 0 1277 3086 0 1273 3087 0 1271 3088 0 1270 3089 0 1269 3090 0 + 1268 3091 0 1267 3092 0 1266 3093 0 1265 3094 0 1264 3095 0 1231 3096 0 1212 3097 0 + 1209 3098 0 1206 3099 0 1203 3100 0 983 3101 0 980 3102 0 977 3103 0 974 3104 0 971 3105 0 + 966 3106 0 965 3107 0 967 3108 0 968 3109 0 964 3110 0 963 3111 0 962 3112 0 961 3113 0 + 960 3114 0 959 3115 0 958 3116 0 957 3117 0 956 3118 0 955 3119 0 954 3120 0 952 3121 0 + 953 3122 0 1011 3123 0 1012 3124 0 1013 3125 0 1023 3126 0 1022 3127 0 1021 3128 0 + 1020 3129 0 1028 3130 0 1019 3131 0 1018 3132 0 1017 3133 0 1016 3134 0 1015 3135 0 + 1014 3136 0 1031 3137 0 1032 3138 0 1033 3139 0 1034 3140 0 1035 3141 0 1037 3142 0 + 1036 3143 0 1038 3144 0 1039 3145 0 1040 3146 0; + setAttr ".ed[6474:6639]" 1041 3147 0 1042 3148 0 1043 3149 0 1044 3150 0 1057 3151 0 + 1056 3152 0 1055 3153 0 1054 3154 0 1053 3155 0 1052 3156 0 1051 3157 0 1050 3158 0 + 1049 3159 0 1048 3160 0 1047 3161 0 1046 3162 0 1045 3163 0 1183 3164 0 1184 3165 0 + 1185 3166 0 1186 3167 0 1077 3168 0 3169 402 0 403 3170 0 407 3171 0 409 3172 0 411 3173 0 + 413 3174 0 415 3175 0 425 3176 0 431 3177 0 449 3178 0 451 3179 0 453 3180 0 455 3181 0 + 457 3182 0 459 3183 0 461 3184 0 463 3185 0 465 3186 0 467 3187 0 469 3188 0 471 3189 0 + 485 3190 0 488 3191 0 490 3192 0 516 3193 0 511 3194 0 503 3195 0 501 3196 0 499 3197 0 + 497 3198 0 556 3199 0 495 3200 0 492 3201 0 512 3202 0 518 3203 0 527 3204 0 525 3205 0 + 523 3206 0 520 3207 0 573 3208 0 577 3209 0 583 3210 0 1521 3211 0 1537 3212 0 1528 3213 0 + 1527 3214 0 1526 3215 0 1525 3216 0 1524 3217 0 1523 3218 0 1522 3219 0 1562 3220 0 + 1581 3221 0 1579 3222 0 1577 3223 0 1575 3224 0 1573 3225 0 1564 3226 0 1566 3227 0 + 1568 3228 0 1570 3229 0 1504 3230 0 1501 3231 0 1499 3232 0 1497 3233 0 1495 3234 0 + 1493 3235 0 1491 3236 0 1489 3237 0 1459 3238 0 1460 3239 0 1462 3240 0 1463 3241 0 + 1466 3242 0 1440 3243 0 1438 3244 0 1417 3245 0 1418 3246 0 1419 3247 0 1421 3248 0 + 1420 3249 0 1422 3250 0 1415 3251 0 1383 3252 0 1380 3253 0 1378 3254 0 1373 3255 0 + 1366 3256 0 1334 3257 0 1335 3258 0 1337 3259 0 1339 3260 0 1341 3261 0 1329 3262 0 + 1326 3263 0 1323 3264 0 1321 3265 0 1317 3266 0 1314 3267 0 1312 3268 0 1308 3269 0 + 1306 3270 0 1303 3271 0 1300 3272 0 1287 3273 0 1285 3274 0 1278 3275 0 1282 3276 0 + 1276 3277 0 1272 3278 0 1221 3279 0 1220 3280 0 1222 3281 0 1223 3282 0 1224 3283 0 + 1225 3284 0 1226 3285 0 1228 3286 0 1229 3287 0 1211 3288 0 1208 3289 0 1205 3290 0 + 1202 3291 0 982 3292 0 979 3293 0 976 3294 0 973 3295 0 970 3296 0 951 3297 0 949 3298 0 + 947 3299 0 945 3300 0 943 3301 0 941 3302 0 939 3303 0 937 3304 0 935 3305 0 933 3306 0 + 931 3307 0 929 3308 0 927 3309 0 925 3310 0 923 3311 0 921 3312 0; + setAttr ".ed[6640:6805]" 919 3313 0 917 3314 0 915 3315 0 913 3316 0 911 3317 0 + 909 3318 0 907 3319 0 905 3320 0 1029 3321 0 903 3322 0 901 3323 0 899 3324 0 897 3325 0 + 895 3326 0 893 3327 0 891 3328 0 886 3329 0 888 3330 0 885 3331 0 883 3332 0 881 3333 0 + 879 3334 0 877 3335 0 875 3336 0 873 3337 0 871 3338 0 869 3339 0 867 3340 0 865 3341 0 + 863 3342 0 861 3343 0 859 3344 0 857 3345 0 534 3346 0 532 3347 0 530 3348 0 430 3349 0 + 428 3350 0 424 3351 0 422 3352 0 420 3353 0 418 3354 0 406 3355 0 3359 3502 0 3502 3503 0 + 3503 3358 0 3358 3359 0 3361 3360 0 3360 3392 0 3392 3393 0 3393 3361 0 3397 3398 0 + 3398 3363 0 3363 3362 0 3362 3397 0 3367 3419 0 3419 3420 0 3420 3366 0 3366 3367 0 + 3436 3437 0 3437 3364 0 3364 3365 0 3365 3436 0 3430 3431 0 3431 3368 0 3368 3369 0 + 3369 3430 0 3373 3372 0 3372 3390 0 3390 3391 0 3391 3373 0 3360 3410 0 3410 3411 0 + 3411 3392 0 3375 3372 0 3373 3374 0 3374 3375 0 3377 3459 0 3459 3460 0 3460 3376 0 + 3376 3377 0 3379 3378 0 3378 3365 0 3364 3379 0 3379 3462 0 3462 3463 0 3463 3378 0 + 99 3458 0 3458 3443 0 3443 100 0 3381 3523 0 3523 3524 0 3524 3396 0 3396 3381 0 + 3396 3397 0 3362 3381 0 3393 3394 0 3394 3382 0 3382 3361 0 3525 3502 0 3359 3380 0 + 3380 3525 0 3521 3522 0 3522 3362 0 3363 3521 0 3522 3523 0 3361 3483 0 3483 3484 0 + 3484 3360 0 3382 3482 0 3482 3483 0 3394 3481 0 3481 3482 0 3383 3356 0 3356 3479 0 + 3479 3480 0 3480 3383 0 3478 3479 0 3356 3357 0 3357 3478 0 3390 3367 0 3366 3391 0 + 3411 3412 0 3412 3357 0 3357 3392 0 3356 3393 0 3383 3394 0 3480 3481 0 3524 3525 0 + 3380 3396 0 3359 3397 0 3358 3398 0 3493 3494 0 3494 3436 0 3365 3493 0 3496 3497 0 + 3497 3430 0 3369 3496 0 3420 3499 0 3499 3500 0 3500 3366 0 3373 3486 0 3486 3487 0 + 3487 3374 0 3460 3488 0 3488 3489 0 3489 3376 0 3463 3491 0 3491 3492 0 3492 3378 0 + 3492 3493 0 3484 3485 0 3485 3410 0 3416 3520 0 3520 3521 0 3363 3416 0 3412 3501 0 + 3501 3478 0 3503 3504 0 3504 3414 0 3414 3358 0 3414 3415 0 3415 3398 0 3415 3416 0 + 3410 3373 0 3391 3411 0; + setAttr ".ed[6806:6971]" 3366 3412 0 3500 3501 0 3504 3505 0 3505 3408 0 3408 3414 0 + 3408 3409 0 3409 3415 0 3409 3407 0 3407 3416 0 3407 3519 0 3519 3520 0 3485 3486 0 + 107 3450 0 3450 3451 0 3451 108 0 3449 3450 0 106 3449 0 3505 3506 0 3506 3422 0 + 3422 3408 0 3419 3370 0 3370 3371 0 3371 3420 0 3498 3499 0 3371 3498 0 3506 3507 0 + 3507 3418 0 3418 3422 0 3451 3452 0 3452 109 0 3452 3453 0 3453 110 0 96 3455 0 3455 3456 0 + 3456 97 0 3456 3457 0 3457 98 0 3457 3458 0 3453 3454 0 3454 111 0 3454 3455 0 3428 3426 0 + 3426 3512 0 3512 3513 0 3513 3428 0 3371 3430 0 3497 3498 0 3370 3431 0 3507 3508 0 + 3508 3427 0 3427 3418 0 3508 3509 0 3509 3423 0 3423 3427 0 3369 3433 0 3433 3495 0 + 3495 3496 0 3368 3434 0 3434 3433 0 3509 3510 0 3510 3424 0 3424 3423 0 3494 3495 0 + 3433 3436 0 3434 3437 0 3510 3511 0 3511 3425 0 3425 3424 0 3511 3512 0 3426 3425 0 + 3443 3444 0 3444 101 0 3444 3445 0 3445 102 0 3445 3446 0 3446 103 0 3446 3447 0 + 3447 104 0 3447 3448 0 3448 105 0 3448 3449 0 3443 3428 0 3428 3438 0 3438 3444 0 + 3438 3439 0 3439 3445 0 3439 3440 0 3440 3446 0 3440 3441 0 3441 3447 0 3441 3442 0 + 3442 3448 0 3442 3407 0 3407 3449 0 3409 3450 0 3408 3451 0 3422 3452 0 3418 3453 0 + 3427 3454 0 3423 3455 0 3424 3456 0 3425 3457 0 3426 3458 0 3518 3519 0 3442 3518 0 + 3459 3375 0 3374 3460 0 3487 3488 0 3517 3518 0 3441 3517 0 3516 3517 0 3440 3516 0 + 3466 3467 0 3467 3377 0 3376 3466 0 3489 3490 0 3490 3466 0 3490 3491 0 3463 3466 0 + 3462 3467 0 3513 3514 0 3514 3438 0 3514 3515 0 3515 3439 0 3515 3516 0 3377 3468 0 + 3468 3469 0 3469 3459 0 3467 3470 0 3470 3468 0 3368 3471 0 3471 3472 0 3472 3434 0 + 3431 3473 0 3473 3471 0 3470 3472 0 3471 3468 0 3473 3469 0 3474 3473 0 3370 3474 0 + 3475 3469 0 3474 3475 0 3475 3375 0 3472 3364 0 3379 3470 0 3475 3476 0 3476 3372 0 + 3419 3477 0 3477 3474 0 3477 3476 0 3477 3390 0 3389 3388 0 3388 3479 0 3478 3389 0 + 3388 3387 0 3387 3480 0 3387 3395 0 3395 3481 0 3395 3386 0 3386 3482 0 3386 3385 0 + 3385 3483 0 3385 3384 0 3384 3484 0 3384 3417 0 3417 3485 0; + setAttr ".ed[6972:7137]" 3417 3403 0 3403 3486 0 3403 3404 0 3404 3487 0 3461 3488 0 + 3404 3461 0 3461 3405 0 3405 3489 0 3465 3490 0 3405 3465 0 3464 3491 0 3465 3464 0 + 3464 3406 0 3406 3492 0 3406 3399 0 3399 3493 0 3435 3494 0 3399 3435 0 3432 3495 0 + 3435 3432 0 3432 3400 0 3400 3496 0 3429 3497 0 3400 3429 0 3429 3401 0 3401 3498 0 + 3421 3499 0 3401 3421 0 3421 3402 0 3402 3500 0 3413 3501 0 3402 3413 0 3413 3389 0 + 3502 3388 0 3389 3503 0 3413 3504 0 3402 3505 0 3421 3506 0 3401 3507 0 3429 3508 0 + 3400 3509 0 3432 3510 0 3435 3511 0 3399 3512 0 3406 3513 0 3464 3514 0 3465 3515 0 + 3405 3516 0 3461 3517 0 3404 3518 0 3403 3519 0 3417 3520 0 3384 3521 0 3385 3522 0 + 3386 3523 0 3395 3524 0 3387 3525 0 3529 3545 0 3545 3640 0 3640 3641 0 3641 3529 0 + 3660 3639 0 3639 3526 0 3526 3530 0 3530 3660 0 3544 3545 0 3529 3532 0 3532 3544 0 + 3546 3547 0 3547 3533 0 3533 3528 0 3528 3546 0 3641 3642 0 3642 3532 0 3547 3579 0 + 3579 3580 0 3580 3533 0 3537 3548 0 3548 3549 0 3549 3535 0 3535 3537 0 3549 3550 0 + 3550 3539 0 3539 3535 0 3550 3622 0 3622 3623 0 3623 3539 0 3541 3551 0 3551 3552 0 + 3552 3543 0 3543 3541 0 3552 3615 0 3615 3609 0 3609 3543 0 3526 3545 0 3544 3530 0 + 3639 3640 0 3531 3547 0 3546 3527 0 3527 3531 0 3578 3579 0 3531 3578 0 3548 3536 0 + 3536 3534 0 3534 3549 0 3534 3538 0 3538 3550 0 3621 3622 0 3538 3621 0 3551 3540 0 + 3540 3542 0 3542 3552 0 3542 3614 0 3614 3615 0 3527 3663 0 3663 3664 0 3664 3531 0 + 3546 3662 0 3662 3663 0 3661 3662 0 3528 3661 0 3533 3682 0 3682 3661 0 3600 3601 0 + 3601 27 0 28 3600 0 3601 3602 0 3602 26 0 3593 3594 0 3594 18 0 19 3593 0 3592 3593 0 + 20 3592 0 3602 3603 0 3603 25 0 3607 3592 0 21 3607 0 22 3606 0 3606 3607 0 23 3605 0 + 3605 3606 0 24 3604 0 3604 3605 0 3603 3604 0 3544 3583 0 3583 3584 0 3584 3530 0 + 3582 3583 0 3532 3582 0 3570 3569 0 3569 3646 0 3646 3647 0 3647 3570 0 3571 3570 0 + 3647 3648 0 3648 3571 0 3572 3571 0 3648 3649 0 3649 3572 0 3649 3650 0 3650 3573 0 + 3573 3572 0 3650 3651 0 3651 3574 0 3574 3573 0 3651 3652 0; + setAttr ".ed[7138:7303]" 3652 3575 0 3575 3574 0 3642 3643 0 3643 3582 0 3681 3682 0 + 3580 3681 0 3584 3659 0 3659 3660 0 3664 3665 0 3665 3578 0 3548 3579 0 3578 3536 0 + 3537 3580 0 3680 3681 0 3537 3680 0 3643 3644 0 3644 3561 0 3561 3582 0 3561 3567 0 + 3567 3583 0 3567 3566 0 3566 3584 0 3566 3658 0 3658 3659 0 3665 3666 0 3666 3536 0 + 3644 3645 0 3645 3568 0 3568 3561 0 3645 3646 0 3569 3568 0 17 3595 0 3595 3596 0 + 3596 16 0 3594 3595 0 29 3599 0 3599 3600 0 30 3598 0 3598 3599 0 31 3597 0 3597 3598 0 + 3596 3597 0 3574 3593 0 3592 3573 0 3575 3594 0 3575 3588 0 3588 3595 0 3588 3587 0 + 3587 3596 0 3587 3591 0 3591 3597 0 3591 3590 0 3590 3598 0 3590 3589 0 3589 3599 0 + 3589 3566 0 3566 3600 0 3567 3601 0 3561 3602 0 3568 3603 0 3569 3604 0 3570 3605 0 + 3571 3606 0 3572 3607 0 3674 3675 0 3675 3608 0 3608 3609 0 3609 3674 0 3675 3676 0 + 3676 3610 0 3610 3608 0 3676 3677 0 3677 3611 0 3611 3610 0 3677 3678 0 3678 3612 0 + 3612 3611 0 3678 3679 0 3679 3613 0 3613 3612 0 3614 3672 0 3672 3673 0 3673 3615 0 + 3673 3674 0 3679 3680 0 3537 3613 0 3608 3616 0 3616 3543 0 3610 3617 0 3617 3616 0 + 3611 3618 0 3618 3617 0 3612 3619 0 3619 3618 0 3613 3620 0 3620 3619 0 3535 3620 0 + 3617 3541 0 3539 3619 0 3551 3622 0 3621 3540 0 3541 3623 0 3618 3623 0 3588 3653 0 + 3653 3654 0 3654 3587 0 3652 3653 0 3589 3657 0 3657 3658 0 3590 3656 0 3656 3657 0 + 3591 3655 0 3655 3656 0 3654 3655 0 3671 3672 0 3614 3629 0 3629 3671 0 3670 3671 0 + 3629 3630 0 3630 3670 0 3666 3667 0 3667 3631 0 3631 3536 0 3667 3668 0 3668 3632 0 + 3632 3631 0 3668 3669 0 3669 3633 0 3633 3632 0 3669 3670 0 3630 3633 0 3635 3636 0 + 3636 3621 0 3538 3635 0 3636 3637 0 3637 3540 0 3634 3629 0 3542 3634 0 3633 3636 0 + 3635 3632 0 3630 3637 0 3634 3637 0 3635 3638 0 3638 3631 0 3638 3534 0 3554 3555 0 + 3555 3640 0 3639 3554 0 3555 3556 0 3556 3641 0 3556 3557 0 3557 3642 0 3557 3581 0 + 3581 3643 0 3581 3576 0 3576 3644 0 3586 3645 0 3576 3586 0 3586 3565 0 3565 3646 0 + 3565 3564 0 3564 3647 0 3564 3563 0 3563 3648 0 3563 3562 0 3562 3649 0; + setAttr ".ed[7304:7469]" 3560 3650 0 3562 3560 0 3560 3559 0 3559 3651 0 3559 3558 0 + 3558 3652 0 3558 3625 0 3625 3653 0 3625 3624 0 3624 3654 0 3624 3628 0 3628 3655 0 + 3628 3627 0 3627 3656 0 3627 3626 0 3626 3657 0 3626 3577 0 3577 3658 0 3577 3585 0 + 3585 3659 0 3585 3553 0 3553 3660 0 3553 3554 0 3555 3662 0 3661 3556 0 3554 3663 0 + 3553 3664 0 3585 3665 0 3577 3666 0 3626 3667 0 3627 3668 0 3628 3669 0 3624 3670 0 + 3625 3671 0 3558 3672 0 3559 3673 0 3560 3674 0 3562 3675 0 3563 3676 0 3564 3677 0 + 3565 3678 0 3586 3679 0 3576 3680 0 3581 3681 0 3557 3682 0 2313 3763 0 3763 3764 0 + 3764 2314 0 2277 3781 0 3781 3782 0 3782 2278 0 2322 3772 0 3772 3773 0 3773 2323 0 + 2286 3790 0 3790 3791 0 3791 2287 0 3692 3691 0 3691 3827 0 3827 3828 0 3828 3692 0 + 3694 3693 0 3693 3691 0 3692 3694 0 3696 3695 0 3695 3845 0 3845 3846 0 3846 3696 0 + 3698 3697 0 3697 3695 0 3696 3698 0 3700 3699 0 3699 3701 0 3701 3702 0 3702 3700 0 + 3701 3854 0 3854 3855 0 3855 3702 0 3704 3703 0 3703 3705 0 3705 3706 0 3706 3704 0 + 3705 3836 0 3836 3837 0 3837 3706 0 3753 3754 0 3754 3701 0 3699 3753 0 3755 3756 0 + 3756 3708 0 3708 3707 0 3707 3755 0 3759 3760 0 3760 3710 0 3710 3709 0 3709 3759 0 + 3697 3743 0 3743 3744 0 3744 3695 0 3714 3713 0 3713 3747 0 3747 3748 0 3748 3714 0 + 3712 3711 0 3711 3751 0 3751 3752 0 3752 3712 0 3723 3724 0 3724 3691 0 3693 3723 0 + 3731 3732 0 3732 3716 0 3716 3715 0 3715 3731 0 3725 3726 0 3726 3718 0 3718 3717 0 + 3717 3725 0 3741 3742 0 3742 3720 0 3720 3719 0 3719 3741 0 3703 3733 0 3733 3734 0 + 3734 3705 0 3721 3735 0 3735 3736 0 3736 3722 0 3722 3721 0 3718 3724 0 3723 3717 0 + 3789 3790 0 2285 3789 0 3788 3789 0 2284 3788 0 3727 3728 0 3728 3726 0 3725 3727 0 + 2283 3787 0 3787 3788 0 3729 3730 0 3730 3728 0 3727 3729 0 2282 3786 0 3786 3787 0 + 3716 3730 0 3729 3715 0 2281 3785 0 3785 3786 0 2280 3784 0 3784 3785 0 3706 3732 0 + 3731 3704 0 3783 3784 0 2279 3783 0 3782 3783 0 3733 3721 0 3722 3734 0 3798 3781 0 + 2276 3798 0 3797 3798 0 2275 3797 0 3739 3740 0 3740 3719 0 3720 3739 0 3796 3797 0; + setAttr ".ed[7470:7635]" 2274 3796 0 3735 3738 0 3738 3737 0 3737 3736 0 3795 3796 0 + 2291 3795 0 3738 3740 0 3739 3737 0 3794 3795 0 2290 3794 0 3793 3794 0 2289 3793 0 + 3692 3742 0 3741 3694 0 3792 3793 0 2288 3792 0 3791 3792 0 3743 3745 0 3745 3746 0 + 3746 3744 0 3745 3713 0 3714 3746 0 3771 3772 0 2321 3771 0 2320 3770 0 3770 3771 0 + 3769 3770 0 2319 3769 0 3747 3749 0 3749 3750 0 3750 3748 0 3768 3769 0 2318 3768 0 + 3749 3711 0 3712 3750 0 2317 3767 0 3767 3768 0 2316 3766 0 3766 3767 0 3751 3700 0 + 3702 3752 0 3765 3766 0 2315 3765 0 3764 3765 0 3708 3754 0 3753 3707 0 3780 3763 0 + 2312 3780 0 2311 3779 0 3779 3780 0 3757 3758 0 3758 3756 0 3755 3757 0 3710 3758 0 + 3757 3709 0 3778 3779 0 2310 3778 0 2327 3777 0 3777 3778 0 3776 3777 0 2326 3776 0 + 3761 3762 0 3762 3760 0 3759 3761 0 3696 3762 0 3761 3698 0 3773 3774 0 3774 2324 0 + 3774 3775 0 3775 2325 0 3775 3776 0 3763 3699 0 3700 3764 0 3751 3765 0 3711 3766 0 + 3749 3767 0 3747 3768 0 3713 3769 0 3745 3770 0 3743 3771 0 3697 3772 0 3698 3773 0 + 3761 3774 0 3759 3775 0 3709 3776 0 3757 3777 0 3755 3778 0 3707 3779 0 3753 3780 0 + 3781 3703 0 3704 3782 0 3731 3783 0 3715 3784 0 3729 3785 0 3727 3786 0 3725 3787 0 + 3717 3788 0 3723 3789 0 3693 3790 0 3694 3791 0 3741 3792 0 3719 3793 0 3740 3794 0 + 3738 3795 0 3735 3796 0 3721 3797 0 3733 3798 0 3846 3847 0 3847 3762 0 3708 3852 0 + 3852 3853 0 3853 3754 0 3710 3849 0 3849 3850 0 3850 3758 0 3853 3854 0 3756 3851 0 + 3851 3852 0 3850 3851 0 3760 3848 0 3848 3849 0 3847 3848 0 3744 3862 0 3862 3845 0 + 3855 3856 0 3856 3752 0 3748 3859 0 3859 3860 0 3860 3714 0 3856 3857 0 3857 3712 0 + 3746 3861 0 3861 3862 0 3860 3861 0 3750 3858 0 3858 3859 0 3857 3858 0 3837 3838 0 + 3838 3732 0 3838 3839 0 3839 3716 0 3724 3844 0 3844 3827 0 3839 3840 0 3840 3730 0 + 3718 3843 0 3843 3844 0 3726 3842 0 3842 3843 0 3728 3841 0 3841 3842 0 3840 3841 0 + 3828 3829 0 3829 3742 0 3829 3830 0 3830 3720 0 3734 3835 0 3835 3836 0 3830 3831 0 + 3831 3739 0 3722 3834 0 3834 3835 0 3736 3833 0 3833 3834 0 3737 3832 0 3832 3833 0; + setAttr ".ed[7636:7801]" 3831 3832 0 3827 3919 0 3919 3920 0 3920 3828 0 3920 3921 0 + 3921 3829 0 3921 3922 0 3922 3830 0 3922 3923 0 3923 3831 0 3923 3924 0 3924 3832 0 + 3924 3925 0 3925 3833 0 3925 3926 0 3926 3834 0 3926 3927 0 3927 3835 0 3927 3928 0 + 3928 3836 0 3928 3929 0 3929 3837 0 3929 3930 0 3930 3838 0 3930 3931 0 3931 3839 0 + 3931 3932 0 3932 3840 0 3932 3933 0 3933 3841 0 3933 3934 0 3934 3842 0 3934 3935 0 + 3935 3843 0 3935 3936 0 3936 3844 0 3936 3919 0 3845 3937 0 3937 3938 0 3938 3846 0 + 3938 3939 0 3939 3847 0 3939 3940 0 3940 3848 0 3940 3941 0 3941 3849 0 3941 3942 0 + 3942 3850 0 3942 3943 0 3943 3851 0 3943 3944 0 3944 3852 0 3944 3945 0 3945 3853 0 + 3945 3946 0 3946 3854 0 3946 3947 0 3947 3855 0 3947 3948 0 3948 3856 0 3948 3949 0 + 3949 3857 0 3949 3950 0 3950 3858 0 3950 3951 0 3951 3859 0 3951 3952 0 3952 3860 0 + 3952 3953 0 3953 3861 0 3953 3954 0 3954 3862 0 3954 3937 0 3684 3683 0 3683 3906 0 + 3906 3907 0 3907 3684 0 3690 3689 0 3689 3881 0 3881 3882 0 3882 3690 0 3864 3863 0 + 3863 3899 0 3899 3900 0 3900 3864 0 3866 3865 0 3865 3863 0 3864 3866 0 3865 3884 0 + 3884 3885 0 3885 3863 0 3864 3887 0 3887 3888 0 3888 3866 0 3868 3867 0 3867 3871 0 + 3871 3872 0 3872 3868 0 3870 3869 0 3869 3867 0 3868 3870 0 3809 3876 0 3876 3877 0 + 3877 3808 0 3808 3809 0 3869 3873 0 3873 3874 0 3874 3867 0 3871 3891 0 3891 3892 0 + 3892 3872 0 3877 3878 0 3878 3811 0 3811 3808 0 3874 3875 0 3875 3871 0 3873 3803 0 + 3803 3802 0 3802 3874 0 3802 3805 0 3805 3875 0 3876 3870 0 3868 3877 0 3872 3878 0 + 3880 3879 0 3879 3865 0 3866 3880 0 3879 3883 0 3883 3884 0 3888 3889 0 3889 3880 0 + 3881 3879 0 3880 3882 0 3883 3817 0 3817 3818 0 3818 3884 0 3818 3819 0 3819 3885 0 + 3886 3883 0 3881 3886 0 3887 3826 0 3826 3823 0 3823 3888 0 3823 3821 0 3821 3889 0 + 3889 3890 0 3890 3882 0 3821 3820 0 3820 3890 0 3820 3690 0 3689 3815 0 3815 3886 0 + 3815 3817 0 3891 3688 0 3688 3687 0 3687 3892 0 3893 3878 0 3892 3893 0 3875 3894 0 + 3894 3891 0 3805 3799 0 3799 3894 0 3799 3688 0 3687 3806 0 3806 3893 0 3806 3811 0; + setAttr ".ed[7802:7967]" 3812 3895 0 3895 3876 0 3809 3812 0 3896 3804 0 3804 3803 0 + 3873 3896 0 3898 3897 0 3897 3869 0 3870 3898 0 3897 3896 0 3895 3898 0 3899 3911 0 + 3911 3912 0 3912 3900 0 3900 3901 0 3901 3887 0 3825 3826 0 3901 3825 0 3885 3902 0 + 3902 3899 0 3816 3902 0 3819 3816 0 3904 3903 0 3903 3897 0 3898 3904 0 3903 3905 0 + 3905 3896 0 3906 3903 0 3904 3907 0 3906 3908 0 3908 3905 0 3683 3801 0 3801 3908 0 + 3801 3800 0 3800 3905 0 3800 3804 0 3810 3909 0 3909 3895 0 3812 3810 0 3907 3910 0 + 3910 3807 0 3807 3684 0 3904 3909 0 3909 3910 0 3810 3807 0 3911 3915 0 3915 3916 0 + 3916 3912 0 3913 3911 0 3902 3913 0 3914 3901 0 3912 3914 0 3915 3686 0 3686 3685 0 + 3685 3916 0 3916 3917 0 3917 3914 0 3914 3824 0 3824 3825 0 3917 3822 0 3822 3824 0 + 3685 3822 0 3918 3915 0 3913 3918 0 3816 3814 0 3814 3913 0 3814 3813 0 3813 3918 0 + 3813 3686 0 3919 3689 0 3690 3920 0 3820 3921 0 3821 3922 0 3823 3923 0 3826 3924 0 + 3825 3925 0 3824 3926 0 3822 3927 0 3685 3928 0 3686 3929 0 3813 3930 0 3814 3931 0 + 3816 3932 0 3819 3933 0 3818 3934 0 3817 3935 0 3815 3936 0 3937 3687 0 3688 3938 0 + 3799 3939 0 3805 3940 0 3802 3941 0 3803 3942 0 3804 3943 0 3800 3944 0 3801 3945 0 + 3683 3946 0 3684 3947 0 3807 3948 0 3810 3949 0 3812 3950 0 3809 3951 0 3808 3952 0 + 3811 3953 0 3806 3954 0 340 3955 0 3955 3956 0 3956 339 0 341 3957 0 3957 3955 0 + 343 3958 0 3958 3959 0 3959 342 0 3959 3960 0 3960 344 0 345 3961 0 3961 3957 0 3960 3962 0 + 3962 346 0 3956 3963 0 3963 347 0 348 3964 0 3964 3958 0 349 3965 0 3965 3964 0 3963 3966 0 + 3966 350 0 351 3967 0 3967 3965 0 3966 3967 0 3962 3968 0 3968 352 0 353 3969 0 3969 3961 0 + 3968 3970 0 3970 354 0 3970 3969 0 3955 3971 0 3971 3972 0 3972 3956 0 3957 3973 0 + 3973 3971 0 3958 3974 0 3974 3975 0 3975 3959 0 3975 3976 0 3976 3960 0 3961 3977 0 + 3977 3973 0 3976 3978 0 3978 3962 0 3972 3979 0 3979 3963 0 3964 3980 0 3980 3974 0 + 3965 3981 0 3981 3980 0 3979 3982 0 3982 3966 0 3967 3983 0 3983 3981 0 3982 3983 0 + 3978 3984 0 3984 3968 0 3969 3985 0 3985 3977 0; + setAttr ".ed[7968:8133]" 3984 3986 0 3986 3970 0 3986 3985 0 3971 3987 0 3987 3988 0 + 3988 3972 0 3973 3989 0 3989 3987 0 3974 3990 0 3990 3991 0 3991 3975 0 3991 3992 0 + 3992 3976 0 3977 3993 0 3993 3989 0 3992 3994 0 3994 3978 0 3988 3995 0 3995 3979 0 + 3980 3996 0 3996 3990 0 3981 3997 0 3997 3996 0 3995 3998 0 3998 3982 0 3983 3999 0 + 3999 3997 0 3998 3999 0 3994 4000 0 4000 3984 0 3985 4001 0 4001 3993 0 4000 4002 0 + 4002 3986 0 4002 4001 0 3987 4003 0 4003 4004 0 4004 3988 0 3989 4005 0 4005 4003 0 + 3990 4006 0 4006 4007 0 4007 3991 0 4007 4008 0 4008 3992 0 3993 4009 0 4009 4005 0 + 4008 4010 0 4010 3994 0 4004 4011 0 4011 3995 0 3996 4012 0 4012 4006 0 3997 4013 0 + 4013 4012 0 4011 4014 0 4014 3998 0 3999 4015 0 4015 4013 0 4014 4015 0 4010 4016 0 + 4016 4000 0 4001 4017 0 4017 4009 0 4016 4018 0 4018 4002 0 4018 4017 0 4003 4019 0 + 4019 4020 0 4020 4004 0 4005 4021 0 4021 4019 0 4006 4022 0 4022 4023 0 4023 4007 0 + 4023 4024 0 4024 4008 0 4009 4025 0 4025 4021 0 4024 4026 0 4026 4010 0 4020 4027 0 + 4027 4011 0 4012 4028 0 4028 4022 0 4013 4029 0 4029 4028 0 4027 4030 0 4030 4014 0 + 4015 4031 0 4031 4029 0 4030 4031 0 4026 4032 0 4032 4016 0 4017 4033 0 4033 4025 0 + 4032 4034 0 4034 4018 0 4034 4033 0 4019 4035 0 4035 4036 0 4036 4020 0 4021 4037 0 + 4037 4035 0 4022 4038 0 4038 4039 0 4039 4023 0 4039 4040 0 4040 4024 0 4025 4041 0 + 4041 4037 0 4040 4042 0 4042 4026 0 4036 4043 0 4043 4027 0 4028 4044 0 4044 4038 0 + 4029 4045 0 4045 4044 0 4043 4046 0 4046 4030 0 4031 4047 0 4047 4045 0 4046 4047 0 + 4042 4048 0 4048 4032 0 4033 4049 0 4049 4041 0 4048 4050 0 4050 4034 0 4050 4049 0 + 4035 4051 0 4051 4052 0 4052 4036 0 4037 4053 0 4053 4051 0 4038 4054 0 4054 4055 0 + 4055 4039 0 4055 4056 0 4056 4040 0 4041 4057 0 4057 4053 0 4056 4058 0 4058 4042 0 + 4052 4059 0 4059 4043 0 4044 4060 0 4060 4054 0 4045 4061 0 4061 4060 0 4059 4062 0 + 4062 4046 0 4047 4063 0 4063 4061 0 4062 4063 0 4058 4064 0 4064 4048 0 4049 4065 0 + 4065 4057 0 4064 4066 0 4066 4050 0 4066 4065 0 4051 4067 0 4067 4068 0 4068 4052 0; + setAttr ".ed[8134:8299]" 4053 4069 0 4069 4067 0 4054 4070 0 4070 4071 0 4071 4055 0 + 4071 4072 0 4072 4056 0 4057 4073 0 4073 4069 0 4072 4074 0 4074 4058 0 4068 4075 0 + 4075 4059 0 4060 4076 0 4076 4070 0 4061 4077 0 4077 4076 0 4075 4078 0 4078 4062 0 + 4063 4079 0 4079 4077 0 4078 4079 0 4074 4080 0 4080 4064 0 4065 4081 0 4081 4073 0 + 4080 4082 0 4082 4066 0 4082 4081 0 4067 4083 0 4083 4084 0 4084 4068 0 4069 4085 0 + 4085 4083 0 4070 4086 0 4086 4087 0 4087 4071 0 4087 4088 0 4088 4072 0 4073 4089 0 + 4089 4085 0 4088 4090 0 4090 4074 0 4084 4091 0 4091 4075 0 4076 4092 0 4092 4086 0 + 4077 4093 0 4093 4092 0 4091 4094 0 4094 4078 0 4079 4095 0 4095 4093 0 4094 4095 0 + 4090 4096 0 4096 4080 0 4081 4097 0 4097 4089 0 4096 4098 0 4098 4082 0 4098 4097 0 + 4083 4099 0 4099 4100 0 4100 4084 0 4085 4101 0 4101 4099 0 4086 4102 0 4102 4103 0 + 4103 4087 0 4103 4104 0 4104 4088 0 4089 4105 0 4105 4101 0 4104 4106 0 4106 4090 0 + 4100 4107 0 4107 4091 0 4092 4108 0 4108 4102 0 4093 4109 0 4109 4108 0 4107 4110 0 + 4110 4094 0 4095 4111 0 4111 4109 0 4110 4111 0 4106 4112 0 4112 4096 0 4097 4113 0 + 4113 4105 0 4112 4114 0 4114 4098 0 4114 4113 0 4099 4115 0 4115 4116 0 4116 4100 0 + 4101 4117 0 4117 4115 0 4102 4118 0 4118 4119 0 4119 4103 0 4119 4120 0 4120 4104 0 + 4105 4121 0 4121 4117 0 4120 4122 0 4122 4106 0 4116 4123 0 4123 4107 0 4108 4124 0 + 4124 4118 0 4109 4125 0 4125 4124 0 4123 4126 0 4126 4110 0 4111 4127 0 4127 4125 0 + 4126 4127 0 4122 4128 0 4128 4112 0 4113 4129 0 4129 4121 0 4128 4130 0 4130 4114 0 + 4130 4129 0 4115 4131 0 4131 4132 0 4132 4116 0 4117 4133 0 4133 4131 0 4118 4134 0 + 4134 4135 0 4135 4119 0 4135 4136 0 4136 4120 0 4121 4137 0 4137 4133 0 4136 4138 0 + 4138 4122 0 4132 4139 0 4139 4123 0 4124 4140 0 4140 4134 0 4125 4141 0 4141 4140 0 + 4139 4142 0 4142 4126 0 4127 4143 0 4143 4141 0 4142 4143 0 4138 4144 0 4144 4128 0 + 4129 4145 0 4145 4137 0 4144 4146 0 4146 4130 0 4146 4145 0 4131 4147 0 4147 4148 0 + 4148 4132 0 4133 4149 0 4149 4147 0 4134 4150 0 4150 4151 0 4151 4135 0 4151 4152 0; + setAttr ".ed[8300:8465]" 4152 4136 0 4137 4153 0 4153 4149 0 4152 4154 0 4154 4138 0 + 4148 4155 0 4155 4139 0 4140 4156 0 4156 4150 0 4141 4157 0 4157 4156 0 4155 4158 0 + 4158 4142 0 4143 4159 0 4159 4157 0 4158 4159 0 4154 4160 0 4160 4144 0 4145 4161 0 + 4161 4153 0 4160 4162 0 4162 4146 0 4162 4161 0 128 4163 0 4163 4164 0 4164 129 0 + 133 4165 0 4165 4163 0 135 4166 0 4166 4165 0 137 4167 0 4167 4166 0 139 4168 0 4168 4167 0 + 141 4169 0 4169 4170 0 4170 142 0 4170 4171 0 4171 144 0 4171 4168 0 146 4172 0 4172 4173 0 + 4173 147 0 150 4174 0 4174 4172 0 4164 4175 0 4175 309 0 4173 4176 0 4176 153 0 154 4177 0 + 4177 4169 0 156 4178 0 4178 4177 0 4176 4179 0 4179 158 0 162 4180 0 4180 4181 0 + 4181 163 0 4181 4182 0 4182 165 0 167 4183 0 4183 4180 0 4182 4184 0 4184 168 0 171 4185 0 + 4185 4183 0 4184 4186 0 4186 316 0 4179 4185 0 4175 4174 0 4186 4178 0 174 4187 0 + 4187 4188 0 4188 175 0 4188 4189 0 4189 177 0 180 4190 0 4190 4191 0 4191 181 0 182 4192 0 + 4192 4190 0 4191 4193 0 4193 184 0 4193 4194 0 4194 187 0 189 4195 0 4195 4192 0 + 4189 4196 0 4196 317 0 190 4197 0 4197 4198 0 4198 191 0 194 4199 0 4199 4197 0 4194 4199 0 + 196 4200 0 4200 4201 0 4201 197 0 4201 4202 0 4202 200 0 4202 4203 0 4203 203 0 204 4204 0 + 4204 4200 0 4203 4205 0 4205 207 0 208 4206 0 4206 4204 0 4205 4207 0 4207 211 0 + 213 4208 0 4208 4209 0 4209 324 0 4207 4187 0 215 4210 0 4210 4208 0 4198 4210 0 + 4196 4195 0 4209 4206 0 4163 4211 0 4211 4212 0 4212 4164 0 4165 4213 0 4213 4211 0 + 4166 4214 0 4214 4213 0 4167 4215 0 4215 4214 0 4168 4216 0 4216 4215 0 4169 4217 0 + 4217 4218 0 4218 4170 0 4218 4219 0 4219 4171 0 4219 4216 0 4172 4220 0 4220 4221 0 + 4221 4173 0 4174 4222 0 4222 4220 0 4212 4223 0 4223 4175 0 4221 4224 0 4224 4176 0 + 4177 4225 0 4225 4217 0 4178 4226 0 4226 4225 0 4224 4227 0 4227 4179 0 4180 4228 0 + 4228 4229 0 4229 4181 0 4229 4230 0 4230 4182 0 4183 4231 0 4231 4228 0 4230 4232 0 + 4232 4184 0 4185 4233 0 4233 4231 0 4232 4234 0 4234 4186 0 4227 4233 0 4223 4222 0; + setAttr ".ed[8466:8514]" 4234 4226 0 4187 4235 0 4235 4236 0 4236 4188 0 4236 4237 0 + 4237 4189 0 4190 4238 0 4238 4239 0 4239 4191 0 4192 4240 0 4240 4238 0 4239 4241 0 + 4241 4193 0 4241 4242 0 4242 4194 0 4195 4243 0 4243 4240 0 4237 4244 0 4244 4196 0 + 4197 4245 0 4245 4246 0 4246 4198 0 4199 4247 0 4247 4245 0 4242 4247 0 4200 4248 0 + 4248 4249 0 4249 4201 0 4249 4250 0 4250 4202 0 4250 4251 0 4251 4203 0 4204 4252 0 + 4252 4248 0 4251 4253 0 4253 4205 0 4206 4254 0 4254 4252 0 4253 4255 0 4255 4207 0 + 4208 4256 0 4256 4257 0 4257 4209 0 4255 4235 0 4210 4258 0 4258 4256 0 4246 4258 0 + 4244 4243 0 4257 4254 0; + setAttr -s 4255 -ch 16966 ".fc"; + setAttr ".fc[0:499]" -type "polyFaces" + f 4 0 1 2 3 + mu 0 4 0 1 2 3 + f 4 4 5 6 -2 + mu 0 4 1 4 5 2 + f 4 7 8 9 -6 + mu 0 4 4 6 7 5 + f 4 10 11 12 -9 + mu 0 4 6 8 9 7 + f 4 13 14 15 -12 + mu 0 4 10 11 12 13 + f 4 16 17 18 -15 + mu 0 4 11 14 15 12 + f 4 19 20 21 -18 + mu 0 4 14 16 17 15 + f 4 22 23 24 -21 + mu 0 4 16 18 19 17 + f 4 25 26 27 -24 + mu 0 4 18 20 21 19 + f 4 28 29 30 -27 + mu 0 4 20 22 23 21 + f 4 31 32 33 -30 + mu 0 4 22 24 25 23 + f 4 34 35 36 -33 + mu 0 4 24 26 27 25 + f 4 37 38 39 -36 + mu 0 4 26 28 29 27 + f 4 40 41 42 -39 + mu 0 4 28 30 31 29 + f 4 43 44 45 -42 + mu 0 4 30 32 33 31 + f 4 46 -4 47 -45 + mu 0 4 32 0 3 33 + f 4 48 49 50 51 + mu 0 4 34 35 36 37 + f 4 52 53 54 -50 + mu 0 4 35 38 39 36 + f 4 55 56 57 -54 + mu 0 4 38 40 41 39 + f 4 58 59 60 -57 + mu 0 4 40 42 43 41 + f 4 61 62 63 -60 + mu 0 4 44 45 46 47 + f 4 64 65 66 -63 + mu 0 4 45 48 49 46 + f 4 67 68 69 -66 + mu 0 4 48 50 51 49 + f 4 70 71 72 -69 + mu 0 4 50 52 53 51 + f 4 73 74 75 -72 + mu 0 4 52 54 55 53 + f 4 76 77 78 -75 + mu 0 4 54 56 57 55 + f 4 79 80 81 -78 + mu 0 4 56 58 59 57 + f 4 82 83 84 -81 + mu 0 4 58 60 61 59 + f 4 85 86 87 -84 + mu 0 4 60 62 63 61 + f 4 88 89 90 -87 + mu 0 4 62 64 65 63 + f 4 91 92 93 -90 + mu 0 4 64 66 67 65 + f 4 94 -52 95 -93 + mu 0 4 66 34 37 67 + f 4 96 97 98 99 + mu 0 4 68 69 70 71 + f 4 100 101 102 -98 + mu 0 4 69 72 73 70 + f 4 103 104 105 -102 + mu 0 4 72 74 75 73 + f 4 106 107 108 -105 + mu 0 4 74 76 77 75 + f 4 109 110 111 -108 + mu 0 4 78 79 80 81 + f 4 112 113 114 -111 + mu 0 4 79 82 83 80 + f 4 115 116 117 -114 + mu 0 4 82 84 85 83 + f 4 118 119 120 -117 + mu 0 4 84 86 87 85 + f 4 121 122 123 -120 + mu 0 4 86 88 89 87 + f 4 124 125 126 -123 + mu 0 4 88 90 91 89 + f 4 127 128 129 -126 + mu 0 4 90 92 93 91 + f 4 130 131 132 -129 + mu 0 4 92 94 95 93 + f 4 133 134 135 -132 + mu 0 4 94 96 97 95 + f 4 136 137 138 -135 + mu 0 4 96 98 99 97 + f 4 139 140 141 -138 + mu 0 4 98 100 101 99 + f 4 142 -100 143 -141 + mu 0 4 100 68 71 101 + f 4 144 145 146 147 + mu 0 4 102 103 104 105 + f 4 148 149 150 -146 + mu 0 4 103 106 107 104 + f 4 151 152 153 -150 + mu 0 4 106 108 109 107 + f 4 154 155 156 -153 + mu 0 4 108 110 111 109 + f 4 157 158 159 -156 + mu 0 4 112 113 114 115 + f 4 160 161 162 -159 + mu 0 4 113 116 117 114 + f 4 163 164 165 -162 + mu 0 4 116 118 119 117 + f 4 166 167 168 -165 + mu 0 4 118 120 121 119 + f 4 169 170 171 -168 + mu 0 4 120 122 123 121 + f 4 172 173 174 -171 + mu 0 4 122 124 125 123 + f 4 175 176 177 -174 + mu 0 4 124 126 127 125 + f 4 178 179 180 -177 + mu 0 4 126 128 129 127 + f 4 181 182 183 -180 + mu 0 4 128 130 131 129 + f 4 184 185 186 -183 + mu 0 4 130 132 133 131 + f 4 187 188 189 -186 + mu 0 4 132 134 135 133 + f 4 190 -148 191 -189 + mu 0 4 134 102 105 135 + f 4 192 193 194 195 + mu 0 4 136 137 138 139 + f 4 196 197 198 -196 + mu 0 4 139 140 141 136 + f 4 199 200 201 -198 + mu 0 4 140 142 143 141 + f 4 202 -201 203 204 + mu 0 4 144 143 142 145 + f 4 -205 205 206 207 + mu 0 4 144 145 146 147 + f 4 208 209 210 211 + mu 0 4 148 149 150 151 + f 4 212 213 214 -212 + mu 0 4 151 152 153 148 + f 4 -214 215 -207 216 + mu 0 4 153 152 147 146 + f 4 217 218 219 220 + mu 0 4 154 155 156 157 + f 4 221 222 -218 223 + mu 0 4 158 159 155 154 + f 4 -194 224 225 226 + mu 0 4 138 137 160 161 + f 4 227 228 -220 229 + mu 0 4 162 163 157 156 + f 4 230 231 -210 232 + mu 0 4 164 165 150 149 + f 4 233 234 -231 235 + mu 0 4 166 167 165 164 + f 4 -228 236 237 238 + mu 0 4 163 162 168 169 + f 4 239 240 241 242 + mu 0 4 170 171 172 173 + f 4 243 244 -240 245 + mu 0 4 174 175 171 170 + f 4 -242 246 247 248 + mu 0 4 173 172 176 177 + f 4 249 -244 250 251 + mu 0 4 178 175 174 179 + f 4 -248 252 253 254 + mu 0 4 177 176 180 181 + f 4 -234 255 256 257 + mu 0 4 167 166 182 183 + f 4 -254 258 -238 259 + mu 0 4 181 180 169 168 + f 4 260 261 262 263 + mu 0 4 184 185 186 187 + f 4 264 265 -261 266 + mu 0 4 188 189 185 184 + f 4 267 268 269 270 + mu 0 4 190 191 192 193 + f 4 271 272 -270 273 + mu 0 4 194 195 193 192 + f 4 274 275 276 -268 + mu 0 4 190 196 197 191 + f 4 277 278 -276 279 + mu 0 4 198 199 197 196 + f 4 280 -272 281 282 + mu 0 4 200 195 194 201 + f 4 -265 283 284 285 + mu 0 4 189 188 202 203 + f 4 286 287 288 289 + mu 0 4 204 205 206 207 + f 4 290 291 -287 292 + mu 0 4 208 209 205 204 + f 4 293 -291 294 -278 + mu 0 4 198 209 208 199 + f 4 295 296 297 298 + mu 0 4 210 211 212 213 + f 4 -298 299 300 301 + mu 0 4 213 212 214 215 + f 4 302 303 -301 304 + mu 0 4 216 217 215 214 + f 4 305 306 -296 307 + mu 0 4 218 219 211 210 + f 4 308 309 -303 310 + mu 0 4 220 221 217 216 + f 4 311 312 -306 313 + mu 0 4 222 223 219 218 + f 4 314 315 -309 316 + mu 0 4 224 225 221 220 + f 4 317 318 319 -312 + mu 0 4 222 226 227 223 + f 4 -263 320 -315 321 + mu 0 4 187 186 225 224 + f 4 322 323 324 325 + mu 0 4 228 229 230 231 + f 4 -325 326 -289 327 + mu 0 4 231 230 207 206 + f 4 328 329 -195 330 + mu 0 4 232 233 139 138 + f 4 331 332 -197 -330 + mu 0 4 233 234 140 139 + f 4 333 334 -200 -333 + mu 0 4 234 235 142 140 + f 4 335 336 -204 -335 + mu 0 4 235 236 145 142 + f 4 337 338 -206 -337 + mu 0 4 236 237 146 145 + f 4 -217 -339 339 340 + mu 0 4 153 146 237 238 + f 4 -215 -341 341 342 + mu 0 4 148 153 238 239 + f 4 -209 -343 343 344 + mu 0 4 149 148 239 240 + f 4 345 346 -233 -345 + mu 0 4 240 241 164 149 + f 4 -236 -347 347 348 + mu 0 4 166 164 241 242 + f 4 349 -256 -349 350 + mu 0 4 243 182 166 242 + f 4 -250 351 352 353 + mu 0 4 175 178 244 245 + f 4 -245 -354 354 355 + mu 0 4 171 175 245 246 + f 4 356 357 -241 -356 + mu 0 4 246 247 172 171 + f 4 358 -247 -358 359 + mu 0 4 248 176 172 247 + f 4 360 -253 -359 361 + mu 0 4 249 180 176 248 + f 4 -282 362 363 364 + mu 0 4 201 194 250 251 + f 4 365 366 -277 367 + mu 0 4 252 253 191 197 + f 4 368 369 -269 -367 + mu 0 4 253 254 192 191 + f 4 -274 -370 370 -363 + mu 0 4 194 192 254 250 + f 4 371 -368 -279 372 + mu 0 4 255 252 197 199 + f 4 373 -373 -295 374 + mu 0 4 256 255 199 208 + f 4 -293 375 376 -375 + mu 0 4 208 204 257 256 + f 4 377 -376 -290 378 + mu 0 4 258 257 204 207 + f 4 379 -379 -327 380 + mu 0 4 259 258 207 230 + f 4 381 -381 -324 382 + mu 0 4 260 259 230 229 + f 4 383 384 -318 385 + mu 0 4 261 262 226 222 + f 4 -308 386 387 388 + mu 0 4 218 210 263 264 + f 4 389 -386 -314 -389 + mu 0 4 264 261 222 218 + f 4 390 391 -302 392 + mu 0 4 265 266 213 215 + f 4 -299 -392 393 -387 + mu 0 4 210 213 266 263 + f 4 -304 394 395 -393 + mu 0 4 215 217 267 265 + f 4 396 397 398 399 + mu 0 4 268 269 270 271 + f 4 -400 400 401 402 + mu 0 4 268 271 272 273 + f 4 403 404 405 406 + mu 0 4 274 275 276 277 + f 4 407 408 409 410 + mu 0 4 278 279 280 281 + f 4 -402 411 412 413 + mu 0 4 273 272 282 283 + f 4 -409 414 -407 415 + mu 0 4 280 279 274 277 + f 4 416 -259 -361 417 + mu 0 4 284 169 180 249 + f 4 418 -395 -310 419 + mu 0 4 285 267 217 221 + f 4 -417 420 421 422 + mu 0 4 169 284 286 287 + f 4 423 -422 424 -420 + mu 0 4 221 287 286 285 + f 4 425 426 427 -286 + mu 0 4 203 288 289 189 + f 4 -227 428 429 -331 + mu 0 4 138 161 290 232 + f 4 -266 -428 430 431 + mu 0 4 185 189 289 291 + f 4 -224 432 433 434 + mu 0 4 158 154 292 293 + f 4 435 436 -262 -432 + mu 0 4 291 294 186 185 + f 4 -221 437 438 -433 + mu 0 4 154 157 295 292 + f 4 439 -437 440 441 + mu 0 4 296 186 294 297 + f 4 442 -442 443 -438 + mu 0 4 157 296 297 295 + f 4 444 -239 -423 445 + mu 0 4 298 163 169 287 + f 4 -424 -316 446 -446 + mu 0 4 287 221 225 298 + f 4 -447 -321 -440 447 + mu 0 4 298 225 186 296 + f 4 -445 -448 -443 -229 + mu 0 4 163 298 296 157 + f 4 448 449 -398 450 + mu 0 4 299 300 270 269 + f 4 -405 451 452 453 + mu 0 4 276 275 301 302 + f 4 -413 454 455 456 + mu 0 4 283 282 303 304 + f 4 457 458 459 -449 + mu 0 4 299 305 306 300 + f 4 460 461 462 -456 + mu 0 4 303 307 308 304 + f 4 463 -459 464 465 + mu 0 4 309 306 305 310 + f 4 466 467 -453 468 + mu 0 4 311 312 302 301 + f 4 469 470 -411 471 + mu 0 4 313 314 278 281 + f 4 472 -470 473 -462 + mu 0 4 307 314 313 308 + f 4 -467 474 -466 475 + mu 0 4 312 311 309 310 + f 4 476 477 -458 478 + mu 0 4 315 316 305 299 + f 4 479 -479 -451 480 + mu 0 4 317 315 299 269 + f 4 -397 481 482 -481 + mu 0 4 269 268 318 317 + f 4 483 -482 -403 484 + mu 0 4 319 318 268 273 + f 4 -414 485 486 -485 + mu 0 4 273 283 320 319 + f 4 487 -486 -457 488 + mu 0 4 321 320 283 304 + f 4 -477 489 490 491 + mu 0 4 316 315 322 323 + f 4 492 493 -490 -480 + mu 0 4 317 324 322 315 + f 4 494 495 -493 -483 + mu 0 4 318 325 324 317 + f 4 496 497 -495 -484 + mu 0 4 319 326 325 318 + f 4 498 -497 -487 499 + mu 0 4 327 326 319 320 + f 4 500 -500 -488 501 + mu 0 4 328 327 320 321 + f 4 502 -501 503 -434 + mu 0 4 292 327 328 293 + f 4 504 -499 -503 -439 + mu 0 4 295 326 327 292 + f 4 -498 -505 -444 505 + mu 0 4 325 326 295 297 + f 4 -496 -506 -441 506 + mu 0 4 324 325 297 294 + f 4 -494 -507 -436 507 + mu 0 4 322 324 294 291 + f 4 -491 -508 -431 508 + mu 0 4 323 322 291 289 + f 4 -226 509 -222 510 + mu 0 4 161 160 159 158 + f 4 -429 -511 -435 511 + mu 0 4 290 161 158 293 + f 4 -489 -463 512 513 + mu 0 4 321 304 308 329 + f 4 -502 -514 514 515 + mu 0 4 328 321 329 330 + f 4 -516 516 -512 -504 + mu 0 4 328 330 290 293 + f 4 517 -350 518 -352 + mu 0 4 178 182 243 244 + f 4 -257 -518 -252 519 + mu 0 4 183 182 178 179 + f 4 -285 520 -283 521 + mu 0 4 203 202 200 201 + f 4 522 -426 -522 -365 + mu 0 4 251 288 203 201 + f 4 -478 523 524 -465 + mu 0 4 305 316 331 310 + f 4 -492 525 526 -524 + mu 0 4 316 323 332 331 + f 4 -526 -509 -427 527 + mu 0 4 332 323 289 288 + f 4 -385 528 -383 529 + mu 0 4 226 262 260 229 + f 4 -319 -530 -323 530 + mu 0 4 227 226 229 228 + f 4 -476 -525 531 532 + mu 0 4 312 310 331 333 + f 4 533 534 -468 -533 + mu 0 4 333 334 302 312 + f 4 -535 535 536 -454 + mu 0 4 302 334 335 276 + f 4 -537 537 538 -406 + mu 0 4 276 335 336 277 + f 4 -539 539 540 -416 + mu 0 4 277 336 337 280 + f 4 -541 541 542 -410 + mu 0 4 280 337 338 281 + f 4 -543 543 544 -472 + mu 0 4 281 338 339 313 + f 4 -474 -545 545 -513 + mu 0 4 308 313 339 329 + f 4 546 -515 -546 547 + mu 0 4 340 330 329 339 + f 4 -544 548 549 -548 + mu 0 4 339 338 341 340 + f 4 -549 -542 550 551 + mu 0 4 341 338 337 342 + f 4 -551 -540 552 553 + mu 0 4 342 337 336 343 + f 4 -553 -538 554 555 + mu 0 4 343 336 335 344 + f 4 -555 -536 556 557 + mu 0 4 344 335 334 345 + f 4 -534 558 559 -557 + mu 0 4 334 333 346 345 + f 4 -532 -527 560 -559 + mu 0 4 333 331 332 346 + f 4 -547 561 -430 -517 + mu 0 4 330 340 232 290 + f 4 562 -561 -528 -523 + mu 0 4 251 346 332 288 + f 4 563 564 -404 565 + mu 0 4 347 348 275 274 + f 4 -415 566 567 -566 + mu 0 4 274 279 349 347 + f 4 568 569 -399 570 + mu 0 4 350 351 271 270 + f 4 -401 -570 571 572 + mu 0 4 272 271 351 352 + f 4 573 -567 -408 574 + mu 0 4 353 349 279 278 + f 4 -412 -573 575 576 + mu 0 4 282 272 352 354 + f 4 577 578 -452 -565 + mu 0 4 348 355 301 275 + f 4 -450 579 580 -571 + mu 0 4 270 300 356 350 + f 4 581 -580 -460 582 + mu 0 4 357 356 300 306 + f 4 -469 -579 583 584 + mu 0 4 311 301 355 358 + f 4 585 586 -583 -464 + mu 0 4 309 359 357 306 + f 4 -586 -475 -585 587 + mu 0 4 359 309 311 358 + f 4 588 589 -455 -577 + mu 0 4 354 360 303 282 + f 4 -471 590 591 -575 + mu 0 4 278 314 361 353 + f 4 592 -461 -590 593 + mu 0 4 362 307 303 360 + f 4 -593 594 -591 -473 + mu 0 4 307 362 361 314 + f 4 595 596 -372 597 + mu 0 4 363 364 252 255 + f 4 598 599 -366 -597 + mu 0 4 364 365 253 252 + f 4 600 601 -369 -600 + mu 0 4 365 366 254 253 + f 4 602 603 -371 -602 + mu 0 4 366 367 250 254 + f 4 604 605 -364 -604 + mu 0 4 367 368 251 250 + f 4 606 607 -563 -606 + mu 0 4 368 369 346 251 + f 4 -608 608 609 -560 + mu 0 4 346 369 370 345 + f 4 610 611 -558 -610 + mu 0 4 370 371 344 345 + f 4 612 -556 -612 613 + mu 0 4 372 343 344 371 + f 4 614 -554 -613 615 + mu 0 4 373 342 343 372 + f 4 -615 616 617 -552 + mu 0 4 342 373 374 341 + f 4 618 -550 -618 619 + mu 0 4 375 340 341 374 + f 4 620 -562 -619 621 + mu 0 4 376 232 340 375 + f 4 -329 -621 622 623 + mu 0 4 233 232 376 377 + f 4 624 625 -332 -624 + mu 0 4 377 378 234 233 + f 4 626 627 -334 -626 + mu 0 4 378 379 235 234 + f 4 628 629 -336 -628 + mu 0 4 379 380 236 235 + f 4 630 631 -338 -630 + mu 0 4 380 381 237 236 + f 4 -340 -632 632 633 + mu 0 4 238 237 381 382 + f 4 634 635 -342 -634 + mu 0 4 382 383 239 238 + f 4 636 637 -344 -636 + mu 0 4 383 384 240 239 + f 4 -374 638 639 -598 + mu 0 4 255 256 385 363 + f 4 640 -639 -377 641 + mu 0 4 386 385 256 257 + f 4 642 -642 -378 643 + mu 0 4 387 386 257 258 + f 4 644 -644 -380 645 + mu 0 4 388 387 258 259 + f 4 -382 646 647 -646 + mu 0 4 259 260 389 388 + f 4 -529 648 649 -647 + mu 0 4 260 262 390 389 + f 4 650 651 -346 -638 + mu 0 4 384 391 241 240 + f 4 652 653 -348 -652 + mu 0 4 391 392 242 241 + f 4 654 655 -351 -654 + mu 0 4 392 393 243 242 + f 4 656 657 -519 -656 + mu 0 4 393 394 244 243 + f 4 658 659 -353 -658 + mu 0 4 394 395 245 244 + f 4 660 661 -357 662 + mu 0 4 396 397 247 246 + f 4 663 -663 -355 -660 + mu 0 4 395 396 246 245 + f 4 664 665 -360 -662 + mu 0 4 397 398 248 247 + f 4 666 667 -362 -666 + mu 0 4 398 399 249 248 + f 4 668 -418 -668 669 + mu 0 4 400 284 249 399 + f 4 670 -425 671 672 + mu 0 4 401 285 286 402 + f 4 -669 673 -672 -421 + mu 0 4 284 400 402 286 + f 4 -671 674 675 -419 + mu 0 4 285 401 403 267 + f 4 -396 -676 676 677 + mu 0 4 265 267 403 404 + f 4 678 -391 -678 679 + mu 0 4 405 266 265 404 + f 4 680 681 -394 -679 + mu 0 4 405 406 263 266 + f 4 682 683 -388 -682 + mu 0 4 406 407 264 263 + f 4 -390 -684 684 685 + mu 0 4 261 264 407 408 + f 4 -384 -686 686 -649 + mu 0 4 262 261 408 390 + f 4 687 688 689 690 + mu 0 4 409 410 411 412 + f 4 691 -689 692 693 + mu 0 4 413 411 410 414 + f 4 694 -691 695 696 + mu 0 4 415 409 412 416 + f 4 697 698 699 -697 + mu 0 4 416 417 418 415 + f 4 700 701 702 -699 + mu 0 4 417 419 420 418 + f 4 703 704 705 -702 + mu 0 4 419 421 422 420 + f 4 706 707 708 -705 + mu 0 4 421 423 424 422 + f 4 709 -694 710 711 + mu 0 4 425 413 414 426 + f 4 712 -712 713 714 + mu 0 4 427 425 426 428 + f 4 715 -715 716 717 + mu 0 4 429 427 428 430 + f 4 718 -718 719 720 + mu 0 4 431 429 430 432 + f 4 721 -708 722 723 + mu 0 4 433 424 423 434 + f 4 724 -721 725 726 + mu 0 4 435 431 432 436 + f 4 727 -727 728 729 + mu 0 4 437 435 436 438 + f 4 730 -724 731 732 + mu 0 4 439 433 434 440 + f 4 -688 733 734 735 + mu 0 4 410 409 441 442 + f 4 -734 -695 -700 736 + mu 0 4 441 409 415 418 + f 4 737 -711 -693 -736 + mu 0 4 442 426 414 410 + f 4 -726 738 739 740 + mu 0 4 436 432 443 444 + f 4 -740 741 742 743 + mu 0 4 444 443 445 446 + f 4 744 745 -739 -720 + mu 0 4 430 447 443 432 + f 4 746 747 -742 -746 + mu 0 4 447 448 445 443 + f 4 748 749 -745 -717 + mu 0 4 428 449 447 430 + f 4 750 751 -747 -750 + mu 0 4 449 450 448 447 + f 4 -749 -714 -738 752 + mu 0 4 449 428 426 442 + f 4 753 -751 -753 -735 + mu 0 4 441 450 449 442 + f 4 754 -754 -737 -703 + mu 0 4 420 450 441 418 + f 4 -752 -755 -706 755 + mu 0 4 448 450 420 422 + f 4 -748 -756 -709 756 + mu 0 4 445 448 422 424 + f 4 -743 -757 -722 757 + mu 0 4 446 445 424 433 + f 4 758 759 -758 -731 + mu 0 4 439 451 446 433 + f 4 760 761 -744 -760 + mu 0 4 451 452 444 446 + f 4 762 -729 -741 -762 + mu 0 4 452 438 436 444 + f 4 -763 763 764 765 + mu 0 4 438 452 453 454 + f 4 -761 766 767 -764 + mu 0 4 452 451 455 453 + f 4 -759 768 769 -767 + mu 0 4 451 439 456 455 + f 4 -765 770 -603 771 + mu 0 4 454 453 367 366 + f 4 -768 772 -605 -771 + mu 0 4 453 455 368 367 + f 4 -770 773 -607 -773 + mu 0 4 455 456 369 368 + f 4 774 775 776 -733 + mu 0 4 440 457 458 439 + f 4 777 778 779 -776 + mu 0 4 457 459 460 458 + f 4 780 781 782 -779 + mu 0 4 459 461 462 460 + f 4 783 784 785 -782 + mu 0 4 461 463 464 462 + f 4 786 -785 787 788 + mu 0 4 465 464 463 466 + f 4 789 -789 790 791 + mu 0 4 467 465 466 468 + f 4 -792 792 793 794 + mu 0 4 467 468 469 470 + f 4 795 -794 796 797 + mu 0 4 471 470 469 472 + f 4 798 799 800 -798 + mu 0 4 472 473 474 471 + f 4 801 -800 802 803 + mu 0 4 475 474 473 476 + f 4 -804 804 805 806 + mu 0 4 475 476 477 478 + f 4 -806 807 808 809 + mu 0 4 478 477 479 480 + f 4 810 -769 -777 811 + mu 0 4 481 456 439 458 + f 4 812 -812 -780 813 + mu 0 4 482 481 458 460 + f 4 814 -814 -783 815 + mu 0 4 483 482 460 462 + f 4 816 -816 -786 817 + mu 0 4 484 483 462 464 + f 4 -787 818 819 -818 + mu 0 4 464 465 485 484 + f 4 820 -819 -790 821 + mu 0 4 486 485 465 467 + f 4 822 -822 -795 823 + mu 0 4 487 486 467 470 + f 4 824 -824 -796 825 + mu 0 4 488 487 470 471 + f 4 826 -826 -801 827 + mu 0 4 489 488 471 474 + f 4 828 -828 -802 829 + mu 0 4 490 489 474 475 + f 4 830 -830 -807 831 + mu 0 4 491 490 475 478 + f 4 832 833 834 -809 + mu 0 4 479 492 493 480 + f 4 835 836 -835 837 + mu 0 4 494 495 480 493 + f 4 838 -834 839 840 + mu 0 4 496 493 492 497 + f 4 841 842 843 -841 + mu 0 4 497 498 499 496 + f 4 844 845 846 847 + mu 0 4 500 501 502 503 + f 4 848 849 850 851 + mu 0 4 504 505 506 507 + f 4 852 -852 853 854 + mu 0 4 508 504 507 509 + f 4 855 -855 856 857 + mu 0 4 510 508 509 511 + f 4 858 -858 859 860 + mu 0 4 512 510 511 513 + f 4 861 862 863 864 + mu 0 4 514 515 516 517 + f 4 865 866 867 868 + mu 0 4 518 519 520 521 + f 4 869 870 871 -863 + mu 0 4 515 522 523 516 + f 4 872 -867 873 874 + mu 0 4 524 520 519 525 + f 4 875 -861 876 877 + mu 0 4 526 512 513 527 + f 4 878 879 880 881 + mu 0 4 528 529 530 531 + f 4 882 883 884 -881 + mu 0 4 530 532 533 531 + f 4 -846 885 886 887 + mu 0 4 502 501 534 535 + f 4 888 -865 889 890 + mu 0 4 536 514 517 537 + f 4 891 -869 892 893 + mu 0 4 538 518 521 539 + f 4 894 895 -879 896 + mu 0 4 540 541 529 528 + f 4 897 898 899 -878 + mu 0 4 527 542 543 526 + f 4 900 -843 901 -899 + mu 0 4 542 499 498 543 + f 4 -887 902 903 904 + mu 0 4 535 534 544 545 + f 4 905 906 907 908 + mu 0 4 546 547 548 549 + f 4 909 910 911 -909 + mu 0 4 549 550 551 546 + f 4 912 -911 913 914 + mu 0 4 552 551 550 553 + f 4 915 -915 916 -904 + mu 0 4 544 552 553 545 + f 4 917 -772 -601 918 + mu 0 4 554 454 366 365 + f 4 919 -730 920 921 + mu 0 4 555 437 438 556 + f 4 -921 -766 -918 922 + mu 0 4 556 438 454 554 + f 4 923 -922 924 925 + mu 0 4 557 555 556 558 + f 4 926 -926 927 928 + mu 0 4 559 557 558 560 + f 4 -599 929 930 -919 + mu 0 4 365 364 561 554 + f 4 -925 -923 -931 931 + mu 0 4 558 556 554 561 + f 4 932 -930 -596 933 + mu 0 4 562 561 364 363 + f 4 -928 -932 -933 934 + mu 0 4 560 558 561 562 + f 4 935 936 937 -821 + mu 0 4 486 563 564 485 + f 4 938 -936 -823 939 + mu 0 4 565 563 486 487 + f 4 940 941 -820 -938 + mu 0 4 564 566 484 485 + f 4 942 -940 -825 943 + mu 0 4 567 565 487 488 + f 4 944 945 -941 946 + mu 0 4 568 569 566 564 + f 4 947 948 -947 -937 + mu 0 4 563 570 568 564 + f 4 -948 -939 949 950 + mu 0 4 570 563 565 571 + f 3 951 -950 -943 + mu 0 3 567 571 565 + f 4 -774 -811 952 -609 + mu 0 4 369 456 481 370 + f 4 -813 953 -611 -953 + mu 0 4 481 482 371 370 + f 4 -954 -815 954 -614 + mu 0 4 371 482 483 372 + f 4 -945 955 -617 956 + mu 0 4 569 568 374 373 + f 4 -949 957 -620 -956 + mu 0 4 568 570 375 374 + f 4 -958 -951 958 -622 + mu 0 4 375 570 571 376 + f 4 959 960 -623 -959 + mu 0 4 571 572 377 376 + f 4 -960 -952 961 962 + mu 0 4 572 571 567 573 + f 4 -827 963 -962 -944 + mu 0 4 488 489 573 567 + f 4 -955 964 -957 -616 + mu 0 4 372 483 569 373 + f 4 -942 -946 -965 -817 + mu 0 4 484 566 569 483 + f 4 965 -964 -829 966 + mu 0 4 574 573 489 490 + f 4 967 968 969 -836 + mu 0 4 494 575 576 495 + f 4 -831 970 971 -967 + mu 0 4 490 491 576 574 + f 4 972 973 -625 -961 + mu 0 4 572 577 378 377 + f 4 -966 974 -973 -963 + mu 0 4 573 574 577 572 + f 4 -972 975 976 -975 + mu 0 4 574 576 578 577 + f 4 -810 -837 977 -832 + mu 0 4 478 480 495 491 + f 3 -971 -978 -970 + mu 0 3 576 491 495 + f 4 -977 978 -627 -974 + mu 0 4 577 578 379 378 + f 4 -969 979 980 -976 + mu 0 4 576 575 579 578 + f 4 981 -838 -839 982 + mu 0 4 580 494 493 496 + f 4 983 -968 -982 984 + mu 0 4 581 575 494 580 + f 3 -980 -984 985 + mu 0 3 579 575 581 + f 4 -981 986 -629 -979 + mu 0 4 578 579 380 379 + f 4 -850 987 -848 988 + mu 0 4 506 505 500 503 + f 4 989 -989 990 991 + mu 0 4 582 506 503 583 + f 4 -851 -990 992 -854 + mu 0 4 507 506 582 509 + f 4 -888 993 -991 -847 + mu 0 4 502 535 583 503 + f 4 -992 994 995 996 + mu 0 4 582 583 584 585 + f 4 -993 -997 997 -857 + mu 0 4 509 582 585 511 + f 4 -994 -905 998 -995 + mu 0 4 583 535 545 584 + f 4 -996 999 1000 1001 + mu 0 4 585 584 586 587 + f 4 -998 -1002 1002 -860 + mu 0 4 511 585 587 513 + f 4 -999 -917 1003 -1000 + mu 0 4 584 545 553 586 + f 4 -1001 1004 1005 1006 + mu 0 4 587 586 588 589 + f 4 -1003 -1007 1007 -877 + mu 0 4 513 587 589 527 + f 4 -1004 -914 1008 -1005 + mu 0 4 586 553 550 588 + f 4 -1006 1009 1010 1011 + mu 0 4 589 588 590 591 + f 4 -1008 -1012 1012 -898 + mu 0 4 527 589 591 542 + f 4 -1009 -910 1013 -1010 + mu 0 4 588 550 549 590 + f 3 -1011 1014 1015 + mu 0 3 591 590 592 + f 4 -1013 -1016 1016 -901 + mu 0 4 542 591 592 499 + f 4 -1014 -908 1017 -1015 + mu 0 4 590 549 548 592 + f 4 1018 1019 -631 -987 + mu 0 4 579 593 381 380 + f 4 1020 1021 -1019 -986 + mu 0 4 581 594 593 579 + f 4 1022 1023 -1021 -985 + mu 0 4 580 595 594 581 + f 4 -844 1024 -1023 -983 + mu 0 4 496 499 595 580 + f 4 1025 1026 -633 -1020 + mu 0 4 593 596 382 381 + f 4 1027 1028 1029 -907 + mu 0 4 547 597 598 548 + f 4 1030 -1025 -1017 1031 + mu 0 4 599 595 499 592 + f 4 -1018 -1030 1032 -1032 + mu 0 4 592 548 598 599 + f 3 1033 -1033 1034 + mu 0 3 600 599 598 + f 4 1035 -1024 -1031 -1034 + mu 0 4 600 594 595 599 + f 4 -1036 1036 -1026 -1022 + mu 0 4 594 600 596 593 + f 4 1037 1038 1039 -1029 + mu 0 4 597 601 602 598 + f 4 1040 1041 1042 -1027 + mu 0 4 596 603 604 382 + f 4 1043 -1037 -1035 -1040 + mu 0 4 602 596 600 598 + f 4 1044 -1041 -1044 1045 + mu 0 4 605 603 596 602 + f 4 1046 1047 -635 -1043 + mu 0 4 604 606 383 382 + f 4 1048 1049 -1046 -1039 + mu 0 4 601 607 605 602 + f 4 -674 1050 1051 1052 + mu 0 4 402 400 608 609 + f 4 1053 1054 1055 1056 + mu 0 4 610 611 612 613 + f 4 1057 1058 1059 1060 + mu 0 4 614 615 616 617 + f 4 -1056 1061 1062 1063 + mu 0 4 613 612 618 619 + f 4 -670 1064 1065 -1051 + mu 0 4 400 399 620 608 + f 4 1066 1067 1068 -1059 + mu 0 4 615 621 622 616 + f 4 1069 1070 1071 -1055 + mu 0 4 611 623 624 612 + f 4 -1072 1072 1073 -1062 + mu 0 4 612 624 625 618 + f 4 -667 1074 1075 -1065 + mu 0 4 399 398 626 620 + f 4 1076 1077 1078 -1068 + mu 0 4 621 627 628 622 + f 4 1079 1080 1081 -1071 + mu 0 4 623 629 630 624 + f 4 -1082 1082 1083 -1073 + mu 0 4 624 630 631 625 + f 4 1084 1085 1086 1087 + mu 0 4 632 633 634 635 + f 4 1088 1089 1090 -1086 + mu 0 4 633 636 637 634 + f 4 1091 1092 1093 -1090 + mu 0 4 636 638 639 637 + f 4 1094 1095 1096 1097 + mu 0 4 640 641 642 643 + f 4 1098 -1098 1099 1100 + mu 0 4 644 640 643 645 + f 4 1101 -1101 1102 1103 + mu 0 4 646 644 645 647 + f 4 -1094 1104 -1095 1105 + mu 0 4 637 639 641 640 + f 4 -1091 -1106 -1099 1106 + mu 0 4 634 637 640 644 + f 4 -1087 -1107 -1102 1107 + mu 0 4 635 634 644 646 + f 4 1108 1109 1110 -192 + mu 0 4 105 648 649 135 + f 4 -1111 1111 1112 -190 + mu 0 4 135 649 650 133 + f 4 1113 1114 -187 -1113 + mu 0 4 650 651 131 133 + f 4 1115 1116 -184 -1115 + mu 0 4 651 652 129 131 + f 4 1117 1118 -181 -1117 + mu 0 4 652 653 127 129 + f 4 -1119 1119 1120 -178 + mu 0 4 127 653 654 125 + f 4 -1121 1121 1122 -175 + mu 0 4 125 654 655 123 + f 4 -1123 1123 1124 -172 + mu 0 4 123 655 656 121 + f 4 -1125 1125 1126 -169 + mu 0 4 121 656 657 119 + f 4 -1127 1127 1128 -166 + mu 0 4 119 657 658 117 + f 4 -1129 1129 1130 -163 + mu 0 4 117 658 659 114 + f 4 -1131 1131 1132 -160 + mu 0 4 114 659 660 115 + f 4 -1133 1133 1134 -157 + mu 0 4 111 661 662 109 + f 4 1135 1136 -1109 -147 + mu 0 4 104 663 648 105 + f 4 1137 1138 -1136 -151 + mu 0 4 107 664 663 104 + f 4 1139 -1138 -154 -1135 + mu 0 4 662 664 107 109 + f 4 1140 1141 -143 1142 + mu 0 4 665 666 68 100 + f 4 1143 -1143 -140 1144 + mu 0 4 667 665 100 98 + f 4 -137 1145 1146 -1145 + mu 0 4 98 96 668 667 + f 4 -134 1147 1148 -1146 + mu 0 4 96 94 669 668 + f 4 1149 1150 -1148 -131 + mu 0 4 92 670 669 94 + f 4 1151 -1150 -128 1152 + mu 0 4 671 670 92 90 + f 4 1153 -1153 -125 1154 + mu 0 4 672 671 90 88 + f 4 1155 -1155 -122 1156 + mu 0 4 673 672 88 86 + f 4 1157 -1157 -119 1158 + mu 0 4 674 673 86 84 + f 4 1159 -1159 -116 1160 + mu 0 4 675 674 84 82 + f 4 1161 -1161 -113 1162 + mu 0 4 676 675 82 79 + f 4 1163 -1163 -110 1164 + mu 0 4 677 676 79 78; + setAttr ".fc[500:999]" + f 4 1165 -1165 -107 1166 + mu 0 4 678 679 76 74 + f 4 1167 1168 -1167 -104 + mu 0 4 72 680 678 74 + f 4 1169 -1168 -101 1170 + mu 0 4 681 680 72 69 + f 4 1171 -1171 -97 -1142 + mu 0 4 666 681 69 68 + f 4 1172 1173 -1141 1174 + mu 0 4 682 683 666 665 + f 4 1175 -1175 -1144 1176 + mu 0 4 684 682 665 667 + f 4 -1147 1177 1178 -1177 + mu 0 4 667 668 685 684 + f 4 -1149 1179 1180 -1178 + mu 0 4 668 669 686 685 + f 4 -1151 1181 1182 -1180 + mu 0 4 669 670 687 686 + f 4 1183 -1182 -1152 1184 + mu 0 4 688 687 670 671 + f 4 1185 -1185 -1154 1186 + mu 0 4 689 688 671 672 + f 4 1187 -1187 -1156 1188 + mu 0 4 690 689 672 673 + f 4 1189 -1189 -1158 1190 + mu 0 4 691 690 673 674 + f 4 1191 -1191 -1160 1192 + mu 0 4 692 691 674 675 + f 4 1193 -1193 -1162 1194 + mu 0 4 693 692 675 676 + f 4 1195 -1195 -1164 1196 + mu 0 4 694 693 676 677 + f 4 1197 -1197 -1166 1198 + mu 0 4 695 696 679 678 + f 4 -1169 1199 1200 -1199 + mu 0 4 678 680 697 695 + f 4 1201 -1200 -1170 1202 + mu 0 4 698 697 680 681 + f 4 1203 -1203 -1172 -1174 + mu 0 4 683 698 681 666 + f 4 1204 1205 1206 -47 + mu 0 4 32 699 700 0 + f 4 1207 -1205 -44 1208 + mu 0 4 701 699 32 30 + f 4 -1207 1209 1210 -1 + mu 0 4 0 700 702 1 + f 4 1211 1212 -5 -1211 + mu 0 4 702 703 4 1 + f 4 -1213 1213 1214 -8 + mu 0 4 4 703 704 6 + f 4 1215 1216 -11 -1215 + mu 0 4 704 705 8 6 + f 4 1217 -1209 -41 1218 + mu 0 4 706 701 30 28 + f 4 1219 -1219 -38 1220 + mu 0 4 707 706 28 26 + f 4 1221 -1221 -35 1222 + mu 0 4 708 707 26 24 + f 4 1223 -1223 -32 1224 + mu 0 4 709 708 24 22 + f 4 1225 -1225 -29 1226 + mu 0 4 710 709 22 20 + f 4 1227 -1227 -26 1228 + mu 0 4 711 710 20 18 + f 4 1229 -1229 -23 1230 + mu 0 4 712 711 18 16 + f 4 1231 1232 -14 -1217 + mu 0 4 713 714 11 10 + f 4 -1233 1233 1234 -17 + mu 0 4 11 714 715 14 + f 4 -1235 1235 -1231 -20 + mu 0 4 14 715 712 16 + f 4 -1110 1236 -1173 1237 + mu 0 4 649 648 683 682 + f 4 -1137 1238 -1204 -1237 + mu 0 4 648 663 698 683 + f 4 -1139 1239 -1202 -1239 + mu 0 4 663 664 697 698 + f 4 -1201 -1240 -1140 1240 + mu 0 4 695 697 664 662 + f 4 -1134 1241 -1198 -1241 + mu 0 4 662 661 696 695 + f 4 -1132 1242 -1196 -1242 + mu 0 4 660 659 693 694 + f 4 -1130 1243 -1194 -1243 + mu 0 4 659 658 692 693 + f 4 -1128 1244 -1192 -1244 + mu 0 4 658 657 691 692 + f 4 -1126 1245 -1190 -1245 + mu 0 4 657 656 690 691 + f 4 -1124 1246 -1188 -1246 + mu 0 4 656 655 689 690 + f 4 -1122 1247 -1186 -1247 + mu 0 4 655 654 688 689 + f 4 -1120 1248 -1184 -1248 + mu 0 4 654 653 687 688 + f 4 -1183 -1249 -1118 1249 + mu 0 4 686 687 653 652 + f 4 -1181 -1250 -1116 1250 + mu 0 4 685 686 652 651 + f 4 -1179 -1251 -1114 1251 + mu 0 4 684 685 651 650 + f 4 -1112 -1238 -1176 -1252 + mu 0 4 650 649 682 684 + f 4 1252 1253 -96 1254 + mu 0 4 716 717 67 37 + f 4 1255 -1255 -51 1256 + mu 0 4 718 716 37 36 + f 4 1257 1258 -1257 -55 + mu 0 4 39 719 718 36 + f 4 1259 -1258 -58 1260 + mu 0 4 720 719 39 41 + f 4 1261 1262 -1261 -61 + mu 0 4 43 721 720 41 + f 4 1263 1264 -1262 -64 + mu 0 4 46 722 723 47 + f 4 1265 -1264 -67 1266 + mu 0 4 724 722 46 49 + f 4 1267 -1267 -70 1268 + mu 0 4 725 724 49 51 + f 4 1269 1270 -1269 -73 + mu 0 4 53 726 725 51 + f 4 1271 1272 -1270 -76 + mu 0 4 55 727 726 53 + f 4 1273 1274 -1272 -79 + mu 0 4 57 728 727 55 + f 4 1275 1276 -1274 -82 + mu 0 4 59 729 728 57 + f 4 1277 1278 -1276 -85 + mu 0 4 61 730 729 59 + f 4 1279 1280 -1278 -88 + mu 0 4 63 731 730 61 + f 4 1281 1282 -1280 -91 + mu 0 4 65 732 731 63 + f 4 -1254 1283 -1282 -94 + mu 0 4 67 717 732 65 + f 4 1284 1285 -1253 1286 + mu 0 4 733 734 717 716 + f 4 1287 -1287 -1256 1288 + mu 0 4 735 733 716 718 + f 4 -1259 1289 1290 -1289 + mu 0 4 718 719 736 735 + f 4 1291 -1290 -1260 1292 + mu 0 4 737 736 719 720 + f 4 -1263 1293 1294 -1293 + mu 0 4 720 721 738 737 + f 4 -1265 1295 1296 -1294 + mu 0 4 723 722 739 740 + f 4 1297 -1296 -1266 1298 + mu 0 4 741 739 722 724 + f 4 1299 -1299 -1268 1300 + mu 0 4 742 741 724 725 + f 4 -1271 1301 1302 -1301 + mu 0 4 725 726 743 742 + f 4 -1273 1303 1304 -1302 + mu 0 4 726 727 744 743 + f 4 -1275 1305 1306 -1304 + mu 0 4 727 728 745 744 + f 4 -1277 1307 1308 -1306 + mu 0 4 728 729 746 745 + f 4 -1279 1309 1310 -1308 + mu 0 4 729 730 747 746 + f 4 -1281 1311 1312 -1310 + mu 0 4 730 731 748 747 + f 4 -1283 1313 1314 -1312 + mu 0 4 731 732 749 748 + f 4 -1284 -1286 1315 -1314 + mu 0 4 732 717 734 749 + f 4 -1206 1316 -1285 1317 + mu 0 4 700 699 734 733 + f 4 -1210 -1318 -1288 1318 + mu 0 4 702 700 733 735 + f 4 -1291 1319 -1212 -1319 + mu 0 4 735 736 703 702 + f 4 -1214 -1320 -1292 1320 + mu 0 4 704 703 736 737 + f 4 -1295 1321 -1216 -1321 + mu 0 4 737 738 705 704 + f 4 -1297 1322 -1232 -1322 + mu 0 4 740 739 714 713 + f 4 -1234 -1323 -1298 1323 + mu 0 4 715 714 739 741 + f 4 -1236 -1324 -1300 1324 + mu 0 4 712 715 741 742 + f 4 -1303 1325 -1230 -1325 + mu 0 4 742 743 711 712 + f 4 -1305 1326 -1228 -1326 + mu 0 4 743 744 710 711 + f 4 -1307 1327 -1226 -1327 + mu 0 4 744 745 709 710 + f 4 -1309 1328 -1224 -1328 + mu 0 4 745 746 708 709 + f 4 -1311 1329 -1222 -1329 + mu 0 4 746 747 707 708 + f 4 -1313 1330 -1220 -1330 + mu 0 4 747 748 706 707 + f 4 -1315 1331 -1218 -1331 + mu 0 4 748 749 701 706 + f 4 -1316 -1317 -1208 -1332 + mu 0 4 749 734 699 701 + f 4 -659 1332 1333 1334 + mu 0 4 395 394 750 751 + f 4 -661 1335 1336 1337 + mu 0 4 397 396 752 753 + f 4 -664 -1335 1338 -1336 + mu 0 4 396 395 751 752 + f 4 -665 -1338 1339 -1075 + mu 0 4 398 397 753 626 + f 4 1340 -1078 1341 1342 + mu 0 4 754 628 627 755 + f 4 1343 -1343 1344 1345 + mu 0 4 756 754 755 757 + f 4 1346 -1346 1347 1348 + mu 0 4 758 756 757 759 + f 4 1349 -1349 1350 1351 + mu 0 4 760 758 759 761 + f 4 1352 1353 1354 1355 + mu 0 4 762 763 764 765 + f 4 1356 1357 1358 1359 + mu 0 4 766 767 768 769 + f 4 -1359 1360 1361 1362 + mu 0 4 769 768 770 771 + f 4 1363 1364 -1353 1365 + mu 0 4 772 773 763 762 + f 4 -1355 1366 1367 1368 + mu 0 4 765 764 774 775 + f 4 1369 1370 1371 -1081 + mu 0 4 629 776 777 630 + f 4 1372 1373 1374 -1371 + mu 0 4 776 778 779 777 + f 4 1375 -1360 1376 -1374 + mu 0 4 778 766 769 779 + f 4 -1372 1377 1378 -1083 + mu 0 4 630 777 780 631 + f 4 -1375 1379 1380 -1378 + mu 0 4 777 779 781 780 + f 4 -1377 -1363 1381 -1380 + mu 0 4 779 769 771 781 + f 4 1382 1383 1384 -1093 + mu 0 4 638 782 783 639 + f 4 1385 1386 1387 -1384 + mu 0 4 782 784 785 783 + f 4 1388 -1366 1389 -1387 + mu 0 4 784 772 762 785 + f 4 -1385 1390 1391 -1105 + mu 0 4 639 783 786 641 + f 4 -1388 1392 1393 -1391 + mu 0 4 783 785 787 786 + f 4 -1390 -1356 1394 -1393 + mu 0 4 785 762 765 787 + f 4 -1392 1395 1396 -1096 + mu 0 4 641 786 788 642 + f 4 -1394 1397 1398 -1396 + mu 0 4 786 787 789 788 + f 4 -1395 -1369 1399 -1398 + mu 0 4 787 765 775 789 + f 4 -685 1400 1401 1402 + mu 0 4 408 407 790 791 + f 4 1403 1404 1405 1406 + mu 0 4 792 793 794 795 + f 4 1407 1408 1409 1410 + mu 0 4 796 797 798 799 + f 4 1411 1412 1413 1414 + mu 0 4 800 801 802 803 + f 4 1415 1416 -1408 1417 + mu 0 4 804 805 797 796 + f 4 -1406 1418 1419 1420 + mu 0 4 795 794 806 807 + f 4 -673 -1053 1421 1422 + mu 0 4 401 402 609 808 + f 4 -675 -1423 1423 1424 + mu 0 4 403 401 808 809 + f 4 -677 -1425 1425 1426 + mu 0 4 404 403 809 810 + f 4 -680 -1427 1427 1428 + mu 0 4 405 404 810 811 + f 4 -681 -1429 1429 1430 + mu 0 4 406 405 811 812 + f 4 -683 -1431 1431 -1401 + mu 0 4 407 406 812 790 + f 4 1432 -1061 1433 1434 + mu 0 4 813 614 617 814 + f 4 1435 -1435 1436 1437 + mu 0 4 815 813 814 816 + f 4 1438 -1438 1439 1440 + mu 0 4 817 815 816 818 + f 4 1441 -1441 1442 1443 + mu 0 4 819 817 818 820 + f 4 1444 -1444 1445 1446 + mu 0 4 821 819 820 822 + f 4 1447 -1447 1448 -1413 + mu 0 4 801 821 822 802 + f 4 1449 -1057 1450 1451 + mu 0 4 823 824 825 826 + f 4 1452 -1452 1453 1454 + mu 0 4 827 823 826 828 + f 4 1455 -1455 1456 1457 + mu 0 4 829 827 828 830 + f 4 1458 -1458 1459 1460 + mu 0 4 831 829 830 832 + f 4 1461 -1461 1462 1463 + mu 0 4 833 831 832 834 + f 4 1464 -1464 1465 -1417 + mu 0 4 805 833 834 797 + f 4 -1451 -1064 1466 1467 + mu 0 4 826 825 835 836 + f 4 -1454 -1468 1468 1469 + mu 0 4 828 826 836 837 + f 4 -1457 -1470 1470 1471 + mu 0 4 830 828 837 838 + f 4 -1460 -1472 1472 1473 + mu 0 4 832 830 838 839 + f 4 -1463 -1474 1474 1475 + mu 0 4 834 832 839 840 + f 4 -1466 -1476 1476 -1409 + mu 0 4 797 834 840 798 + f 4 1477 -1088 1478 1479 + mu 0 4 841 842 843 844 + f 4 1480 -1480 1481 1482 + mu 0 4 845 841 844 846 + f 4 1483 -1483 1484 1485 + mu 0 4 847 845 846 848 + f 4 1486 -1486 1487 1488 + mu 0 4 849 847 848 850 + f 4 1489 -1489 1490 1491 + mu 0 4 851 849 850 852 + f 4 1492 -1492 1493 -1405 + mu 0 4 793 851 852 794 + f 4 -1479 -1108 1494 1495 + mu 0 4 844 843 853 854 + f 4 -1482 -1496 1496 1497 + mu 0 4 846 844 854 855 + f 4 -1485 -1498 1498 1499 + mu 0 4 848 846 855 856 + f 4 -1488 -1500 1500 1501 + mu 0 4 850 848 856 857 + f 4 -1491 -1502 1502 1503 + mu 0 4 852 850 857 858 + f 4 -1494 -1504 1504 -1419 + mu 0 4 794 852 858 806 + f 4 -1420 1505 1506 1507 + mu 0 4 807 806 859 860 + f 4 -1495 -1104 1508 1509 + mu 0 4 854 853 861 862 + f 4 -1497 -1510 1510 1511 + mu 0 4 855 854 862 863 + f 4 -1499 -1512 1512 1513 + mu 0 4 856 855 863 864 + f 4 -1501 -1514 1514 1515 + mu 0 4 857 856 864 865 + f 4 -1503 -1516 1516 1517 + mu 0 4 858 857 865 866 + f 4 -1505 -1518 1518 -1506 + mu 0 4 806 858 866 859 + f 4 -99 1519 1520 1521 + mu 0 4 71 70 867 868 + f 4 -103 1522 1523 -1520 + mu 0 4 70 73 869 867 + f 4 -106 1524 1525 -1523 + mu 0 4 73 75 870 869 + f 4 -109 1526 1527 -1525 + mu 0 4 75 77 871 870 + f 4 -112 1528 1529 -1527 + mu 0 4 81 80 872 873 + f 4 -115 1530 1531 -1529 + mu 0 4 80 83 874 872 + f 4 -118 1532 1533 -1531 + mu 0 4 83 85 875 874 + f 4 -121 1534 1535 -1533 + mu 0 4 85 87 876 875 + f 4 -124 1536 1537 -1535 + mu 0 4 87 89 877 876 + f 4 -127 1538 1539 -1537 + mu 0 4 89 91 878 877 + f 4 -130 1540 1541 -1539 + mu 0 4 91 93 879 878 + f 4 -133 1542 1543 -1541 + mu 0 4 93 95 880 879 + f 4 -136 1544 1545 -1543 + mu 0 4 95 97 881 880 + f 4 -139 1546 1547 -1545 + mu 0 4 97 99 882 881 + f 4 -142 1548 1549 -1547 + mu 0 4 99 101 883 882 + f 4 -144 -1522 1550 -1549 + mu 0 4 101 71 868 883 + f 4 1551 1552 1553 1554 + mu 0 4 884 885 886 887 + f 4 1555 1556 1557 1558 + mu 0 4 888 889 890 891 + f 4 -49 1559 1560 1561 + mu 0 4 35 34 892 893 + f 4 -53 -1562 1562 1563 + mu 0 4 38 35 893 894 + f 4 -56 -1564 1564 1565 + mu 0 4 40 38 894 895 + f 4 -59 -1566 1566 1567 + mu 0 4 42 40 895 896 + f 4 -62 -1568 1568 1569 + mu 0 4 45 44 897 898 + f 4 -65 -1570 1570 1571 + mu 0 4 48 45 898 899 + f 4 -68 -1572 1572 1573 + mu 0 4 50 48 899 900 + f 4 -71 -1574 1574 1575 + mu 0 4 52 50 900 901 + f 4 -74 -1576 1576 1577 + mu 0 4 54 52 901 902 + f 4 -77 -1578 1578 1579 + mu 0 4 56 54 902 903 + f 4 -80 -1580 1580 1581 + mu 0 4 58 56 903 904 + f 4 -83 -1582 1582 1583 + mu 0 4 60 58 904 905 + f 4 -86 -1584 1584 1585 + mu 0 4 62 60 905 906 + f 4 -89 -1586 1586 1587 + mu 0 4 64 62 906 907 + f 4 -92 -1588 1588 1589 + mu 0 4 66 64 907 908 + f 4 -95 -1590 1590 -1560 + mu 0 4 34 66 908 892 + f 4 -1591 1591 1592 1593 + mu 0 4 909 910 911 912 + f 4 1594 1595 1596 1597 + mu 0 4 913 914 915 916 + f 4 1598 1599 1600 1601 + mu 0 4 917 918 919 920 + f 4 1602 1603 -1364 1604 + mu 0 4 921 922 773 772 + f 4 1605 -1605 -1389 1606 + mu 0 4 923 921 772 784 + f 4 1607 -1607 -1386 1608 + mu 0 4 924 923 784 782 + f 4 1609 -1609 -1383 1610 + mu 0 4 925 924 782 638 + f 4 1611 -1611 -1092 1612 + mu 0 4 926 925 638 636 + f 4 1613 -1613 -1089 1614 + mu 0 4 927 926 636 633 + f 4 1615 -1615 -1085 1616 + mu 0 4 928 927 633 632 + f 4 1617 -1617 -1478 1618 + mu 0 4 929 930 842 841 + f 4 1619 -1619 -1481 1620 + mu 0 4 931 929 841 845 + f 4 1621 -1621 -1484 1622 + mu 0 4 932 931 845 847 + f 4 1623 -1623 -1487 1624 + mu 0 4 933 932 847 849 + f 4 1625 -1625 -1490 1626 + mu 0 4 934 933 849 851 + f 4 1627 -1627 -1493 1628 + mu 0 4 935 934 851 793 + f 4 1629 -1629 -1404 1630 + mu 0 4 936 935 793 792 + f 4 -1362 1631 -1603 1632 + mu 0 4 771 770 937 938 + f 4 -1382 -1633 -1606 1633 + mu 0 4 781 771 938 939 + f 4 -1381 -1634 -1608 1634 + mu 0 4 780 781 939 940 + f 4 -1379 -1635 -1610 1635 + mu 0 4 631 780 940 941 + f 4 -1084 -1636 -1612 1636 + mu 0 4 625 631 941 942 + f 4 -1074 -1637 -1614 1637 + mu 0 4 618 625 942 943 + f 4 -1063 -1638 -1616 1638 + mu 0 4 619 618 943 944 + f 4 -1467 -1639 -1618 1639 + mu 0 4 836 835 945 946 + f 4 -1469 -1640 -1620 1640 + mu 0 4 837 836 946 947 + f 4 -1471 -1641 -1622 1641 + mu 0 4 838 837 947 948 + f 4 -1473 -1642 -1624 1642 + mu 0 4 839 838 948 949 + f 4 -1475 -1643 -1626 1643 + mu 0 4 840 839 949 950 + f 4 -1477 -1644 -1628 1644 + mu 0 4 798 840 950 951 + f 4 -1410 -1645 -1630 1645 + mu 0 4 799 798 951 952 + f 4 1646 -929 1647 1648 + mu 0 4 953 559 560 954 + f 4 1649 -1649 1650 1651 + mu 0 4 955 953 954 956 + f 4 1652 1653 1654 -1652 + mu 0 4 956 957 958 955 + f 4 1655 -1654 1656 1657 + mu 0 4 959 958 957 960 + f 4 1658 -1658 1659 1660 + mu 0 4 961 959 960 962 + f 4 1661 1662 1663 -1661 + mu 0 4 962 963 964 961 + f 4 1664 1665 1666 -1663 + mu 0 4 963 965 966 964 + f 4 1667 -1666 1668 1669 + mu 0 4 967 966 965 968 + f 4 1670 -1670 1671 1672 + mu 0 4 969 967 968 970 + f 4 1673 1674 1675 -1673 + mu 0 4 970 971 972 969 + f 4 1676 -1675 1677 1678 + mu 0 4 973 972 971 974 + f 4 1679 -1679 1680 1681 + mu 0 4 975 973 974 976 + f 4 1682 -1682 1683 1684 + mu 0 4 977 975 976 978 + f 4 1685 -1685 1686 1687 + mu 0 4 979 977 978 980 + f 4 1688 -1688 1689 1690 + mu 0 4 981 979 980 982 + f 4 1691 1692 1693 1694 + mu 0 4 983 984 985 986 + f 4 1695 -1693 1696 1697 + mu 0 4 987 985 984 988 + f 4 1698 -1698 1699 -1691 + mu 0 4 982 987 988 981 + f 4 1700 -1695 1701 1702 + mu 0 4 989 990 991 992 + f 4 1703 -1703 1704 1705 + mu 0 4 993 989 992 994 + f 4 1706 1707 1708 -1706 + mu 0 4 994 995 996 993 + f 4 1709 -1708 1710 1711 + mu 0 4 997 996 995 998 + f 4 1712 -1712 1713 1714 + mu 0 4 999 997 998 1000 + f 4 1715 -1715 1716 1717 + mu 0 4 1001 999 1000 1002 + f 4 1718 1719 1720 1721 + mu 0 4 1003 1004 1005 1006 + f 4 1722 1723 1724 -1722 + mu 0 4 1006 1007 1008 1003 + f 4 1725 1726 1727 -1724 + mu 0 4 1007 1009 1010 1008 + f 4 1728 1729 1730 -1727 + mu 0 4 1009 1011 1012 1010 + f 4 1731 1732 1733 -1730 + mu 0 4 1011 1013 1014 1012 + f 4 1734 1735 1736 -1733 + mu 0 4 1013 1015 1016 1014 + f 4 1737 -1736 1738 1739 + mu 0 4 1017 1016 1015 1018 + f 4 1740 -1740 1741 1742 + mu 0 4 1019 1017 1018 1020 + f 4 1743 -1743 1744 1745 + mu 0 4 1021 1019 1020 1022 + f 4 1746 -1746 1747 1748 + mu 0 4 1023 1021 1022 1024 + f 4 1749 -1749 1750 1751 + mu 0 4 1025 1023 1024 1026 + f 4 1752 1753 1754 -1752 + mu 0 4 1026 1027 1028 1025 + f 4 1755 1756 1757 -1754 + mu 0 4 1027 1029 1030 1028 + f 4 1758 -1757 1759 1760 + mu 0 4 1031 1030 1029 1032 + f 4 1761 -1761 1762 1763 + mu 0 4 1033 1031 1032 1034 + f 4 1764 -1764 1765 1766 + mu 0 4 1035 1033 1034 1036 + f 4 1767 -1767 1768 1769 + mu 0 4 1037 1035 1036 1038 + f 4 1770 -1770 1771 1772 + mu 0 4 1039 1037 1038 1040 + f 4 1773 -1773 1774 1775 + mu 0 4 1041 1039 1040 1042 + f 4 1776 -1776 1777 1778 + mu 0 4 1043 1041 1042 1044 + f 4 1779 -1779 1780 1781 + mu 0 4 1045 1043 1044 1046 + f 4 1782 -1782 1783 1784 + mu 0 4 1047 1045 1046 1048 + f 4 1785 -1785 1786 1787 + mu 0 4 1049 1047 1048 1050 + f 4 1788 -1788 1789 1790 + mu 0 4 1051 1049 1050 1052 + f 4 1791 1792 1793 1794 + mu 0 4 1053 1054 1055 1056 + f 4 1795 -1793 1796 1797 + mu 0 4 1057 1055 1054 1058 + f 4 1798 -1798 1799 1800 + mu 0 4 1059 1057 1058 1060 + f 4 1801 -1801 1802 1803 + mu 0 4 1061 1059 1060 1062 + f 4 1804 -1804 1805 1806 + mu 0 4 1063 1061 1062 1064 + f 4 1807 -1807 1808 1809 + mu 0 4 1065 1063 1064 1066 + f 4 1810 1811 1812 1813 + mu 0 4 1067 1068 1069 1070 + f 4 1814 -1814 1815 1816 + mu 0 4 1071 1067 1070 1072 + f 4 1817 -1812 1818 -1810 + mu 0 4 1066 1069 1068 1065 + f 4 1819 1820 1821 1822 + mu 0 4 1073 1074 1075 1076 + f 4 1823 -1821 1824 -1817 + mu 0 4 1072 1075 1074 1071 + f 4 1825 -1823 1826 1827 + mu 0 4 1077 1073 1076 1078 + f 4 1828 1829 1830 1831 + mu 0 4 1079 1080 1081 1082 + f 4 1832 1833 1834 -1830 + mu 0 4 1080 1083 1084 1081 + f 4 1835 -1828 1836 1837 + mu 0 4 1085 1077 1078 1086 + f 4 1838 -1838 1839 -1834 + mu 0 4 1083 1085 1086 1084 + f 4 1840 -1791 1841 1842 + mu 0 4 1087 1051 1052 1088 + f 4 1843 -1832 1844 1845 + mu 0 4 1089 1079 1082 1090 + f 4 1846 -1843 1847 1848 + mu 0 4 1091 1087 1088 1092 + f 4 1849 -1846 1850 1851 + mu 0 4 1093 1089 1090 1094 + f 4 1852 -1849 1853 1854 + mu 0 4 1095 1091 1092 1096 + f 4 1855 -1852 1856 1857 + mu 0 4 1097 1093 1094 1098 + f 4 1858 -1855 1859 1860 + mu 0 4 1099 1095 1096 1100 + f 4 1861 -1858 1862 1863 + mu 0 4 1101 1097 1098 1102 + f 4 1864 -1861 1865 1866 + mu 0 4 1103 1099 1100 1104 + f 4 1867 -1864 1868 1869 + mu 0 4 1105 1101 1102 1106 + f 4 1870 1871 1872 1873 + mu 0 4 1107 1108 1109 1110 + f 4 -1874 1874 1875 1876 + mu 0 4 1107 1110 1111 1112 + f 4 -1876 1877 1878 1879 + mu 0 4 1112 1111 1113 1114 + f 4 1880 -1879 1881 1882 + mu 0 4 1115 1114 1113 1116 + f 4 1883 -1883 1884 1885 + mu 0 4 1117 1115 1116 1118 + f 4 1886 -1886 1887 1888 + mu 0 4 1119 1117 1118 1120 + f 4 1889 -1889 1890 1891 + mu 0 4 1121 1119 1120 1122 + f 4 1892 -1892 1893 1894 + mu 0 4 1123 1121 1122 1124 + f 4 1895 1896 1897 1898 + mu 0 4 1125 1126 1127 1128 + f 4 1899 -1899 1900 1901 + mu 0 4 1129 1125 1128 1130 + f 4 1902 -1902 1903 1904 + mu 0 4 1131 1129 1130 1132 + f 4 1905 -1905 1906 1907 + mu 0 4 1133 1131 1132 1134 + f 4 1908 -1908 1909 1910 + mu 0 4 1135 1133 1134 1136 + f 4 1911 -1911 1912 1913 + mu 0 4 1137 1135 1136 1138 + f 4 1914 -1914 1915 1916 + mu 0 4 1139 1137 1138 1140 + f 4 1917 -1917 1918 1919 + mu 0 4 1141 1139 1140 1142 + f 4 -1873 1920 1921 1922 + mu 0 4 1110 1109 1143 1144 + f 4 -1875 -1923 1923 1924 + mu 0 4 1111 1110 1144 1145 + f 4 -1878 -1925 1925 1926 + mu 0 4 1113 1111 1145 1146 + f 4 -1882 -1927 1927 1928 + mu 0 4 1116 1113 1146 1147 + f 4 -1885 -1929 1929 1930 + mu 0 4 1118 1116 1147 1148 + f 4 -1888 -1931 1931 1932 + mu 0 4 1120 1118 1148 1149 + f 4 -1891 -1933 1933 1934 + mu 0 4 1122 1120 1149 1150 + f 4 -1894 -1935 1935 1936 + mu 0 4 1124 1122 1150 1151 + f 4 -1936 1937 -1918 1938 + mu 0 4 1151 1150 1139 1141 + f 4 -1934 1939 -1915 -1938 + mu 0 4 1150 1149 1137 1139 + f 4 -1932 1940 -1912 -1940 + mu 0 4 1149 1148 1135 1137 + f 4 -1930 1941 -1909 -1941 + mu 0 4 1148 1147 1133 1135 + f 4 -1928 1942 -1906 -1942 + mu 0 4 1147 1146 1131 1133 + f 4 -1926 1943 -1903 -1943 + mu 0 4 1146 1145 1129 1131 + f 4 -1924 1944 -1900 -1944 + mu 0 4 1145 1144 1125 1129 + f 4 -1922 1945 -1896 -1945 + mu 0 4 1144 1143 1126 1125 + f 4 1946 1947 -1937 1948 + mu 0 4 1152 1153 1124 1151 + f 4 1949 -1949 -1939 1950 + mu 0 4 1154 1152 1151 1141 + f 3 -1920 1951 -1951 + mu 0 3 1141 1142 1154 + f 3 -1895 -1948 1952 + mu 0 3 1123 1124 1153 + f 4 1953 -1795 1954 1955 + mu 0 4 1155 1053 1056 1156 + f 4 1956 -1956 1957 1958 + mu 0 4 1157 1155 1156 1158 + f 4 1959 -1959 1960 1961 + mu 0 4 1159 1157 1158 1160 + f 4 1962 1963 1964 1965 + mu 0 4 1161 1162 1163 1164 + f 4 1966 -1966 1967 1968 + mu 0 4 1165 1161 1164 1166 + f 4 1969 1970 1971 -1969 + mu 0 4 1166 1167 1168 1165 + f 4 1972 -1971 1973 1974 + mu 0 4 1169 1168 1167 1170 + f 4 1975 -1975 1976 1977 + mu 0 4 1171 1169 1170 1172 + f 4 1978 1979 1980 1981 + mu 0 4 1173 1174 1175 1176 + f 4 1982 -1982 1983 1984 + mu 0 4 1177 1173 1176 1178 + f 4 1985 -1985 1986 1987 + mu 0 4 1179 1177 1178 1180 + f 4 1988 -1988 1989 1990 + mu 0 4 1181 1179 1180 1182 + f 4 1991 -1962 1992 -1991 + mu 0 4 1182 1159 1160 1181 + f 4 1993 1994 1995 1996 + mu 0 4 1183 1184 1185 1186 + f 4 1997 1998 -1995 1999 + mu 0 4 1187 1188 1185 1184 + f 4 2000 -1998 2001 2002 + mu 0 4 1189 1188 1187 1190 + f 4 2003 -2001 2004 2005 + mu 0 4 1191 1188 1189 1192 + f 4 -1999 -2004 2006 2007 + mu 0 4 1185 1188 1191 1193 + f 4 -1996 -2008 2008 2009 + mu 0 4 1186 1185 1193 1194 + f 4 -1980 2010 -1978 2011 + mu 0 4 1175 1174 1171 1172 + f 4 -1720 2012 -1718 2013 + mu 0 4 1005 1004 1001 1002 + f 4 2014 2015 2016 -2010 + mu 0 4 1194 1195 1196 1186 + f 4 2017 -1997 -2017 2018 + mu 0 4 1197 1183 1186 1196 + f 4 2019 -1964 2020 2021 + mu 0 4 1198 1163 1162 1199 + f 4 2022 -2022 2023 2024 + mu 0 4 1200 1201 1202 1203 + f 4 2025 2026 2027 -2025 + mu 0 4 1203 1204 1205 1200 + f 4 2028 2029 2030 -2027 + mu 0 4 1204 1206 1207 1205 + f 4 2031 2032 2033 -2030 + mu 0 4 1206 1208 1209 1207 + f 4 2034 2035 2036 2037 + mu 0 4 1210 1211 1212 1213 + f 4 2038 -2038 2039 -2033 + mu 0 4 1208 1210 1213 1209 + f 4 2040 2041 2042 -2036 + mu 0 4 1211 1214 1215 1212 + f 4 2043 -2042 2044 2045 + mu 0 4 1216 1215 1214 1217 + f 4 2046 -2046 2047 2048 + mu 0 4 1218 1216 1217 1219 + f 4 2049 2050 2051 -2049 + mu 0 4 1219 1220 1221 1218 + f 4 2052 2053 2054 -2051 + mu 0 4 1220 1222 1223 1221 + f 4 2055 2056 2057 -2054 + mu 0 4 1222 1224 1225 1223 + f 4 2058 -2057 2059 2060 + mu 0 4 1226 1225 1224 1227 + f 4 2061 2062 2063 2064 + mu 0 4 1228 1229 1230 1231 + f 4 2065 -2065 2066 2067 + mu 0 4 1232 1228 1231 1233 + f 4 2068 -2068 2069 2070 + mu 0 4 1234 1232 1233 1235 + f 4 2071 -2071 2072 2073 + mu 0 4 1236 1234 1235 1237 + f 4 2074 -2074 2075 2076 + mu 0 4 1238 1236 1237 1239 + f 4 2077 -2077 2078 2079 + mu 0 4 1240 1238 1239 1241 + f 4 2080 2081 2082 -2080 + mu 0 4 1241 1242 1243 1240 + f 4 2083 2084 2085 -2082 + mu 0 4 1242 1244 1245 1243 + f 4 2086 -2085 2087 2088 + mu 0 4 1246 1245 1244 1247 + f 4 2089 -2089 2090 2091 + mu 0 4 1248 1246 1247 1249 + f 4 2092 -2092 2093 2094 + mu 0 4 1250 1248 1249 1251 + f 4 2095 -2095 2096 2097 + mu 0 4 1252 1250 1251 1253 + f 4 2098 -2098 2099 -2061 + mu 0 4 1227 1252 1253 1226 + f 4 2100 2101 2102 2103 + mu 0 4 1254 1255 1256 1257 + f 4 2104 2105 -2101 2106 + mu 0 4 1258 1259 1255 1254 + f 4 2107 2108 -2105 2109 + mu 0 4 1260 1261 1259 1258 + f 4 2110 2111 -2108 2112 + mu 0 4 1262 1263 1261 1260 + f 4 2113 2114 2115 -2112 + mu 0 4 1263 1264 1265 1261 + f 4 2116 2117 -2102 2118 + mu 0 4 1266 1267 1256 1255 + f 4 -2106 2119 2120 -2119 + mu 0 4 1255 1259 1268 1266 + f 4 -2109 -2116 2121 -2120 + mu 0 4 1259 1261 1265 1268 + f 4 2122 2123 2124 -2115 + mu 0 4 1264 1269 1270 1265 + f 4 2125 2126 -2117 2127 + mu 0 4 1271 1272 1267 1266 + f 4 -2121 2128 2129 -2128 + mu 0 4 1266 1268 1273 1271 + f 4 -2122 -2125 2130 -2129 + mu 0 4 1268 1265 1270 1273 + f 4 2131 2132 2133 -2124 + mu 0 4 1269 1274 1275 1270 + f 4 -2134 2134 2135 -2131 + mu 0 4 1270 1275 1276 1273 + f 4 -2136 2136 2137 -2130 + mu 0 4 1273 1276 1277 1271 + f 4 2138 2139 -2126 -2138 + mu 0 4 1277 1278 1272 1271 + f 4 -2107 2140 2141 2142 + mu 0 4 1258 1254 1279 1280 + f 4 -2110 -2143 2143 2144 + mu 0 4 1260 1258 1280 1281 + f 3 2145 -2113 -2145 + mu 0 3 1281 1262 1260 + f 3 2146 -2141 -2104 + mu 0 3 1257 1279 1254 + f 4 2147 2148 -874 2149 + mu 0 4 1282 1283 525 519 + f 4 2150 -2150 -866 2151 + mu 0 4 1284 1282 519 518 + f 4 2152 -2152 -892 2153 + mu 0 4 1285 1284 518 538 + f 4 2154 2155 2156 2157 + mu 0 4 1286 1287 1288 1289 + f 4 2158 -2158 2159 2160 + mu 0 4 1290 1286 1289 1291 + f 4 2161 -2161 2162 2163 + mu 0 4 1292 1290 1291 1293 + f 4 2164 2165 2166 -891 + mu 0 4 537 1294 1295 536 + f 4 2167 2168 2169 -2166 + mu 0 4 1294 1296 1297 1295 + f 4 2170 2171 2172 2173 + mu 0 4 1298 1299 1300 1301 + f 4 2174 -2174 2175 2176 + mu 0 4 1302 1298 1301 1303 + f 4 2177 2178 -2177 2179 + mu 0 4 1304 1305 1302 1303 + f 4 2180 -895 2181 2182 + mu 0 4 1306 541 540 1307 + f 4 2183 -2183 2184 2185 + mu 0 4 1308 1306 1307 1309 + f 4 2186 -2186 2187 2188 + mu 0 4 1310 1308 1309 1311 + f 4 2189 -2189 2190 2191 + mu 0 4 1312 1310 1311 1313 + f 4 2192 2193 2194 -2192 + mu 0 4 1313 1314 1315 1312 + f 4 2195 2196 2197 -2194 + mu 0 4 1314 1316 1317 1315 + f 4 2198 2199 2200 -2197 + mu 0 4 1316 1318 1319 1317 + f 4 2201 -2200 2202 2203 + mu 0 4 1320 1319 1318 1321 + f 4 2204 -2204 2205 2206 + mu 0 4 1322 1320 1321 1323 + f 4 2207 2208 2209 -2207 + mu 0 4 1323 1324 1325 1322 + f 4 2210 2211 2212 -2209 + mu 0 4 1324 1326 1327 1325 + f 4 2213 -2212 2214 2215 + mu 0 4 1328 1327 1326 1329 + f 4 2216 -2216 2217 2218 + mu 0 4 1330 1328 1329 1331 + f 4 2219 2220 2221 -2169 + mu 0 4 1296 1332 1333 1297 + f 4 2222 2223 2224 -2221 + mu 0 4 1332 1334 1335 1333 + f 4 2225 -2219 2226 -2224 + mu 0 4 1334 1330 1331 1335 + f 4 -2157 2227 2228 2229 + mu 0 4 1289 1288 1336 1337 + f 4 -2160 -2230 2230 2231 + mu 0 4 1291 1289 1337 1338 + f 4 -2163 -2232 2232 2233 + mu 0 4 1293 1291 1338 1339 + f 4 2234 2235 2236 -2164 + mu 0 4 1293 1340 1341 1292 + f 4 2237 2238 -2236 2239 + mu 0 4 1342 1343 1341 1340 + f 4 2240 2241 -2238 2242 + mu 0 4 1344 1345 1343 1342 + f 4 2243 -2243 -2240 2244 + mu 0 4 1346 1344 1342 1340 + f 4 -2229 2245 2246 2247 + mu 0 4 1337 1336 1347 1348 + f 4 -2231 -2248 2248 2249 + mu 0 4 1338 1337 1348 1349 + f 4 -2233 -2250 2250 2251 + mu 0 4 1339 1338 1349 1350 + f 4 2252 -2245 -2235 -2234 + mu 0 4 1339 1346 1340 1293 + f 4 -2247 2253 2254 2255 + mu 0 4 1348 1347 1351 1352 + f 4 -2249 -2256 2256 2257 + mu 0 4 1349 1348 1352 1353 + f 4 -2251 -2258 2258 2259 + mu 0 4 1350 1349 1353 1354 + f 4 -2252 2260 2261 -2253 + mu 0 4 1339 1350 1355 1346 + f 4 2262 -2244 -2262 2263 + mu 0 4 1356 1344 1346 1355 + f 4 2264 -2241 -2263 2265 + mu 0 4 1357 1345 1344 1356 + f 4 2266 2267 -2148 2268 + mu 0 4 1358 1359 1283 1282 + f 4 2269 -2269 -2151 2270 + mu 0 4 1360 1358 1282 1284 + f 4 2271 -2271 -2153 2272 + mu 0 4 1361 1360 1284 1285 + f 4 -2154 2273 2274 2275 + mu 0 4 1285 538 1362 1363 + f 4 2276 2277 -2261 -2260 + mu 0 4 1354 1364 1355 1350 + f 4 -2255 2278 -2267 2279 + mu 0 4 1352 1351 1359 1358 + f 4 -2257 -2280 -2270 2280 + mu 0 4 1353 1352 1358 1360 + f 4 -2259 -2281 -2272 2281 + mu 0 4 1354 1353 1360 1361 + f 4 2282 2283 -2277 -2282 + mu 0 4 1361 1365 1364 1354 + f 4 -2273 -2276 2284 -2283 + mu 0 4 1361 1285 1363 1365 + f 4 2285 2286 -2266 2287 + mu 0 4 1366 1367 1357 1356 + f 4 2288 -2288 -2264 -2278 + mu 0 4 1364 1366 1356 1355 + f 4 2289 -2286 2290 2291 + mu 0 4 1368 1367 1366 1369 + f 4 -2291 -2289 -2284 2292 + mu 0 4 1369 1366 1364 1365 + f 4 -2293 -2285 2293 2294 + mu 0 4 1369 1365 1363 1370 + f 4 -2295 2295 2296 -2292 + mu 0 4 1369 1370 1371 1368 + f 4 -2294 -2275 2297 2298 + mu 0 4 1370 1363 1362 1372 + f 4 -2296 -2299 2299 2300 + mu 0 4 1371 1370 1372 1373 + f 4 2301 2302 -873 2303 + mu 0 4 1374 1375 520 524 + f 4 -868 -2303 2304 2305 + mu 0 4 521 520 1375 1376 + f 4 -893 -2306 2306 2307 + mu 0 4 539 521 1376 1377 + f 4 -2274 -894 2308 2309 + mu 0 4 1362 538 539 1378 + f 4 -2298 -2310 2310 2311 + mu 0 4 1372 1362 1378 1379 + f 4 -2300 -2312 2312 2313 + mu 0 4 1373 1372 1379 1380 + f 4 2314 2315 -2302 2316 + mu 0 4 1381 1382 1375 1374 + f 4 -2305 -2316 2317 2318 + mu 0 4 1376 1375 1382 1383 + f 4 -2307 -2319 2319 2320 + mu 0 4 1377 1376 1383 1384 + f 4 2321 2322 -2315 2323 + mu 0 4 1385 1386 1382 1381 + f 4 -2318 -2323 2324 2325 + mu 0 4 1383 1382 1386 1387 + f 4 -2320 -2326 2326 2327 + mu 0 4 1384 1383 1387 1388 + f 4 -2309 -2308 2328 2329 + mu 0 4 1378 539 1377 1389 + f 4 -2311 -2330 2330 2331 + mu 0 4 1379 1378 1389 1390 + f 4 -2313 -2332 2332 2333 + mu 0 4 1380 1379 1390 1391 + f 4 -2329 -2321 2334 2335 + mu 0 4 1389 1377 1384 1392; + setAttr ".fc[1000:1499]" + f 4 -2331 -2336 2336 2337 + mu 0 4 1390 1389 1392 1393 + f 4 -2333 -2338 2338 2339 + mu 0 4 1391 1390 1393 1394 + f 4 2340 2341 2342 -2180 + mu 0 4 1303 1395 1396 1304 + f 4 2343 -2341 -2176 2344 + mu 0 4 1397 1395 1303 1301 + f 4 2345 -2345 -2173 2346 + mu 0 4 1398 1397 1301 1300 + f 4 -2342 2347 -2322 2348 + mu 0 4 1396 1395 1386 1385 + f 4 -2325 -2348 -2344 2349 + mu 0 4 1387 1386 1395 1397 + f 4 -2327 -2350 -2346 2350 + mu 0 4 1388 1387 1397 1398 + f 4 -2335 -2328 2351 2352 + mu 0 4 1392 1384 1388 1399 + f 4 -2337 -2353 2353 2354 + mu 0 4 1393 1392 1399 1400 + f 4 -2339 -2355 2355 2356 + mu 0 4 1394 1393 1400 1401 + f 4 -2351 2357 2358 -2352 + mu 0 4 1388 1398 1402 1399 + f 4 -2354 -2359 2359 2360 + mu 0 4 1400 1399 1402 1403 + f 4 2361 -2356 -2361 2362 + mu 0 4 1404 1401 1400 1403 + f 4 -2358 -2347 2363 2364 + mu 0 4 1402 1398 1300 1405 + f 4 -2360 -2365 2365 2366 + mu 0 4 1403 1402 1405 1406 + f 4 -2363 -2367 2367 2368 + mu 0 4 1404 1403 1406 1407 + f 4 2369 2370 2371 2372 + mu 0 4 1408 1409 1410 1411 + f 4 2373 2374 2375 -2373 + mu 0 4 1411 1412 1413 1408 + f 4 2376 2377 2378 -2375 + mu 0 4 1412 1414 1415 1413 + f 4 -2379 2379 -2171 2380 + mu 0 4 1413 1415 1299 1298 + f 4 -2376 -2381 -2175 2381 + mu 0 4 1408 1413 1298 1302 + f 4 -2179 2382 -2370 -2382 + mu 0 4 1302 1305 1409 1408 + f 4 -2364 -2172 2383 2384 + mu 0 4 1405 1300 1299 1416 + f 4 -2366 -2385 2385 2386 + mu 0 4 1406 1405 1416 1417 + f 4 -2368 -2387 2387 2388 + mu 0 4 1407 1406 1417 1418 + f 4 -2384 -2380 2389 2390 + mu 0 4 1416 1299 1415 1419 + f 4 -2386 -2391 2391 2392 + mu 0 4 1417 1416 1419 1420 + f 4 -2388 -2393 2393 2394 + mu 0 4 1418 1417 1420 1421 + f 4 -2378 2395 2396 -2390 + mu 0 4 1415 1414 1422 1419 + f 4 -2394 -2392 -2397 2397 + mu 0 4 1421 1420 1419 1422 + f 4 -2133 2398 2399 2400 + mu 0 4 1275 1274 1423 1424 + f 4 -2135 -2401 2401 2402 + mu 0 4 1276 1275 1424 1425 + f 4 -2137 -2403 2403 2404 + mu 0 4 1277 1276 1425 1426 + f 4 -2139 -2405 2405 2406 + mu 0 4 1278 1277 1426 1427 + f 4 2407 -2063 2408 2409 + mu 0 4 1428 1230 1229 1429 + f 4 2410 2411 2412 -2410 + mu 0 4 1429 1430 1431 1428 + f 4 2413 -2412 2414 2415 + mu 0 4 1432 1431 1430 1433 + f 4 2416 2417 2418 -871 + mu 0 4 522 1434 1435 523 + f 4 2419 -2416 2420 -2418 + mu 0 4 1434 1432 1433 1435 + f 4 2421 2422 2423 2424 + mu 0 4 1436 1437 1438 1439 + f 4 2425 -884 2426 -2425 + mu 0 4 1439 533 532 1436 + f 4 2427 -2423 2428 2429 + mu 0 4 1440 1438 1437 1441 + f 4 2430 2431 2432 -2430 + mu 0 4 1441 1442 1443 1440 + f 4 2433 2434 2435 -2432 + mu 0 4 1442 1444 1445 1443 + f 4 2436 -2435 2437 2438 + mu 0 4 1446 1445 1444 1447 + f 4 2439 -2439 2440 2441 + mu 0 4 1448 1446 1447 1449 + f 4 2442 -2442 2443 2444 + mu 0 4 1450 1448 1449 1451 + f 4 2445 2446 2447 -2445 + mu 0 4 1451 1452 1453 1450 + f 4 2448 -2447 2449 2450 + mu 0 4 1454 1453 1452 1455 + f 4 2451 2452 2453 -2451 + mu 0 4 1455 1456 1457 1454 + f 4 2454 2455 2456 -2453 + mu 0 4 1456 1458 1459 1457 + f 4 2457 2458 2459 -2456 + mu 0 4 1458 1460 1461 1459 + f 4 2460 2461 2462 -2459 + mu 0 4 1460 1462 1463 1461 + f 4 2463 2464 2465 -1867 + mu 0 4 1104 1464 1465 1103 + f 4 2466 2467 2468 -1870 + mu 0 4 1106 1466 1467 1105 + f 4 2469 2470 2471 -2465 + mu 0 4 1464 1468 1469 1465 + f 4 2472 2473 2474 -2468 + mu 0 4 1466 1470 1471 1467 + f 4 2475 -2471 2476 2477 + mu 0 4 1472 1469 1468 1473 + f 4 2478 -2474 2479 2480 + mu 0 4 1474 1471 1470 1475 + f 4 2481 2482 2483 -2478 + mu 0 4 1473 1476 1477 1472 + f 4 2484 2485 2486 -2481 + mu 0 4 1475 1478 1479 1474 + f 4 -1790 2487 2488 2489 + mu 0 4 1052 1050 1480 1481 + f 4 -1842 -2490 2490 2491 + mu 0 4 1088 1052 1481 1482 + f 4 -1848 -2492 2492 2493 + mu 0 4 1092 1088 1482 1483 + f 4 2494 2495 -1854 -2494 + mu 0 4 1483 1484 1096 1092 + f 4 2496 2497 -1860 -2496 + mu 0 4 1484 1485 1100 1096 + f 4 -1866 -2498 2498 2499 + mu 0 4 1104 1100 1485 1486 + f 4 2500 2501 2502 2503 + mu 0 4 1487 1488 1489 1490 + f 4 2504 -2502 2505 2506 + mu 0 4 1491 1489 1488 1492 + f 4 2507 -2507 2508 2509 + mu 0 4 1493 1491 1492 1494 + f 4 2510 2511 2512 -2510 + mu 0 4 1494 1495 1496 1493 + f 4 2513 -2512 2514 2515 + mu 0 4 1497 1496 1495 1498 + f 4 2516 -2516 2517 2518 + mu 0 4 1499 1497 1498 1500 + f 4 -2464 -2500 2519 2520 + mu 0 4 1464 1104 1486 1501 + f 4 2521 2522 2523 -2519 + mu 0 4 1500 1502 1503 1499 + f 4 2524 2525 2526 -2523 + mu 0 4 1502 1504 1505 1503 + f 4 2527 -2526 2528 -2483 + mu 0 4 1476 1505 1504 1477 + f 4 2529 -2486 2530 2531 + mu 0 4 1506 1479 1478 1507 + f 4 2532 2533 -2503 2534 + mu 0 4 1508 1509 1490 1489 + f 4 2535 -2535 -2505 2536 + mu 0 4 1510 1508 1489 1491 + f 4 2537 -2537 -2508 2538 + mu 0 4 1511 1510 1491 1493 + f 4 2539 2540 -2539 -2513 + mu 0 4 1496 1512 1511 1493 + f 4 2541 2542 -2540 -2514 + mu 0 4 1497 1513 1512 1496 + f 4 2543 -2542 -2517 2544 + mu 0 4 1514 1513 1497 1499 + f 4 2545 -2545 -2524 2546 + mu 0 4 1515 1514 1499 1503 + f 4 -2520 2547 2548 2549 + mu 0 4 1501 1486 1516 1517 + f 4 -2499 2550 2551 -2548 + mu 0 4 1486 1485 1518 1516 + f 4 2552 -2551 -2497 2553 + mu 0 4 1519 1518 1485 1484 + f 4 2554 -2554 -2495 2555 + mu 0 4 1520 1519 1484 1483 + f 4 -2493 2556 2557 -2556 + mu 0 4 1483 1482 1521 1520 + f 4 -2491 2558 2559 -2557 + mu 0 4 1482 1481 1522 1521 + f 4 -2489 2560 2561 -2559 + mu 0 4 1481 1480 1523 1522 + f 4 -2549 2562 2563 2564 + mu 0 4 1517 1516 1524 1525 + f 4 -2552 2565 2566 -2563 + mu 0 4 1516 1518 1526 1524 + f 4 2567 -2566 -2553 2568 + mu 0 4 1527 1526 1518 1519 + f 4 2569 -2569 -2555 2570 + mu 0 4 1528 1527 1519 1520 + f 4 -2558 2571 2572 -2571 + mu 0 4 1520 1521 1529 1528 + f 4 -2560 2573 2574 -2572 + mu 0 4 1521 1522 1530 1529 + f 4 -2562 2575 2576 -2574 + mu 0 4 1522 1523 1531 1530 + f 4 2577 -2565 2578 -2482 + mu 0 4 1473 1517 1525 1476 + f 4 -2477 2579 -2550 -2578 + mu 0 4 1473 1468 1501 1517 + f 3 -2580 -2470 -2521 + mu 0 3 1501 1468 1464 + f 4 -2564 2580 -2546 2581 + mu 0 4 1525 1524 1514 1515 + f 4 -2567 2582 -2544 -2581 + mu 0 4 1524 1526 1513 1514 + f 4 -2543 -2583 -2568 2583 + mu 0 4 1512 1513 1526 1527 + f 4 -2541 -2584 -2570 2584 + mu 0 4 1511 1512 1527 1528 + f 4 -2573 2585 -2538 -2585 + mu 0 4 1528 1529 1510 1511 + f 4 -2575 2586 -2536 -2586 + mu 0 4 1529 1530 1508 1510 + f 4 -2577 2587 -2533 -2587 + mu 0 4 1530 1531 1509 1508 + f 4 -2528 -2579 -2582 2588 + mu 0 4 1505 1476 1525 1515 + f 3 -2547 -2527 -2589 + mu 0 3 1515 1503 1505 + f 4 2589 2590 2591 -2532 + mu 0 4 1507 1532 1533 1506 + f 4 2592 2593 2594 2595 + mu 0 4 1534 1535 1536 1537 + f 4 2596 -2591 2597 -2594 + mu 0 4 1535 1533 1532 1536 + f 4 2598 -2596 2599 2600 + mu 0 4 1538 1534 1537 1539 + f 4 2601 2602 2603 2604 + mu 0 4 1540 1541 1542 1543 + f 4 2605 -2601 2606 -2603 + mu 0 4 1541 1538 1539 1542 + f 4 2607 -2605 2608 2609 + mu 0 4 1544 1540 1543 1545 + f 4 2610 -2610 2611 2612 + mu 0 4 1546 1544 1545 1547 + f 4 2613 -2613 2614 2615 + mu 0 4 1548 1546 1547 1549 + f 4 2616 2617 2618 -2504 + mu 0 4 1490 1550 1551 1487 + f 4 2619 -2618 2620 2621 + mu 0 4 1552 1551 1550 1553 + f 4 2622 -2616 2623 2624 + mu 0 4 1554 1548 1549 1555 + f 4 2625 2626 2627 2628 + mu 0 4 1556 1557 1558 1559 + f 4 2629 2630 2631 2632 + mu 0 4 1560 1561 1562 1563 + f 4 -2627 2633 -2625 2634 + mu 0 4 1558 1557 1554 1555 + f 4 -2631 2635 -2622 2636 + mu 0 4 1562 1561 1552 1553 + f 4 2637 2638 2639 -2633 + mu 0 4 1563 1564 1565 1560 + f 4 2640 -2629 2641 2642 + mu 0 4 1566 1556 1559 1567 + f 4 2643 2644 2645 -2643 + mu 0 4 1567 1568 1569 1566 + f 4 2646 2647 2648 -2639 + mu 0 4 1564 1570 1571 1565 + f 4 2649 2650 2651 2652 + mu 0 4 1572 1573 1574 1575 + f 4 2653 -2653 2654 2655 + mu 0 4 1576 1572 1575 1577 + f 4 2656 2657 2658 2659 + mu 0 4 1578 1579 1580 1581 + f 4 2660 -2660 2661 2662 + mu 0 4 1582 1578 1581 1583 + f 4 -2652 2663 2664 2665 + mu 0 4 1575 1574 1584 1585 + f 4 -2655 -2666 2666 2667 + mu 0 4 1577 1575 1585 1586 + f 4 -2665 2668 -2657 2669 + mu 0 4 1585 1584 1579 1578 + f 4 -2667 -2670 -2661 2670 + mu 0 4 1586 1585 1578 1582 + f 4 2671 -2671 2672 2673 + mu 0 4 1587 1586 1582 1588 + f 4 -2672 2674 2675 -2668 + mu 0 4 1586 1587 1589 1577 + f 3 -2663 2676 -2673 + mu 0 3 1582 1583 1588 + f 3 -2676 2677 -2656 + mu 0 3 1577 1589 1576 + f 4 2678 2679 2680 -2648 + mu 0 4 1570 1590 1591 1571 + f 4 2681 2682 2683 -2645 + mu 0 4 1568 1592 1593 1569 + f 4 2684 -2680 2685 2686 + mu 0 4 1594 1591 1590 1595 + f 4 2687 -2683 2688 2689 + mu 0 4 1596 1593 1592 1597 + f 4 2690 2691 2692 -2687 + mu 0 4 1595 1598 1599 1594 + f 4 2693 2694 2695 -2690 + mu 0 4 1597 1600 1601 1596 + f 4 2696 2697 2698 -2695 + mu 0 4 1600 1602 1603 1601 + f 4 2699 -2692 2700 2701 + mu 0 4 1604 1599 1598 1605 + f 4 2702 -2702 2703 2704 + mu 0 4 1606 1604 1605 1607 + f 4 2705 -2698 2706 2707 + mu 0 4 1608 1603 1602 1609 + f 4 2708 -2708 2709 2710 + mu 0 4 1610 1608 1609 1611 + f 4 2711 -2705 2712 2713 + mu 0 4 1612 1606 1607 1613 + f 4 2714 -2711 2715 2716 + mu 0 4 1614 1610 1611 1615 + f 4 2717 -2714 2718 2719 + mu 0 4 1616 1612 1613 1617 + f 4 2720 -2720 2721 2722 + mu 0 4 1618 1616 1617 1619 + f 4 2723 -2717 2724 2725 + mu 0 4 1620 1614 1615 1621 + f 4 2726 -2726 2727 2728 + mu 0 4 1622 1620 1621 1623 + f 4 2729 -2723 2730 2731 + mu 0 4 1624 1618 1619 1625 + f 4 2732 -2729 2733 2734 + mu 0 4 1626 1622 1623 1627 + f 4 2735 2736 2737 -2732 + mu 0 4 1625 1628 1629 1624 + f 4 2738 2739 2740 -2735 + mu 0 4 1627 1630 1631 1626 + f 4 2741 -2737 2742 2743 + mu 0 4 1632 1629 1628 1633 + f 4 2744 2745 2746 2747 + mu 0 4 1634 1635 1636 1637 + f 4 2748 2749 2750 2751 + mu 0 4 1638 1639 1640 1641 + f 4 2752 -2752 2753 2754 + mu 0 4 1642 1638 1641 1643 + f 4 2755 -2746 2756 2757 + mu 0 4 1644 1636 1635 1645 + f 4 2758 2759 2760 -2758 + mu 0 4 1645 1646 1647 1644 + f 4 2761 -2755 2762 2763 + mu 0 4 1648 1642 1643 1649 + f 4 2764 2765 2766 -2760 + mu 0 4 1646 1650 1651 1647 + f 4 2767 -2764 2768 2769 + mu 0 4 1652 1648 1649 1653 + f 4 2770 2771 2772 -2766 + mu 0 4 1650 1654 1655 1651 + f 4 2773 2774 2775 2776 + mu 0 4 1656 1657 1658 1659 + f 4 2777 -2777 2778 2779 + mu 0 4 1660 1656 1659 1661 + f 4 2780 -2780 2781 2782 + mu 0 4 1662 1660 1661 1663 + f 4 2783 2784 2785 -2783 + mu 0 4 1663 1664 1665 1662 + f 4 2786 -2785 2787 2788 + mu 0 4 1666 1665 1664 1667 + f 4 -2747 2789 2790 2791 + mu 0 4 1637 1636 1668 1669 + f 4 2792 -2790 -2756 2793 + mu 0 4 1670 1668 1636 1644 + f 4 -2761 2794 2795 -2794 + mu 0 4 1644 1647 1671 1670 + f 4 -2767 2796 2797 -2795 + mu 0 4 1647 1651 1672 1671 + f 4 -2773 2798 2799 -2797 + mu 0 4 1651 1655 1673 1672 + f 4 -2791 2800 -2787 2801 + mu 0 4 1669 1668 1665 1666 + f 4 -2786 -2801 -2793 2802 + mu 0 4 1662 1665 1668 1670 + f 4 -2796 2803 -2781 -2803 + mu 0 4 1670 1671 1660 1662 + f 4 -2798 2804 -2778 -2804 + mu 0 4 1671 1672 1656 1660 + f 4 -2800 2805 -2774 -2805 + mu 0 4 1672 1673 1657 1656 + f 4 -2799 2806 2807 2808 + mu 0 4 1673 1655 1674 1675 + f 4 -2806 -2809 2809 2810 + mu 0 4 1657 1673 1675 1676 + f 3 -2772 2811 -2807 + mu 0 3 1655 1654 1674 + f 3 -2775 -2811 2812 + mu 0 3 1658 1657 1676 + f 4 2813 -2770 2814 -2740 + mu 0 4 1630 1652 1653 1631 + f 4 2815 -2744 2816 2817 + mu 0 4 1677 1632 1633 1678 + f 4 2818 2819 2820 2821 + mu 0 4 1679 1680 1681 1682 + f 4 2822 -2822 2823 -2818 + mu 0 4 1678 1679 1682 1677 + f 4 2824 2825 2826 -2820 + mu 0 4 1680 1683 1684 1681 + f 4 2827 2828 2829 -2826 + mu 0 4 1683 1685 1686 1684 + f 4 2830 -2829 2831 2832 + mu 0 4 1687 1686 1685 1688 + f 4 2833 -2750 2834 2835 + mu 0 4 1689 1640 1639 1690 + f 4 -2817 2836 2837 2838 + mu 0 4 1678 1633 1691 1692 + f 4 -2823 -2839 2839 2840 + mu 0 4 1679 1678 1692 1693 + f 4 -2819 -2841 2841 2842 + mu 0 4 1680 1679 1693 1694 + f 4 2843 2844 2845 -2833 + mu 0 4 1688 1695 1696 1687 + f 4 2846 2847 2848 -2836 + mu 0 4 1690 1697 1698 1689 + f 4 -2825 -2843 2849 2850 + mu 0 4 1683 1680 1694 1699 + f 4 -2828 -2851 2851 2852 + mu 0 4 1685 1683 1699 1700 + f 4 2853 2854 2855 -2845 + mu 0 4 1695 1701 1702 1696 + f 4 2856 -2848 2857 2858 + mu 0 4 1703 1698 1697 1704 + f 4 2859 -2859 2860 2861 + mu 0 4 1705 1703 1704 1706 + f 4 2862 2863 2864 -2855 + mu 0 4 1701 1707 1708 1702 + f 4 2865 -2862 2866 2867 + mu 0 4 1709 1705 1706 1710 + f 4 2868 2869 2870 -2864 + mu 0 4 1707 1711 1712 1708 + f 4 -2832 -2853 2871 2872 + mu 0 4 1688 1685 1700 1713 + f 4 -2838 2873 2874 2875 + mu 0 4 1692 1691 1714 1715 + f 4 -2840 -2876 2876 2877 + mu 0 4 1693 1692 1715 1716 + f 4 -2842 -2878 2878 2879 + mu 0 4 1694 1693 1716 1717 + f 4 -2850 -2880 2880 2881 + mu 0 4 1699 1694 1717 1718 + f 4 -2852 -2882 2882 2883 + mu 0 4 1700 1699 1718 1719 + f 4 -2872 -2884 2884 2885 + mu 0 4 1713 1700 1719 1720 + f 4 -2875 2886 2887 2888 + mu 0 4 1715 1714 1721 1722 + f 4 -2877 -2889 2889 2890 + mu 0 4 1716 1715 1722 1723 + f 4 -2879 -2891 2891 2892 + mu 0 4 1717 1716 1723 1724 + f 4 -2881 -2893 2893 2894 + mu 0 4 1718 1717 1724 1725 + f 4 -2883 -2895 2895 2896 + mu 0 4 1719 1718 1725 1726 + f 4 -2885 -2897 2897 2898 + mu 0 4 1720 1719 1726 1727 + f 4 -2888 2899 2900 2901 + mu 0 4 1722 1721 1728 1729 + f 4 -2890 -2902 2902 2903 + mu 0 4 1723 1722 1729 1730 + f 4 -2892 -2904 2904 2905 + mu 0 4 1724 1723 1730 1731 + f 4 -2894 -2906 2906 2907 + mu 0 4 1725 1724 1731 1732 + f 4 -2896 -2908 2908 2909 + mu 0 4 1726 1725 1732 1733 + f 4 -2898 -2910 2910 2911 + mu 0 4 1727 1726 1733 1734 + f 4 -2901 2912 2913 2914 + mu 0 4 1729 1728 1735 1736 + f 4 -2903 -2915 2915 2916 + mu 0 4 1730 1729 1736 1737 + f 4 -2905 -2917 2917 2918 + mu 0 4 1731 1730 1737 1738 + f 4 -2907 -2919 2919 2920 + mu 0 4 1732 1731 1738 1739 + f 4 -2909 -2921 2921 2922 + mu 0 4 1733 1732 1739 1740 + f 4 -2911 -2923 2923 2924 + mu 0 4 1734 1733 1740 1741 + f 4 -2869 2925 -2912 2926 + mu 0 4 1711 1707 1727 1734 + f 4 2927 -2899 -2926 -2863 + mu 0 4 1701 1720 1727 1707 + f 4 -2886 -2928 -2854 2928 + mu 0 4 1713 1720 1701 1695 + f 3 -2929 -2844 -2873 + mu 0 3 1713 1695 1688 + f 4 2929 -2870 2930 2931 + mu 0 4 1742 1712 1711 1741 + f 3 -2925 -2931 -2927 + mu 0 3 1734 1741 1711 + f 4 2932 -2868 2933 2934 + mu 0 4 1743 1709 1710 1744 + f 4 -2914 2935 2936 2937 + mu 0 4 1736 1735 1745 1746 + f 4 2938 2939 -2916 -2938 + mu 0 4 1746 1747 1737 1736 + f 4 2940 2941 -2920 2942 + mu 0 4 1748 1749 1739 1738 + f 4 -2922 -2942 2943 2944 + mu 0 4 1740 1739 1749 1750 + f 4 -2924 -2945 2945 -2932 + mu 0 4 1741 1740 1750 1742 + f 4 -2918 -2940 2946 -2943 + mu 0 4 1738 1737 1747 1748 + f 4 2947 -2935 2948 2949 + mu 0 4 1751 1743 1744 1752 + f 4 2950 2951 2952 -2950 + mu 0 4 1752 1753 1754 1751 + f 4 2953 2954 2955 -2952 + mu 0 4 1753 1755 1756 1754 + f 4 2956 2957 2958 -2955 + mu 0 4 1755 1757 1758 1756 + f 4 2959 -2958 2960 2961 + mu 0 4 1759 1758 1757 1760 + f 4 2962 2963 2964 -2962 + mu 0 4 1760 1761 1762 1759 + f 4 2965 2966 2967 2968 + mu 0 4 1763 1764 1765 1766 + f 4 2969 -2969 2970 2971 + mu 0 4 1767 1763 1766 1768 + f 4 2972 -2972 2973 2974 + mu 0 4 1769 1767 1768 1770 + f 4 2975 -2975 2976 2977 + mu 0 4 1771 1769 1770 1772 + f 4 2978 -2978 2979 2980 + mu 0 4 1773 1771 1772 1774 + f 4 2981 -2981 2982 2983 + mu 0 4 1775 1773 1774 1776 + f 4 2984 2985 -2967 2986 + mu 0 4 1777 1778 1765 1764 + f 4 2987 -2964 2988 2989 + mu 0 4 1779 1762 1761 1780 + f 4 2990 2991 2992 -2936 + mu 0 4 1735 1781 1782 1745 + f 4 2993 -2990 2994 2995 + mu 0 4 1783 1779 1780 1784 + f 4 2996 2997 2998 -2992 + mu 0 4 1781 1785 1786 1782 + f 4 -2986 2999 3000 3001 + mu 0 4 1765 1778 1787 1788 + f 4 -2968 -3002 3002 3003 + mu 0 4 1766 1765 1788 1789 + f 4 -2971 -3004 3004 3005 + mu 0 4 1768 1766 1789 1790 + f 4 -2974 -3006 3006 3007 + mu 0 4 1770 1768 1790 1791 + f 4 -2977 -3008 3008 3009 + mu 0 4 1772 1770 1791 1792 + f 4 -2980 -3010 3010 3011 + mu 0 4 1774 1772 1792 1793 + f 4 -2983 -3012 3012 3013 + mu 0 4 1776 1774 1793 1794 + f 4 3014 3015 3016 3017 + mu 0 4 1795 1796 1797 1798 + f 4 3018 -3018 3019 3020 + mu 0 4 1799 1795 1798 1800 + f 4 3021 -3021 3022 3023 + mu 0 4 1801 1799 1800 1802 + f 4 3024 -3024 3025 3026 + mu 0 4 1803 1801 1802 1804 + f 4 3027 -3027 3028 3029 + mu 0 4 1805 1803 1804 1806 + f 4 3030 -3030 3031 3032 + mu 0 4 1807 1805 1806 1808 + f 4 3033 -3033 3034 3035 + mu 0 4 1809 1807 1808 1810 + f 4 3036 3037 3038 3039 + mu 0 4 1811 1812 1813 1814 + f 4 3040 -3040 3041 3042 + mu 0 4 1815 1811 1814 1816 + f 4 3043 3044 3045 3046 + mu 0 4 1817 1818 1819 1820 + f 4 3047 -3047 3048 -3043 + mu 0 4 1816 1817 1820 1815 + f 4 -3045 3049 -2996 3050 + mu 0 4 1819 1818 1783 1784 + f 4 -3001 3051 3052 3053 + mu 0 4 1788 1787 1821 1822 + f 4 -3003 -3054 3054 3055 + mu 0 4 1789 1788 1822 1823 + f 4 -3005 -3056 3056 3057 + mu 0 4 1790 1789 1823 1824 + f 4 -3007 -3058 3058 3059 + mu 0 4 1791 1790 1824 1825 + f 4 -3009 -3060 3060 3061 + mu 0 4 1792 1791 1825 1826 + f 4 -3011 -3062 3062 3063 + mu 0 4 1793 1792 1826 1827 + f 4 -3013 -3064 3064 3065 + mu 0 4 1794 1793 1827 1828 + f 4 -3053 3066 -3015 3067 + mu 0 4 1822 1821 1796 1795 + f 4 -3055 -3068 -3019 3068 + mu 0 4 1823 1822 1795 1799 + f 4 -3057 -3069 -3022 3069 + mu 0 4 1824 1823 1799 1801 + f 4 -3059 -3070 -3025 3070 + mu 0 4 1825 1824 1801 1803 + f 4 -3061 -3071 -3028 3071 + mu 0 4 1826 1825 1803 1805 + f 4 -3063 -3072 -3031 3072 + mu 0 4 1827 1826 1805 1807 + f 4 -3065 -3073 -3034 3073 + mu 0 4 1828 1827 1807 1809 + f 4 3074 -3052 3075 3076 + mu 0 4 1829 1821 1787 1830 + f 4 -3076 -3000 3077 3078 + mu 0 4 1830 1787 1778 1831 + f 4 -3075 3079 3080 -3067 + mu 0 4 1821 1829 1832 1796 + f 3 -3081 3081 -3016 + mu 0 3 1796 1832 1797 + f 3 -3078 -2985 3082 + mu 0 3 1831 1778 1777 + f 4 3083 -2998 3084 3085 + mu 0 4 1833 1786 1785 1834 + f 4 3086 -3086 3087 3088 + mu 0 4 1835 1833 1834 1836 + f 4 3089 -3089 3090 3091 + mu 0 4 1837 1835 1836 1838 + f 4 3092 -3092 3093 3094 + mu 0 4 1839 1837 1838 1840 + f 4 3095 -3095 3096 3097 + mu 0 4 1841 1839 1840 1842 + f 4 3098 3099 3100 -3098 + mu 0 4 1842 1843 1844 1841 + f 4 3101 -3038 3102 3103 + mu 0 4 1845 1813 1812 1846 + f 4 3104 -3100 3105 3106 + mu 0 4 1847 1844 1843 1848 + f 4 3107 -3104 3108 3109 + mu 0 4 1849 1845 1846 1850 + f 4 3110 -3107 3111 3112 + mu 0 4 1851 1847 1848 1852 + f 4 3113 -3110 3114 3115 + mu 0 4 1853 1849 1850 1854 + f 4 3116 -3113 3117 3118 + mu 0 4 1855 1851 1852 1856 + f 4 3119 -3116 3120 3121 + mu 0 4 1857 1853 1854 1858 + f 4 3122 -3119 3123 3124 + mu 0 4 1859 1855 1856 1860 + f 4 3125 -3122 3126 3127 + mu 0 4 1861 1857 1858 1862 + f 4 3128 -3125 3129 3130 + mu 0 4 1863 1859 1860 1864 + f 4 3131 3132 3133 -3131 + mu 0 4 1864 1865 1866 1863 + f 4 3134 3135 3136 3137 + mu 0 4 1867 1868 1869 1870 + f 4 3138 -3133 3139 3140 + mu 0 4 1871 1866 1865 1872 + f 4 3141 -3138 3142 3143 + mu 0 4 1873 1867 1870 1874 + f 4 3144 3145 3146 3147 + mu 0 4 1875 1876 1877 1878 + f 4 3148 -3148 3149 3150 + mu 0 4 1879 1875 1878 1880 + f 4 3151 -3151 3152 3153 + mu 0 4 1881 1879 1880 1882 + f 4 3154 -3154 3155 3156 + mu 0 4 1883 1881 1882 1884 + f 4 3157 -3157 3158 3159 + mu 0 4 1885 1883 1884 1886 + f 4 3160 -3160 3161 3162 + mu 0 4 1887 1885 1886 1888 + f 4 -3147 3163 3164 3165 + mu 0 4 1878 1877 1889 1890 + f 4 -3150 -3166 3166 3167 + mu 0 4 1880 1878 1890 1891 + f 4 -3153 -3168 3168 3169 + mu 0 4 1882 1880 1891 1892 + f 4 -3156 -3170 3170 3171 + mu 0 4 1884 1882 1892 1893 + f 4 -3159 -3172 3172 3173 + mu 0 4 1886 1884 1893 1894 + f 4 -3162 -3174 3174 3175 + mu 0 4 1888 1886 1894 1895 + f 4 3176 3177 3178 -2462 + mu 0 4 1462 1896 1897 1463 + f 4 3179 3180 3181 3182 + mu 0 4 1898 1899 1900 1901 + f 4 3183 3184 3185 -3183 + mu 0 4 1901 1902 1903 1898 + f 4 3186 3187 3188 -3185 + mu 0 4 1902 1904 1905 1903 + f 4 3189 3190 3191 -3188 + mu 0 4 1904 1906 1907 1905 + f 4 3192 3193 3194 -3191 + mu 0 4 1906 1908 1909 1907 + f 4 3195 3196 3197 -3194 + mu 0 4 1908 1910 1911 1909 + f 4 -3165 3198 3199 3200 + mu 0 4 1890 1889 1912 1913 + f 4 -3167 -3201 3201 3202 + mu 0 4 1891 1890 1913 1914 + f 4 -3169 -3203 3203 3204 + mu 0 4 1892 1891 1914 1915 + f 4 -3171 -3205 3205 3206 + mu 0 4 1893 1892 1915 1916 + f 4 -3173 -3207 3207 3208 + mu 0 4 1894 1893 1916 1917 + f 4 -3175 -3209 3209 3210 + mu 0 4 1895 1894 1917 1918 + f 4 3211 3212 3213 -3178 + mu 0 4 1896 1919 1920 1897 + f 4 -3200 3214 3215 3216 + mu 0 4 1913 1912 1921 1922 + f 4 -3202 -3217 3217 3218 + mu 0 4 1914 1913 1922 1923 + f 4 -3204 -3219 3219 3220 + mu 0 4 1915 1914 1923 1924 + f 4 -3206 -3221 3221 3222 + mu 0 4 1916 1915 1924 1925 + f 4 -3208 -3223 3223 3224 + mu 0 4 1917 1916 1925 1926 + f 4 -3210 -3225 3225 3226 + mu 0 4 1918 1917 1926 1927 + f 4 3227 -3197 3228 -3213 + mu 0 4 1919 1911 1910 1920 + f 4 -3216 3229 3230 3231 + mu 0 4 1922 1921 1928 1929 + f 4 -3218 -3232 3232 3233 + mu 0 4 1923 1922 1929 1930 + f 4 -3220 -3234 3234 3235 + mu 0 4 1924 1923 1930 1931 + f 4 -3222 -3236 3236 3237 + mu 0 4 1925 1924 1931 1932 + f 4 -3224 -3238 3238 3239 + mu 0 4 1926 1925 1932 1933 + f 4 -3226 -3240 3240 3241 + mu 0 4 1927 1926 1933 1934 + f 4 3242 3243 -3211 3244 + mu 0 4 1935 1936 1895 1918 + f 4 -3227 3245 3246 -3245 + mu 0 4 1918 1927 1937 1935 + f 4 3247 3248 -3176 -3244 + mu 0 4 1936 1938 1888 1895 + f 3 -3242 3249 -3246 + mu 0 3 1927 1934 1937 + f 3 -3163 -3249 3250 + mu 0 3 1887 1888 1938 + f 4 3251 3252 3253 3254 + mu 0 4 1939 1940 1941 1942 + f 4 3255 -1050 3256 -3253 + mu 0 4 1940 605 607 1941 + f 4 3257 -3255 3258 3259 + mu 0 4 1943 1939 1942 1944 + f 4 3260 -3260 3261 3262 + mu 0 4 1945 1943 1944 1946 + f 4 3263 3264 3265 3266 + mu 0 4 1947 1948 1949 1950 + f 4 3267 -3267 3268 -3263 + mu 0 4 1946 1947 1950 1945 + f 4 3269 -3265 3270 3271 + mu 0 4 1951 1949 1948 1952 + f 4 3272 -3272 3273 3274 + mu 0 4 1953 1951 1952 1954 + f 4 3275 3276 3277 -3275 + mu 0 4 1954 1955 1956 1953 + f 4 3278 3279 3280 -3181 + mu 0 4 1899 1957 1958 1900 + f 4 3281 3282 3283 -3277 + mu 0 4 1955 1959 1960 1956 + f 4 3284 3285 3286 3287 + mu 0 4 1961 1962 1963 1964 + f 4 3288 3289 3290 -3286 + mu 0 4 1962 1965 1966 1963 + f 4 3291 3292 3293 -3290 + mu 0 4 1965 1967 1968 1966 + f 4 3294 3295 3296 -3293 + mu 0 4 1967 1969 1970 1968 + f 4 3297 -3296 3298 -3141 + mu 0 4 1872 1971 1972 1871 + f 4 3299 -3288 3300 3301 + mu 0 4 1973 1961 1964 1974 + f 4 3302 -3302 3303 3304 + mu 0 4 1975 1973 1974 1976 + f 4 3305 -3305 3306 3307 + mu 0 4 1977 1975 1976 1978 + f 4 3308 -3308 3309 3310 + mu 0 4 1979 1977 1978 1980 + f 4 3311 -3283 3312 -3311 + mu 0 4 1980 1960 1959 1979 + f 4 3313 3314 3315 -3280 + mu 0 4 1957 1981 1982 1958 + f 4 -3315 3316 3317 3318 + mu 0 4 1982 1981 1983 1984 + f 4 -3318 3319 3320 3321 + mu 0 4 1984 1983 1985 1986 + f 4 -3321 3322 3323 3324 + mu 0 4 1986 1985 1987 1988 + f 4 -3324 3325 3326 3327 + mu 0 4 1988 1987 1989 1990 + f 4 3328 -3327 3329 3330 + mu 0 4 1991 1990 1989 1992 + f 4 -3331 3331 3332 3333 + mu 0 4 1991 1992 1993 1994 + f 4 -3333 3334 3335 3336 + mu 0 4 1994 1993 1995 1996 + f 4 -3336 3337 3338 3339 + mu 0 4 1996 1995 1997 1998 + f 4 -3339 3340 -3144 3341 + mu 0 4 1999 2000 1873 1874 + f 4 3342 3343 3344 -2789 + mu 0 4 1667 2001 2002 1666 + f 4 3345 3346 -2802 -3345 + mu 0 4 2002 2003 1669 1666 + f 4 3347 3348 -2792 -3347 + mu 0 4 2003 2004 1637 1669 + f 4 -3349 3349 3350 -2748 + mu 0 4 1637 2004 2005 1634 + f 4 -3351 3351 3352 3353 + mu 0 4 1634 2005 2006 2007 + f 4 3354 3355 -3353 3356 + mu 0 4 2008 1573 2007 2006 + f 4 -2651 -3355 3357 3358 + mu 0 4 1574 1573 2008 2009 + f 4 -2658 3359 3360 3361 + mu 0 4 1580 1579 2010 2011 + f 4 -2664 -3359 3362 3363 + mu 0 4 1584 1574 2009 2012 + f 4 -2669 -3364 3364 -3360 + mu 0 4 1579 1584 2012 2010 + f 4 -2686 3365 3366 3367 + mu 0 4 1595 1590 2013 2014 + f 4 -3366 -2679 3368 3369 + mu 0 4 2013 1590 1570 2015 + f 3 3370 -3369 -2647 + mu 0 3 1564 2015 1570 + f 3 -3368 3371 -2691 + mu 0 3 1595 2014 1598 + f 4 -3367 3372 3373 3374 + mu 0 4 2014 2013 2016 2017 + f 4 -3370 3375 3376 -3373 + mu 0 4 2013 2015 2018 2016 + f 4 -3371 -2638 3377 -3376 + mu 0 4 2015 1564 1563 2018 + f 4 -3372 -3375 3378 -2701 + mu 0 4 1598 2014 2017 1605 + f 4 -3374 3379 3380 3381 + mu 0 4 2017 2016 2019 2020 + f 3 -3377 3382 -3380 + mu 0 3 2016 2018 2019 + f 4 -3378 3383 3384 -3383 + mu 0 4 2018 1563 2021 2019 + f 4 -3379 -3382 3385 -2704 + mu 0 4 1605 2017 2020 1607 + f 4 -3381 3386 3387 3388 + mu 0 4 2020 2019 2022 2023 + f 4 -3386 -3389 3389 -2713 + mu 0 4 1607 2020 2023 1613 + f 4 3390 -3387 -3385 3391 + mu 0 4 2024 2022 2019 2021 + f 3 3392 -3391 3393 + mu 0 3 2025 2022 2024 + f 4 -3390 3394 3395 -2719 + mu 0 4 1613 2023 2026 1617 + f 4 -2722 -3396 3396 3397 + mu 0 4 1619 1617 2026 2027 + f 4 -2731 -3398 3398 3399 + mu 0 4 1625 1619 2027 2028 + f 4 -3399 3400 3401 3402 + mu 0 4 2028 2027 2029 2030 + f 4 -3397 3403 3404 -3401 + mu 0 4 2027 2026 2031 2029 + f 4 3405 3406 -3388 -3393 + mu 0 4 2025 2032 2023 2022 + f 4 3407 -3404 -3395 -3407 + mu 0 4 2032 2031 2026 2023 + f 4 -2632 3408 3409 -3384 + mu 0 4 1563 1562 2033 2021 + f 4 3410 3411 -2621 3412 + mu 0 4 2034 2035 1553 1550 + f 4 3413 -3409 -2637 -3412 + mu 0 4 2035 2033 1562 1553 + f 4 3414 -2617 -2534 3415 + mu 0 4 2036 1550 1490 1509 + f 4 3416 -3413 -3415 3417 + mu 0 4 2037 2034 1550 2036 + f 4 -2488 3418 3419 3420 + mu 0 4 1480 1050 2038 2039 + f 4 -2561 -3421 3421 3422 + mu 0 4 1523 1480 2039 2040 + f 4 -2576 -3423 3423 3424 + mu 0 4 1531 1523 2040 2041 + f 4 -2588 -3425 3425 -3416 + mu 0 4 1509 1531 2041 2036 + f 4 -3422 3426 3427 3428 + mu 0 4 2040 2039 2042 2043 + f 4 -3424 -3429 3429 3430 + mu 0 4 2041 2040 2043 2044 + f 4 -3426 -3431 3431 -3418 + mu 0 4 2036 2041 2044 2037 + f 4 -3419 -1787 3432 3433 + mu 0 4 2038 1050 1048 2045 + f 4 -3410 3434 3435 -3392 + mu 0 4 2021 2033 2046 2024 + f 4 -3411 3436 3437 3438 + mu 0 4 2035 2034 2047 2048 + f 4 -3414 -3439 3439 -3435 + mu 0 4 2033 2035 2048 2046 + f 4 -3417 3440 3441 -3437 + mu 0 4 2034 2037 2049 2047 + f 4 -3428 3442 3443 3444 + mu 0 4 2043 2042 2050 2051 + f 4 -3430 -3445 3445 3446 + mu 0 4 2044 2043 2051 2052 + f 4 -3432 -3447 3447 -3441 + mu 0 4 2037 2044 2052 2049 + f 4 -3436 3448 3449 -3394 + mu 0 4 2024 2046 2053 2025 + f 4 -3438 3450 3451 3452 + mu 0 4 2048 2047 2054 2055 + f 4 -3440 -3453 3453 -3449 + mu 0 4 2046 2048 2055 2053 + f 4 -3442 3454 3455 -3451 + mu 0 4 2047 2049 2056 2054 + f 4 -3444 3456 3457 3458 + mu 0 4 2051 2050 2057 2058 + f 4 -3446 -3459 3459 3460 + mu 0 4 2052 2051 2058 2059 + f 4 -3448 -3461 3461 -3455 + mu 0 4 2049 2052 2059 2056 + f 4 -3450 3462 3463 3464 + mu 0 4 2025 2053 2060 2061 + f 4 -3452 3465 3466 3467 + mu 0 4 2055 2054 2062 2063 + f 4 -3454 -3468 3468 -3463 + mu 0 4 2053 2055 2063 2060 + f 4 -3456 3469 3470 -3466 + mu 0 4 2054 2056 2064 2062 + f 4 -3460 3471 3472 3473 + mu 0 4 2059 2058 2065 2066 + f 4 -3462 -3474 3474 -3470 + mu 0 4 2056 2059 2066 2064 + f 4 -3405 3475 3476 3477 + mu 0 4 2029 2031 2067 2068 + f 4 -3402 -3478 3478 3479 + mu 0 4 2030 2029 2068 2069 + f 4 -3406 -3465 3480 3481 + mu 0 4 2032 2025 2061 2070 + f 4 -3408 -3482 3482 -3476 + mu 0 4 2031 2032 2070 2067 + f 4 3483 3484 3485 3486 + mu 0 4 2071 2072 2073 2074 + f 4 3487 -3487 3488 3489 + mu 0 4 2075 2071 2074 2076 + f 4 3490 -3490 3491 3492 + mu 0 4 2077 2075 2076 2078 + f 4 3493 3494 3495 3496 + mu 0 4 2079 2080 2081 2082 + f 4 3497 3498 3499 -3485 + mu 0 4 2072 2083 2084 2073 + f 4 3500 3501 3502 -3499 + mu 0 4 2083 2085 2086 2084 + f 4 3503 -3497 3504 -3502 + mu 0 4 2085 2079 2082 2086 + f 4 3505 3506 3507 3508 + mu 0 4 2087 2088 2089 2090 + f 4 3509 -3493 3510 3511 + mu 0 4 2091 2077 2078 2092 + f 4 3512 -3512 3513 3514 + mu 0 4 2093 2091 2092 2094 + f 4 3515 -3515 3516 3517 + mu 0 4 2095 2093 2094 2096 + f 4 3518 -3518 3519 3520 + mu 0 4 2097 2095 2096 2098 + f 4 3521 -3521 3522 3523 + mu 0 4 2099 2097 2098 2100 + f 4 3524 -3524 3525 -3507 + mu 0 4 2088 2099 2100 2089 + f 4 -1569 3526 3527 3528 + mu 0 4 2101 2102 2103 2104 + f 4 -3528 3529 3530 3531 + mu 0 4 2104 2103 2105 2106 + f 4 -3531 3532 -1707 3533 + mu 0 4 2106 2105 995 994 + f 4 3534 3535 -1573 3536 + mu 0 4 2107 2108 2109 2110 + f 4 -1702 3537 3538 3539 + mu 0 4 992 991 2111 2112 + f 4 3540 -3534 -1705 -3540 + mu 0 4 2112 2106 994 992 + f 4 3541 -3537 -1571 -3529 + mu 0 4 2104 2107 2110 2101 + f 4 -3541 3542 -3542 -3532 + mu 0 4 2106 2112 2107 2104 + f 4 -3539 3543 -3535 -3543 + mu 0 4 2112 2111 2108 2107 + f 4 -1575 -3536 3544 3545 + mu 0 4 2113 2114 2115 2116 + f 4 -3544 3546 3547 -3545 + mu 0 4 2115 2117 2118 2116 + f 4 -1694 3548 -3547 -3538 + mu 0 4 986 985 2118 2117 + f 4 -3546 3549 3550 -1577 + mu 0 4 2113 2116 2119 2120; + setAttr ".fc[1500:1999]" + f 4 -3548 3551 3552 -3550 + mu 0 4 2116 2118 2121 2119 + f 4 -1696 3553 -3552 -3549 + mu 0 4 985 987 2121 2118 + f 4 -1579 -3551 3554 3555 + mu 0 4 2122 2120 2119 2123 + f 4 -3553 3556 3557 -3555 + mu 0 4 2119 2121 2124 2123 + f 4 3558 3559 3560 -3558 + mu 0 4 2124 2125 2126 2123 + f 4 -3561 3561 -1581 -3556 + mu 0 4 2123 2126 2127 2122 + f 4 -3554 -1699 3562 3563 + mu 0 4 2121 987 982 2128 + f 4 -3557 3564 3565 3566 + mu 0 4 2124 2121 2129 2130 + f 4 -3564 3567 3568 -3565 + mu 0 4 2121 2128 2131 2129 + f 4 -1403 3569 3570 -687 + mu 0 4 408 791 2132 390 + f 4 -1411 3571 3572 3573 + mu 0 4 796 799 2133 2134 + f 4 -1415 3574 3575 3576 + mu 0 4 800 803 2135 2136 + f 4 -1418 -3574 3577 3578 + mu 0 4 804 796 2134 2137 + f 4 3579 -3572 -1646 3580 + mu 0 4 2138 2133 799 952 + f 4 -645 3581 3582 3583 + mu 0 4 387 388 2139 2140 + f 4 -1597 3584 -1599 3585 + mu 0 4 916 915 918 917 + f 4 -651 3586 3587 3588 + mu 0 4 391 384 2141 2142 + f 4 -1558 3589 -1555 3590 + mu 0 4 891 890 884 887 + f 4 -1334 3591 -1351 3592 + mu 0 4 751 750 761 759 + f 4 -1339 -3593 -1348 3593 + mu 0 4 752 751 759 757 + f 4 -1337 -3594 -1345 3594 + mu 0 4 753 752 757 755 + f 4 -1340 -3595 -1342 3595 + mu 0 4 626 753 755 627 + f 4 -1076 -3596 -1077 3596 + mu 0 4 620 626 627 621 + f 4 -1066 -3597 -1067 3597 + mu 0 4 608 620 621 615 + f 4 -1052 -3598 -1058 3598 + mu 0 4 609 608 615 614 + f 4 -1422 -3599 -1433 3599 + mu 0 4 808 609 614 813 + f 4 -1424 -3600 -1436 3600 + mu 0 4 809 808 813 815 + f 4 -1426 -3601 -1439 3601 + mu 0 4 810 809 815 817 + f 4 -1428 -3602 -1442 3602 + mu 0 4 811 810 817 819 + f 4 -1430 -3603 -1445 3603 + mu 0 4 812 811 819 821 + f 4 -1432 -3604 -1448 3604 + mu 0 4 790 812 821 801 + f 4 -1402 -3605 -1412 3605 + mu 0 4 791 790 801 800 + f 4 -3570 -3606 -3577 3606 + mu 0 4 2132 791 800 2136 + f 4 -3583 3607 3608 3609 + mu 0 4 2140 2139 2143 2144 + f 4 -650 -3571 3610 3611 + mu 0 4 389 390 2132 2145 + f 4 3612 -3582 -648 -3612 + mu 0 4 2145 2139 388 389 + f 4 -3588 3613 3614 3615 + mu 0 4 2142 2141 2146 2147 + f 4 3616 -1333 -657 3617 + mu 0 4 2148 750 394 393 + f 4 -655 3618 3619 -3618 + mu 0 4 393 392 2149 2148 + f 4 -653 -3589 3620 -3619 + mu 0 4 392 391 2142 2149 + f 4 -637 -1048 3621 -3587 + mu 0 4 384 383 606 2141 + f 4 3622 3623 -3252 3624 + mu 0 4 2150 2151 1940 1939 + f 4 -3256 -3624 3625 -1045 + mu 0 4 605 1940 2151 603 + f 4 3626 -3625 -3258 3627 + mu 0 4 2152 2150 1939 1943 + f 4 -1042 -3626 3628 3629 + mu 0 4 604 603 2151 2153 + f 3 -3629 -3623 3630 + mu 0 3 2153 2151 2150 + f 4 3631 -3631 -3627 3632 + mu 0 4 2154 2153 2150 2152 + f 4 -640 3633 3634 -934 + mu 0 4 363 385 2155 562 + f 4 3635 -3634 -641 3636 + mu 0 4 2156 2155 385 386 + f 4 3637 -3637 -643 -3584 + mu 0 4 2140 2156 386 387 + f 4 -935 3638 3639 -1648 + mu 0 4 560 562 2157 954 + f 4 3640 3641 -1651 -3640 + mu 0 4 2157 2158 956 954 + f 4 3642 -3527 -1567 3643 + mu 0 4 2159 2103 2102 2160 + f 4 3644 -3644 -1565 3645 + mu 0 4 2161 2159 2160 2162 + f 4 3646 -3646 -1563 3647 + mu 0 4 2163 2161 2162 2164 + f 4 -1593 3648 3649 3650 + mu 0 4 912 911 2165 2166 + f 4 -1561 -1594 3651 -3648 + mu 0 4 2164 2167 2168 2163 + f 4 -1589 3652 3653 -1592 + mu 0 4 910 2169 2170 911 + f 4 -1587 3654 3655 -3653 + mu 0 4 2169 2171 2172 2170 + f 4 3656 -3655 -1585 3657 + mu 0 4 2173 2172 2171 2174 + f 4 3658 -3658 -1583 -3562 + mu 0 4 2126 2173 2174 2127 + f 4 -3659 -3560 3659 3660 + mu 0 4 2173 2126 2125 2175 + f 4 3661 3662 -3657 -3661 + mu 0 4 2175 2176 2172 2173 + f 4 -3650 3663 3664 3665 + mu 0 4 2166 2165 2177 2178 + f 4 -3654 3666 3667 -3649 + mu 0 4 911 2170 2179 2165 + f 4 -3656 -3663 3668 -3667 + mu 0 4 2170 2172 2176 2179 + f 4 -3652 -3651 3669 3670 + mu 0 4 2163 2168 2180 2181 + f 4 3671 3672 -3647 -3671 + mu 0 4 2181 2182 2161 2163 + f 4 -3645 -3673 3673 3674 + mu 0 4 2159 2161 2182 2183 + f 4 3675 -3530 -3643 -3675 + mu 0 4 2183 2105 2103 2159 + f 4 -1598 3676 3677 3678 + mu 0 4 2184 2185 2186 2187 + f 4 -1602 3679 3680 3681 + mu 0 4 2188 2189 2190 2191 + f 4 -3581 -1631 3682 3683 + mu 0 4 2192 936 792 2193 + f 4 -3586 -3682 3684 -3677 + mu 0 4 2185 2188 2191 2186 + f 4 -3666 3685 3686 -3670 + mu 0 4 2180 2194 2195 2181 + f 4 3687 -3683 -1407 3688 + mu 0 4 2196 2193 792 795 + f 4 -3688 3689 3690 3691 + mu 0 4 2193 2196 2197 2198 + f 4 3692 -3689 -1421 3693 + mu 0 4 2199 2196 795 807 + f 4 -3678 3694 3695 3696 + mu 0 4 2187 2186 2200 2201 + f 4 -3681 3697 3698 3699 + mu 0 4 2191 2190 2202 2203 + f 4 -3685 -3700 3700 -3695 + mu 0 4 2186 2191 2203 2200 + f 4 -3687 3701 3702 -3672 + mu 0 4 2181 2195 2204 2182 + f 4 -1508 3703 3704 -3694 + mu 0 4 807 860 2205 2199 + f 4 -3509 3705 3706 3707 + mu 0 4 2087 2090 2206 2207 + f 4 -3676 3708 -1711 -3533 + mu 0 4 2105 2183 998 995 + f 4 -3709 3709 3710 -1714 + mu 0 4 998 2183 2208 1000 + f 4 -3665 3711 3712 3713 + mu 0 4 2178 2177 2209 2210 + f 4 -3686 -3714 3714 3715 + mu 0 4 2195 2194 2211 2212 + f 4 -3702 -3716 3716 3717 + mu 0 4 2204 2195 2212 2213 + f 4 -3674 -3703 3718 -3710 + mu 0 4 2183 2182 2204 2208 + f 4 3719 3720 -1717 -3711 + mu 0 4 2208 2214 1002 1000 + f 4 -3719 3721 3722 -3720 + mu 0 4 2208 2204 2215 2214 + f 4 -3713 3723 -1595 3724 + mu 0 4 2210 2209 914 913 + f 4 -3715 -3725 -3679 3725 + mu 0 4 2212 2211 2184 2187 + f 4 -3717 -3726 -3697 3726 + mu 0 4 2213 2212 2187 2201 + f 4 3727 3728 -2014 -3721 + mu 0 4 2214 2216 1005 1002 + f 4 3729 -1721 -3729 3730 + mu 0 4 2217 1006 1005 2216 + f 4 3731 3732 -3722 -3718 + mu 0 4 2213 2218 2215 2204 + f 4 3733 3734 -3701 3735 + mu 0 4 2219 2220 2200 2203 + f 4 3736 -3696 -3735 3737 + mu 0 4 2221 2201 2200 2220 + f 4 3738 -3732 -3727 -3737 + mu 0 4 2221 2218 2213 2201 + f 4 3739 3740 -3736 -3699 + mu 0 4 2202 2222 2219 2203 + f 4 -1748 3741 3742 3743 + mu 0 4 1024 1022 2223 2224 + f 4 3744 3745 -1751 -3744 + mu 0 4 2224 2225 1026 1024 + f 4 -3746 3746 3747 -1753 + mu 0 4 1026 2225 2226 1027 + f 4 -3743 3748 -1732 3749 + mu 0 4 2224 2223 1013 1011 + f 4 3750 -3745 -3750 -1729 + mu 0 4 1009 2225 2224 1011 + f 4 -3747 -3751 -1726 3751 + mu 0 4 2226 2225 1009 1007 + f 4 -3749 3752 -1739 -1735 + mu 0 4 1013 2223 1018 1015 + f 4 -3742 -1745 -1742 -3753 + mu 0 4 2223 1022 1020 1018 + f 4 3753 -1756 -3748 3754 + mu 0 4 2227 1029 1027 2226 + f 4 3755 -3755 -3752 3756 + mu 0 4 2228 2227 2226 1007 + f 4 -3757 -1723 -3730 3757 + mu 0 4 2228 1007 1006 2217 + f 4 3758 -1760 -3754 3759 + mu 0 4 2229 1032 1029 2227 + f 4 3760 -1763 -3759 3761 + mu 0 4 2230 1034 1032 2229 + f 4 3762 -1766 -3761 3763 + mu 0 4 2231 1036 1034 2230 + f 4 -3763 3764 3765 -1769 + mu 0 4 1036 2231 2232 1038 + f 4 3766 3767 -1772 -3766 + mu 0 4 2232 2233 1040 1038 + f 4 3768 3769 -1775 -3768 + mu 0 4 2233 2234 1042 1040 + f 4 -1778 -3770 3770 3771 + mu 0 4 1044 1042 2234 2235 + f 4 -1781 -3772 3772 3773 + mu 0 4 1046 1044 2235 2236 + f 4 -1784 -3774 3774 -3433 + mu 0 4 1048 1046 2236 2045 + f 4 3775 3776 -3728 -3723 + mu 0 4 2215 2237 2216 2214 + f 4 -3609 3777 3778 3779 + mu 0 4 2144 2143 2238 2239 + f 4 -3613 3780 3781 -3608 + mu 0 4 2139 2145 2240 2143 + f 4 -3611 3782 3783 -3781 + mu 0 4 2145 2132 2241 2240 + f 4 3784 -3783 -3607 3785 + mu 0 4 2242 2241 2132 2136 + f 4 -3782 3786 3787 -3778 + mu 0 4 2143 2240 2243 2238 + f 4 -3784 3788 3789 -3787 + mu 0 4 2240 2241 2244 2243 + f 4 -3785 3790 3791 -3789 + mu 0 4 2241 2242 2245 2244 + f 4 3792 3793 3794 -3580 + mu 0 4 2138 2246 2247 2133 + f 4 -3692 3795 -3793 -3684 + mu 0 4 2193 2198 2248 2192 + f 4 3796 3797 -3740 3798 + mu 0 4 2197 2249 2222 2202 + f 4 -3698 3799 -3691 -3799 + mu 0 4 2202 2190 2198 2197 + f 4 -3680 3800 -3796 -3800 + mu 0 4 2190 2189 2248 2198 + f 4 -1601 3801 -3794 -3801 + mu 0 4 920 919 2247 2246 + f 4 3802 3803 3804 3805 + mu 0 4 2250 2251 2252 2253 + f 4 3806 -3806 3807 3808 + mu 0 4 2254 2250 2253 2255 + f 4 3809 -3809 3810 3811 + mu 0 4 2256 2254 2255 2257 + f 4 3812 -3812 3813 3814 + mu 0 4 2258 2256 2257 2259 + f 4 3815 -3791 -3786 -3576 + mu 0 4 2135 2245 2242 2136 + f 4 -3805 3816 -3802 3817 + mu 0 4 2253 2252 2247 919 + f 4 -3808 -3818 -1600 3818 + mu 0 4 2255 2253 919 918 + f 4 -3811 -3819 -3585 3819 + mu 0 4 2257 2255 918 915 + f 4 -3814 -3820 -1596 3820 + mu 0 4 2259 2257 915 914 + f 4 -3578 3821 -3804 3822 + mu 0 4 2137 2134 2252 2251 + f 4 -3822 -3573 -3795 -3817 + mu 0 4 2252 2134 2133 2247 + f 4 3823 -3739 3824 3825 + mu 0 4 2260 2218 2221 2261 + f 4 -3824 3826 -3776 -3733 + mu 0 4 2218 2260 2237 2215 + f 4 -3756 3827 3828 -3760 + mu 0 4 2227 2228 2262 2229 + f 4 -3777 3829 3830 -3731 + mu 0 4 2216 2237 2263 2217 + f 4 -3828 -3758 -3831 3831 + mu 0 4 2262 2228 2217 2263 + f 4 3832 -3762 -3829 3833 + mu 0 4 2264 2230 2229 2262 + f 4 -3832 3834 3835 -3834 + mu 0 4 2262 2263 2265 2264 + f 4 -3830 -3827 3836 -3835 + mu 0 4 2263 2237 2260 2265 + f 4 -3833 3837 3838 -3764 + mu 0 4 2230 2264 2266 2231 + f 4 3839 -3838 -3836 3840 + mu 0 4 2267 2266 2264 2265 + f 4 -3837 -3826 3841 -3841 + mu 0 4 2265 2260 2261 2267 + f 4 -3825 -3738 3842 3843 + mu 0 4 2261 2221 2220 2268 + f 4 -3843 -3734 3844 3845 + mu 0 4 2268 2220 2219 2269 + f 4 -3845 -3741 3846 3847 + mu 0 4 2269 2219 2222 2270 + f 4 -1368 3848 -3494 3849 + mu 0 4 775 774 2080 2079 + f 4 -1400 -3850 -3504 3850 + mu 0 4 789 775 2079 2085 + f 4 -1399 -3851 -3501 3851 + mu 0 4 2271 789 2085 2083 + f 4 -1397 -3852 -3498 3852 + mu 0 4 2272 2271 2083 2072 + f 4 -1097 -3853 -3484 3853 + mu 0 4 2273 2272 2072 2071 + f 4 -1100 -3854 -3488 3854 + mu 0 4 2274 2273 2071 2075 + f 4 -1103 -3855 -3491 3855 + mu 0 4 2275 2274 2075 2077 + f 4 -1509 -3856 -3510 3856 + mu 0 4 2276 2275 2077 2091 + f 4 -1511 -3857 -3513 3857 + mu 0 4 2277 2276 2091 2093 + f 4 -1513 -3858 -3516 3858 + mu 0 4 2278 2277 2093 2095 + f 4 -1515 -3859 -3519 3859 + mu 0 4 2279 2278 2095 2097 + f 4 -1517 -3860 -3522 3860 + mu 0 4 866 2279 2097 2099 + f 4 -1519 -3861 -3525 3861 + mu 0 4 859 866 2099 2088 + f 4 -1507 -3862 -3506 3862 + mu 0 4 860 859 2088 2087 + f 4 -3704 -3863 -3708 3863 + mu 0 4 2205 860 2087 2207 + f 4 -3798 3864 3865 -3847 + mu 0 4 2222 2249 2280 2270 + f 4 3866 -3865 3867 -3705 + mu 0 4 2205 2280 2249 2199 + f 4 -3797 -3690 -3693 -3868 + mu 0 4 2249 2197 2196 2199 + f 4 -3839 3868 3869 -3765 + mu 0 4 2231 2266 2281 2232 + f 4 -3840 3870 3871 -3869 + mu 0 4 2266 2267 2282 2281 + f 4 -3842 -3844 3872 -3871 + mu 0 4 2267 2261 2268 2282 + f 4 -3846 3873 3874 -3873 + mu 0 4 2268 2269 2283 2282 + f 4 -3866 3875 3876 3877 + mu 0 4 2270 2280 2284 2283 + f 4 -3867 -3864 3878 -3876 + mu 0 4 2280 2205 2207 2284 + f 3 -3878 -3874 -3848 + mu 0 3 2270 2283 2269 + f 4 -3872 -3875 3879 3880 + mu 0 4 2281 2282 2283 2285 + f 4 3881 -3879 -3707 3882 + mu 0 4 2286 2284 2207 2206 + f 4 -3880 -3877 -3882 3883 + mu 0 4 2285 2283 2284 2286 + f 4 -3615 3884 3885 3886 + mu 0 4 2147 2146 2287 2288 + f 4 3887 3888 -3621 -3616 + mu 0 4 2147 2289 2149 2142 + f 4 -3620 -3889 3889 3890 + mu 0 4 2148 2149 2289 2290 + f 4 -3617 -3891 3891 3892 + mu 0 4 750 2148 2290 2291 + f 4 3893 -3592 -3893 3894 + mu 0 4 2292 761 750 2291 + f 4 -3622 3895 3896 -3614 + mu 0 4 2141 606 2293 2146 + f 4 -3630 3897 -3896 -1047 + mu 0 4 604 2153 2293 606 + f 4 -3886 3898 3899 3900 + mu 0 4 2288 2287 2294 2295 + f 4 3901 -3885 -3897 3902 + mu 0 4 2296 2287 2146 2293 + f 4 -3632 3903 -3903 -3898 + mu 0 4 2153 2154 2296 2293 + f 4 -3888 -3887 3904 3905 + mu 0 4 2289 2147 2288 2297 + f 4 3906 3907 -3890 -3906 + mu 0 4 2297 2298 2290 2289 + f 4 3908 3909 -3892 -3908 + mu 0 4 2298 2299 2291 2290 + f 4 -3910 3910 3911 -3895 + mu 0 4 2291 2299 2300 2292 + f 4 3912 -1350 3913 -1357 + mu 0 4 766 758 760 767 + f 4 3914 -1347 -3913 -1376 + mu 0 4 778 756 758 766 + f 4 3915 -1344 -3915 -1373 + mu 0 4 776 754 756 778 + f 4 3916 -1341 -3916 -1370 + mu 0 4 629 628 754 776 + f 4 -1079 -3917 -1080 3917 + mu 0 4 622 628 629 2301 + f 4 -1069 -3918 -1070 3918 + mu 0 4 616 622 2301 2302 + f 4 -1060 -3919 -1054 3919 + mu 0 4 617 616 2302 2303 + f 4 -1434 -3920 -1450 3920 + mu 0 4 814 617 2303 2304 + f 4 -1437 -3921 -1453 3921 + mu 0 4 816 814 2304 2305 + f 4 -1440 -3922 -1456 3922 + mu 0 4 818 816 2305 829 + f 4 -1443 -3923 -1459 3923 + mu 0 4 820 818 829 831 + f 4 -1446 -3924 -1462 3924 + mu 0 4 822 820 831 833 + f 4 -1449 -3925 -1465 3925 + mu 0 4 802 822 833 805 + f 4 -1414 -3926 -1416 3926 + mu 0 4 803 802 805 804 + f 4 -3575 -3927 -3579 3927 + mu 0 4 2135 803 804 2137 + f 4 3928 -3816 -3928 -3823 + mu 0 4 2251 2245 2135 2137 + f 4 -3792 -3929 -3803 3929 + mu 0 4 2244 2245 2251 2250 + f 4 -3790 -3930 -3807 3930 + mu 0 4 2243 2244 2250 2254 + f 4 -3788 -3931 -3810 3931 + mu 0 4 2238 2243 2254 2256 + f 4 -3779 -3932 -3813 3932 + mu 0 4 2239 2238 2256 2258 + f 4 3933 -1352 -3894 -3912 + mu 0 4 2300 760 761 2292 + f 4 -3900 3934 3935 3936 + mu 0 4 2295 2294 2306 2307 + f 4 -3936 3937 -3591 3938 + mu 0 4 2307 2306 891 887 + f 4 -3905 -3901 3939 3940 + mu 0 4 2297 2288 2295 2308 + f 4 -3907 -3941 3941 3942 + mu 0 4 2298 2297 2308 2309 + f 4 -3909 -3943 3943 3944 + mu 0 4 2299 2298 2309 2310 + f 4 -3911 -3945 3945 3946 + mu 0 4 2300 2299 2310 2311 + f 4 -3934 -3947 3947 -3914 + mu 0 4 760 2300 2311 767 + f 4 -3940 -3937 3948 3949 + mu 0 4 2308 2295 2307 2312 + f 4 -3942 -3950 3950 3951 + mu 0 4 2309 2308 2312 2313 + f 4 -3944 -3952 3952 3953 + mu 0 4 2310 2309 2313 2314 + f 4 -3946 -3954 3954 3955 + mu 0 4 2311 2310 2314 2315 + f 4 -3948 -3956 3956 -1358 + mu 0 4 767 2311 2315 768 + f 4 -3949 -3939 -1554 3957 + mu 0 4 2312 2307 887 886 + f 4 -3951 -3958 3958 3959 + mu 0 4 2313 2312 886 2316 + f 4 -3953 -3960 3960 3961 + mu 0 4 2314 2313 2316 2317 + f 4 -3955 -3962 3962 3963 + mu 0 4 2315 2314 2317 2318 + f 4 -3957 -3964 3964 -1361 + mu 0 4 768 2315 2318 770 + f 4 3965 3966 -1632 -3965 + mu 0 4 2318 2319 937 770 + f 4 3967 3968 -3966 -3963 + mu 0 4 2317 2320 2319 2318 + f 4 3969 3970 -3968 -3961 + mu 0 4 2316 2321 2320 2317 + f 4 -1553 3971 -3970 -3959 + mu 0 4 886 885 2321 2316 + f 4 -1521 3972 3973 3974 + mu 0 4 868 867 2322 2323 + f 4 -1524 3975 3976 -3973 + mu 0 4 867 869 2324 2322 + f 4 -1526 3977 3978 -3976 + mu 0 4 869 870 2325 2324 + f 4 -1528 3979 3980 -3978 + mu 0 4 870 871 2326 2325 + f 4 -1530 3981 3982 -3980 + mu 0 4 873 872 2327 2328 + f 4 -1532 3983 3984 -3982 + mu 0 4 872 874 2329 2327 + f 4 -1534 3985 3986 -3984 + mu 0 4 874 875 2330 2329 + f 4 -1536 3987 3988 -3986 + mu 0 4 875 876 2331 2330 + f 4 -1538 3989 3990 -3988 + mu 0 4 876 877 2332 2331 + f 4 -1540 3991 3992 -3990 + mu 0 4 877 878 2333 2332 + f 4 -1542 3993 3994 -3992 + mu 0 4 878 879 2334 2333 + f 4 -1544 3995 3996 -3994 + mu 0 4 879 880 2335 2334 + f 4 -1546 3997 3998 -3996 + mu 0 4 880 881 2336 2335 + f 4 -1548 3999 4000 -3998 + mu 0 4 881 882 2337 2336 + f 4 -1550 4001 4002 -4000 + mu 0 4 882 883 2338 2337 + f 4 -1551 -3975 4003 -4002 + mu 0 4 883 868 2323 2338 + f 4 -3974 4004 4005 4006 + mu 0 4 2339 2340 2341 2342 + f 4 -3977 4007 4008 -4005 + mu 0 4 2340 2343 2344 2341 + f 4 -3979 4009 4010 -4008 + mu 0 4 2343 2345 2346 2344 + f 4 -3981 4011 4012 -4010 + mu 0 4 2345 2347 2348 2346 + f 4 -3983 4013 4014 -4012 + mu 0 4 2347 2349 2350 2348 + f 4 -3985 4015 4016 -4014 + mu 0 4 2349 2351 2352 2350 + f 4 -3987 4017 4018 -4016 + mu 0 4 2351 2353 2354 2352 + f 4 -3989 4019 4020 -4018 + mu 0 4 2355 2356 2357 2358 + f 4 -3991 4021 4022 -4020 + mu 0 4 2356 2359 2360 2357 + f 4 -3993 4023 4024 -4022 + mu 0 4 2359 2361 2362 2360 + f 4 -3995 4025 4026 -4024 + mu 0 4 2361 2363 2364 2362 + f 4 -3997 4027 4028 -4026 + mu 0 4 2363 2365 2366 2364 + f 4 -3999 4029 4030 -4028 + mu 0 4 2365 2367 2368 2366 + f 4 -4001 4031 4032 -4030 + mu 0 4 2367 2369 2370 2368 + f 4 -4003 4033 4034 -4032 + mu 0 4 2369 2371 2372 2370 + f 4 -4004 -4007 4035 -4034 + mu 0 4 2371 2373 2374 2372 + f 4 -4021 4036 4037 4038 + mu 0 4 2358 2357 2375 2376 + f 4 4039 -4037 -4023 4040 + mu 0 4 2377 2375 2357 2360 + f 4 -3301 4041 -4040 4042 + mu 0 4 1974 1964 2375 2377 + f 4 -4038 -4042 -3287 4043 + mu 0 4 2376 2375 1964 1963 + f 4 4044 -4044 -3291 4045 + mu 0 4 2378 2376 1963 1966 + f 4 -4045 4046 4047 -4039 + mu 0 4 2376 2378 2379 2358 + f 4 -4048 4048 4049 -4019 + mu 0 4 2354 2380 2381 2352 + f 4 4050 4051 -4017 -4050 + mu 0 4 2381 2382 2350 2352 + f 4 -4049 4052 4053 4054 + mu 0 4 2381 2380 2383 2384 + f 4 4055 4056 -4053 -4047 + mu 0 4 2378 2385 2386 2379 + f 4 -3294 4057 -4056 -4046 + mu 0 4 1966 1968 2385 2378 + f 4 4058 4059 -4051 -4055 + mu 0 4 2384 2387 2382 2381 + f 4 4060 4061 -4015 -4052 + mu 0 4 2382 2388 2348 2350 + f 4 -3590 4062 4063 4064 + mu 0 4 2389 2390 2391 2392 + f 4 -1552 -4065 4065 4066 + mu 0 4 2393 2389 2392 2394 + f 4 -3967 4067 4068 -1604 + mu 0 4 922 2395 2396 773 + f 4 -3969 4069 4070 -4068 + mu 0 4 2395 2397 2398 2396 + f 4 -3971 4071 4072 -4070 + mu 0 4 2397 2399 2400 2398 + f 4 -3972 -4067 4073 -4072 + mu 0 4 2399 2393 2394 2400 + f 4 -4064 4074 4075 4076 + mu 0 4 2392 2391 2401 2402 + f 4 -4066 -4077 4077 4078 + mu 0 4 2394 2392 2402 2403 + f 4 -4069 4079 4080 -1365 + mu 0 4 773 2396 2404 763 + f 4 -4071 4081 4082 -4080 + mu 0 4 2396 2398 2405 2404 + f 4 -4073 4083 4084 -4082 + mu 0 4 2398 2400 2406 2405 + f 4 -4074 -4079 4085 -4084 + mu 0 4 2400 2394 2403 2406 + f 4 -4076 4086 4087 4088 + mu 0 4 2402 2401 2407 2408 + f 4 -4078 -4089 4089 4090 + mu 0 4 2403 2402 2408 2409 + f 4 -4081 4091 4092 -1354 + mu 0 4 763 2404 2410 764 + f 4 -4083 4093 4094 -4092 + mu 0 4 2404 2405 2411 2410 + f 3 -4085 4095 -4094 + mu 0 3 2405 2406 2411 + f 4 -4086 -4091 4096 -4096 + mu 0 4 2406 2403 2409 2411 + f 4 4097 4098 -1367 -4093 + mu 0 4 2410 2412 774 764 + f 4 4099 4100 -3849 -4099 + mu 0 4 2412 2413 2080 774 + f 4 4101 -3495 -4101 4102 + mu 0 4 2414 2081 2080 2413 + f 4 4103 4104 -4098 -4095 + mu 0 4 2411 2415 2412 2410 + f 4 -4104 -4097 4105 4106 + mu 0 4 2415 2411 2409 2416 + f 4 4107 4108 -4106 -4090 + mu 0 4 2408 2417 2416 2409 + f 4 4109 -4100 -4105 -4107 + mu 0 4 2416 2413 2412 2415 + f 4 4110 -4103 -4110 -4109 + mu 0 4 2417 2414 2413 2416 + f 4 4111 4112 -4061 -4060 + mu 0 4 2387 2418 2388 2382 + f 4 4113 -4058 -3297 4114 + mu 0 4 2419 2385 1968 1970 + f 4 -4115 -3298 4115 4116 + mu 0 4 2420 1971 1872 2421 + f 4 4117 -4116 -3140 4118 + mu 0 4 2422 2421 1872 1865 + f 4 4119 -4057 -4114 -4117 + mu 0 4 2421 2383 2423 2420 + f 4 -4118 4120 -4054 -4120 + mu 0 4 2421 2422 2384 2383 + f 4 -4121 4121 4122 -4059 + mu 0 4 2384 2422 2424 2387 + f 4 -4119 -3132 4123 -4122 + mu 0 4 2422 1865 1864 2424 + f 4 -4123 4124 4125 -4112 + mu 0 4 2387 2424 2425 2418 + f 4 -4125 -4124 -3130 4126 + mu 0 4 2425 2424 1864 1860 + f 4 4127 -3128 4128 -3136 + mu 0 4 1868 1861 1862 1869 + f 4 4129 4130 -4013 4131 + mu 0 4 2426 2427 2346 2348 + f 4 -4011 -4131 4132 4133 + mu 0 4 2344 2346 2427 2428 + f 4 4134 4135 -4009 -4134 + mu 0 4 2428 2429 2341 2344 + f 4 -4132 -4062 4136 4137 + mu 0 4 2426 2348 2388 2430 + f 4 -4113 4138 4139 -4137 + mu 0 4 2388 2418 2431 2430 + f 4 -4126 4140 4141 -4139 + mu 0 4 2418 2425 2432 2431 + f 4 -4127 -3124 4142 -4141 + mu 0 4 2425 1860 1856 2432 + f 4 -4143 -3118 4143 4144 + mu 0 4 2432 1856 1852 2433 + f 4 -4144 -3112 4145 4146 + mu 0 4 2433 1852 1848 2434 + f 4 -4146 -3106 4147 4148 + mu 0 4 2434 1848 1843 2435 + f 4 -4148 -3099 4149 4150 + mu 0 4 2435 1843 1842 2436 + f 4 -4150 -3097 4151 4152 + mu 0 4 2436 1842 1840 2437 + f 4 -4152 -3094 4153 4154 + mu 0 4 2437 1840 1838 2438 + f 4 -2991 -2913 4155 4156 + mu 0 4 1781 1735 1728 2439 + f 4 -2997 -4157 4157 4158 + mu 0 4 1785 1781 2439 2440 + f 4 -3085 -4159 4159 4160 + mu 0 4 1834 1785 2440 2441 + f 4 -3088 -4161 4161 4162 + mu 0 4 1836 1834 2441 2442 + f 4 -3091 -4163 4163 -4154 + mu 0 4 1838 1836 2442 2438 + f 4 4164 -4142 -4145 4165 + mu 0 4 2443 2431 2432 2433 + f 4 -4147 4166 4167 -4166 + mu 0 4 2433 2434 2444 2443 + f 4 -4138 -4140 -4165 4168 + mu 0 4 2426 2430 2431 2443 + f 4 -4168 4169 -4130 -4169 + mu 0 4 2443 2444 2427 2426 + f 4 -4167 -4149 4170 4171 + mu 0 4 2444 2434 2435 2445 + f 4 -4170 -4172 4172 -4133 + mu 0 4 2427 2444 2445 2428 + f 4 -4036 4173 4174 4175 + mu 0 4 2372 2374 2446 2447 + f 4 4176 -4174 -4006 -4136 + mu 0 4 2429 2448 2342 2341 + f 4 4177 4178 -3767 4179 + mu 0 4 2449 2450 2233 2232 + f 4 -4178 4180 -3884 4181 + mu 0 4 2450 2449 2285 2286 + f 4 -4181 -4180 -3870 -3881 + mu 0 4 2285 2449 2232 2281 + f 4 -3883 4182 4183 -4182 + mu 0 4 2286 2206 2451 2450 + f 4 4184 -3769 -4179 -4184 + mu 0 4 2451 2234 2233 2450 + f 4 -3706 4185 4186 -4183 + mu 0 4 2206 2090 2452 2451 + f 4 -4187 4187 -3771 -4185 + mu 0 4 2451 2452 2235 2234 + f 4 4188 4189 -4186 -3508 + mu 0 4 2089 2453 2452 2090 + f 4 -4188 -4190 4190 -3773 + mu 0 4 2235 2452 2453 2236 + f 4 4191 4192 -4189 -3526 + mu 0 4 2100 2454 2453 2089 + f 4 -3523 4193 4194 -4192 + mu 0 4 2100 2098 2455 2454 + f 4 4195 -3427 -3420 4196 + mu 0 4 2456 2042 2039 2038 + f 4 -4191 -4193 4197 4198 + mu 0 4 2236 2453 2454 2457 + f 4 -4199 4199 4200 -3775 + mu 0 4 2236 2457 2458 2045 + f 4 -4197 -3434 -4201 4201 + mu 0 4 2456 2038 2045 2458 + f 4 -4195 4202 4203 -4198 + mu 0 4 2454 2455 2459 2457 + f 4 4204 4205 -3443 -4196 + mu 0 4 2456 2460 2050 2042 + f 4 4206 -4205 -4202 -4200 + mu 0 4 2457 2460 2456 2458 + f 4 -3457 -4206 4207 4208 + mu 0 4 2057 2050 2460 2461 + f 4 -3458 -4209 4209 -3472 + mu 0 4 2058 2057 2461 2065 + f 4 -4208 -4207 -4204 4210 + mu 0 4 2461 2460 2457 2459 + f 4 4211 4212 4213 -3503 + mu 0 4 2086 2462 2463 2084 + f 4 -4214 4214 4215 -3500 + mu 0 4 2084 2463 2464 2073 + f 4 4216 4217 4218 -3511 + mu 0 4 2078 2465 2466 2092 + f 4 -3464 4219 4220 4221 + mu 0 4 2061 2060 2467 2468 + f 4 -3469 4222 4223 -4220 + mu 0 4 2060 2063 2469 2467 + f 3 -3481 -4222 4224 + mu 0 3 2070 2061 2468 + f 4 -3483 -4225 4225 4226 + mu 0 4 2067 2070 2468 2470 + f 4 4227 4228 -3479 4229 + mu 0 4 2471 2472 2069 2068 + f 4 4230 -4230 -3477 -4227 + mu 0 4 2470 2471 2068 2067 + f 4 4231 -4223 -3467 4232 + mu 0 4 2473 2469 2063 2062 + f 4 -3471 4233 4234 -4233 + mu 0 4 2062 2064 2474 2473 + f 4 -3473 4235 4236 4237 + mu 0 4 2066 2065 2475 2474 + f 3 -3475 -4238 -4234 + mu 0 3 2064 2066 2474 + f 4 -4210 -4211 4238 -4236 + mu 0 4 2065 2461 2459 2475 + f 4 -4218 4239 -4232 4240 + mu 0 4 2466 2465 2469 2473 + f 4 -4235 4241 4242 -4241 + mu 0 4 2473 2474 2476 2466 + f 4 -3514 -4219 -4243 4243 + mu 0 4 2094 2092 2466 2476 + f 4 -3517 -4244 4244 4245 + mu 0 4 2096 2094 2476 2477 + f 4 -4245 -4242 -4237 4246 + mu 0 4 2477 2476 2474 2475 + f 4 4247 -4194 -3520 -4246 + mu 0 4 2477 2455 2098 2096 + f 4 -4239 -4203 -4248 -4247 + mu 0 4 2475 2459 2455 2477 + f 4 -4213 4248 -4228 4249 + mu 0 4 2463 2462 2472 2471 + f 4 -4215 -4250 -4231 4250 + mu 0 4 2464 2463 2471 2470 + f 4 -4221 4251 4252 4253 + mu 0 4 2468 2467 2478 2479 + f 4 -4224 -4240 4254 -4252 + mu 0 4 2467 2469 2465 2478 + f 4 -4253 4255 -3489 4256 + mu 0 4 2479 2478 2076 2074 + f 4 -4255 -4217 -3492 -4256 + mu 0 4 2478 2465 2078 2076 + f 4 -3486 -4216 4257 -4257 + mu 0 4 2074 2073 2464 2479 + f 4 -4258 -4251 -4226 -4254 + mu 0 4 2479 2464 2470 2468 + f 4 4258 4259 -2837 4260 + mu 0 4 2480 2481 1691 1633 + f 4 4261 4262 -2736 -3400 + mu 0 4 2028 2482 1628 1625 + f 4 -2743 -4263 4263 -4261 + mu 0 4 1633 1628 2482 2480 + f 4 -4151 4264 4265 -4171 + mu 0 4 2435 2436 2483 2445 + f 4 -4153 4266 4267 -4265 + mu 0 4 2436 2437 2484 2483 + f 4 -4155 4268 4269 -4267 + mu 0 4 2437 2438 2485 2484 + f 4 -4156 4270 4271 4272 + mu 0 4 2439 1728 2486 2487 + f 4 -4158 -4273 4273 4274 + mu 0 4 2440 2439 2487 2488 + f 4 -4160 -4275 4275 4276 + mu 0 4 2441 2440 2488 2489 + f 3 -4162 -4277 4277 + mu 0 3 2442 2441 2489 + f 4 -4164 -4278 4278 -4269 + mu 0 4 2438 2442 2489 2485 + f 4 -2874 -4260 4279 4280 + mu 0 4 1714 1691 2481 2490 + f 4 4281 4282 -2887 -4281 + mu 0 4 2490 2491 1721 1714 + f 4 -2900 -4283 4283 -4271 + mu 0 4 1728 1721 2491 2486 + f 4 -4259 4284 4285 4286 + mu 0 4 2481 2480 2492 2493 + f 4 -4262 -3403 4287 4288 + mu 0 4 2482 2028 2030 2494 + f 4 -4264 -4289 4289 -4285 + mu 0 4 2480 2482 2494 2492 + f 4 -4272 4290 4291 4292 + mu 0 4 2487 2486 2495 2496 + f 4 -4274 -4293 4293 4294 + mu 0 4 2488 2487 2496 2497 + f 4 -4276 -4295 4295 4296 + mu 0 4 2489 2488 2497 2407 + f 3 -4280 -4287 4297 + mu 0 3 2490 2481 2493 + f 4 -4282 -4298 4298 4299 + mu 0 4 2491 2490 2493 2498 + f 4 -4284 -4300 4300 -4291 + mu 0 4 2486 2491 2498 2495 + f 4 -3480 4301 4302 -4288 + mu 0 4 2030 2069 2499 2494 + f 4 -4212 -3505 4303 4304 + mu 0 4 2462 2086 2082 2500 + f 4 -4229 4305 4306 -4302 + mu 0 4 2069 2472 2500 2499 + f 3 -4249 -4305 -4306 + mu 0 3 2472 2462 2500 + f 4 -4296 4307 -4108 -4088 + mu 0 4 2407 2497 2417 2408 + f 4 -4308 4308 4309 -4111 + mu 0 4 2417 2497 2501 2414 + f 4 -4294 4310 4311 -4309 + mu 0 4 2497 2496 2502 2501 + f 4 4312 -4311 -4292 -4301 + mu 0 4 2498 2502 2496 2495 + f 4 4313 -4304 -3496 4314 + mu 0 4 2503 2500 2082 2081 + f 4 4315 -4307 -4314 4316 + mu 0 4 2504 2499 2500 2503 + f 4 -4316 4317 -4290 -4303 + mu 0 4 2499 2504 2492 2494 + f 4 -4286 -4318 4318 4319 + mu 0 4 2493 2492 2504 2505 + f 4 4320 -4313 -4299 -4320 + mu 0 4 2505 2502 2498 2493 + f 4 -4319 -4317 4321 4322 + mu 0 4 2505 2504 2503 2506 + f 4 4323 -4312 -4321 -4323 + mu 0 4 2506 2501 2502 2505 + f 4 4324 -4322 -4315 -4102 + mu 0 4 2414 2506 2503 2081 + f 3 -4324 -4325 -4310 + mu 0 3 2501 2506 2414 + f 4 -4297 -4087 4325 4326 + mu 0 4 2489 2407 2401 2507 + f 4 4327 -4279 -4327 4328 + mu 0 4 2508 2485 2489 2507 + f 4 4329 4330 -4063 -1557 + mu 0 4 2509 2510 2391 2390 + f 4 -4135 4331 4332 4333 + mu 0 4 2429 2428 2511 2512 + f 4 4334 -4332 -4173 -4266 + mu 0 4 2483 2511 2428 2445 + f 4 -4335 -4268 4335 4336 + mu 0 4 2511 2483 2484 2513 + f 4 4337 4338 -4333 -4337 + mu 0 4 2513 2510 2512 2511 + f 4 -4175 4339 4340 4341 + mu 0 4 2447 2446 2514 2515 + f 4 -4177 -4334 4342 -4340 + mu 0 4 2448 2429 2512 2516 + f 4 -4341 4343 -1556 4344 + mu 0 4 2515 2514 889 888 + f 4 -4343 -4339 -4330 -4344 + mu 0 4 2516 2512 2510 2509 + f 4 -4331 4345 -4326 -4075 + mu 0 4 2391 2510 2507 2401 + f 4 -4328 4346 -4336 -4270 + mu 0 4 2485 2508 2513 2484 + f 4 -4338 -4347 -4329 -4346 + mu 0 4 2510 2513 2508 2507 + f 4 -3899 4347 4348 4349 + mu 0 4 2294 2287 2517 2518 + f 4 -3935 -4350 4350 4351 + mu 0 4 2306 2294 2518 2519 + f 4 -3938 -4352 4352 -1559 + mu 0 4 891 2306 2519 888 + f 4 -3902 4353 4354 -4348 + mu 0 4 2287 2296 2520 2517 + f 4 -4349 -4355 4355 4356 + mu 0 4 2518 2517 2520 2521 + f 4 -4351 -4357 4357 4358 + mu 0 4 2519 2518 2521 2522 + f 4 -4353 -4359 4359 -4345 + mu 0 4 888 2519 2522 2515 + f 4 -4354 -3904 4360 4361 + mu 0 4 2520 2296 2154 2523 + f 4 -4356 -4362 4362 4363 + mu 0 4 2521 2520 2523 2524 + f 4 -4358 -4364 4364 4365 + mu 0 4 2522 2521 2524 2525 + f 4 -4360 -4366 4366 -4342 + mu 0 4 2515 2522 2525 2447 + f 4 -4176 4367 4368 -4035 + mu 0 4 2372 2447 2526 2370 + f 4 -4368 -4367 4369 4370 + mu 0 4 2526 2447 2525 2527 + f 4 4371 4372 -4033 -4369 + mu 0 4 2526 2528 2368 2370 + f 4 -4025 4373 4374 4375 + mu 0 4 2360 2362 2529 2530 + f 4 -4027 4376 4377 -4374 + mu 0 4 2362 2364 2531 2529 + f 4 -4029 4378 4379 -4377 + mu 0 4 2364 2366 2532 2531 + f 4 -4031 -4373 4380 -4379 + mu 0 4 2366 2368 2528 2532 + f 4 -4041 -4376 4381 4382 + mu 0 4 2377 2360 2530 2533 + f 4 4383 -3304 -4043 -4383 + mu 0 4 2533 1976 1974 2377 + f 4 4384 4385 -3307 -4384 + mu 0 4 2533 2534 1978 1976 + f 4 4386 -3310 -4386 4387 + mu 0 4 2535 1980 1978 2534 + f 4 4388 -3312 -4387 4389 + mu 0 4 2536 1960 1980 2535 + f 4 4390 -3628 -3261 4391 + mu 0 4 2537 2152 1943 1945 + f 4 4392 -4392 -3269 4393 + mu 0 4 2538 2537 1945 1950 + f 4 -3266 4394 4395 -4394 + mu 0 4 1950 1949 2539 2538 + f 4 -3270 4396 4397 -4395 + mu 0 4 1949 1951 2540 2539 + f 4 -3273 4398 4399 -4397 + mu 0 4 1951 1953 2541 2540 + f 4 -3278 4400 4401 -4399 + mu 0 4 1953 1956 2542 2541 + f 4 -3284 -4389 4402 -4401 + mu 0 4 1956 1960 2536 2542 + f 4 -4382 4403 4404 -4385 + mu 0 4 2533 2530 2543 2534 + f 4 -4388 -4405 4405 4406 + mu 0 4 2535 2534 2543 2544 + f 4 -4390 -4407 4407 4408 + mu 0 4 2536 2535 2544 2545 + f 4 -4391 4409 4410 4411 + mu 0 4 2152 2537 2546 2547 + f 4 -4393 4412 4413 -4410 + mu 0 4 2537 2538 2548 2546 + f 4 -4396 4414 4415 -4413 + mu 0 4 2538 2539 2549 2548 + f 3 -4398 4416 -4415 + mu 0 3 2539 2540 2549 + f 4 -4400 4417 4418 -4417 + mu 0 4 2540 2541 2550 2549 + f 4 -4402 4419 4420 -4418 + mu 0 4 2541 2542 2551 2550 + f 4 -4403 -4409 4421 -4420 + mu 0 4 2542 2536 2545 2551 + f 4 -4361 -3633 -4412 4422 + mu 0 4 2523 2154 2152 2547 + f 4 -4363 -4423 4423 4424 + mu 0 4 2524 2523 2547 2552 + f 4 -4365 -4425 4425 -4370 + mu 0 4 2525 2524 2552 2527; + setAttr ".fc[2000:2499]" + f 4 -4372 -4371 4426 4427 + mu 0 4 2528 2526 2527 2553 + f 4 4428 -4427 -4426 4429 + mu 0 4 2554 2553 2527 2552 + f 4 4430 4431 -4381 -4428 + mu 0 4 2553 2555 2532 2528 + f 4 4432 -4431 -4429 4433 + mu 0 4 2556 2555 2553 2554 + f 4 4434 -4404 -4375 4435 + mu 0 4 2557 2543 2530 2529 + f 4 4436 4437 -4406 -4435 + mu 0 4 2557 2558 2544 2543 + f 4 -4437 -4436 -4378 4438 + mu 0 4 2558 2557 2529 2531 + f 4 4439 -4408 -4438 4440 + mu 0 4 2559 2545 2544 2558 + f 4 4441 4442 -4441 -4439 + mu 0 4 2531 2560 2559 2558 + f 4 -4380 -4432 4443 -4442 + mu 0 4 2531 2532 2555 2560 + f 3 4444 -4444 -4433 + mu 0 3 2556 2560 2555 + f 4 4445 -4443 -4445 4446 + mu 0 4 2561 2559 2560 2556 + f 4 -4446 4447 -4422 -4440 + mu 0 4 2559 2561 2551 2545 + f 4 -4411 4448 4449 -4424 + mu 0 4 2547 2546 2562 2552 + f 4 4450 4451 -4430 -4450 + mu 0 4 2562 2563 2554 2552 + f 4 4452 -4421 -4448 4453 + mu 0 4 2564 2550 2551 2561 + f 4 -4419 -4453 4454 4455 + mu 0 4 2549 2550 2564 2565 + f 4 4456 4457 -4416 -4456 + mu 0 4 2565 2566 2548 2549 + f 4 -4458 4458 -4449 -4414 + mu 0 4 2548 2566 2562 2546 + f 4 -4459 -4457 4459 -4451 + mu 0 4 2562 2566 2565 2563 + f 4 4460 -4454 -4447 4461 + mu 0 4 2567 2564 2561 2556 + f 4 4462 -4462 -4434 -4452 + mu 0 4 2563 2567 2556 2554 + f 4 -4461 -4463 -4460 -4455 + mu 0 4 2564 2567 2563 2565 + f 4 4463 4464 -1653 -3642 + mu 0 4 2158 2568 957 956 + f 4 4465 4466 -1660 4467 + mu 0 4 2569 2570 962 960 + f 4 -1662 -4467 4468 4469 + mu 0 4 963 962 2570 2571 + f 4 4470 -4468 -1657 -4465 + mu 0 4 2568 2569 960 957 + f 4 -3638 4471 4472 4473 + mu 0 4 2156 2140 2572 2573 + f 4 4474 4475 -3636 -4474 + mu 0 4 2573 2574 2155 2156 + f 4 -3635 -4476 4476 -3639 + mu 0 4 562 2155 2574 2157 + f 4 -3641 -4477 4477 4478 + mu 0 4 2158 2157 2574 2575 + f 4 4479 4480 -4464 -4479 + mu 0 4 2575 2576 2568 2158 + f 4 -4471 -4481 4481 4482 + mu 0 4 2569 2568 2576 2577 + f 4 -4466 -4483 4483 4484 + mu 0 4 2570 2569 2577 2578 + f 4 -4469 -4485 4485 4486 + mu 0 4 2571 2570 2578 2579 + f 4 -1665 -4470 4487 4488 + mu 0 4 965 963 2571 2580 + f 4 -4488 -4487 4489 4490 + mu 0 4 2580 2571 2579 2581 + f 4 4491 4492 4493 -4491 + mu 0 4 2581 2582 2583 2580 + f 4 -4494 4494 -1669 -4489 + mu 0 4 2580 2583 968 965 + f 4 -3563 -1690 4495 4496 + mu 0 4 2128 982 980 2584 + f 4 -4496 -1687 4497 4498 + mu 0 4 2584 980 978 2585 + f 4 -4498 -1684 4499 4500 + mu 0 4 2585 978 976 2586 + f 4 -4500 -1681 4501 4502 + mu 0 4 2586 976 974 2587 + f 4 -4502 -1678 4503 4504 + mu 0 4 2587 974 971 2588 + f 4 -4504 -1674 4505 4506 + mu 0 4 2588 971 970 2589 + f 4 4507 -4506 -1672 -4495 + mu 0 4 2583 2589 970 968 + f 4 -4493 4508 4509 -4508 + mu 0 4 2583 2582 2590 2589 + f 4 4510 -4507 -4510 4511 + mu 0 4 2591 2588 2589 2590 + f 4 4512 -4505 -4511 4513 + mu 0 4 2592 2587 2588 2591 + f 4 -4513 4514 4515 -4503 + mu 0 4 2587 2592 2593 2586 + f 4 4516 -4501 -4516 4517 + mu 0 4 2594 2585 2586 2593 + f 4 4518 -4499 -4517 4519 + mu 0 4 2595 2584 2585 2594 + f 4 4520 -3568 -4497 -4519 + mu 0 4 2595 2131 2128 2584 + f 4 -3724 4521 4522 4523 + mu 0 4 914 2209 2596 2597 + f 4 4524 4525 -3821 -4524 + mu 0 4 2597 2598 2259 914 + f 4 -3668 4526 4527 -3664 + mu 0 4 2165 2179 2599 2177 + f 4 -4528 4528 -4522 -3712 + mu 0 4 2177 2599 2596 2209 + f 4 -3610 4529 4530 -4472 + mu 0 4 2140 2144 2600 2572 + f 4 4531 -4530 -3780 4532 + mu 0 4 2601 2600 2144 2239 + f 4 4533 -4533 -3933 4534 + mu 0 4 2602 2601 2239 2258 + f 4 4535 -4535 -3815 -4526 + mu 0 4 2598 2602 2258 2259 + f 4 4536 4537 -3662 4538 + mu 0 4 2603 2604 2176 2175 + f 4 -3669 -4538 4539 -4527 + mu 0 4 2179 2176 2604 2599 + f 4 -4529 -4540 4540 4541 + mu 0 4 2596 2599 2604 2605 + f 4 4542 -4541 -4537 4543 + mu 0 4 2606 2605 2604 2603 + f 4 -4523 4544 4545 4546 + mu 0 4 2597 2596 2607 2608 + f 4 -4547 4547 -4536 -4525 + mu 0 4 2597 2608 2602 2598 + f 4 4548 4549 -4534 -4548 + mu 0 4 2608 2609 2601 2602 + f 4 -4549 -4546 4550 4551 + mu 0 4 2609 2608 2607 2610 + f 4 -4542 4552 4553 -4545 + mu 0 4 2596 2605 2611 2607 + f 4 4554 4555 -4551 -4554 + mu 0 4 2611 2612 2610 2607 + f 4 -4555 -4553 -4543 4556 + mu 0 4 2612 2611 2605 2606 + f 4 -3660 4557 4558 4559 + mu 0 4 2175 2125 2613 2614 + f 4 4560 -4558 -3559 -3567 + mu 0 4 2130 2613 2125 2124 + f 4 -4560 4561 4562 -4539 + mu 0 4 2175 2614 2615 2603 + f 4 -4532 4563 4564 4565 + mu 0 4 2600 2601 2616 2617 + f 4 -4566 4566 -4473 -4531 + mu 0 4 2600 2617 2573 2572 + f 4 -4564 -4550 4567 4568 + mu 0 4 2616 2601 2609 2618 + f 4 -4521 4569 4570 4571 + mu 0 4 2131 2595 2619 2620 + f 4 -4482 4572 4573 4574 + mu 0 4 2577 2576 2621 2622 + f 4 -4484 -4575 4575 4576 + mu 0 4 2578 2577 2622 2623 + f 4 -4486 -4577 4577 4578 + mu 0 4 2579 2578 2623 2624 + f 3 -4490 -4579 4579 + mu 0 3 2581 2579 2624 + f 4 -4492 -4580 4580 4581 + mu 0 4 2582 2581 2624 2625 + f 3 -4509 -4582 4582 + mu 0 3 2590 2582 2625 + f 4 -4512 -4583 4583 4584 + mu 0 4 2591 2590 2625 2626 + f 4 -4514 -4585 4585 4586 + mu 0 4 2592 2591 2626 2627 + f 4 -4515 -4587 4587 4588 + mu 0 4 2593 2592 2627 2628 + f 3 -4518 -4589 4589 + mu 0 3 2594 2593 2628 + f 4 -4520 -4590 4590 -4570 + mu 0 4 2595 2594 2628 2619 + f 4 -4475 4591 4592 -4478 + mu 0 4 2574 2573 2629 2575 + f 4 -4573 -4480 -4593 4593 + mu 0 4 2621 2576 2575 2629 + f 4 4594 -4592 -4567 4595 + mu 0 4 2630 2629 2573 2617 + f 4 -4595 4596 4597 -4594 + mu 0 4 2629 2630 2631 2621 + f 4 4598 -4596 -4565 4599 + mu 0 4 2632 2630 2617 2616 + f 4 4600 -4600 -4569 4601 + mu 0 4 2633 2632 2616 2618 + f 4 4602 4603 -4601 4604 + mu 0 4 2634 2635 2632 2633 + f 4 4605 -4597 -4599 -4604 + mu 0 4 2635 2631 2630 2632 + f 4 4606 -4568 -4552 4607 + mu 0 4 2636 2618 2609 2610 + f 4 -4607 4608 4609 -4602 + mu 0 4 2618 2636 2637 2633 + f 4 4610 -4609 -4608 -4556 + mu 0 4 2612 2637 2636 2610 + f 4 4611 -4605 -4610 4612 + mu 0 4 2638 2634 2633 2637 + f 4 4613 -4613 -4611 -4557 + mu 0 4 2606 2638 2637 2612 + f 4 -4574 -4598 4614 4615 + mu 0 4 2622 2621 2631 2639 + f 4 4616 -4615 -4606 4617 + mu 0 4 2640 2639 2631 2635 + f 4 -4603 4618 4619 -4618 + mu 0 4 2635 2634 2641 2640 + f 4 4620 -4619 -4612 4621 + mu 0 4 2642 2641 2634 2638 + f 4 4622 -4622 -4614 4623 + mu 0 4 2643 2642 2638 2606 + f 4 -4572 4624 -3566 -3569 + mu 0 4 2131 2620 2130 2129 + f 4 -4563 4625 -4624 -4544 + mu 0 4 2603 2615 2643 2606 + f 4 4626 -4562 -4559 4627 + mu 0 4 2644 2615 2614 2613 + f 4 -4561 -4625 4628 -4628 + mu 0 4 2613 2130 2620 2644 + f 4 -4627 4629 4630 -4626 + mu 0 4 2615 2644 2645 2643 + f 4 4631 -4630 -4629 -4571 + mu 0 4 2619 2645 2644 2620 + f 4 4632 -4623 -4631 4633 + mu 0 4 2646 2642 2643 2645 + f 4 -4632 -4591 4634 -4634 + mu 0 4 2645 2619 2628 2646 + f 4 4635 -4621 -4633 4636 + mu 0 4 2647 2641 2642 2646 + f 4 -4635 -4588 4637 -4637 + mu 0 4 2646 2628 2627 2647 + f 4 -4636 4638 4639 4640 + mu 0 4 2641 2647 2648 2649 + f 4 4641 -4620 -4641 4642 + mu 0 4 2650 2640 2641 2649 + f 4 4643 -4639 -4638 -4586 + mu 0 4 2626 2648 2647 2627 + f 4 4644 -4617 -4642 4645 + mu 0 4 2651 2639 2640 2650 + f 4 -4645 4646 -4576 -4616 + mu 0 4 2639 2651 2623 2622 + f 4 -4644 -4584 -4581 4647 + mu 0 4 2648 2626 2625 2624 + f 4 -4640 -4648 4648 -4643 + mu 0 4 2649 2648 2624 2650 + f 4 -4646 -4649 -4578 -4647 + mu 0 4 2651 2650 2624 2623 + f 4 4649 4650 4651 4652 + mu 0 4 2652 2653 2654 2655 + f 4 4653 4654 4655 -4651 + mu 0 4 2653 2656 2657 2654 + f 4 4656 4657 4658 -4655 + mu 0 4 2656 2658 2659 2657 + f 4 4659 4660 4661 -4658 + mu 0 4 2658 2660 2661 2659 + f 4 4662 4663 4664 -4661 + mu 0 4 2662 2663 2664 2665 + f 4 4665 4666 4667 -4664 + mu 0 4 2663 2666 2667 2664 + f 4 4668 4669 4670 -4667 + mu 0 4 2666 2668 2669 2667 + f 4 4671 4672 4673 -4670 + mu 0 4 2668 2670 2671 2669 + f 4 4674 4675 4676 -4673 + mu 0 4 2670 2672 2673 2671 + f 4 4677 4678 4679 -4676 + mu 0 4 2672 2674 2675 2673 + f 4 4680 4681 4682 -4679 + mu 0 4 2674 2676 2677 2675 + f 4 4683 4684 4685 -4682 + mu 0 4 2676 2678 2679 2677 + f 4 4686 4687 4688 -4685 + mu 0 4 2678 2680 2681 2679 + f 4 4689 4690 4691 -4688 + mu 0 4 2680 2682 2683 2681 + f 4 4692 4693 4694 -4691 + mu 0 4 2682 2684 2685 2683 + f 4 4695 4696 4697 -4694 + mu 0 4 2684 2686 2687 2685 + f 4 4698 4699 4700 -4697 + mu 0 4 2686 2688 2689 2687 + f 4 4701 -4653 4702 -4700 + mu 0 4 2688 2652 2655 2689 + f 4 4703 4704 4705 4706 + mu 0 4 2690 2691 2692 2693 + f 4 4707 4708 4709 -4705 + mu 0 4 2691 2694 2695 2692 + f 4 4710 4711 4712 -4709 + mu 0 4 2694 2696 2697 2695 + f 4 4713 4714 4715 -4712 + mu 0 4 2698 2699 2700 2701 + f 4 4716 4717 4718 -4715 + mu 0 4 2699 2702 2703 2700 + f 4 4719 4720 4721 -4718 + mu 0 4 2702 2704 2705 2703 + f 4 4722 4723 4724 -4721 + mu 0 4 2704 2706 2707 2705 + f 4 4725 4726 4727 -4724 + mu 0 4 2706 2708 2709 2707 + f 4 4728 4729 4730 -4727 + mu 0 4 2708 2710 2711 2709 + f 4 4731 4732 4733 -4730 + mu 0 4 2710 2712 2713 2711 + f 4 4734 4735 4736 -4733 + mu 0 4 2712 2714 2715 2713 + f 4 4737 4738 4739 -4736 + mu 0 4 2714 2716 2717 2715 + f 4 4740 4741 4742 -4739 + mu 0 4 2716 2718 2719 2717 + f 4 4743 4744 4745 -4742 + mu 0 4 2718 2720 2721 2719 + f 4 4746 4747 4748 -4745 + mu 0 4 2720 2722 2723 2721 + f 4 4749 4750 4751 -4748 + mu 0 4 2722 2724 2725 2723 + f 4 4752 4753 4754 -4751 + mu 0 4 2724 2726 2727 2725 + f 4 4755 -4707 4756 -4754 + mu 0 4 2726 2690 2693 2727 + f 4 4757 4758 4759 4760 + mu 0 4 2728 2729 2730 2731 + f 4 4761 4762 4763 -4759 + mu 0 4 2729 2732 2733 2730 + f 4 4764 4765 4766 -4763 + mu 0 4 2732 2734 2735 2733 + f 4 4767 4768 4769 -4766 + mu 0 4 2736 2737 2738 2739 + f 4 4770 4771 4772 -4769 + mu 0 4 2737 2740 2741 2738 + f 4 4773 4774 4775 -4772 + mu 0 4 2740 2742 2743 2741 + f 4 4776 4777 4778 -4775 + mu 0 4 2742 2744 2745 2743 + f 4 4779 4780 4781 -4778 + mu 0 4 2744 2746 2747 2745 + f 4 4782 4783 4784 -4781 + mu 0 4 2746 2748 2749 2747 + f 4 4785 4786 4787 -4784 + mu 0 4 2748 2750 2751 2749 + f 4 4788 4789 4790 -4787 + mu 0 4 2750 2752 2753 2751 + f 4 4791 4792 4793 -4790 + mu 0 4 2752 2754 2755 2753 + f 4 4794 4795 4796 -4793 + mu 0 4 2754 2756 2757 2755 + f 4 4797 4798 4799 -4796 + mu 0 4 2756 2758 2759 2757 + f 4 4800 4801 4802 -4799 + mu 0 4 2758 2760 2761 2759 + f 4 4803 4804 4805 -4802 + mu 0 4 2760 2762 2763 2761 + f 4 4806 4807 4808 -4805 + mu 0 4 2762 2764 2765 2763 + f 4 4809 -4761 4810 -4808 + mu 0 4 2764 2728 2731 2765 + f 4 4811 4812 4813 4814 + mu 0 4 2766 2767 2768 2769 + f 4 4815 4816 4817 -4813 + mu 0 4 2767 2770 2771 2768 + f 4 4818 4819 4820 -4817 + mu 0 4 2770 2772 2773 2771 + f 4 4821 4822 4823 -4820 + mu 0 4 2772 2774 2775 2773 + f 4 4824 4825 4826 -4823 + mu 0 4 2776 2777 2778 2779 + f 4 4827 4828 4829 -4826 + mu 0 4 2777 2780 2781 2778 + f 4 4830 4831 4832 -4829 + mu 0 4 2780 2782 2783 2781 + f 4 4833 4834 4835 -4832 + mu 0 4 2782 2784 2785 2783 + f 4 4836 4837 4838 -4835 + mu 0 4 2784 2786 2787 2785 + f 4 4839 4840 4841 -4838 + mu 0 4 2786 2788 2789 2787 + f 4 4842 4843 4844 -4841 + mu 0 4 2788 2790 2791 2789 + f 4 4845 4846 4847 -4844 + mu 0 4 2790 2792 2793 2791 + f 4 4848 4849 4850 -4847 + mu 0 4 2792 2794 2795 2793 + f 4 4851 4852 4853 -4850 + mu 0 4 2794 2796 2797 2795 + f 4 4854 4855 4856 -4853 + mu 0 4 2796 2798 2799 2797 + f 4 4857 4858 4859 -4856 + mu 0 4 2798 2800 2801 2799 + f 4 4860 4861 4862 -4859 + mu 0 4 2800 2802 2803 2801 + f 4 4863 -4815 4864 -4862 + mu 0 4 2802 2766 2769 2803 + f 4 -4677 4865 4866 4867 + mu 0 4 2671 2673 2804 2805 + f 4 -4755 4868 4869 4870 + mu 0 4 2725 2727 2806 2807 + f 4 4871 4872 4873 4874 + mu 0 4 2808 2809 2810 2811 + f 4 -4873 4875 4876 4877 + mu 0 4 2810 2809 2812 2813 + f 4 4878 4879 4880 4881 + mu 0 4 2814 2815 2816 2817 + f 4 4882 4883 4884 4885 + mu 0 4 2818 2819 2820 2821 + f 4 4886 4887 4888 4889 + mu 0 4 2822 2823 2824 2825 + f 4 -4875 4890 4891 4892 + mu 0 4 2826 2827 2828 2829 + f 4 4893 4894 4895 4896 + mu 0 4 2830 2831 2832 2833 + f 4 4897 4898 4899 4900 + mu 0 4 2834 2835 2836 2837 + f 4 4901 4902 4903 4904 + mu 0 4 2838 2839 2840 2841 + f 4 4905 4906 4907 4908 + mu 0 4 2842 2843 2844 2845 + f 4 4909 4910 4911 4912 + mu 0 4 2846 2847 2848 2849 + f 4 -4912 4913 4914 4915 + mu 0 4 2849 2848 2850 2851 + f 4 -4903 4916 4917 4918 + mu 0 4 2852 2853 2854 2855 + f 4 4919 4920 4921 4922 + mu 0 4 2856 2857 2858 2859 + f 4 -4915 4923 4924 4925 + mu 0 4 2851 2850 2860 2861 + f 4 4926 4927 4928 4929 + mu 0 4 2862 2863 2864 2865 + f 4 4930 -4877 4931 -4879 + mu 0 4 2814 2813 2812 2815 + f 4 4932 -4866 -4680 4933 + mu 0 4 2866 2804 2673 2675 + f 4 -4892 4934 4935 4936 + mu 0 4 2829 2828 2867 2868 + f 4 4937 4938 -4674 -4868 + mu 0 4 2805 2869 2669 2671 + f 4 -4936 4939 4940 4941 + mu 0 4 2868 2867 2870 2871 + f 4 4942 4943 -4671 -4939 + mu 0 4 2869 2872 2667 2669 + f 4 -4941 4944 -4894 4945 + mu 0 4 2871 2870 2831 2830 + f 4 -4944 4946 4947 -4668 + mu 0 4 2667 2872 2873 2664 + f 4 -4948 4948 4949 -4665 + mu 0 4 2664 2873 2874 2665 + f 4 4950 -4896 4951 4952 + mu 0 4 2875 2833 2832 2876 + f 4 4953 4954 -4662 -4950 + mu 0 4 2877 2878 2659 2661 + f 4 -4689 4955 4956 4957 + mu 0 4 2679 2681 2879 2880 + f 4 -4881 4958 -4883 4959 + mu 0 4 2817 2816 2819 2818 + f 4 -4958 4960 4961 -4686 + mu 0 4 2679 2880 2881 2677 + f 4 -4683 -4962 4962 -4934 + mu 0 4 2675 2677 2881 2866 + f 4 -4885 4963 -4887 4964 + mu 0 4 2821 2820 2823 2822 + f 4 4965 4966 -4956 -4692 + mu 0 4 2683 2882 2879 2681 + f 4 4967 -4966 -4695 4968 + mu 0 4 2883 2882 2683 2685 + f 4 -4889 4969 4970 4971 + mu 0 4 2825 2824 2884 2885 + f 4 4972 -4969 -4698 4973 + mu 0 4 2886 2883 2685 2687 + f 4 -4971 4974 -4901 4975 + mu 0 4 2887 2888 2834 2837 + f 4 4976 4977 -4974 -4701 + mu 0 4 2689 2889 2886 2687 + f 4 4978 -4977 -4703 4979 + mu 0 4 2890 2889 2689 2655 + f 4 -4899 4980 -4953 4981 + mu 0 4 2836 2835 2875 2876 + f 4 4982 -4980 -4652 4983 + mu 0 4 2891 2890 2655 2654 + f 4 4984 4985 -4984 -4656 + mu 0 4 2657 2892 2891 2654 + f 4 -4955 4986 -4985 -4659 + mu 0 4 2659 2878 2892 2657 + f 4 4987 -4938 4988 -4893 + mu 0 4 2829 2893 2894 2826 + f 4 4989 -4943 -4988 -4937 + mu 0 4 2868 2895 2893 2829 + f 4 -4947 -4990 -4942 4990 + mu 0 4 2896 2895 2868 2871 + f 4 -4949 -4991 -4946 4991 + mu 0 4 2897 2896 2871 2830 + f 4 4992 -4954 -4992 -4897 + mu 0 4 2833 2898 2897 2830 + f 4 -4987 -4993 -4951 4993 + mu 0 4 2899 2898 2833 2875 + f 4 -4986 -4994 -4981 4994 + mu 0 4 2900 2899 2875 2835 + f 4 4995 -4983 -4995 -4898 + mu 0 4 2834 2901 2900 2835 + f 4 4996 -4979 -4996 -4975 + mu 0 4 2888 2902 2901 2834 + f 4 -4978 -4997 -4970 4997 + mu 0 4 2903 2904 2884 2824 + f 4 4998 -4973 -4998 -4888 + mu 0 4 2823 2905 2903 2824 + f 4 4999 -4968 -4999 -4964 + mu 0 4 2820 2906 2905 2823 + f 4 -4967 -5000 -4884 5000 + mu 0 4 2907 2906 2820 2819 + f 4 -4957 -5001 -4959 5001 + mu 0 4 2908 2907 2819 2816 + f 4 -4961 -5002 -4880 5002 + mu 0 4 2909 2908 2816 2815 + f 4 -4963 -5003 -4932 5003 + mu 0 4 2910 2909 2815 2812 + f 4 5004 -4933 -5004 -4876 + mu 0 4 2809 2911 2910 2812 + f 4 -4867 -5005 -4872 -4989 + mu 0 4 2912 2911 2809 2808 + f 4 -4905 5005 -4906 5006 + mu 0 4 2838 2841 2843 2842 + f 4 5007 5008 -4752 -4871 + mu 0 4 2807 2913 2723 2725 + f 4 -5009 5009 5010 -4749 + mu 0 4 2723 2913 2914 2721 + f 4 -4908 5011 -4910 5012 + mu 0 4 2845 2844 2847 2846 + f 4 -5011 5013 5014 -4746 + mu 0 4 2721 2914 2915 2719 + f 4 -5015 5015 5016 -4743 + mu 0 4 2719 2915 2916 2717 + f 4 5017 5018 -4740 -5017 + mu 0 4 2916 2917 2715 2717 + f 4 -5019 5019 5020 -4737 + mu 0 4 2715 2917 2918 2713 + f 4 5021 5022 -4925 5023 + mu 0 4 2919 2920 2861 2860 + f 4 -5021 5024 5025 -4734 + mu 0 4 2713 2918 2921 2711 + f 4 -4918 5026 5027 5028 + mu 0 4 2855 2854 2922 2923 + f 4 5029 5030 -4869 -4757 + mu 0 4 2693 2924 2806 2727 + f 4 -5028 5031 5032 5033 + mu 0 4 2923 2922 2925 2926 + f 4 5034 5035 -5030 -4706 + mu 0 4 2692 2927 2924 2693 + f 4 -5033 5036 -4920 5037 + mu 0 4 2926 2925 2857 2856 + f 4 5038 -5035 -4710 5039 + mu 0 4 2928 2927 2692 2695 + f 4 5040 -5040 -4713 5041 + mu 0 4 2929 2928 2695 2697 + f 4 -4929 5042 -5022 5043 + mu 0 4 2930 2931 2920 2919 + f 4 5044 5045 -4731 -5026 + mu 0 4 2921 2932 2709 2711 + f 4 -5046 5046 5047 -4728 + mu 0 4 2709 2932 2933 2707 + f 4 5048 5049 -4927 5050 + mu 0 4 2934 2935 2863 2862 + f 4 5051 5052 -5049 5053 + mu 0 4 2936 2937 2935 2934 + f 4 5054 5055 -4725 -5048 + mu 0 4 2933 2938 2705 2707 + f 4 5056 5057 -4722 -5056 + mu 0 4 2938 2939 2703 2705 + f 4 5058 -5042 -4716 5059 + mu 0 4 2940 2941 2701 2700 + f 4 5060 -5060 -4719 -5058 + mu 0 4 2939 2940 2700 2703 + f 4 5061 -5052 5062 -4922 + mu 0 4 2858 2937 2936 2859 + f 4 5063 -5008 5064 -5007 + mu 0 4 2842 2942 2943 2838 + f 4 -5010 -5064 -4909 5065 + mu 0 4 2944 2942 2842 2845 + f 4 -5014 -5066 -5013 5066 + mu 0 4 2945 2944 2845 2846 + f 4 -5016 -5067 -4913 5067 + mu 0 4 2946 2945 2846 2849 + f 4 5068 -5018 -5068 -4916 + mu 0 4 2851 2947 2946 2849 + f 4 -5020 -5069 -4926 5069 + mu 0 4 2948 2947 2851 2861 + f 4 -5025 -5070 -5023 5070 + mu 0 4 2949 2948 2861 2920 + f 4 5071 -5045 -5071 -5043 + mu 0 4 2931 2950 2949 2920 + f 4 -5047 -5072 -4928 5072 + mu 0 4 2951 2952 2864 2863 + f 4 5073 -5055 -5073 -5050 + mu 0 4 2935 2953 2951 2863 + f 4 5074 -5057 -5074 -5053 + mu 0 4 2937 2954 2953 2935 + f 4 5075 -5061 -5075 -5062 + mu 0 4 2858 2955 2954 2937 + f 4 5076 -5059 -5076 -4921 + mu 0 4 2857 2956 2955 2858 + f 4 5077 -5041 -5077 -5037 + mu 0 4 2925 2957 2956 2857 + f 4 5078 -5039 -5078 -5032 + mu 0 4 2922 2958 2957 2925 + f 4 -5036 -5079 -5027 5079 + mu 0 4 2959 2958 2922 2854 + f 4 -5031 -5080 -4917 5080 + mu 0 4 2960 2959 2854 2853 + f 4 -4870 -5081 -4902 -5065 + mu 0 4 2943 2961 2839 2838 + f 4 5081 5082 -4874 5083 + mu 0 4 2962 2963 2811 2810 + f 4 -5082 5084 5085 5086 + mu 0 4 2963 2962 2964 2965 + f 4 -4904 5087 5088 5089 + mu 0 4 2841 2840 2966 2967 + f 4 -5089 5090 -5086 5091 + mu 0 4 2967 2966 2965 2964 + f 4 -5084 -4878 5092 5093 + mu 0 4 2962 2810 2813 2968 + f 4 -5085 -5094 5094 5095 + mu 0 4 2964 2962 2968 2969 + f 4 -5090 5096 5097 -5006 + mu 0 4 2841 2967 2970 2843 + f 4 -5092 -5096 5098 -5097 + mu 0 4 2967 2964 2969 2970 + f 4 -5083 5099 5100 -4891 + mu 0 4 2827 2971 2972 2828 + f 4 -5087 5101 5102 -5100 + mu 0 4 2971 2973 2974 2972 + f 4 -5088 -4919 5103 5104 + mu 0 4 2975 2852 2855 2976 + f 4 -5091 -5105 5105 -5102 + mu 0 4 2973 2975 2976 2974 + f 4 -5101 5106 5107 -4935 + mu 0 4 2828 2972 2977 2867 + f 4 -5103 5108 5109 -5107 + mu 0 4 2972 2974 2978 2977 + f 4 -5104 -5029 5110 5111 + mu 0 4 2976 2855 2923 2979 + f 4 -5106 -5112 5112 -5109 + mu 0 4 2974 2976 2979 2978 + f 4 5113 5114 5115 -4687 + mu 0 4 2678 2980 2981 2680 + f 4 5116 -5114 -4684 5117 + mu 0 4 2982 2980 2678 2676 + f 4 5118 5119 -5118 -4681 + mu 0 4 2674 2983 2982 2676 + f 4 5120 -5119 -4678 5121 + mu 0 4 2984 2983 2674 2672 + f 4 5122 -5122 -4675 5123 + mu 0 4 2985 2984 2672 2670 + f 4 5124 -5124 -4672 5125 + mu 0 4 2986 2985 2670 2668 + f 4 5126 5127 -5126 -4669 + mu 0 4 2666 2987 2986 2668 + f 4 5128 5129 -5127 -4666 + mu 0 4 2663 2988 2987 2666 + f 4 5130 -5129 -4663 5131 + mu 0 4 2989 2988 2663 2662 + f 4 5132 -5132 -4660 5133 + mu 0 4 2990 2991 2660 2658 + f 4 5134 5135 -5134 -4657 + mu 0 4 2656 2992 2990 2658 + f 4 5136 -5135 -4654 5137 + mu 0 4 2993 2992 2656 2653 + f 4 5138 -5138 -4650 5139 + mu 0 4 2994 2993 2653 2652 + f 4 5140 -5140 -4702 5141 + mu 0 4 2995 2994 2652 2688 + f 4 5142 -5142 -4699 5143 + mu 0 4 2996 2995 2688 2686 + f 4 -5116 5144 5145 -4690 + mu 0 4 2680 2981 2997 2682 + f 4 5146 -5144 -4696 5147 + mu 0 4 2998 2996 2686 2684 + f 4 -5146 5148 -5148 -4693 + mu 0 4 2682 2997 2998 2684 + f 4 5149 5150 -4851 5151 + mu 0 4 2999 3000 2793 2795 + f 4 5152 -5152 -4854 5153 + mu 0 4 3001 2999 2795 2797 + f 4 5154 -5154 -4857 5155 + mu 0 4 3002 3001 2797 2799 + f 4 5156 5157 -5156 -4860 + mu 0 4 2801 3003 3002 2799 + f 4 5158 5159 -5157 -4863 + mu 0 4 2803 3004 3003 2801 + f 4 5160 5161 -5159 -4865 + mu 0 4 2769 3005 3004 2803 + f 4 5162 5163 -5161 -4814 + mu 0 4 2768 3006 3005 2769 + f 4 5164 5165 -5163 -4818 + mu 0 4 2771 3007 3006 2768 + f 4 5166 -5165 -4821 5167 + mu 0 4 3008 3007 2771 2773 + f 4 5168 5169 -5168 -4824 + mu 0 4 2775 3009 3008 2773 + f 4 5170 5171 -5169 -4827 + mu 0 4 2778 3010 3011 2779 + f 4 5172 -5171 -4830 5173 + mu 0 4 3012 3010 2778 2781 + f 4 5174 -5174 -4833 5175 + mu 0 4 3013 3012 2781 2783 + f 4 5176 5177 -5176 -4836 + mu 0 4 2785 3014 3013 2783 + f 4 5178 5179 -5177 -4839 + mu 0 4 2787 3015 3014 2785 + f 4 5180 5181 -5179 -4842 + mu 0 4 2789 3016 3015 2787 + f 4 5182 -5181 -4845 5183 + mu 0 4 3017 3016 2789 2791 + f 4 -5151 5184 -5184 -4848 + mu 0 4 2793 3000 3017 2791 + f 4 -5115 5185 -5150 5186 + mu 0 4 2981 2980 3000 2999 + f 4 -5145 -5187 -5153 5187 + mu 0 4 2997 2981 2999 3001 + f 4 -5149 -5188 -5155 5188 + mu 0 4 2998 2997 3001 3002 + f 4 -5158 5189 -5147 -5189 + mu 0 4 3002 3003 2996 2998 + f 4 -5160 5190 -5143 -5190 + mu 0 4 3003 3004 2995 2996 + f 4 -5162 5191 -5141 -5191 + mu 0 4 3004 3005 2994 2995 + f 4 -5164 5192 -5139 -5192 + mu 0 4 3005 3006 2993 2994 + f 4 -5166 5193 -5137 -5193 + mu 0 4 3006 3007 2992 2993 + f 4 -5136 -5194 -5167 5194 + mu 0 4 2990 2992 3007 3008 + f 4 -5170 5195 -5133 -5195 + mu 0 4 3008 3009 2991 2990 + f 4 -5172 5196 -5131 -5196 + mu 0 4 3011 3010 2988 2989 + f 4 -5130 -5197 -5173 5197 + mu 0 4 2987 2988 3010 3012 + f 4 -5128 -5198 -5175 5198 + mu 0 4 2986 2987 3012 3013 + f 4 -5178 5199 -5125 -5199 + mu 0 4 3013 3014 2985 2986 + f 4 -5180 5200 -5123 -5200 + mu 0 4 3014 3015 2984 2985 + f 4 -5182 5201 -5121 -5201 + mu 0 4 3015 3016 2983 2984 + f 4 -5120 -5202 -5183 5202 + mu 0 4 2982 2983 3016 3017 + f 4 -5185 -5186 -5117 -5203 + mu 0 4 3017 3000 2980 2982 + f 4 5203 5204 5205 -4797 + mu 0 4 2757 3018 3019 2755 + f 4 5206 5207 -5204 -4800 + mu 0 4 2759 3020 3018 2757 + f 4 5208 -5207 -4803 5209 + mu 0 4 3021 3020 2759 2761 + f 4 5210 -5210 -4806 5211 + mu 0 4 3022 3021 2761 2763 + f 4 5212 -5212 -4809 5213 + mu 0 4 3023 3022 2763 2765 + f 4 5214 5215 -5214 -4811 + mu 0 4 2731 3024 3023 2765 + f 4 5216 5217 -5215 -4760 + mu 0 4 2730 3025 3024 2731 + f 4 5218 5219 -5217 -4764 + mu 0 4 2733 3026 3025 2730 + f 4 5220 5221 -5219 -4767 + mu 0 4 2735 3027 3026 2733 + f 4 5222 -5221 -4770 5223 + mu 0 4 3028 3029 2739 2738 + f 4 5224 -5224 -4773 5225 + mu 0 4 3030 3028 2738 2741 + f 4 5226 -5226 -4776 5227 + mu 0 4 3031 3030 2741 2743 + f 4 5228 -5228 -4779 5229 + mu 0 4 3032 3031 2743 2745 + f 4 -5206 5230 5231 -4794 + mu 0 4 2755 3019 3033 2753 + f 4 -5232 5232 5233 -4791 + mu 0 4 2753 3033 3034 2751 + f 4 -5234 5234 5235 -4788 + mu 0 4 2751 3034 3035 2749 + f 4 -5236 5236 5237 -4785 + mu 0 4 2749 3035 3036 2747 + f 4 -5238 5238 -5230 -4782 + mu 0 4 2747 3036 3032 2745 + f 4 5239 5240 -4741 5241 + mu 0 4 3037 3038 2718 2716 + f 4 5242 -5242 -4738 5243 + mu 0 4 3039 3037 2716 2714 + f 4 5244 -5244 -4735 5245 + mu 0 4 3040 3039 2714 2712 + f 4 5246 -5246 -4732 5247 + mu 0 4 3041 3040 2712 2710 + f 4 5248 -5248 -4729 5249 + mu 0 4 3042 3041 2710 2708 + f 4 5250 -5250 -4726 5251 + mu 0 4 3043 3042 2708 2706 + f 4 5252 5253 -5252 -4723 + mu 0 4 2704 3044 3043 2706 + f 4 5254 5255 -5253 -4720 + mu 0 4 2702 3045 3044 2704 + f 4 5256 5257 -5255 -4717 + mu 0 4 2699 3046 3045 2702 + f 4 5258 5259 -5257 -4714 + mu 0 4 2698 3047 3046 2699 + f 4 5260 -5259 -4711 5261 + mu 0 4 3048 3049 2696 2694 + f 4 5262 -5262 -4708 5263 + mu 0 4 3050 3048 2694 2691 + f 4 5264 -5264 -4704 5265 + mu 0 4 3051 3050 2691 2690 + f 4 5266 -5266 -4756 5267 + mu 0 4 3052 3051 2690 2726 + f 4 5268 5269 -5268 -4753 + mu 0 4 2724 3053 3052 2726 + f 4 5270 5271 -5269 -4750 + mu 0 4 2722 3054 3053 2724 + f 4 5272 5273 -5271 -4747 + mu 0 4 2720 3055 3054 2722 + f 4 5274 -5273 -4744 -5241 + mu 0 4 3038 3055 2720 2718 + f 4 -5205 5275 -5240 5276 + mu 0 4 3019 3018 3038 3037 + f 4 -5231 -5277 -5243 5277 + mu 0 4 3033 3019 3037 3039 + f 4 -5233 -5278 -5245 5278 + mu 0 4 3034 3033 3039 3040 + f 4 -5235 -5279 -5247 5279 + mu 0 4 3035 3034 3040 3041 + f 4 -5237 -5280 -5249 5280 + mu 0 4 3036 3035 3041 3042 + f 4 -5239 -5281 -5251 5281 + mu 0 4 3032 3036 3042 3043 + f 4 -5254 5282 -5229 -5282 + mu 0 4 3043 3044 3031 3032 + f 4 -5256 5283 -5227 -5283 + mu 0 4 3044 3045 3030 3031 + f 4 -5258 5284 -5225 -5284 + mu 0 4 3045 3046 3028 3030 + f 4 -5260 5285 -5223 -5285 + mu 0 4 3046 3047 3029 3028 + f 4 -5222 -5286 -5261 5286 + mu 0 4 3026 3027 3049 3048 + f 4 -5220 -5287 -5263 5287 + mu 0 4 3025 3026 3048 3050 + f 4 -5218 -5288 -5265 5288 + mu 0 4 3024 3025 3050 3051 + f 4 -5216 -5289 -5267 5289 + mu 0 4 3023 3024 3051 3052 + f 4 -5270 5290 -5213 -5290 + mu 0 4 3052 3053 3022 3023 + f 4 -5272 5291 -5211 -5291 + mu 0 4 3053 3054 3021 3022 + f 4 -5274 5292 -5209 -5292 + mu 0 4 3054 3055 3020 3021 + f 4 -5208 -5293 -5275 -5276 + mu 0 4 3018 3020 3055 3038 + f 4 5293 5294 -4940 -5108 + mu 0 4 2977 3056 2870 2867 + f 4 5295 -5111 -5034 5296 + mu 0 4 3057 2979 2923 2926 + f 4 -5110 5297 5298 5299 + mu 0 4 2977 2978 3058 3059 + f 4 -5113 5300 5301 -5298 + mu 0 4 2978 2979 3060 3058 + f 4 -5301 -5296 5302 5303 + mu 0 4 3060 2979 3057 3061 + f 4 -5294 -5300 5304 5305 + mu 0 4 3056 2977 3059 3062 + f 4 5306 5307 -4907 -5098 + mu 0 4 2970 3063 2844 2843 + f 4 5308 -5093 -4931 5309 + mu 0 4 3064 2968 2813 2814 + f 4 -5095 5310 5311 5312 + mu 0 4 2969 2968 3065 3066 + f 4 -5099 -5313 5313 5314 + mu 0 4 2970 2969 3066 3067 + f 4 -5311 -5309 5315 5316 + mu 0 4 3065 2968 3064 3068 + f 4 5317 -5307 -5315 5318 + mu 0 4 3069 3063 2970 3067 + f 4 5319 5320 -4945 -5295 + mu 0 4 3056 3070 2831 2870 + f 4 -4895 -5321 5321 5322 + mu 0 4 2832 2831 3070 3071 + f 4 -4952 -5323 5323 5324 + mu 0 4 2876 2832 3071 3072 + f 4 -4982 -5325 5325 5326 + mu 0 4 2836 2876 3072 3073 + f 4 -4900 -5327 5327 5328 + mu 0 4 2837 2836 3073 3074 + f 4 -4976 -5329 5329 5330 + mu 0 4 2887 2837 3074 3075 + f 4 5331 5332 -4972 -5331 + mu 0 4 3076 3077 2825 2885 + f 4 -4890 -5333 5333 5334 + mu 0 4 2822 2825 3077 3078 + f 4 5335 5336 -4965 -5335 + mu 0 4 3078 3079 2821 2822 + f 4 5337 5338 -4886 -5337 + mu 0 4 3079 3080 2818 2821 + f 4 5339 5340 -4960 -5339 + mu 0 4 3080 3081 2817 2818 + f 4 -4882 -5341 5341 -5310 + mu 0 4 2814 2817 3081 3064 + f 4 -5012 -5308 5342 5343 + mu 0 4 2847 2844 3063 3082 + f 4 -4924 5344 5345 5346 + mu 0 4 2860 2850 3083 3084 + f 4 -4914 5347 5348 -5345 + mu 0 4 2850 2848 3085 3083 + f 4 -4911 -5344 5349 -5348 + mu 0 4 2848 2847 3082 3085 + f 4 5350 5351 -5051 5352 + mu 0 4 3086 3087 2934 2862 + f 4 -4930 5353 5354 -5353 + mu 0 4 2862 2865 3088 3086 + f 4 -5044 5355 5356 -5354 + mu 0 4 2930 2919 3089 3090 + f 4 -5024 -5347 5357 -5356 + mu 0 4 2919 2860 3084 3089 + f 4 5358 5359 -4923 5360 + mu 0 4 3091 3092 2856 2859 + f 4 5361 -5297 -5038 -5360 + mu 0 4 3092 3057 2926 2856 + f 4 5362 -5361 -5063 5363 + mu 0 4 3093 3091 2859 2936 + f 4 -5054 -5352 5364 -5364 + mu 0 4 2936 2934 3087 3093 + f 4 -5355 5365 5366 5367 + mu 0 4 3086 3088 3094 3095 + f 4 -5357 5368 5369 -5366 + mu 0 4 3090 3089 3096 3097 + f 4 -5351 -5368 5370 5371 + mu 0 4 3087 3086 3095 3098 + f 4 -5365 5372 5373 5374 + mu 0 4 3093 3087 3099 3100 + f 4 -5363 -5375 5375 5376 + mu 0 4 3091 3093 3100 3101 + f 4 -5330 5377 5378 5379 + mu 0 4 3075 3074 3102 3103 + f 4 -5328 5380 5381 -5378 + mu 0 4 3074 3073 3104 3102 + f 4 -5332 -5380 5382 5383 + mu 0 4 3077 3076 3105 3106 + f 4 -5334 5384 5385 5386 + mu 0 4 3078 3077 3107 3108 + f 4 -5336 -5387 5387 5388 + mu 0 4 3079 3078 3108 3109 + f 4 -5338 -5389 5389 5390 + mu 0 4 3080 3079 3109 3110 + f 4 -5358 5391 5392 5393 + mu 0 4 3089 3084 3111 3112 + f 4 -5346 5394 5395 -5392 + mu 0 4 3084 3083 3113 3111 + f 4 -5349 5396 5397 -5395 + mu 0 4 3083 3085 3114 3113 + f 4 -5350 5398 5399 5400 + mu 0 4 3085 3082 3115 3116 + f 4 -5340 5401 5402 5403 + mu 0 4 3081 3080 3117 3118 + f 4 -5403 5404 5405 5406 + mu 0 4 3118 3117 3119 3120 + f 4 -5342 -5404 5407 -5316 + mu 0 4 3064 3081 3118 3068 + f 4 -5400 5408 5409 5410 + mu 0 4 3116 3115 3121 3122 + f 4 5411 -5399 -5343 -5318 + mu 0 4 3069 3115 3082 3063 + f 4 -5406 5412 5413 5414 + mu 0 4 3120 3119 3123 3124 + f 4 -5410 5415 5416 5417 + mu 0 4 3122 3121 3125 3126 + f 4 -5312 5418 5419 5420 + mu 0 4 3066 3065 3127 3128 + f 4 -5314 -5421 5421 5422 + mu 0 4 3067 3066 3128 3129 + f 4 -5317 5423 5424 -5419 + mu 0 4 3065 3068 3130 3127 + f 4 -5319 -5423 5425 5426 + mu 0 4 3069 3067 3129 3131 + f 4 -5408 -5407 5427 -5424 + mu 0 4 3068 3118 3120 3130 + f 4 -5412 -5427 5428 -5409 + mu 0 4 3115 3069 3131 3121 + f 4 -5420 5429 5430 5431 + mu 0 4 3128 3127 3132 3133 + f 4 -5422 -5432 5432 5433 + mu 0 4 3129 3128 3133 3134 + f 4 -5425 5434 5435 -5430 + mu 0 4 3127 3130 3135 3132 + f 4 -5426 -5434 5436 5437 + mu 0 4 3131 3129 3134 3136 + f 4 -5428 -5415 5438 -5435 + mu 0 4 3130 3120 3124 3135 + f 4 -5429 -5438 5439 -5416 + mu 0 4 3121 3131 3136 3125; + setAttr ".fc[2500:2999]" + f 4 -875 5440 5441 5442 + mu 0 4 524 525 3137 3138 + f 4 -2178 5443 5444 5445 + mu 0 4 1305 1304 3139 3140 + f 3 -2149 5446 -5441 + mu 0 3 525 1283 3137 + f 4 -2156 5447 5448 5449 + mu 0 4 1288 1287 3141 3142 + f 4 -2228 -5450 5450 5451 + mu 0 4 1336 1288 3142 3143 + f 4 -2246 -5452 5452 5453 + mu 0 4 1347 1336 3143 3144 + f 3 -2254 -5454 5454 + mu 0 3 1351 1347 3144 + f 4 -2268 5455 5456 -5447 + mu 0 4 1283 1359 3145 3137 + f 4 -2279 -5455 5457 -5456 + mu 0 4 1359 1351 3144 3145 + f 4 -2304 -5443 5458 5459 + mu 0 4 1374 524 3138 3146 + f 3 -2317 -5460 5460 + mu 0 3 1381 1374 3146 + f 4 -2324 -5461 5461 5462 + mu 0 4 1385 1381 3146 3147 + f 3 -2343 5463 -5444 + mu 0 3 1304 1396 3139 + f 4 -2349 -5463 5464 -5464 + mu 0 4 1396 1385 3147 3139 + f 4 -2383 -5446 5465 5466 + mu 0 4 1409 1305 3140 3148 + f 4 -2371 -5467 5467 5468 + mu 0 4 1410 1409 3148 3149 + f 4 -5417 5469 5470 5471 + mu 0 4 3126 3125 3150 3151 + f 4 -5414 5472 5473 5474 + mu 0 4 3124 3123 3152 3153 + f 4 -5431 5475 5476 5477 + mu 0 4 3133 3132 3154 3155 + f 4 -5433 -5478 5478 5479 + mu 0 4 3134 3133 3155 3156 + f 4 -5436 5480 5481 -5476 + mu 0 4 3132 3135 3157 3154 + f 4 -5437 -5480 5482 5483 + mu 0 4 3136 3134 3156 3158 + f 4 -5439 -5475 5484 -5481 + mu 0 4 3135 3124 3153 3157 + f 4 -5440 -5484 5485 -5470 + mu 0 4 3125 3136 3158 3150 + f 4 -5386 5486 5487 5488 + mu 0 4 3108 3107 3159 3160 + f 4 -5388 -5489 5489 5490 + mu 0 4 3109 3108 3160 3161 + f 4 -5390 -5491 5491 5492 + mu 0 4 3110 3109 3161 3162 + f 4 -5402 -5391 5493 5494 + mu 0 4 3117 3080 3110 3163 + f 4 5495 5496 -5405 -5495 + mu 0 4 3163 3164 3119 3117 + f 4 -5496 -5494 -5493 5497 + mu 0 4 3164 3163 3110 3162 + f 4 -5488 5498 5499 5500 + mu 0 4 3160 3159 3165 3166 + f 4 -5490 -5501 5501 5502 + mu 0 4 3161 3160 3166 3167 + f 4 -5492 -5503 5503 5504 + mu 0 4 3162 3161 3167 3168 + f 4 -5497 5505 5506 -5413 + mu 0 4 3119 3164 3169 3123 + f 4 -5498 -5505 5507 -5506 + mu 0 4 3164 3162 3168 3169 + f 4 -5382 5508 5509 5510 + mu 0 4 3102 3104 3170 3171 + f 4 -5379 -5511 5511 5512 + mu 0 4 3103 3102 3171 3172 + f 4 -5383 -5513 5513 5514 + mu 0 4 3106 3105 3173 3174 + f 4 -5384 5515 5516 -5385 + mu 0 4 3077 3106 3175 3107 + f 4 -5515 5517 5518 -5516 + mu 0 4 3106 3174 3176 3175 + f 4 -5519 5519 -5487 -5517 + mu 0 4 3175 3176 3159 3107 + f 4 -5398 5520 5521 5522 + mu 0 4 3113 3114 3177 3178 + f 4 -5396 -5523 5523 5524 + mu 0 4 3111 3113 3178 3179 + f 4 -5393 -5525 5525 5526 + mu 0 4 3112 3111 3179 3180 + f 4 -5401 5527 5528 -5397 + mu 0 4 3085 3116 3181 3114 + f 4 -5522 5529 5530 5531 + mu 0 4 3178 3177 3182 3183 + f 4 -5524 -5532 5532 5533 + mu 0 4 3179 3178 3183 3184 + f 4 -5526 -5534 5534 5535 + mu 0 4 3180 3179 3184 3185 + f 4 5536 5537 -5521 -5529 + mu 0 4 3181 3186 3177 3114 + f 4 -5411 5538 -5537 -5528 + mu 0 4 3116 3122 3186 3181 + f 4 -5530 -5538 5539 5540 + mu 0 4 3182 3177 3186 3187 + f 4 -5540 -5539 -5418 5541 + mu 0 4 3187 3186 3122 3126 + f 4 -5370 5542 5543 5544 + mu 0 4 3097 3096 3188 3189 + f 4 -5367 -5545 5545 5546 + mu 0 4 3095 3094 3190 3191 + f 4 -5371 -5547 5547 5548 + mu 0 4 3098 3095 3191 3192 + f 4 -5394 5549 5550 -5369 + mu 0 4 3089 3112 3193 3096 + f 4 -5544 5551 5552 5553 + mu 0 4 3189 3188 3194 3195 + f 4 -5546 -5554 5554 5555 + mu 0 4 3191 3190 3196 3197 + f 4 -5548 -5556 5556 5557 + mu 0 4 3192 3191 3197 3198 + f 4 -5543 -5551 5558 5559 + mu 0 4 3188 3096 3193 3199 + f 4 -5559 -5550 -5527 5560 + mu 0 4 3199 3193 3112 3180 + f 4 5561 5562 -5561 -5536 + mu 0 4 3185 3200 3199 3180 + f 4 5563 -5552 -5560 -5563 + mu 0 4 3200 3194 3188 3199 + f 4 -5374 5564 5565 5566 + mu 0 4 3100 3099 3201 3202 + f 4 -5376 -5567 5567 5568 + mu 0 4 3101 3100 3202 3203 + f 4 -5373 -5372 5569 5570 + mu 0 4 3099 3087 3098 3204 + f 4 -5566 5571 5572 5573 + mu 0 4 3202 3201 3205 3206 + f 4 -5568 -5574 5574 5575 + mu 0 4 3203 3202 3206 3207 + f 4 -5549 5576 5577 -5570 + mu 0 4 3098 3192 3208 3204 + f 4 -5578 5578 -5565 -5571 + mu 0 4 3204 3208 3201 3099 + f 4 -5558 5579 5580 -5577 + mu 0 4 3192 3198 3209 3208 + f 4 5581 -5572 -5579 -5581 + mu 0 4 3209 3205 3201 3208 + f 4 -5359 5582 5583 5584 + mu 0 4 3092 3091 3210 3211 + f 4 -5584 5585 5586 5587 + mu 0 4 3211 3210 3212 3213 + f 4 -5587 5588 5589 5590 + mu 0 4 3213 3212 3214 3215 + f 4 -5326 5591 5592 -5381 + mu 0 4 3073 3072 3216 3104 + f 4 -5324 5593 5594 -5592 + mu 0 4 3072 3071 3217 3216 + f 4 -5322 5595 5596 -5594 + mu 0 4 3071 3070 3218 3217 + f 4 -5597 5597 5598 5599 + mu 0 4 3217 3218 3219 3220 + f 4 -5595 -5600 5600 5601 + mu 0 4 3216 3217 3220 3221 + f 4 -5593 -5602 5602 -5509 + mu 0 4 3104 3216 3221 3170 + f 4 -5599 5603 5604 5605 + mu 0 4 3220 3219 3222 3223 + f 4 -5601 -5606 5606 5607 + mu 0 4 3221 3220 3223 3224 + f 4 -5603 -5608 5608 5609 + mu 0 4 3170 3221 3224 3225 + f 4 -5320 5610 5611 -5596 + mu 0 4 3070 3056 3226 3218 + f 4 -5362 -5585 5612 5613 + mu 0 4 3057 3092 3211 3227 + f 4 -5299 5614 5615 5616 + mu 0 4 3059 3058 3228 3229 + f 4 -5302 5617 5618 -5615 + mu 0 4 3058 3060 3230 3228 + f 4 -5304 5619 5620 -5618 + mu 0 4 3060 3061 3231 3230 + f 4 -5305 -5617 5621 5622 + mu 0 4 3062 3059 3229 3232 + f 4 -5623 5623 -5611 -5306 + mu 0 4 3062 3232 3226 3056 + f 4 -5620 -5303 -5614 5624 + mu 0 4 3231 3061 3057 3227 + f 4 -5612 5625 5626 -5598 + mu 0 4 3218 3226 3233 3219 + f 4 -5613 -5588 5627 5628 + mu 0 4 3227 3211 3213 3234 + f 4 -5616 5629 5630 5631 + mu 0 4 3229 3228 3235 3236 + f 4 -5619 5632 5633 -5630 + mu 0 4 3228 3230 3237 3235 + f 4 -5621 5634 5635 -5633 + mu 0 4 3230 3231 3238 3237 + f 4 -5622 -5632 5636 5637 + mu 0 4 3232 3229 3236 3239 + f 4 -5624 -5638 5638 -5626 + mu 0 4 3226 3232 3239 3233 + f 4 -5625 -5629 5639 -5635 + mu 0 4 3231 3227 3234 3238 + f 4 -5627 5640 5641 -5604 + mu 0 4 3219 3233 3240 3222 + f 4 -5628 -5591 5642 5643 + mu 0 4 3234 3213 3215 3241 + f 4 -5631 5644 5645 5646 + mu 0 4 3236 3235 3242 3243 + f 4 -5634 5647 5648 -5645 + mu 0 4 3235 3237 3244 3242 + f 4 -5636 5649 5650 -5648 + mu 0 4 3237 3238 3245 3244 + f 4 -5637 -5647 5651 5652 + mu 0 4 3239 3236 3243 3246 + f 4 -5639 -5653 5653 -5641 + mu 0 4 3233 3239 3246 3240 + f 4 -5640 -5644 5654 -5650 + mu 0 4 3238 3234 3241 3245 + f 4 -5377 5655 5656 -5583 + mu 0 4 3091 3101 3247 3210 + f 4 -5586 -5657 5657 5658 + mu 0 4 3212 3210 3247 3248 + f 4 -5658 -5656 -5569 5659 + mu 0 4 3248 3247 3101 3203 + f 4 -5589 -5659 5660 5661 + mu 0 4 3214 3212 3248 3249 + f 4 -5576 5662 -5661 -5660 + mu 0 4 3203 3207 3249 3248 + f 4 5663 5664 -5512 5665 + mu 0 4 3250 3251 3172 3171 + f 4 5666 5667 -5514 -5665 + mu 0 4 3252 3253 3174 3173 + f 4 -5518 5668 5669 5670 + mu 0 4 3176 3174 3254 3255 + f 4 -5669 -5668 5671 5672 + mu 0 4 3254 3174 3253 3256 + f 4 -5520 -5671 5673 -5499 + mu 0 4 3159 3176 3255 3165 + f 4 5674 5675 5676 -5673 + mu 0 4 3256 3257 3258 3254 + f 4 5677 5678 5679 -5676 + mu 0 4 3257 3259 3260 3258 + f 4 5680 -5679 5681 5682 + mu 0 4 3261 3260 3259 3262 + f 4 5683 -5683 5684 5685 + mu 0 4 3263 3261 3262 3264 + f 4 5686 -5686 5687 5688 + mu 0 4 3265 3263 3264 3266 + f 4 5689 5690 5691 -3230 + mu 0 4 1921 3267 3268 1928 + f 4 -5691 5692 5693 5694 + mu 0 4 3268 3267 3269 3270 + f 4 5695 -5689 5696 -5694 + mu 0 4 3269 3265 3266 3270 + f 4 -5670 -5677 5697 5698 + mu 0 4 3255 3254 3258 3271 + f 4 -5681 5699 -5698 -5680 + mu 0 4 3260 3261 3271 3258 + f 4 5700 -5700 -5684 5701 + mu 0 4 3272 3271 3261 3263 + f 4 -5687 5702 5703 -5702 + mu 0 4 3263 3265 3273 3272 + f 4 5704 -5703 -5696 5705 + mu 0 4 3274 3273 3265 3269 + f 4 5706 -5706 -5693 5707 + mu 0 4 3275 3274 3269 3267 + f 4 5708 -5708 -5690 -3215 + mu 0 4 1912 3275 3267 1921 + f 4 -3146 5709 5710 5711 + mu 0 4 1877 1876 3276 3277 + f 4 -3164 -5712 5712 5713 + mu 0 4 1889 1877 3277 3278 + f 4 -3199 -5714 5714 -5709 + mu 0 4 1912 1889 3278 3275 + f 4 5715 -5711 5716 5717 + mu 0 4 3279 3277 3276 3280 + f 4 -5718 5718 5719 5720 + mu 0 4 3279 3280 3281 3282 + f 4 5721 5722 -5720 5723 + mu 0 4 3283 3284 3282 3281 + f 4 5724 -5722 5725 -5468 + mu 0 4 3148 3284 3283 3149 + f 4 -5716 5726 5727 5728 + mu 0 4 3277 3279 3285 3286 + f 4 5729 -5727 -5721 5730 + mu 0 4 3287 3285 3279 3282 + f 4 -5723 5731 5732 -5731 + mu 0 4 3282 3284 3288 3287 + f 4 -5725 5733 5734 -5732 + mu 0 4 3284 3148 3289 3288 + f 4 5735 -5707 -5715 5736 + mu 0 4 3290 3274 3275 3278 + f 4 -5729 5737 -5737 -5713 + mu 0 4 3277 3286 3290 3278 + f 4 -5734 -5466 5738 5739 + mu 0 4 3289 3148 3140 3291 + f 4 -5699 5740 5741 -5674 + mu 0 4 3255 3271 3292 3165 + f 4 5742 5743 -5500 -5742 + mu 0 4 3292 3293 3166 3165 + f 4 5744 5745 -5502 -5744 + mu 0 4 3293 3294 3167 3166 + f 4 5746 5747 -5504 -5746 + mu 0 4 3294 3295 3168 3167 + f 4 5748 5749 -5508 -5748 + mu 0 4 3295 3296 3169 3168 + f 4 -5474 5750 5751 5752 + mu 0 4 3153 3152 3297 3298 + f 4 -5485 -5753 5753 5754 + mu 0 4 3157 3153 3298 3299 + f 4 -5482 -5755 5755 5756 + mu 0 4 3154 3157 3299 3300 + f 4 -5477 -5757 5757 5758 + mu 0 4 3155 3154 3300 3301 + f 4 -5479 -5759 5759 5760 + mu 0 4 3156 3155 3301 3302 + f 4 -5483 -5761 5761 5762 + mu 0 4 3158 3156 3302 3303 + f 4 -5486 -5763 5763 5764 + mu 0 4 3150 3158 3303 3304 + f 4 -5471 -5765 5765 5766 + mu 0 4 3151 3150 3304 3305 + f 4 -5507 -5750 5767 -5473 + mu 0 4 3123 3169 3296 3152 + f 4 -5735 5768 5769 5770 + mu 0 4 3288 3289 3306 3307 + f 4 -5736 5771 5772 5773 + mu 0 4 3274 3290 3308 3309 + f 4 -5738 5774 5775 -5772 + mu 0 4 3290 3286 3310 3308 + f 4 -5740 5776 5777 -5769 + mu 0 4 3289 3291 3311 3306 + f 4 -5774 5778 5779 -5705 + mu 0 4 3274 3309 3312 3273 + f 4 5780 5781 -5704 -5780 + mu 0 4 3312 3313 3272 3273 + f 4 -5701 -5782 5782 -5741 + mu 0 4 3271 3272 3313 3292 + f 4 -5743 -5783 5783 5784 + mu 0 4 3293 3292 3313 3314 + f 4 5785 5786 -5784 -5781 + mu 0 4 3312 3315 3314 3313 + f 4 -5786 -5779 -5773 5787 + mu 0 4 3315 3312 3309 3308 + f 4 5788 -5788 -5776 5789 + mu 0 4 3316 3315 3308 3310 + f 4 -5789 5790 5791 -5787 + mu 0 4 3315 3316 3317 3314 + f 4 -5792 5792 -5745 -5785 + mu 0 4 3314 3317 3294 3293 + f 4 -5747 -5793 5793 5794 + mu 0 4 3295 3294 3317 3318 + f 4 -5794 5795 5796 5797 + mu 0 4 3318 3317 3319 3320 + f 4 5798 5799 -5796 -5791 + mu 0 4 3316 3321 3319 3317 + f 4 -5799 -5790 5800 5801 + mu 0 4 3321 3316 3310 3322 + f 4 5802 5803 -5800 -5802 + mu 0 4 3322 3323 3319 3321 + f 4 5804 -5801 -5775 -5728 + mu 0 4 3285 3322 3310 3286 + f 4 -5803 -5805 -5730 5805 + mu 0 4 3323 3322 3285 3287 + f 4 5806 -5806 -5733 -5771 + mu 0 4 3307 3323 3287 3288 + f 4 -5807 5807 -5797 -5804 + mu 0 4 3323 3307 3320 3319 + f 4 -5749 -5795 5808 5809 + mu 0 4 3296 3295 3318 3324 + f 4 -5809 5810 5811 5812 + mu 0 4 3324 3318 3325 3326 + f 4 5813 -5811 -5798 5814 + mu 0 4 3327 3325 3318 3320 + f 4 5815 -5815 -5808 -5770 + mu 0 4 3306 3327 3320 3307 + f 4 5816 -5814 -5816 -5778 + mu 0 4 3311 3325 3327 3306 + f 4 -5752 5817 5818 5819 + mu 0 4 3298 3297 3328 3329 + f 4 -5754 -5820 5820 5821 + mu 0 4 3299 3298 3329 3330 + f 4 -5756 -5822 5822 5823 + mu 0 4 3300 3299 3330 3331 + f 4 -5758 -5824 5824 5825 + mu 0 4 3301 3300 3331 3332 + f 4 -5760 -5826 5826 5827 + mu 0 4 3302 3301 3332 3333 + f 4 -5762 -5828 5828 5829 + mu 0 4 3303 3302 3333 3334 + f 4 -5764 -5830 5830 5831 + mu 0 4 3304 3303 3334 3335 + f 4 -5766 -5832 5832 5833 + mu 0 4 3305 3304 3335 3336 + f 4 -5768 -5810 5834 -5751 + mu 0 4 3152 3296 3324 3297 + f 4 -5819 5835 5836 5837 + mu 0 4 3329 3328 3337 3338 + f 4 -5821 -5838 5838 5839 + mu 0 4 3330 3329 3338 3339 + f 4 -5823 -5840 5840 5841 + mu 0 4 3331 3330 3339 3340 + f 4 -5825 -5842 5842 5843 + mu 0 4 3332 3331 3340 3341 + f 4 -5827 -5844 5844 5845 + mu 0 4 3333 3332 3341 3342 + f 4 -5829 -5846 5846 5847 + mu 0 4 3334 3333 3342 3343 + f 4 -5831 -5848 5848 5849 + mu 0 4 3335 3334 3343 3344 + f 4 -5833 -5850 5850 5851 + mu 0 4 3336 3335 3344 3345 + f 4 -5835 -5813 5852 -5818 + mu 0 4 3297 3324 3326 3328 + f 4 -5837 5853 5854 5855 + mu 0 4 3338 3337 3346 3347 + f 4 -5839 -5856 5856 5857 + mu 0 4 3339 3338 3347 3348 + f 4 -5841 -5858 5858 5859 + mu 0 4 3340 3339 3348 3349 + f 4 -5843 -5860 5860 5861 + mu 0 4 3341 3340 3349 3350 + f 4 -5845 -5862 5862 5863 + mu 0 4 3342 3341 3350 3351 + f 4 -5847 -5864 5864 5865 + mu 0 4 3343 3342 3351 3352 + f 4 -5849 -5866 5866 5867 + mu 0 4 3344 3343 3352 3353 + f 3 -5851 -5868 5868 + mu 0 3 3345 3344 3353 + f 4 -5817 5869 5870 -5812 + mu 0 4 3325 3311 3354 3326 + f 4 5871 -5836 -5853 -5871 + mu 0 4 3354 3337 3328 3326 + f 4 -5870 -5777 5872 5873 + mu 0 4 3354 3311 3291 3355 + f 4 5874 -5854 -5872 -5874 + mu 0 4 3355 3346 3337 3354 + f 4 5875 5876 -5442 5877 + mu 0 4 3356 3357 3138 3137 + f 4 5878 -5878 -5457 5879 + mu 0 4 3358 3356 3137 3145 + f 4 -5462 5880 5881 5882 + mu 0 4 3147 3146 3359 3360 + f 4 -5465 -5883 5883 5884 + mu 0 4 3139 3147 3360 3361 + f 4 5885 -5881 -5459 -5877 + mu 0 4 3357 3359 3146 3138 + f 4 5886 -5739 -5445 -5885 + mu 0 4 3361 3291 3140 3139 + f 4 -5887 5887 5888 -5873 + mu 0 4 3291 3361 3362 3355 + f 3 -5876 5889 5890 + mu 0 3 3357 3356 3363 + f 4 -5879 5891 5892 -5890 + mu 0 4 3356 3358 3364 3363 + f 4 -5882 5893 5894 5895 + mu 0 4 3360 3359 3365 3366 + f 4 -5884 -5896 5896 -5888 + mu 0 4 3361 3360 3366 3362 + f 4 -5886 -5891 5897 -5894 + mu 0 4 3359 3357 3363 3365 + f 4 -5897 5898 -5875 -5889 + mu 0 4 3362 3366 3346 3355 + f 4 -5895 5899 -5855 -5899 + mu 0 4 3366 3365 3347 3346 + f 4 -5857 -5900 -5898 5900 + mu 0 4 3348 3347 3365 3363 + f 4 -5859 -5901 -5893 5901 + mu 0 4 3349 3348 3363 3364 + f 4 5902 5903 -5880 -5458 + mu 0 4 3144 3367 3358 3145 + f 4 -5861 -5902 5904 5905 + mu 0 4 3350 3349 3364 3368 + f 4 -5905 -5892 -5904 5906 + mu 0 4 3368 3364 3358 3367 + f 4 5907 5908 -5903 -5453 + mu 0 4 3143 3369 3367 3144 + f 4 5909 -5907 -5909 5910 + mu 0 4 3370 3368 3367 3369 + f 4 -5863 -5906 -5910 5911 + mu 0 4 3351 3350 3368 3370 + f 4 5912 5913 5914 -5449 + mu 0 4 3141 3371 3372 3142 + f 4 5915 -5914 5916 5917 + mu 0 4 3373 3372 3371 3374 + f 4 5918 5919 5920 -5918 + mu 0 4 3374 3375 3376 3373 + f 4 5921 5922 5923 -5920 + mu 0 4 3375 1427 3377 3376 + f 4 5924 -5923 -2406 5925 + mu 0 4 3378 3377 1427 1426 + f 4 5926 5927 -5865 -5912 + mu 0 4 3370 3379 3352 3351 + f 4 5928 5929 -5927 -5911 + mu 0 4 3369 3380 3379 3370 + f 4 5930 -5929 -5908 -5451 + mu 0 4 3142 3380 3369 3143 + f 4 -5867 -5928 5931 5932 + mu 0 4 3353 3352 3379 3381 + f 4 -5916 5933 -5932 5934 + mu 0 4 3372 3373 3381 3379 + f 4 -5931 -5915 -5935 -5930 + mu 0 4 3380 3142 3372 3379 + f 4 -5921 5935 5936 -5934 + mu 0 4 3373 3376 3382 3381 + f 4 -5937 5937 -5869 -5933 + mu 0 4 3381 3382 3345 3353 + f 4 -5924 5938 5939 -5936 + mu 0 4 3376 3377 3383 3382 + f 4 5940 -5939 -5925 5941 + mu 0 4 3384 3383 3377 3378 + f 4 -2400 5942 5943 5944 + mu 0 4 1424 1423 3385 3386 + f 4 -2402 -5945 5945 5946 + mu 0 4 1425 1424 3386 3387 + f 4 -5555 5947 5948 5949 + mu 0 4 3197 3196 3388 3389 + f 4 -5553 5950 5951 -5948 + mu 0 4 3195 3194 3390 3391 + f 4 -5951 5952 5953 5954 + mu 0 4 3390 3194 3392 3393 + f 4 -5955 5955 5956 5957 + mu 0 4 3390 3393 3394 3395 + f 4 -5957 5958 5959 5960 + mu 0 4 3395 3394 3396 3397 + f 4 -5960 5961 5962 5963 + mu 0 4 3397 3396 3398 3399 + f 4 5964 5965 -5944 5966 + mu 0 4 3400 3401 3386 3385 + f 4 5967 5968 -5965 5969 + mu 0 4 3402 3403 3401 3400 + f 4 5970 -5968 5971 5972 + mu 0 4 3404 3403 3402 3405 + f 4 5973 -5973 5974 5975 + mu 0 4 3406 3404 3405 3407 + f 4 5976 -5976 5977 5978 + mu 0 4 3408 3406 3407 3409 + f 4 5979 -5979 5980 5981 + mu 0 4 3410 3408 3409 3411 + f 4 -5963 5982 -5982 5983 + mu 0 4 3399 3398 3410 3411 + f 4 -5953 -5564 5984 5985 + mu 0 4 3392 3194 3200 3412 + f 4 5986 5987 -5962 -5959 + mu 0 4 3394 3413 3398 3396 + f 4 -5987 -5956 5988 5989 + mu 0 4 3413 3394 3393 3414 + f 4 5990 -5989 -5954 -5986 + mu 0 4 3412 3414 3393 3392 + f 4 -5966 5991 5992 5993 + mu 0 4 3386 3401 3415 3416 + f 4 -5969 5994 5995 -5992 + mu 0 4 3401 3403 3417 3415 + f 4 -5971 5996 5997 -5995 + mu 0 4 3403 3404 3418 3417 + f 4 -5974 5998 5999 -5997 + mu 0 4 3404 3406 3419 3418 + f 4 -5977 6000 6001 -5999 + mu 0 4 3406 3408 3420 3419 + f 3 -5980 6002 -6001 + mu 0 3 3408 3410 3420 + f 4 -5983 -5988 6003 -6003 + mu 0 4 3410 3398 3413 3420 + f 4 -5985 -5562 6004 6005 + mu 0 4 3412 3200 3185 3421 + f 4 -5990 6006 6007 -6004 + mu 0 4 3413 3414 3422 3420 + f 4 -5991 -6006 6008 -6007 + mu 0 4 3414 3412 3421 3422 + f 4 -5535 6009 6010 -6005 + mu 0 4 3185 3184 3423 3421 + f 4 -2404 -5947 6011 -5926 + mu 0 4 1426 1425 3387 3378 + f 4 6012 6013 -5946 -5994 + mu 0 4 3416 3424 3387 3386 + f 4 6014 -5942 -6012 -6014 + mu 0 4 3424 3384 3378 3387 + f 4 -5533 6015 6016 -6010 + mu 0 4 3184 3183 3425 3423 + f 4 -5531 6017 6018 -6016 + mu 0 4 3183 3182 3426 3425 + f 4 -5541 6019 6020 -6018 + mu 0 4 3182 3187 3427 3426 + f 4 -5542 -5472 6021 -6020 + mu 0 4 3187 3126 3151 3427 + f 4 -5767 6022 6023 -6022 + mu 0 4 3151 3305 3428 3427 + f 4 -5834 6024 6025 -6023 + mu 0 4 3305 3336 3429 3428 + f 4 -5852 6026 6027 -6025 + mu 0 4 3336 3345 3430 3429 + f 4 -5938 -5940 6028 -6027 + mu 0 4 3345 3382 3383 3430 + f 4 -6024 6029 6030 -6021 + mu 0 4 3427 3428 3431 3426 + f 4 -6026 6031 6032 -6030 + mu 0 4 3428 3429 3432 3431 + f 4 -6028 6033 6034 -6032 + mu 0 4 3429 3430 3433 3432 + f 4 -6029 -5941 6035 -6034 + mu 0 4 3430 3383 3384 3433 + f 4 -6031 6036 6037 -6019 + mu 0 4 3426 3431 3434 3425 + f 4 -6033 6038 6039 -6037 + mu 0 4 3431 3432 3435 3434 + f 4 -6035 6040 6041 -6039 + mu 0 4 3432 3433 3436 3435 + f 4 -6036 -6015 6042 -6041 + mu 0 4 3433 3384 3424 3436 + f 4 6043 -6043 -6013 -5993 + mu 0 4 3415 3436 3424 3416 + f 4 -6044 -5996 6044 -6042 + mu 0 4 3436 3415 3417 3435 + f 4 -6011 6045 6046 -6009 + mu 0 4 3421 3423 3437 3422 + f 4 -6047 6047 -6002 -6008 + mu 0 4 3422 3437 3419 3420 + f 4 -6017 6048 6049 -6046 + mu 0 4 3423 3425 3438 3437 + f 4 -6049 -6038 6050 6051 + mu 0 4 3438 3425 3434 3439 + f 4 -6048 -6050 -6052 6052 + mu 0 4 3419 3437 3438 3439 + f 4 -6051 -6040 -6045 6053 + mu 0 4 3439 3434 3435 3417 + f 4 -6053 -6054 -5998 -6000 + mu 0 4 3419 3439 3417 3418 + f 4 -5666 -5510 6054 6055 + mu 0 4 3250 3171 3170 3440 + f 4 6056 -6056 6057 6058 + mu 0 4 3441 3250 3440 3442 + f 4 6059 -6059 6060 -3036 + mu 0 4 1810 3441 3442 1809 + f 4 6061 6062 6063 6064 + mu 0 4 2001 3443 3444 3445 + f 4 6065 6066 6067 -6063 + mu 0 4 3443 3446 3447 3444 + f 4 6068 6069 6070 -6067 + mu 0 4 3446 3448 3449 3447 + f 4 6071 6072 6073 -6070 + mu 0 4 3448 3450 3451 3449 + f 4 6074 6075 6076 -6073 + mu 0 4 3450 1775 3452 3451 + f 4 6077 -6076 -2984 6078 + mu 0 4 3453 3452 1775 1776 + f 4 6079 6080 -3344 -6065 + mu 0 4 3445 3454 2002 2001 + f 4 -3014 6081 6082 -6079 + mu 0 4 1776 1794 3455 3453 + f 4 -3066 6083 6084 -6082 + mu 0 4 1794 1828 3456 3455 + f 4 -3074 -6061 6085 -6084 + mu 0 4 1828 1809 3442 3456 + f 4 6086 -6058 -6055 -5610 + mu 0 4 3225 3442 3440 3170 + f 4 -5609 6087 6088 6089 + mu 0 4 3225 3224 3457 3458 + f 4 -6090 6090 -6086 -6087 + mu 0 4 3225 3458 3456 3442 + f 4 -3346 -6081 6091 6092 + mu 0 4 2003 2002 3454 3459 + f 3 -3348 -6093 6093 + mu 0 3 2004 2003 3459 + f 4 -3350 -6094 6094 6095 + mu 0 4 2005 2004 3459 3460 + f 4 -3352 -6096 6096 6097 + mu 0 4 2006 2005 3460 3461 + f 3 -3357 -6098 6098 + mu 0 3 2008 2006 3461 + f 4 -3358 -6099 6099 6100 + mu 0 4 2009 2008 3461 3462 + f 4 -3361 6101 6102 6103 + mu 0 4 2011 2010 3463 3464 + f 4 -3363 -6101 6104 6105 + mu 0 4 2012 2009 3462 3465 + f 4 -3365 -6106 6106 -6102 + mu 0 4 2010 2012 3465 3463 + f 4 -6100 6107 6108 6109 + mu 0 4 3462 3461 3466 3467 + f 4 -6103 6110 6111 6112 + mu 0 4 3464 3463 3468 3469 + f 4 -6105 -6110 6113 6114 + mu 0 4 3465 3462 3467 3470 + f 4 -6107 -6115 6115 -6111 + mu 0 4 3463 3465 3470 3468 + f 4 -6095 6116 6117 6118 + mu 0 4 3460 3459 3471 3472 + f 4 -6097 -6119 6119 -6108 + mu 0 4 3461 3460 3472 3466 + f 4 6120 -6117 -6092 6121 + mu 0 4 3473 3471 3459 3454 + f 4 6122 -6122 -6080 -6064 + mu 0 4 3444 3473 3454 3445 + f 4 -6109 6123 6124 6125 + mu 0 4 3467 3466 3474 3475 + f 4 -6112 6126 6127 6128 + mu 0 4 3469 3468 3476 3477 + f 4 -6114 -6126 6129 6130 + mu 0 4 3470 3467 3475 3478 + f 4 -6116 -6131 6131 -6127 + mu 0 4 3468 3470 3478 3476 + f 4 -6118 6132 6133 6134 + mu 0 4 3472 3471 3479 3480 + f 4 -6120 -6135 6135 -6124 + mu 0 4 3466 3472 3480 3474 + f 4 -6121 6136 6137 -6133 + mu 0 4 3471 3473 3481 3479 + f 4 -6123 6138 6139 -6137 + mu 0 4 3473 3444 3482 3481 + f 4 6140 6141 6142 6143 + mu 0 4 3389 1192 3483 3484 + f 4 -2005 6144 6145 -6142 + mu 0 4 1192 1189 3485 3483 + f 4 -5557 -5950 -6144 6146 + mu 0 4 3198 3197 3389 3484 + f 4 6147 -6145 -2003 6148 + mu 0 4 3486 3485 1189 1190 + f 4 6149 6150 6151 6152 + mu 0 4 3487 1127 3488 3489 + f 4 6153 -6153 6154 6155 + mu 0 4 3490 3487 3489 3491 + f 4 6156 -6156 6157 6158 + mu 0 4 3486 3490 3491 3492 + f 4 -5580 -6147 6159 6160 + mu 0 4 3209 3198 3484 3493 + f 4 6161 6162 -6160 -6143 + mu 0 4 3483 3492 3493 3484 + f 4 -6162 -6146 -6148 -6159 + mu 0 4 3492 3483 3485 3486 + f 4 -6158 6163 6164 -6163 + mu 0 4 3492 3491 3494 3493 + f 4 -6165 6165 -5582 -6161 + mu 0 4 3493 3494 3205 3209 + f 4 -1872 6166 6167 6168 + mu 0 4 1109 1108 3495 3496 + f 4 -1946 6169 6170 6171 + mu 0 4 1126 1143 3497 3498 + f 4 -1921 -6169 6172 -6170 + mu 0 4 1143 1109 3496 3497 + f 4 -1897 -6172 6173 -6151 + mu 0 4 1127 1126 3498 3488 + f 4 6174 6175 6176 6177 + mu 0 4 3495 3499 3500 3501 + f 4 6178 6179 6180 -6176 + mu 0 4 3499 3502 3503 3500 + f 4 6181 6182 6183 -6180 + mu 0 4 3502 3504 3505 3503 + f 4 6184 6185 6186 -6183 + mu 0 4 3504 3506 3507 3505 + f 4 6187 6188 6189 -6186 + mu 0 4 3506 3508 3509 3507 + f 4 6190 6191 6192 -6189 + mu 0 4 3508 3477 3510 3509 + f 4 -6152 6193 6194 6195 + mu 0 4 3489 3488 3511 3512 + f 4 -6155 -6196 6196 -6164 + mu 0 4 3491 3489 3512 3494 + f 4 -6168 -6178 6197 6198 + mu 0 4 3496 3495 3501 3513 + f 4 -6171 6199 6200 6201 + mu 0 4 3498 3497 3513 3511 + f 3 -6173 -6199 -6200 + mu 0 3 3497 3496 3513 + f 3 -6174 -6202 -6194 + mu 0 3 3488 3498 3511 + f 4 -5573 6202 6203 6204 + mu 0 4 3206 3205 3514 3515 + f 4 -6197 6205 -6203 -6166 + mu 0 4 3494 3512 3514 3205 + f 4 -6204 -6206 -6195 6206 + mu 0 4 3515 3514 3512 3511 + f 4 6207 6208 -5575 -6205 + mu 0 4 3515 3516 3207 3206 + f 4 -6208 6209 6210 6211 + mu 0 4 3516 3515 3517 3518 + f 4 -6210 -6207 -6201 6212 + mu 0 4 3517 3515 3511 3513 + f 4 6213 -6211 -6213 -6198 + mu 0 4 3501 3518 3517 3513 + f 4 -6177 6214 6215 -6214 + mu 0 4 3501 3500 3519 3518 + f 3 -6181 6216 -6215 + mu 0 3 3500 3503 3519 + f 4 -6184 6217 6218 -6217 + mu 0 4 3503 3505 3520 3519 + f 4 -6187 6219 6220 -6218 + mu 0 4 3505 3507 3521 3520 + f 3 -6190 6221 -6220 + mu 0 3 3507 3509 3521 + f 4 -6193 6222 6223 -6222 + mu 0 4 3509 3510 3522 3521 + f 4 -6216 6224 6225 -6212 + mu 0 4 3518 3519 3523 3516 + f 4 -6226 6226 -5663 -6209 + mu 0 4 3516 3523 3249 3207 + f 4 -6219 6227 6228 -6225 + mu 0 4 3519 3520 3524 3523 + f 4 -6229 6229 -5662 -6227 + mu 0 4 3523 3524 3214 3249 + f 4 6230 -6192 -6128 6231 + mu 0 4 3525 3510 3477 3476 + f 4 6232 6233 -6223 -6231 + mu 0 4 3525 3526 3522 3510 + f 4 -6125 6234 6235 6236 + mu 0 4 3475 3474 3527 3528 + f 4 -6130 -6237 6237 6238 + mu 0 4 3478 3475 3528 3529 + f 4 -6132 -6239 6239 -6232 + mu 0 4 3476 3478 3529 3525 + f 4 -6134 6240 6241 6242 + mu 0 4 3480 3479 3530 3531 + f 4 -6136 -6243 6243 -6235 + mu 0 4 3474 3480 3531 3527 + f 4 -6138 6244 6245 -6241 + mu 0 4 3479 3481 3532 3530 + f 4 -6140 6246 6247 -6245 + mu 0 4 3481 3482 3533 3532 + f 4 -6236 6248 6249 6250 + mu 0 4 3528 3527 3534 3535 + f 4 -6238 -6251 6251 6252 + mu 0 4 3529 3528 3535 3536 + f 4 -6240 -6253 6253 -6233 + mu 0 4 3525 3529 3536 3526 + f 4 -6242 6254 6255 6256 + mu 0 4 3531 3530 3537 3538 + f 4 -6244 -6257 6257 -6249 + mu 0 4 3527 3531 3538 3534 + f 4 -6246 6258 6259 -6255 + mu 0 4 3530 3532 3539 3537 + f 4 -6248 6260 6261 -6259 + mu 0 4 3532 3533 3540 3539 + f 4 -5590 -6230 6262 6263 + mu 0 4 3215 3214 3524 3541 + f 4 -5607 6264 6265 -6088 + mu 0 4 3224 3223 3542 3457 + f 4 -5605 6266 6267 -6265 + mu 0 4 3223 3222 3543 3542 + f 4 -5642 6268 6269 -6267 + mu 0 4 3222 3240 3544 3543 + f 4 -5643 -6264 6270 6271 + mu 0 4 3241 3215 3541 3545 + f 4 -5646 6272 6273 6274 + mu 0 4 3243 3242 3546 3547 + f 4 -5649 6275 6276 -6273 + mu 0 4 3242 3244 3548 3546 + f 4 -5651 6277 6278 -6276 + mu 0 4 3244 3245 3549 3548 + f 4 -5652 -6275 6279 6280 + mu 0 4 3246 3243 3547 3550 + f 4 -5654 -6281 6281 -6269 + mu 0 4 3240 3246 3550 3544 + f 4 -5655 -6272 6282 -6278 + mu 0 4 3245 3241 3545 3549 + f 4 -6274 6283 -6250 6284 + mu 0 4 3547 3546 3535 3534 + f 4 -6277 6285 -6252 -6284 + mu 0 4 3546 3548 3536 3535 + f 4 -6279 6286 -6254 -6286 + mu 0 4 3548 3549 3526 3536 + f 4 -6283 6287 -6234 -6287 + mu 0 4 3549 3545 3522 3526 + f 4 6288 -6224 -6288 -6271 + mu 0 4 3541 3521 3522 3545 + f 4 -6263 -6228 -6221 -6289 + mu 0 4 3541 3524 3520 3521 + f 4 -6285 -6258 6289 -6280 + mu 0 4 3547 3534 3538 3550 + f 4 6290 -6282 -6290 -6256 + mu 0 4 3537 3544 3550 3538 + f 4 6291 -6270 -6291 -6260 + mu 0 4 3539 3543 3544 3537 + f 4 -6262 6292 -6268 -6292 + mu 0 4 3539 3540 3542 3543 + f 4 -6266 -6293 6293 6294 + mu 0 4 3457 3542 3540 3551 + f 4 -6068 6295 6296 -6139 + mu 0 4 3444 3447 3552 3482 + f 3 -6071 6297 -6296 + mu 0 3 3447 3449 3552 + f 4 -6074 6298 6299 -6298 + mu 0 4 3449 3451 3553 3552 + f 4 -6077 6300 6301 -6299 + mu 0 4 3451 3452 3554 3553 + f 4 -6078 6302 6303 -6301 + mu 0 4 3452 3453 3555 3554 + f 3 -6083 6304 -6303 + mu 0 3 3453 3455 3555 + f 4 -6085 -6091 6305 -6305 + mu 0 4 3455 3456 3458 3555 + f 4 -6089 -6295 6306 -6306 + mu 0 4 3458 3457 3551 3555 + f 4 -6307 6307 -6302 -6304 + mu 0 4 3555 3551 3553 3554 + f 4 -6300 -6308 -6294 6308 + mu 0 4 3552 3553 3551 3540 + f 4 -6247 -6297 -6309 -6261 + mu 0 4 3533 3482 3552 3540 + f 4 -864 6309 -2159 6310 + mu 0 4 517 516 1286 1290 + f 4 -890 -6311 -2162 6311 + mu 0 4 537 517 1290 1292 + f 4 -2237 6312 -2165 -6312 + mu 0 4 1292 1341 1294 537 + f 4 -2239 6313 -2168 -6313 + mu 0 4 1341 1343 1296 1294 + f 4 -2242 6314 -2220 -6314 + mu 0 4 1343 1345 1332 1296 + f 4 -2265 6315 -2223 -6315 + mu 0 4 1345 1357 1334 1332 + f 4 -2287 6316 -2226 -6316 + mu 0 4 1357 1367 1330 1334 + f 4 -2290 6317 -2217 -6317 + mu 0 4 1367 1368 1328 1330 + f 4 -2297 6318 -2214 -6318 + mu 0 4 1368 1371 1327 1328 + f 4 -2213 -6319 -2301 6319 + mu 0 4 1325 1327 1371 1373 + f 4 -2210 -6320 -2314 6320 + mu 0 4 1322 1325 1373 1380 + f 4 -2334 6321 -2205 -6321 + mu 0 4 1380 1391 1320 1322 + f 4 -2340 6322 -2202 -6322 + mu 0 4 1391 1394 1319 1320 + f 4 -2201 -6323 -2357 6323 + mu 0 4 1317 1319 1394 1401 + f 4 -2198 -6324 -2362 6324 + mu 0 4 1315 1317 1401 1404 + f 4 -2195 -6325 -2369 6325 + mu 0 4 1312 1315 1404 1407 + f 4 -2389 6326 -2190 -6326 + mu 0 4 1407 1418 1310 1312 + f 4 -2395 6327 -2187 -6327 + mu 0 4 1418 1421 1308 1310 + f 4 -2398 6328 -2184 -6328 + mu 0 4 1421 1422 1306 1308 + f 4 -2396 6329 -2181 -6329 + mu 0 4 1422 1414 541 1306 + f 4 -896 -6330 -2377 6330 + mu 0 4 529 541 1414 1412 + f 4 -880 -6331 -2374 6331 + mu 0 4 530 529 1412 1411 + f 4 -2372 6332 -883 -6332 + mu 0 4 1411 1410 532 530 + f 4 -2427 -6333 -5469 6333 + mu 0 4 1436 532 1410 3149 + f 4 -5726 6334 -2422 -6334 + mu 0 4 3149 3283 1437 1436 + f 4 -2429 -6335 -5724 6335 + mu 0 4 1441 1437 3283 3281 + f 4 -5719 6336 -2431 -6336 + mu 0 4 3281 3280 1442 1441 + f 4 -5717 6337 -2434 -6337 + mu 0 4 3280 3276 1444 1442 + f 4 -2438 -6338 -5710 6338 + mu 0 4 1447 1444 3276 1876 + f 4 -2441 -6339 -3145 6339 + mu 0 4 1449 1447 1876 1875 + f 4 -2444 -6340 -3149 6340 + mu 0 4 1451 1449 1875 1879 + f 4 -3152 6341 -2446 -6341 + mu 0 4 1879 1881 1452 1451 + f 4 -2450 -6342 -3155 6342 + mu 0 4 1455 1452 1881 1883 + f 4 -3158 6343 -2452 -6343 + mu 0 4 1883 1885 1456 1455 + f 4 -3161 6344 -2455 -6344 + mu 0 4 1885 1887 1458 1456 + f 4 -3251 6345 -2458 -6345 + mu 0 4 1887 1938 1460 1458 + f 4 -3248 6346 -2461 -6346 + mu 0 4 1938 1936 1462 1460 + f 4 -3243 6347 -3177 -6347 + mu 0 4 1936 1935 1896 1462 + f 4 -3247 6348 -3212 -6348 + mu 0 4 1935 1937 1919 1896 + f 4 -3250 6349 -3228 -6349 + mu 0 4 1937 1934 1911 1919 + f 4 -3198 -6350 -3241 6350 + mu 0 4 1909 1911 1934 1933 + f 4 -3195 -6351 -3239 6351 + mu 0 4 1907 1909 1933 1932 + f 4 -3192 -6352 -3237 6352 + mu 0 4 1905 1907 1932 1931 + f 4 -3189 -6353 -3235 6353 + mu 0 4 1903 1905 1931 1930 + f 4 -3186 -6354 -3233 6354 + mu 0 4 1898 1903 1930 1929 + f 4 -3231 6355 -3180 -6355 + mu 0 4 1929 1928 1899 1898 + f 4 -5692 6356 -3279 -6356 + mu 0 4 1928 3268 1957 1899 + f 4 -5695 6357 -3314 -6357 + mu 0 4 3268 3270 1981 1957 + f 4 -3317 -6358 -5697 6358 + mu 0 4 1983 1981 3270 3266 + f 4 -3320 -6359 -5688 6359 + mu 0 4 1985 1983 3266 3264 + f 4 -3323 -6360 -5685 6360 + mu 0 4 1987 1985 3264 3262 + f 4 -3326 -6361 -5682 6361 + mu 0 4 1989 1987 3262 3259; + setAttr ".fc[3000:3499]" + f 4 -3330 -6362 -5678 6362 + mu 0 4 1992 1989 3259 3257 + f 4 -3332 -6363 -5675 6363 + mu 0 4 1993 1992 3257 3256 + f 4 -3335 -6364 -5672 6364 + mu 0 4 1995 1993 3256 3253 + f 4 -3338 -6365 -5667 6365 + mu 0 4 1997 1995 3253 3252 + f 4 -3341 -6366 -5664 6366 + mu 0 4 1873 2000 3251 3250 + f 4 -6057 6367 -3142 -6367 + mu 0 4 3250 3441 1867 1873 + f 4 -6060 6368 -3135 -6368 + mu 0 4 3441 1810 1868 1867 + f 4 -3035 6369 -4128 -6369 + mu 0 4 1810 1808 1861 1868 + f 4 6370 -3126 -6370 -3032 + mu 0 4 1806 1857 1861 1808 + f 4 6371 -3120 -6371 -3029 + mu 0 4 1804 1853 1857 1806 + f 4 6372 -3114 -6372 -3026 + mu 0 4 1802 1849 1853 1804 + f 4 6373 -3108 -6373 -3023 + mu 0 4 1800 1845 1849 1802 + f 4 -3020 6374 -3102 -6374 + mu 0 4 1800 1798 1813 1845 + f 4 -3039 -6375 -3017 6375 + mu 0 4 1814 1813 1798 1797 + f 4 -3042 -6376 -3082 6376 + mu 0 4 1816 1814 1797 1832 + f 4 -3080 6377 -3048 -6377 + mu 0 4 1832 1829 1817 1816 + f 4 -3077 6378 -3044 -6378 + mu 0 4 1829 1830 1818 1817 + f 4 -3050 -6379 -3079 6379 + mu 0 4 1783 1818 1830 1831 + f 4 6380 -2994 -6380 -3083 + mu 0 4 1777 1779 1783 1831 + f 4 -2987 6381 -2988 -6381 + mu 0 4 1777 1764 1762 1779 + f 4 -2965 -6382 -2966 6382 + mu 0 4 1759 1762 1764 1763 + f 4 -2970 6383 -2960 -6383 + mu 0 4 1763 1767 1758 1759 + f 4 -2959 -6384 -2973 6384 + mu 0 4 1756 1758 1767 1769 + f 4 -2956 -6385 -2976 6385 + mu 0 4 1754 1756 1769 1771 + f 4 -2953 -6386 -2979 6386 + mu 0 4 1751 1754 1771 1773 + f 4 -2982 6387 -2948 -6387 + mu 0 4 1773 1775 1743 1751 + f 4 -6075 6388 -2933 -6388 + mu 0 4 1775 3450 1709 1743 + f 4 -6072 6389 -2866 -6389 + mu 0 4 3450 3448 1705 1709 + f 4 -6069 6390 -2860 -6390 + mu 0 4 3448 3446 1703 1705 + f 4 -6066 6391 -2857 -6391 + mu 0 4 3446 3443 1698 1703 + f 4 -2849 -6392 -6062 6392 + mu 0 4 1689 1698 3443 2001 + f 4 -3343 6393 -2834 -6393 + mu 0 4 2001 1667 1640 1689 + f 4 -2751 -6394 -2788 6394 + mu 0 4 1641 1640 1667 1664 + f 4 -2754 -6395 -2784 6395 + mu 0 4 1643 1641 1664 1663 + f 4 -2763 -6396 -2782 6396 + mu 0 4 1649 1643 1663 1661 + f 4 -2769 -6397 -2779 6397 + mu 0 4 1653 1649 1661 1659 + f 4 -2815 -6398 -2776 6398 + mu 0 4 1631 1653 1659 1658 + f 4 -2741 -6399 -2813 6399 + mu 0 4 1626 1631 1658 1676 + f 4 -2810 6400 -2733 -6400 + mu 0 4 1676 1675 1622 1626 + f 4 -2808 6401 -2727 -6401 + mu 0 4 1675 1674 1620 1622 + f 4 -2812 6402 -2724 -6402 + mu 0 4 1674 1654 1614 1620 + f 4 -2771 6403 -2715 -6403 + mu 0 4 1654 1650 1610 1614 + f 4 -2765 6404 -2709 -6404 + mu 0 4 1650 1646 1608 1610 + f 4 -2759 6405 -2706 -6405 + mu 0 4 1646 1645 1603 1608 + f 4 -2699 -6406 -2757 6406 + mu 0 4 1601 1603 1645 1635 + f 4 -2696 -6407 -2745 6407 + mu 0 4 1596 1601 1635 1634 + f 4 -3354 6408 -2688 -6408 + mu 0 4 1634 2007 1593 1596 + f 4 -2684 -6409 -3356 6409 + mu 0 4 1569 1593 2007 1573 + f 4 -2646 -6410 -2650 6410 + mu 0 4 1566 1569 1573 1572 + f 4 -2654 6411 -2641 -6411 + mu 0 4 1572 1576 1556 1566 + f 4 -2678 6412 -2626 -6412 + mu 0 4 1576 1589 1557 1556 + f 4 -2634 -6413 -2675 6413 + mu 0 4 1554 1557 1589 1587 + f 4 -2674 6414 -2623 -6414 + mu 0 4 1587 1588 1548 1554 + f 4 -2677 6415 -2614 -6415 + mu 0 4 1588 1583 1546 1548 + f 4 -2662 6416 -2611 -6416 + mu 0 4 1583 1581 1544 1546 + f 4 -2659 6417 -2608 -6417 + mu 0 4 1581 1580 1540 1544 + f 4 -3362 6418 -2602 -6418 + mu 0 4 1580 2011 1541 1540 + f 4 -6104 6419 -2606 -6419 + mu 0 4 2011 3464 1538 1541 + f 4 -6113 6420 -2599 -6420 + mu 0 4 3464 3469 1534 1538 + f 4 -6129 6421 -2593 -6421 + mu 0 4 3469 3477 1535 1534 + f 4 -6191 6422 -2597 -6422 + mu 0 4 3477 3508 1533 1535 + f 4 -2592 -6423 -6188 6423 + mu 0 4 1506 1533 3508 3506 + f 4 -6185 6424 -2530 -6424 + mu 0 4 3506 3504 1479 1506 + f 4 -2487 -6425 -6182 6425 + mu 0 4 1474 1479 3504 3502 + f 4 -6179 6426 -2479 -6426 + mu 0 4 3502 3499 1471 1474 + f 4 -2475 -6427 -6175 6427 + mu 0 4 1467 1471 3499 3495 + f 4 -2469 -6428 -6167 6428 + mu 0 4 1105 1467 3495 1108 + f 4 6429 -1868 -6429 -1871 + mu 0 4 1107 1101 1105 1108 + f 4 6430 -1862 -6430 -1877 + mu 0 4 1112 1097 1101 1107 + f 4 6431 -1856 -6431 -1880 + mu 0 4 1114 1093 1097 1112 + f 4 6432 -1850 -6432 -1881 + mu 0 4 1115 1089 1093 1114 + f 4 6433 -1844 -6433 -1884 + mu 0 4 1117 1079 1089 1115 + f 4 -1887 6434 -1829 -6434 + mu 0 4 1117 1119 1080 1079 + f 4 -1890 6435 -1833 -6435 + mu 0 4 1119 1121 1083 1080 + f 4 -1893 6436 -1839 -6436 + mu 0 4 1121 1123 1085 1083 + f 4 -1953 6437 -1836 -6437 + mu 0 4 1123 1153 1077 1085 + f 4 -1947 6438 -1826 -6438 + mu 0 4 1153 1152 1073 1077 + f 4 -1950 6439 -1820 -6439 + mu 0 4 1152 1154 1074 1073 + f 4 -1825 -6440 -1952 6440 + mu 0 4 1071 1074 1154 1142 + f 4 -1919 6441 -1815 -6441 + mu 0 4 1142 1140 1067 1071 + f 4 -1916 6442 -1811 -6442 + mu 0 4 1140 1138 1068 1067 + f 4 -1819 -6443 -1913 6443 + mu 0 4 1065 1068 1138 1136 + f 4 -1910 6444 -1808 -6444 + mu 0 4 1136 1134 1063 1065 + f 4 -1907 6445 -1805 -6445 + mu 0 4 1134 1132 1061 1063 + f 4 -1904 6446 -1802 -6446 + mu 0 4 1132 1130 1059 1061 + f 4 -1901 6447 -1799 -6447 + mu 0 4 1130 1128 1057 1059 + f 4 -1898 6448 -1796 -6448 + mu 0 4 1128 1127 1055 1057 + f 4 -1794 -6449 -6150 6449 + mu 0 4 1056 1055 1127 3487 + f 4 -1955 -6450 -6154 6450 + mu 0 4 1156 1056 3487 3490 + f 4 -1958 -6451 -6157 6451 + mu 0 4 1158 1156 3490 3486 + f 4 -1961 -6452 -6149 6452 + mu 0 4 1160 1158 3486 1190 + f 4 -1993 -6453 -2002 6453 + mu 0 4 1181 1160 1190 1187 + f 4 -2000 6454 -1989 -6454 + mu 0 4 1187 1184 1179 1181 + f 4 -1994 6455 -1986 -6455 + mu 0 4 1184 1183 1177 1179 + f 4 -2018 6456 -1983 -6456 + mu 0 4 1183 1197 1173 1177 + f 4 -2019 6457 -1979 -6457 + mu 0 4 1197 1196 1174 1173 + f 4 -2011 -6458 -2016 6458 + mu 0 4 1171 1174 1196 1195 + f 4 -2015 6459 -1976 -6459 + mu 0 4 1195 1194 1169 1171 + f 4 -2009 6460 -1973 -6460 + mu 0 4 1194 1193 1168 1169 + f 4 -1972 -6461 -2007 6461 + mu 0 4 1165 1168 1193 1191 + f 4 -2006 6462 -1967 -6462 + mu 0 4 1191 1192 1161 1165 + f 4 -6141 6463 -1963 -6463 + mu 0 4 1192 3389 1162 1161 + f 4 -2021 -6464 -5949 6464 + mu 0 4 1199 1162 3389 3388 + f 4 -2024 -6465 -5952 6465 + mu 0 4 1203 1202 3391 3390 + f 4 -5958 6466 -2026 -6466 + mu 0 4 3390 3395 1204 1203 + f 4 -5961 6467 -2029 -6467 + mu 0 4 3395 3397 1206 1204 + f 4 -5964 6468 -2032 -6468 + mu 0 4 3397 3399 1208 1206 + f 4 -5984 6469 -2039 -6469 + mu 0 4 3399 3411 1210 1208 + f 4 -5981 6470 -2035 -6470 + mu 0 4 3411 3409 1211 1210 + f 4 -5978 6471 -2041 -6471 + mu 0 4 3409 3407 1214 1211 + f 4 -2045 -6472 -5975 6472 + mu 0 4 1217 1214 3407 3405 + f 4 -2048 -6473 -5972 6473 + mu 0 4 1219 1217 3405 3402 + f 4 -5970 6474 -2050 -6474 + mu 0 4 3402 3400 1220 1219 + f 4 -5967 6475 -2053 -6475 + mu 0 4 3400 3385 1222 1220 + f 4 -5943 6476 -2056 -6476 + mu 0 4 3385 1423 1224 1222 + f 4 -2060 -6477 -2399 6477 + mu 0 4 1227 1224 1423 1274 + f 4 6478 -2099 -6478 -2132 + mu 0 4 1269 1252 1227 1274 + f 4 6479 -2096 -6479 -2123 + mu 0 4 1264 1250 1252 1269 + f 4 6480 -2093 -6480 -2114 + mu 0 4 1263 1248 1250 1264 + f 4 6481 -2090 -6481 -2111 + mu 0 4 1262 1246 1248 1263 + f 4 -2146 6482 -2087 -6482 + mu 0 4 1262 1281 1245 1246 + f 4 -2086 -6483 -2144 6483 + mu 0 4 1243 1245 1281 1280 + f 4 -2083 -6484 -2142 6484 + mu 0 4 1240 1243 1280 1279 + f 4 -2147 6485 -2078 -6485 + mu 0 4 1279 1257 1238 1240 + f 4 -2103 6486 -2075 -6486 + mu 0 4 1257 1256 1236 1238 + f 4 -2118 6487 -2072 -6487 + mu 0 4 1256 1267 1234 1236 + f 4 -2127 6488 -2069 -6488 + mu 0 4 1267 1272 1232 1234 + f 4 -2140 6489 -2066 -6489 + mu 0 4 1272 1278 1228 1232 + f 4 -2407 6490 -2062 -6490 + mu 0 4 1278 1427 1229 1228 + f 4 -2409 -6491 -5922 6491 + mu 0 4 1429 1229 1427 3375 + f 4 -5919 6492 -2411 -6492 + mu 0 4 3375 3374 1430 1429 + f 4 -2415 -6493 -5917 6493 + mu 0 4 1433 1430 3374 3371 + f 4 -2421 -6494 -5913 6494 + mu 0 4 1435 1433 3371 3141 + f 4 -2419 -6495 -5448 6495 + mu 0 4 523 1435 3141 1287 + f 4 -872 -6496 -2155 -6310 + mu 0 4 516 523 1287 1286 + f 4 -690 6496 -2414 6497 + mu 0 4 412 411 3556 3557 + f 4 -696 -6498 -2420 6498 + mu 0 4 416 412 3557 3558 + f 4 -2417 6499 -698 -6499 + mu 0 4 3558 3559 417 416 + f 4 -870 6500 -701 -6500 + mu 0 4 3559 3560 419 417 + f 4 -862 6501 -704 -6501 + mu 0 4 3560 3561 421 419 + f 4 -889 6502 -707 -6502 + mu 0 4 3561 3562 423 421 + f 4 -723 -6503 -2167 6503 + mu 0 4 434 423 3562 3563 + f 4 -732 -6504 -2170 6504 + mu 0 4 440 434 3563 3564 + f 4 -2222 6505 -775 -6505 + mu 0 4 3564 3565 457 440 + f 4 -2225 6506 -778 -6506 + mu 0 4 3565 3566 459 457 + f 4 -2227 6507 -781 -6507 + mu 0 4 3566 3567 461 459 + f 4 -2218 6508 -784 -6508 + mu 0 4 3567 3568 463 461 + f 4 -788 -6509 -2215 6509 + mu 0 4 466 463 3568 3569 + f 4 -791 -6510 -2211 6510 + mu 0 4 468 466 3569 3570 + f 4 -793 -6511 -2208 6511 + mu 0 4 469 468 3570 3571 + f 4 -797 -6512 -2206 6512 + mu 0 4 472 469 3571 3572 + f 4 -2203 6513 -799 -6513 + mu 0 4 3572 3573 473 472 + f 4 -803 -6514 -2199 6514 + mu 0 4 476 473 3573 3574 + f 4 -805 -6515 -2196 6515 + mu 0 4 477 476 3574 3575 + f 4 -808 -6516 -2193 6516 + mu 0 4 479 477 3575 3576 + f 4 -2191 6517 -833 -6517 + mu 0 4 3576 3577 492 479 + f 4 -840 -6518 -2188 6518 + mu 0 4 497 492 3577 3578 + f 4 -2185 6519 -842 -6519 + mu 0 4 3578 3579 498 497 + f 4 -902 -6520 -2182 6520 + mu 0 4 543 498 3579 3580 + f 4 -900 -6521 -897 6521 + mu 0 4 526 543 3580 3581 + f 4 -882 6522 -876 -6522 + mu 0 4 3581 3582 512 526 + f 4 6523 -859 -6523 -885 + mu 0 4 3583 510 512 3582 + f 4 6524 -856 -6524 -2426 + mu 0 4 3584 508 510 3583 + f 4 6525 -853 -6525 -2424 + mu 0 4 3585 504 508 3584 + f 4 -2428 6526 -849 -6526 + mu 0 4 3585 3586 505 504 + f 4 -988 -6527 -2433 6527 + mu 0 4 500 505 3586 3587 + f 4 -2436 6528 -845 -6528 + mu 0 4 3587 3588 501 500 + f 4 -886 -6529 -2437 6529 + mu 0 4 534 501 3588 3589 + f 4 -903 -6530 -2440 6530 + mu 0 4 544 534 3589 3590 + f 4 -2443 6531 -916 -6531 + mu 0 4 3590 3591 552 544 + f 4 -2448 6532 -913 -6532 + mu 0 4 3591 3592 551 552 + f 4 -912 -6533 -2449 6533 + mu 0 4 546 551 3592 3593 + f 4 -2454 6534 -906 -6534 + mu 0 4 3593 3594 547 546 + f 4 -2457 6535 -1028 -6535 + mu 0 4 3594 3595 597 547 + f 4 -2460 6536 -1038 -6536 + mu 0 4 3595 3596 601 597 + f 4 -2463 6537 -1049 -6537 + mu 0 4 3596 3597 607 601 + f 4 -3257 -6538 -3179 6538 + mu 0 4 1941 607 3597 3598 + f 4 -3254 -6539 -3214 6539 + mu 0 4 1942 1941 3598 3599 + f 4 -3259 -6540 -3229 6540 + mu 0 4 1944 1942 3599 3600 + f 4 -3262 -6541 -3196 6541 + mu 0 4 1946 1944 3600 3601 + f 4 -3193 6542 -3268 -6542 + mu 0 4 3601 3602 1947 1946 + f 4 -3190 6543 -3264 -6543 + mu 0 4 3602 3603 1948 1947 + f 4 -3271 -6544 -3187 6544 + mu 0 4 1952 1948 3603 3604 + f 4 -3274 -6545 -3184 6545 + mu 0 4 1954 1952 3604 3605 + f 4 -3182 6546 -3276 -6546 + mu 0 4 3605 3606 1955 1954 + f 4 -3281 6547 -3282 -6547 + mu 0 4 3606 3607 1959 1955 + f 4 -3313 -6548 -3316 6548 + mu 0 4 1979 1959 3607 3608 + f 4 6549 -3309 -6549 -3319 + mu 0 4 3609 1977 1979 3608 + f 4 6550 -3306 -6550 -3322 + mu 0 4 3610 1975 1977 3609 + f 4 6551 -3303 -6551 -3325 + mu 0 4 3611 1973 1975 3610 + f 4 6552 -3300 -6552 -3328 + mu 0 4 3612 1961 1973 3611 + f 4 6553 -3285 -6553 -3329 + mu 0 4 3613 1962 1961 3612 + f 4 -3334 6554 -3289 -6554 + mu 0 4 3613 3614 1965 1962 + f 4 -3337 6555 -3292 -6555 + mu 0 4 3614 3615 1967 1965 + f 4 -3340 6556 -3295 -6556 + mu 0 4 3615 3616 1969 1967 + f 4 -3299 -6557 -3342 6557 + mu 0 4 1871 1972 3617 3618 + f 4 -3143 6558 -3139 -6558 + mu 0 4 3618 3619 1866 1871 + f 4 -3134 -6559 -3137 6559 + mu 0 4 1863 1866 3619 3620 + f 4 6560 -3129 -6560 -4129 + mu 0 4 3621 1859 1863 3620 + f 4 6561 -3123 -6561 -3127 + mu 0 4 3622 1855 1859 3621 + f 4 6562 -3117 -6562 -3121 + mu 0 4 3623 1851 1855 3622 + f 4 6563 -3111 -6563 -3115 + mu 0 4 3624 1847 1851 3623 + f 4 6564 -3105 -6564 -3109 + mu 0 4 3625 1844 1847 3624 + f 4 -3101 -6565 -3103 6565 + mu 0 4 1841 1844 3625 3626 + f 4 -3037 6566 -3096 -6566 + mu 0 4 3626 3627 1839 1841 + f 4 -3041 6567 -3093 -6567 + mu 0 4 3627 3628 1837 1839 + f 4 -3049 6568 -3090 -6568 + mu 0 4 3628 3629 1835 1837 + f 4 -3046 6569 -3087 -6569 + mu 0 4 3629 3630 1833 1835 + f 4 -3051 6570 -3084 -6570 + mu 0 4 3630 3631 1786 1833 + f 4 -2999 -6571 -2995 6571 + mu 0 4 1782 1786 3631 3632 + f 4 -2993 -6572 -2989 6572 + mu 0 4 1745 1782 3632 3633 + f 4 -2937 -6573 -2963 6573 + mu 0 4 1746 1745 3633 3634 + f 4 -2961 6574 -2939 -6574 + mu 0 4 3634 3635 1747 1746 + f 4 -2947 -6575 -2957 6575 + mu 0 4 1748 1747 3635 3636 + f 4 -2954 6576 -2941 -6576 + mu 0 4 3636 3637 1749 1748 + f 4 -2944 -6577 -2951 6577 + mu 0 4 1750 1749 3637 3638 + f 4 -2946 -6578 -2949 6578 + mu 0 4 1742 1750 3638 3639 + f 4 6579 -2930 -6579 -2934 + mu 0 4 3640 1712 1742 3639 + f 4 -2871 -6580 -2867 6580 + mu 0 4 1708 1712 3640 3641 + f 4 -2865 -6581 -2861 6581 + mu 0 4 1702 1708 3641 3642 + f 4 -2856 -6582 -2858 6582 + mu 0 4 1696 1702 3642 3643 + f 4 -2846 -6583 -2847 6583 + mu 0 4 1687 1696 3643 3644 + f 4 -2835 6584 -2831 -6584 + mu 0 4 3644 3645 1686 1687 + f 4 -2830 -6585 -2749 6585 + mu 0 4 1684 1686 3645 3646 + f 4 -2827 -6586 -2753 6586 + mu 0 4 1681 1684 3646 3647 + f 4 -2821 -6587 -2762 6587 + mu 0 4 1682 1681 3647 3648 + f 4 -2824 -6588 -2768 6588 + mu 0 4 1677 1682 3648 3649 + f 4 -2814 6589 -2816 -6589 + mu 0 4 3649 3650 1632 1677 + f 4 -2739 6590 -2742 -6590 + mu 0 4 3650 3651 1629 1632 + f 4 -2738 -6591 -2734 6591 + mu 0 4 1624 1629 3651 3652 + f 4 -2728 6592 -2730 -6592 + mu 0 4 3652 3653 1618 1624 + f 4 -2725 6593 -2721 -6593 + mu 0 4 3653 3654 1616 1618 + f 4 -2716 6594 -2718 -6594 + mu 0 4 3654 3655 1612 1616 + f 4 -2710 6595 -2712 -6595 + mu 0 4 3655 3656 1606 1612 + f 4 -2707 6596 -2703 -6596 + mu 0 4 3656 3657 1604 1606 + f 4 -2697 6597 -2700 -6597 + mu 0 4 3657 3658 1599 1604 + f 4 -2693 -6598 -2694 6598 + mu 0 4 1594 1599 3658 3659 + f 4 -2689 6599 -2685 -6599 + mu 0 4 3659 3660 1591 1594 + f 4 -2681 -6600 -2682 6600 + mu 0 4 1571 1591 3660 3661 + f 4 -2649 -6601 -2644 6601 + mu 0 4 1565 1571 3661 3662 + f 4 -2640 -6602 -2642 6602 + mu 0 4 1560 1565 3662 3663 + f 4 -2628 6603 -2630 -6603 + mu 0 4 3663 3664 1561 1560 + f 4 -2636 -6604 -2635 6604 + mu 0 4 1552 1561 3664 3665 + f 4 -2624 6605 -2620 -6605 + mu 0 4 3665 3666 1551 1552 + f 4 -2619 -6606 -2615 6606 + mu 0 4 1487 1551 3666 3667 + f 4 -2612 6607 -2501 -6607 + mu 0 4 3667 3668 1488 1487 + f 4 -2506 -6608 -2609 6608 + mu 0 4 1492 1488 3668 3669 + f 4 -2509 -6609 -2604 6609 + mu 0 4 1494 1492 3669 3670 + f 4 -2607 6610 -2511 -6610 + mu 0 4 3670 3671 1495 1494 + f 4 -2515 -6611 -2600 6611 + mu 0 4 1498 1495 3671 3672 + f 4 -2518 -6612 -2595 6612 + mu 0 4 1500 1498 3672 3673 + f 4 -2598 6613 -2522 -6613 + mu 0 4 3673 3674 1502 1500 + f 4 -2590 6614 -2525 -6614 + mu 0 4 3674 3675 1504 1502 + f 4 -2529 -6615 -2531 6615 + mu 0 4 1477 1504 3675 3676 + f 4 -2484 -6616 -2485 6616 + mu 0 4 1472 1477 3676 3677 + f 4 6617 -2476 -6617 -2480 + mu 0 4 3678 1469 1472 3677 + f 4 -2472 -6618 -2473 6618 + mu 0 4 1465 1469 3678 3679 + f 4 -2466 -6619 -2467 6619 + mu 0 4 1103 1465 3679 3680 + f 4 6620 -1865 -6620 -1869 + mu 0 4 3681 1099 1103 3680 + f 4 6621 -1859 -6621 -1863 + mu 0 4 3682 1095 1099 3681 + f 4 6622 -1853 -6622 -1857 + mu 0 4 3683 1091 1095 3682 + f 4 6623 -1847 -6623 -1851 + mu 0 4 3684 1087 1091 3683 + f 4 6624 -1841 -6624 -1845 + mu 0 4 3685 1051 1087 3684 + f 4 6625 -1789 -6625 -1831 + mu 0 4 3686 1049 1051 3685 + f 4 6626 -1786 -6626 -1835 + mu 0 4 3687 1047 1049 3686 + f 4 6627 -1783 -6627 -1840 + mu 0 4 3688 1045 1047 3687 + f 4 6628 -1780 -6628 -1837 + mu 0 4 3689 1043 1045 3688 + f 4 6629 -1777 -6629 -1827 + mu 0 4 3690 1041 1043 3689 + f 4 6630 -1774 -6630 -1822 + mu 0 4 3691 1039 1041 3690 + f 4 6631 -1771 -6631 -1824 + mu 0 4 3692 1037 1039 3691 + f 4 -1816 6632 -1768 -6632 + mu 0 4 3692 3693 1035 1037 + f 4 -1813 6633 -1765 -6633 + mu 0 4 3693 3694 1033 1035 + f 4 -1818 6634 -1762 -6634 + mu 0 4 3694 3695 1031 1033 + f 4 -1809 6635 -1759 -6635 + mu 0 4 3695 3696 1030 1031 + f 4 -1758 -6636 -1806 6636 + mu 0 4 1028 1030 3696 3697 + f 4 -1755 -6637 -1803 6637 + mu 0 4 1025 1028 3697 3698 + f 4 -1800 6638 -1750 -6638 + mu 0 4 3698 3699 1023 1025 + f 4 -1797 6639 -1747 -6639 + mu 0 4 3699 3700 1021 1023 + f 4 -1792 6640 -1744 -6640 + mu 0 4 3700 3701 1019 1021 + f 4 -1954 6641 -1741 -6641 + mu 0 4 3701 3702 1017 1019 + f 4 -1957 6642 -1738 -6642 + mu 0 4 3702 3703 1016 1017 + f 4 -1737 -6643 -1960 6643 + mu 0 4 1014 1016 3703 3704 + f 4 -1734 -6644 -1992 6644 + mu 0 4 1012 1014 3704 3705 + f 4 -1731 -6645 -1990 6645 + mu 0 4 1010 1012 3705 3706 + f 4 -1728 -6646 -1987 6646 + mu 0 4 1008 1010 3706 3707 + f 4 -1725 -6647 -1984 6647 + mu 0 4 1003 1008 3707 3708 + f 4 -1981 6648 -1719 -6648 + mu 0 4 3708 3709 1004 1003 + f 4 -2013 -6649 -2012 6649 + mu 0 4 1001 1004 3709 3710 + f 4 -1977 6650 -1716 -6650 + mu 0 4 3710 3711 999 1001 + f 4 -1974 6651 -1713 -6651 + mu 0 4 3711 3712 997 999 + f 4 -1970 6652 -1710 -6652 + mu 0 4 3712 3713 996 997 + f 4 -1709 -6653 -1968 6653 + mu 0 4 993 996 3713 3714 + f 4 -1965 6654 -1704 -6654 + mu 0 4 3714 3715 989 993 + f 4 6655 -1701 -6655 -2020 + mu 0 4 3716 990 989 3715 + f 4 6656 -1692 -6656 -2023 + mu 0 4 3717 984 983 3718 + f 4 -1697 -6657 -2028 6657 + mu 0 4 988 984 3717 3719 + f 4 -1700 -6658 -2031 6658 + mu 0 4 981 988 3719 3720 + f 4 6659 -1689 -6659 -2034 + mu 0 4 3721 979 981 3720 + f 4 6660 -1686 -6660 -2040 + mu 0 4 3722 977 979 3721 + f 4 6661 -1683 -6661 -2037 + mu 0 4 3723 975 977 3722 + f 4 -2043 6662 -1680 -6662 + mu 0 4 3723 3724 973 975 + f 4 -2044 6663 -1677 -6663 + mu 0 4 3724 3725 972 973 + f 4 -1676 -6664 -2047 6664 + mu 0 4 969 972 3725 3726 + f 4 -2052 6665 -1671 -6665 + mu 0 4 3726 3727 967 969 + f 4 -2055 6666 -1668 -6666 + mu 0 4 3727 3728 966 967 + f 4 -1667 -6667 -2058 6667 + mu 0 4 964 966 3728 3729 + f 4 -1664 -6668 -2059 6668 + mu 0 4 961 964 3729 3730 + f 4 -2100 6669 -1659 -6669 + mu 0 4 3730 3731 959 961 + f 4 -2097 6670 -1656 -6670 + mu 0 4 3731 3732 958 959 + f 4 -1655 -6671 -2094 6671 + mu 0 4 955 958 3732 3733 + f 4 -2091 6672 -1650 -6672 + mu 0 4 3733 3734 953 955 + f 4 -2088 6673 -1647 -6673 + mu 0 4 3734 3735 559 953 + f 4 -2084 6674 -927 -6674 + mu 0 4 3735 3736 557 559 + f 4 6675 -924 -6675 -2081 + mu 0 4 3737 555 557 3736 + f 4 -2079 6676 -920 -6676 + mu 0 4 3737 3738 437 555 + f 4 -2076 6677 -728 -6677 + mu 0 4 3738 3739 435 437 + f 4 -2073 6678 -725 -6678 + mu 0 4 3739 3740 431 435 + f 4 -2070 6679 -719 -6679 + mu 0 4 3740 3741 429 431 + f 4 -2067 6680 -716 -6680 + mu 0 4 3741 3742 427 429 + f 4 -2064 6681 -713 -6681 + mu 0 4 3742 3743 425 427 + f 4 -2408 6682 -710 -6682 + mu 0 4 3743 3744 413 425 + f 4 -2413 -6497 -692 -6683 + mu 0 4 3744 3556 411 413 + f 4 6683 6684 6685 6686 + mu 0 4 3745 3746 3747 3748 + f 4 6687 6688 6689 6690 + mu 0 4 3749 3750 3751 3752 + f 4 6691 6692 6693 6694 + mu 0 4 3753 3754 3755 3756 + f 4 6695 6696 6697 6698 + mu 0 4 3757 3758 3759 3760 + f 4 6699 6700 6701 6702 + mu 0 4 3761 3762 3763 3764 + f 4 6703 6704 6705 6706 + mu 0 4 3765 3766 3767 3768 + f 4 6707 6708 6709 6710 + mu 0 4 3769 3770 3771 3772 + f 4 6711 6712 6713 -6689 + mu 0 4 3750 3773 3774 3751 + f 4 6714 -6708 6715 6716 + mu 0 4 3775 3770 3769 3776 + f 4 6717 6718 6719 6720 + mu 0 4 3777 3778 3779 3780 + f 4 6721 6722 -6702 6723 + mu 0 4 3781 3782 3783 3784 + f 4 -6722 6724 6725 6726 + mu 0 4 3782 3781 3785 3786 + f 4 -155 6727 6728 6729 + mu 0 4 110 108 3787 3788 + f 4 6730 6731 6732 6733 + mu 0 4 3789 3790 3791 3792 + f 4 6734 -6695 6735 -6734 + mu 0 4 3792 3753 3756 3789 + f 4 6736 6737 6738 -6691 + mu 0 4 3752 3793 3794 3749 + f 4 6739 -6684 6740 6741 + mu 0 4 3795 3746 3745 3796 + f 4 6742 6743 -6694 6744 + mu 0 4 3797 3798 3756 3755 + f 4 6745 -6731 -6736 -6744 + mu 0 4 3798 3790 3789 3756 + f 4 -6688 6746 6747 6748 + mu 0 4 3750 3749 3799 3800 + f 4 6749 6750 -6747 -6739 + mu 0 4 3794 3801 3799 3749 + f 4 6751 6752 -6750 -6738 + mu 0 4 3793 3802 3801 3794 + f 4 6753 6754 6755 6756 + mu 0 4 3803 3804 3805 3806 + f 4 6757 -6755 6758 6759 + mu 0 4 3807 3805 3804 3808 + f 4 -6710 6760 -6699 6761 + mu 0 4 3809 3810 3757 3760 + f 4 -6714 6762 6763 6764 + mu 0 4 3811 3812 3813 3808 + f 4 -6690 -6765 -6759 6765 + mu 0 4 3814 3811 3808 3804 + f 4 6766 -6737 -6766 -6754 + mu 0 4 3803 3815 3814 3804 + f 4 6767 -6752 -6767 -6757 + mu 0 4 3806 3816 3815 3803 + f 4 -6733 6768 -6742 6769 + mu 0 4 3817 3818 3795 3796 + f 4 -6741 6770 -6735 -6770 + mu 0 4 3796 3745 3819 3817 + f 4 6771 -6692 -6771 -6687 + mu 0 4 3748 3820 3819 3745 + f 4 6772 6773 -6703 6774 + mu 0 4 3821 3822 3761 3764 + f 4 6775 6776 -6707 6777 + mu 0 4 3823 3824 3765 3768 + f 4 -6698 6778 6779 6780 + mu 0 4 3760 3759 3825 3826 + f 4 -6716 6781 6782 6783 + mu 0 4 3776 3769 3827 3828 + f 4 -6720 6784 6785 6786 + mu 0 4 3780 3779 3829 3830 + f 4 -6727 6787 6788 6789 + mu 0 4 3782 3786 3831 3832 + f 4 6790 -6775 -6723 -6790 + mu 0 4 3832 3833 3783 3782 + f 4 6791 6792 -6712 -6749 + mu 0 4 3800 3834 3773 3750 + f 4 6793 6794 -6745 6795 + mu 0 4 3835 3836 3797 3755 + f 4 -6764 6796 6797 -6760 + mu 0 4 3808 3813 3837 3807 + f 4 6798 6799 6800 -6686 + mu 0 4 3747 3838 3839 3748 + f 4 -6772 -6801 6801 6802 + mu 0 4 3820 3748 3839 3840 + f 4 -6693 -6803 6803 -6796 + mu 0 4 3755 3754 3841 3835 + f 4 -6713 6804 -6711 6805 + mu 0 4 3774 3773 3769 3772 + f 4 -6763 -6806 -6762 6806 + mu 0 4 3813 3812 3809 3760 + f 4 6807 -6797 -6807 -6781 + mu 0 4 3826 3837 3813 3760 + f 4 6808 6809 6810 -6800 + mu 0 4 3838 3842 3843 3839 + f 4 -6802 -6811 6811 6812 + mu 0 4 3840 3839 3843 3844 + f 4 -6804 -6813 6813 6814 + mu 0 4 3835 3841 3845 3846 + f 4 6815 6816 -6794 -6815 + mu 0 4 3846 3847 3836 3835 + f 4 -6793 6817 -6782 -6805 + mu 0 4 3773 3834 3827 3769 + f 4 6818 6819 6820 -179 + mu 0 4 126 3848 3849 128 + f 4 6821 -6819 -176 6822 + mu 0 4 3850 3848 126 124 + f 4 6823 6824 6825 -6810 + mu 0 4 3842 3851 3852 3843 + f 4 -6697 6826 6827 6828 + mu 0 4 3759 3758 3853 3854 + f 4 6829 -6779 -6829 6830 + mu 0 4 3855 3825 3759 3854 + f 4 6831 6832 6833 -6825 + mu 0 4 3851 3856 3857 3852 + f 4 6834 6835 -182 -6821 + mu 0 4 3849 3858 130 128 + f 4 -6836 6836 6837 -185 + mu 0 4 130 3858 3859 132 + f 4 -145 6838 6839 6840 + mu 0 4 103 102 3860 3861 + f 4 -149 -6841 6841 6842 + mu 0 4 106 103 3861 3862 + f 4 -152 -6843 6843 -6728 + mu 0 4 108 106 3862 3787 + f 4 -188 -6838 6844 6845 + mu 0 4 134 132 3859 3863 + f 4 -191 -6846 6846 -6839 + mu 0 4 102 134 3863 3860 + f 4 6847 6848 6849 6850 + mu 0 4 3864 3865 3866 3867 + f 4 6851 -6777 6852 -6831 + mu 0 4 3854 3765 3824 3855 + f 4 -6828 6853 -6704 -6852 + mu 0 4 3854 3853 3766 3765 + f 4 6854 6855 6856 -6833 + mu 0 4 3856 3868 3869 3857 + f 4 -6856 6857 6858 6859 + mu 0 4 3869 3868 3870 3871 + f 4 6860 6861 6862 -6778 + mu 0 4 3768 3872 3873 3823 + f 4 -6706 6863 6864 -6861 + mu 0 4 3768 3767 3874 3872 + f 4 6865 6866 6867 -6859 + mu 0 4 3870 3875 3876 3871 + f 4 6868 -6862 6869 -6774 + mu 0 4 3822 3873 3872 3761 + f 4 -6865 6870 -6700 -6870 + mu 0 4 3872 3874 3762 3761 + f 4 6871 6872 6873 -6867 + mu 0 4 3875 3877 3878 3876 + f 4 6874 -6849 6875 -6873 + mu 0 4 3877 3879 3880 3878 + f 4 -158 -6730 6876 6877 + mu 0 4 113 112 3881 3882 + f 4 -161 -6878 6878 6879 + mu 0 4 116 113 3882 3883 + f 4 -164 -6880 6880 6881 + mu 0 4 118 116 3883 3884 + f 4 -167 -6882 6882 6883 + mu 0 4 120 118 3884 3885 + f 4 -170 -6884 6884 6885 + mu 0 4 122 120 3885 3886 + f 4 -173 -6886 6886 -6823 + mu 0 4 124 122 3886 3850 + f 4 -6877 6887 6888 6889 + mu 0 4 3887 3888 3864 3889 + f 4 -6879 -6890 6890 6891 + mu 0 4 3890 3887 3889 3891 + f 4 -6881 -6892 6892 6893 + mu 0 4 3892 3890 3891 3893 + f 4 -6883 -6894 6894 6895 + mu 0 4 3894 3892 3893 3895 + f 4 -6885 -6896 6896 6897 + mu 0 4 3896 3894 3895 3897 + f 4 -6887 -6898 6898 6899 + mu 0 4 3898 3896 3897 3846 + f 4 6900 -6822 -6900 -6814 + mu 0 4 3845 3899 3898 3846 + f 4 -6820 -6901 -6812 6901 + mu 0 4 3900 3901 3844 3843 + f 4 6902 -6835 -6902 -6826 + mu 0 4 3852 3902 3900 3843 + f 4 -6837 -6903 -6834 6903 + mu 0 4 3903 3902 3852 3857 + f 4 -6845 -6904 -6857 6904 + mu 0 4 3904 3903 3857 3869 + f 4 -6847 -6905 -6860 6905 + mu 0 4 3905 3904 3869 3871 + f 4 -6840 -6906 -6868 6906 + mu 0 4 3906 3905 3871 3876 + f 4 -6842 -6907 -6874 6907 + mu 0 4 3907 3906 3876 3878 + f 4 -6844 -6908 -6876 6908 + mu 0 4 3908 3907 3878 3880 + f 4 -6729 -6909 -6848 -6888 + mu 0 4 3888 3909 3865 3864 + f 4 6909 -6816 -6899 6910 + mu 0 4 3910 3847 3846 3897 + f 4 -6719 6911 -6717 6912 + mu 0 4 3779 3778 3775 3776 + f 4 6913 -6785 -6913 -6784 + mu 0 4 3828 3829 3779 3776 + f 4 6914 -6911 -6897 6915 + mu 0 4 3911 3910 3897 3895 + f 4 6916 -6916 -6895 6917 + mu 0 4 3912 3911 3895 3893 + f 4 6918 6919 -6721 6920 + mu 0 4 3913 3914 3777 3780 + f 4 6921 6922 -6921 -6787 + mu 0 4 3830 3915 3913 3780 + f 4 6923 -6788 6924 -6923 + mu 0 4 3915 3831 3786 3913 + f 4 -6726 6925 -6919 -6925 + mu 0 4 3786 3785 3914 3913 + f 4 -6851 6926 6927 -6889 + mu 0 4 3864 3867 3916 3889 + f 4 -6928 6928 6929 -6891 + mu 0 4 3889 3916 3917 3891 + f 4 -6930 6930 -6918 -6893 + mu 0 4 3891 3917 3912 3893 + f 4 -6718 6931 6932 6933 + mu 0 4 3778 3777 3918 3919 + f 4 6934 6935 -6932 -6920 + mu 0 4 3914 3920 3918 3777 + f 4 6936 6937 6938 -6864 + mu 0 4 3767 3921 3922 3874 + f 4 -6937 -6705 6939 6940 + mu 0 4 3921 3767 3766 3923 + f 4 -6936 6941 -6938 6942 + mu 0 4 3918 3920 3924 3925 + f 4 -6941 6943 -6933 -6943 + mu 0 4 3925 3926 3919 3918 + f 4 6944 -6940 -6854 6945 + mu 0 4 3927 3923 3766 3853 + f 4 6946 -6944 -6945 6947 + mu 0 4 3928 3919 3926 3929 + f 4 6948 -6912 -6934 -6947 + mu 0 4 3928 3775 3778 3919 + f 4 -6701 -6871 -6939 6949 + mu 0 4 3763 3762 3874 3922 + f 4 -6935 -6926 -6725 6950 + mu 0 4 3920 3914 3785 3781 + f 4 -6950 -6942 -6951 -6724 + mu 0 4 3784 3924 3920 3781 + f 4 -6949 6951 6952 -6715 + mu 0 4 3775 3928 3930 3770 + f 4 6953 6954 -6946 -6827 + mu 0 4 3758 3931 3927 3853 + f 4 -6955 6955 -6952 -6948 + mu 0 4 3929 3932 3930 3928 + f 4 -6953 -6956 6956 -6709 + mu 0 4 3770 3930 3932 3771 + f 4 -6696 -6761 -6957 -6954 + mu 0 4 3758 3757 3810 3931 + f 4 6957 6958 -6758 6959 + mu 0 4 3933 3934 3805 3807 + f 4 -6756 -6959 6960 6961 + mu 0 4 3806 3805 3934 3935 + f 4 6962 6963 -6768 -6962 + mu 0 4 3935 3936 3816 3806 + f 4 -6753 -6964 6964 6965 + mu 0 4 3801 3802 3937 3938 + f 4 -6751 -6966 6966 6967 + mu 0 4 3799 3801 3938 3939 + f 4 -6748 -6968 6968 6969 + mu 0 4 3800 3799 3939 3940 + f 4 6970 6971 -6792 -6970 + mu 0 4 3940 3941 3834 3800 + f 4 -6818 -6972 6972 6973 + mu 0 4 3827 3834 3941 3942 + f 4 -6783 -6974 6974 6975 + mu 0 4 3828 3827 3942 3943 + f 4 6976 -6914 -6976 6977 + mu 0 4 3944 3829 3828 3943 + f 4 -6786 -6977 6978 6979 + mu 0 4 3830 3829 3944 3945 + f 4 6980 -6922 -6980 6981 + mu 0 4 3946 3915 3830 3945 + f 4 6982 -6924 -6981 6983 + mu 0 4 3947 3831 3915 3946 + f 4 -6789 -6983 6984 6985 + mu 0 4 3832 3831 3947 3948 + f 4 6986 6987 -6791 -6986 + mu 0 4 3948 3949 3833 3832 + f 4 6988 -6773 -6988 6989 + mu 0 4 3950 3822 3821 3951 + f 4 6990 -6869 -6989 6991 + mu 0 4 3952 3873 3822 3950 + f 4 -6863 -6991 6992 6993 + mu 0 4 3823 3873 3952 3953 + f 4 6994 -6776 -6994 6995 + mu 0 4 3954 3824 3823 3953 + f 4 -6853 -6995 6996 6997 + mu 0 4 3855 3824 3954 3955 + f 4 6998 -6830 -6998 6999 + mu 0 4 3956 3825 3855 3955 + f 4 -6780 -6999 7000 7001 + mu 0 4 3826 3825 3956 3957 + f 4 7002 -6808 -7002 7003 + mu 0 4 3958 3837 3826 3957 + f 4 -6798 -7003 7004 -6960 + mu 0 4 3807 3837 3958 3933 + f 4 -6685 7005 -6958 7006 + mu 0 4 3747 3746 3934 3933 + f 4 7007 -6799 -7007 -7005 + mu 0 4 3958 3838 3747 3933 + f 4 7008 -6809 -7008 -7004 + mu 0 4 3957 3842 3838 3958 + f 4 7009 -6824 -7009 -7001 + mu 0 4 3956 3851 3842 3957 + f 4 7010 -6832 -7010 -7000 + mu 0 4 3955 3856 3851 3956 + f 4 7011 -6855 -7011 -6997 + mu 0 4 3954 3868 3856 3955 + f 4 -6858 -7012 -6996 7012 + mu 0 4 3870 3868 3954 3953 + f 4 7013 -6866 -7013 -6993 + mu 0 4 3952 3875 3870 3953 + f 4 7014 -6872 -7014 -6992 + mu 0 4 3950 3877 3875 3952 + f 4 7015 -6875 -7015 -6990 + mu 0 4 3951 3879 3877 3950 + f 4 -6850 -7016 -6987 7016 + mu 0 4 3867 3866 3949 3948 + f 4 -6927 -7017 -6985 7017 + mu 0 4 3916 3867 3948 3947 + f 4 -6929 -7018 -6984 7018 + mu 0 4 3917 3916 3947 3946 + f 4 -6931 -7019 -6982 7019 + mu 0 4 3912 3917 3946 3945 + f 4 7020 -6917 -7020 -6979 + mu 0 4 3944 3911 3912 3945 + f 4 7021 -6915 -7021 -6978 + mu 0 4 3943 3910 3911 3944 + f 4 7022 -6910 -7022 -6975 + mu 0 4 3942 3847 3910 3943 + f 4 -6817 -7023 -6973 7023 + mu 0 4 3836 3847 3942 3941 + f 4 -6795 -7024 -6971 7024 + mu 0 4 3797 3836 3941 3940 + f 4 -6969 7025 -6743 -7025 + mu 0 4 3940 3939 3798 3797 + f 4 -6967 7026 -6746 -7026 + mu 0 4 3939 3938 3790 3798 + f 4 -6732 -7027 -6965 7027 + mu 0 4 3791 3790 3938 3937 + f 4 -6769 -7028 -6963 7028 + mu 0 4 3795 3818 3936 3935 + f 4 -6961 -7006 -6740 -7029 + mu 0 4 3935 3934 3746 3795 + f 4 7029 7030 7031 7032 + mu 0 4 3959 3960 3961 3962; + setAttr ".fc[3500:3999]" + f 4 7033 7034 7035 7036 + mu 0 4 3963 3964 3965 3966 + f 4 7037 -7030 7038 7039 + mu 0 4 3967 3960 3959 3968 + f 4 7040 7041 7042 7043 + mu 0 4 3969 3970 3971 3972 + f 4 7044 7045 -7039 -7033 + mu 0 4 3962 3973 3968 3959 + f 4 -7042 7046 7047 7048 + mu 0 4 3971 3970 3974 3975 + f 4 7049 7050 7051 7052 + mu 0 4 3976 3977 3978 3979 + f 4 -7052 7053 7054 7055 + mu 0 4 3979 3978 3980 3981 + f 4 -7055 7056 7057 7058 + mu 0 4 3981 3980 3982 3983 + f 4 7059 7060 7061 7062 + mu 0 4 3984 3985 3986 3987 + f 4 7063 7064 7065 -7062 + mu 0 4 3986 3988 3989 3987 + f 4 7066 -7038 7067 -7036 + mu 0 4 3965 3990 3991 3966 + f 4 7068 -7031 -7067 -7035 + mu 0 4 3964 3992 3990 3965 + f 4 7069 -7041 7070 7071 + mu 0 4 3993 3994 3995 3996 + f 4 7072 -7047 -7070 7073 + mu 0 4 3997 3998 3994 3993 + f 4 -7051 7074 7075 7076 + mu 0 4 3999 4000 4001 4002 + f 4 -7054 -7077 7077 7078 + mu 0 4 4003 3999 4002 4004 + f 4 7079 -7057 -7079 7080 + mu 0 4 4005 4006 4003 4004 + f 4 -7061 7081 7082 7083 + mu 0 4 4007 4008 4009 4010 + f 4 7084 7085 -7064 -7084 + mu 0 4 4010 4011 4012 4007 + f 4 7086 7087 7088 -7072 + mu 0 4 3996 4013 4014 3993 + f 4 7089 7090 -7087 -7071 + mu 0 4 3995 4015 4013 3996 + f 4 7091 -7090 -7044 7092 + mu 0 4 4016 4017 3969 3972 + f 4 7093 7094 -7093 -7043 + mu 0 4 3971 4018 4016 3972 + f 4 7095 7096 -37 7097 + mu 0 4 4019 4020 25 27 + f 4 -7097 7098 7099 -34 + mu 0 4 25 4020 4021 23 + f 4 7100 7101 -10 7102 + mu 0 4 4022 4023 5 7 + f 4 7103 -7103 -13 7104 + mu 0 4 4024 4022 7 9 + f 4 7105 7106 -31 -7100 + mu 0 4 4021 4025 21 23 + f 4 7107 -7105 -16 7108 + mu 0 4 4026 4027 13 12 + f 4 -19 7109 7110 -7109 + mu 0 4 12 15 4028 4026 + f 4 -22 7111 7112 -7110 + mu 0 4 15 17 4029 4028 + f 4 -25 7113 7114 -7112 + mu 0 4 17 19 4030 4029 + f 4 -28 -7107 7115 -7114 + mu 0 4 19 21 4025 4030 + f 4 7116 7117 7118 -7068 + mu 0 4 3991 4031 4032 3966 + f 4 7119 -7117 -7040 7120 + mu 0 4 4033 4034 3967 3968 + f 4 7121 7122 7123 7124 + mu 0 4 4035 4036 4037 4038 + f 4 7125 -7125 7126 7127 + mu 0 4 4039 4035 4038 4040 + f 4 7128 -7128 7129 7130 + mu 0 4 4041 4039 4040 4042 + f 4 7131 7132 7133 -7131 + mu 0 4 4042 4043 4044 4041 + f 4 7134 7135 7136 -7133 + mu 0 4 4043 4045 4046 4044 + f 4 7137 7138 7139 -7136 + mu 0 4 4047 4048 4049 4050 + f 4 7140 7141 -7121 -7046 + mu 0 4 3973 4051 4033 3968 + f 4 7142 -7094 -7049 7143 + mu 0 4 4052 4018 3971 3975 + f 4 7144 7145 -7037 -7119 + mu 0 4 4032 4053 3963 3966 + f 4 -7089 7146 7147 -7074 + mu 0 4 3993 4014 4054 3997 + f 4 7148 -7073 7149 -7075 + mu 0 4 4000 3998 3997 4001 + f 4 -7048 -7149 -7050 7150 + mu 0 4 3975 3974 3977 3976 + f 4 7151 -7144 -7151 7152 + mu 0 4 4055 4052 3975 3976 + f 4 -7142 7153 7154 7155 + mu 0 4 4033 4051 4056 4057 + f 4 7156 7157 -7120 -7156 + mu 0 4 4057 4058 4034 4033 + f 4 -7118 -7158 7158 7159 + mu 0 4 4032 4031 4059 4060 + f 4 7160 7161 -7145 -7160 + mu 0 4 4060 4061 4053 4032 + f 4 -7148 7162 7163 -7150 + mu 0 4 3997 4054 4062 4001 + f 4 7164 7165 7166 -7155 + mu 0 4 4056 4063 4064 4057 + f 4 7167 -7123 7168 -7166 + mu 0 4 4063 4037 4036 4064 + f 4 -3 7169 7170 7171 + mu 0 4 3 2 4065 4066 + f 4 -7 -7102 7172 -7170 + mu 0 4 2 5 4023 4065 + f 4 -40 7173 7174 -7098 + mu 0 4 27 29 4067 4019 + f 4 -43 7175 7176 -7174 + mu 0 4 29 31 4068 4067 + f 4 -46 7177 7178 -7176 + mu 0 4 31 33 4069 4068 + f 4 -48 -7172 7179 -7178 + mu 0 4 33 3 4066 4069 + f 4 -7137 7180 -7104 7181 + mu 0 4 4044 4046 4070 4071 + f 4 -7140 7182 -7101 -7181 + mu 0 4 4050 4049 4072 4073 + f 4 -7173 -7183 7183 7184 + mu 0 4 4074 4072 4049 4075 + f 4 -7171 -7185 7185 7186 + mu 0 4 4076 4074 4075 4077 + f 4 -7180 -7187 7187 7188 + mu 0 4 4078 4076 4077 4079 + f 4 -7179 -7189 7189 7190 + mu 0 4 4080 4078 4079 4081 + f 4 -7177 -7191 7191 7192 + mu 0 4 4082 4080 4081 4083 + f 4 -7175 -7193 7193 7194 + mu 0 4 4084 4082 4083 4060 + f 4 -7159 7195 -7096 -7195 + mu 0 4 4060 4059 4085 4084 + f 4 -7099 -7196 -7157 7196 + mu 0 4 4086 4087 4058 4057 + f 4 -7167 7197 -7106 -7197 + mu 0 4 4057 4064 4088 4086 + f 4 -7116 -7198 -7169 7198 + mu 0 4 4089 4088 4064 4036 + f 4 -7115 -7199 -7122 7199 + mu 0 4 4090 4089 4036 4035 + f 4 -7113 -7200 -7126 7200 + mu 0 4 4091 4090 4035 4039 + f 4 -7111 -7201 -7129 7201 + mu 0 4 4092 4091 4039 4041 + f 4 -7134 -7182 -7108 -7202 + mu 0 4 4041 4044 4071 4092 + f 4 7202 7203 7204 7205 + mu 0 4 4093 4094 4095 3989 + f 4 7206 7207 7208 -7204 + mu 0 4 4094 4096 4097 4095 + f 4 7209 7210 7211 -7208 + mu 0 4 4096 4098 4099 4097 + f 4 7212 7213 7214 -7211 + mu 0 4 4098 4100 4101 4099 + f 4 7215 7216 7217 -7214 + mu 0 4 4100 4102 4103 4101 + f 4 -7086 7218 7219 7220 + mu 0 4 4012 4011 4104 4105 + f 4 -7065 -7221 7221 -7206 + mu 0 4 3989 3988 4106 4093 + f 4 -7217 7222 -7153 7223 + mu 0 4 4103 4102 4055 3976 + f 4 -7205 7224 7225 -7066 + mu 0 4 3989 4095 4107 3987 + f 4 -7209 7226 7227 -7225 + mu 0 4 4095 4097 4108 4107 + f 4 -7212 7228 7229 -7227 + mu 0 4 4097 4099 4109 4108 + f 4 -7215 7230 7231 -7229 + mu 0 4 4099 4101 4110 4109 + f 4 -7218 7232 7233 -7231 + mu 0 4 4101 4103 4111 4110 + f 4 -7224 -7053 7234 -7233 + mu 0 4 4103 3976 3979 4111 + f 4 -7063 -7226 -7228 7235 + mu 0 4 3984 3987 4107 4108 + f 4 -7234 -7235 -7056 7236 + mu 0 4 4110 4111 3979 3981 + f 4 7237 -7080 7238 -7082 + mu 0 4 4008 4006 4005 4009 + f 4 -7058 -7238 -7060 7239 + mu 0 4 3983 3982 3985 3984 + f 4 7240 -7240 -7236 -7230 + mu 0 4 4109 3983 3984 4108 + f 4 -7241 -7232 -7237 -7059 + mu 0 4 3983 4109 4110 3981 + f 4 -7186 7241 7242 7243 + mu 0 4 4077 4075 4112 4113 + f 4 -7184 -7139 7244 -7242 + mu 0 4 4075 4049 4048 4112 + f 4 -7194 7245 7246 -7161 + mu 0 4 4060 4083 4114 4061 + f 4 -7192 7247 7248 -7246 + mu 0 4 4083 4081 4115 4114 + f 4 -7190 7249 7250 -7248 + mu 0 4 4081 4079 4116 4115 + f 4 -7188 -7244 7251 -7250 + mu 0 4 4079 4077 4113 4116 + f 4 7252 -7219 7253 7254 + mu 0 4 4117 4104 4011 4118 + f 4 7255 -7255 7256 7257 + mu 0 4 4119 4117 4118 4120 + f 4 7258 7259 7260 -7164 + mu 0 4 4062 4121 4122 4001 + f 4 7261 7262 7263 -7260 + mu 0 4 4121 4123 4124 4122 + f 4 7264 7265 7266 -7263 + mu 0 4 4123 4125 4126 4124 + f 4 7267 -7258 7268 -7266 + mu 0 4 4125 4119 4120 4126 + f 4 7269 7270 -7081 7271 + mu 0 4 4127 4128 4005 4004 + f 4 7272 7273 -7239 -7271 + mu 0 4 4128 4129 4009 4005 + f 4 7274 -7254 -7085 7275 + mu 0 4 4130 4118 4011 4010 + f 4 -7267 7276 -7270 7277 + mu 0 4 4124 4126 4128 4127 + f 4 -7269 7278 -7273 -7277 + mu 0 4 4126 4120 4129 4128 + f 4 -7275 7279 -7279 -7257 + mu 0 4 4118 4130 4129 4120 + f 4 -7280 -7276 -7083 -7274 + mu 0 4 4129 4130 4010 4009 + f 4 -7278 7280 7281 -7264 + mu 0 4 4124 4127 4131 4122 + f 4 -7282 7282 -7076 -7261 + mu 0 4 4122 4131 4002 4001 + f 4 -7272 -7078 -7283 -7281 + mu 0 4 4127 4004 4002 4131 + f 4 7283 7284 -7069 7285 + mu 0 4 4132 4133 3992 3964 + f 4 -7032 -7285 7286 7287 + mu 0 4 3962 3961 4134 4135 + f 4 7288 7289 -7045 -7288 + mu 0 4 4135 4136 3973 3962 + f 4 7290 7291 -7141 -7290 + mu 0 4 4136 4137 4051 3973 + f 4 -7154 -7292 7292 7293 + mu 0 4 4056 4051 4137 4138 + f 4 7294 -7165 -7294 7295 + mu 0 4 4139 4063 4056 4138 + f 4 7296 7297 -7168 -7295 + mu 0 4 4139 4140 4037 4063 + f 4 -7124 -7298 7298 7299 + mu 0 4 4038 4037 4140 4141 + f 4 -7127 -7300 7300 7301 + mu 0 4 4040 4038 4141 4142 + f 4 -7130 -7302 7302 7303 + mu 0 4 4042 4040 4142 4143 + f 4 7304 -7132 -7304 7305 + mu 0 4 4144 4043 4042 4143 + f 4 7306 7307 -7135 -7305 + mu 0 4 4144 4145 4045 4043 + f 4 7308 7309 -7138 -7308 + mu 0 4 4146 4147 4048 4047 + f 4 -7245 -7310 7310 7311 + mu 0 4 4112 4048 4147 4148 + f 4 -7243 -7312 7312 7313 + mu 0 4 4113 4112 4148 4149 + f 4 -7252 -7314 7314 7315 + mu 0 4 4116 4113 4149 4150 + f 4 -7251 -7316 7316 7317 + mu 0 4 4115 4116 4150 4151 + f 4 -7249 -7318 7318 7319 + mu 0 4 4114 4115 4151 4152 + f 4 -7247 -7320 7320 7321 + mu 0 4 4061 4114 4152 4153 + f 4 -7162 -7322 7322 7323 + mu 0 4 4053 4061 4153 4154 + f 4 -7146 -7324 7324 7325 + mu 0 4 3963 4053 4154 4155 + f 4 7326 -7286 -7034 -7326 + mu 0 4 4155 4132 3964 3963 + f 4 -7287 7327 -7092 7328 + mu 0 4 4135 4134 4017 4016 + f 4 -7091 -7328 -7284 7329 + mu 0 4 4013 4015 4133 4132 + f 4 -7088 -7330 -7327 7330 + mu 0 4 4014 4013 4132 4155 + f 4 -7147 -7331 -7325 7331 + mu 0 4 4054 4014 4155 4154 + f 4 -7163 -7332 -7323 7332 + mu 0 4 4062 4054 4154 4153 + f 4 -7321 7333 -7259 -7333 + mu 0 4 4153 4152 4121 4062 + f 4 -7319 7334 -7262 -7334 + mu 0 4 4152 4151 4123 4121 + f 4 -7317 7335 -7265 -7335 + mu 0 4 4151 4150 4125 4123 + f 4 -7315 7336 -7268 -7336 + mu 0 4 4150 4149 4119 4125 + f 4 -7313 7337 -7256 -7337 + mu 0 4 4149 4148 4117 4119 + f 4 -7311 7338 -7253 -7338 + mu 0 4 4148 4147 4104 4117 + f 4 -7220 -7339 -7309 7339 + mu 0 4 4105 4104 4147 4146 + f 4 -7222 -7340 -7307 7340 + mu 0 4 4093 4106 4145 4144 + f 4 -7306 7341 -7203 -7341 + mu 0 4 4144 4143 4094 4093 + f 4 -7303 7342 -7207 -7342 + mu 0 4 4143 4142 4096 4094 + f 4 -7301 7343 -7210 -7343 + mu 0 4 4142 4141 4098 4096 + f 4 -7299 7344 -7213 -7344 + mu 0 4 4141 4140 4100 4098 + f 4 -7297 7345 -7216 -7345 + mu 0 4 4140 4139 4102 4100 + f 4 -7223 -7346 -7296 7346 + mu 0 4 4055 4102 4139 4138 + f 4 7347 -7152 -7347 -7293 + mu 0 4 4137 4052 4055 4138 + f 4 7348 -7143 -7348 -7291 + mu 0 4 4136 4018 4052 4137 + f 4 -7095 -7349 -7289 -7329 + mu 0 4 4016 4018 4136 4135 + f 4 -4822 7349 7350 7351 + mu 0 4 2774 2772 4156 4157 + f 4 -4768 7352 7353 7354 + mu 0 4 2737 2736 4158 4159 + f 4 -4849 7355 7356 7357 + mu 0 4 2794 2792 4160 4161 + f 4 -4795 7358 7359 7360 + mu 0 4 2756 2754 4162 4163 + f 4 7361 7362 7363 7364 + mu 0 4 4164 4165 4166 4167 + f 4 7365 7366 -7362 7367 + mu 0 4 4168 4169 4165 4164 + f 4 7368 7369 7370 7371 + mu 0 4 4170 4171 4172 4173 + f 4 7372 7373 -7369 7374 + mu 0 4 4174 4175 4171 4170 + f 4 7375 7376 7377 7378 + mu 0 4 4176 4177 4178 4179 + f 4 -7378 7379 7380 7381 + mu 0 4 4179 4178 4180 4181 + f 4 7382 7383 7384 7385 + mu 0 4 4182 4183 4184 4185 + f 4 -7385 7386 7387 7388 + mu 0 4 4185 4184 4186 4187 + f 4 7389 7390 -7377 7391 + mu 0 4 4188 4189 4178 4177 + f 4 7392 7393 7394 7395 + mu 0 4 4190 4191 4192 4193 + f 4 7396 7397 7398 7399 + mu 0 4 4194 4195 4196 4197 + f 4 -7374 7400 7401 7402 + mu 0 4 4171 4175 4198 4199 + f 4 7403 7404 7405 7406 + mu 0 4 4200 4201 4202 4203 + f 4 7407 7408 7409 7410 + mu 0 4 4204 4205 4206 4207 + f 4 7411 7412 -7367 7413 + mu 0 4 4208 4209 4210 4211 + f 4 7414 7415 7416 7417 + mu 0 4 4212 4213 4214 4215 + f 4 7418 7419 7420 7421 + mu 0 4 4216 4217 4218 4219 + f 4 7422 7423 7424 7425 + mu 0 4 4220 4221 4222 4223 + f 4 -7384 7426 7427 7428 + mu 0 4 4224 4225 4226 4227 + f 4 7429 7430 7431 7432 + mu 0 4 4228 4229 4230 4231 + f 4 -7421 7433 -7412 7434 + mu 0 4 4219 4218 4209 4208 + f 4 7435 -7359 -4792 7436 + mu 0 4 4232 4162 2754 2752 + f 4 7437 -7437 -4789 7438 + mu 0 4 4233 4232 2752 2750 + f 4 7439 7440 -7419 7441 + mu 0 4 4234 4235 4217 4216 + f 4 7442 7443 -7439 -4786 + mu 0 4 2748 4236 4233 2750 + f 4 7444 7445 -7440 7446 + mu 0 4 4237 4238 4235 4234 + f 4 7447 7448 -7443 -4783 + mu 0 4 2746 4239 4236 2748 + f 4 -7417 7449 -7445 7450 + mu 0 4 4215 4214 4238 4237 + f 4 7451 7452 -7448 -4780 + mu 0 4 2744 4240 4239 2746 + f 4 7453 7454 -7452 -4777 + mu 0 4 2742 4241 4240 2744 + f 4 -7386 7455 -7415 7456 + mu 0 4 4182 4185 4213 4212 + f 4 7457 -7454 -4774 7458 + mu 0 4 4242 4241 2742 2740 + f 4 7459 -7459 -4771 -7355 + mu 0 4 4159 4242 2740 2737 + f 4 -7428 7460 -7433 7461 + mu 0 4 4227 4226 4228 4231 + f 4 7462 -7353 -4765 7463 + mu 0 4 4243 4244 2734 2732 + f 4 7464 -7464 -4762 7465 + mu 0 4 4245 4243 2732 2729 + f 4 7466 7467 -7425 7468 + mu 0 4 4246 4247 4223 4222 + f 4 7469 -7466 -4758 7470 + mu 0 4 4248 4245 2729 2728 + f 4 -7431 7471 7472 7473 + mu 0 4 4230 4229 4249 4250 + f 4 7474 -7471 -4810 7475 + mu 0 4 4251 4248 2728 2764 + f 4 -7473 7476 -7467 7477 + mu 0 4 4250 4249 4247 4246 + f 4 7478 -7476 -4807 7479 + mu 0 4 4252 4251 2764 2762 + f 4 7480 -7480 -4804 7481 + mu 0 4 4253 4252 2762 2760 + f 4 -7368 7482 -7423 7483 + mu 0 4 4168 4164 4221 4220 + f 4 7484 -7482 -4801 7485 + mu 0 4 4254 4253 2760 2758 + f 4 7486 -7486 -4798 -7361 + mu 0 4 4163 4254 2758 2756 + f 4 -7402 7487 7488 7489 + mu 0 4 4199 4198 4255 4256 + f 4 -7489 7490 -7404 7491 + mu 0 4 4256 4255 4201 4200 + f 4 7492 -7356 -4846 7493 + mu 0 4 4257 4160 2792 2790 + f 4 -4843 7494 7495 -7494 + mu 0 4 2790 2788 4258 4257 + f 4 7496 -7495 -4840 7497 + mu 0 4 4259 4258 2788 2786 + f 4 -7406 7498 7499 7500 + mu 0 4 4203 4202 4260 4261 + f 4 7501 -7498 -4837 7502 + mu 0 4 4262 4259 2786 2784 + f 4 -7500 7503 -7408 7504 + mu 0 4 4261 4260 4205 4204 + f 4 7505 7506 -7503 -4834 + mu 0 4 2782 4263 4262 2784 + f 4 7507 7508 -7506 -4831 + mu 0 4 2780 4264 4263 2782 + f 4 -7410 7509 -7379 7510 + mu 0 4 4207 4206 4265 4266 + f 4 7511 -7508 -4828 7512 + mu 0 4 4267 4264 2780 2777 + f 4 -7352 7513 -7513 -4825 + mu 0 4 2776 4268 4267 2777 + f 4 -7395 7514 -7390 7515 + mu 0 4 4193 4192 4189 4188 + f 4 7516 -7350 -4819 7517 + mu 0 4 4269 4156 2772 2770 + f 4 -4816 7518 7519 -7518 + mu 0 4 2770 2767 4270 4269 + f 4 7520 7521 -7393 7522 + mu 0 4 4271 4272 4191 4190 + f 4 -7399 7523 -7521 7524 + mu 0 4 4197 4196 4272 4271 + f 4 7525 -7519 -4812 7526 + mu 0 4 4273 4270 2767 2766 + f 4 -4864 7527 7528 -7527 + mu 0 4 2766 2802 4274 4273 + f 4 7529 -7528 -4861 7530 + mu 0 4 4275 4274 2802 2800 + f 4 7531 7532 -7397 7533 + mu 0 4 4276 4277 4195 4194 + f 4 -7375 7534 -7532 7535 + mu 0 4 4278 4279 4277 4276 + f 4 7536 7537 -4852 -7358 + mu 0 4 4161 4280 2796 2794 + f 4 7538 7539 -4855 -7538 + mu 0 4 4280 4281 2798 2796 + f 4 7540 -7531 -4858 -7540 + mu 0 4 4281 4275 2800 2798 + f 4 -7351 7541 -7376 7542 + mu 0 4 4282 4283 4177 4176 + f 4 -7514 -7543 -7510 7543 + mu 0 4 4284 4285 4265 4206 + f 4 -7409 7544 -7512 -7544 + mu 0 4 4206 4205 4286 4284 + f 4 -7509 -7545 -7504 7545 + mu 0 4 4287 4286 4205 4260 + f 4 -7507 -7546 -7499 7546 + mu 0 4 4288 4287 4260 4202 + f 4 -7405 7547 -7502 -7547 + mu 0 4 4202 4201 4289 4288 + f 4 7548 -7497 -7548 -7491 + mu 0 4 4255 4290 4289 4201 + f 4 -7496 -7549 -7488 7549 + mu 0 4 4291 4290 4255 4198 + f 4 7550 -7493 -7550 -7401 + mu 0 4 4175 4292 4291 4198 + f 4 -7357 -7551 -7373 7551 + mu 0 4 4293 4292 4175 4174 + f 4 -7536 7552 -7537 -7552 + mu 0 4 4278 4276 4294 4295 + f 4 -7534 7553 -7539 -7553 + mu 0 4 4276 4194 4296 4294 + f 4 7554 -7541 -7554 -7400 + mu 0 4 4197 4297 4296 4194 + f 4 7555 -7530 -7555 -7525 + mu 0 4 4271 4298 4297 4197 + f 4 -7529 -7556 -7523 7556 + mu 0 4 4299 4298 4271 4190 + f 4 -7396 7557 -7526 -7557 + mu 0 4 4190 4193 4300 4299 + f 4 -7520 -7558 -7516 7558 + mu 0 4 4301 4300 4193 4188 + f 4 -7542 -7517 -7559 -7392 + mu 0 4 4177 4283 4301 4188 + f 4 -7354 7559 -7383 7560 + mu 0 4 4302 4303 4183 4182 + f 4 -7457 7561 -7460 -7561 + mu 0 4 4182 4212 4304 4302 + f 4 -7418 7562 -7458 -7562 + mu 0 4 4212 4215 4305 4304 + f 4 -7455 -7563 -7451 7563 + mu 0 4 4306 4305 4215 4237 + f 4 -7453 -7564 -7447 7564 + mu 0 4 4307 4306 4237 4234 + f 4 -7449 -7565 -7442 7565 + mu 0 4 4308 4307 4234 4216 + f 4 -7444 -7566 -7422 7566 + mu 0 4 4309 4308 4216 4219 + f 4 -7435 7567 -7438 -7567 + mu 0 4 4219 4208 4310 4309 + f 4 -7414 7568 -7436 -7568 + mu 0 4 4208 4211 4311 4310 + f 4 -7360 -7569 -7366 7569 + mu 0 4 4312 4313 4169 4168 + f 4 -7484 7570 -7487 -7570 + mu 0 4 4168 4220 4314 4312 + f 4 -7426 7571 -7485 -7571 + mu 0 4 4220 4223 4315 4314 + f 4 7572 -7481 -7572 -7468 + mu 0 4 4247 4316 4315 4223 + f 4 7573 -7479 -7573 -7477 + mu 0 4 4249 4317 4316 4247 + f 4 7574 -7475 -7574 -7472 + mu 0 4 4229 4318 4317 4249 + f 4 7575 -7470 -7575 -7430 + mu 0 4 4228 4319 4318 4229 + f 4 -7461 7576 -7465 -7576 + mu 0 4 4228 4226 4320 4319 + f 4 -7427 -7560 -7463 -7577 + mu 0 4 4226 4225 4321 4320 + f 4 -7535 -7372 7577 7578 + mu 0 4 4277 4279 4322 4323 + f 4 -7515 7579 7580 7581 + mu 0 4 4189 4192 4324 4325 + f 4 -7524 7582 7583 7584 + mu 0 4 4272 4196 4326 4327 + f 4 -7391 -7582 7585 -7380 + mu 0 4 4178 4189 4325 4180 + f 4 -7394 7586 7587 -7580 + mu 0 4 4192 4191 4328 4324 + f 4 -7522 -7585 7588 -7587 + mu 0 4 4191 4272 4327 4328 + f 4 -7398 7589 7590 -7583 + mu 0 4 4196 4195 4329 4326 + f 4 -7533 -7579 7591 -7590 + mu 0 4 4195 4277 4323 4329 + f 4 -7403 7592 7593 -7370 + mu 0 4 4171 4199 4330 4172 + f 4 -7511 -7382 7594 7595 + mu 0 4 4207 4266 4331 4332 + f 4 -7407 7596 7597 7598 + mu 0 4 4200 4203 4333 4334 + f 4 -7411 -7596 7599 7600 + mu 0 4 4204 4207 4332 4335 + f 4 -7490 7601 7602 -7593 + mu 0 4 4199 4256 4336 4330 + f 4 -7492 -7599 7603 -7602 + mu 0 4 4256 4200 4334 4336 + f 4 -7501 7604 7605 -7597 + mu 0 4 4203 4261 4337 4333 + f 4 -7505 -7601 7606 -7605 + mu 0 4 4261 4204 4335 4337 + f 4 -7456 -7389 7607 7608 + mu 0 4 4213 4185 4187 4338 + f 4 -7416 -7609 7609 7610 + mu 0 4 4214 4213 4338 4339 + f 4 -7413 7611 7612 -7363 + mu 0 4 4210 4209 4340 4341 + f 4 -7450 -7611 7613 7614 + mu 0 4 4238 4214 4339 4342 + f 4 -7434 7615 7616 -7612 + mu 0 4 4209 4218 4343 4340 + f 4 -7420 7617 7618 -7616 + mu 0 4 4218 4217 4344 4343 + f 4 -7441 7619 7620 -7618 + mu 0 4 4217 4235 4345 4344 + f 4 -7446 -7615 7621 -7620 + mu 0 4 4235 4238 4342 4345 + f 4 -7483 -7365 7622 7623 + mu 0 4 4221 4164 4167 4346 + f 4 -7424 -7624 7624 7625 + mu 0 4 4222 4221 4346 4347 + f 4 -7429 7626 7627 -7387 + mu 0 4 4224 4227 4348 4349 + f 4 -7469 -7626 7628 7629 + mu 0 4 4246 4222 4347 4350 + f 4 -7462 7630 7631 -7627 + mu 0 4 4227 4231 4351 4348 + f 4 -7432 7632 7633 -7631 + mu 0 4 4231 4230 4352 4351 + f 4 -7474 7634 7635 -7633 + mu 0 4 4230 4250 4353 4352 + f 4 -7478 -7630 7636 -7635 + mu 0 4 4250 4246 4350 4353 + f 4 -7364 7637 7638 7639 + mu 0 4 4167 4166 4354 4355 + f 4 -7623 -7640 7640 7641 + mu 0 4 4346 4167 4355 4356 + f 4 -7625 -7642 7642 7643 + mu 0 4 4347 4346 4356 4357 + f 4 -7629 -7644 7644 7645 + mu 0 4 4350 4347 4357 4358 + f 4 -7637 -7646 7646 7647 + mu 0 4 4353 4350 4358 4359 + f 4 -7636 -7648 7648 7649 + mu 0 4 4352 4353 4359 4360 + f 4 -7634 -7650 7650 7651 + mu 0 4 4351 4352 4360 4361 + f 4 -7632 -7652 7652 7653 + mu 0 4 4348 4351 4361 4362 + f 4 -7628 -7654 7654 7655 + mu 0 4 4349 4348 4362 4363 + f 4 -7388 -7656 7656 7657 + mu 0 4 4187 4186 4364 4365 + f 4 -7608 -7658 7658 7659 + mu 0 4 4338 4187 4365 4366 + f 4 -7610 -7660 7660 7661 + mu 0 4 4339 4338 4366 4367 + f 4 -7614 -7662 7662 7663 + mu 0 4 4342 4339 4367 4368 + f 4 -7622 -7664 7664 7665 + mu 0 4 4345 4342 4368 4369 + f 4 -7621 -7666 7666 7667 + mu 0 4 4344 4345 4369 4370 + f 4 -7619 -7668 7668 7669 + mu 0 4 4343 4344 4370 4371 + f 4 -7617 -7670 7670 7671 + mu 0 4 4340 4343 4371 4372 + f 4 -7613 -7672 7672 -7638 + mu 0 4 4341 4340 4372 4373 + f 4 -7371 7673 7674 7675 + mu 0 4 4173 4172 4374 4375 + f 4 -7578 -7676 7676 7677 + mu 0 4 4323 4322 4376 4377 + f 4 -7592 -7678 7678 7679 + mu 0 4 4329 4323 4377 4378 + f 4 -7591 -7680 7680 7681 + mu 0 4 4326 4329 4378 4379 + f 4 -7584 -7682 7682 7683 + mu 0 4 4327 4326 4379 4380 + f 4 -7589 -7684 7684 7685 + mu 0 4 4328 4327 4380 4381 + f 4 -7588 -7686 7686 7687 + mu 0 4 4324 4328 4381 4382 + f 4 -7581 -7688 7688 7689 + mu 0 4 4325 4324 4382 4383 + f 4 -7586 -7690 7690 7691 + mu 0 4 4180 4325 4383 4384 + f 4 -7381 -7692 7692 7693 + mu 0 4 4181 4180 4384 4385 + f 4 -7595 -7694 7694 7695 + mu 0 4 4332 4331 4385 4386 + f 4 -7600 -7696 7696 7697 + mu 0 4 4335 4332 4386 4387 + f 4 -7607 -7698 7698 7699 + mu 0 4 4337 4335 4387 4388 + f 4 -7606 -7700 7700 7701 + mu 0 4 4333 4337 4388 4389 + f 4 -7598 -7702 7702 7703 + mu 0 4 4334 4333 4389 4390 + f 4 -7604 -7704 7704 7705 + mu 0 4 4336 4334 4390 4391 + f 4 -7603 -7706 7706 7707 + mu 0 4 4330 4336 4391 4392 + f 4 -7594 -7708 7708 -7674 + mu 0 4 4172 4330 4392 4374 + f 4 7709 7710 7711 7712 + mu 0 4 4393 4394 4395 4396 + f 4 7713 7714 7715 7716 + mu 0 4 4397 4398 4399 4400 + f 4 7717 7718 7719 7720 + mu 0 4 4401 4402 4403 4404 + f 4 7721 7722 -7718 7723 + mu 0 4 4405 4406 4402 4401 + f 4 7724 7725 7726 -7723 + mu 0 4 4406 4407 4408 4402 + f 4 7727 7728 7729 -7724 + mu 0 4 4401 4409 4410 4405 + f 4 7730 7731 7732 7733 + mu 0 4 4411 4412 4413 4414 + f 4 7734 7735 -7731 7736 + mu 0 4 4415 4416 4412 4411 + f 4 7737 7738 7739 7740 + mu 0 4 4417 4418 4419 4420 + f 4 7741 7742 7743 -7736 + mu 0 4 4416 4421 4422 4412 + f 4 -7733 7744 7745 7746 + mu 0 4 4414 4413 4423 4424 + f 4 -7740 7747 7748 7749 + mu 0 4 4420 4419 4425 4426 + f 4 -7744 7750 7751 -7732 + mu 0 4 4412 4422 4427 4413 + f 4 -7743 7752 7753 7754 + mu 0 4 4422 4421 4428 4429 + f 4 -7751 -7755 7755 7756 + mu 0 4 4427 4422 4429 4430 + f 4 -7739 7757 -7737 7758 + mu 0 4 4419 4418 4415 4411 + f 4 -7748 -7759 -7734 7759 + mu 0 4 4425 4419 4411 4414 + f 4 7760 7761 -7722 7762 + mu 0 4 4431 4432 4406 4405 + f 4 7763 7764 -7725 -7762 + mu 0 4 4432 4433 4407 4406 + f 4 -7730 7765 7766 -7763 + mu 0 4 4405 4410 4434 4431 + f 4 -7716 7767 -7761 7768 + mu 0 4 4400 4399 4432 4431 + f 4 -7765 7769 7770 7771 + mu 0 4 4407 4433 4435 4436 + f 4 -7726 -7772 7772 7773 + mu 0 4 4408 4407 4436 4437 + f 4 7774 -7764 -7768 7775 + mu 0 4 4438 4433 4432 4399 + f 4 -7729 7776 7777 7778 + mu 0 4 4410 4409 4439 4440 + f 4 -7766 -7779 7779 7780 + mu 0 4 4434 4410 4440 4441 + f 4 7781 7782 -7769 -7767 + mu 0 4 4434 4442 4400 4431 + f 4 -7782 -7781 7783 7784 + mu 0 4 4442 4434 4441 4443 + f 4 -7783 -7785 7785 -7717 + mu 0 4 4400 4442 4443 4397 + f 4 -7776 -7715 7786 7787 + mu 0 4 4438 4399 4398 4444 + f 4 -7775 -7788 7788 -7770 + mu 0 4 4433 4438 4444 4435 + f 4 -7746 7789 7790 7791 + mu 0 4 4424 4423 4445 4446 + f 4 7792 -7760 -7747 7793 + mu 0 4 4447 4425 4414 4424 + f 4 7794 7795 -7745 -7752 + mu 0 4 4427 4448 4423 4413 + f 4 7796 7797 -7795 -7757 + mu 0 4 4430 4449 4448 4427 + f 4 -7796 -7798 7798 -7790 + mu 0 4 4423 4448 4449 4445 + f 4 -7794 -7792 7799 7800 + mu 0 4 4447 4424 4446 4450 + f 4 -7793 -7801 7801 -7749 + mu 0 4 4425 4447 4450 4426 + f 4 7802 7803 -7738 7804 + mu 0 4 4451 4452 4418 4417 + f 4 7805 7806 -7753 7807 + mu 0 4 4453 4454 4428 4421 + f 4 7808 7809 -7735 7810 + mu 0 4 4455 4456 4416 4415 + f 4 7811 -7808 -7742 -7810 + mu 0 4 4456 4453 4421 4416 + f 4 -7811 -7758 -7804 7812 + mu 0 4 4455 4415 4418 4452 + f 4 -7720 7813 7814 7815 + mu 0 4 4404 4403 4457 4458 + f 4 7816 7817 -7728 -7721 + mu 0 4 4404 4459 4409 4401 + f 4 7818 -7777 -7818 7819 + mu 0 4 4460 4439 4409 4459 + f 4 7820 7821 -7719 -7727 + mu 0 4 4408 4461 4403 4402 + f 4 7822 -7821 -7774 7823 + mu 0 4 4462 4461 4408 4437 + f 4 7824 7825 -7809 7826 + mu 0 4 4463 4464 4456 4455 + f 4 -7812 -7826 7827 7828 + mu 0 4 4453 4456 4464 4465 + f 4 -7712 7829 -7825 7830 + mu 0 4 4396 4395 4464 4463 + f 4 7831 7832 -7828 -7830 + mu 0 4 4395 4466 4465 4464 + f 4 -7832 -7711 7833 7834 + mu 0 4 4466 4395 4394 4467 + f 4 -7833 -7835 7835 7836 + mu 0 4 4465 4466 4467 4468 + f 4 -7829 -7837 7837 -7806 + mu 0 4 4453 4465 4468 4454 + f 4 7838 7839 -7803 7840 + mu 0 4 4469 4470 4452 4451 + f 4 7841 7842 7843 -7713 + mu 0 4 4396 4471 4472 4393 + f 4 -7842 -7831 7844 7845 + mu 0 4 4471 4396 4463 4470 + f 4 -7845 -7827 -7813 -7840 + mu 0 4 4470 4463 4455 4452 + f 4 -7846 -7839 7846 -7843 + mu 0 4 4471 4470 4469 4472 + f 4 -7815 7847 7848 7849 + mu 0 4 4458 4457 4473 4474 + f 4 7850 -7814 -7822 7851 + mu 0 4 4475 4457 4403 4461 + f 4 7852 -7817 -7816 7853 + mu 0 4 4476 4459 4404 4458 + f 4 -7849 7854 7855 7856 + mu 0 4 4474 4473 4477 4478 + f 4 -7854 -7850 7857 7858 + mu 0 4 4476 4458 4474 4479 + f 4 -7853 7859 7860 -7820 + mu 0 4 4459 4476 4480 4460 + f 4 -7859 7861 7862 -7860 + mu 0 4 4476 4479 4481 4480 + f 4 -7858 -7857 7863 -7862 + mu 0 4 4479 4474 4478 4481 + f 4 7864 -7848 -7851 7865 + mu 0 4 4482 4473 4457 4475 + f 4 -7823 7866 7867 -7852 + mu 0 4 4461 4462 4483 4475 + f 4 -7866 -7868 7868 7869 + mu 0 4 4482 4475 4483 4484 + f 4 -7865 -7870 7870 -7855 + mu 0 4 4473 4482 4484 4477 + f 4 -7639 7871 -7714 7872 + mu 0 4 4355 4354 4485 4397 + f 4 -7641 -7873 -7786 7873 + mu 0 4 4356 4355 4397 4443 + f 4 -7643 -7874 -7784 7874 + mu 0 4 4357 4356 4443 4441 + f 4 -7645 -7875 -7780 7875 + mu 0 4 4358 4357 4441 4440 + f 4 -7647 -7876 -7778 7876 + mu 0 4 4359 4358 4440 4439 + f 4 -7649 -7877 -7819 7877 + mu 0 4 4360 4359 4439 4460 + f 4 -7651 -7878 -7861 7878 + mu 0 4 4361 4360 4460 4480 + f 4 -7653 -7879 -7863 7879 + mu 0 4 4362 4361 4480 4486 + f 4 -7655 -7880 -7864 7880 + mu 0 4 4363 4362 4486 4487 + f 4 -7657 -7881 -7856 7881 + mu 0 4 4365 4364 4488 4489 + f 4 -7659 -7882 -7871 7882 + mu 0 4 4366 4365 4489 4484 + f 4 -7661 -7883 -7869 7883 + mu 0 4 4367 4366 4484 4483 + f 4 -7663 -7884 -7867 7884 + mu 0 4 4368 4367 4483 4462 + f 4 -7665 -7885 -7824 7885 + mu 0 4 4369 4368 4462 4437 + f 4 -7667 -7886 -7773 7886 + mu 0 4 4370 4369 4437 4436 + f 4 -7669 -7887 -7771 7887 + mu 0 4 4371 4370 4436 4435 + f 4 -7671 -7888 -7789 7888 + mu 0 4 4372 4371 4435 4444 + f 4 -7673 -7889 -7787 -7872 + mu 0 4 4373 4372 4444 4490 + f 4 -7675 7889 -7791 7890 + mu 0 4 4375 4374 4446 4491 + f 4 -7677 -7891 -7799 7891 + mu 0 4 4377 4376 4492 4449 + f 4 -7679 -7892 -7797 7892 + mu 0 4 4378 4377 4449 4430 + f 4 -7681 -7893 -7756 7893 + mu 0 4 4379 4378 4430 4429 + f 4 -7683 -7894 -7754 7894 + mu 0 4 4380 4379 4429 4428 + f 4 -7685 -7895 -7807 7895 + mu 0 4 4381 4380 4428 4454 + f 4 -7687 -7896 -7838 7896 + mu 0 4 4382 4381 4454 4468 + f 4 -7689 -7897 -7836 7897 + mu 0 4 4383 4382 4468 4467 + f 4 -7691 -7898 -7834 7898 + mu 0 4 4384 4383 4467 4394 + f 4 -7693 -7899 -7710 7899 + mu 0 4 4385 4384 4394 4393 + f 4 -7695 -7900 -7844 7900 + mu 0 4 4386 4385 4393 4472 + f 4 -7697 -7901 -7847 7901 + mu 0 4 4387 4386 4472 4469 + f 4 -7699 -7902 -7841 7902 + mu 0 4 4388 4387 4469 4451 + f 4 -7701 -7903 -7805 7903 + mu 0 4 4389 4388 4451 4417 + f 4 -7703 -7904 -7741 7904 + mu 0 4 4390 4389 4417 4420 + f 4 -7705 -7905 -7750 7905 + mu 0 4 4391 4390 4420 4426 + f 4 -7707 -7906 -7802 7906 + mu 0 4 4392 4391 4426 4450 + f 4 -7709 -7907 -7800 -7890 + mu 0 4 4374 4392 4450 4446 + f 4 -564 7907 7908 7909 + mu 0 4 4493 4494 4495 4496 + f 4 -568 7910 7911 -7908 + mu 0 4 4497 4498 4499 4500 + f 4 -569 7912 7913 7914 + mu 0 4 4501 4502 4503 4504 + f 4 -572 -7915 7915 7916 + mu 0 4 4505 4501 4504 4506 + f 4 -574 7917 7918 -7911 + mu 0 4 4498 4507 4508 4499 + f 4 -576 -7917 7919 7920 + mu 0 4 4509 4505 4506 4510 + f 4 -578 -7910 7921 7922 + mu 0 4 4511 4493 4496 4512 + f 4 -581 7923 7924 -7913 + mu 0 4 4502 4513 4514 4503 + f 4 -582 7925 7926 -7924 + mu 0 4 4513 4515 4516 4514 + f 4 -584 -7923 7927 7928 + mu 0 4 4517 4511 4512 4518 + f 4 -587 7929 7930 -7926 + mu 0 4 4515 4519 4520 4516 + f 4 -588 -7929 7931 -7930 + mu 0 4 4519 4517 4518 4520 + f 4 -589 -7921 7932 7933 + mu 0 4 4521 4509 4510 4522 + f 4 -592 7934 7935 -7918 + mu 0 4 4507 4523 4524 4508 + f 4 -594 -7934 7936 7937 + mu 0 4 4525 4521 4522 4526 + f 4 -595 -7938 7938 -7935 + mu 0 4 4523 4525 4526 4524 + f 4 -7909 7939 7940 7941 + mu 0 4 4496 4495 4527 4528 + f 4 -7912 7942 7943 -7940 + mu 0 4 4500 4499 4529 4530 + f 4 -7914 7944 7945 7946 + mu 0 4 4504 4503 4531 4532 + f 4 -7916 -7947 7947 7948 + mu 0 4 4506 4504 4532 4533 + f 4 -7919 7949 7950 -7943 + mu 0 4 4499 4508 4534 4529 + f 4 -7920 -7949 7951 7952 + mu 0 4 4510 4506 4533 4535 + f 4 -7922 -7942 7953 7954 + mu 0 4 4512 4496 4528 4536 + f 4 -7925 7955 7956 -7945 + mu 0 4 4503 4514 4537 4531 + f 4 -7927 7957 7958 -7956 + mu 0 4 4514 4516 4538 4537 + f 4 -7928 -7955 7959 7960 + mu 0 4 4518 4512 4536 4539 + f 4 -7931 7961 7962 -7958 + mu 0 4 4516 4520 4540 4538 + f 4 -7932 -7961 7963 -7962 + mu 0 4 4520 4518 4539 4540 + f 4 -7933 -7953 7964 7965 + mu 0 4 4522 4510 4535 4541 + f 4 -7936 7966 7967 -7950 + mu 0 4 4508 4524 4542 4534 + f 4 -7937 -7966 7968 7969 + mu 0 4 4526 4522 4541 4543 + f 4 -7939 -7970 7970 -7967 + mu 0 4 4524 4526 4543 4542 + f 4 -7941 7971 7972 7973 + mu 0 4 4528 4527 4544 4545 + f 4 -7944 7974 7975 -7972 + mu 0 4 4530 4529 4546 4547 + f 4 -7946 7976 7977 7978 + mu 0 4 4532 4531 4548 4549 + f 4 -7948 -7979 7979 7980 + mu 0 4 4533 4532 4549 4550 + f 4 -7951 7981 7982 -7975 + mu 0 4 4529 4534 4551 4546 + f 4 -7952 -7981 7983 7984 + mu 0 4 4535 4533 4550 4552 + f 4 -7954 -7974 7985 7986 + mu 0 4 4536 4528 4545 4553 + f 4 -7957 7987 7988 -7977 + mu 0 4 4531 4537 4554 4548 + f 4 -7959 7989 7990 -7988 + mu 0 4 4537 4538 4555 4554 + f 4 -7960 -7987 7991 7992 + mu 0 4 4539 4536 4553 4556 + f 4 -7963 7993 7994 -7990 + mu 0 4 4538 4540 4557 4555 + f 4 -7964 -7993 7995 -7994 + mu 0 4 4540 4539 4556 4557 + f 4 -7965 -7985 7996 7997 + mu 0 4 4541 4535 4552 4558 + f 4 -7968 7998 7999 -7982 + mu 0 4 4534 4542 4559 4551 + f 4 -7969 -7998 8000 8001 + mu 0 4 4543 4541 4558 4560 + f 4 -7971 -8002 8002 -7999 + mu 0 4 4542 4543 4560 4559 + f 4 -7973 8003 8004 8005 + mu 0 4 4545 4544 4561 4562; + setAttr ".fc[4000:4254]" + f 4 -7976 8006 8007 -8004 + mu 0 4 4547 4546 4563 4564 + f 4 -7978 8008 8009 8010 + mu 0 4 4549 4548 4565 4566 + f 4 -7980 -8011 8011 8012 + mu 0 4 4550 4549 4566 4567 + f 4 -7983 8013 8014 -8007 + mu 0 4 4546 4551 4568 4563 + f 4 -7984 -8013 8015 8016 + mu 0 4 4552 4550 4567 4569 + f 4 -7986 -8006 8017 8018 + mu 0 4 4553 4545 4562 4570 + f 4 -7989 8019 8020 -8009 + mu 0 4 4548 4554 4571 4565 + f 4 -7991 8021 8022 -8020 + mu 0 4 4554 4555 4572 4571 + f 4 -7992 -8019 8023 8024 + mu 0 4 4556 4553 4570 4573 + f 4 -7995 8025 8026 -8022 + mu 0 4 4555 4557 4574 4572 + f 4 -7996 -8025 8027 -8026 + mu 0 4 4557 4556 4573 4574 + f 4 -7997 -8017 8028 8029 + mu 0 4 4558 4552 4569 4575 + f 4 -8000 8030 8031 -8014 + mu 0 4 4551 4559 4576 4568 + f 4 -8001 -8030 8032 8033 + mu 0 4 4560 4558 4575 4577 + f 4 -8003 -8034 8034 -8031 + mu 0 4 4559 4560 4577 4576 + f 4 -8005 8035 8036 8037 + mu 0 4 4562 4561 4578 4579 + f 4 -8008 8038 8039 -8036 + mu 0 4 4564 4563 4580 4581 + f 4 -8010 8040 8041 8042 + mu 0 4 4566 4565 4582 4583 + f 4 -8012 -8043 8043 8044 + mu 0 4 4567 4566 4583 4584 + f 4 -8015 8045 8046 -8039 + mu 0 4 4563 4568 4585 4580 + f 4 -8016 -8045 8047 8048 + mu 0 4 4569 4567 4584 4586 + f 4 -8018 -8038 8049 8050 + mu 0 4 4570 4562 4579 4587 + f 4 -8021 8051 8052 -8041 + mu 0 4 4565 4571 4588 4582 + f 4 -8023 8053 8054 -8052 + mu 0 4 4571 4572 4589 4588 + f 4 -8024 -8051 8055 8056 + mu 0 4 4573 4570 4587 4590 + f 4 -8027 8057 8058 -8054 + mu 0 4 4572 4574 4591 4589 + f 4 -8028 -8057 8059 -8058 + mu 0 4 4574 4573 4590 4591 + f 4 -8029 -8049 8060 8061 + mu 0 4 4575 4569 4586 4592 + f 4 -8032 8062 8063 -8046 + mu 0 4 4568 4576 4593 4585 + f 4 -8033 -8062 8064 8065 + mu 0 4 4577 4575 4592 4594 + f 4 -8035 -8066 8066 -8063 + mu 0 4 4576 4577 4594 4593 + f 4 -8037 8067 8068 8069 + mu 0 4 4579 4578 4595 4596 + f 4 -8040 8070 8071 -8068 + mu 0 4 4581 4580 4597 4598 + f 4 -8042 8072 8073 8074 + mu 0 4 4583 4582 4599 4600 + f 4 -8044 -8075 8075 8076 + mu 0 4 4584 4583 4600 4601 + f 4 -8047 8077 8078 -8071 + mu 0 4 4580 4585 4602 4597 + f 4 -8048 -8077 8079 8080 + mu 0 4 4586 4584 4601 4603 + f 4 -8050 -8070 8081 8082 + mu 0 4 4587 4579 4596 4604 + f 4 -8053 8083 8084 -8073 + mu 0 4 4582 4588 4605 4599 + f 4 -8055 8085 8086 -8084 + mu 0 4 4588 4589 4606 4605 + f 4 -8056 -8083 8087 8088 + mu 0 4 4590 4587 4604 4607 + f 4 -8059 8089 8090 -8086 + mu 0 4 4589 4591 4608 4606 + f 4 -8060 -8089 8091 -8090 + mu 0 4 4591 4590 4607 4608 + f 4 -8061 -8081 8092 8093 + mu 0 4 4592 4586 4603 4609 + f 4 -8064 8094 8095 -8078 + mu 0 4 4585 4593 4610 4602 + f 4 -8065 -8094 8096 8097 + mu 0 4 4594 4592 4609 4611 + f 4 -8067 -8098 8098 -8095 + mu 0 4 4593 4594 4611 4610 + f 4 -8069 8099 8100 8101 + mu 0 4 4596 4595 4612 4613 + f 4 -8072 8102 8103 -8100 + mu 0 4 4598 4597 4614 4615 + f 4 -8074 8104 8105 8106 + mu 0 4 4600 4599 4616 4617 + f 4 -8076 -8107 8107 8108 + mu 0 4 4601 4600 4617 4618 + f 4 -8079 8109 8110 -8103 + mu 0 4 4597 4602 4619 4614 + f 4 -8080 -8109 8111 8112 + mu 0 4 4603 4601 4618 4620 + f 4 -8082 -8102 8113 8114 + mu 0 4 4604 4596 4613 4621 + f 4 -8085 8115 8116 -8105 + mu 0 4 4599 4605 4622 4616 + f 4 -8087 8117 8118 -8116 + mu 0 4 4605 4606 4623 4622 + f 4 -8088 -8115 8119 8120 + mu 0 4 4607 4604 4621 4624 + f 4 -8091 8121 8122 -8118 + mu 0 4 4606 4608 4625 4623 + f 4 -8092 -8121 8123 -8122 + mu 0 4 4608 4607 4624 4625 + f 4 -8093 -8113 8124 8125 + mu 0 4 4609 4603 4620 4626 + f 4 -8096 8126 8127 -8110 + mu 0 4 4602 4610 4627 4619 + f 4 -8097 -8126 8128 8129 + mu 0 4 4611 4609 4626 4628 + f 4 -8099 -8130 8130 -8127 + mu 0 4 4610 4611 4628 4627 + f 4 -8101 8131 8132 8133 + mu 0 4 4613 4612 4629 4630 + f 4 -8104 8134 8135 -8132 + mu 0 4 4615 4614 4631 4632 + f 4 -8106 8136 8137 8138 + mu 0 4 4617 4616 4633 4634 + f 4 -8108 -8139 8139 8140 + mu 0 4 4618 4617 4634 4635 + f 4 -8111 8141 8142 -8135 + mu 0 4 4614 4619 4636 4631 + f 4 -8112 -8141 8143 8144 + mu 0 4 4620 4618 4635 4637 + f 4 -8114 -8134 8145 8146 + mu 0 4 4621 4613 4630 4638 + f 4 -8117 8147 8148 -8137 + mu 0 4 4616 4622 4639 4633 + f 4 -8119 8149 8150 -8148 + mu 0 4 4622 4623 4640 4639 + f 4 -8120 -8147 8151 8152 + mu 0 4 4624 4621 4638 4641 + f 4 -8123 8153 8154 -8150 + mu 0 4 4623 4625 4642 4640 + f 4 -8124 -8153 8155 -8154 + mu 0 4 4625 4624 4641 4642 + f 4 -8125 -8145 8156 8157 + mu 0 4 4626 4620 4637 4643 + f 4 -8128 8158 8159 -8142 + mu 0 4 4619 4627 4644 4636 + f 4 -8129 -8158 8160 8161 + mu 0 4 4628 4626 4643 4645 + f 4 -8131 -8162 8162 -8159 + mu 0 4 4627 4628 4645 4644 + f 4 -8133 8163 8164 8165 + mu 0 4 4630 4629 4646 4647 + f 4 -8136 8166 8167 -8164 + mu 0 4 4632 4631 4648 4649 + f 4 -8138 8168 8169 8170 + mu 0 4 4634 4633 4650 4651 + f 4 -8140 -8171 8171 8172 + mu 0 4 4635 4634 4651 4652 + f 4 -8143 8173 8174 -8167 + mu 0 4 4631 4636 4653 4648 + f 4 -8144 -8173 8175 8176 + mu 0 4 4637 4635 4652 4654 + f 4 -8146 -8166 8177 8178 + mu 0 4 4638 4630 4647 4655 + f 4 -8149 8179 8180 -8169 + mu 0 4 4633 4639 4656 4650 + f 4 -8151 8181 8182 -8180 + mu 0 4 4639 4640 4657 4656 + f 4 -8152 -8179 8183 8184 + mu 0 4 4641 4638 4655 4658 + f 4 -8155 8185 8186 -8182 + mu 0 4 4640 4642 4659 4657 + f 4 -8156 -8185 8187 -8186 + mu 0 4 4642 4641 4658 4659 + f 4 -8157 -8177 8188 8189 + mu 0 4 4643 4637 4654 4660 + f 4 -8160 8190 8191 -8174 + mu 0 4 4636 4644 4661 4653 + f 4 -8161 -8190 8192 8193 + mu 0 4 4645 4643 4660 4662 + f 4 -8163 -8194 8194 -8191 + mu 0 4 4644 4645 4662 4661 + f 4 -8165 8195 8196 8197 + mu 0 4 4647 4646 4663 4664 + f 4 -8168 8198 8199 -8196 + mu 0 4 4649 4648 4665 4666 + f 4 -8170 8200 8201 8202 + mu 0 4 4651 4650 4667 4668 + f 4 -8172 -8203 8203 8204 + mu 0 4 4652 4651 4668 4669 + f 4 -8175 8205 8206 -8199 + mu 0 4 4648 4653 4670 4665 + f 4 -8176 -8205 8207 8208 + mu 0 4 4654 4652 4669 4671 + f 4 -8178 -8198 8209 8210 + mu 0 4 4655 4647 4664 4672 + f 4 -8181 8211 8212 -8201 + mu 0 4 4650 4656 4673 4667 + f 4 -8183 8213 8214 -8212 + mu 0 4 4656 4657 4674 4673 + f 4 -8184 -8211 8215 8216 + mu 0 4 4658 4655 4672 4675 + f 4 -8187 8217 8218 -8214 + mu 0 4 4657 4659 4676 4674 + f 4 -8188 -8217 8219 -8218 + mu 0 4 4659 4658 4675 4676 + f 4 -8189 -8209 8220 8221 + mu 0 4 4660 4654 4671 4677 + f 4 -8192 8222 8223 -8206 + mu 0 4 4653 4661 4678 4670 + f 4 -8193 -8222 8224 8225 + mu 0 4 4662 4660 4677 4679 + f 4 -8195 -8226 8226 -8223 + mu 0 4 4661 4662 4679 4678 + f 4 -8197 8227 8228 8229 + mu 0 4 4664 4663 4680 4681 + f 4 -8200 8230 8231 -8228 + mu 0 4 4666 4665 4682 4683 + f 4 -8202 8232 8233 8234 + mu 0 4 4668 4667 4684 4685 + f 4 -8204 -8235 8235 8236 + mu 0 4 4669 4668 4685 4686 + f 4 -8207 8237 8238 -8231 + mu 0 4 4665 4670 4687 4682 + f 4 -8208 -8237 8239 8240 + mu 0 4 4671 4669 4686 4688 + f 4 -8210 -8230 8241 8242 + mu 0 4 4672 4664 4681 4689 + f 4 -8213 8243 8244 -8233 + mu 0 4 4667 4673 4690 4684 + f 4 -8215 8245 8246 -8244 + mu 0 4 4673 4674 4691 4690 + f 4 -8216 -8243 8247 8248 + mu 0 4 4675 4672 4689 4692 + f 4 -8219 8249 8250 -8246 + mu 0 4 4674 4676 4693 4691 + f 4 -8220 -8249 8251 -8250 + mu 0 4 4676 4675 4692 4693 + f 4 -8221 -8241 8252 8253 + mu 0 4 4677 4671 4688 4694 + f 4 -8224 8254 8255 -8238 + mu 0 4 4670 4678 4695 4687 + f 4 -8225 -8254 8256 8257 + mu 0 4 4679 4677 4694 4696 + f 4 -8227 -8258 8258 -8255 + mu 0 4 4678 4679 4696 4695 + f 4 -8229 8259 8260 8261 + mu 0 4 4681 4680 4697 4698 + f 4 -8232 8262 8263 -8260 + mu 0 4 4683 4682 4699 4700 + f 4 -8234 8264 8265 8266 + mu 0 4 4685 4684 4701 4702 + f 4 -8236 -8267 8267 8268 + mu 0 4 4686 4685 4702 4703 + f 4 -8239 8269 8270 -8263 + mu 0 4 4682 4687 4704 4699 + f 4 -8240 -8269 8271 8272 + mu 0 4 4688 4686 4703 4705 + f 4 -8242 -8262 8273 8274 + mu 0 4 4689 4681 4698 4706 + f 4 -8245 8275 8276 -8265 + mu 0 4 4684 4690 4707 4701 + f 4 -8247 8277 8278 -8276 + mu 0 4 4690 4691 4708 4707 + f 4 -8248 -8275 8279 8280 + mu 0 4 4692 4689 4706 4709 + f 4 -8251 8281 8282 -8278 + mu 0 4 4691 4693 4710 4708 + f 4 -8252 -8281 8283 -8282 + mu 0 4 4693 4692 4709 4710 + f 4 -8253 -8273 8284 8285 + mu 0 4 4694 4688 4705 4711 + f 4 -8256 8286 8287 -8270 + mu 0 4 4687 4695 4712 4704 + f 4 -8257 -8286 8288 8289 + mu 0 4 4696 4694 4711 4713 + f 4 -8259 -8290 8290 -8287 + mu 0 4 4695 4696 4713 4712 + f 4 -8261 8291 8292 8293 + mu 0 4 4698 4697 4714 4715 + f 4 -8264 8294 8295 -8292 + mu 0 4 4700 4699 4716 4717 + f 4 -8266 8296 8297 8298 + mu 0 4 4702 4701 4718 4719 + f 4 -8268 -8299 8299 8300 + mu 0 4 4703 4702 4719 4720 + f 4 -8271 8301 8302 -8295 + mu 0 4 4699 4704 4721 4716 + f 4 -8272 -8301 8303 8304 + mu 0 4 4705 4703 4720 4722 + f 4 -8274 -8294 8305 8306 + mu 0 4 4706 4698 4715 4723 + f 4 -8277 8307 8308 -8297 + mu 0 4 4701 4707 4724 4718 + f 4 -8279 8309 8310 -8308 + mu 0 4 4707 4708 4725 4724 + f 4 -8280 -8307 8311 8312 + mu 0 4 4709 4706 4723 4726 + f 4 -8283 8313 8314 -8310 + mu 0 4 4708 4710 4727 4725 + f 4 -8284 -8313 8315 -8314 + mu 0 4 4710 4709 4726 4727 + f 4 -8285 -8305 8316 8317 + mu 0 4 4711 4705 4722 4728 + f 4 -8288 8318 8319 -8302 + mu 0 4 4704 4712 4729 4721 + f 4 -8289 -8318 8320 8321 + mu 0 4 4713 4711 4728 4730 + f 4 -8291 -8322 8322 -8319 + mu 0 4 4712 4713 4730 4729 + f 4 -193 8323 8324 8325 + mu 0 4 137 136 4731 4732 + f 4 -199 8326 8327 -8324 + mu 0 4 136 141 4733 4731 + f 4 -202 8328 8329 -8327 + mu 0 4 141 143 4734 4733 + f 4 -203 8330 8331 -8329 + mu 0 4 143 144 4735 4734 + f 4 -208 8332 8333 -8331 + mu 0 4 144 147 4736 4735 + f 4 -211 8334 8335 8336 + mu 0 4 151 150 4737 4738 + f 4 -213 -8337 8337 8338 + mu 0 4 152 151 4738 4739 + f 4 -216 -8339 8339 -8333 + mu 0 4 147 152 4739 4736 + f 4 -219 8340 8341 8342 + mu 0 4 156 155 4740 4741 + f 4 -223 8343 8344 -8341 + mu 0 4 155 159 4742 4740 + f 4 -225 -8326 8345 8346 + mu 0 4 160 137 4732 4743 + f 4 -230 -8343 8347 8348 + mu 0 4 162 156 4741 4744 + f 4 -232 8349 8350 -8335 + mu 0 4 150 165 4745 4737 + f 4 -235 8351 8352 -8350 + mu 0 4 165 167 4746 4745 + f 4 -237 -8349 8353 8354 + mu 0 4 168 162 4744 4747 + f 4 -243 8355 8356 8357 + mu 0 4 170 173 4748 4749 + f 4 -246 -8358 8358 8359 + mu 0 4 174 170 4749 4750 + f 4 -249 8360 8361 -8356 + mu 0 4 173 177 4751 4748 + f 4 -251 -8360 8362 8363 + mu 0 4 179 174 4750 4752 + f 4 -255 8364 8365 -8361 + mu 0 4 177 181 4753 4751 + f 4 -520 -8364 8366 8367 + mu 0 4 183 179 4752 4754 + f 4 -260 -8355 8368 -8365 + mu 0 4 181 168 4747 4753 + f 4 -510 -8347 8369 -8344 + mu 0 4 159 160 4743 4742 + f 4 -258 -8368 8370 -8352 + mu 0 4 167 183 4754 4746 + f 4 -264 8371 8372 8373 + mu 0 4 184 187 4755 4756 + f 4 -267 -8374 8374 8375 + mu 0 4 188 184 4756 4757 + f 4 -271 8376 8377 8378 + mu 0 4 190 193 4758 4759 + f 4 -273 8379 8380 -8377 + mu 0 4 193 195 4760 4758 + f 4 -275 -8379 8381 8382 + mu 0 4 196 190 4759 4761 + f 4 -280 -8383 8383 8384 + mu 0 4 198 196 4761 4762 + f 4 -281 8385 8386 -8380 + mu 0 4 195 200 4763 4760 + f 4 -284 -8376 8387 8388 + mu 0 4 202 188 4757 4764 + f 4 -288 8389 8390 8391 + mu 0 4 206 205 4765 4766 + f 4 -292 8392 8393 -8390 + mu 0 4 205 209 4767 4765 + f 4 -294 -8385 8394 -8393 + mu 0 4 209 198 4762 4767 + f 4 -297 8395 8396 8397 + mu 0 4 212 211 4768 4769 + f 4 -300 -8398 8398 8399 + mu 0 4 214 212 4769 4770 + f 4 -305 -8400 8400 8401 + mu 0 4 216 214 4770 4771 + f 4 -307 8402 8403 -8396 + mu 0 4 211 219 4772 4768 + f 4 -311 -8402 8404 8405 + mu 0 4 220 216 4771 4773 + f 4 -313 8406 8407 -8403 + mu 0 4 219 223 4774 4772 + f 4 -317 -8406 8408 8409 + mu 0 4 224 220 4773 4775 + f 4 -531 8410 8411 8412 + mu 0 4 227 228 4776 4777 + f 4 -322 -8410 8413 -8372 + mu 0 4 187 224 4775 4755 + f 4 -326 8414 8415 -8411 + mu 0 4 228 231 4778 4776 + f 4 -328 -8392 8416 -8415 + mu 0 4 231 206 4766 4778 + f 4 -521 -8389 8417 -8386 + mu 0 4 200 202 4764 4763 + f 4 -320 -8413 8418 -8407 + mu 0 4 223 227 4777 4774 + f 4 -8325 8419 8420 8421 + mu 0 4 4779 4780 4781 4782 + f 4 -8328 8422 8423 -8420 + mu 0 4 4783 4784 4785 4786 + f 4 -8330 8424 8425 -8423 + mu 0 4 4787 4788 4789 4790 + f 4 -8332 8426 8427 -8425 + mu 0 4 4791 4792 4793 4794 + f 4 -8334 8428 8429 -8427 + mu 0 4 4795 4796 4797 4798 + f 4 -8336 8430 8431 8432 + mu 0 4 4799 4800 4801 4802 + f 4 -8338 -8433 8433 8434 + mu 0 4 4803 4804 4805 4806 + f 4 -8340 -8435 8435 -8429 + mu 0 4 4807 4808 4809 4810 + f 4 -8342 8436 8437 8438 + mu 0 4 4811 4812 4813 4814 + f 4 -8345 8439 8440 -8437 + mu 0 4 4815 4816 4817 4818 + f 4 -8346 -8422 8441 8442 + mu 0 4 4819 4820 4821 4822 + f 4 -8348 -8439 8443 8444 + mu 0 4 4823 4824 4825 4826 + f 4 -8351 8445 8446 -8431 + mu 0 4 4827 4828 4829 4830 + f 4 -8353 8447 8448 -8446 + mu 0 4 4831 4832 4833 4834 + f 4 -8354 -8445 8449 8450 + mu 0 4 4835 4836 4837 4838 + f 4 -8357 8451 8452 8453 + mu 0 4 4839 4840 4841 4842 + f 4 -8359 -8454 8454 8455 + mu 0 4 4843 4844 4845 4846 + f 4 -8362 8456 8457 -8452 + mu 0 4 4847 4848 4849 4850 + f 4 -8363 -8456 8458 8459 + mu 0 4 4851 4852 4853 4854 + f 4 -8366 8460 8461 -8457 + mu 0 4 4855 4856 4857 4858 + f 4 -8367 -8460 8462 8463 + mu 0 4 4859 4860 4861 4862 + f 4 -8369 -8451 8464 -8461 + mu 0 4 4863 4864 4865 4866 + f 4 -8370 -8443 8465 -8440 + mu 0 4 4867 4868 4869 4870 + f 4 -8371 -8464 8466 -8448 + mu 0 4 4871 4872 4873 4874 + f 4 -8373 8467 8468 8469 + mu 0 4 4875 4876 4877 4878 + f 4 -8375 -8470 8470 8471 + mu 0 4 4879 4880 4881 4882 + f 4 -8378 8472 8473 8474 + mu 0 4 4883 4884 4885 4886 + f 4 -8381 8475 8476 -8473 + mu 0 4 4887 4888 4889 4890 + f 4 -8382 -8475 8477 8478 + mu 0 4 4891 4892 4893 4894 + f 4 -8384 -8479 8479 8480 + mu 0 4 4895 4896 4897 4898 + f 4 -8387 8481 8482 -8476 + mu 0 4 4899 4900 4901 4902 + f 4 -8388 -8472 8483 8484 + mu 0 4 4903 4904 4905 4906 + f 4 -8391 8485 8486 8487 + mu 0 4 4907 4908 4909 4910 + f 4 -8394 8488 8489 -8486 + mu 0 4 4911 4912 4913 4914 + f 4 -8395 -8481 8490 -8489 + mu 0 4 4915 4916 4917 4918 + f 4 -8397 8491 8492 8493 + mu 0 4 4919 4920 4921 4922 + f 4 -8399 -8494 8494 8495 + mu 0 4 4923 4924 4925 4926 + f 4 -8401 -8496 8496 8497 + mu 0 4 4927 4928 4929 4930 + f 4 -8404 8498 8499 -8492 + mu 0 4 4931 4932 4933 4934 + f 4 -8405 -8498 8500 8501 + mu 0 4 4935 4936 4937 4938 + f 4 -8408 8502 8503 -8499 + mu 0 4 4939 4940 4941 4942 + f 4 -8409 -8502 8504 8505 + mu 0 4 4943 4944 4945 4946 + f 4 -8412 8506 8507 8508 + mu 0 4 4947 4948 4949 4950 + f 4 -8414 -8506 8509 -8468 + mu 0 4 4951 4952 4953 4954 + f 4 -8416 8510 8511 -8507 + mu 0 4 4955 4956 4957 4958 + f 4 -8417 -8488 8512 -8511 + mu 0 4 4959 4960 4961 4962 + f 4 -8418 -8485 8513 -8482 + mu 0 4 4963 4964 4965 4966 + f 4 -8419 -8509 8514 -8503 + mu 0 4 4967 4968 4969 4970; + setAttr ".cd" -type "dataPolyComponent" Index_Data Edge 0 ; + setAttr ".cvd" -type "dataPolyComponent" Index_Data Vertex 0 ; + setAttr ".pd[0]" -type "dataPolyComponent" Index_Data UV 0 ; + setAttr ".hfd" -type "dataPolyComponent" Index_Data Face 0 ; +createNode lightLinker -s -n "lightLinker1"; + rename -uid "D6807D7D-4505-1B36-C6FD-09931A3D66A6"; + setAttr -s 7 ".lnk"; + setAttr -s 7 ".slnk"; +createNode VRaySettingsNode -s -n "vraySettings"; + rename -uid "84076336-4A4A-B500-BC57-15B927A96AD6"; + setAttr ".sver" 1; + setAttr ".gi" yes; + setAttr ".rfc" yes; + setAttr ".pe" 2; + setAttr ".se" 3; + setAttr ".cmph" 60; + setAttr ".csdu" 0; + setAttr ".cfile" -type "string" ""; + setAttr ".cfile2" -type "string" ""; + setAttr ".casf" -type "string" ""; + setAttr ".casf2" -type "string" ""; + setAttr ".st" 3; + setAttr ".msr" 6; + setAttr ".aaft" 3; + setAttr ".aafs" 2; + setAttr ".dma" 24; + setAttr ".dam" 1; + setAttr ".pt" 0.0099999997764825821; + setAttr ".pmt" 0; + setAttr ".sd" 1000; + setAttr ".ss" 0.01; + setAttr ".pfts" 20; + setAttr ".ufg" yes; + setAttr ".fnm" -type "string" ""; + setAttr ".lcfnm" -type "string" ""; + setAttr ".asf" -type "string" ""; + setAttr ".lcasf" -type "string" ""; + setAttr ".urtrshd" yes; + setAttr ".rtrshd" 2; + setAttr ".lightCacheType" 1; + setAttr ".icits" 10; + setAttr ".ifile" -type "string" ""; + setAttr ".ifile2" -type "string" ""; + setAttr ".iasf" -type "string" ""; + setAttr ".iasf2" -type "string" ""; + setAttr ".pmfile" -type "string" ""; + setAttr ".pmfile2" -type "string" ""; + setAttr ".pmasf" -type "string" ""; + setAttr ".pmasf2" -type "string" ""; + setAttr ".dmcstd" yes; + setAttr ".dmculs" no; + setAttr ".dmcsat" 0.004999999888241291; + setAttr ".cmtp" 6; + setAttr ".cmao" 2; + setAttr ".cg" 2.2000000476837158; + setAttr ".mtah" yes; + setAttr ".rgbcs" -1; + setAttr ".suv" 0; + setAttr ".srflc" 1; + setAttr ".srdml" 0; + setAttr ".seu" yes; + setAttr ".gormio" yes; + setAttr ".gocle" yes; + setAttr ".gopl" 2; + setAttr ".gopv" yes; + setAttr ".gopvgs" 1; + setAttr ".wi" 960; + setAttr ".he" 540; + setAttr ".aspr" 1.7777780294418335; + setAttr ".productionGPUResizeTextures" 0; + setAttr ".autolt" 0; + setAttr ".jpegq" 100; + setAttr ".vfbOn" yes; + setAttr ".vfbSA" -type "Int32Array" 1055 0 4212 1 4200 0 1 + 4192 1700143739 1869181810 825893486 1632379436 1936876921 578501154 1936876886 577662825 573321530 1935764579 574235251 + 1953460082 1881287714 1701867378 1701409906 2067407475 1919252002 1852795251 741423650 1835101730 574235237 1696738338 1818386798 + 1949966949 744846706 1886938402 577007201 1818322490 573334899 1634760805 1650549870 975332716 1702195828 1931619453 1814913653 + 1919252833 1530536563 1818436219 577991521 1751327290 779317089 1886611812 1132028268 1701999215 1869182051 573317742 1886351984 + 1769239141 975336293 1702240891 1869181810 825893486 1634607660 975332717 1936278562 2036427888 1919894304 1952671090 577662825 + 1852121644 1701601889 1920219682 573334901 1634760805 975332462 1702195828 2019893804 1684955504 1701601889 1920219682 573334901 + 1718579824 577072233 573321786 1869641829 1701999987 774912546 1931619376 1600484961 1600284530 1835627120 1986622569 975336293 + 1936482662 1763847269 1717527395 577072233 740434490 1667459362 1869770847 1701603686 1952539743 1849303649 745303157 1667459362 + 1852142175 1953392996 578055781 573321274 1886088290 1852793716 1715085942 1702063201 1668227628 1717530473 577072233 977478202 + 1869762607 1835102823 1818838560 1093628773 1685025909 795571045 1635344717 858927154 1936028207 1668445551 1328509797 760170819 + 1718513507 796092265 1635344717 842149938 1717920813 1953264993 1852793647 778529126 1869177711 1864510498 1601136995 1869377379 + 1634759538 975332707 1864510517 1601136995 1886611812 1685676396 1667855973 809116261 1668227628 1985965929 1953981801 1936613746 + 1836216166 741358114 1768124194 1634951023 1852401014 1734438249 1715085925 1702063201 1931619453 1814913653 1919252833 1530536563 + 1818436219 577991521 1751327290 779317089 778462578 1920298867 1868981603 1919247468 1881287714 1701867378 1701409906 2067407475 + 1919252002 1852795251 741423650 1835101730 574235237 1920298835 540697955 574768978 1852121644 1701601889 1920219682 573334901 + 1634760805 975332462 1936482662 1696738405 1851879544 1818386788 1715085925 1702063201 1818370604 1600417381 1701080941 741358114 + 1634758434 2037672291 774978082 1931619376 1601662824 1986359920 578250089 1970435130 1931619429 1952408434 577073273 746401850 + 1651864354 2036427821 577991269 578509626 1935764579 574235251 1868654691 1701981811 1768697446 1836345447 740456553 1869770786 + 1953654128 577987945 1981971258 1769173605 975335023 1847733297 577072481 1766597178 1299474535 740456553 1634624802 577072226 + 1818322490 573334899 1634760805 975332462 1936482662 1696738405 1851879544 1818386788 1949966949 2103801202 1970479660 1634479458 + 1936876921 1566259746 578497661 1935764579 574235251 1868654691 1701981811 1868770918 1936683117 577074281 1919951404 1919250543 + 1936025972 578501154 1936876918 577662825 573321530 1701667182 1126316578 1869639023 1702127987 1696738338 1818386798 1715085925 + 1702063201 2019893804 1684955504 1634089506 744846188 1886938402 1633971809 577072226 1970435130 1646406757 1684956524 1685024095 + 809116261 1886331436 1953063777 825893497 573321262 2003789939 1701998687 2003134838 1920219682 746415477 1651864354 2036427821 + 577991269 2103270202 2066513245 1634493218 975336307 1634231074 1882092399 1701064293 1936289646 740455013 1869770786 1953654128 + 577987945 1981971258 1769173605 975335023 1847733297 577072481 1698964026 1936289646 540701285 1986096757 1634494817 577072226 + 1852121644 1701601889 1634089506 744846188 1886938402 577007201 1818322490 573334899 1634760805 1650549870 975332716 1702195828 + 1818370604 1600417381 1701080941 741358114 1634758434 2037672291 774978082 1629629488 1986622563 1715085925 1702063201 1919951404 + 1952805733 741489186 1920234274 1952935525 825893480 573321262 1768186226 975336309 808333361 2003313196 1701012289 1634887020 + 975332724 1702195828 1701061164 1936289646 1834971749 577070191 2100374842 1970479660 1634479458 1936876921 1566259746 578497661 + 1935764579 574235251 1868654691 1701850739 1634235182 1852141682 1970037294 573317746 1886351984 1769239141 975336293 1702240891 + 1869181810 825893486 1634607660 975332717 1634226978 1852141682 1970029103 573317746 1650552421 975332716 1936482662 1696738405 + 1851879544 1715085924 1702063201 2019893804 1684955504 1701601889 1920219682 573334901 1852140642 1869438820 975332708 1864510512 + 1768120688 975337844 741355057 1634235170 1852141682 1970037343 1868783474 1953853549 1715085925 1702063201 1752375852 1701868129 + 1835097966 1953396079 774978082 1931619376 1886544232 1918856805 1969841249 809116275 573322542 1920298082 1684107871 577992041 + 858665274 808464435 842281008 2100638009 1970479660 1634479458 1936876921 1566259746 578497661 1935764579 574235251 1868654691 + 1701850739 1852140590 578315891 1919951404 1919250543 1936025972 578501154 1936876918 577662825 573321530 1701667182 1277311522 + 544435813 1701209669 577991779 1852121644 1701601889 1634089506 744846188 1886938402 577007201 1818322490 573334899 1634760805 + 1650549870 975332716 1702195828 1818370604 1600417381 1701080941 741489186 1634758434 2037672291 774978082 1730292784 1701994860 + 577662815 1818322490 573334899 1918987367 1769168741 975332730 808333363 1818698284 1600483937 1734960503 975336552 741355057 + 1869373986 2002742639 1751607653 809116276 808465454 808464432 909718832 1818698284 1600483937 1701996660 1819240563 825893476 + 573321262 1953261926 1918857829 1952543855 577662825 808333370 1634935340 1634891124 1852795252 774978082 1747070000 2003071585 + 1600483937 1701012321 1634887020 577004916 1970435130 1663183973 1600416879 1836212599 1634089506 744846188 1953392930 1667330661 + 1702259060 1920219682 573334901 1702257011 1634494303 975332722 1702195828 1633821228 1734305131 1701994860 1768257375 578054247 + 1818322490 573334899 1634038371 1700750708 1667589734 1918858100 1819636581 1751342964 1701736033 1715085932 1702063201 1852121644 + 1701601889 1634493023 577987940 1970435130 1931619429 1936024681 741751330 1634492962 1601398116 1635020658 1852795252 892418594 + 573321262 1701999731 1650420577 577926508 841887802 808464432 842018864 573323321 1600484213 1952543335 577203817 1818322490 + 573334899 1952543335 1600613993 1936614756 578385001 774911290 1730292784 1769234802 1818191726 1952935525 825893480 741355056 + 1634887458 1735289204 1869576799 893002349 573321262 1952543335 1600613993 1886350451 809116261 573321262 1952543335 1600613993 + 1701999731 1752459118 774978082 1965173808 1868522867 1970037603 1852795251 1634089506 744846188 1667460898 1769174380 1935634031 + 1701670265 1667854964 1920219682 573334901 1818452847 1869181813 1701863278 1852138354 842670708 741355056 1667460898 1769174380 + 1918856815 1952543855 577662825 808333370 1668227628 1937075299 1601073001 576942689 808464698 573321262 1600484213 1634886515 + 577266548 1818322490 573334899 1601332083 1835891059 1769108581 1949966947 744846706 1919120162 1952542815 1852990836 741358114 + 1919120162 1819635039 1818716532 1600483937 1853189987 825893492 1668489772 1701076850 1953067886 893002361 741355056 1919120162 + 1852140639 577270887 774911290 1931619376 1935635043 1701867372 1918989919 1668178281 809116261 573321262 1601332083 1952737655 + 1635147624 1851877746 975332707 741355056 1919120162 1701147487 809116260 1668489772 1870290802 975334767 741355058 1919120162 + 1953460831 1869182049 809116270 573321262 1601332083 1701999731 1752459118 774978082 1965173808 1683973491 578057077 1818322490 + 573334899 1953723748 1952542815 1852990836 741358114 1937073186 1701076852 1953067886 893002361 741355056 1937073186 1634885492 + 1937074532 1918989919 1668178281 809116261 573321262 1953723748 1953065567 577922420 808333370 1969496620 2053076083 577597295 + 808333882 1969496620 1918858355 1952543855 577662825 808333370 1969496620 1935635571 1852142196 577270887 808333626 1818698284 + 1600483937 1600484213 1953718895 1701602145 1634560351 975332711 1936482662 1730292837 1701994860 1935830879 1818452340 1835622245 + 1600481121 1752457584 572668450 1651450412 1767863411 1701273965 1869576799 825893485 573321262 1953718895 1634560351 1918854503 + 1952543855 577662825 808333370 1651450412 1767863411 1701273965 1920234335 1952935525 825893480 573321262 1600484213 1953261926 + 1767862885 1701273965 1634089506 744846188 1634494242 1767859570 1701273965 1952542815 574235240 1663183906 1919249761 2037669729 + 975332720 1931619376 1701995892 1869438831 975332708 573340976 761427315 1702453612 975336306 1568496987 578497661 1935764579 + 574235251 1868654691 1986997875 1634497125 1953705593 577793377 1919951404 1919250543 1936025972 578501154 1936876918 577662825 + 573321530 1701667182 1394752034 1886216564 1696738338 1818386798 1715085925 1702063201 2019893804 1684955504 1634089506 744846188 + 1886938402 1633971809 577072226 1970435130 1931619429 1886216564 1919903839 1633647209 1852270956 741423650 1635021602 1985966189 + 1601466981 1734962273 859447918 1931619378 1886216564 1819239263 975336047 808333659 808333612 808333612 1931619421 1886216564 + 1852794463 2067407476 1919252002 1852795251 741423650 1768910882 1935635566 577075817 741355834 1835099682 578382953 573321274 + 1819898995 809116261 1702306348 1952999273 741358114 1667327522 574235237 1634300481 746398316 1635021602 1935634541 1852404340 + 2067407463 1919252002 1852795251 741423650 2002874914 1920234335 577203817 740434490 1852401186 1935633505 1852404340 574235239 + 746421538 1651864354 2036427821 577991269 2103270202 573341021 1768383826 1699180143 2067407470 1919252002 1852795251 741423650 + 1970236706 1717527923 1869376623 1852137335 1701601889 1715085924 1702063201 1869423148 1600484213 1819045734 1885304687 1953393007 + 1668246623 577004907 1818322490 573334899 1937076077 1868980069 2003790956 1768910943 2019521646 741358114 1970236706 1717527923 + 1869376623 1869635447 1601465961 809116281 1377971325 1701080677 1701402226 2067407479 1919252002 1852795251 741423650 1634624802 + 1600482402 1684956530 1918857829 1869178725 1715085934 1702063201 1701978668 1919247470 1734701663 1601073001 975319160 808333613 + 1701978668 1919247470 1734701663 1601073001 975319161 808333613 1701978668 1919247470 1734701663 1601073001 975319416 808333613 + 1701978668 1919247470 1734701663 1601073001 975319417 808333613 1769349676 1918859109 975332453 1702195828 1769349676 1734309733 + 1852138866 1920219682 573334901 2003134838 1970037343 1949966949 744846706 1701410338 1869438839 975335278 1936482662 1663183973 + 1919904879 1634493279 1834971245 577070191 741946938 1819239202 1667199599 1886216556 577662815 1970435130 1965173861 1885300083 + 1818589289 1886609759 1601463141 975335023 1936482662 1965173861 1885300083 1919905377 1600220513 2003134838 577662815 1818322490 + 573334899 1702390128 1852399468 1818193766 1701536623 1715085924 1702063201 1768956460 1600939384 1868983913 1919902559 1952671090 + 1667196005 1919904879 1715085939 1702063201 1092758653 1869182051 975336302 1702240891 1869181810 825893486 1634738732 1231385461 + 1667191376 1801676136 975332453 1936482662 1948396645 1383363429 1918858085 1869177953 825571874 1702109740 1699902579 1751342963 + 1701536613 1715085924 1702063201 1701061164 1399289186 1768186216 1918855022 1869177953 909457954 1701061164 1399289186 1768186216 + 1667196782 1801676136 975332453 1936482662 1931619429 1701995892 1685015919 1634885477 577726820 741881658 1702130466 1299146098 + 1600480367 1667590243 577004907 1818322490 2105369971 ; + setAttr ".vfbSyncM" yes; + setAttr ".mSceneName" -type "string" "E:/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA/blue_bomb_export_scene.ma"; + setAttr ".rt_cpuRayBundleSize" 4; + setAttr ".rt_gpuRayBundleSize" 128; + setAttr ".rt_maxPaths" 10000; + setAttr ".rt_engineType" 3; + setAttr ".rt_gpuResizeTextures" 0; +createNode shapeEditorManager -n "shapeEditorManager"; + rename -uid "0F37C814-4ADB-5A64-ECF5-17B98CBD800B"; +createNode poseInterpolatorManager -n "poseInterpolatorManager"; + rename -uid "A6304C2A-469B-D40F-23F2-40B76858D836"; +createNode displayLayerManager -n "layerManager"; + rename -uid "F6B086ED-40CE-F57C-ED5B-50AFC8A11049"; +createNode displayLayer -n "defaultLayer"; + rename -uid "9FDECBC2-4D29-F06C-017B-379493B48251"; + setAttr ".ufem" -type "stringArray" 0 ; +createNode renderLayerManager -n "renderLayerManager"; + rename -uid "7F741D5F-4652-AD32-B727-96BC37CDEE7E"; +createNode renderLayer -n "defaultRenderLayer"; + rename -uid "319C21C7-495D-69C8-394E-BCA38FB2B2AF"; + setAttr ".g" yes; +createNode aiOptions -s -n "defaultArnoldRenderOptions"; + rename -uid "E9FD7A28-4B50-99ED-7FF1-FBA896A6A91E"; + addAttr -ci true -sn "ARV_options" -ln "ARV_options" -dt "string"; + setAttr ".AA_samples" 5; + setAttr ".enable_adaptive_sampling" yes; + setAttr ".usetx" no; + setAttr ".autotx" no; + setAttr ".rndrdvc" 1; + setAttr ".manualdevs" yes; + setAttr ".rndev[0]" 1; + setAttr ".version" -type "string" "5.2.1.1"; +createNode aiAOVFilter -s -n "defaultArnoldFilter"; + rename -uid "99787833-4C66-EB3F-A633-488C6A76F5AC"; + setAttr ".ai_translator" -type "string" "gaussian"; +createNode aiAOVDriver -s -n "defaultArnoldDriver"; + rename -uid "DCCCAE88-41DA-8F53-41D4-B3824CBC719F"; + setAttr ".color_management" 1; + setAttr ".ai_translator" -type "string" "png"; +createNode aiAOVDriver -s -n "defaultArnoldDisplayDriver"; + rename -uid "7DA119ED-40CC-0FAA-100E-CC9854FBB430"; + setAttr ".output_mode" 0; + setAttr ".ai_translator" -type "string" "maya"; +createNode script -n "uiConfigurationScriptNode"; + rename -uid "895F5840-4680-A72E-645B-30A4DADCF8E3"; + setAttr ".b" -type "string" ( + "// Maya Mel UI Configuration File.\n//\n// This script is machine generated. Edit at your own risk.\n//\n//\n\nglobal string $gMainPane;\nif (`paneLayout -exists $gMainPane`) {\n\n\tglobal int $gUseScenePanelConfig;\n\tint $useSceneConfig = $gUseScenePanelConfig;\n\tint $nodeEditorPanelVisible = stringArrayContains(\"nodeEditorPanel1\", `getPanel -vis`);\n\tint $nodeEditorWorkspaceControlOpen = (`workspaceControl -exists nodeEditorPanel1Window` && `workspaceControl -q -visible nodeEditorPanel1Window`);\n\tint $menusOkayInPanels = `optionVar -q allowMenusInPanels`;\n\tint $nVisPanes = `paneLayout -q -nvp $gMainPane`;\n\tint $nPanes = 0;\n\tstring $editorName;\n\tstring $panelName;\n\tstring $itemFilterName;\n\tstring $panelConfig;\n\n\t//\n\t// get current state of the UI\n\t//\n\tsceneUIReplacement -update $gMainPane;\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Top View\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Top View\")) -mbv $menusOkayInPanels $panelName;\n" + + "\t\t$editorName = $panelName;\n modelEditor -e \n -docTag \"RADRENDER\" \n -camera \"|top\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"smoothShaded\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -holdOuts 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 0\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 32768\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n" + + " -fogColor 0.5 0.5 0.5 1 \n -depthOfFieldPreview 1\n -maxConstantTransparency 1\n -rendererName \"vp2Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -controllers 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n" + + " -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -particleInstancers 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -pluginShapes 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -bluePencil 1\n -greasePencils 0\n -shadows 0\n -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 0\n -activeShadingGraph \"ballora_animatronic_shadow_rig:rsMaterial1SG,ballora_animatronic_shadow_rig:MAT_ballora,ballora_animatronic_shadow_rig:MAT_ballora\" \n -activeCustomGeometry \"meshShaderball\" \n" + + " -activeCustomLighSet \"defaultAreaLightSet\" \n $editorName;\n modelEditor -e -viewSelected 0 $editorName;\n modelEditor -e \n -pluginObjects \"gpuCacheDisplayFilter\" 1 \n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Side View\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Side View\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n modelEditor -e \n -docTag \"RADRENDER\" \n -camera \"|side\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"smoothShaded\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -holdOuts 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n" + + " -twoSidedLighting 0\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 32768\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -depthOfFieldPreview 1\n -maxConstantTransparency 1\n -rendererName \"vp2Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n" + + " -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -controllers 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -particleInstancers 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -pluginShapes 1\n" + + " -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -bluePencil 1\n -greasePencils 0\n -shadows 0\n -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 0\n -activeShadingGraph \"ballora_animatronic_shadow_rig:rsMaterial1SG,ballora_animatronic_shadow_rig:MAT_ballora,ballora_animatronic_shadow_rig:MAT_ballora\" \n -activeCustomGeometry \"meshShaderball\" \n -activeCustomLighSet \"defaultAreaLightSet\" \n $editorName;\n modelEditor -e -viewSelected 0 $editorName;\n modelEditor -e \n -pluginObjects \"gpuCacheDisplayFilter\" 1 \n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Front View\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n" + + "\t\tmodelPanel -edit -l (localizedPanelLabel(\"Front View\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n modelEditor -e \n -docTag \"RADRENDER\" \n -camera \"|front\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"smoothShaded\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -holdOuts 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 0\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 32768\n -fogging 0\n -fogSource \"fragment\" \n" + + " -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -depthOfFieldPreview 1\n -maxConstantTransparency 1\n -rendererName \"vp2Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -controllers 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n" + + " -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -particleInstancers 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -pluginShapes 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -bluePencil 1\n -greasePencils 0\n -shadows 0\n -captureSequenceNumber -1\n -width 1\n -height 1\n -sceneRenderFilter 0\n -activeShadingGraph \"ballora_animatronic_shadow_rig:rsMaterial1SG,ballora_animatronic_shadow_rig:MAT_ballora,ballora_animatronic_shadow_rig:MAT_ballora\" \n" + + " -activeCustomGeometry \"meshShaderball\" \n -activeCustomLighSet \"defaultAreaLightSet\" \n $editorName;\n modelEditor -e -viewSelected 0 $editorName;\n modelEditor -e \n -pluginObjects \"gpuCacheDisplayFilter\" 1 \n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"modelPanel\" (localizedPanelLabel(\"Persp View\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tmodelPanel -edit -l (localizedPanelLabel(\"Persp View\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n modelEditor -e \n -docTag \"RADRENDER\" \n -camera \"|persp\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"smoothShaded\" \n -activeOnly 0\n -ignorePanZoom 0\n -wireframeOnShaded 0\n -headsUpDisplay 1\n -holdOuts 1\n -selectionHiliteDisplay 1\n" + + " -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 0\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 1\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 32768\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -depthOfFieldPreview 1\n -maxConstantTransparency 1\n -rendererName \"vp2Renderer\" \n -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 256 256 \n -bumpResolution 512 512 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n" + + " -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 1\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -controllers 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -particleInstancers 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n" + + " -locators 1\n -manipulators 1\n -pluginShapes 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -bluePencil 1\n -greasePencils 0\n -shadows 0\n -captureSequenceNumber -1\n -width 1197\n -height 732\n -sceneRenderFilter 0\n -activeShadingGraph \"ballora_animatronic_shadow_rig:rsMaterial1SG,ballora_animatronic_shadow_rig:MAT_ballora,ballora_animatronic_shadow_rig:MAT_ballora\" \n -activeCustomGeometry \"meshShaderball\" \n -activeCustomLighSet \"defaultAreaLightSet\" \n $editorName;\n modelEditor -e -viewSelected 0 $editorName;\n modelEditor -e \n -pluginObjects \"gpuCacheDisplayFilter\" 1 \n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"outlinerPanel\" (localizedPanelLabel(\"Outliner\")) `;\n" + + "\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\toutlinerPanel -edit -l (localizedPanelLabel(\"Outliner\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n outlinerEditor -e \n -docTag \"isolOutln_fromSeln\" \n -showShapes 0\n -showAssignedMaterials 0\n -showTimeEditor 1\n -showReferenceNodes 0\n -showReferenceMembers 0\n -showAttributes 0\n -showConnected 0\n -showAnimCurvesOnly 0\n -showMuteInfo 0\n -organizeByLayer 1\n -organizeByClip 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 0\n -showDagOnly 1\n -showAssets 1\n -showContainedOnly 1\n -showPublishedAsConnected 0\n -showParentContainers 0\n -showContainerContents 1\n -ignoreDagHierarchy 0\n -expandConnections 0\n -showUpstreamCurves 1\n -showUnitlessCurves 1\n" + + " -showCompounds 1\n -showLeafs 1\n -showNumericAttrsOnly 0\n -highlightActive 1\n -autoSelectNewObjects 0\n -doNotSelectNewObjects 0\n -dropIsParent 1\n -transmitFilters 0\n -setFilter \"defaultSetFilter\" \n -showSetMembers 1\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -isSet 0\n -isSetMember 0\n -showUfeItems 1\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -selectCommand \"print(\\\"\\\")\" \n -showNamespace 1\n" + + " -showPinIcons 0\n -mapMotionTrails 0\n -ignoreHiddenAttribute 0\n -ignoreOutlinerColor 0\n -renderFilterVisible 0\n -renderFilterIndex 0\n -selectionOrder \"chronological\" \n -expandAttribute 0\n -ufeFilter \"USD\" \"InactivePrims\" -ufeFilterValue 1\n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"outlinerPanel\" (localizedPanelLabel(\"Outliner\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\toutlinerPanel -edit -l (localizedPanelLabel(\"Outliner\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n outlinerEditor -e \n -docTag \"isolOutln_fromSeln\" \n -showShapes 0\n -showAssignedMaterials 0\n -showTimeEditor 1\n -showReferenceNodes 0\n -showReferenceMembers 0\n -showAttributes 0\n -showConnected 0\n -showAnimCurvesOnly 0\n" + + " -showMuteInfo 0\n -organizeByLayer 1\n -organizeByClip 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 0\n -showDagOnly 1\n -showAssets 1\n -showContainedOnly 1\n -showPublishedAsConnected 0\n -showParentContainers 0\n -showContainerContents 1\n -ignoreDagHierarchy 0\n -expandConnections 0\n -showUpstreamCurves 1\n -showUnitlessCurves 1\n -showCompounds 1\n -showLeafs 1\n -showNumericAttrsOnly 0\n -highlightActive 1\n -autoSelectNewObjects 0\n -doNotSelectNewObjects 0\n -dropIsParent 1\n -transmitFilters 0\n -setFilter \"defaultSetFilter\" \n -showSetMembers 1\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -showUfeItems 1\n -displayMode \"DAG\" \n -expandObjects 0\n" + + " -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -showNamespace 1\n -showPinIcons 0\n -mapMotionTrails 0\n -ignoreHiddenAttribute 0\n -ignoreOutlinerColor 0\n -renderFilterVisible 0\n -ufeFilter \"USD\" \"InactivePrims\" -ufeFilterValue 1\n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"graphEditor\" (localizedPanelLabel(\"Graph Editor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Graph Editor\")) -mbv $menusOkayInPanels $panelName;\n" + + "\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n outlinerEditor -e \n -showShapes 1\n -showAssignedMaterials 0\n -showTimeEditor 1\n -showReferenceNodes 0\n -showReferenceMembers 0\n -showAttributes 1\n -showConnected 1\n -showAnimCurvesOnly 1\n -showMuteInfo 0\n -organizeByLayer 1\n -organizeByClip 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 1\n -showDagOnly 0\n -showAssets 1\n -showContainedOnly 0\n -showPublishedAsConnected 0\n -showParentContainers 0\n -showContainerContents 0\n -ignoreDagHierarchy 0\n -expandConnections 1\n -showUpstreamCurves 1\n -showUnitlessCurves 1\n -showCompounds 0\n -showLeafs 1\n -showNumericAttrsOnly 1\n" + + " -highlightActive 0\n -autoSelectNewObjects 1\n -doNotSelectNewObjects 0\n -dropIsParent 1\n -transmitFilters 1\n -setFilter \"0\" \n -showSetMembers 0\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -showUfeItems 1\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -showNamespace 1\n -showPinIcons 1\n -mapMotionTrails 1\n -ignoreHiddenAttribute 0\n" + + " -ignoreOutlinerColor 0\n -renderFilterVisible 0\n $editorName;\n\n\t\t\t$editorName = ($panelName+\"GraphEd\");\n animCurveEditor -e \n -displayValues 0\n -snapTime \"integer\" \n -snapValue \"none\" \n -showPlayRangeShades \"on\" \n -lockPlayRangeShades \"off\" \n -smoothness \"fine\" \n -resultSamples 1\n -resultScreenSamples 0\n -resultUpdate \"delayed\" \n -showUpstreamCurves 1\n -keyMinScale 1\n -stackedCurvesMin -1\n -stackedCurvesMax 1\n -stackedCurvesSpace 0.2\n -preSelectionHighlight 0\n -constrainDrag 0\n -valueLinesToggle 1\n -outliner \"graphEditor1OutlineEd\" \n -highlightAffectedCurves 0\n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"dopeSheetPanel\" (localizedPanelLabel(\"Dope Sheet\")) `;\n" + + "\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Dope Sheet\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = ($panelName+\"OutlineEd\");\n outlinerEditor -e \n -showShapes 1\n -showAssignedMaterials 0\n -showTimeEditor 1\n -showReferenceNodes 0\n -showReferenceMembers 0\n -showAttributes 1\n -showConnected 1\n -showAnimCurvesOnly 1\n -showMuteInfo 0\n -organizeByLayer 1\n -organizeByClip 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n -autoExpand 0\n -showDagOnly 0\n -showAssets 1\n -showContainedOnly 0\n -showPublishedAsConnected 0\n -showParentContainers 0\n -showContainerContents 0\n -ignoreDagHierarchy 0\n -expandConnections 1\n" + + " -showUpstreamCurves 1\n -showUnitlessCurves 0\n -showCompounds 1\n -showLeafs 1\n -showNumericAttrsOnly 1\n -highlightActive 0\n -autoSelectNewObjects 0\n -doNotSelectNewObjects 1\n -dropIsParent 1\n -transmitFilters 0\n -setFilter \"0\" \n -showSetMembers 0\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -showUfeItems 1\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n -sortOrder \"none\" \n" + + " -longNames 0\n -niceNames 1\n -showNamespace 1\n -showPinIcons 0\n -mapMotionTrails 1\n -ignoreHiddenAttribute 0\n -ignoreOutlinerColor 0\n -renderFilterVisible 0\n $editorName;\n\n\t\t\t$editorName = ($panelName+\"DopeSheetEd\");\n dopeSheetEditor -e \n -displayValues 0\n -snapTime \"integer\" \n -snapValue \"none\" \n -outliner \"dopeSheetPanel1OutlineEd\" \n -showSummary 1\n -showScene 0\n -hierarchyBelow 0\n -showTicks 1\n -selectionWindow 0 0 0 0 \n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"timeEditorPanel\" (localizedPanelLabel(\"Time Editor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Time Editor\")) -mbv $menusOkayInPanels $panelName;\n" + + "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"clipEditorPanel\" (localizedPanelLabel(\"Trax Editor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Trax Editor\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = clipEditorNameFromPanel($panelName);\n clipEditor -e \n -displayValues 0\n -snapTime \"none\" \n -snapValue \"none\" \n -initialized 0\n -manageSequencer 0 \n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"sequenceEditorPanel\" (localizedPanelLabel(\"Camera Sequencer\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Camera Sequencer\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = sequenceEditorNameFromPanel($panelName);\n" + + " clipEditor -e \n -displayValues 0\n -snapTime \"none\" \n -snapValue \"none\" \n -initialized 0\n -manageSequencer 1 \n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"hyperGraphPanel\" (localizedPanelLabel(\"Hypergraph Hierarchy\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Hypergraph Hierarchy\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = ($panelName+\"HyperGraphEd\");\n hyperGraph -e \n -graphLayoutStyle \"hierarchicalLayout\" \n -orientation \"horiz\" \n -mergeConnections 0\n -zoom 1\n -animateTransition 0\n -showRelationships 1\n -showShapes 0\n -showDeformers 0\n -showExpressions 0\n -showConstraints 0\n" + + " -showConnectionFromSelected 0\n -showConnectionToSelected 0\n -showConstraintLabels 0\n -showUnderworld 0\n -showInvisible 0\n -transitionFrames 1\n -opaqueContainers 0\n -freeform 0\n -imagePosition 0 0 \n -imageScale 1\n -imageEnabled 0\n -graphType \"DAG\" \n -heatMapDisplay 0\n -updateSelection 1\n -updateNodeAdded 1\n -useDrawOverrideColor 0\n -limitGraphTraversal -1\n -range 0 0 \n -iconSize \"smallIcons\" \n -showCachedConnections 0\n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"hyperShadePanel\" (localizedPanelLabel(\"Hypershade\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Hypershade\")) -mbv $menusOkayInPanels $panelName;\n" + + "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"visorPanel\" (localizedPanelLabel(\"Visor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Visor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"nodeEditorPanel\" (localizedPanelLabel(\"Node Editor\")) `;\n\tif ($nodeEditorPanelVisible || $nodeEditorWorkspaceControlOpen) {\n\t\tif (\"\" == $panelName) {\n\t\t\tif ($useSceneConfig) {\n\t\t\t\t$panelName = `scriptedPanel -unParent -type \"nodeEditorPanel\" -l (localizedPanelLabel(\"Node Editor\")) -mbv $menusOkayInPanels `;\n\n\t\t\t$editorName = ($panelName+\"NodeEditorEd\");\n nodeEditor -e \n -allAttributes 0\n -allNodes 0\n -autoSizeNodes 1\n -consistentNameSize 1\n -createNodeCommand \"nodeEdCreateNodeCommand\" \n" + + " -connectNodeOnCreation 0\n -connectOnDrop 0\n -copyConnectionsOnPaste 0\n -connectionStyle \"bezier\" \n -defaultPinnedState 0\n -additiveGraphingMode 0\n -connectedGraphingMode 1\n -settingsChangedCallback \"nodeEdSyncControls\" \n -traversalDepthLimit -1\n -keyPressCommand \"nodeEdKeyPressCommand\" \n -nodeTitleMode \"name\" \n -gridSnap 0\n -gridVisibility 1\n -crosshairOnEdgeDragging 0\n -popupMenuScript \"nodeEdBuildPanelMenus\" \n -showNamespace 1\n -showShapes 1\n -showSGShapes 0\n -showTransforms 1\n -useAssets 1\n -syncedSelection 1\n -extendToShapes 1\n -showUnitConversions 0\n -editorMode \"default\" \n -hasWatchpoint 0\n $editorName;\n\t\t\t}\n\t\t} else {\n\t\t\t$label = `panel -q -label $panelName`;\n" + + "\t\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Node Editor\")) -mbv $menusOkayInPanels $panelName;\n\n\t\t\t$editorName = ($panelName+\"NodeEditorEd\");\n nodeEditor -e \n -allAttributes 0\n -allNodes 0\n -autoSizeNodes 1\n -consistentNameSize 1\n -createNodeCommand \"nodeEdCreateNodeCommand\" \n -connectNodeOnCreation 0\n -connectOnDrop 0\n -copyConnectionsOnPaste 0\n -connectionStyle \"bezier\" \n -defaultPinnedState 0\n -additiveGraphingMode 0\n -connectedGraphingMode 1\n -settingsChangedCallback \"nodeEdSyncControls\" \n -traversalDepthLimit -1\n -keyPressCommand \"nodeEdKeyPressCommand\" \n -nodeTitleMode \"name\" \n -gridSnap 0\n -gridVisibility 1\n -crosshairOnEdgeDragging 0\n -popupMenuScript \"nodeEdBuildPanelMenus\" \n -showNamespace 1\n" + + " -showShapes 1\n -showSGShapes 0\n -showTransforms 1\n -useAssets 1\n -syncedSelection 1\n -extendToShapes 1\n -showUnitConversions 0\n -editorMode \"default\" \n -hasWatchpoint 0\n $editorName;\n\t\t\tif (!$useSceneConfig) {\n\t\t\t\tpanel -e -l $label $panelName;\n\t\t\t}\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"createNodePanel\" (localizedPanelLabel(\"Create Node\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Create Node\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"polyTexturePlacementPanel\" (localizedPanelLabel(\"UV Editor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"UV Editor\")) -mbv $menusOkayInPanels $panelName;\n" + + "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"renderWindowPanel\" (localizedPanelLabel(\"Render View\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Render View\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"shapePanel\" (localizedPanelLabel(\"Shape Editor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tshapePanel -edit -l (localizedPanelLabel(\"Shape Editor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"posePanel\" (localizedPanelLabel(\"Pose Editor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tposePanel -edit -l (localizedPanelLabel(\"Pose Editor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n" + + "\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"dynRelEdPanel\" (localizedPanelLabel(\"Dynamic Relationships\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Dynamic Relationships\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"relationshipPanel\" (localizedPanelLabel(\"Relationship Editor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Relationship Editor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"referenceEditorPanel\" (localizedPanelLabel(\"Reference Editor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Reference Editor\")) -mbv $menusOkayInPanels $panelName;\n" + + "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"dynPaintScriptedPanelType\" (localizedPanelLabel(\"Paint Effects\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Paint Effects\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"scriptEditorPanel\" (localizedPanelLabel(\"Script Editor\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Script Editor\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"profilerPanel\" (localizedPanelLabel(\"Profiler Tool\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Profiler Tool\")) -mbv $menusOkayInPanels $panelName;\n" + + "\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"contentBrowserPanel\" (localizedPanelLabel(\"Content Browser\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Content Browser\")) -mbv $menusOkayInPanels $panelName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextScriptedPanel \"Stereo\" (localizedPanelLabel(\"Stereo\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\tscriptedPanel -edit -l (localizedPanelLabel(\"Stereo\")) -mbv $menusOkayInPanels $panelName;\n{ string $editorName = ($panelName+\"Editor\");\n stereoCameraView -e \n -editorChanged \"updateModelPanelBar\" \n -camera \"|persp\" \n -useInteractiveMode 0\n -displayLights \"default\" \n -displayAppearance \"wireframe\" \n -activeOnly 0\n -ignorePanZoom 0\n" + + " -wireframeOnShaded 0\n -headsUpDisplay 1\n -holdOuts 1\n -selectionHiliteDisplay 1\n -useDefaultMaterial 0\n -bufferMode \"double\" \n -twoSidedLighting 1\n -backfaceCulling 0\n -xray 0\n -jointXray 0\n -activeComponentsXray 0\n -displayTextures 0\n -smoothWireframe 0\n -lineWidth 1\n -textureAnisotropic 0\n -textureHilight 1\n -textureSampling 2\n -textureDisplay \"modulate\" \n -textureMaxSize 32768\n -fogging 0\n -fogSource \"fragment\" \n -fogMode \"linear\" \n -fogStart 0\n -fogEnd 100\n -fogDensity 0.1\n -fogColor 0.5 0.5 0.5 1 \n -depthOfFieldPreview 1\n -maxConstantTransparency 1\n -rendererOverrideName \"stereoOverrideVP2\" \n" + + " -objectFilterShowInHUD 1\n -isFiltered 0\n -colorResolution 4 4 \n -bumpResolution 4 4 \n -textureCompression 0\n -transparencyAlgorithm \"frontAndBackCull\" \n -transpInShadows 0\n -cullingOverride \"none\" \n -lowQualityLighting 0\n -maximumNumHardwareLights 0\n -occlusionCulling 0\n -shadingModel 0\n -useBaseRenderer 0\n -useReducedRenderer 0\n -smallObjectCulling 0\n -smallObjectThreshold -1 \n -interactiveDisableShadows 0\n -interactiveBackFaceCull 0\n -sortTransparent 1\n -controllers 1\n -nurbsCurves 1\n -nurbsSurfaces 1\n -polymeshes 1\n -subdivSurfaces 1\n -planes 1\n -lights 1\n -cameras 1\n -controlVertices 1\n -hulls 1\n" + + " -grid 1\n -imagePlane 1\n -joints 1\n -ikHandles 1\n -deformers 1\n -dynamics 1\n -particleInstancers 1\n -fluids 1\n -hairSystems 1\n -follicles 1\n -nCloths 1\n -nParticles 1\n -nRigids 1\n -dynamicConstraints 1\n -locators 1\n -manipulators 1\n -pluginShapes 1\n -dimensions 1\n -handles 1\n -pivots 1\n -textures 1\n -strokes 1\n -motionTrails 1\n -clipGhosts 1\n -bluePencil 1\n -greasePencils 0\n -shadows 0\n -captureSequenceNumber -1\n -width 0\n -height 0\n -sceneRenderFilter 0\n -displayMode \"centerEye\" \n -viewColor 0 0 0 1 \n -useCustomBackground 1\n" + + " $editorName;\n stereoCameraView -e -viewSelected 0 $editorName;\n stereoCameraView -e \n -pluginObjects \"gpuCacheDisplayFilter\" 1 \n $editorName; };\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\t$panelName = `sceneUIReplacement -getNextPanel \"outlinerPanel\" (localizedPanelLabel(\"ToggledOutliner\")) `;\n\tif (\"\" != $panelName) {\n\t\t$label = `panel -q -label $panelName`;\n\t\toutlinerPanel -edit -l (localizedPanelLabel(\"ToggledOutliner\")) -mbv $menusOkayInPanels $panelName;\n\t\t$editorName = $panelName;\n outlinerEditor -e \n -showShapes 0\n -showAssignedMaterials 0\n -showTimeEditor 1\n -showReferenceNodes 1\n -showReferenceMembers 1\n -showAttributes 0\n -showConnected 0\n -showAnimCurvesOnly 0\n -showMuteInfo 0\n -organizeByLayer 1\n -organizeByClip 1\n -showAnimLayerWeight 1\n -autoExpandLayers 1\n" + + " -autoExpand 0\n -showDagOnly 1\n -showAssets 1\n -showContainedOnly 1\n -showPublishedAsConnected 0\n -showParentContainers 0\n -showContainerContents 1\n -ignoreDagHierarchy 0\n -expandConnections 0\n -showUpstreamCurves 1\n -showUnitlessCurves 1\n -showCompounds 1\n -showLeafs 1\n -showNumericAttrsOnly 0\n -highlightActive 1\n -autoSelectNewObjects 0\n -doNotSelectNewObjects 0\n -dropIsParent 1\n -transmitFilters 0\n -setFilter \"defaultSetFilter\" \n -showSetMembers 1\n -allowMultiSelection 1\n -alwaysToggleSelect 0\n -directSelect 0\n -isSet 0\n -isSetMember 0\n -showUfeItems 1\n -displayMode \"DAG\" \n -expandObjects 0\n -setsIgnoreFilters 1\n -containersIgnoreFilters 0\n -editAttrName 0\n -showAttrValues 0\n" + + " -highlightSecondary 0\n -showUVAttrsOnly 0\n -showTextureNodesOnly 0\n -attrAlphaOrder \"default\" \n -animLayerFilterOptions \"allAffecting\" \n -sortOrder \"none\" \n -longNames 0\n -niceNames 1\n -showNamespace 1\n -showPinIcons 0\n -mapMotionTrails 0\n -ignoreHiddenAttribute 0\n -ignoreOutlinerColor 0\n -renderFilterVisible 0\n -renderFilterIndex 0\n -selectionOrder \"chronological\" \n -expandAttribute 0\n $editorName;\n\t\tif (!$useSceneConfig) {\n\t\t\tpanel -e -l $label $panelName;\n\t\t}\n\t}\n\n\n\tif ($useSceneConfig) {\n string $configName = `getPanel -cwl (localizedPanelLabel(\"Current Layout\"))`;\n if (\"\" != $configName) {\n\t\t\tpanelConfiguration -edit -label (localizedPanelLabel(\"Current Layout\")) \n\t\t\t\t-userCreated false\n\t\t\t\t-defaultImage \"vacantCell.xP:/\"\n\t\t\t\t-image \"\"\n\t\t\t\t-sc false\n\t\t\t\t-configString \"global string $gMainPane; paneLayout -e -cn \\\"single\\\" -ps 1 100 100 $gMainPane;\"\n" + + "\t\t\t\t-removeAllPanels\n\t\t\t\t-ap false\n\t\t\t\t\t(localizedPanelLabel(\"Persp View\")) \n\t\t\t\t\t\"modelPanel\"\n" + + "\t\t\t\t\t\"$panelName = `modelPanel -unParent -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels `;\\n$editorName = $panelName;\\nmodelEditor -e \\n -docTag \\\"RADRENDER\\\" \\n -cam `findStartUpCamera persp` \\n -useInteractiveMode 0\\n -displayLights \\\"default\\\" \\n -displayAppearance \\\"smoothShaded\\\" \\n -activeOnly 0\\n -ignorePanZoom 0\\n -wireframeOnShaded 0\\n -headsUpDisplay 1\\n -holdOuts 1\\n -selectionHiliteDisplay 1\\n -useDefaultMaterial 0\\n -bufferMode \\\"double\\\" \\n -twoSidedLighting 0\\n -backfaceCulling 0\\n -xray 0\\n -jointXray 0\\n -activeComponentsXray 0\\n -displayTextures 1\\n -smoothWireframe 0\\n -lineWidth 1\\n -textureAnisotropic 0\\n -textureHilight 1\\n -textureSampling 2\\n -textureDisplay \\\"modulate\\\" \\n -textureMaxSize 32768\\n -fogging 0\\n -fogSource \\\"fragment\\\" \\n -fogMode \\\"linear\\\" \\n -fogStart 0\\n -fogEnd 100\\n -fogDensity 0.1\\n -fogColor 0.5 0.5 0.5 1 \\n -depthOfFieldPreview 1\\n -maxConstantTransparency 1\\n -rendererName \\\"vp2Renderer\\\" \\n -objectFilterShowInHUD 1\\n -isFiltered 0\\n -colorResolution 256 256 \\n -bumpResolution 512 512 \\n -textureCompression 0\\n -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n -transpInShadows 0\\n -cullingOverride \\\"none\\\" \\n -lowQualityLighting 0\\n -maximumNumHardwareLights 1\\n -occlusionCulling 0\\n -shadingModel 0\\n -useBaseRenderer 0\\n -useReducedRenderer 0\\n -smallObjectCulling 0\\n -smallObjectThreshold -1 \\n -interactiveDisableShadows 0\\n -interactiveBackFaceCull 0\\n -sortTransparent 1\\n -controllers 1\\n -nurbsCurves 1\\n -nurbsSurfaces 1\\n -polymeshes 1\\n -subdivSurfaces 1\\n -planes 1\\n -lights 1\\n -cameras 1\\n -controlVertices 1\\n -hulls 1\\n -grid 1\\n -imagePlane 1\\n -joints 1\\n -ikHandles 1\\n -deformers 1\\n -dynamics 1\\n -particleInstancers 1\\n -fluids 1\\n -hairSystems 1\\n -follicles 1\\n -nCloths 1\\n -nParticles 1\\n -nRigids 1\\n -dynamicConstraints 1\\n -locators 1\\n -manipulators 1\\n -pluginShapes 1\\n -dimensions 1\\n -handles 1\\n -pivots 1\\n -textures 1\\n -strokes 1\\n -motionTrails 1\\n -clipGhosts 1\\n -bluePencil 1\\n -greasePencils 0\\n -shadows 0\\n -captureSequenceNumber -1\\n -width 1197\\n -height 732\\n -sceneRenderFilter 0\\n -activeShadingGraph \\\"ballora_animatronic_shadow_rig:rsMaterial1SG,ballora_animatronic_shadow_rig:MAT_ballora,ballora_animatronic_shadow_rig:MAT_ballora\\\" \\n -activeCustomGeometry \\\"meshShaderball\\\" \\n -activeCustomLighSet \\\"defaultAreaLightSet\\\" \\n $editorName;\\nmodelEditor -e -viewSelected 0 $editorName;\\nmodelEditor -e \\n -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n $editorName\"\n" + + "\t\t\t\t\t\"modelPanel -edit -l (localizedPanelLabel(\\\"Persp View\\\")) -mbv $menusOkayInPanels $panelName;\\n$editorName = $panelName;\\nmodelEditor -e \\n -docTag \\\"RADRENDER\\\" \\n -cam `findStartUpCamera persp` \\n -useInteractiveMode 0\\n -displayLights \\\"default\\\" \\n -displayAppearance \\\"smoothShaded\\\" \\n -activeOnly 0\\n -ignorePanZoom 0\\n -wireframeOnShaded 0\\n -headsUpDisplay 1\\n -holdOuts 1\\n -selectionHiliteDisplay 1\\n -useDefaultMaterial 0\\n -bufferMode \\\"double\\\" \\n -twoSidedLighting 0\\n -backfaceCulling 0\\n -xray 0\\n -jointXray 0\\n -activeComponentsXray 0\\n -displayTextures 1\\n -smoothWireframe 0\\n -lineWidth 1\\n -textureAnisotropic 0\\n -textureHilight 1\\n -textureSampling 2\\n -textureDisplay \\\"modulate\\\" \\n -textureMaxSize 32768\\n -fogging 0\\n -fogSource \\\"fragment\\\" \\n -fogMode \\\"linear\\\" \\n -fogStart 0\\n -fogEnd 100\\n -fogDensity 0.1\\n -fogColor 0.5 0.5 0.5 1 \\n -depthOfFieldPreview 1\\n -maxConstantTransparency 1\\n -rendererName \\\"vp2Renderer\\\" \\n -objectFilterShowInHUD 1\\n -isFiltered 0\\n -colorResolution 256 256 \\n -bumpResolution 512 512 \\n -textureCompression 0\\n -transparencyAlgorithm \\\"frontAndBackCull\\\" \\n -transpInShadows 0\\n -cullingOverride \\\"none\\\" \\n -lowQualityLighting 0\\n -maximumNumHardwareLights 1\\n -occlusionCulling 0\\n -shadingModel 0\\n -useBaseRenderer 0\\n -useReducedRenderer 0\\n -smallObjectCulling 0\\n -smallObjectThreshold -1 \\n -interactiveDisableShadows 0\\n -interactiveBackFaceCull 0\\n -sortTransparent 1\\n -controllers 1\\n -nurbsCurves 1\\n -nurbsSurfaces 1\\n -polymeshes 1\\n -subdivSurfaces 1\\n -planes 1\\n -lights 1\\n -cameras 1\\n -controlVertices 1\\n -hulls 1\\n -grid 1\\n -imagePlane 1\\n -joints 1\\n -ikHandles 1\\n -deformers 1\\n -dynamics 1\\n -particleInstancers 1\\n -fluids 1\\n -hairSystems 1\\n -follicles 1\\n -nCloths 1\\n -nParticles 1\\n -nRigids 1\\n -dynamicConstraints 1\\n -locators 1\\n -manipulators 1\\n -pluginShapes 1\\n -dimensions 1\\n -handles 1\\n -pivots 1\\n -textures 1\\n -strokes 1\\n -motionTrails 1\\n -clipGhosts 1\\n -bluePencil 1\\n -greasePencils 0\\n -shadows 0\\n -captureSequenceNumber -1\\n -width 1197\\n -height 732\\n -sceneRenderFilter 0\\n -activeShadingGraph \\\"ballora_animatronic_shadow_rig:rsMaterial1SG,ballora_animatronic_shadow_rig:MAT_ballora,ballora_animatronic_shadow_rig:MAT_ballora\\\" \\n -activeCustomGeometry \\\"meshShaderball\\\" \\n -activeCustomLighSet \\\"defaultAreaLightSet\\\" \\n $editorName;\\nmodelEditor -e -viewSelected 0 $editorName;\\nmodelEditor -e \\n -pluginObjects \\\"gpuCacheDisplayFilter\\\" 1 \\n $editorName\"\n" + + "\t\t\t\t$configName;\n\n setNamedPanelLayout (localizedPanelLabel(\"Current Layout\"));\n }\n\n panelHistory -e -clear mainPanelHistory;\n sceneUIReplacement -clear;\n\t}\n\n\ngrid -spacing 100 -size 200 -divisions 2 -displayAxes yes -displayGridLines yes -displayDivisionLines yes -displayPerspectiveLabels no -displayOrthographicLabels no -displayAxesBold yes -perspectiveLabelPosition axis -orthographicLabelPosition edge;\nviewManip -drawCompass 0 -compassAngle 0 -frontParameters \"\" -homeParameters \"\" -selectionLockParameters \"\";\n}\n"); + setAttr ".st" 3; +createNode script -n "sceneConfigurationScriptNode"; + rename -uid "F05D8349-41F4-8BB0-D95D-36B5BBA7997A"; + setAttr ".b" -type "string" "playbackOptions -min 0.5 -max 8 -ast 0.5 -aet 400 "; + setAttr ".st" 6; +createNode renderSetup -n "renderSetup"; + rename -uid "12233F7B-456A-7CF7-FF0C-7DA42DF7D3D5"; +createNode aiStandardSurface -n "blue_bomb_mtl"; + rename -uid "F934DAD6-4361-84D0-145D-3ABBE9191F65"; +createNode shadingEngine -n "aiStandardSurface1SG"; + rename -uid "7BE48D52-4F8B-2582-5890-02B95C5BE75F"; + setAttr ".ihi" 0; + setAttr -s 10 ".dsm"; + setAttr ".ro" yes; + setAttr -s 4 ".gn"; +createNode materialInfo -n "materialInfo2"; + rename -uid "F7CEE925-44E6-71B4-67A6-68B4C2B5C79C"; +createNode file -n "file1"; + rename -uid "893C8535-4428-866E-BBC1-328D0AB49CB6"; + setAttr ".ftn" -type "string" "E:/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_BC_Utility - sRGB - Texture.png"; + setAttr ".cs" -type "string" "sRGB"; + setAttr ".ifr" yes; +createNode place2dTexture -n "place2dTexture1"; + rename -uid "BA019BFD-4DBE-A159-39B1-75A5A11ED5EE"; +createNode file -n "file2"; + rename -uid "28EE390D-41BE-F3F7-20AC-5995F1B42D69"; + setAttr ".ail" yes; + setAttr ".ftn" -type "string" "E:/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_R_Utility - Raw.png"; + setAttr ".cs" -type "string" "Raw"; + setAttr ".ifr" yes; +createNode place2dTexture -n "place2dTexture2"; + rename -uid "7D079E50-4EB7-3449-7D5C-23B7D5950D8A"; +createNode aiNormalMap -n "aiNormalMap1"; + rename -uid "6103CADE-4905-644D-8B88-7AA400E34427"; +createNode file -n "file3"; + rename -uid "E6C5541F-4CB6-C50A-73DC-569465687302"; + setAttr ".ail" yes; + setAttr ".ftn" -type "string" "E:/OneDrive/zibu/texture/blue bomb ajustada/T_angry bomb ajustada low_aiStandardSurface1SG_N_Utility - Raw.png"; + setAttr ".cs" -type "string" "Raw"; + setAttr ".ifr" yes; +createNode place2dTexture -n "place2dTexture3"; + rename -uid "582CB9D7-4F29-E1BB-7684-CCAFA0882E91"; +createNode groupId -n "groupId8"; + rename -uid "80651374-49F9-0389-F37E-FC97FC69EC1E"; + setAttr ".ihi" 0; +createNode polyMirror -n "polyMirror2"; + rename -uid "1168B710-447F-D9D1-86A3-2C81119C806A"; + setAttr ".uopa" yes; + setAttr ".ics" -type "componentList" 1 "f[*]"; + setAttr ".ix" -type "matrix" 0.80875215941983525 -0.012998224071990475 0.0031040731862996547 0 + 0.012899745742708692 0.8083982647663821 0.02417615660302588 0 -0.0034907963482629632 -0.024123352986160328 0.80849522116533146 0 + 2.339561596741953 15.598843672399237 11.632760854596796 1; + setAttr ".ws" yes; + setAttr ".mtt" 1; + setAttr ".sp" -type "double3" 17.043403625488281 89.811885833740234 68.350578308105469 ; + setAttr ".cm" yes; + setAttr ".fnf" 320; + setAttr ".lnf" 639; +createNode groupId -n "groupId9"; + rename -uid "563B4D71-4804-0EC0-C3E7-CCB3853FF47B"; + setAttr ".ihi" 0; +createNode groupParts -n "groupParts2"; + rename -uid "F92B132E-4176-F809-7133-D59DA8F5E1BA"; + setAttr ".ihi" 0; + setAttr ".ic" -type "componentList" 1 "f[0:319]"; +createNode deleteComponent -n "deleteComponent2"; + rename -uid "A4C96A9A-49E6-917F-F325-F4A1E65A0F84"; + setAttr ".dc" -type "componentList" 1 "f[320:639]"; +createNode polySoftEdge -n "polySoftEdge15"; + rename -uid "AA5908DC-4511-C5F2-3D3A-C8B5E1EFACA9"; + setAttr ".uopa" yes; + setAttr ".ics" -type "componentList" 1 "e[*]"; + setAttr ".ix" -type "matrix" 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1; + setAttr ".a" 180; +createNode polyTweakUV -n "polyTweakUV1"; + rename -uid "959D87EB-423B-E445-ABCB-DF9CFCB0A984"; + setAttr ".uopa" yes; + setAttr -s 1071 ".uvtk"; + setAttr ".uvtk[136]" -type "float2" 0.00090196729 0.0052869916 ; + setAttr ".uvtk[137]" -type "float2" 0.00093540549 0.0051324368 ; + setAttr ".uvtk[138]" -type "float2" 0.00097641349 0.0054737926 ; + setAttr ".uvtk[139]" -type "float2" 7.3611736e-05 0.0059603453 ; + setAttr ".uvtk[140]" -type "float2" -0.0014431179 0.006377995 ; + setAttr ".uvtk[141]" -type "float2" -0.0016804636 0.005520463 ; + setAttr ".uvtk[142]" -type "float2" -0.0028806031 0.00699085 ; + setAttr ".uvtk[143]" -type "float2" -0.0029909015 0.0059559345 ; + setAttr ".uvtk[144]" -type "float2" -0.0047208369 0.0056822896 ; + setAttr ".uvtk[145]" -type "float2" -0.0044737458 0.007337749 ; + setAttr ".uvtk[146]" -type "float2" -0.0049625635 0.0063345432 ; + setAttr ".uvtk[147]" -type "float2" -0.0052391589 0.0054408312 ; + setAttr ".uvtk[148]" -type "float2" -0.0069586337 0.0052388906 ; + setAttr ".uvtk[149]" -type "float2" -0.0056265593 0.0030947328 ; + setAttr ".uvtk[150]" -type "float2" -0.0032472014 0.0033673048 ; + setAttr ".uvtk[151]" -type "float2" -0.0040815175 0.0052477121 ; + setAttr ".uvtk[152]" -type "float2" -0.0049973428 0.0055376887 ; + setAttr ".uvtk[153]" -type "float2" -0.0059230626 0.0058878064 ; + setAttr ".uvtk[154]" -type "float2" -0.00042031705 0.0040135384 ; + setAttr ".uvtk[155]" -type "float2" -0.0014701486 0.0045740008 ; + setAttr ".uvtk[156]" -type "float2" -0.0021859854 0.0037201643 ; + setAttr ".uvtk[157]" -type "float2" -0.0012012273 0.0036476254 ; + setAttr ".uvtk[158]" -type "float2" -0.00046983361 0.0048598051 ; + setAttr ".uvtk[159]" -type "float2" -0.00069639087 0.0047520995 ; + setAttr ".uvtk[160]" -type "float2" 5.4836273e-06 0.0049289465 ; + setAttr ".uvtk[161]" -type "float2" 0.00027781725 0.0054071546 ; + setAttr ".uvtk[162]" -type "float2" -0.001723662 0.0025219917 ; + setAttr ".uvtk[163]" -type "float2" -0.0013527572 0.0029196739 ; + setAttr ".uvtk[164]" -type "float2" -0.0049257576 0.0011424422 ; + setAttr ".uvtk[165]" -type "float2" -0.0026887357 0.0010067225 ; + setAttr ".uvtk[166]" -type "float2" -0.0052365363 -0.00064456463 ; + setAttr ".uvtk[167]" -type "float2" -0.0034969747 0.001070857 ; + setAttr ".uvtk[168]" -type "float2" -0.00096195936 0.0024367571 ; + setAttr ".uvtk[169]" -type "float2" -0.00070051849 0.0027965903 ; + setAttr ".uvtk[170]" -type "float2" -0.00095251203 0.0033116937 ; + setAttr ".uvtk[171]" -type "float2" -0.0010015368 0.0015762448 ; + setAttr ".uvtk[172]" -type "float2" -0.00036987662 0.0020017624 ; + setAttr ".uvtk[173]" -type "float2" -0.00013148785 0.0039558411 ; + setAttr ".uvtk[174]" -type "float2" -0.0032700896 0.0022471547 ; + setAttr ".uvtk[175]" -type "float2" -0.0023042858 0.00072288513 ; + setAttr ".uvtk[176]" -type "float2" 3.0785799e-05 0.002358973 ; + setAttr ".uvtk[177]" -type "float2" -0.00010308623 0.0035688281 ; + setAttr ".uvtk[178]" -type "float2" -0.0033389032 -0.00059336424 ; + setAttr ".uvtk[179]" -type "float2" -0.0030651689 0.0011306405 ; + setAttr ".uvtk[180]" -type "float2" 0.00018125772 0.0030876398 ; + setAttr ".uvtk[181]" -type "float2" 0.00061073899 0.0038111806 ; + setAttr ".uvtk[182]" -type "float2" -0.0041998029 -0.0005556345 ; + setAttr ".uvtk[183]" -type "float2" -0.0033177137 0.00067347288 ; + setAttr ".uvtk[184]" -type "float2" -0.0014184266 0.0053705573 ; + setAttr ".uvtk[185]" -type "float2" -0.0027442724 0.0041665435 ; + setAttr ".uvtk[186]" -type "float2" -0.00179407 0.0036403537 ; + setAttr ".uvtk[187]" -type "float2" -0.0008546412 0.002948761 ; + setAttr ".uvtk[188]" -type "float2" -0.0023288876 0.0051945448 ; + setAttr ".uvtk[189]" -type "float2" -0.0026532114 0.0048516989 ; + setAttr ".uvtk[190]" -type "float2" -0.00092950463 0.0062558055 ; + setAttr ".uvtk[191]" -type "float2" -0.00074973702 0.006780684 ; + setAttr ".uvtk[192]" -type "float2" -0.0019288659 0.0064493418 ; + setAttr ".uvtk[193]" -type "float2" -0.0026913732 0.0056867599 ; + setAttr ".uvtk[194]" -type "float2" -0.0027531087 0.006327033 ; + setAttr ".uvtk[195]" -type "float2" -0.0038917959 0.0051095486 ; + setAttr ".uvtk[196]" -type "float2" 0.0012100339 0.0060071349 ; + setAttr ".uvtk[197]" -type "float2" 0.00092895329 0.0073942542 ; + setAttr ".uvtk[198]" -type "float2" 0.0027507842 0.0053819418 ; + setAttr ".uvtk[199]" -type "float2" 0.002294451 0.0060706735 ; + setAttr ".uvtk[200]" -type "float2" -0.0038228333 0.0052760839 ; + setAttr ".uvtk[201]" -type "float2" -0.0031954795 0.0061782002 ; + setAttr ".uvtk[202]" -type "float2" -0.0032101125 0.0050752163 ; + setAttr ".uvtk[203]" -type "float2" -0.0029360056 0.0052127838 ; + setAttr ".uvtk[204]" -type "float2" 0.0033602864 0.0038636923 ; + setAttr ".uvtk[205]" -type "float2" 0.0015604794 0.0038321614 ; + setAttr ".uvtk[206]" -type "float2" 0.0010841787 0.0029540062 ; + setAttr ".uvtk[207]" -type "float2" 0.002503261 0.0027775168 ; + setAttr ".uvtk[208]" -type "float2" 0.0032086968 0.0052748322 ; + setAttr ".uvtk[209]" -type "float2" 0.0023566484 0.0056378245 ; + setAttr ".uvtk[210]" -type "float2" -0.00092978776 -0.00030189753 ; + setAttr ".uvtk[211]" -type "float2" -0.00015085936 0.0023991466 ; + setAttr ".uvtk[212]" -type "float2" -0.0013238192 0.0025410652 ; + setAttr ".uvtk[213]" -type "float2" -0.001706928 0.0010573864 ; + setAttr ".uvtk[214]" -type "float2" -0.0012162477 0.0021203756 ; + setAttr ".uvtk[215]" -type "float2" -0.001873821 0.0016374588 ; + setAttr ".uvtk[216]" -type "float2" -0.0018315464 0.0019651055 ; + setAttr ".uvtk[217]" -type "float2" -0.0024885386 0.0021627545 ; + setAttr ".uvtk[218]" -type "float2" 0.0019812733 -0.0015576482 ; + setAttr ".uvtk[219]" -type "float2" 0.0026383996 0.0011734366 ; + setAttr ".uvtk[220]" -type "float2" -0.0023809373 0.00091147423 ; + setAttr ".uvtk[221]" -type "float2" -0.0013898462 0.0023364425 ; + setAttr ".uvtk[222]" -type "float2" 0.0027897358 -0.0014770031 ; + setAttr ".uvtk[223]" -type "float2" 0.0016016364 0.00096714497 ; + setAttr ".uvtk[224]" -type "float2" -0.001325503 0.0032610893 ; + setAttr ".uvtk[225]" -type "float2" -0.0010755062 0.002099216 ; + setAttr ".uvtk[226]" -type "float2" 0.003749311 -0.0013145804 ; + setAttr ".uvtk[227]" -type "float2" 0.0020462871 0.0012173057 ; + setAttr ".uvtk[228]" -type "float2" 0.000904724 0.0010181069 ; + setAttr ".uvtk[229]" -type "float2" 0.0031365305 -0.00069004297 ; + setAttr ".uvtk[230]" -type "float2" 0.002229616 0.0016794801 ; + setAttr ".uvtk[231]" -type "float2" 0.00062584877 0.0018790364 ; + setAttr ".uvtk[232]" -type "float2" -0.0012090355 0.0051143169 ; + setAttr ".uvtk[233]" -type "float2" -0.0012502968 0.0050151944 ; + setAttr ".uvtk[234]" -type "float2" -0.0019621849 0.0058020949 ; + setAttr ".uvtk[235]" -type "float2" -0.0027718246 0.0062968135 ; + setAttr ".uvtk[236]" -type "float2" -0.0035544038 0.0060216188 ; + setAttr ".uvtk[237]" -type "float2" -0.0040216744 0.0054954886 ; + setAttr ".uvtk[238]" -type "float2" -0.0052325726 0.0055593252 ; + setAttr ".uvtk[239]" -type "float2" -0.0070127547 0.0048058033 ; + setAttr ".uvtk[240]" -type "float2" -0.0055903494 0.0032864213 ; + setAttr ".uvtk[241]" -type "float2" -0.0053528547 0.0018048286 ; + setAttr ".uvtk[242]" -type "float2" -0.0051694214 -8.6426735e-05 ; + setAttr ".uvtk[243]" -type "float2" -0.0037128627 -0.00027966499 ; + setAttr ".uvtk[244]" -type "float2" -0.0028811395 -0.00013583899 ; + setAttr ".uvtk[245]" -type "float2" -0.0015231073 0.00088375807 ; + setAttr ".uvtk[246]" -type "float2" -0.00078627467 0.0013494492 ; + setAttr ".uvtk[247]" -type "float2" -0.00055152178 0.0015063882 ; + setAttr ".uvtk[248]" -type "float2" -0.00041754544 0.0016695261 ; + setAttr ".uvtk[249]" -type "float2" -0.0005069375 0.0021435022 ; + setAttr ".uvtk[250]" -type "float2" -0.0018778443 0.0053939819 ; + setAttr ".uvtk[251]" -type "float2" -0.0014075488 0.0050330758 ; + setAttr ".uvtk[252]" -type "float2" 0.00023576617 0.0061160326 ; + setAttr ".uvtk[253]" -type "float2" -0.00073486567 0.0060277581 ; + setAttr ".uvtk[254]" -type "float2" -0.0013184398 0.005668819 ; + setAttr ".uvtk[255]" -type "float2" 0.0015898496 0.0057721734 ; + setAttr ".uvtk[256]" -type "float2" 0.0028526038 0.0049889088 ; + setAttr ".uvtk[257]" -type "float2" 0.0025671124 0.003436923 ; + setAttr ".uvtk[258]" -type "float2" 0.0019688457 0.0027193427 ; + setAttr ".uvtk[259]" -type "float2" 0.001777783 0.0025728941 ; + setAttr ".uvtk[260]" -type "float2" 0.0019755363 0.0011179447 ; + setAttr ".uvtk[261]" -type "float2" 0.0014299005 0.00012868643 ; + setAttr ".uvtk[262]" -type "float2" 0.0030904263 0.00065535307 ; + setAttr ".uvtk[263]" -type "float2" -0.002095297 0.0017102361 ; + setAttr ".uvtk[264]" -type "float2" -0.00057135522 0.00070393085 ; + setAttr ".uvtk[265]" -type "float2" -0.0015917867 0.0029099584 ; + setAttr ".uvtk[266]" -type "float2" -0.002084136 0.002799511 ; + setAttr ".uvtk[267]" -type "float2" -0.0027777553 0.0025831461 ; + setAttr ".uvtk[268]" -type "float2" -0.0015813112 0.0043596625 ; + setAttr ".uvtk[269]" -type "float2" -0.0013040453 0.0044602752 ; + setAttr ".uvtk[270]" -type "float2" -0.0012625605 0.0040413737 ; + setAttr ".uvtk[271]" -type "float2" -0.0015491247 0.0039507151 ; + setAttr ".uvtk[272]" -type "float2" -0.0015602261 0.0039404035 ; + setAttr ".uvtk[273]" -type "float2" -0.0014874041 0.0042735934 ; + setAttr ".uvtk[274]" -type "float2" -0.0016393512 0.0037426949 ; + setAttr ".uvtk[275]" -type "float2" -0.0015589893 0.0039841533 ; + setAttr ".uvtk[276]" -type "float2" -0.0015245676 0.0038899183 ; + setAttr ".uvtk[277]" -type "float2" -0.0016366392 0.0037608743 ; + setAttr ".uvtk[278]" -type "float2" -0.0018552244 0.0039099455 ; + setAttr ".uvtk[279]" -type "float2" -0.0015315413 0.0040826797 ; + setAttr ".uvtk[280]" -type "float2" -0.0014542937 0.0038301349 ; + setAttr ".uvtk[281]" -type "float2" -0.0017523766 0.0038903952 ; + setAttr ".uvtk[282]" -type "float2" -0.0017571449 0.0040132403 ; + setAttr ".uvtk[283]" -type "float2" -0.001647085 0.0041454434 ; + setAttr ".uvtk[284]" -type "float2" -0.00068235397 0.0025546551 ; + setAttr ".uvtk[285]" -type "float2" -0.001813367 0.0030052066 ; + setAttr ".uvtk[286]" -type "float2" -0.0014606565 0.0029211044 ; + setAttr ".uvtk[287]" -type "float2" -0.0016811788 0.003448844 ; + setAttr ".uvtk[288]" -type "float2" -0.0023706108 0.0047466159 ; + setAttr ".uvtk[289]" -type "float2" -0.0017127693 0.0047770143 ; + setAttr ".uvtk[290]" -type "float2" -0.0012030751 0.004678309 ; + setAttr ".uvtk[291]" -type "float2" -0.0021333843 0.0039949417 ; + setAttr ".uvtk[292]" -type "float2" -0.0011575818 0.0041495562 ; + setAttr ".uvtk[293]" -type "float2" -0.0014234036 0.0043429732 ; + setAttr ".uvtk[294]" -type "float2" -0.0019116998 0.0040408969 ; + setAttr ".uvtk[295]" -type "float2" -0.0010685474 0.0040695667 ; + setAttr ".uvtk[296]" -type "float2" -0.0014078468 0.0034836531 ; + setAttr ".uvtk[297]" -type "float2" -0.0015303344 0.0043905973 ; + setAttr ".uvtk[298]" -type "float2" -0.0012313426 0.0030092001 ; + setAttr ".uvtk[299]" -type "float2" -0.0016640425 0.0041379929 ; + setAttr ".uvtk[300]" -type "float2" -0.0015472472 0.0039662123 ; + setAttr ".uvtk[301]" -type "float2" -0.0012862831 0.0039381385 ; + setAttr ".uvtk[302]" -type "float2" -0.0014667213 0.0040141344 ; + setAttr ".uvtk[303]" -type "float2" -0.0019731373 0.0038251877 ; + setAttr ".uvtk[304]" -type "float2" -0.001882419 0.0038606524 ; + setAttr ".uvtk[305]" -type "float2" -0.0010766089 0.0038115978 ; + setAttr ".uvtk[306]" -type "float2" -0.0010843426 0.0039318204 ; + setAttr ".uvtk[307]" -type "float2" -0.0020881295 0.0039281845 ; + setAttr ".uvtk[308]" -type "float2" -0.0021838695 0.0040154457 ; + setAttr ".uvtk[309]" -type "float2" -0.0011641234 0.0040497184 ; + setAttr ".uvtk[310]" -type "float2" -0.0010760874 0.0041944385 ; + setAttr ".uvtk[311]" -type "float2" -0.0010148138 0.004150629 ; + setAttr ".uvtk[312]" -type "float2" -0.0011666268 0.0044158101 ; + setAttr ".uvtk[313]" -type "float2" -0.0020153373 0.0042387247 ; + setAttr ".uvtk[314]" -type "float2" -0.0021857619 0.0041643977 ; + setAttr ".uvtk[315]" -type "float2" -0.0018765181 0.0040181875 ; + setAttr ".uvtk[316]" -type "float2" -0.001165539 0.0039418936 ; + setAttr ".uvtk[317]" -type "float2" -0.0014740974 0.0042229891 ; + setAttr ".uvtk[318]" -type "float2" -0.0015333146 0.0041415095 ; + setAttr ".uvtk[319]" -type "float2" -0.0015123934 0.0041000247 ; + setAttr ".uvtk[320]" -type "float2" -0.0016184002 0.0042802095 ; + setAttr ".uvtk[321]" -type "float2" -0.0015131533 0.0037718415 ; + setAttr ".uvtk[322]" -type "float2" -0.00170739 0.0038262606 ; + setAttr ".uvtk[323]" -type "float2" -0.0013727099 0.0040064454 ; + setAttr ".uvtk[324]" -type "float2" -0.0016100109 0.0041503906 ; + setAttr ".uvtk[325]" -type "float2" -0.0014943331 0.0041612387 ; + setAttr ".uvtk[326]" -type "float2" -0.0013556182 0.0040990114 ; + setAttr ".uvtk[327]" -type "float2" -0.0015091002 0.0039880872 ; + setAttr ".uvtk[328]" -type "float2" -0.0016632527 0.0039399266 ; + setAttr ".uvtk[329]" -type "float2" -0.0022860765 0.0040839911 ; + setAttr ".uvtk[330]" -type "float2" -0.0022449493 0.0038487315 ; + setAttr ".uvtk[331]" -type "float2" -0.00085248053 0.004095912 ; + setAttr ".uvtk[332]" -type "float2" -0.001050204 0.0042360425 ; + setAttr ".uvtk[333]" -type "float2" -0.0011534989 0.0044890642 ; + setAttr ".uvtk[334]" -type "float2" -0.0016231686 0.0040726662 ; + setAttr ".uvtk[335]" -type "float2" -0.0015756041 0.0037911534 ; + setAttr ".uvtk[336]" -type "float2" -0.0016415864 0.0037843585 ; + setAttr ".uvtk[337]" -type "float2" -0.0014525354 0.0038217306 ; + setAttr ".uvtk[338]" -type "float2" -0.001643151 0.0040459037 ; + setAttr ".uvtk[339]" -type "float2" -0.0020775497 0.0043324828 ; + setAttr ".uvtk[340]" -type "float2" -0.0013844073 0.0039532781 ; + setAttr ".uvtk[341]" -type "float2" -0.0013920218 0.0035788417 ; + setAttr ".uvtk[342]" -type "float2" -0.0013099015 0.0034317374 ; + setAttr ".uvtk[343]" -type "float2" -0.0015608072 0.003344655 ; + setAttr ".uvtk[344]" -type "float2" -0.001737982 0.0035132766 ; + setAttr ".uvtk[345]" -type "float2" -0.0016905665 0.0037372112 ; + setAttr ".uvtk[346]" -type "float2" -0.0019931644 0.0040032268 ; + setAttr ".uvtk[347]" -type "float2" -0.0015567392 0.0033223629 ; + setAttr ".uvtk[348]" -type "float2" -0.0015118718 0.003739357 ; + setAttr ".uvtk[349]" -type "float2" -0.0016964227 0.0037223697 ; + setAttr ".uvtk[350]" -type "float2" -0.0015139878 0.0044382215 ; + setAttr ".uvtk[351]" -type "float2" -0.0015282482 0.0044973493 ; + setAttr ".uvtk[352]" -type "float2" -0.001741901 0.00437814 ; + setAttr ".uvtk[353]" -type "float2" -0.0019524992 0.0036271214 ; + setAttr ".uvtk[354]" -type "float2" -0.0019717067 0.0042920709 ; + setAttr ".uvtk[355]" -type "float2" -0.0012588203 0.0036625862 ; + setAttr ".uvtk[356]" -type "float2" -0.0011797249 0.0042896271 ; + setAttr ".uvtk[357]" -type "float2" -0.0010392368 0.0042306185 ; + setAttr ".uvtk[358]" -type "float2" -0.0011114031 0.0038538575 ; + setAttr ".uvtk[359]" -type "float2" -0.0013863444 0.0040440559 ; + setAttr ".uvtk[360]" -type "float2" -0.0021342337 0.0041310787 ; + setAttr ".uvtk[361]" -type "float2" -0.0020326674 0.0038064718 ; + setAttr ".uvtk[362]" -type "float2" -0.0018443316 0.0039770603 ; + setAttr ".uvtk[363]" -type "float2" 0.0012367219 0.0060893297 ; + setAttr ".uvtk[364]" -type "float2" -0.00030402839 0.0054870248 ; + setAttr ".uvtk[365]" -type "float2" -0.00094872713 0.0055986047 ; + setAttr ".uvtk[366]" -type "float2" -0.0012963712 0.0053626895 ; + setAttr ".uvtk[367]" -type "float2" -0.0015755892 0.0049351454 ; + setAttr ".uvtk[368]" -type "float2" -0.0017917454 0.0044186115 ; + setAttr ".uvtk[369]" -type "float2" -0.0029527247 0.0041607022 ; + setAttr ".uvtk[370]" -type "float2" -0.0018126518 0.00408566 ; + setAttr ".uvtk[371]" -type "float2" -0.0018143356 0.003903091 ; + setAttr ".uvtk[372]" -type "float2" -0.0015831441 0.0038414598 ; + setAttr ".uvtk[373]" -type "float2" -0.0015907288 0.0038727522 ; + setAttr ".uvtk[374]" -type "float2" -0.001583457 0.0039729476 ; + setAttr ".uvtk[375]" -type "float2" -0.0015599132 0.0040858388 ; + setAttr ".uvtk[376]" -type "float2" -0.0014214218 0.0044822693 ; + setAttr ".uvtk[377]" -type "float2" -0.0015072525 0.0048159361 ; + setAttr ".uvtk[378]" -type "float2" -0.0020380914 0.0052319169 ; + setAttr ".uvtk[379]" -type "float2" -0.0025150776 0.0055028796 ; + setAttr ".uvtk[380]" -type "float2" -0.0029496551 0.0052902699 ; + setAttr ".uvtk[381]" -type "float2" -0.0033527911 0.0049610734 ; + setAttr ".uvtk[382]" -type "float2" -0.0041513741 0.0068822503 ; + setAttr ".uvtk[383]" -type "float2" -0.0039945543 0.0039073229 ; + setAttr ".uvtk[384]" -type "float2" -0.003166914 0.0035092831 ; + setAttr ".uvtk[385]" -type "float2" 0.0029775649 0.0055046082 ; + setAttr ".uvtk[386]" -type "float2" 0.0010521561 0.0024719238 ; + setAttr ".uvtk[387]" -type "float2" -2.1472573e-05 0.0028361678 ; + setAttr ".uvtk[388]" -type "float2" -0.00031401217 0.0032853484 ; + setAttr ".uvtk[389]" -type "float2" -0.00024192035 0.0029827356 ; + setAttr ".uvtk[390]" -type "float2" 0.0011278391 0.0025856495 ; + setAttr ".uvtk[391]" -type "float2" -0.0029985309 0.0034442544 ; + setAttr ".uvtk[392]" -type "float2" -0.0026808977 0.0021001697 ; + setAttr ".uvtk[393]" -type "float2" -0.0019700527 0.0018594861 ; + setAttr ".uvtk[394]" -type "float2" -0.0018104315 0.0029935837 ; + setAttr ".uvtk[395]" -type "float2" -0.00086763501 0.0034036636 ; + setAttr ".uvtk[396]" -type "float2" -0.00040143728 0.0033800006 ; + setAttr ".uvtk[397]" -type "float2" -0.00053775311 0.0036931038 ; + setAttr ".uvtk[398]" -type "float2" -0.00086668134 0.0035400987 ; + setAttr ".uvtk[399]" -type "float2" -0.00044281781 0.003559351 ; + setAttr ".uvtk[400]" -type "float2" -0.00027653575 0.0030319095 ; + setAttr ".uvtk[401]" -type "float2" -0.0022250861 0.0026623607 ; + setAttr ".uvtk[402]" -type "float2" -0.0015812814 0.0032398701 ; + setAttr ".uvtk[403]" -type "float2" -0.0024962127 0.0033226013 ; + setAttr ".uvtk[404]" -type "float2" -0.0023427457 0.0029523373 ; + setAttr ".uvtk[405]" -type "float2" -0.0024780333 0.0022371411 ; + setAttr ".uvtk[406]" -type "float2" -0.0019347966 0.0017903447 ; + setAttr ".uvtk[407]" -type "float2" -0.002001211 0.0021176934 ; + setAttr ".uvtk[408]" -type "float2" -0.0011117607 0.0013028979 ; + setAttr ".uvtk[409]" -type "float2" -0.0020671487 0.0055524707 ; + setAttr ".uvtk[410]" -type "float2" -0.0025662184 0.005387187 ; + setAttr ".uvtk[411]" -type "float2" -0.0022556037 0.005089879 ; + setAttr ".uvtk[412]" -type "float2" -0.002447769 0.0052354336 ; + setAttr ".uvtk[413]" -type "float2" -0.0018693805 0.0052977204 ; + setAttr ".uvtk[414]" -type "float2" -0.0017852634 0.0045086741 ; + setAttr ".uvtk[415]" -type "float2" -0.0023293048 0.0044409037 ; + setAttr ".uvtk[416]" -type "float2" -0.0029536039 0.0050666332 ; + setAttr ".uvtk[417]" -type "float2" -0.0028720945 0.0050545931 ; + setAttr ".uvtk[418]" -type "float2" -0.0030629486 0.0047643781 ; + setAttr ".uvtk[419]" -type "float2" -0.0032639503 0.0043635964 ; + setAttr ".uvtk[420]" -type "float2" -0.0032965988 0.0046049356 ; + setAttr ".uvtk[421]" -type "float2" -0.0025724322 0.0040464401 ; + setAttr ".uvtk[422]" -type "float2" -0.003019318 0.0043085217 ; + setAttr ".uvtk[423]" -type "float2" -0.0020822436 0.0042611361 ; + setAttr ".uvtk[424]" -type "float2" -0.0024442673 0.0043552518 ; + setAttr ".uvtk[425]" -type "float2" -0.0011539161 0.0052940249 ; + setAttr ".uvtk[426]" -type "float2" -0.0011138767 0.0046818256 ; + setAttr ".uvtk[427]" -type "float2" -0.001089558 0.004878521 ; + setAttr ".uvtk[428]" -type "float2" -0.001073271 0.0046790242 ; + setAttr ".uvtk[429]" -type "float2" -0.0014689267 0.0044446588 ; + setAttr ".uvtk[430]" -type "float2" -0.001036793 0.0045690536 ; + setAttr ".uvtk[431]" -type "float2" -0.0016093999 0.0048009753 ; + setAttr ".uvtk[432]" -type "float2" -0.0011950433 0.0049248338 ; + setAttr ".uvtk[433]" -type "float2" -0.0021860003 0.0042071342 ; + setAttr ".uvtk[434]" -type "float2" -0.0016913265 0.0041821599 ; + setAttr ".uvtk[435]" -type "float2" -0.0016231686 0.0050144196 ; + setAttr ".uvtk[436]" -type "float2" -0.0013390183 0.004653275 ; + setAttr ".uvtk[437]" -type "float2" -0.0015152395 0.0051953793 ; + setAttr ".uvtk[438]" -type "float2" -0.00093866885 0.0055603981 ; + setAttr ".uvtk[439]" -type "float2" -0.0019080937 0.0043589473 ; + setAttr ".uvtk[440]" -type "float2" -0.0019212663 0.0040688515 ; + setAttr ".uvtk[441]" -type "float2" -0.0023938864 0.0040174723 ; + setAttr ".uvtk[442]" -type "float2" -0.0021056533 0.0044882298 ; + setAttr ".uvtk[443]" -type "float2" -0.001791358 0.0045611262 ; + setAttr ".uvtk[444]" -type "float2" -0.0018013418 0.0046088696 ; + setAttr ".uvtk[445]" -type "float2" -0.0020463765 0.004373908 ; + setAttr ".uvtk[446]" -type "float2" -0.0018497407 0.0044500232 ; + setAttr ".uvtk[447]" -type "float2" -0.0019588172 0.0041007996 ; + setAttr ".uvtk[448]" -type "float2" -0.0023136884 0.0041132569 ; + setAttr ".uvtk[449]" -type "float2" -0.0018959939 0.0044342875 ; + setAttr ".uvtk[450]" -type "float2" -0.0020730197 0.0043766499 ; + setAttr ".uvtk[451]" -type "float2" -0.0017957836 0.0044888854 ; + setAttr ".uvtk[452]" -type "float2" -0.0016065091 0.0047359467 ; + setAttr ".uvtk[453]" -type "float2" -0.0015947074 0.0048041344 ; + setAttr ".uvtk[454]" -type "float2" -0.0013797283 0.0052219629 ; + setAttr ".uvtk[455]" -type "float2" -0.0014956892 0.0046028495 ; + setAttr ".uvtk[456]" -type "float2" -0.00199233 0.0041126013 ; + setAttr ".uvtk[457]" -type "float2" -0.0014589131 0.0040007234 ; + setAttr ".uvtk[458]" -type "float2" -0.0013211519 0.0039107203 ; + setAttr ".uvtk[459]" -type "float2" -0.0020610094 0.0038331151 ; + setAttr ".uvtk[460]" -type "float2" -0.0021665543 0.003670752 ; + setAttr ".uvtk[461]" -type "float2" -0.0017376542 0.0038101077 ; + setAttr ".uvtk[462]" -type "float2" -0.0015953481 0.0037778616 ; + setAttr ".uvtk[463]" -type "float2" -0.0013386011 0.0040404201 ; + setAttr ".uvtk[464]" -type "float2" -0.001587227 0.0039466023 ; + setAttr ".uvtk[465]" -type "float2" -0.0014616996 0.0046442151 ; + setAttr ".uvtk[466]" -type "float2" -0.0012486875 0.0045498013 ; + setAttr ".uvtk[467]" -type "float2" -0.0017982274 0.0049318075 ; + setAttr ".uvtk[468]" -type "float2" -0.0017203838 0.0050609708 ; + setAttr ".uvtk[469]" -type "float2" -0.0019157827 0.0045993924 ; + setAttr ".uvtk[470]" -type "float2" -0.0020548701 0.0046564937 ; + setAttr ".uvtk[471]" -type "float2" -0.0013796389 0.0043148398 ; + setAttr ".uvtk[472]" -type "float2" -0.0017288625 0.0043341517 ; + setAttr ".uvtk[473]" -type "float2" -0.0015504062 0.004725039 ; + setAttr ".uvtk[474]" -type "float2" -0.0019956827 0.004422307 ; + setAttr ".uvtk[475]" -type "float2" -0.0017688572 0.0046964288 ; + setAttr ".uvtk[476]" -type "float2" -0.0016432703 0.004603982 ; + setAttr ".uvtk[477]" -type "float2" -0.0021800101 0.0057244301 ; + setAttr ".uvtk[478]" -type "float2" -0.0022991598 0.0058140755 ; + setAttr ".uvtk[479]" -type "float2" -0.002196461 0.0060926676 ; + setAttr ".uvtk[480]" -type "float2" -0.0022513866 0.005908072 ; + setAttr ".uvtk[481]" -type "float2" -0.00093570352 0.0042343736 ; + setAttr ".uvtk[482]" -type "float2" -0.0018204451 0.0040071607 ; + setAttr ".uvtk[483]" -type "float2" -0.0016555935 0.0038541555 ; + setAttr ".uvtk[484]" -type "float2" -0.0015457422 0.0038195848 ; + setAttr ".uvtk[485]" -type "float2" -0.001435414 0.0039882064 ; + setAttr ".uvtk[486]" -type "float2" -0.0014392585 0.0045079589 ; + setAttr ".uvtk[487]" -type "float2" -0.0016521513 0.0042495728 ; + setAttr ".uvtk[488]" -type "float2" -0.00092229247 0.004339695 ; + setAttr ".uvtk[489]" -type "float2" -0.0015081167 0.0040330291 ; + setAttr ".uvtk[490]" -type "float2" -0.0021526814 0.0043255091 ; + setAttr ".uvtk[491]" -type "float2" -0.0018404722 0.0049436688 ; + setAttr ".uvtk[492]" -type "float2" -0.0024432242 0.0045602322 ; + setAttr ".uvtk[493]" -type "float2" -0.0023020506 0.0046712756 ; + setAttr ".uvtk[494]" -type "float2" -0.0021456778 0.0048571825 ; + setAttr ".uvtk[495]" -type "float2" -0.0023160875 0.0050444603 ; + setAttr ".uvtk[496]" -type "float2" -0.0025759339 0.004406631 ; + setAttr ".uvtk[497]" -type "float2" -0.0028168559 0.0043447018 ; + setAttr ".uvtk[498]" -type "float2" -0.0030684173 0.0042675734 ; + setAttr ".uvtk[499]" -type "float2" -0.0020911396 0.0047784448 ; + setAttr ".uvtk[500]" -type "float2" -0.0036242902 0.0042774677 ; + setAttr ".uvtk[501]" -type "float2" -0.0036402643 0.0042974353 ; + setAttr ".uvtk[502]" -type "float2" -0.0033802092 0.0038846731 ; + setAttr ".uvtk[503]" -type "float2" -0.0034062862 0.0041114688 ; + setAttr ".uvtk[504]" -type "float2" -0.0033316016 0.0045855641 ; + setAttr ".uvtk[505]" -type "float2" -0.0033074617 0.0042302012 ; + setAttr ".uvtk[506]" -type "float2" -0.0031340718 0.0040606856 ; + setAttr ".uvtk[507]" -type "float2" -0.0032663643 0.0038713813 ; + setAttr ".uvtk[508]" -type "float2" -0.0031355321 0.0046553016 ; + setAttr ".uvtk[509]" -type "float2" -0.0026486814 0.004160881 ; + setAttr ".uvtk[510]" -type "float2" -0.002938062 0.0047373772 ; + setAttr ".uvtk[511]" -type "float2" -0.0023434162 0.0046079159 ; + setAttr ".uvtk[512]" -type "float2" -0.0028531253 0.0047934651 ; + setAttr ".uvtk[513]" -type "float2" -0.0022024512 0.0045720935 ; + setAttr ".uvtk[526]" -type "float2" -0.0026528835 0.0043939948 ; + setAttr ".uvtk[527]" -type "float2" -0.002663672 0.0044462085 ; + setAttr ".uvtk[534]" -type "float2" -0.0039142072 0.0037910938 ; + setAttr ".uvtk[535]" -type "float2" -0.0034739971 0.0033720136 ; + setAttr ".uvtk[542]" -type "float2" -0.0026116967 0.0045683384 ; + setAttr ".uvtk[543]" -type "float2" -0.0029853284 0.0045571923 ; + setAttr ".uvtk[544]" -type "float2" -0.0039546788 0.0036582947 ; + setAttr ".uvtk[545]" -type "float2" -0.0037581921 0.003713131 ; + setAttr ".uvtk[546]" -type "float2" -0.0033853948 0.0041106343 ; + setAttr ".uvtk[547]" -type "float2" -0.0031818449 0.0037158728 ; + setAttr ".uvtk[548]" -type "float2" -0.003698498 0.0035263896 ; + setAttr ".uvtk[549]" -type "float2" -0.0033908486 0.0037919879 ; + setAttr ".uvtk[550]" -type "float2" -0.0036472976 0.003827095 ; + setAttr ".uvtk[551]" -type "float2" -0.0034913123 0.0038031936 ; + setAttr ".uvtk[552]" -type "float2" -0.0036144555 0.0035428405 ; + setAttr ".uvtk[553]" -type "float2" -0.0037123561 0.0035037398 ; + setAttr ".uvtk[554]" -type "float2" -0.0011923462 0.0053090453 ; + setAttr ".uvtk[555]" -type "float2" -0.0018312186 0.0052891374 ; + setAttr ".uvtk[556]" -type "float2" -0.0019099563 0.0054543018 ; + setAttr ".uvtk[557]" -type "float2" -0.00063285232 0.0043827891 ; + setAttr ".uvtk[558]" -type "float2" -0.00063253939 0.0043736696 ; + setAttr ".uvtk[559]" -type "float2" 0.0006699264 0.0037077665 ; + setAttr ".uvtk[560]" -type "float2" 0.00039792061 0.0036464334 ; + setAttr ".uvtk[561]" -type "float2" -0.0006467402 0.0048042536 ; + setAttr ".uvtk[562]" -type "float2" -0.0016978383 0.0049884319 ; + setAttr ".uvtk[563]" -type "float2" -0.0015409142 0.0040646195 ; + setAttr ".uvtk[564]" -type "float2" -0.0016332269 0.0039177537 ; + setAttr ".uvtk[565]" -type "float2" -0.0015530884 0.0041427016 ; + setAttr ".uvtk[566]" -type "float2" -0.0015534759 0.0038923621 ; + setAttr ".uvtk[567]" -type "float2" -0.001352042 0.0043777823 ; + setAttr ".uvtk[568]" -type "float2" -0.0015973747 0.00396806 ; + setAttr ".uvtk[569]" -type "float2" -0.0015560091 0.0038501024 ; + setAttr ".uvtk[570]" -type "float2" -0.0016300529 0.0040948391 ; + setAttr ".uvtk[571]" -type "float2" -0.0015969127 0.0043441057 ; + setAttr ".uvtk[572]" -type "float2" -0.0017399192 0.0047312379 ; + setAttr ".uvtk[573]" -type "float2" -0.0017323196 0.0046010017 ; + setAttr ".uvtk[574]" -type "float2" -0.0020260513 0.0048815012 ; + setAttr ".uvtk[575]" -type "float2" -0.0026624203 0.0049478412 ; + setAttr ".uvtk[576]" -type "float2" -0.0022091568 0.0050852299 ; + setAttr ".uvtk[577]" -type "float2" -0.0019946694 0.005004704 ; + setAttr ".uvtk[578]" -type "float2" -0.0024243295 0.0052594543 ; + setAttr ".uvtk[579]" -type "float2" -0.002687186 0.0050655603 ; + setAttr ".uvtk[580]" -type "float2" -0.0025980175 0.0047243834 ; + setAttr ".uvtk[581]" -type "float2" -0.0023262203 0.004848361 ; + setAttr ".uvtk[582]" -type "float2" -0.0031400323 0.0040645599 ; + setAttr ".uvtk[583]" -type "float2" -0.0032458901 0.0040060282 ; + setAttr ".uvtk[584]" -type "float2" -0.0031604469 0.0038996339 ; + setAttr ".uvtk[585]" -type "float2" -0.0030527413 0.0041573644 ; + setAttr ".uvtk[586]" -type "float2" -0.0031403899 0.0038220286 ; + setAttr ".uvtk[587]" -type "float2" -0.0029280186 0.0040501356 ; + setAttr ".uvtk[588]" -type "float2" -0.0031951666 0.0039846301 ; + setAttr ".uvtk[589]" -type "float2" -0.0030095279 0.0041058064 ; + setAttr ".uvtk[590]" -type "float2" -0.003310293 0.0037459731 ; + setAttr ".uvtk[591]" -type "float2" -0.0026902258 0.0042437911 ; + setAttr ".uvtk[592]" -type "float2" -0.0028709173 0.0041455626 ; + setAttr ".uvtk[593]" -type "float2" -0.0030038357 0.0047051907 ; + setAttr ".uvtk[594]" -type "float2" -0.0031437874 0.0046792626 ; + setAttr ".uvtk[595]" -type "float2" -0.0029266179 0.0047920942 ; + setAttr ".uvtk[596]" -type "float2" -0.0027934015 0.0045955181 ; + setAttr ".uvtk[597]" -type "float2" -0.0032203794 0.0040634274 ; + setAttr ".uvtk[598]" -type "float2" -0.003638804 0.0038138032 ; + setAttr ".uvtk[599]" -type "float2" -0.0032275319 0.0040436387 ; + setAttr ".uvtk[600]" -type "float2" -0.0032486022 0.0038654208 ; + setAttr ".uvtk[601]" -type "float2" -0.003009975 0.0039577484 ; + setAttr ".uvtk[602]" -type "float2" -0.0030385256 0.0037760139 ; + setAttr ".uvtk[603]" -type "float2" -0.0018202662 0.0030516982 ; + setAttr ".uvtk[604]" -type "float2" -0.0017713904 0.0050227046 ; + setAttr ".uvtk[605]" -type "float2" -0.0028367639 0.0032761097 ; + setAttr ".uvtk[606]" -type "float2" -0.0026603937 0.0036606193 ; + setAttr ".uvtk[607]" -type "float2" -0.0029780865 0.0033733249 ; + setAttr ".uvtk[608]" -type "float2" -0.0010691136 0.0050320029 ; + setAttr ".uvtk[609]" -type "float2" -0.0017092526 0.0046966076 ; + setAttr ".uvtk[610]" -type "float2" -0.002723664 0.0038061142 ; + setAttr ".uvtk[611]" -type "float2" -0.0015411526 0.0034378767 ; + setAttr ".uvtk[612]" -type "float2" -0.0016199797 0.0035426617 ; + setAttr ".uvtk[613]" -type "float2" -0.0026575774 0.0039353967 ; + setAttr ".uvtk[614]" -type "float2" -0.0017562956 0.0021511316 ; + setAttr ".uvtk[615]" -type "float2" -0.0012292564 0.0021063089 ; + setAttr ".uvtk[616]" -type "float2" -0.0013279766 0.0030022264 ; + setAttr ".uvtk[617]" -type "float2" -0.0026054829 0.0028206706 ; + setAttr ".uvtk[618]" -type "float2" -0.0016494095 0.0036840439 ; + setAttr ".uvtk[619]" -type "float2" -0.002657488 0.004055202 ; + setAttr ".uvtk[620]" -type "float2" -0.00091616809 0.0032334924 ; + setAttr ".uvtk[621]" -type "float2" -0.0014933944 0.0022268891 ; + setAttr ".uvtk[622]" -type "float2" -0.0016040802 0.0031015873 ; + setAttr ".uvtk[623]" -type "float2" -0.0018552393 0.0034392476 ; + setAttr ".uvtk[624]" -type "float2" -0.0017667711 0.0036790967 ; + setAttr ".uvtk[625]" -type "float2" -0.0017711222 0.0038568377 ; + setAttr ".uvtk[626]" -type "float2" -0.0011711717 0.0031442642 ; + setAttr ".uvtk[627]" -type "float2" -0.0015303344 0.0023236275 ; + setAttr ".uvtk[628]" -type "float2" -0.0015327632 0.0031896234 ; + setAttr ".uvtk[629]" -type "float2" -0.0017732084 0.0034242272 ; + setAttr ".uvtk[630]" -type "float2" -0.0017326772 0.0036221147 ; + setAttr ".uvtk[631]" -type "float2" -0.0017384291 0.003757596 ; + setAttr ".uvtk[750]" -type "float2" -0.00043305755 0.0034732819 ; + setAttr ".uvtk[751]" -type "float2" -0.0010032058 0.0032362938 ; + setAttr ".uvtk[752]" -type "float2" -0.0011749566 0.0028473735 ; + setAttr ".uvtk[753]" -type "float2" -0.00098142028 0.0032233 ; + setAttr ".uvtk[754]" -type "float2" -0.001536876 0.0032295585 ; + setAttr ".uvtk[755]" -type "float2" -0.0014643967 0.0024064183 ; + setAttr ".uvtk[756]" -type "float2" -0.0014716089 0.0032624006 ; + setAttr ".uvtk[757]" -type "float2" -0.001385957 0.0022004843 ; + setAttr ".uvtk[758]" -type "float2" -0.0012639463 0.0032578111 ; + setAttr ".uvtk[759]" -type "float2" -0.0011659265 0.0023185015 ; + setAttr ".uvtk[760]" -type "float2" -0.0012418032 0.0033239126 ; + setAttr ".uvtk[761]" -type "float2" -0.0012641847 0.0031971335 ; + setAttr ".uvtk[766]" -type "float2" -0.0014570057 0.0034708977 ; + setAttr ".uvtk[767]" -type "float2" -0.001272738 0.0034461617 ; + setAttr ".uvtk[768]" -type "float2" -0.0011903048 0.0035453439 ; + setAttr ".uvtk[769]" -type "float2" -0.0013540387 0.0036001205 ; + setAttr ".uvtk[770]" -type "float2" -0.0011650324 0.0036204457 ; + setAttr ".uvtk[771]" -type "float2" -0.0013269186 0.0036861897 ; + setAttr ".uvtk[776]" -type "float2" -0.0016749799 0.0034474134 ; + setAttr ".uvtk[777]" -type "float2" -0.0016518831 0.0036136508 ; + setAttr ".uvtk[778]" -type "float2" -0.0015684366 0.0034703016 ; + setAttr ".uvtk[779]" -type "float2" -0.0015358329 0.0036007762 ; + setAttr ".uvtk[780]" -type "float2" -0.0016081333 0.003757596 ; + setAttr ".uvtk[781]" -type "float2" -0.0013617873 0.0037403703 ; + setAttr ".uvtk[790]" -type "float2" -0.0015242994 0.0022408962 ; + setAttr ".uvtk[791]" -type "float2" -0.0013317317 0.0022019744 ; + setAttr ".uvtk[796]" -type "float2" -0.0020880029 0.0024027824 ; + setAttr ".uvtk[797]" -type "float2" -0.0022580326 0.0025283694 ; + setAttr ".uvtk[798]" -type "float2" -0.002582401 0.0024165511 ; + setAttr ".uvtk[799]" -type "float2" -0.0024032891 0.0022706389 ; + setAttr ".uvtk[800]" -type "float2" -0.0014673918 0.0019495487 ; + setAttr ".uvtk[801]" -type "float2" -0.0013705343 0.0018755794 ; + setAttr ".uvtk[802]" -type "float2" -0.0017075241 0.0025137663 ; + setAttr ".uvtk[803]" -type "float2" -0.0016445667 0.002466321 ; + setAttr ".uvtk[804]" -type "float2" -0.0018422306 0.0024624467 ; + setAttr ".uvtk[805]" -type "float2" -0.0019645691 0.0025731921 ; + setAttr ".uvtk[808]" -type "float2" -0.0021972209 0.0048664212 ; + setAttr ".uvtk[809]" -type "float2" -0.0016131997 0.0027649403 ; + setAttr ".uvtk[810]" -type "float2" -0.0014318675 0.0022848845 ; + setAttr ".uvtk[811]" -type "float2" -0.0013527721 0.0023092628 ; + setAttr ".uvtk[812]" -type "float2" -0.0013790578 0.0026779771 ; + setAttr ".uvtk[813]" -type "float2" -0.0013000965 0.0021647215 ; + setAttr ".uvtk[814]" -type "float2" -0.0014092922 0.0028851032 ; + setAttr ".uvtk[815]" -type "float2" -0.0014482439 0.0021612644 ; + setAttr ".uvtk[816]" -type "float2" -0.0017942041 0.0027567148 ; + setAttr ".uvtk[817]" -type "float2" -0.0013830662 0.0021156073 ; + setAttr ".uvtk[818]" -type "float2" -0.0018221587 0.0026997924 ; + setAttr ".uvtk[819]" -type "float2" -0.0013159961 0.0019456744 ; + setAttr ".uvtk[820]" -type "float2" -0.0018872917 0.0026226044 ; + setAttr ".uvtk[821]" -type "float2" -0.0013025999 0.0018533468 ; + setAttr ".uvtk[822]" -type "float2" -0.0018178374 0.0025770068 ; + setAttr ".uvtk[823]" -type "float2" -0.0018134713 0.0040857196 ; + setAttr ".uvtk[824]" -type "float2" -0.0027178377 0.0038053393 ; + setAttr ".uvtk[825]" -type "float2" -0.0031665862 0.0037415624 ; + setAttr ".uvtk[826]" -type "float2" -0.0021709204 0.0039173961 ; + setAttr ".uvtk[827]" -type "float2" -0.0021103472 0.0035047531 ; + setAttr ".uvtk[828]" -type "float2" -0.0024999529 0.003408134 ; + setAttr ".uvtk[829]" -type "float2" -0.0020636618 0.0030403137 ; + setAttr ".uvtk[830]" -type "float2" -0.0023970455 0.0030812621 ; + setAttr ".uvtk[831]" -type "float2" -0.0020661652 0.0028523207 ; + setAttr ".uvtk[832]" -type "float2" -0.0023861378 0.0028760433 ; + setAttr ".uvtk[833]" -type "float2" -0.0019740313 0.0026871562 ; + setAttr ".uvtk[834]" -type "float2" -0.0022919923 0.0026878119 ; + setAttr ".uvtk[835]" -type "float2" -0.0036519021 0.0036023855 ; + setAttr ".uvtk[836]" -type "float2" -0.0030854493 0.0037420392 ; + setAttr ".uvtk[837]" -type "float2" -0.0027835369 0.0032680631 ; + setAttr ".uvtk[838]" -type "float2" -0.0028360486 0.0030043721 ; + setAttr ".uvtk[839]" -type "float2" -0.0027637184 0.0027822852 ; + setAttr ".uvtk[840]" -type "float2" -0.0026242509 0.0025867224 ; + setAttr ".uvtk[884]" -type "float2" -0.00078907609 0.0028592944 ; + setAttr ".uvtk[885]" -type "float2" -0.00075757504 0.003005743 ; + setAttr ".uvtk[886]" -type "float2" -0.00094604492 0.0030764937 ; + setAttr ".uvtk[887]" -type "float2" -0.0010219514 0.0028942227 ; + setAttr ".uvtk[888]" -type "float2" -0.0012104213 0.0024101734 ; + setAttr ".uvtk[889]" -type "float2" -0.0010599196 0.0022908449 ; + setAttr ".uvtk[890]" -type "float2" -0.00087550282 0.0025566816 ; + setAttr ".uvtk[891]" -type "float2" -0.0010792911 0.0026623011 ; + setAttr ".uvtk[909]" -type "float2" -0.0018503293 0.00079488754 ; + setAttr ".uvtk[910]" -type "float2" -0.0018472038 0.00081378222 ; + setAttr ".uvtk[911]" -type "float2" -0.0017642323 0.00071823597 ; + setAttr ".uvtk[912]" -type "float2" -0.0019794945 0.00096511841 ; + setAttr ".uvtk[913]" -type "float2" -0.001815401 0.0015260577 ; + setAttr ".uvtk[914]" -type "float2" -0.0015578605 0.0015810728 ; + setAttr ".uvtk[915]" -type "float2" -0.0016510487 0.0018148422 ; + setAttr ".uvtk[916]" -type "float2" -0.001870282 0.0014929771 ; + setAttr ".uvtk[917]" -type "float2" -0.0020830557 0.0015130043 ; + setAttr ".uvtk[918]" -type "float2" -0.0018376261 0.0016924143 ; + setAttr ".uvtk[919]" -type "float2" -0.0020726621 0.0018458962 ; + setAttr ".uvtk[920]" -type "float2" -0.0023213327 0.0016525388 ; + setAttr ".uvtk[937]" -type "float2" -0.0010272264 0.0036793947 ; + setAttr ".uvtk[938]" -type "float2" -0.00098109245 0.0037646294 ; + setAttr ".uvtk[939]" -type "float2" -0.0013933778 0.00385952 ; + setAttr ".uvtk[940]" -type "float2" -0.0015505552 0.0038967729 ; + setAttr ".uvtk[941]" -type "float2" -0.0014926493 0.0039834976 ; + setAttr ".uvtk[942]" -type "float2" -0.0017875135 0.0039591789 ; + setAttr ".uvtk[943]" -type "float2" -0.0016293526 0.0038815737 ; + setAttr ".uvtk[944]" -type "float2" -0.0025323331 0.0041957498 ; + setAttr ".uvtk[945]" -type "float2" -0.004038766 0.0035065413 ; + setAttr ".uvtk[946]" -type "float2" -0.0035422146 0.0036259294 ; + setAttr ".uvtk[947]" -type "float2" -0.0032478422 0.0031064749 ; + setAttr ".uvtk[948]" -type "float2" -0.0033299923 0.0028640628 ; + setAttr ".uvtk[949]" -type "float2" -0.0031517446 0.002607584 ; + setAttr ".uvtk[950]" -type "float2" -0.0030795336 0.002414465 ; + setAttr ".uvtk[951]" -type "float2" -0.0029802918 0.0022292137 ; + setAttr ".uvtk[952]" -type "float2" -0.0027660057 0.0020906925 ; + setAttr ".uvtk[953]" -type "float2" 0.00037404895 0.0032949448 ; + setAttr ".uvtk[954]" -type "float2" 0.00048817694 0.0032038093 ; + setAttr ".uvtk[955]" -type "float2" 8.7291002e-05 0.0033137202 ; + setAttr ".uvtk[956]" -type "float2" 0.00041421503 0.0033300519 ; + setAttr ".uvtk[957]" -type "float2" 1.1846423e-06 0.00305444 ; + setAttr ".uvtk[958]" -type "float2" -6.3091516e-05 0.0030459762 ; + setAttr ".uvtk[959]" -type "float2" 0.00014417619 0.0028214455 ; + setAttr ".uvtk[960]" -type "float2" 0.00020824373 0.0027912855 ; + setAttr ".uvtk[961]" -type "float2" 0.00030582398 0.0025966167 ; + setAttr ".uvtk[962]" -type "float2" 0.0003162846 0.0025582314 ; + setAttr ".uvtk[963]" -type "float2" 0.00029192865 0.0023861527 ; + setAttr ".uvtk[964]" -type "float2" 0.00019838661 0.0022982359 ; + setAttr ".uvtk[965]" -type "float2" 0.00018392503 0.0021610856 ; + setAttr ".uvtk[966]" -type "float2" 0.00023021549 0.0022158027 ; + setAttr ".uvtk[967]" -type "float2" 0.00017476827 0.0019619465 ; + setAttr ".uvtk[968]" -type "float2" 0.00026191771 0.0022447109 ; + setAttr ".uvtk[969]" -type "float2" 0.00021680444 0.0017910004 ; + setAttr ".uvtk[970]" -type "float2" 0.0002618283 0.0018924475 ; + setAttr ".uvtk[971]" -type "float2" 9.2469156e-05 0.0018676519 ; + setAttr ".uvtk[972]" -type "float2" 0.0001142472 0.0017934442 ; + setAttr ".uvtk[973]" -type "float2" 0.0001501143 0.0016860366 ; + setAttr ".uvtk[974]" -type "float2" 0.00019321218 0.0019572973 ; + setAttr ".uvtk[975]" -type "float2" 0.0003487356 0.0015441179 ; + setAttr ".uvtk[976]" -type "float2" 0.0003391467 0.0016654134 ; + setAttr ".uvtk[977]" -type "float2" 0.00043619797 0.0012244582 ; + setAttr ".uvtk[978]" -type "float2" 0.00060558319 0.001311779 ; + setAttr ".uvtk[979]" -type "float2" 0.00012540072 0.0014480352 ; + setAttr ".uvtk[980]" -type "float2" -0.00019105896 0.0013289452 ; + setAttr ".uvtk[981]" -type "float2" -0.00029420853 0.00010669231 ; + setAttr ".uvtk[982]" -type "float2" -0.00061359257 -0.00021737814 ; + setAttr ".uvtk[983]" -type "float2" 0.0011334331 -0.0008072257 ; + setAttr ".uvtk[984]" -type "float2" 0.00034901127 -0.00019884109 ; + setAttr ".uvtk[985]" -type "float2" 0.00032084621 -0.00047713518 ; + setAttr ".uvtk[986]" -type "float2" 0.0012942357 -0.0010307431 ; + setAttr ".uvtk[987]" -type "float2" -0.0007188227 -0.00086146593 ; + setAttr ".uvtk[988]" -type "float2" -0.00032618828 -0.00070673227 ; + setAttr ".uvtk[1939]" -type "float2" -0.0023979247 0.0034905672 ; + setAttr ".uvtk[1940]" -type "float2" -0.0028063655 0.003441751 ; + setAttr ".uvtk[1941]" -type "float2" -0.0031115115 0.0032571554 ; + setAttr ".uvtk[1942]" -type "float2" -0.0025898814 0.0031872392 ; + setAttr ".uvtk[1943]" -type "float2" -0.0029364526 0.0030974746 ; + setAttr ".uvtk[1944]" -type "float2" -0.0028108358 0.0028425455 ; + setAttr ".uvtk[1945]" -type "float2" -0.0030616522 0.0031796098 ; + setAttr ".uvtk[1946]" -type "float2" -0.0027372837 0.0027954578 ; + setAttr ".uvtk[1947]" -type "float2" -0.0026551485 0.0028761625 ; + setAttr ".uvtk[1948]" -type "float2" -0.0025535822 0.0026433468 ; + setAttr ".uvtk[1949]" -type "float2" -0.0026721954 0.0031621456 ; + setAttr ".uvtk[1950]" -type "float2" -0.002654314 0.0033093095 ; + setAttr ".uvtk[1951]" -type "float2" -0.002263546 0.0028782487 ; + setAttr ".uvtk[1952]" -type "float2" -0.0023470819 0.0023636222 ; + setAttr ".uvtk[1953]" -type "float2" -0.0027998388 0.0031585693 ; + setAttr ".uvtk[1954]" -type "float2" -0.0027200282 0.0025107265 ; + setAttr ".uvtk[1955]" -type "float2" -0.0023916066 0.0023202896 ; + setAttr ".uvtk[1956]" -type "float2" -0.0024902821 0.0025387406 ; + setAttr ".uvtk[1959]" -type "float2" -0.0026688874 0.0023559928 ; + setAttr ".uvtk[1960]" -type "float2" -0.0025490522 0.0023837686 ; + setAttr ".uvtk[1961]" -type "float2" -0.0022776723 0.00094234943 ; + setAttr ".uvtk[1962]" -type "float2" -0.0026470721 -0.00020325184 ; + setAttr ".uvtk[1963]" -type "float2" -0.0027003884 -0.00036817789 ; + setAttr ".uvtk[1964]" -type "float2" -0.0020220578 0.0006827116 ; + setAttr ".uvtk[1965]" -type "float2" -0.0028464496 0.0005787015 ; + setAttr ".uvtk[1966]" -type "float2" -0.0031299591 0.00049519539 ; + setAttr ".uvtk[1967]" -type "float2" -0.0030713379 0.00028461218 ; + setAttr ".uvtk[1968]" -type "float2" -0.0027903616 0.00018721819 ; + setAttr ".uvtk[1969]" -type "float2" -0.0027198792 1.2159348e-05 ; + setAttr ".uvtk[1970]" -type "float2" -0.0023415685 -0.0001129508 ; + setAttr ".uvtk[1973]" -type "float2" -0.0025089681 0.0014141202 ; + setAttr ".uvtk[1974]" -type "float2" -0.0024165511 0.0017729998 ; + setAttr ".uvtk[1975]" -type "float2" -0.0027246475 0.0019057989 ; + setAttr ".uvtk[1976]" -type "float2" -0.002405256 0.002401948 ; + setAttr ".uvtk[1977]" -type "float2" -0.0023003221 0.0019749999 ; + setAttr ".uvtk[1978]" -type "float2" -0.002266854 0.0020686984 ; + setAttr ".uvtk[1979]" -type "float2" -0.0023814142 0.0021535754 ; + setAttr ".uvtk[1980]" -type "float2" -0.0024152696 0.0021128654 ; + setAttr ".uvtk[2113]" -type "float2" -0.0016062316 0.00086885691 ; + setAttr ".uvtk[2114]" -type "float2" -0.001218562 -0.00070011616 ; + setAttr ".uvtk[2115]" -type "float2" -0.00031179097 -0.00099807978 ; + setAttr ".uvtk[2116]" -type "float2" -0.00074169599 -0.000179708 ; + setAttr ".uvtk[2117]" -type "float2" -1.7134473e-05 -0.00099897385 ; + setAttr ".uvtk[2118]" -type "float2" -0.00014806911 -0.00048577785 ; + setAttr ".uvtk[2119]" -type "float2" -0.00095964223 0.00090426207 ; + setAttr ".uvtk[2120]" -type "float2" -0.0023370422 0.00094789267 ; + setAttr ".uvtk[2121]" -type "float2" 0.0008670073 0.00071012974 ; + setAttr ".uvtk[2122]" -type "float2" -0.0023530554 0.00099360943 ; + setAttr ".uvtk[2123]" -type "float2" -0.0012638457 0.00083303452 ; + setAttr ".uvtk[2124]" -type "float2" -0.00062727183 0.0015320778 ; + setAttr ".uvtk[2125]" -type "float2" -0.0010250881 0.0011976957 ; + setAttr ".uvtk[2126]" -type "float2" -0.0012034774 0.0011154413 ; + setAttr ".uvtk[2127]" -type "float2" -0.0022003911 0.00097608566 ; + setAttr ".uvtk[2128]" -type "float2" 0.00015379861 -0.00021541119 ; + setAttr ".uvtk[2129]" -type "float2" -0.00046574324 0.00091207027 ; + setAttr ".uvtk[2130]" -type "float2" -0.0010089166 0.001044929 ; + setAttr ".uvtk[2131]" -type "float2" -0.00018396229 0.0010383725 ; + setAttr ".uvtk[2132]" -type "float2" -0.0017905533 0.0026389956 ; + setAttr ".uvtk[2133]" -type "float2" -0.0023958683 0.0021138191 ; + setAttr ".uvtk[2134]" -type "float2" -0.0020705462 0.0022711158 ; + setAttr ".uvtk[2135]" -type "float2" -0.0016114339 0.002474308 ; + setAttr ".uvtk[2136]" -type "float2" -0.0015939176 0.0027300119 ; + setAttr ".uvtk[2137]" -type "float2" -0.001773268 0.0023915768 ; + setAttr ".uvtk[2138]" -type "float2" -0.0027661994 0.0018937588 ; + setAttr ".uvtk[2139]" -type "float2" -0.00043298304 0.0028358698 ; + setAttr ".uvtk[2140]" -type "float2" -0.00059077889 0.0022316575 ; + setAttr ".uvtk[2141]" -type "float2" -0.0023929775 0.0035353303 ; + setAttr ".uvtk[2142]" -type "float2" -0.0021496415 0.0035092235 ; + setAttr ".uvtk[2143]" -type "float2" -0.0010531396 0.0027766228 ; + setAttr ".uvtk[2144]" -type "float2" -0.00095177442 0.0025807619 ; + setAttr ".uvtk[2145]" -type "float2" -0.00086046755 0.0030306578 ; + setAttr ".uvtk[2146]" -type "float2" -0.002006799 0.0032889247 ; + setAttr ".uvtk[2147]" -type "float2" -0.0016525388 0.0032960773 ; + setAttr ".uvtk[2148]" -type "float2" -0.0013797879 0.0027595162 ; + setAttr ".uvtk[2149]" -type "float2" -0.0018281341 0.0030637383 ; + setAttr ".uvtk[2150]" -type "float2" -0.0020781159 0.002556622 ; + setAttr ".uvtk[2151]" -type "float2" -0.0021767318 0.0022150278 ; + setAttr ".uvtk[2152]" -type "float2" -0.0007109046 0.0030853152 ; + setAttr ".uvtk[2153]" -type "float2" -0.001696825 0.0032633543 ; + setAttr ".uvtk[2154]" -type "float2" -0.0014477372 0.0039004683 ; + setAttr ".uvtk[2155]" -type "float2" -4.8652291e-05 0.0052809715 ; + setAttr ".uvtk[2156]" -type "float2" 0.00010766089 0.0027043223 ; + setAttr ".uvtk[2157]" -type "float2" -0.00077296793 0.0033547878 ; + setAttr ".uvtk[2158]" -type "float2" -0.0010353029 0.0030598044 ; + setAttr ".uvtk[2165]" -type "float2" -0.0015906803 0.001036644 ; + setAttr ".uvtk[2166]" -type "float2" -0.0018113498 0.001159668 ; + setAttr ".uvtk[2169]" -type "float2" -0.0019627325 0.00082945824 ; + setAttr ".uvtk[2170]" -type "float2" -0.0018258076 0.00077885389 ; + setAttr ".uvtk[2171]" -type "float2" -0.0023000054 0.0010953546 ; + setAttr ".uvtk[2172]" -type "float2" -0.0016379431 0.00062340498 ; + setAttr ".uvtk[2173]" -type "float2" -0.0020967461 0.00025951862 ; + setAttr ".uvtk[2174]" -type "float2" -0.0019725263 0.0012575388 ; + setAttr ".uvtk[2175]" -type "float2" -0.0013451166 0.0010005236 ; + setAttr ".uvtk[2176]" -type "float2" -0.0015708022 0.0010802746 ; + setAttr ".uvtk[2177]" -type "float2" -0.0015800931 0.0012000799 ; + setAttr ".uvtk[2178]" -type "float2" -0.001665283 0.0012300014 ; + setAttr ".uvtk[2179]" -type "float2" -0.0016400665 0.00071138144 ; + setAttr ".uvtk[2209]" -type "float2" -0.0016276687 0.0013996363 ; + setAttr ".uvtk[2210]" -type "float2" -0.0016818009 0.001339972 ; + setAttr ".uvtk[2238]" -type "float2" -0.00067639351 0.0027242303 ; + setAttr ".uvtk[2239]" -type "float2" -0.00092153996 0.002173245 ; + setAttr ".uvtk[2240]" -type "float2" -0.0011048242 0.0025969744 ; + setAttr ".uvtk[2241]" -type "float2" -0.0018132254 0.0023177862 ; + setAttr ".uvtk[2242]" -type "float2" -0.0016662925 0.0025184751 ; + setAttr ".uvtk[2243]" -type "float2" -0.0011930466 0.0022162795 ; + setAttr ".uvtk[2244]" -type "float2" -0.0015702397 0.0021547675 ; + setAttr ".uvtk[2245]" -type "float2" -0.0014145672 0.0022053719 ; + setAttr ".uvtk[2246]" -type "float2" -0.0025769621 0.001756072 ; + setAttr ".uvtk[2247]" -type "float2" -0.0022435933 0.0019723773 ; + setAttr ".uvtk[2250]" -type "float2" -0.0017037243 0.0021807551 ; + setAttr ".uvtk[2251]" -type "float2" -0.0017152801 0.0022726655 ; + setAttr ".uvtk[2252]" -type "float2" -0.0019299313 0.0021582246 ; + setAttr ".uvtk[2253]" -type "float2" -0.0018811747 0.002019465 ; + setAttr ".uvtk[2254]" -type "float2" -0.0016614124 0.002125442 ; + setAttr ".uvtk[2255]" -type "float2" -0.0017245263 0.0018661618 ; + setAttr ".uvtk[2256]" -type "float2" -0.0012539923 0.0025940537 ; + setAttr ".uvtk[2257]" -type "float2" -0.0014957413 0.0019304752 ; + setAttr ".uvtk[2258]" -type "float2" -0.0011835098 0.0021293759 ; + setAttr ".uvtk[2259]" -type "float2" -0.0012113228 0.001784265 ; + setAttr ".uvtk[2287]" -type "float2" -0.0014573038 0.003237009 ; + setAttr ".uvtk[2288]" -type "float2" -0.0015077591 0.0032859445 ; + setAttr ".uvtk[2289]" -type "float2" -0.0016249418 0.0032057762 ; + setAttr ".uvtk[2290]" -type "float2" -0.0014974475 0.0032448173 ; + setAttr ".uvtk[2291]" -type "float2" -0.0012882948 0.003403306 ; + setAttr ".uvtk[2292]" -type "float2" -0.0013603866 0.0031035542 ; + setAttr ".uvtk[2293]" -type "float2" -0.0021931529 0.0036581159 ; + setAttr ".uvtk[2294]" -type "float2" -0.0013666153 0.0030795932 ; + setAttr ".uvtk[2295]" -type "float2" -0.0013326406 0.0030434132 ; + setAttr ".uvtk[2296]" -type "float2" -0.00075355172 0.0043206215 ; + setAttr ".uvtk[2297]" -type "float2" -0.0013870597 0.003266871 ; + setAttr ".uvtk[2298]" -type "float2" -0.0012891293 0.0032904148 ; + setAttr ".uvtk[2299]" -type "float2" -0.0011061132 0.0032883883 ; + setAttr ".uvtk[2300]" -type "float2" -0.0012473166 0.0031745434 ; + setAttr ".uvtk[2301]" -type "float2" -0.0019328594 0.003351748 ; + setAttr ".uvtk[2302]" -type "float2" -0.001560092 0.0033857822 ; + setAttr ".uvtk[2303]" -type "float2" -0.0029638559 0.0031843185 ; + setAttr ".uvtk[2304]" -type "float2" -0.0017705709 0.0032562017 ; + setAttr ".uvtk[2305]" -type "float2" -0.002185449 0.0030844808 ; + setAttr ".uvtk[2306]" -type "float2" -0.0012305677 0.0028375387 ; + setAttr ".uvtk[2307]" -type "float2" -0.0011704266 0.003015995 ; + setAttr ".uvtk[2308]" -type "float2" -0.0012866855 0.00315696 ; + setAttr ".uvtk[2309]" -type "float2" -0.0011368394 0.0032685995 ; + setAttr ".uvtk[2310]" -type "float2" -0.0011336803 0.0033317208 ; + setAttr ".uvtk[2311]" -type "float2" -0.0012190044 0.0033740997 ; + setAttr ".uvtk[2312]" -type "float2" -0.0010782182 0.0031604767 ; + setAttr ".uvtk[2313]" -type "float2" -0.00093069673 0.0032685399 ; + setAttr ".uvtk[2314]" -type "float2" -0.0010007918 0.0033573508 ; + setAttr ".uvtk[2315]" -type "float2" -0.0011478961 0.0034614205 ; + setAttr ".uvtk[2316]" -type "float2" -0.00083255768 0.0032331347 ; + setAttr ".uvtk[2317]" -type "float2" -0.00093787909 0.0033848882 ; + setAttr ".uvtk[2318]" -type "float2" -0.0010636747 0.0035182238 ; + setAttr ".uvtk[2319]" -type "float2" -0.00090119243 0.0035466552 ; + setAttr ".uvtk[2320]" -type "float2" -0.00084337592 0.0033966303 ; + setAttr ".uvtk[2321]" -type "float2" -0.00072920322 0.0031909347 ; + setAttr ".uvtk[2355]" -type "float2" -0.0017165244 0.00084477663 ; + setAttr ".uvtk[2356]" -type "float2" -0.0019832253 0.0012686849 ; + setAttr ".uvtk[2357]" -type "float2" -0.0014381111 0.0015890002 ; + setAttr ".uvtk[2358]" -type "float2" -0.0018028021 0.00016319752 ; + setAttr ".uvtk[2359]" -type "float2" -0.0018472672 0.0014622808 ; + setAttr ".uvtk[2360]" -type "float2" -0.0020427704 0.00089877844 ; + setAttr ".uvtk[2361]" -type "float2" -0.0016178787 0.001498282 ; + setAttr ".uvtk[2362]" -type "float2" -0.0017762184 0.0018746853 ; + setAttr ".uvtk[2363]" -type "float2" -0.0014901161 0.0019258261 ; + setAttr ".uvtk[2364]" -type "float2" -0.0015998185 0.0014840364 ; + setAttr ".uvtk[2365]" -type "float2" -0.001362294 0.0018263459 ; + setAttr ".uvtk[2366]" -type "float2" -0.0013322532 0.0016413331 ; + setAttr ".uvtk[2367]" -type "float2" -0.00091516972 0.0018473268 ; + setAttr ".uvtk[2368]" -type "float2" -0.00095534325 0.001319468 ; + setAttr ".uvtk[2369]" -type "float2" -0.00093874335 0.0016905069 ; + setAttr ".uvtk[2370]" -type "float2" -0.0010207295 0.0012565851 ; + setAttr ".uvtk[2371]" -type "float2" -0.0010005832 0.0012113452 ; + setAttr ".uvtk[2372]" -type "float2" -0.0010457933 0.0016700029 ; + setAttr ".uvtk[2373]" -type "float2" -0.0009945333 0.0012480021 ; + setAttr ".uvtk[2374]" -type "float2" -0.0010949075 0.0015661716 ; + setAttr ".uvtk[2375]" -type "float2" -0.001953125 0.00085622072 ; + setAttr ".uvtk[2376]" -type "float2" -0.0024726093 -0.00027573109 ; + setAttr ".uvtk[2377]" -type "float2" -0.0019091666 0.00063991547 ; + setAttr ".uvtk[2378]" -type "float2" -0.0025893748 3.7312508e-05 ; + setAttr ".uvtk[2379]" -type "float2" -0.0018435717 -0.0005582571 ; + setAttr ".uvtk[2385]" -type "float2" -0.0026588142 -0.00068998337 ; + setAttr ".uvtk[2386]" -type "float2" -0.0019984841 -0.00084906816 ; + setAttr ".uvtk[2419]" -type "float2" -0.0031248033 -0.0020964146 ; + setAttr ".uvtk[2446]" -type "float2" -0.0010368824 0.0019419789 ; + setAttr ".uvtk[2447]" -type "float2" -0.0013696849 0.0018251538 ; + setAttr ".uvtk[2514]" -type "float2" -0.00099855661 0.0021035671 ; + setAttr ".uvtk[2515]" -type "float2" -0.0012846887 0.0022054315 ; + setAttr ".uvtk[2517]" -type "float2" -0.0014618933 0.002895534 ; + setAttr ".uvtk[2518]" -type "float2" -0.0016120374 0.0027642846 ; + setAttr ".uvtk[2519]" -type "float2" -0.0013937056 0.0025197268 ; + setAttr ".uvtk[2520]" -type "float2" -0.0015654266 0.0031544566 ; + setAttr ".uvtk[2521]" -type "float2" -0.0016433001 0.0025461316 ; + setAttr ".uvtk[2522]" -type "float2" -0.0014537573 0.0022882819 ; + setAttr ".uvtk[2523]" -type "float2" -0.0018374324 0.0027631521 ; + setAttr ".uvtk[2524]" -type "float2" -0.0018779933 0.0022649169 ; + setAttr ".uvtk[2525]" -type "float2" -0.0017156899 0.0020008087 ; + setAttr ".uvtk[2526]" -type "float2" -0.0016561747 0.001504302 ; + setAttr ".uvtk[2527]" -type "float2" -0.0016427338 0.0018435717 ; + setAttr ".uvtk[2528]" -type "float2" -0.0016644597 0.0014408827 ; + setAttr ".uvtk[2529]" -type "float2" -0.0019008815 0.0013681054 ; + setAttr ".uvtk[2530]" -type "float2" -0.0039024353 0.0016931295 ; + setAttr ".uvtk[2531]" -type "float2" -0.0020804703 0.0015172362 ; + setAttr ".uvtk[2532]" -type "float2" -0.0016691685 0.0017897487 ; + setAttr ".uvtk[2533]" -type "float2" -0.003200233 0.00051361322 ; + setAttr ".uvtk[2534]" -type "float2" -0.0025135279 0.0012293458 ; + setAttr ".uvtk[2535]" -type "float2" -0.0023508966 0.0013848543 ; + setAttr ".uvtk[2536]" -type "float2" -0.0025883913 0.0015067458 ; + setAttr ".uvtk[2537]" -type "float2" -0.0022922158 0.0023667216 ; + setAttr ".uvtk[2538]" -type "float2" -0.0023461878 0.0020532012 ; + setAttr ".uvtk[2539]" -type "float2" -0.0024757087 0.0015265346 ; + setAttr ".uvtk[2540]" -type "float2" -0.0024256408 0.001744926 ; + setAttr ".uvtk[2541]" -type "float2" -0.0025666058 0.0017002225 ; + setAttr ".uvtk[2542]" -type "float2" -0.0024908483 0.0016721487 ; + setAttr ".uvtk[2543]" -type "float2" -0.0022043288 0.0011848211 ; + setAttr ".uvtk[2544]" -type "float2" -0.0022731423 0.0016379356 ; + setAttr ".uvtk[2545]" -type "float2" -0.0022788942 0.0016697645 ; + setAttr ".uvtk[2546]" -type "float2" -0.0017755926 0.0023678541 ; + setAttr ".uvtk[2547]" -type "float2" -0.0018658042 0.002591908 ; + setAttr ".uvtk[2548]" -type "float2" -0.0022173822 0.0023317933 ; + setAttr ".uvtk[2549]" -type "float2" -0.0022589862 0.0021351576 ; + setAttr ".uvtk[2550]" -type "float2" -0.0022735298 0.0019353032 ; + setAttr ".uvtk[2551]" -type "float2" -0.0022883713 0.0018388033 ; + setAttr ".uvtk[2552]" -type "float2" -0.0018667877 0.0021642447 ; + setAttr ".uvtk[2553]" -type "float2" -0.0018155873 0.0013290048 ; + setAttr ".uvtk[2554]" -type "float2" -0.0018696785 0.0018805861 ; + setAttr ".uvtk[2555]" -type "float2" -0.0017841756 0.0017734766 ; + setAttr ".uvtk[2556]" -type "float2" -0.0019580126 0.0018236637 ; + setAttr ".uvtk[2557]" -type "float2" -0.0026911795 0.0017571449 ; + setAttr ".uvtk[2558]" -type "float2" -0.0019872189 0.0013902187 ; + setAttr ".uvtk[2559]" -type "float2" -0.0020908117 0.0017307997 ; + setAttr ".uvtk[2560]" -type "float2" -0.001860112 0.0016613603 ; + setAttr ".uvtk[2561]" -type "float2" -0.0021287501 0.0018208623 ; + setAttr ".uvtk[2562]" -type "float2" -0.0021363795 0.0020247698 ; + setAttr ".uvtk[2563]" -type "float2" -0.0019336343 0.0020744205 ; + setAttr ".uvtk[2564]" -type "float2" -0.0020925999 0.0020143986 ; + setAttr ".uvtk[2565]" -type "float2" -0.0022186339 0.002117753 ; + setAttr ".uvtk[2566]" -type "float2" -0.0019673407 0.0019865036 ; + setAttr ".uvtk[2567]" -type "float2" -0.0020296276 0.0019699335 ; + setAttr ".uvtk[2568]" -type "float2" -9.5054507e-05 0.0025271177 ; + setAttr ".uvtk[2569]" -type "float2" -2.2575259e-06 0.0024436712 ; + setAttr ".uvtk[2570]" -type "float2" 9.8779798e-05 0.0020987988 ; + setAttr ".uvtk[2571]" -type "float2" 0.00022926182 0.002084434 ; + setAttr ".uvtk[2572]" -type "float2" -0.00055614859 0.0026986599 ; + setAttr ".uvtk[2573]" -type "float2" -0.00024787337 0.0027556419 ; + setAttr ".uvtk[2574]" -type "float2" -0.00037645549 0.0042489171 ; + setAttr ".uvtk[2575]" -type "float2" -0.00066400319 0.0029052496 ; + setAttr ".uvtk[2576]" -type "float2" -0.00020484626 0.0025312901 ; + setAttr ".uvtk[2577]" -type "float2" -0.0002919659 0.0020692348 ; + setAttr ".uvtk[2578]" -type "float2" -6.570667e-05 0.0021123886 ; + setAttr ".uvtk[2579]" -type "float2" 0.00015708059 0.0017869473 ; + setAttr ".uvtk[2580]" -type "float2" 0.00036811829 0.0018348694 ; + setAttr ".uvtk[2581]" -type "float2" 6.1534345e-05 0.0015274882 ; + setAttr ".uvtk[2582]" -type "float2" 0.00040058047 0.001437068 ; + setAttr ".uvtk[2583]" -type "float2" 0.00038172305 0.0016182661 ; + setAttr ".uvtk[2584]" -type "float2" -0.00049718842 0.0017756224 ; + setAttr ".uvtk[2585]" -type "float2" 0.00021922961 0.0014945865 ; + setAttr ".uvtk[2586]" -type "float2" 0.00033168867 0.0021330118 ; + setAttr ".uvtk[2587]" -type "float2" 4.151091e-05 0.0019314885 ; + setAttr ".uvtk[2588]" -type "float2" 0.00024076551 0.0018736124 ; + setAttr ".uvtk[2589]" -type "float2" 6.0983002e-05 0.001789391 ; + setAttr ".uvtk[2590]" -type "float2" 0.00055486709 0.0013132095 ; + setAttr ".uvtk[2591]" -type "float2" 0.00042038411 0.00138098 ; + setAttr ".uvtk[2592]" -type "float2" 1.4580786e-05 0.0012809038 ; + setAttr ".uvtk[2593]" -type "float2" -0.00021832809 0.001519084 ; + setAttr ".uvtk[2594]" -type "float2" -0.00027643517 0.0011839867 ; + setAttr ".uvtk[2595]" -type "float2" -0.00036225095 0.0011972785 ; + setAttr ".uvtk[2596]" -type "float2" -0.0013140142 0.0014891028 ; + setAttr ".uvtk[2597]" -type "float2" -0.0010392852 0.0015867949 ; + setAttr ".uvtk[2598]" -type "float2" -0.0013288781 0.001897037 ; + setAttr ".uvtk[2599]" -type "float2" -0.0014924034 0.0012269616 ; + setAttr ".uvtk[2600]" -type "float2" -0.00044504553 0.002178371 ; + setAttr ".uvtk[2601]" -type "float2" -0.00086308271 0.0021306276 ; + setAttr ".uvtk[2602]" -type "float2" -0.0012215823 0.0020865798 ; + setAttr ".uvtk[2603]" -type "float2" -0.0013014898 0.0012072325 ; + setAttr ".uvtk[2604]" -type "float2" -0.0013290979 0.00099235773 ; + setAttr ".uvtk[2605]" -type "float2" -0.0011022389 0.001267612 ; + setAttr ".uvtk[2606]" -type "float2" -0.00096135214 0.0014164448 ; + setAttr ".uvtk[2607]" -type "float2" -0.00089702383 0.0013599396 ; + setAttr ".uvtk[2608]" -type "float2" -0.00095497072 0.0016009212 ; + setAttr ".uvtk[2609]" -type "float2" -0.0010521561 0.0018817186 ; + setAttr ".uvtk[2610]" -type "float2" -0.0009360984 0.001819253 ; + setAttr ".uvtk[2611]" -type "float2" -0.000976298 0.001306057 ; + setAttr ".uvtk[2612]" -type "float2" -0.0010114908 0.0017818809 ; + setAttr ".uvtk[2613]" -type "float2" -0.00092329085 0.0011635423 ; + setAttr ".uvtk[2614]" -type "float2" -0.001123108 0.0010306239 ; + setAttr ".uvtk[2615]" -type "float2" -0.0010069385 0.0012621284 ; + setAttr ".uvtk[2616]" -type "float2" -0.0006852299 0.0020055771 ; + setAttr ".uvtk[2617]" -type "float2" -0.00067675114 0.0024158359 ; + setAttr ".uvtk[2618]" -type "float2" -0.00081010163 0.0019806027 ; + setAttr ".uvtk[2619]" -type "float2" -0.00044332817 0.0013969541 ; + setAttr ".uvtk[2620]" -type "float2" -0.00058411807 0.0011721253 ; + setAttr ".uvtk[2621]" -type "float2" -0.00035890192 0.0022006035 ; + setAttr ".uvtk[2622]" -type "float2" -0.00027929991 0.0021538734 ; + setAttr ".uvtk[2623]" -type "float2" -0.00025912374 0.0019467473 ; + setAttr ".uvtk[2624]" -type "float2" -7.4312091e-05 0.0017541051 ; + setAttr ".uvtk[2625]" -type "float2" 4.0799379e-05 0.0014950037 ; + setAttr ".uvtk[2626]" -type "float2" 0.00029338896 0.0014306903 ; + setAttr ".uvtk[2627]" -type "float2" 0.00021746755 0.0016384721 ; + setAttr ".uvtk[2628]" -type "float2" -0.00028272346 0.0014020801 ; + setAttr ".uvtk[2629]" -type "float2" -0.00040010363 0.0023618937 ; + setAttr ".uvtk[2630]" -type "float2" -0.00045069307 0.0022268295 ; + setAttr ".uvtk[2631]" -type "float2" -0.00042837858 0.0021077394 ; + setAttr ".uvtk[2632]" -type "float2" -0.0005961284 0.002014637 ; + setAttr ".uvtk[2633]" -type "float2" -0.00068453699 0.0018726587 ; + setAttr ".uvtk[2634]" -type "float2" -0.0005627498 0.001829505 ; + setAttr ".uvtk[2635]" -type "float2" -0.00052843243 0.0018923283 ; + setAttr ".uvtk[2636]" -type "float2" -0.00089175999 0.0018581152 ; + setAttr ".uvtk[2637]" -type "float2" -0.00083316118 0.0018329024 ; + setAttr ".uvtk[2638]" -type "float2" -0.00067602098 0.0015830994 ; + setAttr ".uvtk[2639]" -type "float2" -0.00041507185 0.0019047856 ; + setAttr ".uvtk[2640]" -type "float2" -0.00032945722 0.0019361973 ; + setAttr ".uvtk[2641]" -type "float2" -0.00043319166 0.0016217828 ; + setAttr ".uvtk[2642]" -type "float2" -0.00066867471 0.0016000867 ; + setAttr ".uvtk[2643]" -type "float2" -0.00080771744 0.0013458133 ; + setAttr ".uvtk[2644]" -type "float2" -0.00073764473 0.0011862516 ; + setAttr ".uvtk[2645]" -type "float2" -0.00063578039 0.0012306571 ; + setAttr ".uvtk[2646]" -type "float2" -0.00040764362 0.0014525652 ; + setAttr ".uvtk[2647]" -type "float2" -0.0004004091 0.0013968945 ; + setAttr ".uvtk[2648]" -type "float2" -0.00018618256 0.0016245246 ; + setAttr ".uvtk[2649]" -type "float2" -0.00018342584 0.0014843345 ; + setAttr ".uvtk[2650]" -type "float2" -0.00034269691 0.0018051863 ; + setAttr ".uvtk[2651]" -type "float2" -0.0004402101 0.0018158555 ; + setAttr ".uvtk[3556]" -type "float2" -0.0023449361 0.0047476888 ; + setAttr ".uvtk[3557]" -type "float2" -0.0023846179 0.0048899651 ; + setAttr ".uvtk[3558]" -type "float2" -0.002774626 0.0047938824 ; + setAttr ".uvtk[3559]" -type "float2" -0.0025728643 0.0049027205 ; + setAttr ".uvtk[3560]" -type "float2" -0.0030536354 0.0043032169 ; + setAttr ".uvtk[3561]" -type "float2" -0.0023647994 0.0040249825 ; + setAttr ".uvtk[3562]" -type "float2" -0.0019945204 0.0042179823 ; + setAttr ".uvtk[3563]" -type "float2" -0.0014670938 0.0040534735 ; + setAttr ".uvtk[3564]" -type "float2" -0.0018209368 0.0038951635 ; + setAttr ".uvtk[3565]" -type "float2" -0.0013638139 0.0037462711 ; + setAttr ".uvtk[3566]" -type "float2" -0.0020756274 0.0035707951 ; + setAttr ".uvtk[3567]" -type "float2" -0.0018407702 0.0035222173 ; + setAttr ".uvtk[3568]" -type "float2" -0.0013911724 0.0037577748 ; + setAttr ".uvtk[3569]" -type "float2" -0.0012552589 0.0042788386 ; + setAttr ".uvtk[3570]" -type "float2" -0.0016959459 0.0048347712 ; + setAttr ".uvtk[3571]" -type "float2" -0.0018456876 0.0043675303 ; + setAttr ".uvtk[3572]" -type "float2" -0.0017113388 0.0040943027 ; + setAttr ".uvtk[3573]" -type "float2" -0.0014698803 0.0045186281 ; + setAttr ".uvtk[3574]" -type "float2" -0.0016371012 0.0043343306 ; + setAttr ".uvtk[3575]" -type "float2" -0.0021419823 0.0054793954 ; + setAttr ".uvtk[3576]" -type "float2" -0.0021586418 0.0059643984 ; + setAttr ".uvtk[3577]" -type "float2" -0.0023873746 0.0042930245 ; + setAttr ".uvtk[3578]" -type "float2" -0.0028648078 0.0040979981 ; + setAttr ".uvtk[3579]" -type "float2" -0.0031977892 0.0040715337 ; + setAttr ".uvtk[3580]" -type "float2" -0.0031881928 0.004414916 ; + setAttr ".uvtk[3581]" -type "float2" -0.0028436482 0.0042231679 ; + setAttr ".uvtk[3582]" -type "float2" -0.003069073 0.0046174526 ; + setAttr ".uvtk[3583]" -type "float2" -0.0030492842 0.0045351386 ; + setAttr ".uvtk[3584]" -type "float2" -0.0032060444 0.0044101477 ; + setAttr ".uvtk[3585]" -type "float2" -0.0033296645 0.0043014884 ; + setAttr ".uvtk[3586]" -type "float2" -0.0032047331 0.0039051771 ; + setAttr ".uvtk[3587]" -type "float2" -0.0034120679 0.0040801764 ; + setAttr ".uvtk[3588]" -type "float2" -0.0034362674 0.0041950941 ; + setAttr ".uvtk[3589]" -type "float2" -0.0036894679 0.0037593842 ; + setAttr ".uvtk[3590]" -type "float2" -0.0037664473 0.0036969781 ; + setAttr ".uvtk[3591]" -type "float2" -0.0033635795 0.003657043 ; + setAttr ".uvtk[3592]" -type "float2" -0.0032663047 0.003888905 ; + setAttr ".uvtk[3593]" -type "float2" -0.0031755865 0.004237175 ; + setAttr ".uvtk[3594]" -type "float2" -0.0028674304 0.0037592649 ; + setAttr ".uvtk[3595]" -type "float2" -0.0029628575 0.0040359497 ; + setAttr ".uvtk[3596]" -type "float2" -0.002739042 0.0038248301 ; + setAttr ".uvtk[3597]" -type "float2" -0.0027300417 0.0031586885 ; + setAttr ".uvtk[3598]" -type "float2" -0.0028960705 0.0030225515 ; + setAttr ".uvtk[3599]" -type "float2" -0.0024861991 0.0029241443 ; + setAttr ".uvtk[3600]" -type "float2" -0.0028588474 0.0025969744 ; + setAttr ".uvtk[3601]" -type "float2" -0.0028561354 0.0025530457 ; + setAttr ".uvtk[3602]" -type "float2" -0.0028502941 0.0026968718 ; + setAttr ".uvtk[3603]" -type "float2" -0.0027306378 0.0024641752 ; + setAttr ".uvtk[3604]" -type "float2" -0.0025524795 0.0021908283 ; + setAttr ".uvtk[3605]" -type "float2" -0.002918005 0.0022987127 ; + setAttr ".uvtk[3606]" -type "float2" -0.0025957227 0.002086997 ; + setAttr ".uvtk[3607]" -type "float2" -0.0028658211 0.002051115 ; + setAttr ".uvtk[3608]" -type "float2" -0.0025316179 0.0018470287 ; + setAttr ".uvtk[3609]" -type "float2" -0.0024067461 0.0017392635 ; + setAttr ".uvtk[3610]" -type "float2" -0.0028342605 0.0016397238 ; + setAttr ".uvtk[3611]" -type "float2" -0.0025762916 0.0011645555 ; + setAttr ".uvtk[3612]" -type "float2" -0.0023874938 0.00069230795 ; + setAttr ".uvtk[3613]" -type "float2" -0.0027961731 -0.00051528215 ; + setAttr ".uvtk[3614]" -type "float2" -0.0029943287 0.00031232834 ; + setAttr ".uvtk[3615]" -type "float2" -0.0031954646 3.9935112e-06 ; + setAttr ".uvtk[3616]" -type "float2" -0.0027739406 -0.0002052784 ; + setAttr ".uvtk[3717]" -type "float2" 0.00038290396 -0.00044733286 ; + setAttr ".uvtk[3718]" -type "float2" 0.0011676294 -0.001123786 ; + setAttr ".uvtk[3719]" -type "float2" -0.00032517128 -0.0010452867 ; + setAttr ".uvtk[3720]" -type "float2" -0.00036246702 -0.00015705824 ; + setAttr ".uvtk[3721]" -type "float2" 8.1654638e-05 0.001257658 ; + setAttr ".uvtk[3722]" -type "float2" 0.00033716485 0.0010864735 ; + setAttr ".uvtk[3723]" -type "float2" 0.00026805326 0.0013795495 ; + setAttr ".uvtk[3724]" -type "float2" 9.5322728e-05 0.0015417933 ; + setAttr ".uvtk[3725]" -type "float2" 0.00011137128 0.0016202927 ; + setAttr ".uvtk[3726]" -type "float2" 0.00025472045 0.0016313791 ; + setAttr ".uvtk[3727]" -type "float2" 0.00025464594 0.0017884374 ; + setAttr ".uvtk[3728]" -type "float2" 0.00033714622 0.0020784736 ; + setAttr ".uvtk[3729]" -type "float2" 0.00028132647 0.0021299124 ; + setAttr ".uvtk[3730]" -type "float2" 0.00020025671 0.0027415156 ; + setAttr ".uvtk[3731]" -type "float2" 0.00018450618 0.0026768446 ; + setAttr ".uvtk[3732]" -type "float2" -1.4379621e-06 0.0028743148 ; + setAttr ".uvtk[3733]" -type "float2" 0.00011041015 0.0031525493 ; + setAttr ".uvtk[3734]" -type "float2" 0.00039950013 0.003128469 ; + setAttr ".uvtk[3735]" -type "float2" 0.00070080161 0.003539145 ; + setAttr ".uvtk[3736]" -type "float2" -0.00069151819 0.0041891336 ; + setAttr ".uvtk[3737]" -type "float2" -0.0019838363 0.0051409006 ; + setAttr ".uvtk[3738]" -type "float2" -0.0017243475 0.0050910711 ; + setAttr ".uvtk[3739]" -type "float2" -0.0018925816 0.0050150752 ; + setAttr ".uvtk[3740]" -type "float2" -0.0018835217 0.0047985315 ; + setAttr ".uvtk[3741]" -type "float2" -0.0017304122 0.0044219494 ; + setAttr ".uvtk[3742]" -type "float2" -0.0013361126 0.0048341155 ; + setAttr ".uvtk[3743]" -type "float2" -0.0013734251 0.0051780939 ; + setAttr ".uvtk[3744]" -type "float2" -0.0021365732 0.0050598979 ; + setAttr ".uvtk[4731]" -type "float2" 1.1593103e-05 0.0079041123 ; + setAttr ".uvtk[4732]" -type "float2" 0.00088199973 0.0073544383 ; + setAttr ".uvtk[4733]" -type "float2" -0.002102375 0.0081532001 ; + setAttr ".uvtk[4734]" -type "float2" -0.0032562912 0.0084985495 ; + setAttr ".uvtk[4735]" -type "float2" -0.0048667192 0.0078504682 ; + setAttr ".uvtk[4736]" -type "float2" -0.0059729218 0.006904304 ; + setAttr ".uvtk[4737]" -type "float2" -0.0061471164 0.0031322837 ; + setAttr ".uvtk[4738]" -type "float2" -0.0064923167 0.004796207 ; + setAttr ".uvtk[4739]" -type "float2" -0.0064969063 0.0058831573 ; + setAttr ".uvtk[4740]" -type "float2" 0.0016848743 0.005548656 ; + setAttr ".uvtk[4741]" -type "float2" 0.0019093305 0.0044366121 ; + setAttr ".uvtk[4742]" -type "float2" 0.0014051497 0.0060779452 ; + setAttr ".uvtk[4743]" -type "float2" 0.0010974407 0.0067023039 ; + setAttr ".uvtk[4744]" -type "float2" 0.0021437705 0.0025451779 ; + setAttr ".uvtk[4745]" -type "float2" -0.0054177642 0.001265347 ; + setAttr ".uvtk[4746]" -type "float2" -0.0049566329 0.00067996979 ; + setAttr ".uvtk[4747]" -type "float2" 0.0021681339 0.00088787079 ; + setAttr ".uvtk[4748]" -type "float2" 0.00041082501 0.00011950731 ; + setAttr ".uvtk[4749]" -type "float2" -0.00033351779 -0.00040501356 ; + setAttr ".uvtk[4750]" -type "float2" -0.0022637844 -0.00060069561 ; + setAttr ".uvtk[4751]" -type "float2" 0.000839293 0.0001604557 ; + setAttr ".uvtk[4752]" -type "float2" -0.0027239621 -0.00072211027 ; + setAttr ".uvtk[4753]" -type "float2" 0.0022555888 0.00090950727 ; + setAttr ".uvtk[4754]" -type "float2" -0.0039150715 -0.00033682585 ; + setAttr ".uvtk[4755]" -type "float2" -0.0050841421 0.0036718845 ; + setAttr ".uvtk[4756]" -type "float2" -0.0048427582 0.0060521364 ; + setAttr ".uvtk[4757]" -type "float2" -0.004605934 0.0064014196 ; + setAttr ".uvtk[4758]" -type "float2" -0.0017936081 0.0082473755 ; + setAttr ".uvtk[4759]" -type "float2" -0.00028814375 0.0083470345 ; + setAttr ".uvtk[4760]" -type "float2" -0.0030636638 0.0078131557 ; + setAttr ".uvtk[4761]" -type "float2" 0.001593709 0.0078968406 ; + setAttr ".uvtk[4762]" -type "float2" 0.0033271611 0.0067484975 ; + setAttr ".uvtk[4763]" -type "float2" -0.0039357394 0.0075690746 ; + setAttr ".uvtk[4764]" -type "float2" -0.004360944 0.0068943501 ; + setAttr ".uvtk[4765]" -type "float2" 0.0038530082 0.0039439201 ; + setAttr ".uvtk[4766]" -type "float2" 0.003707692 0.0028734803 ; + setAttr ".uvtk[4767]" -type "float2" 0.0038292557 0.0060651302 ; + setAttr ".uvtk[4768]" -type "float2" -0.0011491477 -0.0010983348 ; + setAttr ".uvtk[4769]" -type "float2" -0.0023071617 -0.0011298656 ; + setAttr ".uvtk[4770]" -type "float2" -0.0026568919 -0.0013226271 ; + setAttr ".uvtk[4771]" -type "float2" -0.0036992878 -0.00082075596 ; + setAttr ".uvtk[4772]" -type "float2" 0.0014153272 -0.0015935302 ; + setAttr ".uvtk[4773]" -type "float2" -0.0052867532 -0.00048673153 ; + setAttr ".uvtk[4774]" -type "float2" 0.0014419407 -0.0011434555 ; + setAttr ".uvtk[4775]" -type "float2" -0.0052164942 0.0029829144 ; + setAttr ".uvtk[4776]" -type "float2" 0.0028159469 0.00053489208 ; + setAttr ".uvtk[4777]" -type "float2" 0.0027637631 2.1636486e-05 ; + setAttr ".uvtk[4778]" -type "float2" 0.0032964498 0.0016755462 ; +createNode polyMapSew -n "polyMapSew1"; + rename -uid "62FCB2EE-49EB-22A9-9F1A-8C9A4C6193E9"; + setAttr ".uopa" yes; + setAttr ".ics" -type "componentList" 34 "e[8324]" "e[8327]" "e[8329]" "e[8331]" "e[8333]" "e[8335]" "e[8337]" "e[8339]" "e[8341]" "e[8344:8345]" "e[8347]" "e[8350]" "e[8352:8353]" "e[8356]" "e[8358]" "e[8361:8362]" "e[8365:8366]" "e[8368:8370]" "e[8372]" "e[8374]" "e[8377]" "e[8380:8381]" "e[8383]" "e[8386:8387]" "e[8390]" "e[8393:8394]" "e[8396]" "e[8398]" "e[8400]" "e[8403:8404]" "e[8407:8408]" "e[8411]" "e[8413]" "e[8415:8418]"; +createNode polyMapSew -n "polyMapSew2"; + rename -uid "80FEFFBB-4454-8820-D480-41899FB228C2"; + setAttr ".uopa" yes; + setAttr ".ics" -type "componentList" 18 "e[8419]" "e[8421:8422]" "e[8424]" "e[8426]" "e[8428]" "e[8430]" "e[8432]" "e[8434]" "e[8436]" "e[8438:8439]" "e[8442]" "e[8444:8445]" "e[8447]" "e[8450:8451]" "e[8453]" "e[8455:8456]" "e[8459:8460]" "e[8463]"; +createNode polyMapSew -n "polyMapSew3"; + rename -uid "3797D66A-4C05-FB62-4031-E3856142600C"; + setAttr ".uopa" yes; + setAttr ".ics" -type "componentList" 16 "e[8467]" "e[8469]" "e[8471:8472]" "e[8474:8475]" "e[8478]" "e[8480:8481]" "e[8484:8485]" "e[8487:8488]" "e[8491]" "e[8493]" "e[8495]" "e[8497:8498]" "e[8501:8502]" "e[8505:8506]" "e[8508]" "e[8510]"; +createNode polyTweakUV -n "polyTweakUV2"; + rename -uid "A49434CB-4D4F-B78F-7B25-C7865EA48A45"; + setAttr ".uopa" yes; + setAttr -s 1120 ".uvtk"; + setAttr ".uvtk[136]" -type "float2" -0.00057513756 -0.0043207644 ; + setAttr ".uvtk[137]" -type "float2" -0.00054411334 -0.0043191551 ; + setAttr ".uvtk[138]" -type "float2" -0.00056089205 -0.0042451262 ; + setAttr ".uvtk[139]" -type "float2" -0.00060145301 -0.0042776107 ; + setAttr ".uvtk[140]" -type "float2" -0.00065429253 -0.0043141483 ; + setAttr ".uvtk[141]" -type "float2" -0.00062592071 -0.004306817 ; + setAttr ".uvtk[142]" -type "float2" -0.00068934006 -0.0044357418 ; + setAttr ".uvtk[143]" -type "float2" -0.00064231199 -0.0044472455 ; + setAttr ".uvtk[144]" -type "float2" -0.00060949964 -0.0045957803 ; + setAttr ".uvtk[145]" -type "float2" -0.00067512435 -0.0045795082 ; + setAttr ".uvtk[146]" -type "float2" -0.00065164012 -0.00468477 ; + setAttr ".uvtk[147]" -type "float2" -0.00059099239 -0.0046736836 ; + setAttr ".uvtk[148]" -type "float2" -0.00054083508 -0.0048434376 ; + setAttr ".uvtk[149]" -type "float2" -0.00045995158 -0.0048737167 ; + setAttr ".uvtk[150]" -type "float2" -0.00042579812 -0.0048099398 ; + setAttr ".uvtk[151]" -type "float2" -0.00049413485 -0.0047922372 ; + setAttr ".uvtk[152]" -type "float2" -0.00055555743 -0.0047383546 ; + setAttr ".uvtk[153]" -type "float2" -0.00061110896 -0.0047753691 ; + setAttr ".uvtk[154]" -type "float2" -0.00044032675 -0.0042159795 ; + setAttr ".uvtk[155]" -type "float2" -0.00044138473 -0.0042852401 ; + setAttr ".uvtk[156]" -type "float2" -0.00038207811 -0.0042778491 ; + setAttr ".uvtk[157]" -type "float2" -0.00036737067 -0.0041971444 ; + setAttr ".uvtk[158]" -type "float2" -0.0004858945 -0.0042206286 ; + setAttr ".uvtk[159]" -type "float2" -0.00048954529 -0.0042979359 ; + setAttr ".uvtk[160]" -type "float2" -0.00051839394 -0.0043068766 ; + setAttr ".uvtk[161]" -type "float2" -0.00052284938 -0.0042214631 ; + setAttr ".uvtk[162]" -type "float2" -0.0003421728 -0.0042909621 ; + setAttr ".uvtk[163]" -type "float2" -0.0002856378 -0.0042373179 ; + setAttr ".uvtk[164]" -type "float2" -0.00038854522 -0.0048662662 ; + setAttr ".uvtk[165]" -type "float2" -0.00038136286 -0.004781568 ; + setAttr ".uvtk[166]" -type "float2" -0.00033004326 -0.0048442124 ; + setAttr ".uvtk[167]" -type "float2" -0.0003511731 -0.0047448515 ; + setAttr ".uvtk[168]" -type "float2" -0.00029234332 -0.0043133139 ; + setAttr ".uvtk[169]" -type "float2" -0.0001586054 -0.0042950748 ; + setAttr ".uvtk[170]" -type "float2" -0.00018845242 -0.004697883 ; + setAttr ".uvtk[171]" -type "float2" -0.00012735766 -0.0047357916 ; + setAttr ".uvtk[172]" -type "float2" -0.00010044617 -0.0046916245 ; + setAttr ".uvtk[173]" -type "float2" -0.00017098826 -0.0047190427 ; + setAttr ".uvtk[174]" -type "float2" -0.00020901603 -0.0047756075 ; + setAttr ".uvtk[175]" -type "float2" -0.00016535562 -0.0047981977 ; + setAttr ".uvtk[176]" -type "float2" -6.8572583e-05 -0.0045915483 ; + setAttr ".uvtk[177]" -type "float2" -0.00013251347 -0.0046501397 ; + setAttr ".uvtk[178]" -type "float2" -0.00022349996 -0.0048332452 ; + setAttr ".uvtk[179]" -type "float2" -0.00026486558 -0.0048018931 ; + setAttr ".uvtk[180]" -type "float2" -8.9478912e-05 -0.004436159 ; + setAttr ".uvtk[181]" -type "float2" -0.00018246216 -0.0044523715 ; + setAttr ".uvtk[182]" -type "float2" -0.00027952832 -0.0048393249 ; + setAttr ".uvtk[183]" -type "float2" -0.00031627459 -0.0047699451 ; + setAttr ".uvtk[184]" -type "float2" -0.00023105484 -0.0039096116 ; + setAttr ".uvtk[185]" -type "float2" -0.00028149527 -0.0039404868 ; + setAttr ".uvtk[186]" -type "float2" -0.00027274829 -0.0040208935 ; + setAttr ".uvtk[187]" -type "float2" -0.00022101146 -0.003963673 ; + setAttr ".uvtk[188]" -type "float2" -0.00022639078 -0.0038587688 ; + setAttr ".uvtk[189]" -type "float2" -0.00027981144 -0.003886783 ; + setAttr ".uvtk[190]" -type "float2" -0.00014812988 -0.0037874221 ; + setAttr ".uvtk[191]" -type "float2" -0.0001573835 -0.0037463545 ; + setAttr ".uvtk[192]" -type "float2" -0.00017773849 -0.0037792563 ; + setAttr ".uvtk[193]" -type "float2" -0.00015640003 -0.0038171648 ; + setAttr ".uvtk[194]" -type "float2" -0.0002022211 -0.0037760376 ; + setAttr ".uvtk[195]" -type "float2" -0.00015882892 -0.0037830113 ; + setAttr ".uvtk[196]" -type "float2" -0.00010674936 -0.0037185191 ; + setAttr ".uvtk[197]" -type "float2" -0.000109819 -0.0036823391 ; + setAttr ".uvtk[198]" -type "float2" -3.748876e-05 -0.0036568283 ; + setAttr ".uvtk[199]" -type "float2" -3.5268487e-05 -0.0036152243 ; + setAttr ".uvtk[200]" -type "float2" -0.00018509966 -0.0037766933 ; + setAttr ".uvtk[201]" -type "float2" -0.00024251384 -0.0037969588 ; + setAttr ".uvtk[202]" -type "float2" -0.00021144492 -0.0038139462 ; + setAttr ".uvtk[203]" -type "float2" -0.00026939553 -0.0038389801 ; + setAttr ".uvtk[204]" -type "float2" 0.00015807408 -0.0035462021 ; + setAttr ".uvtk[205]" -type "float2" 0.00013409811 -0.0035806536 ; + setAttr ".uvtk[206]" -type "float2" 0.00022740918 -0.0035863756 ; + setAttr ".uvtk[207]" -type "float2" 0.00025236863 -0.0035667061 ; + setAttr ".uvtk[208]" -type "float2" 5.7833968e-05 -0.0035650968 ; + setAttr ".uvtk[209]" -type "float2" 4.4378219e-05 -0.0036081909 ; + setAttr ".uvtk[210]" -type "float2" 0.00028820592 -0.0038703321 ; + setAttr ".uvtk[211]" -type "float2" 0.00026121992 -0.0038677691 ; + setAttr ".uvtk[212]" -type "float2" 0.00020873803 -0.0037942766 ; + setAttr ".uvtk[213]" -type "float2" 0.00024476903 -0.0038537025 ; + setAttr ".uvtk[214]" -type "float2" 0.00020140666 -0.0037377714 ; + setAttr ".uvtk[215]" -type "float2" 0.00021623331 -0.0038661002 ; + setAttr ".uvtk[216]" -type "float2" 8.9498935e-05 -0.003886783 ; + setAttr ".uvtk[217]" -type "float2" 0.00013183313 -0.003976786 ; + setAttr ".uvtk[218]" -type "float2" 0.00033714133 -0.0038429736 ; + setAttr ".uvtk[219]" -type "float2" 0.00030409056 -0.0038385033 ; + setAttr ".uvtk[220]" -type "float2" -5.5131735e-05 -0.0040043234 ; + setAttr ".uvtk[221]" -type "float2" -2.5701942e-05 -0.0040902137 ; + setAttr ".uvtk[222]" -type "float2" 0.00036122161 -0.003797078 ; + setAttr ".uvtk[223]" -type "float2" 0.00032249349 -0.0037891506 ; + setAttr ".uvtk[224]" -type "float2" -0.00018751365 -0.0040093898 ; + setAttr ".uvtk[225]" -type "float2" -0.00019126874 -0.0040768026 ; + setAttr ".uvtk[226]" -type "float2" 0.00037038582 -0.003752911 ; + setAttr ".uvtk[227]" -type "float2" 0.00032858807 -0.003778243 ; + setAttr ".uvtk[228]" -type "float2" 0.00032474357 -0.0037352084 ; + setAttr ".uvtk[229]" -type "float2" 0.00035885233 -0.0036954521 ; + setAttr ".uvtk[230]" -type "float2" 0.00032094377 -0.003626728 ; + setAttr ".uvtk[231]" -type "float2" 0.00029039639 -0.0036620139 ; + setAttr ".uvtk[232]" -type "float2" -0.00058275205 -0.0041609644 ; + setAttr ".uvtk[233]" -type "float2" -0.00063566607 -0.0042296886 ; + setAttr ".uvtk[234]" -type "float2" -0.00069392961 -0.0042998432 ; + setAttr ".uvtk[235]" -type "float2" -0.00073773903 -0.0044217347 ; + setAttr ".uvtk[236]" -type "float2" -0.00074134511 -0.004568541 ; + setAttr ".uvtk[237]" -type "float2" -0.00072030467 -0.0046994328 ; + setAttr ".uvtk[238]" -type "float2" -0.00067560119 -0.004820609 ; + setAttr ".uvtk[239]" -type "float2" -0.00059343618 -0.0049116253 ; + setAttr ".uvtk[240]" -type "float2" -0.00049300236 -0.0049559711 ; + setAttr ".uvtk[241]" -type "float2" -0.00039554876 -0.004961872 ; + setAttr ".uvtk[242]" -type "float2" -0.00030810875 -0.0049509644 ; + setAttr ".uvtk[243]" -type "float2" -0.00023318571 -0.0049259304 ; + setAttr ".uvtk[244]" -type "float2" -0.00016300124 -0.0048910021 ; + setAttr ".uvtk[245]" -type "float2" -9.9969329e-05 -0.0048341989 ; + setAttr ".uvtk[246]" -type "float2" -5.3805532e-05 -0.0047591566 ; + setAttr ".uvtk[247]" -type "float2" -1.9115629e-05 -0.0046831011 ; + setAttr ".uvtk[248]" -type "float2" 9.6734148e-06 -0.0045762896 ; + setAttr ".uvtk[249]" -type "float2" 1.0314165e-05 -0.0044411062 ; + setAttr ".uvtk[250]" -type "float2" -0.00024525565 -0.003762865 ; + setAttr ".uvtk[251]" -type "float2" -0.00031187874 -0.0038078665 ; + setAttr ".uvtk[252]" -type "float2" -0.00011719507 -0.0036434173 ; + setAttr ".uvtk[253]" -type "float2" -0.00017136079 -0.0037106513 ; + setAttr ".uvtk[254]" -type "float2" -0.00020430726 -0.0037456392 ; + setAttr ".uvtk[255]" -type "float2" -3.3435645e-05 -0.003568077 ; + setAttr ".uvtk[256]" -type "float2" 7.4091135e-05 -0.0035140156 ; + setAttr ".uvtk[257]" -type "float2" 0.00018763798 -0.0034997105 ; + setAttr ".uvtk[258]" -type "float2" 0.00028658169 -0.0035264133 ; + setAttr ".uvtk[259]" -type "float2" 0.00035994011 -0.0035845875 ; + setAttr ".uvtk[260]" -type "float2" 0.00040895003 -0.0036560534 ; + setAttr ".uvtk[261]" -type "float2" 0.00042338925 -0.0037995218 ; + setAttr ".uvtk[262]" -type "float2" 0.00043148058 -0.0037284731 ; + setAttr ".uvtk[263]" -type "float2" 0.00034325081 -0.0039007901 ; + setAttr ".uvtk[264]" -type "float2" 0.0003944661 -0.0038597821 ; + setAttr ".uvtk[265]" -type "float2" 0.00025400775 -0.0039616465 ; + setAttr ".uvtk[266]" -type "float2" 0.00029343623 -0.0039197444 ; + setAttr ".uvtk[267]" -type "float2" 0.00017997879 -0.0040570735 ; + setAttr ".uvtk[268]" -type "float2" -0.00041849655 -0.0040288805 ; + setAttr ".uvtk[269]" -type "float2" -0.00039651734 -0.0039909123 ; + setAttr ".uvtk[270]" -type "float2" -0.00040311855 -0.0039853691 ; + setAttr ".uvtk[271]" -type "float2" -0.00042523188 -0.0040223836 ; + setAttr ".uvtk[272]" -type "float2" -0.00044958037 -0.0040577292 ; + setAttr ".uvtk[273]" -type "float2" -0.00044274074 -0.0040646433 ; + setAttr ".uvtk[274]" -type "float2" -0.00046059233 -0.0039910912 ; + setAttr ".uvtk[275]" -type "float2" -0.0004358117 -0.0039575933 ; + setAttr ".uvtk[276]" -type "float2" -0.0004435156 -0.003947997 ; + setAttr ".uvtk[277]" -type "float2" -0.00046905619 -0.0039819716 ; + setAttr ".uvtk[278]" -type "float2" -0.00050487858 -0.0040618419 ; + setAttr ".uvtk[279]" -type "float2" -0.00048391265 -0.0040252446 ; + setAttr ".uvtk[280]" -type "float2" -0.00049200398 -0.0040166019 ; + setAttr ".uvtk[281]" -type "float2" -0.00051361066 -0.004055643 ; + setAttr ".uvtk[282]" -type "float2" -0.00047448021 -0.0040889024 ; + setAttr ".uvtk[283]" -type "float2" -0.00046875817 -0.004096353 ; + setAttr ".uvtk[284]" -type "float2" 3.8619619e-06 -0.0043274998 ; + setAttr ".uvtk[285]" -type "float2" 8.7755499e-05 -0.0041544675 ; + setAttr ".uvtk[286]" -type "float2" 2.411264e-05 -0.0042411922 ; + setAttr ".uvtk[287]" -type "float2" -0.00010163826 -0.0041976809 ; + setAttr ".uvtk[288]" -type "float2" -0.00032630307 -0.0038622259 ; + setAttr ".uvtk[289]" -type "float2" -0.00032794219 -0.0039069294 ; + setAttr ".uvtk[290]" -type "float2" -0.00052900356 -0.0041593551 ; + setAttr ".uvtk[291]" -type "float2" -0.00032873196 -0.0039609908 ; + setAttr ".uvtk[292]" -type "float2" -0.00044549746 -0.0041570305 ; + setAttr ".uvtk[293]" -type "float2" -0.0004884277 -0.0041645407 ; + setAttr ".uvtk[294]" -type "float2" -0.00033934158 -0.004020059 ; + setAttr ".uvtk[295]" -type "float2" -0.00040124101 -0.0041278838 ; + setAttr ".uvtk[296]" -type "float2" -0.00031244499 -0.004114294 ; + setAttr ".uvtk[297]" -type "float2" -0.00036464375 -0.0040779351 ; + setAttr ".uvtk[298]" -type "float2" -0.0002241258 -0.0041562556 ; + setAttr ".uvtk[299]" -type "float2" -0.00037868065 -0.0039578318 ; + setAttr ".uvtk[300]" -type "float2" -0.00038549048 -0.0039535402 ; + setAttr ".uvtk[301]" -type "float2" -0.00040995819 -0.0039265393 ; + setAttr ".uvtk[302]" -type "float2" -0.00041573984 -0.0039165854 ; + setAttr ".uvtk[303]" -type "float2" -0.00049602729 -0.0041093468 ; + setAttr ".uvtk[304]" -type "float2" -0.00049411994 -0.0041178702 ; + setAttr ".uvtk[305]" -type "float2" -0.00036413711 -0.0039213537 ; + setAttr ".uvtk[306]" -type "float2" -0.00037237746 -0.0039234399 ; + setAttr ".uvtk[307]" -type "float2" -0.00051085395 -0.004109764 ; + setAttr ".uvtk[308]" -type "float2" -0.00051629287 -0.004117751 ; + setAttr ".uvtk[309]" -type "float2" -0.0003742401 -0.0039079427 ; + setAttr ".uvtk[310]" -type "float2" -0.00036763889 -0.0038976907 ; + setAttr ".uvtk[311]" -type "float2" -0.00038686139 -0.0039071082 ; + setAttr ".uvtk[312]" -type "float2" -0.00038759154 -0.0038957237 ; + setAttr ".uvtk[313]" -type "float2" -0.00052503985 -0.0040931343 ; + setAttr ".uvtk[314]" -type "float2" -0.00051612896 -0.0040933131 ; + setAttr ".uvtk[315]" -type "float2" -0.00036993367 -0.0039628982 ; + setAttr ".uvtk[316]" -type "float2" -0.00035699946 -0.003919208 ; + setAttr ".uvtk[317]" -type "float2" -0.00038674218 -0.0040005087 ; + setAttr ".uvtk[318]" -type "float2" -0.00040821475 -0.0040397882 ; + setAttr ".uvtk[319]" -type "float2" -0.00043384475 -0.0040763258 ; + setAttr ".uvtk[320]" -type "float2" -0.00046299142 -0.004106605 ; + setAttr ".uvtk[321]" -type "float2" -0.00049167615 -0.0041257977 ; + setAttr ".uvtk[322]" -type "float2" -0.00035461527 -0.0039652823 ; + setAttr ".uvtk[323]" -type "float2" -0.00034703058 -0.0039156317 ; + setAttr ".uvtk[324]" -type "float2" -0.00037015718 -0.0040108799 ; + setAttr ".uvtk[325]" -type "float2" -0.00039209169 -0.0040548085 ; + setAttr ".uvtk[326]" -type "float2" -0.00042068702 -0.0040945648 ; + setAttr ".uvtk[327]" -type "float2" -0.00045463187 -0.004125142 ; + setAttr ".uvtk[328]" -type "float2" -0.00049048406 -0.004140818 ; + setAttr ".uvtk[329]" -type "float2" -0.00052068871 -0.0041246652 ; + setAttr ".uvtk[330]" -type "float2" -0.00052523357 -0.0041368245 ; + setAttr ".uvtk[331]" -type "float2" -0.00036088866 -0.0038886904 ; + setAttr ".uvtk[332]" -type "float2" -0.00035141152 -0.0038783788 ; + setAttr ".uvtk[333]" -type "float2" -0.00038672728 -0.0038852333 ; + setAttr ".uvtk[334]" -type "float2" -0.00042062742 -0.0039077043 ; + setAttr ".uvtk[335]" -type "float2" -0.00045047444 -0.0039400696 ; + setAttr ".uvtk[336]" -type "float2" -0.00047668559 -0.003974223 ; + setAttr ".uvtk[337]" -type "float2" -0.00050011021 -0.0040091514 ; + setAttr ".uvtk[338]" -type "float2" -0.00052259606 -0.004050219 ; + setAttr ".uvtk[339]" -type "float2" -0.00053389114 -0.0040939092 ; + setAttr ".uvtk[340]" -type "float2" -0.00055265171 -0.0041004657 ; + setAttr ".uvtk[341]" -type "float2" -0.00053614122 -0.0040446161 ; + setAttr ".uvtk[342]" -type "float2" -0.00051252288 -0.0040011643 ; + setAttr ".uvtk[343]" -type "float2" -0.00048799557 -0.0039645671 ; + setAttr ".uvtk[344]" -type "float2" -0.00046054763 -0.0039291619 ; + setAttr ".uvtk[345]" -type "float2" -0.00042693061 -0.003894472 ; + setAttr ".uvtk[346]" -type "float2" -0.00037978333 -0.003863716 ; + setAttr ".uvtk[347]" -type "float2" -0.00044704718 -0.0040038466 ; + setAttr ".uvtk[348]" -type "float2" -0.00042381627 -0.0039708256 ; + setAttr ".uvtk[349]" -type "float2" -0.00046951813 -0.0040382384 ; + setAttr ".uvtk[350]" -type "float2" -0.000416619 -0.0039773225 ; + setAttr ".uvtk[351]" -type "float2" -0.00043846411 -0.0040111779 ; + setAttr ".uvtk[352]" -type "float2" -0.00046226126 -0.0040452718 ; + setAttr ".uvtk[353]" -type "float2" -0.00049110991 -0.0040703057 ; + setAttr ".uvtk[354]" -type "float2" -0.00048495573 -0.0040754317 ; + setAttr ".uvtk[355]" -type "float2" -0.00040258211 -0.003940308 ; + setAttr ".uvtk[356]" -type "float2" -0.00039741141 -0.0039460897 ; + setAttr ".uvtk[357]" -type "float2" -0.00038519246 -0.0039245128 ; + setAttr ".uvtk[358]" -type "float2" -0.00038845581 -0.0039216517 ; + setAttr ".uvtk[359]" -type "float2" -0.00038417918 -0.0039185523 ; + setAttr ".uvtk[360]" -type "float2" -0.00049987179 -0.0040943264 ; + setAttr ".uvtk[361]" -type "float2" -0.00050353748 -0.0040908693 ; + setAttr ".uvtk[362]" -type "float2" -0.0005050574 -0.0040973662 ; + setAttr ".uvtk[363]" -type "float2" -3.337604e-05 -0.0035158037 ; + setAttr ".uvtk[364]" -type "float2" -0.00012859446 -0.0036091446 ; + setAttr ".uvtk[365]" -type "float2" -0.00018468243 -0.0036812662 ; + setAttr ".uvtk[366]" -type "float2" -0.00022709114 -0.0037175058 ; + setAttr ".uvtk[367]" -type "float2" -0.00027523679 -0.0037431358 ; + setAttr ".uvtk[368]" -type "float2" -0.00033533317 -0.0037824749 ; + setAttr ".uvtk[369]" -type "float2" -0.00039738161 -0.0038330792 ; + setAttr ".uvtk[370]" -type "float2" -0.00043953699 -0.0038691401 ; + setAttr ".uvtk[371]" -type "float2" -0.0004781757 -0.0039080023 ; + setAttr ".uvtk[372]" -type "float2" -0.00051215035 -0.0039475798 ; + setAttr ".uvtk[373]" -type "float2" -0.00053964299 -0.0039885282 ; + setAttr ".uvtk[374]" -type "float2" -0.00056567532 -0.0040319799 ; + setAttr ".uvtk[375]" -type "float2" -0.00059306365 -0.0040804981 ; + setAttr ".uvtk[376]" -type "float2" -0.00062884134 -0.004135692 ; + setAttr ".uvtk[377]" -type "float2" -0.00067411107 -0.0042050122 ; + setAttr ".uvtk[378]" -type "float2" -0.00073055667 -0.0042860745 ; + setAttr ".uvtk[379]" -type "float2" -0.00078068417 -0.0044062971 ; + setAttr ".uvtk[380]" -type "float2" -0.00080127758 -0.0045547127 ; + setAttr ".uvtk[381]" -type "float2" -0.00079519791 -0.0047080754 ; + setAttr ".uvtk[382]" -type "float2" -0.00075317663 -0.0048806905 ; + setAttr ".uvtk[383]" -type "float2" -0.00063653034 -0.0049952506 ; + setAttr ".uvtk[384]" -type "float2" -0.00052006287 -0.0050459742 ; + setAttr ".uvtk[385]" -type "float2" 9.3373237e-05 -0.0034543513 ; + setAttr ".uvtk[386]" -type "float2" 0.00022402662 -0.0034403442 ; + setAttr ".uvtk[387]" -type "float2" 0.00033038366 -0.0034734844 ; + setAttr ".uvtk[388]" -type "float2" 0.00040821987 -0.0035338639 ; + setAttr ".uvtk[389]" -type "float2" 0.00046989671 -0.0036131381 ; + setAttr ".uvtk[390]" -type "float2" 0.00050783507 -0.0037067174 ; + setAttr ".uvtk[391]" -type "float2" -0.00040290994 -0.0050650476 ; + setAttr ".uvtk[392]" -type "float2" -0.00028289598 -0.0050612926 ; + setAttr ".uvtk[393]" -type "float2" -0.00017861766 -0.0050233244 ; + setAttr ".uvtk[394]" -type "float2" -9.1028633e-05 -0.0049612164 ; + setAttr ".uvtk[395]" -type "float2" -2.1976652e-05 -0.0048765778 ; + setAttr ".uvtk[396]" -type "float2" 2.9253541e-05 -0.0047846078 ; + setAttr ".uvtk[397]" -type "float2" 6.4122258e-05 -0.0046929359 ; + setAttr ".uvtk[398]" -type "float2" 9.1912923e-05 -0.0045898794 ; + setAttr ".uvtk[399]" -type "float2" 0.00011030096 -0.0044701337 ; + setAttr ".uvtk[400]" -type "float2" 0.00012091058 -0.0043657064 ; + setAttr ".uvtk[401]" -type "float2" 0.00018674391 -0.0042162179 ; + setAttr ".uvtk[402]" -type "float2" 0.00013901549 -0.0042903065 ; + setAttr ".uvtk[403]" -type "float2" 0.0002532925 -0.0041291355 ; + setAttr ".uvtk[404]" -type "float2" 0.00031571346 -0.0040471791 ; + setAttr ".uvtk[405]" -type "float2" 0.00036812085 -0.0039926409 ; + setAttr ".uvtk[406]" -type "float2" 0.00042039412 -0.0039457916 ; + setAttr ".uvtk[407]" -type "float2" 0.00046870462 -0.0038869022 ; + setAttr ".uvtk[408]" -type "float2" 0.00050579361 -0.0038061379 ; + setAttr ".uvtk[409]" -type "float2" -0.00047990424 -0.0035181283 ; + setAttr ".uvtk[410]" -type "float2" -0.00045668823 -0.003503406 ; + setAttr ".uvtk[411]" -type "float2" -0.0004653011 -0.0034886836 ; + setAttr ".uvtk[412]" -type "float2" -0.00049048406 -0.0035048961 ; + setAttr ".uvtk[413]" -type "float2" -0.00043363613 -0.0034824251 ; + setAttr ".uvtk[414]" -type "float2" -0.00043232483 -0.0034951209 ; + setAttr ".uvtk[415]" -type "float2" -0.00049409014 -0.0035365461 ; + setAttr ".uvtk[416]" -type "float2" -0.00050572795 -0.0035324334 ; + setAttr ".uvtk[417]" -type "float2" -0.00050575775 -0.0035673021 ; + setAttr ".uvtk[418]" -type "float2" -0.00048991782 -0.0035637855 ; + setAttr ".uvtk[419]" -type "float2" -0.00049003703 -0.0036108731 ; + setAttr ".uvtk[420]" -type "float2" -0.00047494215 -0.0036020516 ; + setAttr ".uvtk[421]" -type "float2" -0.00046285731 -0.0036490797 ; + setAttr ".uvtk[422]" -type "float2" -0.00045084697 -0.0036399602 ; + setAttr ".uvtk[423]" -type "float2" -0.00043819589 -0.0036806702 ; + setAttr ".uvtk[424]" -type "float2" -0.00042702002 -0.0036725639 ; + setAttr ".uvtk[425]" -type "float2" -0.00039848429 -0.0034926175 ; + setAttr ".uvtk[426]" -type "float2" -0.00040814024 -0.0035090088 ; + setAttr ".uvtk[427]" -type "float2" -0.00036768359 -0.0035232543 ; + setAttr ".uvtk[428]" -type "float2" -0.00038175029 -0.003537917 ; + setAttr ".uvtk[429]" -type "float2" -0.00034489972 -0.0035625934 ; + setAttr ".uvtk[430]" -type "float2" -0.0003587876 -0.0035733818 ; + setAttr ".uvtk[431]" -type "float2" -0.00032520038 -0.0035960316 ; + setAttr ".uvtk[432]" -type "float2" -0.000338224 -0.0036056279 ; + setAttr ".uvtk[433]" -type "float2" -0.00041170162 -0.0037080287 ; + setAttr ".uvtk[434]" -type "float2" -0.00042524678 -0.0037155389 ; + setAttr ".uvtk[435]" -type "float2" -0.00029746932 -0.0036229729 ; + setAttr ".uvtk[436]" -type "float2" -0.00031064195 -0.0036344766 ; + setAttr ".uvtk[437]" -type "float2" -0.00025725109 -0.0036394238 ; + setAttr ".uvtk[438]" -type "float2" -0.00026707095 -0.0036559938 ; + setAttr ".uvtk[439]" -type "float2" -0.00041323644 -0.0037567853 ; + setAttr ".uvtk[440]" -type "float2" -0.0004332189 -0.0037579774 ; + setAttr ".uvtk[441]" -type "float2" -0.00046255928 -0.0035498976 ; + setAttr ".uvtk[442]" -type "float2" -0.0004345004 -0.00352993 ; + setAttr ".uvtk[443]" -type "float2" -0.0003664766 -0.0036283373 ; + setAttr ".uvtk[444]" -type "float2" -0.00034303707 -0.0036581992 ; + setAttr ".uvtk[445]" -type "float2" -0.00039964658 -0.0036530136 ; + setAttr ".uvtk[446]" -type "float2" -0.00038052839 -0.0036852001 ; + setAttr ".uvtk[447]" -type "float2" -0.00038762134 -0.0035974621 ; + setAttr ".uvtk[448]" -type "float2" -0.00042117876 -0.0036214232 ; + setAttr ".uvtk[449]" -type "float2" -0.00041022641 -0.0035621165 ; + setAttr ".uvtk[450]" -type "float2" -0.00044284505 -0.0035845279 ; + setAttr ".uvtk[451]" -type "float2" -0.00036479277 -0.0037187575 ; + setAttr ".uvtk[452]" -type "float2" -0.0003177349 -0.0036863326 ; + setAttr ".uvtk[453]" -type "float2" -0.00029641134 -0.0037163137 ; + setAttr ".uvtk[454]" -type "float2" -0.00024661166 -0.0036891936 ; + setAttr ".uvtk[455]" -type "float2" -0.00034971279 -0.0037513017 ; + setAttr ".uvtk[456]" -type "float2" -0.00040310365 -0.0037948131 ; + setAttr ".uvtk[457]" -type "float2" -0.00046235067 -0.0038036346 ; + setAttr ".uvtk[458]" -type "float2" -0.00045339507 -0.0038122772 ; + setAttr ".uvtk[459]" -type "float2" -0.00051238877 -0.0038548945 ; + setAttr ".uvtk[460]" -type "float2" -0.00050572795 -0.003866279 ; + setAttr ".uvtk[461]" -type "float2" -0.00056251627 -0.0038900613 ; + setAttr ".uvtk[462]" -type "float2" -0.00055579585 -0.0039031147 ; + setAttr ".uvtk[463]" -type "float2" -0.0006180529 -0.0039139031 ; + setAttr ".uvtk[464]" -type "float2" -0.00061052782 -0.0039285659 ; + setAttr ".uvtk[465]" -type "float2" -0.00066707772 -0.0039551496 ; + setAttr ".uvtk[466]" -type "float2" -0.0006784026 -0.0039413213 ; + setAttr ".uvtk[467]" -type "float2" -0.00071333093 -0.0039975881 ; + setAttr ".uvtk[468]" -type "float2" -0.00072847051 -0.0039869784 ; + setAttr ".uvtk[469]" -type "float2" -0.00075287861 -0.0040462851 ; + setAttr ".uvtk[470]" -type "float2" -0.00073761982 -0.0040524243 ; + setAttr ".uvtk[471]" -type "float2" -0.00075107557 -0.0041061281 ; + setAttr ".uvtk[472]" -type "float2" -0.00076742214 -0.0041035651 ; + setAttr ".uvtk[473]" -type "float2" -0.00079639 -0.0041544079 ; + setAttr ".uvtk[474]" -type "float2" -0.00078184647 -0.0041639446 ; + setAttr ".uvtk[475]" -type "float2" -0.00083283824 -0.0042190193 ; + setAttr ".uvtk[476]" -type "float2" -0.00084824604 -0.0042070984 ; + setAttr ".uvtk[477]" -type "float2" -0.00091643375 -0.0042654513 ; + setAttr ".uvtk[478]" -type "float2" -0.00089569134 -0.0042767762 ; + setAttr ".uvtk[479]" -type "float2" -0.00095085544 -0.0043344735 ; + setAttr ".uvtk[480]" -type "float2" -0.0009285335 -0.0043441891 ; + setAttr ".uvtk[481]" -type "float2" -0.00044536334 -0.0038345098 ; + setAttr ".uvtk[482]" -type "float2" -0.00049501401 -0.0038835048 ; + setAttr ".uvtk[483]" -type "float2" -0.00054679555 -0.0039316057 ; + setAttr ".uvtk[484]" -type "float2" -0.00059994799 -0.0039518713 ; + setAttr ".uvtk[485]" -type "float2" -0.0006449644 -0.003976786 ; + setAttr ".uvtk[486]" -type "float2" -0.00068425876 -0.0040139197 ; + setAttr ".uvtk[487]" -type "float2" -0.00070883078 -0.0040618419 ; + setAttr ".uvtk[488]" -type "float2" -0.00072519225 -0.0041103004 ; + setAttr ".uvtk[489]" -type "float2" -0.00075705093 -0.0041730641 ; + setAttr ".uvtk[490]" -type "float2" -0.0008079235 -0.0042376756 ; + setAttr ".uvtk[491]" -type "float2" -0.00086118025 -0.0042978167 ; + setAttr ".uvtk[492]" -type "float2" -0.00095267338 -0.0044244765 ; + setAttr ".uvtk[493]" -type "float2" -0.00093482179 -0.0044294833 ; + setAttr ".uvtk[494]" -type "float2" -0.00090698642 -0.0044397949 ; + setAttr ".uvtk[495]" -type "float2" -0.00089095277 -0.0043574809 ; + setAttr ".uvtk[496]" -type "float2" -0.00096048159 -0.0045172214 ; + setAttr ".uvtk[497]" -type "float2" -0.00097705168 -0.0045091747 ; + setAttr ".uvtk[498]" -type "float2" -0.0010318868 -0.0045694946 ; + setAttr ".uvtk[499]" -type "float2" -0.0010189526 -0.0046031713 ; + setAttr ".uvtk[500]" -type "float2" -0.0013930313 -0.0047849654 ; + setAttr ".uvtk[501]" -type "float2" -0.0013711862 -0.0048229336 ; + setAttr ".uvtk[502]" -type "float2" -0.0013539307 -0.004810059 ; + setAttr ".uvtk[503]" -type "float2" -0.0013659112 -0.0047785281 ; + setAttr ".uvtk[504]" -type "float2" -0.001393687 -0.0047014593 ; + setAttr ".uvtk[505]" -type "float2" -0.0013982169 -0.0047420501 ; + setAttr ".uvtk[506]" -type "float2" -0.0013706498 -0.0047371625 ; + setAttr ".uvtk[507]" -type "float2" -0.0013721995 -0.0047067045 ; + setAttr ".uvtk[508]" -type "float2" -0.0013684742 -0.0046612262 ; + setAttr ".uvtk[509]" -type "float2" -0.0013473146 -0.0046811341 ; + setAttr ".uvtk[510]" -type "float2" -0.0013232939 -0.0046269535 ; + setAttr ".uvtk[511]" -type "float2" -0.0013044588 -0.0046520471 ; + setAttr ".uvtk[512]" -type "float2" -0.0012591891 -0.0046060919 ; + setAttr ".uvtk[513]" -type "float2" -0.0012437813 -0.0046354174 ; + setAttr ".uvtk[526]" -type "float2" -0.0011817031 -0.0045985221 ; + setAttr ".uvtk[527]" -type "float2" -0.0011747591 -0.0046313046 ; + setAttr ".uvtk[534]" -type "float2" -0.0013262145 -0.0048544048 ; + setAttr ".uvtk[535]" -type "float2" -0.0013188832 -0.0048239469 ; + setAttr ".uvtk[542]" -type "float2" -0.0011023991 -0.0046250462 ; + setAttr ".uvtk[543]" -type "float2" -0.0011068694 -0.0045934557 ; + setAttr ".uvtk[544]" -type "float2" -0.00127111 -0.0048704385 ; + setAttr ".uvtk[545]" -type "float2" -0.0012716763 -0.0048339604 ; + setAttr ".uvtk[546]" -type "float2" -0.0010980181 -0.0048563718 ; + setAttr ".uvtk[547]" -type "float2" -0.001032155 -0.0048633455 ; + setAttr ".uvtk[548]" -type "float2" -0.0010329895 -0.0048250793 ; + setAttr ".uvtk[549]" -type "float2" -0.0010973029 -0.0048230528 ; + setAttr ".uvtk[550]" -type "float2" -0.0011588149 -0.0048297285 ; + setAttr ".uvtk[551]" -type "float2" -0.0011565797 -0.0048628091 ; + setAttr ".uvtk[552]" -type "float2" -0.0012113564 -0.0048704981 ; + setAttr ".uvtk[553]" -type "float2" -0.0012148432 -0.0048355698 ; + setAttr ".uvtk[554]" -type "float2" -0.00019719941 -0.0036607622 ; + setAttr ".uvtk[555]" -type "float2" -0.00020876271 -0.0036352514 ; + setAttr ".uvtk[556]" -type "float2" -0.00020721299 -0.0036453246 ; + setAttr ".uvtk[557]" -type "float2" -0.00014857692 -0.0035711168 ; + setAttr ".uvtk[558]" -type "float2" -0.00014467281 -0.0035798787 ; + setAttr ".uvtk[559]" -type "float2" -6.5905275e-05 -0.0034545301 ; + setAttr ".uvtk[560]" -type "float2" -5.8201374e-05 -0.0034640073 ; + setAttr ".uvtk[561]" -type "float2" -0.00013820571 -0.003590846 ; + setAttr ".uvtk[562]" -type "float2" -2.7296366e-05 -0.0034612059 ; + setAttr ".uvtk[563]" -type "float2" -0.00065482897 -0.0040369271 ; + setAttr ".uvtk[564]" -type "float2" -0.00062295538 -0.0039997338 ; + setAttr ".uvtk[565]" -type "float2" -0.0006821428 -0.0040792464 ; + setAttr ".uvtk[566]" -type "float2" -0.00059701246 -0.0039749979 ; + setAttr ".uvtk[567]" -type "float2" -0.00070211035 -0.0041194796 ; + setAttr ".uvtk[568]" -type "float2" -0.00059663993 -0.0040169 ; + setAttr ".uvtk[569]" -type "float2" -0.0005705331 -0.0039775609 ; + setAttr ".uvtk[570]" -type "float2" -0.00062757474 -0.004060769 ; + setAttr ".uvtk[571]" -type "float2" -0.00066861254 -0.0041150688 ; + setAttr ".uvtk[572]" -type "float2" -0.00070984405 -0.0041910051 ; + setAttr ".uvtk[573]" -type "float2" -0.00073708338 -0.0041823625 ; + setAttr ".uvtk[574]" -type "float2" -0.00078887981 -0.0042565702 ; + setAttr ".uvtk[575]" -type "float2" -0.00087879342 -0.0044600009 ; + setAttr ".uvtk[576]" -type "float2" -0.00084869307 -0.004348123 ; + setAttr ".uvtk[577]" -type "float2" -0.00076283258 -0.0042731999 ; + setAttr ".uvtk[578]" -type "float2" -0.00081608933 -0.0043831705 ; + setAttr ".uvtk[579]" -type "float2" -0.00085623306 -0.0045262813 ; + setAttr ".uvtk[580]" -type "float2" -0.00093279523 -0.0045333146 ; + setAttr ".uvtk[581]" -type "float2" -0.00089813513 -0.0045471429 ; + setAttr ".uvtk[582]" -type "float2" -0.0013361983 -0.00472548 ; + setAttr ".uvtk[583]" -type "float2" -0.0013269298 -0.0047762631 ; + setAttr ".uvtk[584]" -type "float2" -0.0012784414 -0.0047746538 ; + setAttr ".uvtk[585]" -type "float2" -0.0012897365 -0.0047111749 ; + setAttr ".uvtk[586]" -type "float2" -0.0012212209 -0.0047717928 ; + setAttr ".uvtk[587]" -type "float2" -0.0012304001 -0.0047006248 ; + setAttr ".uvtk[588]" -type "float2" -0.0011625104 -0.0047674417 ; + setAttr ".uvtk[589]" -type "float2" -0.0011679642 -0.0046957373 ; + setAttr ".uvtk[590]" -type "float2" -0.0011015944 -0.0047599911 ; + setAttr ".uvtk[591]" -type "float2" -0.001104515 -0.0046937703 ; + setAttr ".uvtk[592]" -type "float2" -0.0010445826 -0.0047267317 ; + setAttr ".uvtk[593]" -type "float2" -0.000863177 -0.004690194 ; + setAttr ".uvtk[594]" -type "float2" -0.00091768545 -0.004666829 ; + setAttr ".uvtk[595]" -type "float2" -0.00096516055 -0.0046378016 ; + setAttr ".uvtk[596]" -type "float2" -0.00086046499 -0.0048481463 ; + setAttr ".uvtk[597]" -type "float2" -0.00097553176 -0.0048899292 ; + setAttr ".uvtk[598]" -type "float2" -0.0009645347 -0.0048453449 ; + setAttr ".uvtk[599]" -type "float2" -0.00097800535 -0.0047497987 ; + setAttr ".uvtk[600]" -type "float2" -0.00092978519 -0.0047813891 ; + setAttr ".uvtk[601]" -type "float2" -0.00092334789 -0.0049395799 ; + setAttr ".uvtk[602]" -type "float2" -0.00090108556 -0.0049120425 ; + setAttr ".uvtk[603]" -type "float2" -0.0008105759 -0.0049863695 ; + setAttr ".uvtk[604]" -type "float2" -0.00073943776 -0.0050159334 ; + setAttr ".uvtk[605]" -type "float2" -0.00085843843 -0.0049953698 ; + setAttr ".uvtk[606]" -type "float2" -0.00064296764 -0.0050810217 ; + setAttr ".uvtk[607]" -type "float2" -0.00088594598 -0.005008602 ; + setAttr ".uvtk[608]" -type "float2" 0.00025062519 -0.0044402122 ; + setAttr ".uvtk[609]" -type "float2" 0.00027111429 -0.0043579577 ; + setAttr ".uvtk[610]" -type "float2" 0.00094603351 -0.0047900914 ; + setAttr ".uvtk[611]" -type "float2" 0.00085977069 -0.0048648953 ; + setAttr ".uvtk[612]" -type "float2" 0.0010064577 -0.0050496696 ; + setAttr ".uvtk[613]" -type "float2" 0.0011010801 -0.0049728393 ; + setAttr ".uvtk[614]" -type "float2" 0.00046657375 -0.0044641136 ; + setAttr ".uvtk[615]" -type "float2" 0.00043844036 -0.0045556664 ; + setAttr ".uvtk[616]" -type "float2" 0.00062008551 -0.0046667694 ; + setAttr ".uvtk[617]" -type "float2" 0.00065656356 -0.0045675277 ; + setAttr ".uvtk[618]" -type "float2" 0.0011509543 -0.0052512526 ; + setAttr ".uvtk[619]" -type "float2" 0.0012535786 -0.005175197 ; + setAttr ".uvtk[620]" -type "float2" 0.00024232524 -0.0045467853 ; + setAttr ".uvtk[621]" -type "float2" 0.00041228789 -0.0046600937 ; + setAttr ".uvtk[622]" -type "float2" 0.00057842187 -0.0047760247 ; + setAttr ".uvtk[623]" -type "float2" 0.00077063194 -0.0049489974 ; + setAttr ".uvtk[624]" -type "float2" 0.00090854219 -0.0051336526 ; + setAttr ".uvtk[625]" -type "float2" 0.0010431295 -0.005334103 ; + setAttr ".uvtk[626]" -type "float2" 0.00021930295 -0.0046580075 ; + setAttr ".uvtk[627]" -type "float2" 0.00037747878 -0.004767084 ; + setAttr ".uvtk[628]" -type "float2" 0.00052808574 -0.0048871278 ; + setAttr ".uvtk[629]" -type "float2" 0.00068076304 -0.0050350069 ; + setAttr ".uvtk[630]" -type "float2" 0.0008098071 -0.0052228211 ; + setAttr ".uvtk[631]" -type "float2" 0.00093247346 -0.0054207682 ; + setAttr ".uvtk[750]" -type "float2" 4.3984037e-06 -0.0050583719 ; + setAttr ".uvtk[751]" -type "float2" 8.7874709e-05 -0.0049502491 ; + setAttr ".uvtk[752]" -type "float2" 0.00014730054 -0.0048564314 ; + setAttr ".uvtk[753]" -type "float2" 0.00018702704 -0.0047589182 ; + setAttr ".uvtk[754]" -type "float2" 0.0004685109 -0.0049906611 ; + setAttr ".uvtk[755]" -type "float2" 0.00033502537 -0.0048683523 ; + setAttr ".uvtk[756]" -type "float2" 0.00039975601 -0.0050844192 ; + setAttr ".uvtk[757]" -type "float2" 0.00028471905 -0.0049644946 ; + setAttr ".uvtk[758]" -type "float2" 0.00032155472 -0.0051674484 ; + setAttr ".uvtk[759]" -type "float2" 0.0002187069 -0.0050525307 ; + setAttr ".uvtk[760]" -type "float2" 0.00023602205 -0.0052412986 ; + setAttr ".uvtk[761]" -type "float2" 0.00014527398 -0.0051374077 ; + setAttr ".uvtk[766]" -type "float2" 0.0004112001 -0.0053065061 ; + setAttr ".uvtk[767]" -type "float2" 0.00031055766 -0.0053754686 ; + setAttr ".uvtk[768]" -type "float2" 0.00038080174 -0.0055348515 ; + setAttr ".uvtk[769]" -type "float2" 0.00049595884 -0.0054692863 ; + setAttr ".uvtk[770]" -type "float2" 0.00044785789 -0.0057151555 ; + setAttr ".uvtk[771]" -type "float2" 0.00057746819 -0.0056519746 ; + setAttr ".uvtk[776]" -type "float2" 0.00059523038 -0.0051362752 ; + setAttr ".uvtk[777]" -type "float2" 0.00070940307 -0.0053120493 ; + setAttr ".uvtk[778]" -type "float2" 0.0005057638 -0.0052269935 ; + setAttr ".uvtk[779]" -type "float2" 0.00060515455 -0.0053948401 ; + setAttr ".uvtk[780]" -type "float2" 0.00081865839 -0.0055048107 ; + setAttr ".uvtk[781]" -type "float2" 0.0007007306 -0.0055817603 ; + setAttr ".uvtk[790]" -type "float2" 0.00057462207 -0.0039087175 ; + setAttr ".uvtk[791]" -type "float2" 0.00059913448 -0.0038184165 ; + setAttr ".uvtk[796]" -type "float2" 0.0011165251 -0.0037821769 ; + setAttr ".uvtk[797]" -type "float2" 0.0011331697 -0.0038956641 ; + setAttr ".uvtk[798]" -type "float2" 0.0012980287 -0.0038609146 ; + setAttr ".uvtk[799]" -type "float2" 0.0012714376 -0.0037421822 ; + setAttr ".uvtk[800]" -type "float2" 0.0007161086 -0.0038317083 ; + setAttr ".uvtk[801]" -type "float2" 0.000705946 -0.0039253472 ; + setAttr ".uvtk[802]" -type "float2" 0.00083715073 -0.0039293407 ; + setAttr ".uvtk[803]" -type "float2" 0.00083855144 -0.0038296818 ; + setAttr ".uvtk[804]" -type "float2" 0.00097168586 -0.003812158 ; + setAttr ".uvtk[805]" -type "float2" 0.00097896508 -0.0039194464 ; + setAttr ".uvtk[808]" -type "float2" 0.00031587738 -0.0042778491 ; + setAttr ".uvtk[809]" -type "float2" 0.00038458663 -0.004197502 ; + setAttr ".uvtk[810]" -type "float2" 0.00044614426 -0.0041214465 ; + setAttr ".uvtk[811]" -type "float2" 0.00049610785 -0.0040515899 ; + setAttr ".uvtk[812]" -type "float2" 0.00053786091 -0.0039823293 ; + setAttr ".uvtk[813]" -type "float2" 0.00050925068 -0.0043658256 ; + setAttr ".uvtk[814]" -type "float2" 0.00070050708 -0.0044483184 ; + setAttr ".uvtk[815]" -type "float2" 0.00056152395 -0.0042739152 ; + setAttr ".uvtk[816]" -type "float2" 0.00074194721 -0.0043382286 ; + setAttr ".uvtk[817]" -type "float2" 0.0006109213 -0.0041855811 ; + setAttr ".uvtk[818]" -type "float2" 0.00077824644 -0.0042331456 ; + setAttr ".uvtk[819]" -type "float2" 0.00065222732 -0.0040994524 ; + setAttr ".uvtk[820]" -type "float2" 0.00080646924 -0.0041312217 ; + setAttr ".uvtk[821]" -type "float2" 0.00068384758 -0.0040135025 ; + setAttr ".uvtk[822]" -type "float2" 0.00082613877 -0.0040301322 ; + setAttr ".uvtk[823]" -type "float2" 0.00092862896 -0.0044831871 ; + setAttr ".uvtk[824]" -type "float2" 0.00092260889 -0.0046025752 ; + setAttr ".uvtk[825]" -type "float2" 0.0011221503 -0.0046085357 ; + setAttr ".uvtk[826]" -type "float2" 0.0011264568 -0.0044837235 ; + setAttr ".uvtk[827]" -type "float2" 0.00094007305 -0.0043694614 ; + setAttr ".uvtk[828]" -type "float2" 0.0011331772 -0.0043640374 ; + setAttr ".uvtk[829]" -type "float2" 0.00095594279 -0.004258418 ; + setAttr ".uvtk[830]" -type "float2" 0.0011401509 -0.0042466759 ; + setAttr ".uvtk[831]" -type "float2" 0.00096975616 -0.0041420697 ; + setAttr ".uvtk[832]" -type "float2" 0.0011437123 -0.0041285395 ; + setAttr ".uvtk[833]" -type "float2" 0.00097805611 -0.0040292381 ; + setAttr ".uvtk[834]" -type "float2" 0.0011420285 -0.0040110587 ; + setAttr ".uvtk[835]" -type "float2" 0.0013320034 -0.0046070456 ; + setAttr ".uvtk[836]" -type "float2" 0.0013319736 -0.0044793724 ; + setAttr ".uvtk[837]" -type "float2" 0.0013349687 -0.0043511032 ; + setAttr ".uvtk[838]" -type "float2" 0.0013341641 -0.0042271256 ; + setAttr ".uvtk[839]" -type "float2" 0.0013285314 -0.0041038631 ; + setAttr ".uvtk[840]" -type "float2" 0.0013169756 -0.0039813756 ; + setAttr ".uvtk[884]" -type "float2" -0.00026444835 -0.0061300038 ; + setAttr ".uvtk[885]" -type "float2" -0.0001047675 -0.0060943007 ; + setAttr ".uvtk[886]" -type "float2" -0.00013006967 -0.005900824 ; + setAttr ".uvtk[887]" -type "float2" -0.00028131646 -0.0059342026 ; + setAttr ".uvtk[888]" -type "float2" -0.0005512659 -0.005975449 ; + setAttr ".uvtk[889]" -type "float2" -0.00055782241 -0.0061708926 ; + setAttr ".uvtk[890]" -type "float2" -0.00041733426 -0.006158018 ; + setAttr ".uvtk[891]" -type "float2" -0.00042347354 -0.005960071 ; + setAttr ".uvtk[909]" -type "float2" 0.00091393176 -0.0027188896 ; + setAttr ".uvtk[910]" -type "float2" 0.00085904985 -0.002749884 ; + setAttr ".uvtk[911]" -type "float2" 0.00087596453 -0.0027963161 ; + setAttr ".uvtk[912]" -type "float2" 0.00093871984 -0.0027596592 ; + setAttr ".uvtk[913]" -type "float2" 0.0010639799 -0.0030004024 ; + setAttr ".uvtk[914]" -type "float2" 0.00091638393 -0.0030742525 ; + setAttr ".uvtk[915]" -type "float2" 0.0010075902 -0.0031786798 ; + setAttr ".uvtk[916]" -type "float2" 0.0011350734 -0.0031036972 ; + setAttr ".uvtk[917]" -type "float2" 0.0012083461 -0.0032165288 ; + setAttr ".uvtk[918]" -type "float2" 0.0010801998 -0.0032875179 ; + setAttr ".uvtk[919]" -type "float2" 0.0011412536 -0.0033999323 ; + setAttr ".uvtk[920]" -type "float2" 0.001276016 -0.0033334731 ; + setAttr ".uvtk[937]" -type "float2" 0.00051103882 -0.0059111356 ; + setAttr ".uvtk[938]" -type "float2" 0.0006558483 -0.0058509349 ; + setAttr ".uvtk[939]" -type "float2" 0.0007931774 -0.0057860254 ; + setAttr ".uvtk[940]" -type "float2" 0.0009252911 -0.0057127713 ; + setAttr ".uvtk[941]" -type "float2" 0.001052696 -0.005631113 ; + setAttr ".uvtk[942]" -type "float2" 0.0011751836 -0.0055476665 ; + setAttr ".uvtk[943]" -type "float2" 0.0012923067 -0.005465114 ; + setAttr ".uvtk[944]" -type "float2" 0.0014016514 -0.0053888797 ; + setAttr ".uvtk[945]" -type "float2" 0.0015486067 -0.0045967936 ; + setAttr ".uvtk[946]" -type "float2" 0.0015455519 -0.0044669746 ; + setAttr ".uvtk[947]" -type "float2" 0.0015439873 -0.0043323874 ; + setAttr ".uvtk[948]" -type "float2" 0.0015364548 -0.0042016744 ; + setAttr ".uvtk[949]" -type "float2" 0.0015224924 -0.0040718555 ; + setAttr ".uvtk[950]" -type "float2" 0.0015010273 -0.0039437651 ; + setAttr ".uvtk[951]" -type "float2" 0.0014718433 -0.0038174032 ; + setAttr ".uvtk[952]" -type "float2" 0.0014345904 -0.0036935448 ; + setAttr ".uvtk[953]" -type "float2" -2.0090956e-06 -0.0033532022 ; + setAttr ".uvtk[954]" -type "float2" 1.2415228e-05 -0.0033577322 ; + setAttr ".uvtk[955]" -type "float2" 3.3194898e-05 -0.0032658814 ; + setAttr ".uvtk[956]" -type "float2" 5.0688861e-05 -0.0032685637 ; + setAttr ".uvtk[957]" -type "float2" 7.3845265e-05 -0.0031870841 ; + setAttr ".uvtk[958]" -type "float2" 5.5092154e-05 -0.0031844615 ; + setAttr ".uvtk[959]" -type "float2" 6.9911359e-05 -0.0031025051 ; + setAttr ".uvtk[960]" -type "float2" 8.9066802e-05 -0.0031059622 ; + setAttr ".uvtk[961]" -type "float2" 7.9477904e-05 -0.0030258535 ; + setAttr ".uvtk[962]" -type "float2" 9.8141609e-05 -0.0030299663 ; + setAttr ".uvtk[963]" -type "float2" 0.00010236609 -0.0029622554 ; + setAttr ".uvtk[964]" -type "float2" 8.4216474e-05 -0.0029591559 ; + setAttr ".uvtk[965]" -type "float2" 0.00010529417 -0.0029015183 ; + setAttr ".uvtk[966]" -type "float2" 8.7152002e-05 -0.0028977036 ; + setAttr ".uvtk[967]" -type "float2" 9.3097566e-05 -0.0028410791 ; + setAttr ".uvtk[968]" -type "float2" 0.00010992843 -0.0028450727 ; + setAttr ".uvtk[969]" -type "float2" 0.00010543573 -0.0027879714 ; + setAttr ".uvtk[970]" -type "float2" 0.00012084353 -0.0027944683 ; + setAttr ".uvtk[971]" -type "float2" 0.00013941783 -0.002747023 ; + setAttr ".uvtk[972]" -type "float2" 0.00012612599 -0.0027380227 ; + setAttr ".uvtk[973]" -type "float2" 0.00016132998 -0.0026920079 ; + setAttr ".uvtk[974]" -type "float2" 0.00017135101 -0.0027029156 ; + setAttr ".uvtk[975]" -type "float2" 0.00021370756 -0.0026548146 ; + setAttr ".uvtk[976]" -type "float2" 0.00022068503 -0.00266757 ; + setAttr ".uvtk[977]" -type "float2" 0.00027551386 -0.002631986 ; + setAttr ".uvtk[978]" -type "float2" 0.00028091553 -0.0026463508 ; + setAttr ".uvtk[979]" -type "float2" 0.00033710781 -0.0026193499 ; + setAttr ".uvtk[980]" -type "float2" 0.00034278142 -0.0026359796 ; + setAttr ".uvtk[981]" -type "float2" 0.0004030827 -0.0026008724 ; + setAttr ".uvtk[982]" -type "float2" 0.00041285041 -0.0026164888 ; + setAttr ".uvtk[983]" -type "float2" 0.00046317047 -0.0023459434 ; + setAttr ".uvtk[984]" -type "float2" 0.0004441354 -0.0024484037 ; + setAttr ".uvtk[985]" -type "float2" 0.00046139094 -0.0024626493 ; + setAttr ".uvtk[986]" -type "float2" 0.00048257178 -0.0023634075 ; + setAttr ".uvtk[987]" -type "float2" 0.0004540009 -0.0025592088 ; + setAttr ".uvtk[988]" -type "float2" 0.00044148392 -0.0025458573 ; + setAttr ".uvtk[1939]" -type "float2" -0.00085444492 -0.0051433682 ; + setAttr ".uvtk[1940]" -type "float2" -0.0008477394 -0.0050729155 ; + setAttr ".uvtk[1941]" -type "float2" -0.00087551516 -0.0050791739 ; + setAttr ".uvtk[1942]" -type "float2" -0.00088344258 -0.0051452755 ; + setAttr ".uvtk[1943]" -type "float2" -0.00088523072 -0.0052226423 ; + setAttr ".uvtk[1944]" -type "float2" -0.00091139716 -0.0052154898 ; + setAttr ".uvtk[1945]" -type "float2" -0.00093777222 -0.0052901148 ; + setAttr ".uvtk[1946]" -type "float2" -0.00095571321 -0.005271697 ; + setAttr ".uvtk[1947]" -type "float2" -0.0010053043 -0.0053097247 ; + setAttr ".uvtk[1948]" -type "float2" -0.0010499172 -0.005339527 ; + setAttr ".uvtk[1949]" -type "float2" -0.001034569 -0.0053617596 ; + setAttr ".uvtk[1950]" -type "float2" -0.00098974747 -0.0053314208 ; + setAttr ".uvtk[1951]" -type "float2" -0.0010789149 -0.0053885817 ; + setAttr ".uvtk[1952]" -type "float2" -0.0010956936 -0.0053680181 ; + setAttr ".uvtk[1953]" -type "float2" -0.0011326186 -0.005424106 ; + setAttr ".uvtk[1954]" -type "float2" -0.0011516325 -0.0054024695 ; + setAttr ".uvtk[1955]" -type "float2" -0.0012026839 -0.0054382919 ; + setAttr ".uvtk[1956]" -type "float2" -0.0011797063 -0.0054627894 ; + setAttr ".uvtk[1959]" -type "float2" -0.0012561195 -0.0054816245 ; + setAttr ".uvtk[1960]" -type "float2" -0.0012292974 -0.0055070161 ; + setAttr ".uvtk[1961]" -type "float2" -0.001478415 -0.0058337091 ; + setAttr ".uvtk[1962]" -type "float2" -0.0015316419 -0.0059198379 ; + setAttr ".uvtk[1963]" -type "float2" -0.0015156381 -0.0059414147 ; + setAttr ".uvtk[1964]" -type "float2" -0.0014579408 -0.0058504581 ; + setAttr ".uvtk[1965]" -type "float2" -0.0016195588 -0.005975151 ; + setAttr ".uvtk[1966]" -type "float2" -0.0016017072 -0.0060010194 ; + setAttr ".uvtk[1967]" -type "float2" -0.0016898923 -0.0060262321 ; + setAttr ".uvtk[1968]" -type "float2" -0.0016641133 -0.0060488223 ; + setAttr ".uvtk[1969]" -type "float2" -0.0017272048 -0.0060947775 ; + setAttr ".uvtk[1970]" -type "float2" -0.0016942136 -0.0061095594 ; + setAttr ".uvtk[1973]" -type "float2" -0.0014473014 -0.0057460307 ; + setAttr ".uvtk[1974]" -type "float2" -0.0014238171 -0.0057637333 ; + setAttr ".uvtk[1975]" -type "float2" -0.0014121346 -0.0056643724 ; + setAttr ".uvtk[1976]" -type "float2" -0.0013875179 -0.0056872009 ; + setAttr ".uvtk[1977]" -type "float2" -0.0013599209 -0.0055882572 ; + setAttr ".uvtk[1978]" -type "float2" -0.0013341717 -0.0056152581 ; + setAttr ".uvtk[1979]" -type "float2" -0.0013066344 -0.0055289506 ; + setAttr ".uvtk[1980]" -type "float2" -0.0012796633 -0.0055559515 ; + setAttr ".uvtk[2113]" -type "float2" 0.00052611134 -0.0025301217 ; + setAttr ".uvtk[2114]" -type "float2" 0.00055195927 -0.0024639606 ; + setAttr ".uvtk[2115]" -type "float2" 0.0005241388 -0.0024338602 ; + setAttr ".uvtk[2116]" -type "float2" 0.00049806735 -0.0025112866 ; + setAttr ".uvtk[2117]" -type "float2" 0.00050294283 -0.0023995875 ; + setAttr ".uvtk[2118]" -type "float2" 0.00048009469 -0.0024863719 ; + setAttr ".uvtk[2119]" -type "float2" 0.00049713976 -0.0025900244 ; + setAttr ".uvtk[2120]" -type "float2" 0.00052749342 -0.0025985478 ; + setAttr ".uvtk[2121]" -type "float2" 0.0004732979 -0.0025866269 ; + setAttr ".uvtk[2122]" -type "float2" 0.00055544241 -0.0026592254 ; + setAttr ".uvtk[2123]" -type "float2" 0.00052623427 -0.0026660799 ; + setAttr ".uvtk[2124]" -type "float2" 0.00050329394 -0.0026734709 ; + setAttr ".uvtk[2125]" -type "float2" 0.00055130175 -0.0027467846 ; + setAttr ".uvtk[2126]" -type "float2" 0.00057795621 -0.0027320622 ; + setAttr ".uvtk[2127]" -type "float2" 0.00060269958 -0.0027090549 ; + setAttr ".uvtk[2128]" -type "float2" 0.00042268517 -0.0026378273 ; + setAttr ".uvtk[2129]" -type "float2" 0.00045940257 -0.0026602983 ; + setAttr ".uvtk[2130]" -type "float2" 0.00047918758 -0.002707982 ; + setAttr ".uvtk[2131]" -type "float2" 0.00042547542 -0.0026822328 ; + setAttr ".uvtk[2132]" -type "float2" 0.00060358993 -0.0037002205 ; + setAttr ".uvtk[2133]" -type "float2" 0.0012361591 -0.0036273836 ; + setAttr ".uvtk[2134]" -type "float2" 0.0010906791 -0.0036729216 ; + setAttr ".uvtk[2135]" -type "float2" 0.0008317118 -0.003734672 ; + setAttr ".uvtk[2136]" -type "float2" 0.00071907393 -0.0037387847 ; + setAttr ".uvtk[2137]" -type "float2" 0.00095524243 -0.0037095784 ; + setAttr ".uvtk[2138]" -type "float2" 0.001388978 -0.0035737394 ; + setAttr ".uvtk[2139]" -type "float2" 0.00047525368 -0.0034844517 ; + setAttr ".uvtk[2140]" -type "float2" 0.00039263326 -0.0034018992 ; + setAttr ".uvtk[2141]" -type "float2" -0.00052632135 -0.0051295995 ; + setAttr ".uvtk[2142]" -type "float2" -0.00039933366 -0.0051506995 ; + setAttr ".uvtk[2143]" -type "float2" 0.00056448183 -0.003431642 ; + setAttr ".uvtk[2144]" -type "float2" 0.00050748489 -0.0033478378 ; + setAttr ".uvtk[2145]" -type "float2" 0.00053927652 -0.0035791635 ; + setAttr ".uvtk[2146]" -type "float2" -0.00052408618 -0.0052348613 ; + setAttr ".uvtk[2147]" -type "float2" -0.00038759154 -0.0052572726 ; + setAttr ".uvtk[2148]" -type "float2" -0.00013656658 -0.005113387 ; + setAttr ".uvtk[2149]" -type "float2" -0.00026561064 -0.0051469444 ; + setAttr ".uvtk[2150]" -type "float2" -0.00079549593 -0.0051433682 ; + setAttr ".uvtk[2151]" -type "float2" -0.00079695624 -0.0050760745 ; + setAttr ".uvtk[2152]" -type "float2" -0.0008195166 -0.0052521466 ; + setAttr ".uvtk[2153]" -type "float2" -0.0007386033 -0.0051226257 ; + setAttr ".uvtk[2154]" -type "float2" -0.00074232859 -0.0052585243 ; + setAttr ".uvtk[2155]" -type "float2" 0.0001173343 -0.0033930182 ; + setAttr ".uvtk[2156]" -type "float2" 0.00025436538 -0.0033776402 ; + setAttr ".uvtk[2157]" -type "float2" 5.0726114e-05 -0.0033535599 ; + setAttr ".uvtk[2158]" -type "float2" 8.8589964e-05 -0.0032721995 ; + setAttr ".uvtk[2165]" -type "float2" 0.00088572479 -0.0028353571 ; + setAttr ".uvtk[2166]" -type "float2" 0.00096118799 -0.0027932762 ; + setAttr ".uvtk[2169]" -type "float2" 0.00079742982 -0.0027685999 ; + setAttr ".uvtk[2170]" -type "float2" 0.00080362125 -0.0028167604 ; + setAttr ".uvtk[2171]" -type "float2" 0.0007286442 -0.0027704476 ; + setAttr ".uvtk[2172]" -type "float2" 0.00072536594 -0.002815628 ; + setAttr ".uvtk[2173]" -type "float2" 0.00064683682 -0.0027894615 ; + setAttr ".uvtk[2174]" -type "float2" 0.00066148466 -0.0027483939 ; + setAttr ".uvtk[2175]" -type "float2" 0.00061630807 -0.0028193831 ; + setAttr ".uvtk[2176]" -type "float2" 0.00071402243 -0.0028524636 ; + setAttr ".uvtk[2177]" -type "float2" 0.00089175045 -0.0028864383 ; + setAttr ".uvtk[2178]" -type "float2" 0.00098444312 -0.0028409003 ; + setAttr ".uvtk[2179]" -type "float2" 0.00080322451 -0.0028569936 ; + setAttr ".uvtk[2209]" -type "float2" 0.00090015656 -0.0029611825 ; + setAttr ".uvtk[2210]" -type "float2" 0.0010153425 -0.0029100417 ; + setAttr ".uvtk[2238]" -type "float2" 0.00066766492 -0.0033712625 ; + setAttr ".uvtk[2239]" -type "float2" 0.00061505637 -0.0032857894 ; + setAttr ".uvtk[2240]" -type "float2" 0.00062594912 -0.0035284399 ; + setAttr ".uvtk[2241]" -type "float2" 0.00068495027 -0.0036238073 ; + setAttr ".uvtk[2242]" -type "float2" 0.00073650084 -0.0036745309 ; + setAttr ".uvtk[2243]" -type "float2" 0.00072675548 -0.0034711002 ; + setAttr ".uvtk[2244]" -type "float2" 0.00077943853 -0.0035681366 ; + setAttr ".uvtk[2245]" -type "float2" 0.00081769726 -0.0036500334 ; + setAttr ".uvtk[2246]" -type "float2" 0.00133609 -0.0034535765 ; + setAttr ".uvtk[2247]" -type "float2" 0.0011929234 -0.0035134195 ; + setAttr ".uvtk[2250]" -type "float2" 0.00088820956 -0.0035161017 ; + setAttr ".uvtk[2251]" -type "float2" 0.00092897168 -0.0036120652 ; + setAttr ".uvtk[2252]" -type "float2" 0.0010555943 -0.0035661696 ; + setAttr ".uvtk[2253]" -type "float2" 0.0010103469 -0.003460729 ; + setAttr ".uvtk[2254]" -type "float2" 0.00083515397 -0.0034153103 ; + setAttr ".uvtk[2255]" -type "float2" 0.00095475814 -0.0033546924 ; + setAttr ".uvtk[2256]" -type "float2" 0.00077503524 -0.003314638 ; + setAttr ".uvtk[2257]" -type "float2" 0.00088916323 -0.0032531857 ; + setAttr ".uvtk[2258]" -type "float2" 0.00072219572 -0.0032318472 ; + setAttr ".uvtk[2259]" -type "float2" 0.00082216016 -0.0031718849 ; + setAttr ".uvtk[2287]" -type "float2" -0.00052712602 -0.0053932308 ; + setAttr ".uvtk[2288]" -type "float2" -0.00037027639 -0.0053986548 ; + setAttr ".uvtk[2289]" -type "float2" -0.00024859351 -0.0052542328 ; + setAttr ".uvtk[2290]" -type "float2" -0.00011391682 -0.0052306294 ; + setAttr ".uvtk[2291]" -type "float2" 1.1103926e-05 -0.0052049994 ; + setAttr ".uvtk[2292]" -type "float2" 0.00010286528 -0.0052100061 ; + setAttr ".uvtk[2293]" -type "float2" -0.00064395112 -0.0051785349 ; + setAttr ".uvtk[2294]" -type "float2" -0.00047199172 -0.0055870651 ; + setAttr ".uvtk[2295]" -type "float2" -0.00033817929 -0.0055673956 ; + setAttr ".uvtk[2296]" -type "float2" -0.00065405411 -0.0052975058 ; + setAttr ".uvtk[2297]" -type "float2" -0.00022558612 -0.0053884028 ; + setAttr ".uvtk[2298]" -type "float2" -8.7005319e-05 -0.005364263 ; + setAttr ".uvtk[2299]" -type "float2" 4.0489016e-05 -0.005334103 ; + setAttr ".uvtk[2300]" -type "float2" 0.00014816481 -0.0053001284 ; + setAttr ".uvtk[2301]" -type "float2" 0.00075173727 -0.0049057244 ; + setAttr ".uvtk[2302]" -type "float2" 0.00080870441 -0.0047790646 ; + setAttr ".uvtk[2303]" -type "float2" 0.00085518113 -0.0046627759 ; + setAttr ".uvtk[2304]" -type "float2" 0.00089983991 -0.004519844 ; + setAttr ".uvtk[2305]" -type "float2" 0.00093374006 -0.0043869256 ; + setAttr ".uvtk[2306]" -type "float2" -0.00044177216 -0.0057707666 ; + setAttr ".uvtk[2307]" -type "float2" -0.00030673784 -0.0057462691 ; + setAttr ".uvtk[2308]" -type "float2" -0.00019435328 -0.0055449842 ; + setAttr ".uvtk[2309]" -type "float2" -5.2047195e-05 -0.005514109 ; + setAttr ".uvtk[2310]" -type "float2" 8.1675826e-05 -0.005477333 ; + setAttr ".uvtk[2311]" -type "float2" 0.00020231563 -0.0054331659 ; + setAttr ".uvtk[2312]" -type "float2" -0.00016109389 -0.0057165264 ; + setAttr ".uvtk[2313]" -type "float2" -1.3959827e-05 -0.0056799888 ; + setAttr ".uvtk[2314]" -type "float2" 0.00012658793 -0.005639398 ; + setAttr ".uvtk[2315]" -type "float2" 0.00025795656 -0.0055920719 ; + setAttr ".uvtk[2316]" -type "float2" 2.2667227e-05 -0.0058613061 ; + setAttr ".uvtk[2317]" -type "float2" 0.00017018872 -0.0058186888 ; + setAttr ".uvtk[2318]" -type "float2" 0.00031186896 -0.0057707666 ; + setAttr ".uvtk[2319]" -type "float2" 0.0003611322 -0.0059638857 ; + setAttr ".uvtk[2320]" -type "float2" 0.00020881253 -0.0060101389 ; + setAttr ".uvtk[2321]" -type "float2" 5.4496108e-05 -0.0060529946 ; + setAttr ".uvtk[2355]" -type "float2" -0.0014163665 -0.0060329079 ; + setAttr ".uvtk[2356]" -type "float2" -0.0013693087 -0.0059431433 ; + setAttr ".uvtk[2357]" -type "float2" -0.0013983361 -0.005906248 ; + setAttr ".uvtk[2358]" -type "float2" -0.0014649145 -0.0060271262 ; + setAttr ".uvtk[2359]" -type "float2" -0.001295846 -0.0058811544 ; + setAttr ".uvtk[2360]" -type "float2" -0.0013113134 -0.0058281659 ; + setAttr ".uvtk[2361]" -type "float2" -0.0012095384 -0.0058502196 ; + setAttr ".uvtk[2362]" -type "float2" -0.0012083761 -0.005801165 ; + setAttr ".uvtk[2363]" -type "float2" -0.0011212341 -0.0058482527 ; + setAttr ".uvtk[2364]" -type "float2" -0.0011068992 -0.005798602 ; + setAttr ".uvtk[2365]" -type "float2" -0.0010334365 -0.0058716773 ; + setAttr ".uvtk[2366]" -type "float2" -0.0010099236 -0.0058228611 ; + setAttr ".uvtk[2367]" -type "float2" -0.00095323962 -0.0059164404 ; + setAttr ".uvtk[2368]" -type "float2" -0.00092191738 -0.0058707236 ; + setAttr ".uvtk[2369]" -type "float2" -0.00089357537 -0.0059873103 ; + setAttr ".uvtk[2370]" -type "float2" -0.00085694832 -0.0059433221 ; + setAttr ".uvtk[2371]" -type "float2" -0.00086207432 -0.0060764789 ; + setAttr ".uvtk[2372]" -type "float2" -0.00082067889 -0.0060411333 ; + setAttr ".uvtk[2373]" -type "float2" -0.0008618061 -0.0061725019 ; + setAttr ".uvtk[2374]" -type "float2" -0.00081909937 -0.0061620115 ; + setAttr ".uvtk[2375]" -type "float2" -0.0014279597 -0.0058765649 ; + setAttr ".uvtk[2376]" -type "float2" -0.0014916174 -0.0059728264 ; + setAttr ".uvtk[2377]" -type "float2" -0.0013723485 -0.0057984828 ; + setAttr ".uvtk[2378]" -type "float2" -0.0015691929 -0.0060400008 ; + setAttr ".uvtk[2379]" -type "float2" -0.0015395395 -0.0060978173 ; + setAttr ".uvtk[2385]" -type "float2" -0.0016251318 -0.0060907244 ; + setAttr ".uvtk[2386]" -type "float2" -0.0015960149 -0.0061418056 ; + setAttr ".uvtk[2419]" -type "float2" -0.0016553812 -0.0061288713 ; + setAttr ".uvtk[2446]" -type "float2" -0.00076232594 -0.006150329 ; + setAttr ".uvtk[2447]" -type "float2" -0.00076363725 -0.0059688925 ; + setAttr ".uvtk[2514]" -type "float2" -0.00067369384 -0.0061583756 ; + setAttr ".uvtk[2515]" -type "float2" -0.00066201133 -0.0059763431 ; + setAttr ".uvtk[2517]" -type "float2" -0.00059349579 -0.005483353 ; + setAttr ".uvtk[2518]" -type "float2" -0.00057552499 -0.0056153773 ; + setAttr ".uvtk[2519]" -type "float2" -0.00055862707 -0.0057895421 ; + setAttr ".uvtk[2520]" -type "float2" -0.00066639227 -0.00544914 ; + setAttr ".uvtk[2521]" -type "float2" -0.0006641869 -0.0056168674 ; + setAttr ".uvtk[2522]" -type "float2" -0.00065950793 -0.0057940125 ; + setAttr ".uvtk[2523]" -type "float2" -0.00074548763 -0.0054268478 ; + setAttr ".uvtk[2524]" -type "float2" -0.00074667973 -0.0056048869 ; + setAttr ".uvtk[2525]" -type "float2" -0.00074775261 -0.0057812571 ; + setAttr ".uvtk[2526]" -type "float2" -0.00083188456 -0.0058725118 ; + setAttr ".uvtk[2527]" -type "float2" -0.00082261604 -0.0057490706 ; + setAttr ".uvtk[2528]" -type "float2" -0.00090212864 -0.005813682 ; + setAttr ".uvtk[2529]" -type "float2" -0.0011949353 -0.005755031 ; + setAttr ".uvtk[2530]" -type "float2" -0.0012771599 -0.0057666539 ; + setAttr ".uvtk[2531]" -type "float2" -0.0010880642 -0.0057377457 ; + setAttr ".uvtk[2532]" -type "float2" -0.00098801893 -0.005769813 ; + setAttr ".uvtk[2533]" -type "float2" -0.0013316981 -0.0057380437 ; + setAttr ".uvtk[2534]" -type "float2" -0.0012823455 -0.0056644916 ; + setAttr ".uvtk[2535]" -type "float2" -0.001229208 -0.0056014298 ; + setAttr ".uvtk[2536]" -type "float2" -0.0011775903 -0.005552256 ; + setAttr ".uvtk[2537]" -type "float2" -0.00089381379 -0.0053340434 ; + setAttr ".uvtk[2538]" -type "float2" -0.00094829244 -0.0053785681 ; + setAttr ".uvtk[2539]" -type "float2" -0.00099234027 -0.0054080128 ; + setAttr ".uvtk[2540]" -type "float2" -0.0010309331 -0.0054310798 ; + setAttr ".uvtk[2541]" -type "float2" -0.001078289 -0.005467379 ; + setAttr ".uvtk[2542]" -type "float2" -0.0011272244 -0.0055074929 ; + setAttr ".uvtk[2543]" -type "float2" -0.0012317114 -0.0057002543 ; + setAttr ".uvtk[2544]" -type "float2" -0.0011794679 -0.0056432127 ; + setAttr ".uvtk[2545]" -type "float2" -0.0011261813 -0.0055954098 ; + setAttr ".uvtk[2546]" -type "float2" -0.00087539596 -0.0054202317 ; + setAttr ".uvtk[2547]" -type "float2" -0.00081591052 -0.0054154634 ; + setAttr ".uvtk[2548]" -type "float2" -0.00092707318 -0.0054359674 ; + setAttr ".uvtk[2549]" -type "float2" -0.00098176044 -0.005459988 ; + setAttr ".uvtk[2550]" -type "float2" -0.0010290854 -0.0055074333 ; + setAttr ".uvtk[2551]" -type "float2" -0.0010760538 -0.0055505871 ; + setAttr ".uvtk[2552]" -type "float2" -0.00083212298 -0.0055845021 ; + setAttr ".uvtk[2553]" -type "float2" -0.00089172763 -0.0057288646 ; + setAttr ".uvtk[2554]" -type "float2" -0.00090048951 -0.005631709 ; + setAttr ".uvtk[2555]" -type "float2" -0.00096522016 -0.0057069301 ; + setAttr ".uvtk[2556]" -type "float2" -0.00097121042 -0.0056377887 ; + setAttr ".uvtk[2557]" -type "float2" -0.001188647 -0.0057150959 ; + setAttr ".uvtk[2558]" -type "float2" -0.0011334233 -0.005682969 ; + setAttr ".uvtk[2559]" -type "float2" -0.001075875 -0.0056379079 ; + setAttr ".uvtk[2560]" -type "float2" -0.0010237806 -0.00567981 ; + setAttr ".uvtk[2561]" -type "float2" -0.0010272376 -0.0055930852 ; + setAttr ".uvtk[2562]" -type "float2" -0.00088448566 -0.0055110692 ; + setAttr ".uvtk[2563]" -type "float2" -0.00092111272 -0.0055604219 ; + setAttr ".uvtk[2564]" -type "float2" -0.00098867458 -0.0055488585 ; + setAttr ".uvtk[2565]" -type "float2" -0.00094978255 -0.0055129766 ; + setAttr ".uvtk[2566]" -type "float2" -0.00091780466 -0.00548532 ; + setAttr ".uvtk[2567]" -type "float2" -0.00095818681 -0.0055817007 ; + setAttr ".uvtk[2568]" -type "float2" 0.00011248398 -0.0031919121 ; + setAttr ".uvtk[2569]" -type "float2" 0.00012602168 -0.0031130551 ; + setAttr ".uvtk[2570]" -type "float2" 0.00013372558 -0.0030382513 ; + setAttr ".uvtk[2571]" -type "float2" 0.00013793516 -0.0029698252 ; + setAttr ".uvtk[2572]" -type "float2" 0.00037905085 -0.0033217906 ; + setAttr ".uvtk[2573]" -type "float2" 0.00028471905 -0.0032924055 ; + setAttr ".uvtk[2574]" -type "float2" 0.0001474421 -0.003322029 ; + setAttr ".uvtk[2575]" -type "float2" 0.00016167271 -0.0032529472 ; + setAttr ".uvtk[2576]" -type "float2" 0.00017087418 -0.0031827926 ; + setAttr ".uvtk[2577]" -type "float2" 0.0001763578 -0.0031124591 ; + setAttr ".uvtk[2578]" -type "float2" 0.00017904001 -0.0030405759 ; + setAttr ".uvtk[2579]" -type "float2" 0.0001820873 -0.0029740571 ; + setAttr ".uvtk[2580]" -type "float2" 0.00014204043 -0.002910757 ; + setAttr ".uvtk[2581]" -type "float2" 0.00018495577 -0.0029250025 ; + setAttr ".uvtk[2582]" -type "float2" 0.00018795091 -0.0028727292 ; + setAttr ".uvtk[2583]" -type "float2" 0.00014667469 -0.0028573512 ; + setAttr ".uvtk[2584]" -type "float2" 0.0003508653 -0.0026633381 ; + setAttr ".uvtk[2585]" -type "float2" 0.00029146555 -0.0026770472 ; + setAttr ".uvtk[2586]" -type "float2" 0.00023784372 -0.0026955842 ; + setAttr ".uvtk[2587]" -type "float2" 0.00019715237 -0.0027286052 ; + setAttr ".uvtk[2588]" -type "float2" 0.00017016637 -0.0027672886 ; + setAttr ".uvtk[2589]" -type "float2" 0.0001538496 -0.0028107404 ; + setAttr ".uvtk[2590]" -type "float2" 0.00019577402 -0.0028349399 ; + setAttr ".uvtk[2591]" -type "float2" 0.00021516788 -0.0028012036 ; + setAttr ".uvtk[2592]" -type "float2" 0.00024134549 -0.0027692555 ; + setAttr ".uvtk[2593]" -type "float2" 0.00027307752 -0.0027398705 ; + setAttr ".uvtk[2594]" -type "float2" 0.00031312066 -0.002723658 ; + setAttr ".uvtk[2595]" -type "float2" 0.00036826986 -0.0027069091 ; + setAttr ".uvtk[2596]" -type "float2" 0.00076859794 -0.0029819845 ; + setAttr ".uvtk[2597]" -type "float2" 0.00078377477 -0.0030690073 ; + setAttr ".uvtk[2598]" -type "float2" 0.00076571084 -0.003132367 ; + setAttr ".uvtk[2599]" -type "float2" 0.00079340837 -0.0029064058 ; + setAttr ".uvtk[2600]" -type "float2" 0.00045726052 -0.0032736897 ; + setAttr ".uvtk[2601]" -type "float2" 0.00056400499 -0.0031956076 ; + setAttr ".uvtk[2602]" -type "float2" 0.00068623177 -0.003160262 ; + setAttr ".uvtk[2603]" -type "float2" 0.00060792617 -0.0028759479 ; + setAttr ".uvtk[2604]" -type "float2" 0.00069942675 -0.0028995513 ; + setAttr ".uvtk[2605]" -type "float2" 0.00067476532 -0.0029521226 ; + setAttr ".uvtk[2606]" -type "float2" 0.00057205907 -0.0029351949 ; + setAttr ".uvtk[2607]" -type "float2" 0.0006770005 -0.0030266284 ; + setAttr ".uvtk[2608]" -type "float2" 0.00068526319 -0.003088796 ; + setAttr ".uvtk[2609]" -type "float2" 0.00059277168 -0.0031053065 ; + setAttr ".uvtk[2610]" -type "float2" 0.00060028187 -0.0030461191 ; + setAttr ".uvtk[2611]" -type "float2" 0.00064957491 -0.0029914021 ; + setAttr ".uvtk[2612]" -type "float2" 0.00058805547 -0.0029987334 ; + setAttr ".uvtk[2613]" -type "float2" 0.00051806099 -0.0027656197 ; + setAttr ".uvtk[2614]" -type "float2" 0.00055564544 -0.0028099059 ; + setAttr ".uvtk[2615]" -type "float2" 0.00053642667 -0.002839589 ; + setAttr ".uvtk[2616]" -type "float2" 0.00047081313 -0.0031572222 ; + setAttr ".uvtk[2617]" -type "float2" 0.00039033103 -0.0032224297 ; + setAttr ".uvtk[2618]" -type "float2" 0.00052047125 -0.0030952333 ; + setAttr ".uvtk[2619]" -type "float2" 0.00039435807 -0.002760136 ; + setAttr ".uvtk[2620]" -type "float2" 0.00044488884 -0.0027356981 ; + setAttr ".uvtk[2621]" -type "float2" 0.00024075317 -0.0031591295 ; + setAttr ".uvtk[2622]" -type "float2" 0.00023067999 -0.0030989884 ; + setAttr ".uvtk[2623]" -type "float2" 0.00022634375 -0.0030364036 ; + setAttr ".uvtk[2624]" -type "float2" 0.00023039686 -0.0029533147 ; + setAttr ".uvtk[2625]" -type "float2" 0.00021913904 -0.0028755306 ; + setAttr ".uvtk[2626]" -type "float2" 0.00025274116 -0.0028494834 ; + setAttr ".uvtk[2627]" -type "float2" 0.00028791907 -0.0028174161 ; + setAttr ".uvtk[2628]" -type "float2" 0.00032870728 -0.0027787923 ; + setAttr ".uvtk[2629]" -type "float2" 0.00025536376 -0.0032209395 ; + setAttr ".uvtk[2630]" -type "float2" 0.00034123915 -0.0031723618 ; + setAttr ".uvtk[2631]" -type "float2" 0.00030761468 -0.0031214594 ; + setAttr ".uvtk[2632]" -type "float2" 0.00041210908 -0.0031168698 ; + setAttr ".uvtk[2633]" -type "float2" 0.00046945713 -0.003063166 ; + setAttr ".uvtk[2634]" -type "float2" 0.00042286771 -0.0030181645 ; + setAttr ".uvtk[2635]" -type "float2" 0.00036686915 -0.0030721663 ; + setAttr ".uvtk[2636]" -type "float2" 0.00054766587 -0.003054583 ; + setAttr ".uvtk[2637]" -type "float2" 0.00052347383 -0.0030223965 ; + setAttr ".uvtk[2638]" -type "float2" 0.00048743538 -0.002972567 ; + setAttr ".uvtk[2639]" -type "float2" 0.00028161216 -0.0030738353 ; + setAttr ".uvtk[2640]" -type "float2" 0.00032475102 -0.0030284761 ; + setAttr ".uvtk[2641]" -type "float2" 0.00036479789 -0.0029615401 ; + setAttr ".uvtk[2642]" -type "float2" 0.00043438352 -0.0029152273 ; + setAttr ".uvtk[2643]" -type "float2" 0.0004954224 -0.0028770803 ; + setAttr ".uvtk[2644]" -type "float2" 0.00048416457 -0.0027907132 ; + setAttr ".uvtk[2645]" -type "float2" 0.00043901405 -0.0028196215 ; + setAttr ".uvtk[2646]" -type "float2" 0.00038337964 -0.0028501987 ; + setAttr ".uvtk[2647]" -type "float2" 0.00033048051 -0.0028836369 ; + setAttr ".uvtk[2648]" -type "float2" 0.0002828713 -0.0029111146 ; + setAttr ".uvtk[2649]" -type "float2" 0.00030888128 -0.0029569506 ; + setAttr ".uvtk[2650]" -type "float2" 0.0002834152 -0.0029963492 ; + setAttr ".uvtk[2651]" -type "float2" 0.00026342529 -0.0030370592 ; + setAttr ".uvtk[3556]" -type "float2" -0.00046753627 -0.0034834384 ; + setAttr ".uvtk[3557]" -type "float2" -0.00049453718 -0.003501141 ; + setAttr ".uvtk[3558]" -type "float2" -0.00051130098 -0.0035307049 ; + setAttr ".uvtk[3559]" -type "float2" -0.00051122648 -0.0035680174 ; + setAttr ".uvtk[3560]" -type "float2" -0.00049447757 -0.0036135553 ; + setAttr ".uvtk[3561]" -type "float2" -0.00046606106 -0.0036518215 ; + setAttr ".uvtk[3562]" -type "float2" -0.00044151885 -0.0036829351 ; + setAttr ".uvtk[3563]" -type "float2" -0.00042918068 -0.0037169694 ; + setAttr ".uvtk[3564]" -type "float2" -0.00043852371 -0.0037579178 ; + setAttr ".uvtk[3565]" -type "float2" -0.00046612066 -0.0038011312 ; + setAttr ".uvtk[3566]" -type "float2" -0.00051501137 -0.0038508414 ; + setAttr ".uvtk[3567]" -type "float2" -0.00056534749 -0.0038857101 ; + setAttr ".uvtk[3568]" -type "float2" -0.00062101823 -0.0039088964 ; + setAttr ".uvtk[3569]" -type "float2" -0.0006821577 -0.0039367317 ; + setAttr ".uvtk[3570]" -type "float2" -0.00073326868 -0.0039834022 ; + setAttr ".uvtk[3571]" -type "float2" -0.00075767678 -0.0040439009 ; + setAttr ".uvtk[3572]" -type "float2" -0.00077278656 -0.0041023134 ; + setAttr ".uvtk[3573]" -type "float2" -0.00080115837 -0.0041508316 ; + setAttr ".uvtk[3574]" -type "float2" -0.00085372967 -0.0042032837 ; + setAttr ".uvtk[3575]" -type "float2" -0.00092328829 -0.0042619347 ; + setAttr ".uvtk[3576]" -type "float2" -0.00095851463 -0.0043313741 ; + setAttr ".uvtk[3577]" -type "float2" -0.0009593491 -0.0044229864 ; + setAttr ".uvtk[3578]" -type "float2" -0.00098328036 -0.0045063137 ; + setAttr ".uvtk[3579]" -type "float2" -0.0010364763 -0.0045628189 ; + setAttr ".uvtk[3580]" -type "float2" -0.0011090152 -0.0045840978 ; + setAttr ".uvtk[3581]" -type "float2" -0.0011841469 -0.0045882105 ; + setAttr ".uvtk[3582]" -type "float2" -0.0012650602 -0.00459733 ; + setAttr ".uvtk[3583]" -type "float2" -0.0013307743 -0.0046195625 ; + setAttr ".uvtk[3584]" -type "float2" -0.0013779216 -0.0046552061 ; + setAttr ".uvtk[3585]" -type "float2" -0.0014041178 -0.0046983003 ; + setAttr ".uvtk[3586]" -type "float2" -0.0014093332 -0.0047431826 ; + setAttr ".uvtk[3587]" -type "float2" -0.0014034025 -0.0047880053 ; + setAttr ".uvtk[3588]" -type "float2" -0.0013793819 -0.0048284768 ; + setAttr ".uvtk[3589]" -type "float2" -0.0013308041 -0.0048644184 ; + setAttr ".uvtk[3590]" -type "float2" -0.0012716465 -0.0048825978 ; + setAttr ".uvtk[3591]" -type "float2" -0.0012103729 -0.0048817634 ; + setAttr ".uvtk[3592]" -type "float2" -0.0011558048 -0.0048734187 ; + setAttr ".uvtk[3593]" -type "float2" -0.001098495 -0.0048668622 ; + setAttr ".uvtk[3594]" -type "float2" -0.0010328703 -0.0048742532 ; + setAttr ".uvtk[3595]" -type "float2" -0.00097979349 -0.0049015521 ; + setAttr ".uvtk[3596]" -type "float2" -0.00093163294 -0.0049481629 ; + setAttr ".uvtk[3597]" -type "float2" -0.00089616817 -0.0050136088 ; + setAttr ".uvtk[3598]" -type "float2" -0.00088537973 -0.005082631 ; + setAttr ".uvtk[3599]" -type "float2" -0.00089280051 -0.0051462888 ; + setAttr ".uvtk[3600]" -type "float2" -0.00091899675 -0.0052122711 ; + setAttr ".uvtk[3601]" -type "float2" -0.00096051139 -0.0052650808 ; + setAttr ".uvtk[3602]" -type "float2" -0.0010088508 -0.0053025126 ; + setAttr ".uvtk[3603]" -type "float2" -0.0010530762 -0.0053321957 ; + setAttr ".uvtk[3604]" -type "float2" -0.0010992698 -0.0053611635 ; + setAttr ".uvtk[3605]" -type "float2" -0.0011556558 -0.0053951382 ; + setAttr ".uvtk[3606]" -type "float2" -0.0012087934 -0.0054296493 ; + setAttr ".uvtk[3607]" -type "float2" -0.0012644343 -0.0054728626 ; + setAttr ".uvtk[3608]" -type "float2" -0.0013152473 -0.0055197715 ; + setAttr ".uvtk[3609]" -type "float2" -0.0013678186 -0.0055797338 ; + setAttr ".uvtk[3610]" -type "float2" -0.0014190786 -0.0056581735 ; + setAttr ".uvtk[3611]" -type "float2" -0.0014544241 -0.0057405471 ; + setAttr ".uvtk[3612]" -type "float2" -0.0014858358 -0.0058278083 ; + setAttr ".uvtk[3613]" -type "float2" -0.0015381388 -0.005911672 ; + setAttr ".uvtk[3614]" -type "float2" -0.0016254 -0.005965793 ; + setAttr ".uvtk[3615]" -type "float2" -0.0016986243 -0.0060189008 ; + setAttr ".uvtk[3616]" -type "float2" -0.0017394237 -0.0060907244 ; + setAttr ".uvtk[3717]" -type "float2" 0.00043729017 -0.0024438142 ; + setAttr ".uvtk[3718]" -type "float2" 0.00045589171 -0.0023408174 ; + setAttr ".uvtk[3719]" -type "float2" 0.00043640262 -0.0025406121 ; + setAttr ".uvtk[3720]" -type "float2" 0.00039917859 -0.0025948524 ; + setAttr ".uvtk[3721]" -type "float2" 0.00033487263 -0.002613747 ; + setAttr ".uvtk[3722]" -type "float2" 0.0002735767 -0.0026273369 ; + setAttr ".uvtk[3723]" -type "float2" 0.00021146121 -0.0026505827 ; + setAttr ".uvtk[3724]" -type "float2" 0.00015824544 -0.002688372 ; + setAttr ".uvtk[3725]" -type "float2" 0.00012211758 -0.0027352213 ; + setAttr ".uvtk[3726]" -type "float2" 0.000100645 -0.0027862429 ; + setAttr ".uvtk[3727]" -type "float2" 8.8105677e-05 -0.0028403639 ; + setAttr ".uvtk[3728]" -type "float2" 8.1586419e-05 -0.0028968095 ; + setAttr ".uvtk[3729]" -type "float2" 7.8159152e-05 -0.0029582619 ; + setAttr ".uvtk[3730]" -type "float2" 7.2124181e-05 -0.0030246018 ; + setAttr ".uvtk[3731]" -type "float2" 6.3615618e-05 -0.0031014322 ; + setAttr ".uvtk[3732]" -type "float2" 4.9422262e-05 -0.003183627 ; + setAttr ".uvtk[3733]" -type "float2" 2.7681468e-05 -0.003265345 ; + setAttr ".uvtk[3734]" -type "float2" -6.8668742e-06 -0.0033517121 ; + setAttr ".uvtk[3735]" -type "float2" -6.8945112e-05 -0.0034511923 ; + setAttr ".uvtk[3736]" -type "float2" -0.00015029055 -0.0035678386 ; + setAttr ".uvtk[3737]" -type "float2" -0.00020894152 -0.0036315559 ; + setAttr ".uvtk[3738]" -type "float2" -0.00025468809 -0.003635311 ; + setAttr ".uvtk[3739]" -type "float2" -0.00029389304 -0.003619337 ; + setAttr ".uvtk[3740]" -type "float2" -0.00032134098 -0.0035932302 ; + setAttr ".uvtk[3741]" -type "float2" -0.0003408615 -0.0035596131 ; + setAttr ".uvtk[3742]" -type "float2" -0.00036363048 -0.0035186051 ; + setAttr ".uvtk[3743]" -type "float2" -0.0003960554 -0.0034867167 ; + setAttr ".uvtk[3744]" -type "float2" -0.00043432158 -0.0034767627 ; + setAttr ".uvtk[4731]" -type "float2" -0.15930876 0.5156101 ; + setAttr ".uvtk[4732]" -type "float2" -0.16222677 0.51565874 ; + setAttr ".uvtk[4733]" -type "float2" -0.15498421 0.51624179 ; + setAttr ".uvtk[4734]" -type "float2" -0.14997587 0.51702988 ; + setAttr ".uvtk[4735]" -type "float2" -0.14529881 0.51808405 ; + setAttr ".uvtk[4736]" -type "float2" -0.1420016 0.51974201 ; + setAttr ".uvtk[4737]" -type "float2" -0.13971522 0.52968162 ; + setAttr ".uvtk[4738]" -type "float2" -0.13952014 0.52551764 ; + setAttr ".uvtk[4739]" -type "float2" -0.14019343 0.52220225 ; + setAttr ".uvtk[4740]" -type "float2" -0.16628106 0.52088654 ; + setAttr ".uvtk[4741]" -type "float2" -0.16682725 0.52433085 ; + setAttr ".uvtk[4742]" -type "float2" -0.16550681 0.51834083 ; + setAttr ".uvtk[4743]" -type "float2" -0.16421892 0.51659429 ; + setAttr ".uvtk[4744]" -type "float2" -0.16709392 0.52829134 ; + setAttr ".uvtk[4745]" -type "float2" -0.14031133 0.53389072 ; + setAttr ".uvtk[4746]" -type "float2" -0.14144376 0.53683937 ; + setAttr ".uvtk[4747]" -type "float2" -0.16649128 0.53181052 ; + setAttr ".uvtk[4748]" -type "float2" -0.15779257 0.53729177 ; + setAttr ".uvtk[4749]" -type "float2" -0.15374801 0.53855848 ; + setAttr ".uvtk[4750]" -type "float2" -0.14966747 0.53954661 ; + setAttr ".uvtk[4751]" -type "float2" -0.1614317 0.53585827 ; + setAttr ".uvtk[4752]" -type "float2" -0.14628544 0.53976721 ; + setAttr ".uvtk[4753]" -type "float2" -0.16451113 0.53428346 ; + setAttr ".uvtk[4754]" -type "float2" -0.1435115 0.53884858 ; + setAttr ".uvtk[4755]" -type "float2" -0.20340328 0.5236764 ; + setAttr ".uvtk[4756]" -type "float2" -0.20389207 0.51996762 ; + setAttr ".uvtk[4757]" -type "float2" -0.20472293 0.51738918 ; + setAttr ".uvtk[4758]" -type "float2" -0.21410999 0.51468086 ; + setAttr ".uvtk[4759]" -type "float2" -0.21902591 0.51537085 ; + setAttr ".uvtk[4760]" -type "float2" -0.21041453 0.51447892 ; + setAttr ".uvtk[4761]" -type "float2" -0.22395091 0.51664674 ; + setAttr ".uvtk[4762]" -type "float2" -0.22778396 0.5184927 ; + setAttr ".uvtk[4763]" -type "float2" -0.20789097 0.51476848 ; + setAttr ".uvtk[4764]" -type "float2" -0.20603381 0.51573181 ; + setAttr ".uvtk[4765]" -type "float2" -0.23066111 0.52465183 ; + setAttr ".uvtk[4766]" -type "float2" -0.23078816 0.52835858 ; + setAttr ".uvtk[4767]" -type "float2" -0.22982939 0.52115315 ; + setAttr ".uvtk[4768]" -type "float2" -0.21952112 0.53817332 ; + setAttr ".uvtk[4769]" -type "float2" -0.21526147 0.53728068 ; + setAttr ".uvtk[4770]" -type "float2" -0.2112318 0.53617191 ; + setAttr ".uvtk[4771]" -type "float2" -0.20753701 0.53440911 ; + setAttr ".uvtk[4772]" -type "float2" -0.22333504 0.53880966 ; + setAttr ".uvtk[4773]" -type "float2" -0.20474304 0.53162622 ; + setAttr ".uvtk[4774]" -type "float2" -0.22616424 0.53843665 ; + setAttr ".uvtk[4775]" -type "float2" -0.20351711 0.52775002 ; + setAttr ".uvtk[4776]" -type "float2" -0.22980365 0.53471178 ; + setAttr ".uvtk[4777]" -type "float2" -0.22836553 0.53699321 ; + setAttr ".uvtk[4778]" -type "float2" -0.2305131 0.53180522 ; + setAttr ".uvtk[4779]" -type "float2" -0.23760283 -0.22147055 ; + setAttr ".uvtk[4780]" -type "float2" -0.2413289 -0.22147949 ; + setAttr ".uvtk[4781]" -type "float2" -0.23176593 -0.22068079 ; + setAttr ".uvtk[4782]" -type "float2" -0.22543722 -0.21964867 ; + setAttr ".uvtk[4783]" -type "float2" -0.21945733 -0.21825857 ; + setAttr ".uvtk[4784]" -type "float2" -0.21511614 -0.21633036 ; + setAttr ".uvtk[4785]" -type "float2" -0.21255457 -0.20370372 ; + setAttr ".uvtk[4786]" -type "float2" -0.21227735 -0.20915528 ; + setAttr ".uvtk[4787]" -type "float2" -0.21296495 -0.21331497 ; + setAttr ".uvtk[4788]" -type "float2" -0.24578933 -0.21510144 ; + setAttr ".uvtk[4789]" -type "float2" -0.24643637 -0.21067078 ; + setAttr ".uvtk[4790]" -type "float2" -0.24489796 -0.21822567 ; + setAttr ".uvtk[4791]" -type "float2" -0.24349141 -0.22037633 ; + setAttr ".uvtk[4792]" -type "float2" -0.24750939 -0.20553024 ; + setAttr ".uvtk[4793]" -type "float2" -0.2132864 -0.19813557 ; + setAttr ".uvtk[4794]" -type "float2" -0.21442568 -0.19433434 ; + setAttr ".uvtk[4795]" -type "float2" -0.24708773 -0.20100184 ; + setAttr ".uvtk[4796]" -type "float2" -0.23567832 -0.19406147 ; + setAttr ".uvtk[4797]" -type "float2" -0.23033637 -0.19262584 ; + setAttr ".uvtk[4798]" -type "float2" -0.22480571 -0.19116648 ; + setAttr ".uvtk[4799]" -type "float2" -0.24059337 -0.1958371 ; + setAttr ".uvtk[4800]" -type "float2" -0.22052985 -0.1906807 ; + setAttr ".uvtk[4801]" -type "float2" -0.24475175 -0.19783099 ; + setAttr ".uvtk[4802]" -type "float2" -0.21713293 -0.19181998 ; + setAttr ".uvtk[4803]" -type "float2" -0.30876699 -0.21189518 ; + setAttr ".uvtk[4804]" -type "float2" -0.3093591 -0.21688254 ; + setAttr ".uvtk[4805]" -type "float2" -0.31028697 -0.21999796 ; + setAttr ".uvtk[4806]" -type "float2" -0.32181448 -0.22299881 ; + setAttr ".uvtk[4807]" -type "float2" -0.32801649 -0.22219367 ; + setAttr ".uvtk[4808]" -type "float2" -0.3169876 -0.22329552 ; + setAttr ".uvtk[4809]" -type "float2" -0.334297 -0.22062297 ; + setAttr ".uvtk[4810]" -type "float2" -0.33931786 -0.21848746 ; + setAttr ".uvtk[4811]" -type "float2" -0.31379151 -0.22310086 ; + setAttr ".uvtk[4812]" -type "float2" -0.31164142 -0.22196813 ; + setAttr ".uvtk[4813]" -type "float2" -0.34267524 -0.21080251 ; + setAttr ".uvtk[4814]" -type "float2" -0.34289142 -0.20615275 ; + setAttr ".uvtk[4815]" -type "float2" -0.3417713 -0.21535702 ; + setAttr ".uvtk[4816]" -type "float2" -0.3290492 -0.19393785 ; + setAttr ".uvtk[4817]" -type "float2" -0.3234807 -0.19490881 ; + setAttr ".uvtk[4818]" -type "float2" -0.31822243 -0.1960922 ; + setAttr ".uvtk[4819]" -type "float2" -0.31308213 -0.19796939 ; + setAttr ".uvtk[4820]" -type "float2" -0.33439675 -0.19278546 ; + setAttr ".uvtk[4821]" -type "float2" -0.3093079 -0.20142002 ; + setAttr ".uvtk[4822]" -type "float2" -0.33779871 -0.19323917 ; + setAttr ".uvtk[4823]" -type "float2" -0.30809024 -0.20670314 ; + setAttr ".uvtk[4824]" -type "float2" -0.34208497 -0.19779833 ; + setAttr ".uvtk[4825]" -type "float2" -0.34075207 -0.19476278 ; + setAttr ".uvtk[4826]" -type "float2" -0.34261507 -0.20167728 ; +createNode groupId -n "groupId14"; + rename -uid "06433281-4E6C-A0CA-39C8-E08F465BB701"; + setAttr ".ihi" 0; +createNode groupId -n "groupId15"; + rename -uid "FC62A6C8-4E89-070B-A464-258CB800BD9B"; + setAttr ".ihi" 0; +createNode nodeGraphEditorInfo -n "hyperShadePrimaryNodeEditorSavedTabsInfo"; + rename -uid "A78A90ED-4CEE-BFA0-F4EC-D6917AE9517D"; + setAttr ".tgi[0].tn" -type "string" "Untitled_1"; + setAttr ".tgi[0].vl" -type "double2" 206.06863942795292 -687.98491604228434 ; + setAttr ".tgi[0].vh" -type "double2" 942.45083107177743 52.79358719344367 ; + setAttr -s 9 ".tgi[0].ni"; + setAttr ".tgi[0].ni[0].x" 218.57142639160156; + setAttr ".tgi[0].ni[0].y" 42.857143402099609; + setAttr ".tgi[0].ni[0].nvs" 1923; + setAttr ".tgi[0].ni[1].x" 714.28570556640625; + setAttr ".tgi[0].ni[1].y" 98.571426391601562; + setAttr ".tgi[0].ni[1].nvs" 2387; + setAttr ".tgi[0].ni[2].x" -587.14288330078125; + setAttr ".tgi[0].ni[2].y" 21.428571701049805; + setAttr ".tgi[0].ni[2].nvs" 1923; + setAttr ".tgi[0].ni[3].x" -280; + setAttr ".tgi[0].ni[3].y" -177.14285278320312; + setAttr ".tgi[0].ni[3].nvs" 1923; + setAttr ".tgi[0].ni[4].x" -271.24847412109375; + setAttr ".tgi[0].ni[4].y" 42.857143402099609; + setAttr ".tgi[0].ni[4].nvs" 1923; + setAttr ".tgi[0].ni[5].x" -280; + setAttr ".tgi[0].ni[5].y" -352.85714721679688; + setAttr ".tgi[0].ni[5].nvs" 1923; + setAttr ".tgi[0].ni[6].x" 195.25546264648438; + setAttr ".tgi[0].ni[6].y" -147.97894287109375; + setAttr ".tgi[0].ni[6].nvs" 1923; + setAttr ".tgi[0].ni[7].x" 225.1658935546875; + setAttr ".tgi[0].ni[7].y" -384.18429565429688; + setAttr ".tgi[0].ni[7].nvs" 1923; + setAttr ".tgi[0].ni[8].x" 1062.857177734375; + setAttr ".tgi[0].ni[8].y" 98.571426391601562; + setAttr ".tgi[0].ni[8].nvs" 1923; +select -ne :time1; + setAttr -av -k on ".cch"; + setAttr -av -k on ".fzn"; + setAttr -av -cb on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -k on ".o" 0.5; + setAttr -av -k on ".unw" 0.5; + setAttr -av -k on ".etw"; + setAttr -av -k on ".tps"; + setAttr -av -k on ".tms"; +select -ne :hardwareRenderingGlobals; + setAttr -av -k on ".cch"; + setAttr -k on ".fzn"; + setAttr -av -k on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -k on ".rm"; + setAttr -k on ".lm"; + setAttr ".otfna" -type "stringArray" 22 "NURBS Curves" "NURBS Surfaces" "Polygons" "Subdiv Surface" "Particles" "Particle Instance" "Fluids" "Strokes" "Image Planes" "UI" "Lights" "Cameras" "Locators" "Joints" "IK Handles" "Deformers" "Motion Trails" "Components" "Hair Systems" "Follicles" "Misc. UI" "Ornaments" ; + setAttr ".otfva" -type "Int32Array" 22 0 1 1 1 1 1 + 1 1 1 0 0 0 0 0 0 0 0 0 + 0 0 0 0 ; + setAttr -k on ".hom"; + setAttr -k on ".hodm"; + setAttr -k on ".xry"; + setAttr -k on ".jxr"; + setAttr -k on ".sslt"; + setAttr -k on ".cbr"; + setAttr -k on ".bbr"; + setAttr -av -k on ".mhl"; + setAttr -k on ".cons"; + setAttr -k on ".vac"; + setAttr -av -k on ".hwi"; + setAttr -k on ".csvd"; + setAttr -av -k on ".ta"; + setAttr -av -k on ".tq"; + setAttr -k on ".ts"; + setAttr -av -k on ".etmr"; + setAttr -av -k on ".tmr"; + setAttr -av -k on ".aoon"; + setAttr -av -k on ".aoam"; + setAttr -av -k on ".aora"; + setAttr -av -k on ".aofr"; + setAttr -av -k on ".aosm"; + setAttr -av -k on ".hff"; + setAttr -av -k on ".hfd"; + setAttr -av -k on ".hfs"; + setAttr -av -k on ".hfe"; + setAttr -av ".hfc"; + setAttr -av -k on ".hfcr"; + setAttr -av -k on ".hfcg"; + setAttr -av -k on ".hfcb"; + setAttr -av -k on ".hfa"; + setAttr -av -k on ".mbe"; + setAttr -k on ".mbt"; + setAttr -av -k on ".mbsof"; + setAttr -k on ".mbsc"; + setAttr -k on ".mbc"; + setAttr -k on ".mbfa"; + setAttr -k on ".mbftb"; + setAttr -k on ".mbftg"; + setAttr -k on ".mbftr"; + setAttr -k on ".mbfta"; + setAttr -k on ".mbfe"; + setAttr -k on ".mbme"; + setAttr -k on ".mbcsx"; + setAttr -k on ".mbcsy"; + setAttr -k on ".mbasx"; + setAttr -k on ".mbasy"; + setAttr -av -k on ".blen"; + setAttr -k on ".blth"; + setAttr -k on ".blfr"; + setAttr -k on ".blfa"; + setAttr -av -k on ".blat"; + setAttr -av -k on ".msaa" yes; + setAttr -av -k on ".aasc"; + setAttr -k on ".aasq"; + setAttr -k on ".laa"; + setAttr -k on ".fprt" yes; + setAttr -k on ".rtfm"; +select -ne :renderPartition; + setAttr -av -k on ".cch"; + setAttr -cb on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -s 3 ".st"; + setAttr -cb on ".an"; + setAttr -cb on ".pt"; +select -ne :renderGlobalsList1; + setAttr -k on ".cch"; + setAttr -cb on ".ihi"; + setAttr -k on ".nds"; + setAttr -cb on ".bnm"; +select -ne :defaultShaderList1; + setAttr -k on ".cch"; + setAttr -cb on ".ihi"; + setAttr -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -s 6 ".s"; +select -ne :postProcessList1; + setAttr -k on ".cch"; + setAttr -cb on ".ihi"; + setAttr -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -s 2 ".p"; +select -ne :defaultRenderUtilityList1; + setAttr -av -k on ".cch"; + setAttr -cb on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -s 4 ".u"; +select -ne :defaultRenderingList1; + setAttr -av -k on ".cch"; + setAttr -k on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; +select -ne :defaultTextureList1; + setAttr -av -k on ".cch"; + setAttr -k on ".fzn"; + setAttr -cb on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -s 3 ".tx"; +select -ne :standardSurface1; + setAttr ".op" -type "float3" 0.40764332 0.40764332 0.40764332 ; +select -ne :initialShadingGroup; + setAttr -av -k on ".cch"; + setAttr -k on ".fzn"; + setAttr -av -cb on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -k on ".bbx"; + setAttr -k on ".vwm"; + setAttr -k on ".tpv"; + setAttr -k on ".uit"; + setAttr -k on ".mwc"; + setAttr -av -cb on ".an"; + setAttr -cb on ".il"; + setAttr -cb on ".vo"; + setAttr -cb on ".eo"; + setAttr -cb on ".fo"; + setAttr -cb on ".epo"; + setAttr -k on ".ro" yes; + setAttr -cb on ".ai_override"; + setAttr -k on ".ai_surface_shader"; + setAttr -cb on ".ai_surface_shaderr"; + setAttr -cb on ".ai_surface_shaderg"; + setAttr -cb on ".ai_surface_shaderb"; + setAttr -k on ".ai_volume_shader"; + setAttr -cb on ".ai_volume_shaderr"; + setAttr -cb on ".ai_volume_shaderg"; + setAttr -cb on ".ai_volume_shaderb"; +select -ne :initialParticleSE; + setAttr -av -k on ".cch"; + setAttr -k on ".fzn"; + setAttr -cb on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -k on ".bbx"; + setAttr -k on ".vwm"; + setAttr -k on ".tpv"; + setAttr -k on ".uit"; + setAttr -k on ".mwc"; + setAttr -av -cb on ".an"; + setAttr -cb on ".il"; + setAttr -cb on ".vo"; + setAttr -cb on ".eo"; + setAttr -cb on ".fo"; + setAttr -cb on ".epo"; + setAttr -k on ".ro" yes; + setAttr -cb on ".ai_override"; + setAttr -k on ".ai_surface_shader"; + setAttr -cb on ".ai_surface_shaderr"; + setAttr -cb on ".ai_surface_shaderg"; + setAttr -cb on ".ai_surface_shaderb"; + setAttr -k on ".ai_volume_shader"; + setAttr -cb on ".ai_volume_shaderr"; + setAttr -cb on ".ai_volume_shaderg"; + setAttr -cb on ".ai_volume_shaderb"; +lockNode -l 0 -lu 1; +select -ne :defaultRenderGlobals; + addAttr -ci true -h true -sn "dss" -ln "defaultSurfaceShader" -dt "string"; + setAttr -av -k on ".cch"; + setAttr -av -cb on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -av -k on ".macc"; + setAttr -av -k on ".macd"; + setAttr -av -k on ".macq"; + setAttr -av -k on ".mcfr"; + setAttr -cb on ".ifg"; + setAttr -av -k on ".clip"; + setAttr -av -k on ".edm"; + setAttr -av -k on ".edl"; + setAttr -av -cb on ".ren" -type "string" "arnold"; + setAttr -av -k on ".esr"; + setAttr -av -k on ".ors"; + setAttr -cb on ".sdf"; + setAttr -av -k on ".outf" 51; + setAttr -av -cb on ".imfkey" -type "string" "png"; + setAttr -av -k on ".gama"; + setAttr -av -k on ".exrc"; + setAttr -av -k on ".expt"; + setAttr -av -k on ".an"; + setAttr -cb on ".ar"; + setAttr -av -k on ".fs"; + setAttr -av -k on ".ef"; + setAttr -av -k on ".bfs"; + setAttr -av -cb on ".me"; + setAttr -cb on ".se"; + setAttr -av -k on ".be"; + setAttr -av -cb on ".ep"; + setAttr -av -k on ".fec"; + setAttr -av -k on ".ofc"; + setAttr -cb on ".ofe"; + setAttr -cb on ".efe"; + setAttr -cb on ".oft"; + setAttr -cb on ".umfn"; + setAttr -cb on ".ufe"; + setAttr -av -cb on ".pff"; + setAttr -av -cb on ".peie"; + setAttr -av -cb on ".ifp"; + setAttr -k on ".rv"; + setAttr -av -k on ".comp"; + setAttr -av -k on ".cth"; + setAttr -av -k on ".soll"; + setAttr -av -cb on ".sosl"; + setAttr -av -k on ".rd"; + setAttr -av -k on ".lp"; + setAttr -av -k on ".sp"; + setAttr -av -k on ".shs"; + setAttr -av -k on ".lpr"; + setAttr -cb on ".gv"; + setAttr -cb on ".sv"; + setAttr -av -k on ".mm"; + setAttr -av -k on ".npu"; + setAttr -av -k on ".itf"; + setAttr -av -k on ".shp"; + setAttr -cb on ".isp"; + setAttr -av -k on ".uf"; + setAttr -av -k on ".oi"; + setAttr -av -k on ".rut"; + setAttr -av -k on ".mot"; + setAttr -av -cb on ".mb"; + setAttr -av -k on ".mbf"; + setAttr -av -k on ".mbso"; + setAttr -av -k on ".mbsc"; + setAttr -av -k on ".afp"; + setAttr -av -k on ".pfb"; + setAttr -av -k on ".pram"; + setAttr -av -k on ".poam"; + setAttr -av -k on ".prlm"; + setAttr -av -k on ".polm"; + setAttr -av -cb on ".prm"; + setAttr -av -cb on ".pom"; + setAttr -cb on ".pfrm"; + setAttr -cb on ".pfom"; + setAttr -av -k on ".bll"; + setAttr -av -k on ".bls"; + setAttr -av -k on ".smv"; + setAttr -av -k on ".ubc"; + setAttr -av -k on ".mbc"; + setAttr -cb on ".mbt"; + setAttr -av -k on ".udbx"; + setAttr -av -k on ".smc"; + setAttr -av -k on ".kmv"; + setAttr -cb on ".isl"; + setAttr -cb on ".ism"; + setAttr -cb on ".imb"; + setAttr -av -k on ".rlen"; + setAttr -av -k on ".frts"; + setAttr -av -k on ".tlwd"; + setAttr -av -k on ".tlht"; + setAttr -av -k on ".jfc"; + setAttr -cb on ".rsb"; + setAttr -av -k on ".ope"; + setAttr -av -k on ".oppf"; + setAttr -av -k on ".rcp"; + setAttr -av -k on ".icp"; + setAttr -av -k on ".ocp"; + setAttr -cb on ".hbl"; + setAttr ".dss" -type "string" "lambert1"; +select -ne :defaultResolution; + setAttr -av -k on ".cch"; + setAttr -av -k on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -k on ".bnm"; + setAttr -av -k on ".w" 1024; + setAttr -av -k on ".h" 1024; + setAttr -av -k on ".pa" 1; + setAttr -av -k on ".al"; + setAttr -av -k on ".dar" 1; + setAttr -av -k on ".ldar"; + setAttr -av -k on ".dpi"; + setAttr -av -k on ".off"; + setAttr -av -k on ".fld"; + setAttr -av -k on ".zsl"; + setAttr -av -k on ".isu"; + setAttr -av -k on ".pdu"; +select -ne :defaultColorMgtGlobals; + setAttr ".cfe" yes; + setAttr ".cfp" -type "string" "/OCIO-configs/Maya2022-default/config.ocio"; + setAttr ".vtn" -type "string" "ACES 1.0 SDR-video (sRGB)"; + setAttr ".vn" -type "string" "ACES 1.0 SDR-video"; + setAttr ".dn" -type "string" "sRGB"; + setAttr ".wsn" -type "string" "ACEScg"; + setAttr ".otn" -type "string" "ACES 1.0 SDR-video (sRGB)"; + setAttr ".potn" -type "string" "ACES 1.0 SDR-video (sRGB)"; +select -ne :hardwareRenderGlobals; + setAttr -av -k on ".cch"; + setAttr -av -cb on ".ihi"; + setAttr -av -k on ".nds"; + setAttr -cb on ".bnm"; + setAttr -av -k off -cb on ".ctrs" 256; + setAttr -av -k off -cb on ".btrs" 512; + setAttr -av -k off -cb on ".fbfm"; + setAttr -av -k off -cb on ".ehql"; + setAttr -av -k off -cb on ".eams"; + setAttr -av -k off -cb on ".eeaa"; + setAttr -av -k off -cb on ".engm"; + setAttr -av -k off -cb on ".mes"; + setAttr -av -k off -cb on ".emb"; + setAttr -av -k off -cb on ".mbbf"; + setAttr -av -k off -cb on ".mbs"; + setAttr -av -k off -cb on ".trm"; + setAttr -av -k off -cb on ".tshc"; + setAttr -av -k off -cb on ".enpt"; + setAttr -av -k off -cb on ".clmt"; + setAttr -av -k off -cb on ".tcov"; + setAttr -av -k off -cb on ".lith"; + setAttr -av -k off -cb on ".sobc"; + setAttr -av -k off -cb on ".cuth"; + setAttr -av -k off -cb on ".hgcd"; + setAttr -av -k off -cb on ".hgci"; + setAttr -av -k off -cb on ".mgcs"; + setAttr -av -k off -cb on ".twa"; + setAttr -av -k off -cb on ".twz"; + setAttr -av -cb on ".hwcc"; + setAttr -av -cb on ".hwdp"; + setAttr -av -cb on ".hwql"; + setAttr -av -k on ".hwfr"; + setAttr -av -k on ".soll"; + setAttr -av -k on ".sosl"; + setAttr -av -k on ".bswa"; + setAttr -av -k on ".shml"; + setAttr -av -k on ".hwel"; +connectAttr "groupId14.id" "eyebrow_lShape.iog.og[0].gid"; +connectAttr "aiStandardSurface1SG.mwc" "eyebrow_lShape.iog.og[0].gco"; +connectAttr "groupId15.id" "eyebrow_rShape.iog.og[0].gid"; +connectAttr "aiStandardSurface1SG.mwc" "eyebrow_rShape.iog.og[0].gco"; +connectAttr "deleteComponent2.og" "eye_lShape.i"; +connectAttr "groupId9.id" "eye_lShape.iog.og[0].gid"; +connectAttr "aiStandardSurface1SG.mwc" "eye_lShape.iog.og[0].gco"; +connectAttr "groupId8.id" "eye_rShape.iog.og[0].gid"; +connectAttr "aiStandardSurface1SG.mwc" "eye_rShape.iog.og[0].gco"; +connectAttr "polyTweakUV2.out" "body_geoShape.i"; +connectAttr "polyTweakUV2.uvtk[0]" "body_geoShape.uvst[0].uvtw"; +relationship "link" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "link" ":lightLinker1" "aiStandardSurface1SG.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialShadingGroup.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" ":initialParticleSE.message" ":defaultLightSet.message"; +relationship "shadowLink" ":lightLinker1" "aiStandardSurface1SG.message" ":defaultLightSet.message"; +connectAttr "layerManager.dli[0]" "defaultLayer.id"; +connectAttr "renderLayerManager.rlmi[0]" "defaultRenderLayer.rlid"; +connectAttr ":defaultArnoldDisplayDriver.msg" ":defaultArnoldRenderOptions.drivers" + -na; +connectAttr ":defaultArnoldFilter.msg" ":defaultArnoldRenderOptions.filt"; +connectAttr ":defaultArnoldDriver.msg" ":defaultArnoldRenderOptions.drvr"; +connectAttr "file1.oc" "blue_bomb_mtl.base_color"; +connectAttr "file2.oa" "blue_bomb_mtl.specular_roughness"; +connectAttr "aiNormalMap1.out" "blue_bomb_mtl.n"; +connectAttr "blue_bomb_mtl.out" "aiStandardSurface1SG.ss"; +connectAttr "bomb_fusel_geoShape.iog" "aiStandardSurface1SG.dsm" -na; +connectAttr "tongue_geoShape.iog" "aiStandardSurface1SG.dsm" -na; +connectAttr "teeth_low_geoShape.iog" "aiStandardSurface1SG.dsm" -na; +connectAttr "teeth_sup_geoShape.iog" "aiStandardSurface1SG.dsm" -na; +connectAttr "fusel_geoShape.iog" "aiStandardSurface1SG.dsm" -na; +connectAttr "eye_rShape.iog.og[0]" "aiStandardSurface1SG.dsm" -na; +connectAttr "eye_lShape.iog.og[0]" "aiStandardSurface1SG.dsm" -na; +connectAttr "body_geoShape.iog" "aiStandardSurface1SG.dsm" -na; +connectAttr "eyebrow_lShape.iog.og[0]" "aiStandardSurface1SG.dsm" -na; +connectAttr "eyebrow_rShape.iog.og[0]" "aiStandardSurface1SG.dsm" -na; +connectAttr "groupId8.msg" "aiStandardSurface1SG.gn" -na; +connectAttr "groupId9.msg" "aiStandardSurface1SG.gn" -na; +connectAttr "groupId14.msg" "aiStandardSurface1SG.gn" -na; +connectAttr "groupId15.msg" "aiStandardSurface1SG.gn" -na; +connectAttr "aiStandardSurface1SG.msg" "materialInfo2.sg"; +connectAttr "blue_bomb_mtl.msg" "materialInfo2.m"; +connectAttr "file1.msg" "materialInfo2.t" -na; +connectAttr ":defaultColorMgtGlobals.cme" "file1.cme"; +connectAttr ":defaultColorMgtGlobals.cfe" "file1.cmcf"; +connectAttr ":defaultColorMgtGlobals.cfp" "file1.cmcp"; +connectAttr ":defaultColorMgtGlobals.wsn" "file1.ws"; +connectAttr "place2dTexture1.c" "file1.c"; +connectAttr "place2dTexture1.tf" "file1.tf"; +connectAttr "place2dTexture1.rf" "file1.rf"; +connectAttr "place2dTexture1.mu" "file1.mu"; +connectAttr "place2dTexture1.mv" "file1.mv"; +connectAttr "place2dTexture1.s" "file1.s"; +connectAttr "place2dTexture1.wu" "file1.wu"; +connectAttr "place2dTexture1.wv" "file1.wv"; +connectAttr "place2dTexture1.re" "file1.re"; +connectAttr "place2dTexture1.of" "file1.of"; +connectAttr "place2dTexture1.r" "file1.ro"; +connectAttr "place2dTexture1.n" "file1.n"; +connectAttr "place2dTexture1.vt1" "file1.vt1"; +connectAttr "place2dTexture1.vt2" "file1.vt2"; +connectAttr "place2dTexture1.vt3" "file1.vt3"; +connectAttr "place2dTexture1.vc1" "file1.vc1"; +connectAttr "place2dTexture1.o" "file1.uv"; +connectAttr "place2dTexture1.ofs" "file1.fs"; +connectAttr ":defaultColorMgtGlobals.cme" "file2.cme"; +connectAttr ":defaultColorMgtGlobals.cfe" "file2.cmcf"; +connectAttr ":defaultColorMgtGlobals.cfp" "file2.cmcp"; +connectAttr ":defaultColorMgtGlobals.wsn" "file2.ws"; +connectAttr "place2dTexture2.c" "file2.c"; +connectAttr "place2dTexture2.tf" "file2.tf"; +connectAttr "place2dTexture2.rf" "file2.rf"; +connectAttr "place2dTexture2.mu" "file2.mu"; +connectAttr "place2dTexture2.mv" "file2.mv"; +connectAttr "place2dTexture2.s" "file2.s"; +connectAttr "place2dTexture2.wu" "file2.wu"; +connectAttr "place2dTexture2.wv" "file2.wv"; +connectAttr "place2dTexture2.re" "file2.re"; +connectAttr "place2dTexture2.of" "file2.of"; +connectAttr "place2dTexture2.r" "file2.ro"; +connectAttr "place2dTexture2.n" "file2.n"; +connectAttr "place2dTexture2.vt1" "file2.vt1"; +connectAttr "place2dTexture2.vt2" "file2.vt2"; +connectAttr "place2dTexture2.vt3" "file2.vt3"; +connectAttr "place2dTexture2.vc1" "file2.vc1"; +connectAttr "place2dTexture2.o" "file2.uv"; +connectAttr "place2dTexture2.ofs" "file2.fs"; +connectAttr "file3.oc" "aiNormalMap1.input"; +connectAttr ":defaultColorMgtGlobals.cme" "file3.cme"; +connectAttr ":defaultColorMgtGlobals.cfe" "file3.cmcf"; +connectAttr ":defaultColorMgtGlobals.cfp" "file3.cmcp"; +connectAttr ":defaultColorMgtGlobals.wsn" "file3.ws"; +connectAttr "place2dTexture3.c" "file3.c"; +connectAttr "place2dTexture3.tf" "file3.tf"; +connectAttr "place2dTexture3.rf" "file3.rf"; +connectAttr "place2dTexture3.mu" "file3.mu"; +connectAttr "place2dTexture3.mv" "file3.mv"; +connectAttr "place2dTexture3.s" "file3.s"; +connectAttr "place2dTexture3.wu" "file3.wu"; +connectAttr "place2dTexture3.wv" "file3.wv"; +connectAttr "place2dTexture3.re" "file3.re"; +connectAttr "place2dTexture3.of" "file3.of"; +connectAttr "place2dTexture3.r" "file3.ro"; +connectAttr "place2dTexture3.n" "file3.n"; +connectAttr "place2dTexture3.vt1" "file3.vt1"; +connectAttr "place2dTexture3.vt2" "file3.vt2"; +connectAttr "place2dTexture3.vt3" "file3.vt3"; +connectAttr "place2dTexture3.vc1" "file3.vc1"; +connectAttr "place2dTexture3.o" "file3.uv"; +connectAttr "place2dTexture3.ofs" "file3.fs"; +connectAttr "groupParts2.og" "polyMirror2.ip"; +connectAttr "eye_lShape.wm" "polyMirror2.mp"; +connectAttr "eye_lShape1.o" "groupParts2.ig"; +connectAttr "groupId9.id" "groupParts2.gi"; +connectAttr "polyMirror2.out" "deleteComponent2.ig"; +connectAttr "bomba_braba_ajustado_olhos:polySurfaceShape1.o" "polySoftEdge15.ip" + ; +connectAttr "body_geoShape.wm" "polySoftEdge15.mp"; +connectAttr "polySoftEdge15.out" "polyTweakUV1.ip"; +connectAttr "polyTweakUV1.out" "polyMapSew1.ip"; +connectAttr "polyMapSew1.out" "polyMapSew2.ip"; +connectAttr "polyMapSew2.out" "polyMapSew3.ip"; +connectAttr "polyMapSew3.out" "polyTweakUV2.ip"; +connectAttr "aiNormalMap1.msg" "hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[0].dn" + ; +connectAttr "blue_bomb_mtl.msg" "hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[1].dn" + ; +connectAttr "place2dTexture3.msg" "hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[2].dn" + ; +connectAttr "place2dTexture2.msg" "hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[3].dn" + ; +connectAttr "file3.msg" "hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[4].dn" + ; +connectAttr "place2dTexture1.msg" "hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[5].dn" + ; +connectAttr "file2.msg" "hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[6].dn" + ; +connectAttr "file1.msg" "hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[7].dn" + ; +connectAttr "aiStandardSurface1SG.msg" "hyperShadePrimaryNodeEditorSavedTabsInfo.tgi[0].ni[8].dn" + ; +connectAttr "aiStandardSurface1SG.pa" ":renderPartition.st" -na; +connectAttr "blue_bomb_mtl.msg" ":defaultShaderList1.s" -na; +connectAttr "place2dTexture1.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "place2dTexture2.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "aiNormalMap1.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "place2dTexture3.msg" ":defaultRenderUtilityList1.u" -na; +connectAttr "defaultRenderLayer.msg" ":defaultRenderingList1.r" -na; +connectAttr "file1.msg" ":defaultTextureList1.tx" -na; +connectAttr "file2.msg" ":defaultTextureList1.tx" -na; +connectAttr "file3.msg" ":defaultTextureList1.tx" -na; +// End of blue_bomb_export_scene.ma diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA/blue_bomb_export_scene.ma.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA/blue_bomb_export_scene.ma.meta new file mode 100644 index 0000000..b673b4e --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/scenes/bomba - BRABA/blue_bomb_export_scene.ma.meta @@ -0,0 +1,109 @@ +fileFormatVersion: 2 +guid: c33ade353df1c0444aa940da8973b267 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/workspace.mel b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/workspace.mel new file mode 100644 index 0000000..3901b00 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/workspace.mel @@ -0,0 +1,72 @@ +//Maya 2023 Project Definition + +workspace -fr "fluidCache" "cache/nCache/fluid"; +workspace -fr "JT_ATF" "data"; +workspace -fr "images" "images"; +workspace -fr "offlineEdit" "scenes/edits"; +workspace -fr "STEP_ATF Export" "data"; +workspace -fr "furShadowMap" "renderData/fur/furShadowMap"; +workspace -fr "SVG" "data"; +workspace -fr "scripts" "scripts"; +workspace -fr "DAE_FBX" "data"; +workspace -fr "shaders" "renderData/shaders"; +workspace -fr "NX_ATF" "data"; +workspace -fr "furFiles" "renderData/fur/furFiles"; +workspace -fr "CATIAV5_ATF Export" "data"; +workspace -fr "OBJ" "data"; +workspace -fr "V-Ray Scene" "data"; +workspace -fr "PARASOLID_ATF Export" "data"; +workspace -fr "FBX export" "data"; +workspace -fr "furEqualMap" "renderData/fur/furEqualMap"; +workspace -fr "DAE_FBX export" "data"; +workspace -fr "CATIAV5_ATF" "data"; +workspace -fr "SAT_ATF Export" "data"; +workspace -fr "movie" "movies"; +workspace -fr "ASS Export" "data"; +workspace -fr "move" "data"; +workspace -fr "mayaAscii" "scenes"; +workspace -fr "autoSave" "autosave"; +workspace -fr "NX_ATF Export" "data"; +workspace -fr "sound" "sound"; +workspace -fr "mayaBinary" "scenes"; +workspace -fr "timeEditor" "Time Editor"; +workspace -fr "DWG_ATF" "data"; +workspace -fr "Arnold-USD" "data"; +workspace -fr "JT_ATF Export" "data"; +workspace -fr "iprImages" "renderData/iprImages"; +workspace -fr "FBX" "data"; +workspace -fr "renderData" "renderData"; +workspace -fr "CATIAV4_ATF" "data"; +workspace -fr "fileCache" "cache/nCache"; +workspace -fr "eps" "data"; +workspace -fr "3dPaintTextures" "sourceimages/3dPaintTextures"; +workspace -fr "mel" "scripts"; +workspace -fr "translatorData" "data"; +workspace -fr "DXF_ATF Export" "data"; +workspace -fr "particles" "cache/particles"; +workspace -fr "DXF_ATF" "data"; +workspace -fr "scene" "scenes"; +workspace -fr "mayaLT" ""; +workspace -fr "SAT_ATF" "data"; +workspace -fr "PROE_ATF" "data"; +workspace -fr "WIRE_ATF Export" "data"; +workspace -fr "sourceImages" "sourceimages"; +workspace -fr "clips" "clips"; +workspace -fr "furImages" "renderData/fur/furImages"; +workspace -fr "STEP_ATF" "data"; +workspace -fr "DWG_ATF Export" "data"; +workspace -fr "depth" "renderData/depth"; +workspace -fr "sceneAssembly" "sceneAssembly"; +workspace -fr "IGES_ATF Export" "data"; +workspace -fr "PARASOLID_ATF" "data"; +workspace -fr "IGES_ATF" "data"; +workspace -fr "teClipExports" "Time Editor/Clip Exports"; +workspace -fr "ASS" "data"; +workspace -fr "audio" "sound"; +workspace -fr "Alembic" "data"; +workspace -fr "illustrator" "data"; +workspace -fr "diskCache" "data"; +workspace -fr "WIRE_ATF" "data"; +workspace -fr "templates" "assets"; +workspace -fr "OBJexport" "data"; +workspace -fr "furAttrMap" "renderData/fur/furAttrMap"; diff --git a/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/workspace.mel.meta b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/workspace.mel.meta new file mode 100644 index 0000000..c6d6853 --- /dev/null +++ b/Assets/blue_bomb_export_scene.ma (3)/OneDrive/zibu/zibu_assets/workspace.mel.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 480371d2e6cb3fa489977478715c6d64 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/manifest.json b/Packages/manifest.json index f60769e..1b7673d 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -5,6 +5,7 @@ "com.unity.collab-proxy": "2.8.2", "com.unity.feature.development": "1.0.1", "com.unity.mathematics": "1.2.6", + "com.unity.postprocessing": "3.4.0", "com.unity.recorder": "4.0.3", "com.unity.textmeshpro": "3.0.7", "com.unity.timeline": "1.7.6", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index b69f49b..fd83007 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -90,6 +90,15 @@ "dependencies": {}, "url": "https://packages.unity.com" }, + "com.unity.postprocessing": { + "version": "3.4.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + }, + "url": "https://packages.unity.com" + }, "com.unity.recorder": { "version": "4.0.3", "depth": 0, diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset index 9602176..9c77a72 100644 --- a/ProjectSettings/EditorBuildSettings.asset +++ b/ProjectSettings/EditorBuildSettings.asset @@ -5,31 +5,34 @@ EditorBuildSettings: m_ObjectHideFlags: 0 serializedVersion: 2 m_Scenes: - - enabled: 1 + - enabled: 0 path: Assets/Scenes/MainMenu.unity guid: 2c7507e67227be143ad14af32c6b28cb - - enabled: 1 + - enabled: 0 path: Assets/Scenes/Forage Grove.unity guid: e1323357692ca68489ed8334c4583f92 - - enabled: 1 + - enabled: 0 path: Assets/Scenes/WhackAMole.unity guid: 9fc0d4010bbf28b4594072e72b8655ab - - enabled: 1 + - enabled: 0 path: Assets/Scenes/PeekAbu.unity guid: 8d2b49eb34ecf4f4ab6104b461fc49ac - - enabled: 1 + - enabled: 0 path: Assets/Scenes/BerryBullsEye.unity guid: e5aa1b471aac2f54bb31b08175e9da5f - - enabled: 1 + - enabled: 0 path: Assets/Scenes/BalloonFloat.unity guid: 2a14fa06d53c9384d998e07bcbe8d461 - - enabled: 1 + - enabled: 0 path: Assets/Scenes/BreakTheBox.unity guid: 3b0dc5e594206994bb887130f284e330 - - enabled: 1 + - enabled: 0 path: Assets/Scenes/ButterflyCatch.unity guid: c31dd759b8d083a47ba3d5d0deeefd9a - - enabled: 1 + - enabled: 0 path: Assets/Scenes/FeedTheZibu.unity guid: 2ccc400ec771453428e1f25a49906737 + - enabled: 1 + path: Assets/Scenes/ChaseRun.unity + guid: be6c423b3d68dcb48bc49a7d2ed4957d m_configObjects: {} diff --git a/ProjectSettings/Packages/com.unity.muse.common/Settings.json b/ProjectSettings/Packages/com.unity.muse.common/Settings.json new file mode 100644 index 0000000..4398ce7 --- /dev/null +++ b/ProjectSettings/Packages/com.unity.muse.common/Settings.json @@ -0,0 +1,26 @@ +{ + "m_Dictionary": { + "m_DictionaryValues": [ + { + "type": "Unity.Muse.Common.PreferenceDataWrapper`1[[System.Collections.Generic.List`1[[Unity.Muse.Common.Account.OrganizationInfo, Unity.Muse.Common, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", + "key": "Unity.Muse.Common.Preferences.organizations", + "value": "{\"value\":[{\"rid\":1000}],\"references\":{\"version\":2,\"RefIds\":[{\"rid\":1000,\"type\":{\"class\":\"OrganizationInfo\",\"ns\":\"Unity.Muse.Common.Account\",\"asm\":\"Unity.Muse.Common\"},\"data\":{\"org_id\":\"18967319710976\",\"org_name\":\"alisharoz6\",\"status\":\"free-trial\"}}]}}" + }, + { + "type": "Unity.Muse.Common.PreferenceDataWrapper`1[[Unity.Muse.Common.Account.OrganizationInfo, Unity.Muse.Common, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]", + "key": "Unity.Muse.Common.Preferences.organization", + "value": "{\"value\":{\"rid\":1000},\"references\":{\"version\":2,\"RefIds\":[{\"rid\":1000,\"type\":{\"class\":\"OrganizationInfo\",\"ns\":\"Unity.Muse.Common.Account\",\"asm\":\"Unity.Muse.Common\"},\"data\":{\"org_id\":\"18967319710976\",\"org_name\":\"alisharoz6\",\"status\":\"free-trial\"}}]}}" + }, + { + "type": "Unity.Muse.Common.PreferenceDataWrapper`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]", + "key": "Unity.Muse.Common.Preferences.onboardingShown", + "value": "{\"value\":true}" + }, + { + "type": "Unity.Muse.Common.PreferenceDataWrapper`1[[Unity.Muse.Common.Account.UsageInfo, Unity.Muse.Common, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null]]", + "key": "Unity.Muse.Common.Preferences.usage", + "value": "{\"value\":{\"rid\":1000},\"references\":{\"version\":2,\"RefIds\":[{\"rid\":1000,\"type\":{\"class\":\"UsageInfo\",\"ns\":\"Unity.Muse.Common.Account\",\"asm\":\"Unity.Muse.Common\"},\"data\":{\"used\":0,\"total\":3000}}]}}" + } + ] + } +} \ No newline at end of file diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 40c0a1d..e86cb26 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -44,8 +44,8 @@ PlayerSettings: m_HolographicTrackingLossScreen: {fileID: 0} defaultScreenWidth: 1920 defaultScreenHeight: 1080 - defaultScreenWidthWeb: 960 - defaultScreenHeightWeb: 600 + defaultScreenWidthWeb: 600 + defaultScreenHeightWeb: 960 m_StereoRenderingPath: 0 m_ActiveColorSpace: 1 unsupportedMSAAFallback: 0 @@ -837,7 +837,19 @@ PlayerSettings: webGLMemoryGeometricGrowthCap: 96 webGLPowerPreference: 2 scriptingDefineSymbols: - Standalone: MUDBUN_BUILTIN_RP;MUDBUN;MUDBUN_BURST + Android: UNITY_POST_PROCESSING_STACK_V2 + EmbeddedLinux: UNITY_POST_PROCESSING_STACK_V2 + GameCoreXboxOne: UNITY_POST_PROCESSING_STACK_V2 + Nintendo Switch: UNITY_POST_PROCESSING_STACK_V2 + PS4: UNITY_POST_PROCESSING_STACK_V2 + PS5: UNITY_POST_PROCESSING_STACK_V2 + QNX: UNITY_POST_PROCESSING_STACK_V2 + Stadia: UNITY_POST_PROCESSING_STACK_V2 + Standalone: MUDBUN_BUILTIN_RP;MUDBUN;MUDBUN_BURST;UNITY_POST_PROCESSING_STACK_V2 + VisionOS: UNITY_POST_PROCESSING_STACK_V2 + WebGL: UNITY_POST_PROCESSING_STACK_V2 + XboxOne: UNITY_POST_PROCESSING_STACK_V2 + tvOS: UNITY_POST_PROCESSING_STACK_V2 additionalCompilerArguments: {} platformArchitecture: {} scriptingBackend: {} diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset index ae55a2e..162cb2b 100644 --- a/ProjectSettings/TagManager.asset +++ b/ProjectSettings/TagManager.asset @@ -20,8 +20,8 @@ TagManager: - UI - Player - Ball - - - - + - Ground + - PostProcessing - - -