| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045 | %YAML 1.1%TAG !u! tag:unity3d.com,2011:--- !u!29 &1OcclusionCullingSettings:  m_ObjectHideFlags: 0  serializedVersion: 2  m_OcclusionBakeSettings:    smallestOccluder: 5    smallestHole: 0.25    backfaceThreshold: 100  m_SceneGUID: 00000000000000000000000000000000  m_OcclusionCullingData: {fileID: 0}--- !u!104 &2RenderSettings:  m_ObjectHideFlags: 0  serializedVersion: 9  m_Fog: 0  m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}  m_FogMode: 3  m_FogDensity: 0.01  m_LinearFogStart: 0  m_LinearFogEnd: 300  m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}  m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}  m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}  m_AmbientIntensity: 1  m_AmbientMode: 0  m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}  m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}  m_HaloStrength: 0.5  m_FlareStrength: 1  m_FlareFadeSpeed: 3  m_HaloTexture: {fileID: 0}  m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}  m_DefaultReflectionMode: 0  m_DefaultReflectionResolution: 128  m_ReflectionBounces: 1  m_ReflectionIntensity: 1  m_CustomReflection: {fileID: 0}  m_Sun: {fileID: 0}  m_IndirectSpecularColor: {r: 0.1837695, g: 0.2291317, b: 0.30443475, a: 1}  m_UseRadianceAmbientProbe: 0--- !u!157 &3LightmapSettings:  m_ObjectHideFlags: 0  serializedVersion: 12  m_GIWorkflowMode: 1  m_GISettings:    serializedVersion: 2    m_BounceScale: 1    m_IndirectOutputScale: 1    m_AlbedoBoost: 1    m_EnvironmentLightingMode: 0    m_EnableBakedLightmaps: 1    m_EnableRealtimeLightmaps: 0  m_LightmapEditorSettings:    serializedVersion: 12    m_Resolution: 2    m_BakeResolution: 40    m_AtlasSize: 1024    m_AO: 0    m_AOMaxDistance: 1    m_CompAOExponent: 1    m_CompAOExponentDirect: 0    m_ExtractAmbientOcclusion: 0    m_Padding: 2    m_LightmapParameters: {fileID: 0}    m_LightmapsBakeMode: 1    m_TextureCompression: 1    m_FinalGather: 0    m_FinalGatherFiltering: 1    m_FinalGatherRayCount: 256    m_ReflectionCompression: 2    m_MixedBakeMode: 2    m_BakeBackend: 1    m_PVRSampling: 1    m_PVRDirectSampleCount: 32    m_PVRSampleCount: 512    m_PVRBounces: 2    m_PVREnvironmentSampleCount: 256    m_PVREnvironmentReferencePointCount: 2048    m_PVRFilteringMode: 1    m_PVRDenoiserTypeDirect: 1    m_PVRDenoiserTypeIndirect: 1    m_PVRDenoiserTypeAO: 1    m_PVRFilterTypeDirect: 0    m_PVRFilterTypeIndirect: 0    m_PVRFilterTypeAO: 0    m_PVREnvironmentMIS: 1    m_PVRCulling: 1    m_PVRFilteringGaussRadiusDirect: 1    m_PVRFilteringGaussRadiusIndirect: 5    m_PVRFilteringGaussRadiusAO: 2    m_PVRFilteringAtrousPositionSigmaDirect: 0.5    m_PVRFilteringAtrousPositionSigmaIndirect: 2    m_PVRFilteringAtrousPositionSigmaAO: 1    m_ExportTrainingData: 0    m_TrainingDataDestination: TrainingData    m_LightProbeSampleCountMultiplier: 4  m_LightingDataAsset: {fileID: 0}  m_LightingSettings: {fileID: 0}--- !u!196 &4NavMeshSettings:  serializedVersion: 2  m_ObjectHideFlags: 0  m_BuildSettings:    serializedVersion: 3    agentTypeID: 0    agentRadius: 0.5    agentHeight: 2    agentSlope: 45    agentClimb: 0.4    ledgeDropHeight: 0    maxJumpAcrossDistance: 0    minRegionArea: 2    manualCellSize: 0    cellSize: 0.16666667    manualTileSize: 0    tileSize: 256    buildHeightMesh: 0    maxJobWorkers: 0    preserveTilesOutsideBounds: 0    debug:      m_Flags: 0  m_NavMeshData: {fileID: 0}--- !u!1 &284902567GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 284902568}  - component: {fileID: 284902570}  - component: {fileID: 284902569}  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 &284902568RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 284902567}  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: 517061887}  m_RootOrder: -1  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 &284902569MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 284902567}  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: Hockey Pokey  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: 24  m_fontSizeBase: 24  m_fontWeight: 400  m_enableAutoSizing: 0  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 &284902570CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 284902567}  m_CullTransparentMesh: 1--- !u!1 &330585543GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 330585546}  - component: {fileID: 330585545}  - component: {fileID: 330585544}  - component: {fileID: 330585547}  - component: {fileID: 330585548}  m_Layer: 0  m_Name: Main Camera  m_TagString: MainCamera  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!81 &330585544AudioListener:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 330585543}  m_Enabled: 1--- !u!20 &330585545Camera:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 330585543}  m_Enabled: 1  serializedVersion: 2  m_ClearFlags: 1  m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}  m_projectionMatrixMode: 1  m_GateFitMode: 2  m_FOVAxisMode: 0  m_Iso: 200  m_ShutterSpeed: 0.005  m_Aperture: 16  m_FocusDistance: 10  m_FocalLength: 50  m_BladeCount: 5  m_Curvature: {x: 2, y: 11}  m_BarrelClipping: 0.25  m_Anamorphism: 0  m_SensorSize: {x: 36, y: 24}  m_LensShift: {x: 0, y: 0}  m_NormalizedViewPortRect:    serializedVersion: 2    x: 0    y: 0    width: 1    height: 1  near clip plane: 0.3  far clip plane: 1000  field of view: 60  orthographic: 0  orthographic size: 5  m_Depth: -1  m_CullingMask:    serializedVersion: 2    m_Bits: 4294967295  m_RenderingPath: -1  m_TargetTexture: {fileID: 0}  m_TargetDisplay: 0  m_TargetEye: 3  m_HDR: 1  m_AllowMSAA: 1  m_AllowDynamicResolution: 0  m_ForceIntoRT: 0  m_OcclusionCulling: 1  m_StereoConvergence: 10  m_StereoSeparation: 0.022--- !u!4 &330585546Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 330585543}  m_LocalRotation: {x: 0.03489949, y: 0, z: 0, w: 0.99939084}  m_LocalPosition: {x: 0, y: 1.75, z: -3}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 0}  m_RootOrder: 0  m_LocalEulerAnglesHint: {x: 4, y: 0, z: 0}--- !u!114 &330585547MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 330585543}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3}  m_Name:   m_EditorClassIdentifier:   m_RenderShadows: 1  m_RequiresDepthTextureOption: 2  m_RequiresOpaqueTextureOption: 2  m_CameraType: 0  m_Cameras: []  m_RendererIndex: -1  m_VolumeLayerMask:    serializedVersion: 2    m_Bits: 1  m_VolumeTrigger: {fileID: 0}  m_VolumeFrameworkUpdateModeOption: 2  m_RenderPostProcessing: 1  m_Antialiasing: 0  m_AntialiasingQuality: 2  m_StopNaN: 0  m_Dithering: 0  m_ClearDepth: 1  m_AllowXRRendering: 1  m_UseScreenCoordOverride: 0  m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0}  m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0}  m_RequiresDepthTexture: 0  m_RequiresColorTexture: 0  m_Version: 2  m_TaaSettings:    quality: 3    frameInfluence: 0.1    jitterScale: 1    mipBias: 0    varianceClampScale: 0.9    contrastAdaptiveSharpening: 0--- !u!114 &330585548MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 330585543}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 5c49126aa35336843a91c34494132d7d, type: 3}  m_Name:   m_EditorClassIdentifier:   minDistance: 3  maxDistance: 10--- !u!1 &342537454GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 342537455}  - component: {fileID: 342537457}  - component: {fileID: 342537456}  m_Layer: 5  m_Name: transitionSpeedText  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &342537455RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 342537454}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: -24}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 906227944}  m_RootOrder: -1  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: -497, y: 390.99997}  m_SizeDelta: {x: 200, y: 50}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &342537456MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 342537454}  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: Transition Speed  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: 4283891727  m_fontColor: {r: 0.05882353, g: 0, b: 0.34117648, 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: 36  m_fontSizeBase: 36  m_fontWeight: 400  m_enableAutoSizing: 0  m_fontSizeMin: 18  m_fontSizeMax: 72  m_fontStyle: 0  m_HorizontalAlignment: 1  m_VerticalAlignment: 256  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: -995.99426, 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 &342537457CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 342537454}  m_CullTransparentMesh: 1--- !u!1 &376911486GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 376911487}  - component: {fileID: 376911491}  - component: {fileID: 376911490}  - component: {fileID: 376911489}  - component: {fileID: 376911488}  m_Layer: 5  m_Name: buttonChickenDance  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &376911487RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 376911486}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: -20}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 1502105251}  m_Father: {fileID: 906227944}  m_RootOrder: -1  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: -510, y: 290}  m_SizeDelta: {x: 180, y: 80}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &376911488MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 376911486}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: e38fa2cb969135242bfca9a8ac05e9a3, type: 3}  m_Name:   m_EditorClassIdentifier:   transitionSpeedScrollbar: {fileID: 1956658128}  animationId: 0  animator: {fileID: 0}--- !u!114 &376911489MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 376911486}  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: 376911490}  m_OnClick:    m_PersistentCalls:      m_Calls:      - m_Target: {fileID: 376911488}        m_TargetAssemblyTypeName: TransitionScript, Assembly-CSharp        m_MethodName: Transition        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: 1--- !u!114 &376911490MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 376911486}  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 &376911491CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 376911486}  m_CullTransparentMesh: 1--- !u!1 &410087039GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 410087041}  - component: {fileID: 410087040}  - component: {fileID: 410087042}  m_Layer: 0  m_Name: Directional Light  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!108 &410087040Light:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 410087039}  m_Enabled: 1  serializedVersion: 10  m_Type: 1  m_Shape: 0  m_Color: {r: 1, g: 1, b: 1, a: 1}  m_Intensity: 2  m_Range: 10  m_SpotAngle: 30  m_InnerSpotAngle: 21.80208  m_CookieSize: 10  m_Shadows:    m_Type: 2    m_Resolution: -1    m_CustomResolution: -1    m_Strength: 1    m_Bias: 0.05    m_NormalBias: 0.4    m_NearPlane: 0.2    m_CullingMatrixOverride:      e00: 1      e01: 0      e02: 0      e03: 0      e10: 0      e11: 1      e12: 0      e13: 0      e20: 0      e21: 0      e22: 1      e23: 0      e30: 0      e31: 0      e32: 0      e33: 1    m_UseCullingMatrixOverride: 0  m_Cookie: {fileID: 0}  m_DrawHalo: 0  m_Flare: {fileID: 0}  m_RenderMode: 0  m_CullingMask:    serializedVersion: 2    m_Bits: 4294967295  m_RenderingLayerMask: 1  m_Lightmapping: 4  m_LightShadowCasterMode: 0  m_AreaSize: {x: 1, y: 1}  m_BounceIntensity: 1  m_ColorTemperature: 5000  m_UseColorTemperature: 1  m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}  m_UseBoundingSphereOverride: 0  m_UseViewFrustumForShadowCasterCull: 1  m_ShadowRadius: 0  m_ShadowAngle: 0--- !u!4 &410087041Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 410087039}  m_LocalRotation: {x: 0.34046772, y: -0.32518703, z: -0.10263167, w: 0.8762431}  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_RootOrder: 3  m_LocalEulerAnglesHint: {x: 32, y: -48.973, z: -28.242}--- !u!114 &410087042MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 410087039}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3}  m_Name:   m_EditorClassIdentifier:   m_Version: 3  m_UsePipelineSettings: 1  m_AdditionalLightsShadowResolutionTier: 2  m_LightLayerMask: 1  m_RenderingLayers: 1  m_CustomShadowLayers: 0  m_ShadowLayerMask: 1  m_ShadowRenderingLayers: 1  m_LightCookieSize: {x: 1, y: 1}  m_LightCookieOffset: {x: 0, y: 0}  m_SoftShadowQuality: 1--- !u!1 &460188733GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 460188734}  - component: {fileID: 460188736}  - component: {fileID: 460188735}  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 &460188734RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 460188733}  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: 741047839}  m_RootOrder: -1  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 &460188735MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 460188733}  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: Wave Hip Hop Dance  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: 24  m_fontSizeBase: 24  m_fontWeight: 400  m_enableAutoSizing: 0  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 &460188736CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 460188733}  m_CullTransparentMesh: 1--- !u!1 &493048681GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 493048682}  - component: {fileID: 493048685}  - component: {fileID: 493048684}  - component: {fileID: 493048683}  m_Layer: 5  m_Name: scrollBarCameraDistance  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &493048682RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 493048681}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: -27}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 575102929}  m_Father: {fileID: 906227944}  m_RootOrder: -1  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: 436}  m_SizeDelta: {x: 1200, y: 40}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &493048683MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 493048681}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, 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: 923936258}  m_HandleRect: {fileID: 923936257}  m_Direction: 0  m_Value: 0  m_Size: 0.05  m_NumberOfSteps: 0  m_OnValueChanged:    m_PersistentCalls:      m_Calls:      - m_Target: {fileID: 330585548}        m_TargetAssemblyTypeName: ZoomScript, Assembly-CSharp        m_MethodName: Zoom        m_Mode: 0        m_Arguments:          m_ObjectArgument: {fileID: 0}          m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine          m_IntArgument: 0          m_FloatArgument: 0          m_StringArgument:           m_BoolArgument: 0        m_CallState: 1--- !u!114 &493048684MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 493048681}  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: 10907, 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 &493048685CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 493048681}  m_CullTransparentMesh: 1--- !u!1 &517061886GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 517061887}  - component: {fileID: 517061891}  - component: {fileID: 517061890}  - component: {fileID: 517061889}  - component: {fileID: 517061888}  m_Layer: 5  m_Name: buttonHokeyPokey  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &517061887RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 517061886}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: -20}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 284902568}  m_Father: {fileID: 906227944}  m_RootOrder: -1  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: -310, y: 290.00003}  m_SizeDelta: {x: 180, y: 80}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &517061888MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 517061886}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: e38fa2cb969135242bfca9a8ac05e9a3, type: 3}  m_Name:   m_EditorClassIdentifier:   transitionSpeedScrollbar: {fileID: 1956658128}  animationId: 1  animator: {fileID: 0}--- !u!114 &517061889MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 517061886}  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: 517061890}  m_OnClick:    m_PersistentCalls:      m_Calls:      - m_Target: {fileID: 517061888}        m_TargetAssemblyTypeName: TransitionScript, Assembly-CSharp        m_MethodName: Transition        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: 1--- !u!114 &517061890MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 517061886}  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 &517061891CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 517061886}  m_CullTransparentMesh: 1--- !u!1 &529363434GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 529363435}  - component: {fileID: 529363437}  - component: {fileID: 529363436}  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 &529363435RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 529363434}  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: 1755395980}  m_RootOrder: -1  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 &529363436MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 529363434}  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: "Northern Soul Spin\t"  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: 24  m_fontSizeBase: 24  m_fontWeight: 400  m_enableAutoSizing: 0  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 &529363437CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 529363434}  m_CullTransparentMesh: 1--- !u!1 &575102928GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 575102929}  m_Layer: 5  m_Name: Sliding Area  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &575102929RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 575102928}  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: 923936257}  m_Father: {fileID: 493048682}  m_RootOrder: -1  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: -20, y: -20}  m_Pivot: {x: 0.5, y: 0.5}--- !u!1 &741047838GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 741047839}  - component: {fileID: 741047843}  - component: {fileID: 741047842}  - component: {fileID: 741047841}  - component: {fileID: 741047840}  m_Layer: 5  m_Name: buttonWaveHipHopDance  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &741047839RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 741047838}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: -20}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 460188734}  m_Father: {fileID: 906227944}  m_RootOrder: -1  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: 290, y: 290.00003}  m_SizeDelta: {x: 180, y: 80}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &741047840MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 741047838}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: e38fa2cb969135242bfca9a8ac05e9a3, type: 3}  m_Name:   m_EditorClassIdentifier:   transitionSpeedScrollbar: {fileID: 1956658128}  animationId: 4  animator: {fileID: 0}--- !u!114 &741047841MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 741047838}  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: 741047842}  m_OnClick:    m_PersistentCalls:      m_Calls:      - m_Target: {fileID: 741047840}        m_TargetAssemblyTypeName: TransitionScript, Assembly-CSharp        m_MethodName: Transition        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: 1--- !u!114 &741047842MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 741047838}  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 &741047843CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 741047838}  m_CullTransparentMesh: 1--- !u!1 &906227940GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 906227944}  - component: {fileID: 906227943}  - component: {fileID: 906227942}  - component: {fileID: 906227941}  m_Layer: 5  m_Name: Canvas  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!114 &906227941MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 906227940}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}  m_Name:   m_EditorClassIdentifier:   m_IgnoreReversedGraphics: 1  m_BlockingObjects: 0  m_BlockingMask:    serializedVersion: 2    m_Bits: 4294967295--- !u!114 &906227942MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 906227940}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}  m_Name:   m_EditorClassIdentifier:   m_UiScaleMode: 0  m_ReferencePixelsPerUnit: 100  m_ScaleFactor: 1  m_ReferenceResolution: {x: 800, y: 600}  m_ScreenMatchMode: 0  m_MatchWidthOrHeight: 0  m_PhysicalUnit: 3  m_FallbackScreenDPI: 96  m_DefaultSpriteDPI: 96  m_DynamicPixelsPerUnit: 1  m_PresetInfoIsWorld: 0--- !u!223 &906227943Canvas:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 906227940}  m_Enabled: 1  serializedVersion: 3  m_RenderMode: 1  m_Camera: {fileID: 330585545}  m_PlaneDistance: 4  m_PixelPerfect: 0  m_ReceivesEvents: 1  m_OverrideSorting: 0  m_OverridePixelPerfect: 0  m_SortingBucketNormalizedSize: 0  m_AdditionalShaderChannelsFlag: 25  m_UpdateRectTransformForStandalone: 0  m_SortingLayerID: 0  m_SortingOrder: 0  m_TargetDisplay: 0--- !u!224 &906227944RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 906227940}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: 0}  m_LocalScale: {x: 0, y: 0, z: 0}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 2080086722}  - {fileID: 493048682}  - {fileID: 342537455}  - {fileID: 1956658127}  - {fileID: 376911487}  - {fileID: 517061887}  - {fileID: 1755395980}  - {fileID: 1802859710}  - {fileID: 741047839}  - {fileID: 1058085107}  m_Father: {fileID: 0}  m_RootOrder: 1  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}  m_AnchorMin: {x: 0, y: 0}  m_AnchorMax: {x: 0, y: 0}  m_AnchoredPosition: {x: 0, y: 0}  m_SizeDelta: {x: 0, y: 0}  m_Pivot: {x: 0, y: 0}--- !u!1 &923936256GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 923936257}  - component: {fileID: 923936259}  - component: {fileID: 923936258}  m_Layer: 5  m_Name: Handle  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &923936257RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 923936256}  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: 575102929}  m_RootOrder: -1  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}  m_AnchorMin: {x: 0, y: 0}  m_AnchorMax: {x: 0, y: 0}  m_AnchoredPosition: {x: 0, y: 0}  m_SizeDelta: {x: 20, y: 20}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &923936258MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 923936256}  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 &923936259CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 923936256}  m_CullTransparentMesh: 1--- !u!1 &1058085106GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1058085107}  - component: {fileID: 1058085110}  - component: {fileID: 1058085109}  - component: {fileID: 1058085108}  m_Layer: 5  m_Name: ExitMessage  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &1058085107RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1058085106}  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: 906227944}  m_RootOrder: -1  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}  m_AnchorMin: {x: 0, y: 1}  m_AnchorMax: {x: 0, y: 1}  m_AnchoredPosition: {x: 0, y: 0}  m_SizeDelta: {x: 0, y: 0}  m_Pivot: {x: 0, y: 1}--- !u!114 &1058085108MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1058085106}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 3c5f2d37b5846504e9e7a0d8b227d590, type: 3}  m_Name:   m_EditorClassIdentifier:   sceneName: --- !u!114 &1058085109MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1058085106}  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: Press ESC to go back to main menu  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: 4278190080  m_fontColor: {r: 0, g: 0, b: 0, 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: 20  m_fontSizeBase: 20  m_fontWeight: 400  m_enableAutoSizing: 0  m_fontSizeMin: 18  m_fontSizeMax: 72  m_fontStyle: 0  m_HorizontalAlignment: 1  m_VerticalAlignment: 256  m_textAlignment: 65535  m_characterSpacing: 0  m_wordSpacing: 0  m_lineSpacing: 0  m_lineSpacingMax: 0  m_paragraphSpacing: 0  m_charWidthMaxAdj: 0  m_enableWordWrapping: 0  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 &1058085110CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1058085106}  m_CullTransparentMesh: 1--- !u!1 &1083252216GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1083252217}  - component: {fileID: 1083252219}  - component: {fileID: 1083252218}  m_Layer: 5  m_Name: Handle  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &1083252217RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1083252216}  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: 1427333370}  m_RootOrder: -1  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}  m_AnchorMin: {x: 0, y: 0}  m_AnchorMax: {x: 0, y: 0}  m_AnchoredPosition: {x: 0, y: 0}  m_SizeDelta: {x: 20, y: 20}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &1083252218MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1083252216}  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 &1083252219CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1083252216}  m_CullTransparentMesh: 1--- !u!1 &1422996580GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1422996583}  - component: {fileID: 1422996582}  - component: {fileID: 1422996581}  m_Layer: 0  m_Name: EventSystem  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!114 &1422996581MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1422996580}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3}  m_Name:   m_EditorClassIdentifier:   m_SendPointerHoverToParent: 1  m_HorizontalAxis: Horizontal  m_VerticalAxis: Vertical  m_SubmitButton: Submit  m_CancelButton: Cancel  m_InputActionsPerSecond: 10  m_RepeatDelay: 0.5  m_ForceModuleActive: 0--- !u!114 &1422996582MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1422996580}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3}  m_Name:   m_EditorClassIdentifier:   m_FirstSelected: {fileID: 0}  m_sendNavigationEvents: 1  m_DragThreshold: 10--- !u!4 &1422996583Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1422996580}  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_RootOrder: 2  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &1427333369GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1427333370}  m_Layer: 5  m_Name: Sliding Area  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &1427333370RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1427333369}  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: 1083252217}  m_Father: {fileID: 1956658127}  m_RootOrder: -1  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: -20, y: -20}  m_Pivot: {x: 0.5, y: 0.5}--- !u!1 &1502105250GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1502105251}  - component: {fileID: 1502105253}  - component: {fileID: 1502105252}  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 &1502105251RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1502105250}  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: 376911487}  m_RootOrder: -1  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 &1502105252MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1502105250}  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: Chicken Dance  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: 24  m_fontSizeBase: 24  m_fontWeight: 400  m_enableAutoSizing: 0  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 &1502105253CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1502105250}  m_CullTransparentMesh: 1--- !u!1 &1755395979GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1755395980}  - component: {fileID: 1755395984}  - component: {fileID: 1755395983}  - component: {fileID: 1755395982}  - component: {fileID: 1755395981}  m_Layer: 5  m_Name: buttonNorthernSoulSpin  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &1755395980RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1755395979}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: -20}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 529363435}  m_Father: {fileID: 906227944}  m_RootOrder: -1  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: -110, y: 290.00003}  m_SizeDelta: {x: 180, y: 80}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &1755395981MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1755395979}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: e38fa2cb969135242bfca9a8ac05e9a3, type: 3}  m_Name:   m_EditorClassIdentifier:   transitionSpeedScrollbar: {fileID: 1956658128}  animationId: 2  animator: {fileID: 0}--- !u!114 &1755395982MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1755395979}  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: 1755395983}  m_OnClick:    m_PersistentCalls:      m_Calls:      - m_Target: {fileID: 1755395981}        m_TargetAssemblyTypeName: TransitionScript, Assembly-CSharp        m_MethodName: Transition        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: 1--- !u!114 &1755395983MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1755395979}  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 &1755395984CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1755395979}  m_CullTransparentMesh: 1--- !u!1 &1762177065GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1762177067}  - component: {fileID: 1762177066}  m_Layer: 0  m_Name: SampleSceneEntities  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!114 &1762177066MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1762177065}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 45a335734b1572644a6a5d09d87adc65, type: 3}  m_Name:   m_EditorClassIdentifier:   _SceneAsset: {fileID: 102900000, guid: 10480121047dd614f9c1a0c32f99d9fe, type: 3}  _HierarchyColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}  AutoLoadScene: 1  _SceneGUID:    Value:      x: 303072257      y: 1097717568      z: 1007295647      w: 4020083186--- !u!4 &1762177067Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1762177065}  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_RootOrder: 5  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &1802859709GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1802859710}  - component: {fileID: 1802859714}  - component: {fileID: 1802859713}  - component: {fileID: 1802859712}  - component: {fileID: 1802859711}  m_Layer: 5  m_Name: buttonSwingDancing  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &1802859710RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1802859709}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: -20}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 1902819117}  m_Father: {fileID: 906227944}  m_RootOrder: -1  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: 90, y: 290.00003}  m_SizeDelta: {x: 180, y: 80}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &1802859711MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1802859709}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: e38fa2cb969135242bfca9a8ac05e9a3, type: 3}  m_Name:   m_EditorClassIdentifier:   transitionSpeedScrollbar: {fileID: 1956658128}  animationId: 3  animator: {fileID: 0}--- !u!114 &1802859712MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1802859709}  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: 1802859713}  m_OnClick:    m_PersistentCalls:      m_Calls:      - m_Target: {fileID: 1802859711}        m_TargetAssemblyTypeName: TransitionScript, Assembly-CSharp        m_MethodName: Transition        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: 1--- !u!114 &1802859713MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1802859709}  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 &1802859714CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1802859709}  m_CullTransparentMesh: 1--- !u!1 &1902819116GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1902819117}  - component: {fileID: 1902819119}  - component: {fileID: 1902819118}  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 &1902819117RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1902819116}  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: 1802859710}  m_RootOrder: -1  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 &1902819118MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1902819116}  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: Swing Dancing  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: 24  m_fontSizeBase: 24  m_fontWeight: 400  m_enableAutoSizing: 0  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 &1902819119CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1902819116}  m_CullTransparentMesh: 1--- !u!1 &1956658126GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1956658127}  - component: {fileID: 1956658130}  - component: {fileID: 1956658129}  - component: {fileID: 1956658128}  m_Layer: 5  m_Name: scrollBarTransitionSpeed  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &1956658127RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1956658126}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: -21}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children:  - {fileID: 1427333370}  m_Father: {fileID: 906227944}  m_RootOrder: -1  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: 353}  m_SizeDelta: {x: 1200, y: 40}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &1956658128MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1956658126}  m_Enabled: 1  m_EditorHideFlags: 0  m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, 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: 1083252218}  m_HandleRect: {fileID: 1083252217}  m_Direction: 0  m_Value: 0.5  m_Size: 0.05  m_NumberOfSteps: 0  m_OnValueChanged:    m_PersistentCalls:      m_Calls: []--- !u!114 &1956658129MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1956658126}  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: 10907, 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 &1956658130CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1956658126}  m_CullTransparentMesh: 1--- !u!1 &1996073423GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 1996073426}  - component: {fileID: 1996073425}  - component: {fileID: 1996073424}  m_Layer: 0  m_Name: Ground  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!23 &1996073424MeshRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1996073423}  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: a2dffc0b33ba9174cbb366d522029924, 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 &1996073425MeshFilter:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1996073423}  m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0}--- !u!4 &1996073426Transform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 1996073423}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: 0}  m_LocalScale: {x: 1000000, y: 1, z: 1000000}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 0}  m_RootOrder: 4  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}--- !u!1 &2080086721GameObject:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  serializedVersion: 6  m_Component:  - component: {fileID: 2080086722}  - component: {fileID: 2080086724}  - component: {fileID: 2080086723}  m_Layer: 5  m_Name: cameraDistanceText  m_TagString: Untagged  m_Icon: {fileID: 0}  m_NavMeshLayer: 0  m_StaticEditorFlags: 0  m_IsActive: 1--- !u!224 &2080086722RectTransform:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 2080086721}  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}  m_LocalPosition: {x: 0, y: 0, z: -30}  m_LocalScale: {x: 1, y: 1, z: 1}  m_ConstrainProportionsScale: 0  m_Children: []  m_Father: {fileID: 906227944}  m_RootOrder: -1  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: -497, y: 473.9}  m_SizeDelta: {x: 200, y: 50}  m_Pivot: {x: 0.5, y: 0.5}--- !u!114 &2080086723MonoBehaviour:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 2080086721}  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: Camera distance  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: 4283891727  m_fontColor: {r: 0.05882353, g: 0, b: 0.34117648, 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: 36  m_fontSizeBase: 36  m_fontWeight: 400  m_enableAutoSizing: 0  m_fontSizeMin: 18  m_fontSizeMax: 72  m_fontStyle: 0  m_HorizontalAlignment: 1  m_VerticalAlignment: 256  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: -995.99426, 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 &2080086724CanvasRenderer:  m_ObjectHideFlags: 0  m_CorrespondingSourceObject: {fileID: 0}  m_PrefabInstance: {fileID: 0}  m_PrefabAsset: {fileID: 0}  m_GameObject: {fileID: 2080086721}  m_CullTransparentMesh: 1
 |