Beta.unity 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!29 &1
  4. OcclusionCullingSettings:
  5. m_ObjectHideFlags: 0
  6. serializedVersion: 2
  7. m_OcclusionBakeSettings:
  8. smallestOccluder: 5
  9. smallestHole: 0.25
  10. backfaceThreshold: 100
  11. m_SceneGUID: 00000000000000000000000000000000
  12. m_OcclusionCullingData: {fileID: 0}
  13. --- !u!104 &2
  14. RenderSettings:
  15. m_ObjectHideFlags: 0
  16. serializedVersion: 8
  17. m_Fog: 0
  18. m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
  19. m_FogMode: 3
  20. m_FogDensity: 0.01
  21. m_LinearFogStart: 0
  22. m_LinearFogEnd: 300
  23. m_AmbientSkyColor: {r: 0.5985078, g: 0.6961366, b: 0.9044118, a: 1}
  24. m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
  25. m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
  26. m_AmbientIntensity: 1
  27. m_AmbientMode: 3
  28. m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
  29. m_SkyboxMaterial: {fileID: 0}
  30. m_HaloStrength: 0.5
  31. m_FlareStrength: 1
  32. m_FlareFadeSpeed: 3
  33. m_HaloTexture: {fileID: 0}
  34. m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
  35. m_DefaultReflectionMode: 0
  36. m_DefaultReflectionResolution: 128
  37. m_ReflectionBounces: 1
  38. m_ReflectionIntensity: 1
  39. m_CustomReflection: {fileID: 0}
  40. m_Sun: {fileID: 0}
  41. m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
  42. --- !u!157 &3
  43. LightmapSettings:
  44. m_ObjectHideFlags: 0
  45. serializedVersion: 11
  46. m_GIWorkflowMode: 1
  47. m_GISettings:
  48. serializedVersion: 2
  49. m_BounceScale: 1
  50. m_IndirectOutputScale: 0.8
  51. m_AlbedoBoost: 1.16
  52. m_TemporalCoherenceThreshold: 1
  53. m_EnvironmentLightingMode: 0
  54. m_EnableBakedLightmaps: 1
  55. m_EnableRealtimeLightmaps: 0
  56. m_LightmapEditorSettings:
  57. serializedVersion: 9
  58. m_Resolution: 2
  59. m_BakeResolution: 5
  60. m_TextureWidth: 1024
  61. m_TextureHeight: 1024
  62. m_AO: 1
  63. m_AOMaxDistance: 2
  64. m_CompAOExponent: 0.5
  65. m_CompAOExponentDirect: 2
  66. m_Padding: 2
  67. m_LightmapParameters: {fileID: 15203, guid: 0000000000000000f000000000000000,
  68. type: 0}
  69. m_LightmapsBakeMode: 1
  70. m_TextureCompression: 1
  71. m_FinalGather: 0
  72. m_FinalGatherFiltering: 1
  73. m_FinalGatherRayCount: 256
  74. m_ReflectionCompression: 2
  75. m_MixedBakeMode: 0
  76. m_BakeBackend: 1
  77. m_PVRSampling: 1
  78. m_PVRDirectSampleCount: 32
  79. m_PVRSampleCount: 500
  80. m_PVRBounces: 2
  81. m_PVRFilterTypeDirect: 0
  82. m_PVRFilterTypeIndirect: 0
  83. m_PVRFilterTypeAO: 0
  84. m_PVRFilteringMode: 1
  85. m_PVRCulling: 1
  86. m_PVRFilteringGaussRadiusDirect: 1
  87. m_PVRFilteringGaussRadiusIndirect: 5
  88. m_PVRFilteringGaussRadiusAO: 2
  89. m_PVRFilteringAtrousPositionSigmaDirect: 0.5
  90. m_PVRFilteringAtrousPositionSigmaIndirect: 2
  91. m_PVRFilteringAtrousPositionSigmaAO: 1
  92. m_ShowResolutionOverlay: 1
  93. m_LightingDataAsset: {fileID: 112000002, guid: ae18b66775853594cb62f6bf961c2a97,
  94. type: 2}
  95. m_UseShadowmask: 0
  96. --- !u!196 &4
  97. NavMeshSettings:
  98. serializedVersion: 2
  99. m_ObjectHideFlags: 0
  100. m_BuildSettings:
  101. serializedVersion: 2
  102. agentTypeID: 0
  103. agentRadius: 0.5
  104. agentHeight: 2
  105. agentSlope: 45
  106. agentClimb: 0.4
  107. ledgeDropHeight: 0
  108. maxJumpAcrossDistance: 0
  109. minRegionArea: 2
  110. manualCellSize: 0
  111. cellSize: 0.16666667
  112. manualTileSize: 0
  113. tileSize: 256
  114. accuratePlacement: 0
  115. debug:
  116. m_Flags: 0
  117. m_NavMeshData: {fileID: 0}
  118. --- !u!1 &706081
  119. GameObject:
  120. m_ObjectHideFlags: 0
  121. m_PrefabParentObject: {fileID: 1411893757615586, guid: bcd76c1e78564ad4cafec91e517586af,
  122. type: 2}
  123. m_PrefabInternal: {fileID: 1615544598}
  124. serializedVersion: 5
  125. m_Component:
  126. - component: {fileID: 706082}
  127. - component: {fileID: 706085}
  128. - component: {fileID: 706084}
  129. - component: {fileID: 706083}
  130. m_Layer: 0
  131. m_Name: Text
  132. m_TagString: Untagged
  133. m_Icon: {fileID: 0}
  134. m_NavMeshLayer: 0
  135. m_StaticEditorFlags: 0
  136. m_IsActive: 1
  137. --- !u!224 &706082
  138. RectTransform:
  139. m_ObjectHideFlags: 0
  140. m_PrefabParentObject: {fileID: 224513967765328634, guid: bcd76c1e78564ad4cafec91e517586af,
  141. type: 2}
  142. m_PrefabInternal: {fileID: 1615544598}
  143. m_GameObject: {fileID: 706081}
  144. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  145. m_LocalPosition: {x: 0, y: 0, z: 0}
  146. m_LocalScale: {x: 1, y: 1, z: 1}
  147. m_Children: []
  148. m_Father: {fileID: 1457621337}
  149. m_RootOrder: 0
  150. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  151. m_AnchorMin: {x: 0.22652225, y: 0.71400005}
  152. m_AnchorMax: {x: 0.77052224, y: 0.97950757}
  153. m_AnchoredPosition: {x: 2.0000458, y: 1}
  154. m_SizeDelta: {x: -3.4000244, y: 2}
  155. m_Pivot: {x: 0.5, y: 0.5}
  156. --- !u!114 &706083
  157. MonoBehaviour:
  158. m_ObjectHideFlags: 0
  159. m_PrefabParentObject: {fileID: 114497857617704588, guid: bcd76c1e78564ad4cafec91e517586af,
  160. type: 2}
  161. m_PrefabInternal: {fileID: 1615544598}
  162. m_GameObject: {fileID: 706081}
  163. m_Enabled: 1
  164. m_EditorHideFlags: 0
  165. m_Script: {fileID: 1573420865, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  166. m_Name:
  167. m_EditorClassIdentifier:
  168. m_EffectColor: {r: 0, g: 0, b: 0, a: 0.637}
  169. m_EffectDistance: {x: 2, y: -2}
  170. m_UseGraphicAlpha: 1
  171. --- !u!114 &706084
  172. MonoBehaviour:
  173. m_ObjectHideFlags: 0
  174. m_PrefabParentObject: {fileID: 114123013593670466, guid: bcd76c1e78564ad4cafec91e517586af,
  175. type: 2}
  176. m_PrefabInternal: {fileID: 1615544598}
  177. m_GameObject: {fileID: 706081}
  178. m_Enabled: 1
  179. m_EditorHideFlags: 0
  180. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  181. m_Name:
  182. m_EditorClassIdentifier:
  183. m_Material: {fileID: 0}
  184. m_Color: {r: 1, g: 1, b: 1, a: 1}
  185. m_RaycastTarget: 1
  186. m_OnCullStateChanged:
  187. m_PersistentCalls:
  188. m_Calls: []
  189. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  190. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  191. m_FontData:
  192. m_Font: {fileID: 12800000, guid: 783dedb9a9273284693e4cdbeaeecf44, type: 3}
  193. m_FontSize: 14
  194. m_FontStyle: 0
  195. m_BestFit: 1
  196. m_MinSize: 10
  197. m_MaxSize: 60
  198. m_Alignment: 4
  199. m_AlignByGeometry: 0
  200. m_RichText: 1
  201. m_HorizontalOverflow: 0
  202. m_VerticalOverflow: 0
  203. m_LineSpacing: 1
  204. m_Text: Connection Error
  205. --- !u!222 &706085
  206. CanvasRenderer:
  207. m_ObjectHideFlags: 0
  208. m_PrefabParentObject: {fileID: 222789517029890346, guid: bcd76c1e78564ad4cafec91e517586af,
  209. type: 2}
  210. m_PrefabInternal: {fileID: 1615544598}
  211. m_GameObject: {fileID: 706081}
  212. --- !u!1 &32491328
  213. GameObject:
  214. m_ObjectHideFlags: 0
  215. m_PrefabParentObject: {fileID: 1128523141900122, guid: bcd76c1e78564ad4cafec91e517586af,
  216. type: 2}
  217. m_PrefabInternal: {fileID: 1615544598}
  218. serializedVersion: 5
  219. m_Component:
  220. - component: {fileID: 32491329}
  221. - component: {fileID: 32491331}
  222. - component: {fileID: 32491330}
  223. m_Layer: 0
  224. m_Name: Image - ErrorConnection
  225. m_TagString: Untagged
  226. m_Icon: {fileID: 0}
  227. m_NavMeshLayer: 0
  228. m_StaticEditorFlags: 0
  229. m_IsActive: 1
  230. --- !u!224 &32491329
  231. RectTransform:
  232. m_ObjectHideFlags: 0
  233. m_PrefabParentObject: {fileID: 224161515239643786, guid: bcd76c1e78564ad4cafec91e517586af,
  234. type: 2}
  235. m_PrefabInternal: {fileID: 1615544598}
  236. m_GameObject: {fileID: 32491328}
  237. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  238. m_LocalPosition: {x: 0, y: 0, z: 0}
  239. m_LocalScale: {x: 1, y: 1, z: 1}
  240. m_Children: []
  241. m_Father: {fileID: 1457621337}
  242. m_RootOrder: 2
  243. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  244. m_AnchorMin: {x: 0.4285549, y: 0.23746197}
  245. m_AnchorMax: {x: 0.57144517, y: 0.67800003}
  246. m_AnchoredPosition: {x: 0, y: 0}
  247. m_SizeDelta: {x: 0, y: 0}
  248. m_Pivot: {x: 0.5, y: 0.5}
  249. --- !u!114 &32491330
  250. MonoBehaviour:
  251. m_ObjectHideFlags: 0
  252. m_PrefabParentObject: {fileID: 114675603636266130, guid: bcd76c1e78564ad4cafec91e517586af,
  253. type: 2}
  254. m_PrefabInternal: {fileID: 1615544598}
  255. m_GameObject: {fileID: 32491328}
  256. m_Enabled: 1
  257. m_EditorHideFlags: 0
  258. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  259. m_Name:
  260. m_EditorClassIdentifier:
  261. m_Material: {fileID: 0}
  262. m_Color: {r: 1, g: 1, b: 1, a: 1}
  263. m_RaycastTarget: 1
  264. m_OnCullStateChanged:
  265. m_PersistentCalls:
  266. m_Calls: []
  267. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  268. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  269. m_Sprite: {fileID: 21300000, guid: b3cd6404a86ff5540935b0b66594acf7, type: 3}
  270. m_Type: 0
  271. m_PreserveAspect: 1
  272. m_FillCenter: 1
  273. m_FillMethod: 4
  274. m_FillAmount: 1
  275. m_FillClockwise: 1
  276. m_FillOrigin: 0
  277. --- !u!222 &32491331
  278. CanvasRenderer:
  279. m_ObjectHideFlags: 0
  280. m_PrefabParentObject: {fileID: 222130764923323888, guid: bcd76c1e78564ad4cafec91e517586af,
  281. type: 2}
  282. m_PrefabInternal: {fileID: 1615544598}
  283. m_GameObject: {fileID: 32491328}
  284. --- !u!1 &63047650
  285. GameObject:
  286. m_ObjectHideFlags: 0
  287. m_PrefabParentObject: {fileID: 1753002857166004, guid: 9301daacae57091409db44ffaf9b5d9c,
  288. type: 2}
  289. m_PrefabInternal: {fileID: 2067816372}
  290. serializedVersion: 5
  291. m_Component:
  292. - component: {fileID: 63047651}
  293. - component: {fileID: 63047653}
  294. - component: {fileID: 63047652}
  295. m_Layer: 0
  296. m_Name: Button
  297. m_TagString: Untagged
  298. m_Icon: {fileID: 0}
  299. m_NavMeshLayer: 0
  300. m_StaticEditorFlags: 0
  301. m_IsActive: 1
  302. --- !u!224 &63047651
  303. RectTransform:
  304. m_ObjectHideFlags: 0
  305. m_PrefabParentObject: {fileID: 224619746245060824, guid: 9301daacae57091409db44ffaf9b5d9c,
  306. type: 2}
  307. m_PrefabInternal: {fileID: 2067816372}
  308. m_GameObject: {fileID: 63047650}
  309. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  310. m_LocalPosition: {x: 0, y: 0, z: 0}
  311. m_LocalScale: {x: 1, y: 1, z: 1}
  312. m_Children:
  313. - {fileID: 1471508774}
  314. - {fileID: 1292802430}
  315. m_Father: {fileID: 1433921937}
  316. m_RootOrder: 2
  317. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  318. m_AnchorMin: {x: 0, y: 0}
  319. m_AnchorMax: {x: 0, y: 0}
  320. m_AnchoredPosition: {x: 277.7588, y: 52.05127}
  321. m_SizeDelta: {x: 555.7, y: 104}
  322. m_Pivot: {x: 0.5, y: 0.5}
  323. --- !u!114 &63047652
  324. MonoBehaviour:
  325. m_ObjectHideFlags: 0
  326. m_PrefabParentObject: {fileID: 114572702527630996, guid: 9301daacae57091409db44ffaf9b5d9c,
  327. type: 2}
  328. m_PrefabInternal: {fileID: 2067816372}
  329. m_GameObject: {fileID: 63047650}
  330. m_Enabled: 1
  331. m_EditorHideFlags: 0
  332. m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  333. m_Name:
  334. m_EditorClassIdentifier:
  335. m_Navigation:
  336. m_Mode: 3
  337. m_SelectOnUp: {fileID: 0}
  338. m_SelectOnDown: {fileID: 0}
  339. m_SelectOnLeft: {fileID: 0}
  340. m_SelectOnRight: {fileID: 0}
  341. m_Transition: 0
  342. m_Colors:
  343. m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
  344. m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
  345. m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
  346. m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
  347. m_ColorMultiplier: 1
  348. m_FadeDuration: 0.1
  349. m_SpriteState:
  350. m_HighlightedSprite: {fileID: 0}
  351. m_PressedSprite: {fileID: 0}
  352. m_DisabledSprite: {fileID: 0}
  353. m_AnimationTriggers:
  354. m_NormalTrigger: Normal
  355. m_HighlightedTrigger: Highlighted
  356. m_PressedTrigger: Pressed
  357. m_DisabledTrigger: Disabled
  358. m_Interactable: 1
  359. m_TargetGraphic: {fileID: 0}
  360. m_OnClick:
  361. m_PersistentCalls:
  362. m_Calls: []
  363. m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
  364. Culture=neutral, PublicKeyToken=null
  365. --- !u!222 &63047653
  366. CanvasRenderer:
  367. m_ObjectHideFlags: 0
  368. m_PrefabParentObject: {fileID: 222172388107408212, guid: 9301daacae57091409db44ffaf9b5d9c,
  369. type: 2}
  370. m_PrefabInternal: {fileID: 2067816372}
  371. m_GameObject: {fileID: 63047650}
  372. --- !u!1 &98719080
  373. GameObject:
  374. m_ObjectHideFlags: 0
  375. m_PrefabParentObject: {fileID: 1092449270413112, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  376. type: 2}
  377. m_PrefabInternal: {fileID: 774040002}
  378. serializedVersion: 5
  379. m_Component:
  380. - component: {fileID: 98719081}
  381. - component: {fileID: 98719083}
  382. - component: {fileID: 98719082}
  383. m_Layer: 5
  384. m_Name: Text
  385. m_TagString: Untagged
  386. m_Icon: {fileID: 0}
  387. m_NavMeshLayer: 0
  388. m_StaticEditorFlags: 0
  389. m_IsActive: 1
  390. --- !u!224 &98719081
  391. RectTransform:
  392. m_ObjectHideFlags: 0
  393. m_PrefabParentObject: {fileID: 224133277361505822, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  394. type: 2}
  395. m_PrefabInternal: {fileID: 774040002}
  396. m_GameObject: {fileID: 98719080}
  397. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  398. m_LocalPosition: {x: 0, y: 0, z: 0}
  399. m_LocalScale: {x: 1, y: 1, z: 1}
  400. m_Children:
  401. - {fileID: 1039339192}
  402. - {fileID: 1715346391}
  403. m_Father: {fileID: 1468170599}
  404. m_RootOrder: 0
  405. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  406. m_AnchorMin: {x: 0, y: 1}
  407. m_AnchorMax: {x: 0, y: 1}
  408. m_AnchoredPosition: {x: 131.535, y: -10908.5}
  409. m_SizeDelta: {x: 249.07, y: 21807}
  410. m_Pivot: {x: 0.5, y: 0.5}
  411. --- !u!114 &98719082
  412. MonoBehaviour:
  413. m_ObjectHideFlags: 0
  414. m_PrefabParentObject: {fileID: 114107855401440636, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  415. type: 2}
  416. m_PrefabInternal: {fileID: 774040002}
  417. m_GameObject: {fileID: 98719080}
  418. m_Enabled: 1
  419. m_EditorHideFlags: 0
  420. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  421. m_Name:
  422. m_EditorClassIdentifier:
  423. m_Material: {fileID: 0}
  424. m_Color: {r: 1, g: 1, b: 1, a: 1}
  425. m_RaycastTarget: 1
  426. m_OnCullStateChanged:
  427. m_PersistentCalls:
  428. m_Calls: []
  429. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  430. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  431. m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0}
  432. m_Type: 1
  433. m_PreserveAspect: 0
  434. m_FillCenter: 1
  435. m_FillMethod: 4
  436. m_FillAmount: 1
  437. m_FillClockwise: 1
  438. m_FillOrigin: 0
  439. --- !u!222 &98719083
  440. CanvasRenderer:
  441. m_ObjectHideFlags: 0
  442. m_PrefabParentObject: {fileID: 222823438675287806, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  443. type: 2}
  444. m_PrefabInternal: {fileID: 774040002}
  445. m_GameObject: {fileID: 98719080}
  446. --- !u!1 &167410244
  447. GameObject:
  448. m_ObjectHideFlags: 0
  449. m_PrefabParentObject: {fileID: 0}
  450. m_PrefabInternal: {fileID: 0}
  451. serializedVersion: 5
  452. m_Component:
  453. - component: {fileID: 167410247}
  454. - component: {fileID: 167410246}
  455. - component: {fileID: 167410245}
  456. m_Layer: 0
  457. m_Name: EventSystem
  458. m_TagString: Untagged
  459. m_Icon: {fileID: 0}
  460. m_NavMeshLayer: 0
  461. m_StaticEditorFlags: 0
  462. m_IsActive: 1
  463. --- !u!114 &167410245
  464. MonoBehaviour:
  465. m_ObjectHideFlags: 0
  466. m_PrefabParentObject: {fileID: 0}
  467. m_PrefabInternal: {fileID: 0}
  468. m_GameObject: {fileID: 167410244}
  469. m_Enabled: 1
  470. m_EditorHideFlags: 0
  471. m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  472. m_Name:
  473. m_EditorClassIdentifier:
  474. m_HorizontalAxis: Horizontal
  475. m_VerticalAxis: Vertical
  476. m_SubmitButton: Submit
  477. m_CancelButton: Cancel
  478. m_InputActionsPerSecond: 10
  479. m_RepeatDelay: 0.5
  480. m_ForceModuleActive: 0
  481. --- !u!114 &167410246
  482. MonoBehaviour:
  483. m_ObjectHideFlags: 0
  484. m_PrefabParentObject: {fileID: 0}
  485. m_PrefabInternal: {fileID: 0}
  486. m_GameObject: {fileID: 167410244}
  487. m_Enabled: 1
  488. m_EditorHideFlags: 0
  489. m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  490. m_Name:
  491. m_EditorClassIdentifier:
  492. m_FirstSelected: {fileID: 0}
  493. m_sendNavigationEvents: 1
  494. m_DragThreshold: 5
  495. --- !u!4 &167410247
  496. Transform:
  497. m_ObjectHideFlags: 0
  498. m_PrefabParentObject: {fileID: 0}
  499. m_PrefabInternal: {fileID: 0}
  500. m_GameObject: {fileID: 167410244}
  501. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  502. m_LocalPosition: {x: 0, y: 0, z: 0}
  503. m_LocalScale: {x: 1, y: 1, z: 1}
  504. m_Children: []
  505. m_Father: {fileID: 451495054}
  506. m_RootOrder: 1
  507. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  508. --- !u!1 &203235336
  509. GameObject:
  510. m_ObjectHideFlags: 0
  511. m_PrefabParentObject: {fileID: 1708590767303640, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  512. type: 2}
  513. m_PrefabInternal: {fileID: 774040002}
  514. serializedVersion: 5
  515. m_Component:
  516. - component: {fileID: 203235337}
  517. - component: {fileID: 203235339}
  518. - component: {fileID: 203235338}
  519. m_Layer: 0
  520. m_Name: Text - Tyra
  521. m_TagString: Untagged
  522. m_Icon: {fileID: 0}
  523. m_NavMeshLayer: 0
  524. m_StaticEditorFlags: 0
  525. m_IsActive: 1
  526. --- !u!224 &203235337
  527. RectTransform:
  528. m_ObjectHideFlags: 0
  529. m_PrefabParentObject: {fileID: 224716627612662582, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  530. type: 2}
  531. m_PrefabInternal: {fileID: 774040002}
  532. m_GameObject: {fileID: 203235336}
  533. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  534. m_LocalPosition: {x: 0, y: 0, z: 0}
  535. m_LocalScale: {x: 0.9999981, y: 0.9999981, z: 0.9999981}
  536. m_Children: []
  537. m_Father: {fileID: 854313225}
  538. m_RootOrder: 0
  539. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  540. m_AnchorMin: {x: 0.17246108, y: 0.5}
  541. m_AnchorMax: {x: 0.483, y: 0.811185}
  542. m_AnchoredPosition: {x: -0.58999634, y: -0.000049591064}
  543. m_SizeDelta: {x: -1.37, y: 0.000061035}
  544. m_Pivot: {x: 0.5, y: 0.5}
  545. --- !u!114 &203235338
  546. MonoBehaviour:
  547. m_ObjectHideFlags: 0
  548. m_PrefabParentObject: {fileID: 114693090939607792, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  549. type: 2}
  550. m_PrefabInternal: {fileID: 774040002}
  551. m_GameObject: {fileID: 203235336}
  552. m_Enabled: 1
  553. m_EditorHideFlags: 0
  554. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  555. m_Name:
  556. m_EditorClassIdentifier:
  557. m_Material: {fileID: 0}
  558. m_Color: {r: 1, g: 1, b: 1, a: 1}
  559. m_RaycastTarget: 1
  560. m_OnCullStateChanged:
  561. m_PersistentCalls:
  562. m_Calls: []
  563. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  564. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  565. m_FontData:
  566. m_Font: {fileID: 12800000, guid: 783dedb9a9273284693e4cdbeaeecf44, type: 3}
  567. m_FontSize: 14
  568. m_FontStyle: 0
  569. m_BestFit: 1
  570. m_MinSize: 10
  571. m_MaxSize: 50
  572. m_Alignment: 3
  573. m_AlignByGeometry: 1
  574. m_RichText: 1
  575. m_HorizontalOverflow: 0
  576. m_VerticalOverflow: 0
  577. m_LineSpacing: 1
  578. m_Text: Tyra
  579. --- !u!222 &203235339
  580. CanvasRenderer:
  581. m_ObjectHideFlags: 0
  582. m_PrefabParentObject: {fileID: 222797430544464374, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  583. type: 2}
  584. m_PrefabInternal: {fileID: 774040002}
  585. m_GameObject: {fileID: 203235336}
  586. --- !u!1 &300609391
  587. GameObject:
  588. m_ObjectHideFlags: 0
  589. m_PrefabParentObject: {fileID: 1875105572587428, guid: 9301daacae57091409db44ffaf9b5d9c,
  590. type: 2}
  591. m_PrefabInternal: {fileID: 2067816372}
  592. serializedVersion: 5
  593. m_Component:
  594. - component: {fileID: 300609392}
  595. - component: {fileID: 300609395}
  596. - component: {fileID: 300609394}
  597. - component: {fileID: 300609393}
  598. m_Layer: 0
  599. m_Name: Text
  600. m_TagString: Untagged
  601. m_Icon: {fileID: 0}
  602. m_NavMeshLayer: 0
  603. m_StaticEditorFlags: 0
  604. m_IsActive: 1
  605. --- !u!224 &300609392
  606. RectTransform:
  607. m_ObjectHideFlags: 0
  608. m_PrefabParentObject: {fileID: 224096224457427970, guid: 9301daacae57091409db44ffaf9b5d9c,
  609. type: 2}
  610. m_PrefabInternal: {fileID: 2067816372}
  611. m_GameObject: {fileID: 300609391}
  612. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  613. m_LocalPosition: {x: 0, y: 0, z: 0}
  614. m_LocalScale: {x: 1, y: 1, z: 1}
  615. m_Children: []
  616. m_Father: {fileID: 1433921937}
  617. m_RootOrder: 1
  618. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  619. m_AnchorMin: {x: 0.06654276, y: 0.09185203}
  620. m_AnchorMax: {x: 0.934604, y: 0.68600005}
  621. m_AnchoredPosition: {x: 0.49996948, y: 3.9979858}
  622. m_SizeDelta: {x: -0.099999905, y: -2.0960007}
  623. m_Pivot: {x: 0.5, y: 0.5}
  624. --- !u!114 &300609393
  625. MonoBehaviour:
  626. m_ObjectHideFlags: 0
  627. m_PrefabParentObject: {fileID: 114607489201959694, guid: 9301daacae57091409db44ffaf9b5d9c,
  628. type: 2}
  629. m_PrefabInternal: {fileID: 2067816372}
  630. m_GameObject: {fileID: 300609391}
  631. m_Enabled: 1
  632. m_EditorHideFlags: 0
  633. m_Script: {fileID: 1573420865, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  634. m_Name:
  635. m_EditorClassIdentifier:
  636. m_EffectColor: {r: 0, g: 0, b: 0, a: 0.5}
  637. m_EffectDistance: {x: 2, y: -2}
  638. m_UseGraphicAlpha: 1
  639. --- !u!114 &300609394
  640. MonoBehaviour:
  641. m_ObjectHideFlags: 0
  642. m_PrefabParentObject: {fileID: 114876617235902266, guid: 9301daacae57091409db44ffaf9b5d9c,
  643. type: 2}
  644. m_PrefabInternal: {fileID: 2067816372}
  645. m_GameObject: {fileID: 300609391}
  646. m_Enabled: 1
  647. m_EditorHideFlags: 0
  648. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  649. m_Name:
  650. m_EditorClassIdentifier:
  651. m_Material: {fileID: 0}
  652. m_Color: {r: 1, g: 1, b: 1, a: 1}
  653. m_RaycastTarget: 1
  654. m_OnCullStateChanged:
  655. m_PersistentCalls:
  656. m_Calls: []
  657. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  658. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  659. m_FontData:
  660. m_Font: {fileID: 12800000, guid: 5ca928efea4136b4d9460387747d3580, type: 3}
  661. m_FontSize: 14
  662. m_FontStyle: 0
  663. m_BestFit: 1
  664. m_MinSize: 10
  665. m_MaxSize: 55
  666. m_Alignment: 4
  667. m_AlignByGeometry: 0
  668. m_RichText: 1
  669. m_HorizontalOverflow: 0
  670. m_VerticalOverflow: 0
  671. m_LineSpacing: 0.8
  672. m_Text: 'This device, OS, or software is not
  673. compatible with ANTM Game.
  674. Future versions of the game may support your device,
  675. no currently.'
  676. --- !u!222 &300609395
  677. CanvasRenderer:
  678. m_ObjectHideFlags: 0
  679. m_PrefabParentObject: {fileID: 222028993117252884, guid: 9301daacae57091409db44ffaf9b5d9c,
  680. type: 2}
  681. m_PrefabInternal: {fileID: 2067816372}
  682. m_GameObject: {fileID: 300609391}
  683. --- !u!1 &344686885
  684. GameObject:
  685. m_ObjectHideFlags: 0
  686. m_PrefabParentObject: {fileID: 0}
  687. m_PrefabInternal: {fileID: 0}
  688. serializedVersion: 5
  689. m_Component:
  690. - component: {fileID: 344686890}
  691. - component: {fileID: 344686889}
  692. - component: {fileID: 344686888}
  693. - component: {fileID: 344686887}
  694. - component: {fileID: 344686886}
  695. m_Layer: 0
  696. m_Name: Main Camera
  697. m_TagString: MainCamera
  698. m_Icon: {fileID: 0}
  699. m_NavMeshLayer: 0
  700. m_StaticEditorFlags: 0
  701. m_IsActive: 1
  702. --- !u!81 &344686886
  703. AudioListener:
  704. m_ObjectHideFlags: 0
  705. m_PrefabParentObject: {fileID: 0}
  706. m_PrefabInternal: {fileID: 0}
  707. m_GameObject: {fileID: 344686885}
  708. m_Enabled: 1
  709. --- !u!124 &344686887
  710. Behaviour:
  711. m_ObjectHideFlags: 0
  712. m_PrefabParentObject: {fileID: 0}
  713. m_PrefabInternal: {fileID: 0}
  714. m_GameObject: {fileID: 344686885}
  715. m_Enabled: 1
  716. --- !u!92 &344686888
  717. Behaviour:
  718. m_ObjectHideFlags: 0
  719. m_PrefabParentObject: {fileID: 0}
  720. m_PrefabInternal: {fileID: 0}
  721. m_GameObject: {fileID: 344686885}
  722. m_Enabled: 1
  723. --- !u!20 &344686889
  724. Camera:
  725. m_ObjectHideFlags: 0
  726. m_PrefabParentObject: {fileID: 0}
  727. m_PrefabInternal: {fileID: 0}
  728. m_GameObject: {fileID: 344686885}
  729. m_Enabled: 1
  730. serializedVersion: 2
  731. m_ClearFlags: 2
  732. m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1}
  733. m_NormalizedViewPortRect:
  734. serializedVersion: 2
  735. x: 0
  736. y: 0
  737. width: 1
  738. height: 1
  739. near clip plane: 0.3
  740. far clip plane: 1000
  741. field of view: 25
  742. orthographic: 0
  743. orthographic size: 5
  744. m_Depth: 0
  745. m_CullingMask:
  746. serializedVersion: 2
  747. m_Bits: 4294967295
  748. m_RenderingPath: -1
  749. m_TargetTexture: {fileID: 0}
  750. m_TargetDisplay: 0
  751. m_TargetEye: 3
  752. m_HDR: 1
  753. m_AllowMSAA: 1
  754. m_AllowDynamicResolution: 0
  755. m_ForceIntoRT: 0
  756. m_OcclusionCulling: 1
  757. m_StereoConvergence: 10
  758. m_StereoSeparation: 0.022
  759. --- !u!4 &344686890
  760. Transform:
  761. m_ObjectHideFlags: 0
  762. m_PrefabParentObject: {fileID: 0}
  763. m_PrefabInternal: {fileID: 0}
  764. m_GameObject: {fileID: 344686885}
  765. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  766. m_LocalPosition: {x: -90.83005, y: 2.5599995, z: -11.121138}
  767. m_LocalScale: {x: 1, y: 1, z: 1}
  768. m_Children: []
  769. m_Father: {fileID: 0}
  770. m_RootOrder: 0
  771. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  772. --- !u!1 &355912977
  773. GameObject:
  774. m_ObjectHideFlags: 0
  775. m_PrefabParentObject: {fileID: 0}
  776. m_PrefabInternal: {fileID: 0}
  777. serializedVersion: 5
  778. m_Component:
  779. - component: {fileID: 355912978}
  780. - component: {fileID: 355912981}
  781. - component: {fileID: 355912980}
  782. - component: {fileID: 355912979}
  783. - component: {fileID: 355912982}
  784. - component: {fileID: 355912983}
  785. m_Layer: 0
  786. m_Name: Canvas
  787. m_TagString: Untagged
  788. m_Icon: {fileID: 0}
  789. m_NavMeshLayer: 0
  790. m_StaticEditorFlags: 0
  791. m_IsActive: 1
  792. --- !u!224 &355912978
  793. RectTransform:
  794. m_ObjectHideFlags: 0
  795. m_PrefabParentObject: {fileID: 0}
  796. m_PrefabInternal: {fileID: 0}
  797. m_GameObject: {fileID: 355912977}
  798. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  799. m_LocalPosition: {x: 0, y: 0, z: 0}
  800. m_LocalScale: {x: 0, y: 0, z: 0}
  801. m_Children:
  802. - {fileID: 1338291960}
  803. - {fileID: 1615544599}
  804. - {fileID: 1433921937}
  805. m_Father: {fileID: 451495054}
  806. m_RootOrder: 0
  807. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  808. m_AnchorMin: {x: 0, y: 0}
  809. m_AnchorMax: {x: 0, y: 0}
  810. m_AnchoredPosition: {x: 0, y: 0}
  811. m_SizeDelta: {x: 0, y: 0}
  812. m_Pivot: {x: 0, y: 0}
  813. --- !u!114 &355912979
  814. MonoBehaviour:
  815. m_ObjectHideFlags: 0
  816. m_PrefabParentObject: {fileID: 0}
  817. m_PrefabInternal: {fileID: 0}
  818. m_GameObject: {fileID: 355912977}
  819. m_Enabled: 1
  820. m_EditorHideFlags: 0
  821. m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  822. m_Name:
  823. m_EditorClassIdentifier:
  824. m_IgnoreReversedGraphics: 1
  825. m_BlockingObjects: 0
  826. m_BlockingMask:
  827. serializedVersion: 2
  828. m_Bits: 4294967295
  829. --- !u!114 &355912980
  830. MonoBehaviour:
  831. m_ObjectHideFlags: 0
  832. m_PrefabParentObject: {fileID: 0}
  833. m_PrefabInternal: {fileID: 0}
  834. m_GameObject: {fileID: 355912977}
  835. m_Enabled: 1
  836. m_EditorHideFlags: 0
  837. m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  838. m_Name:
  839. m_EditorClassIdentifier:
  840. m_UiScaleMode: 1
  841. m_ReferencePixelsPerUnit: 100
  842. m_ScaleFactor: 1
  843. m_ReferenceResolution: {x: 1920, y: 1080}
  844. m_ScreenMatchMode: 0
  845. m_MatchWidthOrHeight: 0.5
  846. m_PhysicalUnit: 3
  847. m_FallbackScreenDPI: 96
  848. m_DefaultSpriteDPI: 96
  849. m_DynamicPixelsPerUnit: 1
  850. --- !u!223 &355912981
  851. Canvas:
  852. m_ObjectHideFlags: 0
  853. m_PrefabParentObject: {fileID: 0}
  854. m_PrefabInternal: {fileID: 0}
  855. m_GameObject: {fileID: 355912977}
  856. m_Enabled: 1
  857. serializedVersion: 3
  858. m_RenderMode: 0
  859. m_Camera: {fileID: 0}
  860. m_PlaneDistance: 100
  861. m_PixelPerfect: 0
  862. m_ReceivesEvents: 1
  863. m_OverrideSorting: 0
  864. m_OverridePixelPerfect: 0
  865. m_SortingBucketNormalizedSize: 0
  866. m_AdditionalShaderChannelsFlag: 0
  867. m_SortingLayerID: 0
  868. m_SortingOrder: 0
  869. m_TargetDisplay: 0
  870. --- !u!114 &355912982
  871. MonoBehaviour:
  872. m_ObjectHideFlags: 0
  873. m_PrefabParentObject: {fileID: 0}
  874. m_PrefabInternal: {fileID: 0}
  875. m_GameObject: {fileID: 355912977}
  876. m_Enabled: 1
  877. m_EditorHideFlags: 0
  878. m_Script: {fileID: 11500000, guid: 90196abaa41c8044f8928da6dc47a6d3, type: 3}
  879. m_Name:
  880. m_EditorClassIdentifier:
  881. OnValidationSuccess:
  882. m_PersistentCalls:
  883. m_Calls:
  884. - m_Target: {fileID: 774040003}
  885. m_MethodName: SetActive
  886. m_Mode: 6
  887. m_Arguments:
  888. m_ObjectArgument: {fileID: 0}
  889. m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
  890. m_IntArgument: 0
  891. m_FloatArgument: 0
  892. m_StringArgument:
  893. m_BoolArgument: 1
  894. m_CallState: 2
  895. m_TypeName: UnityEngine.Events.UnityEvent, UnityEngine.CoreModule, Version=0.0.0.0,
  896. Culture=neutral, PublicKeyToken=null
  897. ContinueScene:
  898. m_PersistentCalls:
  899. m_Calls:
  900. - m_Target: {fileID: 774040003}
  901. m_MethodName: SetActive
  902. m_Mode: 6
  903. m_Arguments:
  904. m_ObjectArgument: {fileID: 0}
  905. m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
  906. m_IntArgument: 0
  907. m_FloatArgument: 0
  908. m_StringArgument:
  909. m_BoolArgument: 0
  910. m_CallState: 2
  911. - m_Target: {fileID: 355912983}
  912. m_MethodName: LoadScene
  913. m_Mode: 1
  914. m_Arguments:
  915. m_ObjectArgument: {fileID: 0}
  916. m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
  917. m_IntArgument: 0
  918. m_FloatArgument: 0
  919. m_StringArgument:
  920. m_BoolArgument: 0
  921. m_CallState: 2
  922. m_TypeName: UnityEngine.Events.UnityEvent, UnityEngine.CoreModule, Version=0.0.0.0,
  923. Culture=neutral, PublicKeyToken=null
  924. OnConnectionFailed:
  925. m_PersistentCalls:
  926. m_Calls:
  927. - m_Target: {fileID: 1615544600}
  928. m_MethodName: SetActive
  929. m_Mode: 6
  930. m_Arguments:
  931. m_ObjectArgument: {fileID: 0}
  932. m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
  933. m_IntArgument: 0
  934. m_FloatArgument: 0
  935. m_StringArgument:
  936. m_BoolArgument: 1
  937. m_CallState: 2
  938. m_TypeName: UnityEngine.Events.UnityEvent, UnityEngine.CoreModule, Version=0.0.0.0,
  939. Culture=neutral, PublicKeyToken=null
  940. OnDeviceCompatibilityFailed:
  941. m_PersistentCalls:
  942. m_Calls:
  943. - m_Target: {fileID: 1433921938}
  944. m_MethodName: SetActive
  945. m_Mode: 6
  946. m_Arguments:
  947. m_ObjectArgument: {fileID: 0}
  948. m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
  949. m_IntArgument: 0
  950. m_FloatArgument: 0
  951. m_StringArgument:
  952. m_BoolArgument: 1
  953. m_CallState: 2
  954. m_TypeName: UnityEngine.Events.UnityEvent, UnityEngine.CoreModule, Version=0.0.0.0,
  955. Culture=neutral, PublicKeyToken=null
  956. --- !u!114 &355912983
  957. MonoBehaviour:
  958. m_ObjectHideFlags: 0
  959. m_PrefabParentObject: {fileID: 0}
  960. m_PrefabInternal: {fileID: 0}
  961. m_GameObject: {fileID: 355912977}
  962. m_Enabled: 1
  963. m_EditorHideFlags: 0
  964. m_Script: {fileID: 11500000, guid: b4fd9458e9a5c86408f5db2587f02348, type: 3}
  965. m_Name:
  966. m_EditorClassIdentifier:
  967. sceneName: Authentication
  968. delay: 0
  969. --- !u!1 &377865604
  970. GameObject:
  971. m_ObjectHideFlags: 0
  972. m_PrefabParentObject: {fileID: 1814252799137698, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  973. type: 2}
  974. m_PrefabInternal: {fileID: 774040002}
  975. serializedVersion: 5
  976. m_Component:
  977. - component: {fileID: 377865605}
  978. m_Layer: 5
  979. m_Name: Sliding Area
  980. m_TagString: Untagged
  981. m_Icon: {fileID: 0}
  982. m_NavMeshLayer: 0
  983. m_StaticEditorFlags: 0
  984. m_IsActive: 1
  985. --- !u!224 &377865605
  986. RectTransform:
  987. m_ObjectHideFlags: 0
  988. m_PrefabParentObject: {fileID: 224211641643666328, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  989. type: 2}
  990. m_PrefabInternal: {fileID: 774040002}
  991. m_GameObject: {fileID: 377865604}
  992. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  993. m_LocalPosition: {x: 0, y: 0, z: 0}
  994. m_LocalScale: {x: 1, y: 1, z: 1}
  995. m_Children:
  996. - {fileID: 556750650}
  997. m_Father: {fileID: 1954858709}
  998. m_RootOrder: 0
  999. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1000. m_AnchorMin: {x: 0, y: 0}
  1001. m_AnchorMax: {x: 1, y: 1}
  1002. m_AnchoredPosition: {x: 0.00003194809, y: 0}
  1003. m_SizeDelta: {x: 0, y: 0}
  1004. m_Pivot: {x: 0.5, y: 0.5}
  1005. --- !u!1 &451495053
  1006. GameObject:
  1007. m_ObjectHideFlags: 0
  1008. m_PrefabParentObject: {fileID: 0}
  1009. m_PrefabInternal: {fileID: 0}
  1010. serializedVersion: 5
  1011. m_Component:
  1012. - component: {fileID: 451495054}
  1013. - component: {fileID: 451495055}
  1014. - component: {fileID: 451495057}
  1015. - component: {fileID: 451495059}
  1016. - component: {fileID: 451495058}
  1017. - component: {fileID: 451495056}
  1018. m_Layer: 0
  1019. m_Name: Canvas
  1020. m_TagString: Untagged
  1021. m_Icon: {fileID: 0}
  1022. m_NavMeshLayer: 0
  1023. m_StaticEditorFlags: 0
  1024. m_IsActive: 1
  1025. --- !u!4 &451495054
  1026. Transform:
  1027. m_ObjectHideFlags: 0
  1028. m_PrefabParentObject: {fileID: 0}
  1029. m_PrefabInternal: {fileID: 0}
  1030. m_GameObject: {fileID: 451495053}
  1031. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1032. m_LocalPosition: {x: 0, y: 0, z: 0}
  1033. m_LocalScale: {x: 1, y: 1, z: 1}
  1034. m_Children:
  1035. - {fileID: 355912978}
  1036. - {fileID: 167410247}
  1037. m_Father: {fileID: 0}
  1038. m_RootOrder: 1
  1039. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1040. --- !u!114 &451495055
  1041. MonoBehaviour:
  1042. m_ObjectHideFlags: 0
  1043. m_PrefabParentObject: {fileID: 0}
  1044. m_PrefabInternal: {fileID: 0}
  1045. m_GameObject: {fileID: 451495053}
  1046. m_Enabled: 1
  1047. m_EditorHideFlags: 0
  1048. m_Script: {fileID: 11500000, guid: cde77e63616c12e4ebc9c4c79f3add30, type: 3}
  1049. m_Name:
  1050. m_EditorClassIdentifier:
  1051. UI_AudioSource: {fileID: 451495057}
  1052. ambient_AudioSource: {fileID: 451495059}
  1053. music_AudioSource: {fileID: 451495058}
  1054. fx_AudioSource: {fileID: 451495056}
  1055. --- !u!82 &451495056
  1056. AudioSource:
  1057. m_ObjectHideFlags: 0
  1058. m_PrefabParentObject: {fileID: 0}
  1059. m_PrefabInternal: {fileID: 0}
  1060. m_GameObject: {fileID: 451495053}
  1061. m_Enabled: 1
  1062. serializedVersion: 4
  1063. OutputAudioMixerGroup: {fileID: 243325594123460478, guid: 96d256fab2995e14788e98487f169a7d,
  1064. type: 2}
  1065. m_audioClip: {fileID: 0}
  1066. m_PlayOnAwake: 1
  1067. m_Volume: 1
  1068. m_Pitch: 1
  1069. Loop: 0
  1070. Mute: 0
  1071. Spatialize: 0
  1072. SpatializePostEffects: 0
  1073. Priority: 128
  1074. DopplerLevel: 1
  1075. MinDistance: 1
  1076. MaxDistance: 500
  1077. Pan2D: 0
  1078. rolloffMode: 0
  1079. BypassEffects: 0
  1080. BypassListenerEffects: 0
  1081. BypassReverbZones: 0
  1082. rolloffCustomCurve:
  1083. serializedVersion: 2
  1084. m_Curve:
  1085. - serializedVersion: 2
  1086. time: 0
  1087. value: 1
  1088. inSlope: 0
  1089. outSlope: 0
  1090. tangentMode: 0
  1091. - serializedVersion: 2
  1092. time: 1
  1093. value: 0
  1094. inSlope: 0
  1095. outSlope: 0
  1096. tangentMode: 0
  1097. m_PreInfinity: 2
  1098. m_PostInfinity: 2
  1099. m_RotationOrder: 4
  1100. panLevelCustomCurve:
  1101. serializedVersion: 2
  1102. m_Curve:
  1103. - serializedVersion: 2
  1104. time: 0
  1105. value: 0
  1106. inSlope: 0
  1107. outSlope: 0
  1108. tangentMode: 0
  1109. m_PreInfinity: 2
  1110. m_PostInfinity: 2
  1111. m_RotationOrder: 0
  1112. spreadCustomCurve:
  1113. serializedVersion: 2
  1114. m_Curve:
  1115. - serializedVersion: 2
  1116. time: 0
  1117. value: 0
  1118. inSlope: 0
  1119. outSlope: 0
  1120. tangentMode: 0
  1121. m_PreInfinity: 2
  1122. m_PostInfinity: 2
  1123. m_RotationOrder: 0
  1124. reverbZoneMixCustomCurve:
  1125. serializedVersion: 2
  1126. m_Curve:
  1127. - serializedVersion: 2
  1128. time: 0
  1129. value: 1
  1130. inSlope: 0
  1131. outSlope: 0
  1132. tangentMode: 0
  1133. m_PreInfinity: 2
  1134. m_PostInfinity: 2
  1135. m_RotationOrder: 0
  1136. --- !u!82 &451495057
  1137. AudioSource:
  1138. m_ObjectHideFlags: 0
  1139. m_PrefabParentObject: {fileID: 0}
  1140. m_PrefabInternal: {fileID: 0}
  1141. m_GameObject: {fileID: 451495053}
  1142. m_Enabled: 1
  1143. serializedVersion: 4
  1144. OutputAudioMixerGroup: {fileID: 243685011237149094, guid: 96d256fab2995e14788e98487f169a7d,
  1145. type: 2}
  1146. m_audioClip: {fileID: 0}
  1147. m_PlayOnAwake: 0
  1148. m_Volume: 1
  1149. m_Pitch: 1
  1150. Loop: 0
  1151. Mute: 0
  1152. Spatialize: 0
  1153. SpatializePostEffects: 0
  1154. Priority: 128
  1155. DopplerLevel: 1
  1156. MinDistance: 1
  1157. MaxDistance: 500
  1158. Pan2D: 0
  1159. rolloffMode: 0
  1160. BypassEffects: 0
  1161. BypassListenerEffects: 0
  1162. BypassReverbZones: 0
  1163. rolloffCustomCurve:
  1164. serializedVersion: 2
  1165. m_Curve:
  1166. - serializedVersion: 2
  1167. time: 0
  1168. value: 1
  1169. inSlope: 0
  1170. outSlope: 0
  1171. tangentMode: 0
  1172. - serializedVersion: 2
  1173. time: 1
  1174. value: 0
  1175. inSlope: 0
  1176. outSlope: 0
  1177. tangentMode: 0
  1178. m_PreInfinity: 2
  1179. m_PostInfinity: 2
  1180. m_RotationOrder: 4
  1181. panLevelCustomCurve:
  1182. serializedVersion: 2
  1183. m_Curve:
  1184. - serializedVersion: 2
  1185. time: 0
  1186. value: 0
  1187. inSlope: 0
  1188. outSlope: 0
  1189. tangentMode: 0
  1190. m_PreInfinity: 2
  1191. m_PostInfinity: 2
  1192. m_RotationOrder: 0
  1193. spreadCustomCurve:
  1194. serializedVersion: 2
  1195. m_Curve:
  1196. - serializedVersion: 2
  1197. time: 0
  1198. value: 0
  1199. inSlope: 0
  1200. outSlope: 0
  1201. tangentMode: 0
  1202. m_PreInfinity: 2
  1203. m_PostInfinity: 2
  1204. m_RotationOrder: 0
  1205. reverbZoneMixCustomCurve:
  1206. serializedVersion: 2
  1207. m_Curve:
  1208. - serializedVersion: 2
  1209. time: 0
  1210. value: 1
  1211. inSlope: 0
  1212. outSlope: 0
  1213. tangentMode: 0
  1214. m_PreInfinity: 2
  1215. m_PostInfinity: 2
  1216. m_RotationOrder: 0
  1217. --- !u!82 &451495058
  1218. AudioSource:
  1219. m_ObjectHideFlags: 0
  1220. m_PrefabParentObject: {fileID: 0}
  1221. m_PrefabInternal: {fileID: 0}
  1222. m_GameObject: {fileID: 451495053}
  1223. m_Enabled: 1
  1224. serializedVersion: 4
  1225. OutputAudioMixerGroup: {fileID: 243253838636747464, guid: 96d256fab2995e14788e98487f169a7d,
  1226. type: 2}
  1227. m_audioClip: {fileID: 0}
  1228. m_PlayOnAwake: 1
  1229. m_Volume: 1
  1230. m_Pitch: 1
  1231. Loop: 0
  1232. Mute: 0
  1233. Spatialize: 0
  1234. SpatializePostEffects: 0
  1235. Priority: 128
  1236. DopplerLevel: 1
  1237. MinDistance: 1
  1238. MaxDistance: 500
  1239. Pan2D: 0
  1240. rolloffMode: 0
  1241. BypassEffects: 0
  1242. BypassListenerEffects: 0
  1243. BypassReverbZones: 0
  1244. rolloffCustomCurve:
  1245. serializedVersion: 2
  1246. m_Curve:
  1247. - serializedVersion: 2
  1248. time: 0
  1249. value: 1
  1250. inSlope: 0
  1251. outSlope: 0
  1252. tangentMode: 0
  1253. - serializedVersion: 2
  1254. time: 1
  1255. value: 0
  1256. inSlope: 0
  1257. outSlope: 0
  1258. tangentMode: 0
  1259. m_PreInfinity: 2
  1260. m_PostInfinity: 2
  1261. m_RotationOrder: 4
  1262. panLevelCustomCurve:
  1263. serializedVersion: 2
  1264. m_Curve:
  1265. - serializedVersion: 2
  1266. time: 0
  1267. value: 0
  1268. inSlope: 0
  1269. outSlope: 0
  1270. tangentMode: 0
  1271. m_PreInfinity: 2
  1272. m_PostInfinity: 2
  1273. m_RotationOrder: 0
  1274. spreadCustomCurve:
  1275. serializedVersion: 2
  1276. m_Curve:
  1277. - serializedVersion: 2
  1278. time: 0
  1279. value: 0
  1280. inSlope: 0
  1281. outSlope: 0
  1282. tangentMode: 0
  1283. m_PreInfinity: 2
  1284. m_PostInfinity: 2
  1285. m_RotationOrder: 0
  1286. reverbZoneMixCustomCurve:
  1287. serializedVersion: 2
  1288. m_Curve:
  1289. - serializedVersion: 2
  1290. time: 0
  1291. value: 1
  1292. inSlope: 0
  1293. outSlope: 0
  1294. tangentMode: 0
  1295. m_PreInfinity: 2
  1296. m_PostInfinity: 2
  1297. m_RotationOrder: 0
  1298. --- !u!82 &451495059
  1299. AudioSource:
  1300. m_ObjectHideFlags: 0
  1301. m_PrefabParentObject: {fileID: 0}
  1302. m_PrefabInternal: {fileID: 0}
  1303. m_GameObject: {fileID: 451495053}
  1304. m_Enabled: 1
  1305. serializedVersion: 4
  1306. OutputAudioMixerGroup: {fileID: 243004584853083714, guid: 96d256fab2995e14788e98487f169a7d,
  1307. type: 2}
  1308. m_audioClip: {fileID: 0}
  1309. m_PlayOnAwake: 1
  1310. m_Volume: 1
  1311. m_Pitch: 1
  1312. Loop: 0
  1313. Mute: 0
  1314. Spatialize: 0
  1315. SpatializePostEffects: 0
  1316. Priority: 128
  1317. DopplerLevel: 1
  1318. MinDistance: 1
  1319. MaxDistance: 500
  1320. Pan2D: 0
  1321. rolloffMode: 0
  1322. BypassEffects: 0
  1323. BypassListenerEffects: 0
  1324. BypassReverbZones: 0
  1325. rolloffCustomCurve:
  1326. serializedVersion: 2
  1327. m_Curve:
  1328. - serializedVersion: 2
  1329. time: 0
  1330. value: 1
  1331. inSlope: 0
  1332. outSlope: 0
  1333. tangentMode: 0
  1334. - serializedVersion: 2
  1335. time: 1
  1336. value: 0
  1337. inSlope: 0
  1338. outSlope: 0
  1339. tangentMode: 0
  1340. m_PreInfinity: 2
  1341. m_PostInfinity: 2
  1342. m_RotationOrder: 4
  1343. panLevelCustomCurve:
  1344. serializedVersion: 2
  1345. m_Curve:
  1346. - serializedVersion: 2
  1347. time: 0
  1348. value: 0
  1349. inSlope: 0
  1350. outSlope: 0
  1351. tangentMode: 0
  1352. m_PreInfinity: 2
  1353. m_PostInfinity: 2
  1354. m_RotationOrder: 0
  1355. spreadCustomCurve:
  1356. serializedVersion: 2
  1357. m_Curve:
  1358. - serializedVersion: 2
  1359. time: 0
  1360. value: 0
  1361. inSlope: 0
  1362. outSlope: 0
  1363. tangentMode: 0
  1364. m_PreInfinity: 2
  1365. m_PostInfinity: 2
  1366. m_RotationOrder: 0
  1367. reverbZoneMixCustomCurve:
  1368. serializedVersion: 2
  1369. m_Curve:
  1370. - serializedVersion: 2
  1371. time: 0
  1372. value: 1
  1373. inSlope: 0
  1374. outSlope: 0
  1375. tangentMode: 0
  1376. m_PreInfinity: 2
  1377. m_PostInfinity: 2
  1378. m_RotationOrder: 0
  1379. --- !u!1 &464102026
  1380. GameObject:
  1381. m_ObjectHideFlags: 0
  1382. m_PrefabParentObject: {fileID: 1281436318328770, guid: bcd76c1e78564ad4cafec91e517586af,
  1383. type: 2}
  1384. m_PrefabInternal: {fileID: 1615544598}
  1385. serializedVersion: 5
  1386. m_Component:
  1387. - component: {fileID: 464102027}
  1388. - component: {fileID: 464102029}
  1389. - component: {fileID: 464102028}
  1390. m_Layer: 0
  1391. m_Name: Text
  1392. m_TagString: Untagged
  1393. m_Icon: {fileID: 0}
  1394. m_NavMeshLayer: 0
  1395. m_StaticEditorFlags: 0
  1396. m_IsActive: 1
  1397. --- !u!224 &464102027
  1398. RectTransform:
  1399. m_ObjectHideFlags: 0
  1400. m_PrefabParentObject: {fileID: 224145417475256740, guid: bcd76c1e78564ad4cafec91e517586af,
  1401. type: 2}
  1402. m_PrefabInternal: {fileID: 1615544598}
  1403. m_GameObject: {fileID: 464102026}
  1404. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1405. m_LocalPosition: {x: 0, y: 0, z: 0}
  1406. m_LocalScale: {x: 1, y: 1, z: 1}
  1407. m_Children: []
  1408. m_Father: {fileID: 2132855619}
  1409. m_RootOrder: 1
  1410. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1411. m_AnchorMin: {x: 0.28373632, y: 0}
  1412. m_AnchorMax: {x: 0.8603958, y: 1}
  1413. m_AnchoredPosition: {x: -19.676, y: 0}
  1414. m_SizeDelta: {x: -38.952, y: 0}
  1415. m_Pivot: {x: 0.5, y: 0.5}
  1416. --- !u!114 &464102028
  1417. MonoBehaviour:
  1418. m_ObjectHideFlags: 0
  1419. m_PrefabParentObject: {fileID: 114578557421769198, guid: bcd76c1e78564ad4cafec91e517586af,
  1420. type: 2}
  1421. m_PrefabInternal: {fileID: 1615544598}
  1422. m_GameObject: {fileID: 464102026}
  1423. m_Enabled: 1
  1424. m_EditorHideFlags: 0
  1425. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1426. m_Name:
  1427. m_EditorClassIdentifier:
  1428. m_Material: {fileID: 0}
  1429. m_Color: {r: 1, g: 1, b: 1, a: 1}
  1430. m_RaycastTarget: 0
  1431. m_OnCullStateChanged:
  1432. m_PersistentCalls:
  1433. m_Calls: []
  1434. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  1435. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  1436. m_FontData:
  1437. m_Font: {fileID: 12800000, guid: 783dedb9a9273284693e4cdbeaeecf44, type: 3}
  1438. m_FontSize: 14
  1439. m_FontStyle: 0
  1440. m_BestFit: 1
  1441. m_MinSize: 10
  1442. m_MaxSize: 55
  1443. m_Alignment: 4
  1444. m_AlignByGeometry: 1
  1445. m_RichText: 1
  1446. m_HorizontalOverflow: 0
  1447. m_VerticalOverflow: 0
  1448. m_LineSpacing: 1
  1449. m_Text: Close
  1450. --- !u!222 &464102029
  1451. CanvasRenderer:
  1452. m_ObjectHideFlags: 0
  1453. m_PrefabParentObject: {fileID: 222850889114298948, guid: bcd76c1e78564ad4cafec91e517586af,
  1454. type: 2}
  1455. m_PrefabInternal: {fileID: 1615544598}
  1456. m_GameObject: {fileID: 464102026}
  1457. --- !u!1 &519069286
  1458. GameObject:
  1459. m_ObjectHideFlags: 0
  1460. m_PrefabParentObject: {fileID: 1476811366408222, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1461. type: 2}
  1462. m_PrefabInternal: {fileID: 774040002}
  1463. serializedVersion: 5
  1464. m_Component:
  1465. - component: {fileID: 519069287}
  1466. - component: {fileID: 519069289}
  1467. - component: {fileID: 519069288}
  1468. m_Layer: 0
  1469. m_Name: Image - tyra
  1470. m_TagString: Untagged
  1471. m_Icon: {fileID: 0}
  1472. m_NavMeshLayer: 0
  1473. m_StaticEditorFlags: 0
  1474. m_IsActive: 1
  1475. --- !u!224 &519069287
  1476. RectTransform:
  1477. m_ObjectHideFlags: 0
  1478. m_PrefabParentObject: {fileID: 224790033321900386, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1479. type: 2}
  1480. m_PrefabInternal: {fileID: 774040002}
  1481. m_GameObject: {fileID: 519069286}
  1482. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1483. m_LocalPosition: {x: 0, y: 0, z: 0}
  1484. m_LocalScale: {x: 1, y: 1, z: 1}
  1485. m_Children:
  1486. - {fileID: 854313225}
  1487. m_Father: {fileID: 1984960086}
  1488. m_RootOrder: 0
  1489. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1490. m_AnchorMin: {x: 0, y: 0}
  1491. m_AnchorMax: {x: 0, y: 1}
  1492. m_AnchoredPosition: {x: 101.64038, y: 41.46994}
  1493. m_SizeDelta: {x: 748, y: -83.6}
  1494. m_Pivot: {x: 0, y: 0.5}
  1495. --- !u!114 &519069288
  1496. MonoBehaviour:
  1497. m_ObjectHideFlags: 0
  1498. m_PrefabParentObject: {fileID: 114501514819136668, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1499. type: 2}
  1500. m_PrefabInternal: {fileID: 774040002}
  1501. m_GameObject: {fileID: 519069286}
  1502. m_Enabled: 1
  1503. m_EditorHideFlags: 0
  1504. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1505. m_Name:
  1506. m_EditorClassIdentifier:
  1507. m_Material: {fileID: 0}
  1508. m_Color: {r: 1, g: 1, b: 1, a: 1}
  1509. m_RaycastTarget: 1
  1510. m_OnCullStateChanged:
  1511. m_PersistentCalls:
  1512. m_Calls: []
  1513. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  1514. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  1515. m_Sprite: {fileID: 21300000, guid: aad6bf63c1b8c924ab3d12a91c1f4143, type: 3}
  1516. m_Type: 0
  1517. m_PreserveAspect: 1
  1518. m_FillCenter: 1
  1519. m_FillMethod: 4
  1520. m_FillAmount: 1
  1521. m_FillClockwise: 1
  1522. m_FillOrigin: 0
  1523. --- !u!222 &519069289
  1524. CanvasRenderer:
  1525. m_ObjectHideFlags: 0
  1526. m_PrefabParentObject: {fileID: 222048455648652652, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1527. type: 2}
  1528. m_PrefabInternal: {fileID: 774040002}
  1529. m_GameObject: {fileID: 519069286}
  1530. --- !u!1 &528814867
  1531. GameObject:
  1532. m_ObjectHideFlags: 0
  1533. m_PrefabParentObject: {fileID: 1183563202983352, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1534. type: 2}
  1535. m_PrefabInternal: {fileID: 774040002}
  1536. serializedVersion: 5
  1537. m_Component:
  1538. - component: {fileID: 528814868}
  1539. - component: {fileID: 528814870}
  1540. - component: {fileID: 528814869}
  1541. m_Layer: 0
  1542. m_Name: Text - Login
  1543. m_TagString: Untagged
  1544. m_Icon: {fileID: 0}
  1545. m_NavMeshLayer: 0
  1546. m_StaticEditorFlags: 0
  1547. m_IsActive: 1
  1548. --- !u!224 &528814868
  1549. RectTransform:
  1550. m_ObjectHideFlags: 0
  1551. m_PrefabParentObject: {fileID: 224930180511927560, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1552. type: 2}
  1553. m_PrefabInternal: {fileID: 774040002}
  1554. m_GameObject: {fileID: 528814867}
  1555. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1556. m_LocalPosition: {x: 0, y: 0, z: 0}
  1557. m_LocalScale: {x: 1, y: 1, z: 1}
  1558. m_Children: []
  1559. m_Father: {fileID: 1165288179}
  1560. m_RootOrder: 0
  1561. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1562. m_AnchorMin: {x: 0, y: 0}
  1563. m_AnchorMax: {x: 1, y: 1}
  1564. m_AnchoredPosition: {x: 16, y: 0.0000038146973}
  1565. m_SizeDelta: {x: -127.9, y: -17.6}
  1566. m_Pivot: {x: 0.5, y: 0.5}
  1567. --- !u!114 &528814869
  1568. MonoBehaviour:
  1569. m_ObjectHideFlags: 0
  1570. m_PrefabParentObject: {fileID: 114968810319862940, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1571. type: 2}
  1572. m_PrefabInternal: {fileID: 774040002}
  1573. m_GameObject: {fileID: 528814867}
  1574. m_Enabled: 1
  1575. m_EditorHideFlags: 0
  1576. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1577. m_Name:
  1578. m_EditorClassIdentifier:
  1579. m_Material: {fileID: 0}
  1580. m_Color: {r: 0, g: 0, b: 0, a: 1}
  1581. m_RaycastTarget: 1
  1582. m_OnCullStateChanged:
  1583. m_PersistentCalls:
  1584. m_Calls: []
  1585. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  1586. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  1587. m_FontData:
  1588. m_Font: {fileID: 12800000, guid: 89ed40ff90614a04c9cd25f5c5f55771, type: 3}
  1589. m_FontSize: 54
  1590. m_FontStyle: 0
  1591. m_BestFit: 0
  1592. m_MinSize: 0
  1593. m_MaxSize: 300
  1594. m_Alignment: 4
  1595. m_AlignByGeometry: 1
  1596. m_RichText: 1
  1597. m_HorizontalOverflow: 0
  1598. m_VerticalOverflow: 0
  1599. m_LineSpacing: 1
  1600. m_Text: Accept
  1601. --- !u!222 &528814870
  1602. CanvasRenderer:
  1603. m_ObjectHideFlags: 0
  1604. m_PrefabParentObject: {fileID: 222709349503926594, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1605. type: 2}
  1606. m_PrefabInternal: {fileID: 774040002}
  1607. m_GameObject: {fileID: 528814867}
  1608. --- !u!1 &556750649
  1609. GameObject:
  1610. m_ObjectHideFlags: 0
  1611. m_PrefabParentObject: {fileID: 1207853971644082, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1612. type: 2}
  1613. m_PrefabInternal: {fileID: 774040002}
  1614. serializedVersion: 5
  1615. m_Component:
  1616. - component: {fileID: 556750650}
  1617. - component: {fileID: 556750652}
  1618. - component: {fileID: 556750651}
  1619. m_Layer: 5
  1620. m_Name: Handle
  1621. m_TagString: Untagged
  1622. m_Icon: {fileID: 0}
  1623. m_NavMeshLayer: 0
  1624. m_StaticEditorFlags: 0
  1625. m_IsActive: 1
  1626. --- !u!224 &556750650
  1627. RectTransform:
  1628. m_ObjectHideFlags: 0
  1629. m_PrefabParentObject: {fileID: 224793741006881664, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1630. type: 2}
  1631. m_PrefabInternal: {fileID: 774040002}
  1632. m_GameObject: {fileID: 556750649}
  1633. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1634. m_LocalPosition: {x: 0, y: 0, z: 0}
  1635. m_LocalScale: {x: 1, y: 1, z: 1}
  1636. m_Children: []
  1637. m_Father: {fileID: 377865605}
  1638. m_RootOrder: 0
  1639. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1640. m_AnchorMin: {x: 0, y: 0.9935842}
  1641. m_AnchorMax: {x: 1, y: 1}
  1642. m_AnchoredPosition: {x: 565.9255, y: 881.09863}
  1643. m_SizeDelta: {x: 0, y: 0}
  1644. m_Pivot: {x: 0.5, y: 0.5}
  1645. --- !u!114 &556750651
  1646. MonoBehaviour:
  1647. m_ObjectHideFlags: 0
  1648. m_PrefabParentObject: {fileID: 114713904645639252, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1649. type: 2}
  1650. m_PrefabInternal: {fileID: 774040002}
  1651. m_GameObject: {fileID: 556750649}
  1652. m_Enabled: 1
  1653. m_EditorHideFlags: 0
  1654. m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  1655. m_Name:
  1656. m_EditorClassIdentifier:
  1657. m_Material: {fileID: 0}
  1658. m_Color: {r: 0, g: 0, b: 0, a: 0.19607843}
  1659. m_RaycastTarget: 1
  1660. m_OnCullStateChanged:
  1661. m_PersistentCalls:
  1662. m_Calls: []
  1663. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  1664. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  1665. m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
  1666. m_Type: 1
  1667. m_PreserveAspect: 0
  1668. m_FillCenter: 1
  1669. m_FillMethod: 4
  1670. m_FillAmount: 1
  1671. m_FillClockwise: 1
  1672. m_FillOrigin: 0
  1673. --- !u!222 &556750652
  1674. CanvasRenderer:
  1675. m_ObjectHideFlags: 0
  1676. m_PrefabParentObject: {fileID: 222271570822674854, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1677. type: 2}
  1678. m_PrefabInternal: {fileID: 774040002}
  1679. m_GameObject: {fileID: 556750649}
  1680. --- !u!1 &672553310
  1681. GameObject:
  1682. m_ObjectHideFlags: 0
  1683. m_PrefabParentObject: {fileID: 1828916027989892, guid: 9301daacae57091409db44ffaf9b5d9c,
  1684. type: 2}
  1685. m_PrefabInternal: {fileID: 2067816372}
  1686. serializedVersion: 5
  1687. m_Component:
  1688. - component: {fileID: 672553311}
  1689. - component: {fileID: 672553314}
  1690. - component: {fileID: 672553313}
  1691. - component: {fileID: 672553312}
  1692. m_Layer: 0
  1693. m_Name: BackGround - Error
  1694. m_TagString: Untagged
  1695. m_Icon: {fileID: 0}
  1696. m_NavMeshLayer: 0
  1697. m_StaticEditorFlags: 0
  1698. m_IsActive: 1
  1699. --- !u!224 &672553311
  1700. RectTransform:
  1701. m_ObjectHideFlags: 0
  1702. m_PrefabParentObject: {fileID: 224326462518852852, guid: 9301daacae57091409db44ffaf9b5d9c,
  1703. type: 2}
  1704. m_PrefabInternal: {fileID: 2067816372}
  1705. m_GameObject: {fileID: 672553310}
  1706. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  1707. m_LocalPosition: {x: 0, y: 0, z: 0}
  1708. m_LocalScale: {x: 1, y: 1, z: 1}
  1709. m_Children: []
  1710. m_Father: {fileID: 1433921937}
  1711. m_RootOrder: 0
  1712. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1713. m_AnchorMin: {x: 0.5, y: 0}
  1714. m_AnchorMax: {x: 0.5, y: 1}
  1715. m_AnchoredPosition: {x: 0, y: -38.675003}
  1716. m_SizeDelta: {x: 2250.755, y: 177.35}
  1717. m_Pivot: {x: 0.5, y: 0.5}
  1718. --- !u!114 &672553312
  1719. MonoBehaviour:
  1720. m_ObjectHideFlags: 0
  1721. m_PrefabParentObject: {fileID: 114534757854988906, guid: 9301daacae57091409db44ffaf9b5d9c,
  1722. type: 2}
  1723. m_PrefabInternal: {fileID: 2067816372}
  1724. m_GameObject: {fileID: 672553310}
  1725. m_Enabled: 1
  1726. m_EditorHideFlags: 0
  1727. m_Script: {fileID: -1254083943, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1728. m_Name:
  1729. m_EditorClassIdentifier:
  1730. m_AspectMode: 2
  1731. m_AspectRatio: 1.7902243
  1732. --- !u!114 &672553313
  1733. MonoBehaviour:
  1734. m_ObjectHideFlags: 0
  1735. m_PrefabParentObject: {fileID: 114175006791230994, guid: 9301daacae57091409db44ffaf9b5d9c,
  1736. type: 2}
  1737. m_PrefabInternal: {fileID: 2067816372}
  1738. m_GameObject: {fileID: 672553310}
  1739. m_Enabled: 1
  1740. m_EditorHideFlags: 0
  1741. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1742. m_Name:
  1743. m_EditorClassIdentifier:
  1744. m_Material: {fileID: 0}
  1745. m_Color: {r: 1, g: 1, b: 1, a: 1}
  1746. m_RaycastTarget: 1
  1747. m_OnCullStateChanged:
  1748. m_PersistentCalls:
  1749. m_Calls: []
  1750. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  1751. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  1752. m_Sprite: {fileID: 21300000, guid: b7f226c624cffc04787b3031bd5ba247, type: 3}
  1753. m_Type: 0
  1754. m_PreserveAspect: 0
  1755. m_FillCenter: 1
  1756. m_FillMethod: 4
  1757. m_FillAmount: 1
  1758. m_FillClockwise: 1
  1759. m_FillOrigin: 0
  1760. --- !u!222 &672553314
  1761. CanvasRenderer:
  1762. m_ObjectHideFlags: 0
  1763. m_PrefabParentObject: {fileID: 222943723978983902, guid: 9301daacae57091409db44ffaf9b5d9c,
  1764. type: 2}
  1765. m_PrefabInternal: {fileID: 2067816372}
  1766. m_GameObject: {fileID: 672553310}
  1767. --- !u!1001 &774040002
  1768. Prefab:
  1769. m_ObjectHideFlags: 0
  1770. serializedVersion: 2
  1771. m_Modification:
  1772. m_TransformParent: {fileID: 355912978}
  1773. m_Modifications:
  1774. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1775. type: 2}
  1776. propertyPath: m_LocalPosition.x
  1777. value: 0
  1778. objectReference: {fileID: 0}
  1779. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1780. type: 2}
  1781. propertyPath: m_LocalPosition.y
  1782. value: 0
  1783. objectReference: {fileID: 0}
  1784. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1785. type: 2}
  1786. propertyPath: m_LocalPosition.z
  1787. value: 0
  1788. objectReference: {fileID: 0}
  1789. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1790. type: 2}
  1791. propertyPath: m_LocalRotation.x
  1792. value: 0
  1793. objectReference: {fileID: 0}
  1794. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1795. type: 2}
  1796. propertyPath: m_LocalRotation.y
  1797. value: 0
  1798. objectReference: {fileID: 0}
  1799. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1800. type: 2}
  1801. propertyPath: m_LocalRotation.z
  1802. value: 0
  1803. objectReference: {fileID: 0}
  1804. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1805. type: 2}
  1806. propertyPath: m_LocalRotation.w
  1807. value: 1
  1808. objectReference: {fileID: 0}
  1809. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1810. type: 2}
  1811. propertyPath: m_RootOrder
  1812. value: 0
  1813. objectReference: {fileID: 0}
  1814. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1815. type: 2}
  1816. propertyPath: m_AnchoredPosition.x
  1817. value: 0
  1818. objectReference: {fileID: 0}
  1819. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1820. type: 2}
  1821. propertyPath: m_AnchoredPosition.y
  1822. value: 0
  1823. objectReference: {fileID: 0}
  1824. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1825. type: 2}
  1826. propertyPath: m_SizeDelta.x
  1827. value: 0
  1828. objectReference: {fileID: 0}
  1829. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1830. type: 2}
  1831. propertyPath: m_SizeDelta.y
  1832. value: 0
  1833. objectReference: {fileID: 0}
  1834. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1835. type: 2}
  1836. propertyPath: m_AnchorMin.x
  1837. value: 0
  1838. objectReference: {fileID: 0}
  1839. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1840. type: 2}
  1841. propertyPath: m_AnchorMin.y
  1842. value: 0
  1843. objectReference: {fileID: 0}
  1844. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1845. type: 2}
  1846. propertyPath: m_AnchorMax.x
  1847. value: 1
  1848. objectReference: {fileID: 0}
  1849. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1850. type: 2}
  1851. propertyPath: m_AnchorMax.y
  1852. value: 1
  1853. objectReference: {fileID: 0}
  1854. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1855. type: 2}
  1856. propertyPath: m_Pivot.x
  1857. value: 0.5
  1858. objectReference: {fileID: 0}
  1859. - target: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1860. type: 2}
  1861. propertyPath: m_Pivot.y
  1862. value: 0.5
  1863. objectReference: {fileID: 0}
  1864. - target: {fileID: 114055679647547742, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1865. type: 2}
  1866. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target
  1867. value:
  1868. objectReference: {fileID: 355912982}
  1869. m_RemovedComponents: []
  1870. m_ParentPrefab: {fileID: 100100000, guid: 239d5e37fc982974cbf2c2fb9da6f058, type: 2}
  1871. m_RootGameObject: {fileID: 774040003}
  1872. m_IsPrefabParent: 0
  1873. --- !u!1 &774040003
  1874. GameObject:
  1875. m_ObjectHideFlags: 0
  1876. m_PrefabParentObject: {fileID: 1018099758989734, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1877. type: 2}
  1878. m_PrefabInternal: {fileID: 774040002}
  1879. serializedVersion: 5
  1880. m_Component:
  1881. - component: {fileID: 1338291960}
  1882. - component: {fileID: 774040004}
  1883. m_Layer: 0
  1884. m_Name: Panel - Beta
  1885. m_TagString: Untagged
  1886. m_Icon: {fileID: 0}
  1887. m_NavMeshLayer: 0
  1888. m_StaticEditorFlags: 0
  1889. m_IsActive: 0
  1890. --- !u!114 &774040004
  1891. MonoBehaviour:
  1892. m_ObjectHideFlags: 0
  1893. m_PrefabParentObject: {fileID: 114884280602675494, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1894. type: 2}
  1895. m_PrefabInternal: {fileID: 774040002}
  1896. m_GameObject: {fileID: 774040003}
  1897. m_Enabled: 1
  1898. m_EditorHideFlags: 0
  1899. m_Script: {fileID: 11500000, guid: b4fd9458e9a5c86408f5db2587f02348, type: 3}
  1900. m_Name:
  1901. m_EditorClassIdentifier:
  1902. sceneName: Authentication
  1903. delay: 0
  1904. --- !u!1 &800564217
  1905. GameObject:
  1906. m_ObjectHideFlags: 0
  1907. m_PrefabParentObject: {fileID: 1935591331380580, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1908. type: 2}
  1909. m_PrefabInternal: {fileID: 774040002}
  1910. serializedVersion: 5
  1911. m_Component:
  1912. - component: {fileID: 800564218}
  1913. - component: {fileID: 800564220}
  1914. - component: {fileID: 800564219}
  1915. m_Layer: 0
  1916. m_Name: Image - Arrow
  1917. m_TagString: Untagged
  1918. m_Icon: {fileID: 0}
  1919. m_NavMeshLayer: 0
  1920. m_StaticEditorFlags: 0
  1921. m_IsActive: 1
  1922. --- !u!224 &800564218
  1923. RectTransform:
  1924. m_ObjectHideFlags: 0
  1925. m_PrefabParentObject: {fileID: 224183330300332408, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1926. type: 2}
  1927. m_PrefabInternal: {fileID: 774040002}
  1928. m_GameObject: {fileID: 800564217}
  1929. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  1930. m_LocalPosition: {x: 0, y: 0, z: 0}
  1931. m_LocalScale: {x: 0.33049303, y: 0.33049303, z: 0.33049303}
  1932. m_Children: []
  1933. m_Father: {fileID: 1938405412}
  1934. m_RootOrder: 3
  1935. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  1936. m_AnchorMin: {x: 0.9021741, y: 0.04652795}
  1937. m_AnchorMax: {x: 0.969413, y: 0.11382402}
  1938. m_AnchoredPosition: {x: -0.099998474, y: -0.30000305}
  1939. m_SizeDelta: {x: 36.339996, y: 26.439999}
  1940. m_Pivot: {x: 0.5, y: 0.50000006}
  1941. --- !u!114 &800564219
  1942. MonoBehaviour:
  1943. m_ObjectHideFlags: 0
  1944. m_PrefabParentObject: {fileID: 114708021918057120, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1945. type: 2}
  1946. m_PrefabInternal: {fileID: 774040002}
  1947. m_GameObject: {fileID: 800564217}
  1948. m_Enabled: 1
  1949. m_EditorHideFlags: 0
  1950. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  1951. m_Name:
  1952. m_EditorClassIdentifier:
  1953. m_Material: {fileID: 0}
  1954. m_Color: {r: 1, g: 1, b: 1, a: 1}
  1955. m_RaycastTarget: 1
  1956. m_OnCullStateChanged:
  1957. m_PersistentCalls:
  1958. m_Calls: []
  1959. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  1960. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  1961. m_Sprite: {fileID: 21300000, guid: a9e30af91e2b59d46bdc159342ed50d3, type: 3}
  1962. m_Type: 0
  1963. m_PreserveAspect: 1
  1964. m_FillCenter: 1
  1965. m_FillMethod: 4
  1966. m_FillAmount: 1
  1967. m_FillClockwise: 1
  1968. m_FillOrigin: 0
  1969. --- !u!222 &800564220
  1970. CanvasRenderer:
  1971. m_ObjectHideFlags: 0
  1972. m_PrefabParentObject: {fileID: 222171353745466856, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  1973. type: 2}
  1974. m_PrefabInternal: {fileID: 774040002}
  1975. m_GameObject: {fileID: 800564217}
  1976. --- !u!1 &812341333
  1977. GameObject:
  1978. m_ObjectHideFlags: 0
  1979. m_PrefabParentObject: {fileID: 1862143728275482, guid: bcd76c1e78564ad4cafec91e517586af,
  1980. type: 2}
  1981. m_PrefabInternal: {fileID: 1615544598}
  1982. serializedVersion: 5
  1983. m_Component:
  1984. - component: {fileID: 812341334}
  1985. - component: {fileID: 812341336}
  1986. - component: {fileID: 812341335}
  1987. m_Layer: 0
  1988. m_Name: Body - Error
  1989. m_TagString: Untagged
  1990. m_Icon: {fileID: 0}
  1991. m_NavMeshLayer: 0
  1992. m_StaticEditorFlags: 0
  1993. m_IsActive: 1
  1994. --- !u!224 &812341334
  1995. RectTransform:
  1996. m_ObjectHideFlags: 0
  1997. m_PrefabParentObject: {fileID: 224703411328187066, guid: bcd76c1e78564ad4cafec91e517586af,
  1998. type: 2}
  1999. m_PrefabInternal: {fileID: 1615544598}
  2000. m_GameObject: {fileID: 812341333}
  2001. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2002. m_LocalPosition: {x: 0, y: 0, z: 0}
  2003. m_LocalScale: {x: 1, y: 1, z: 1}
  2004. m_Children:
  2005. - {fileID: 1457621337}
  2006. m_Father: {fileID: 1615544599}
  2007. m_RootOrder: 1
  2008. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2009. m_AnchorMin: {x: 0, y: 0}
  2010. m_AnchorMax: {x: 1, y: 1}
  2011. m_AnchoredPosition: {x: 0, y: 0}
  2012. m_SizeDelta: {x: 0, y: 185.73389}
  2013. m_Pivot: {x: 0.5, y: 0}
  2014. --- !u!114 &812341335
  2015. MonoBehaviour:
  2016. m_ObjectHideFlags: 0
  2017. m_PrefabParentObject: {fileID: 114682174924321234, guid: bcd76c1e78564ad4cafec91e517586af,
  2018. type: 2}
  2019. m_PrefabInternal: {fileID: 1615544598}
  2020. m_GameObject: {fileID: 812341333}
  2021. m_Enabled: 1
  2022. m_EditorHideFlags: 0
  2023. m_Script: {fileID: -1254083943, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2024. m_Name:
  2025. m_EditorClassIdentifier:
  2026. m_AspectMode: 1
  2027. m_AspectRatio: 1.7775999
  2028. --- !u!222 &812341336
  2029. CanvasRenderer:
  2030. m_ObjectHideFlags: 0
  2031. m_PrefabParentObject: {fileID: 222016863782107374, guid: bcd76c1e78564ad4cafec91e517586af,
  2032. type: 2}
  2033. m_PrefabInternal: {fileID: 1615544598}
  2034. m_GameObject: {fileID: 812341333}
  2035. --- !u!1 &818126469
  2036. GameObject:
  2037. m_ObjectHideFlags: 0
  2038. m_PrefabParentObject: {fileID: 1581944406460812, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2039. type: 2}
  2040. m_PrefabInternal: {fileID: 774040002}
  2041. serializedVersion: 5
  2042. m_Component:
  2043. - component: {fileID: 818126470}
  2044. - component: {fileID: 818126472}
  2045. - component: {fileID: 818126471}
  2046. m_Layer: 0
  2047. m_Name: Image - Beta
  2048. m_TagString: Untagged
  2049. m_Icon: {fileID: 0}
  2050. m_NavMeshLayer: 0
  2051. m_StaticEditorFlags: 0
  2052. m_IsActive: 0
  2053. --- !u!224 &818126470
  2054. RectTransform:
  2055. m_ObjectHideFlags: 0
  2056. m_PrefabParentObject: {fileID: 224553077640765396, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2057. type: 2}
  2058. m_PrefabInternal: {fileID: 774040002}
  2059. m_GameObject: {fileID: 818126469}
  2060. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  2061. m_LocalPosition: {x: 0, y: 0, z: 0}
  2062. m_LocalScale: {x: 0.9999971, y: 0.9999971, z: 0.9999971}
  2063. m_Children: []
  2064. m_Father: {fileID: 1984960086}
  2065. m_RootOrder: 1
  2066. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2067. m_AnchorMin: {x: 1, y: 1}
  2068. m_AnchorMax: {x: 1, y: 1}
  2069. m_AnchoredPosition: {x: -585, y: -425.83002}
  2070. m_SizeDelta: {x: 585, y: 851}
  2071. m_Pivot: {x: 0, y: 0.5}
  2072. --- !u!114 &818126471
  2073. MonoBehaviour:
  2074. m_ObjectHideFlags: 0
  2075. m_PrefabParentObject: {fileID: 114424707616071014, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2076. type: 2}
  2077. m_PrefabInternal: {fileID: 774040002}
  2078. m_GameObject: {fileID: 818126469}
  2079. m_Enabled: 1
  2080. m_EditorHideFlags: 0
  2081. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2082. m_Name:
  2083. m_EditorClassIdentifier:
  2084. m_Material: {fileID: 0}
  2085. m_Color: {r: 1, g: 1, b: 1, a: 1}
  2086. m_RaycastTarget: 1
  2087. m_OnCullStateChanged:
  2088. m_PersistentCalls:
  2089. m_Calls: []
  2090. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  2091. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  2092. m_Sprite: {fileID: 21300000, guid: c96f3ce9382779841b629b0e8d219ed9, type: 3}
  2093. m_Type: 0
  2094. m_PreserveAspect: 1
  2095. m_FillCenter: 1
  2096. m_FillMethod: 4
  2097. m_FillAmount: 1
  2098. m_FillClockwise: 1
  2099. m_FillOrigin: 0
  2100. --- !u!222 &818126472
  2101. CanvasRenderer:
  2102. m_ObjectHideFlags: 0
  2103. m_PrefabParentObject: {fileID: 222095846652214500, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2104. type: 2}
  2105. m_PrefabInternal: {fileID: 774040002}
  2106. m_GameObject: {fileID: 818126469}
  2107. --- !u!1 &854313224
  2108. GameObject:
  2109. m_ObjectHideFlags: 0
  2110. m_PrefabParentObject: {fileID: 1184961812723018, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2111. type: 2}
  2112. m_PrefabInternal: {fileID: 774040002}
  2113. serializedVersion: 5
  2114. m_Component:
  2115. - component: {fileID: 854313225}
  2116. - component: {fileID: 854313227}
  2117. - component: {fileID: 854313226}
  2118. m_Layer: 0
  2119. m_Name: Image -Text
  2120. m_TagString: Untagged
  2121. m_Icon: {fileID: 0}
  2122. m_NavMeshLayer: 0
  2123. m_StaticEditorFlags: 0
  2124. m_IsActive: 1
  2125. --- !u!224 &854313225
  2126. RectTransform:
  2127. m_ObjectHideFlags: 0
  2128. m_PrefabParentObject: {fileID: 224958789081823880, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2129. type: 2}
  2130. m_PrefabInternal: {fileID: 774040002}
  2131. m_GameObject: {fileID: 854313224}
  2132. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2133. m_LocalPosition: {x: 0, y: 0, z: 0}
  2134. m_LocalScale: {x: 1, y: 1, z: 1}
  2135. m_Children:
  2136. - {fileID: 203235337}
  2137. - {fileID: 1465377791}
  2138. m_Father: {fileID: 519069287}
  2139. m_RootOrder: 0
  2140. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2141. m_AnchorMin: {x: 0.5, y: 0.5}
  2142. m_AnchorMax: {x: 0.5, y: 0.5}
  2143. m_AnchoredPosition: {x: 396, y: 213}
  2144. m_SizeDelta: {x: 649.8, y: 234.1}
  2145. m_Pivot: {x: 0.5, y: 0.5}
  2146. --- !u!114 &854313226
  2147. MonoBehaviour:
  2148. m_ObjectHideFlags: 0
  2149. m_PrefabParentObject: {fileID: 114119316866299580, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2150. type: 2}
  2151. m_PrefabInternal: {fileID: 774040002}
  2152. m_GameObject: {fileID: 854313224}
  2153. m_Enabled: 1
  2154. m_EditorHideFlags: 0
  2155. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2156. m_Name:
  2157. m_EditorClassIdentifier:
  2158. m_Material: {fileID: 0}
  2159. m_Color: {r: 1, g: 1, b: 1, a: 1}
  2160. m_RaycastTarget: 1
  2161. m_OnCullStateChanged:
  2162. m_PersistentCalls:
  2163. m_Calls: []
  2164. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  2165. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  2166. m_Sprite: {fileID: 21300000, guid: 140833ce6f2389c40bcf58ccb44f0241, type: 3}
  2167. m_Type: 0
  2168. m_PreserveAspect: 1
  2169. m_FillCenter: 1
  2170. m_FillMethod: 4
  2171. m_FillAmount: 1
  2172. m_FillClockwise: 1
  2173. m_FillOrigin: 0
  2174. --- !u!222 &854313227
  2175. CanvasRenderer:
  2176. m_ObjectHideFlags: 0
  2177. m_PrefabParentObject: {fileID: 222418446489943080, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2178. type: 2}
  2179. m_PrefabInternal: {fileID: 774040002}
  2180. m_GameObject: {fileID: 854313224}
  2181. --- !u!1 &1039339191
  2182. GameObject:
  2183. m_ObjectHideFlags: 0
  2184. m_PrefabParentObject: {fileID: 1381693648763682, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2185. type: 2}
  2186. m_PrefabInternal: {fileID: 774040002}
  2187. serializedVersion: 5
  2188. m_Component:
  2189. - component: {fileID: 1039339192}
  2190. - component: {fileID: 1039339194}
  2191. - component: {fileID: 1039339193}
  2192. m_Layer: 0
  2193. m_Name: Text - Welcome A
  2194. m_TagString: Untagged
  2195. m_Icon: {fileID: 0}
  2196. m_NavMeshLayer: 0
  2197. m_StaticEditorFlags: 0
  2198. m_IsActive: 1
  2199. --- !u!224 &1039339192
  2200. RectTransform:
  2201. m_ObjectHideFlags: 0
  2202. m_PrefabParentObject: {fileID: 224485688831601270, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2203. type: 2}
  2204. m_PrefabInternal: {fileID: 774040002}
  2205. m_GameObject: {fileID: 1039339191}
  2206. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  2207. m_LocalPosition: {x: 0, y: 0, z: 0}
  2208. m_LocalScale: {x: 0.3304886, y: 0.3304886, z: 0.3304886}
  2209. m_Children: []
  2210. m_Father: {fileID: 98719081}
  2211. m_RootOrder: 0
  2212. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2213. m_AnchorMin: {x: 0.5, y: 1}
  2214. m_AnchorMax: {x: 0.5, y: 1}
  2215. m_AnchoredPosition: {x: 0.0000090599, y: -2900.8}
  2216. m_SizeDelta: {x: 752, y: 17546.5}
  2217. m_Pivot: {x: 0.5, y: 0.5}
  2218. --- !u!114 &1039339193
  2219. MonoBehaviour:
  2220. m_ObjectHideFlags: 0
  2221. m_PrefabParentObject: {fileID: 114605636397211956, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2222. type: 2}
  2223. m_PrefabInternal: {fileID: 774040002}
  2224. m_GameObject: {fileID: 1039339191}
  2225. m_Enabled: 1
  2226. m_EditorHideFlags: 0
  2227. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2228. m_Name:
  2229. m_EditorClassIdentifier:
  2230. m_Material: {fileID: 0}
  2231. m_Color: {r: 0.14901961, g: 0.098039225, b: 0.13725491, a: 1}
  2232. m_RaycastTarget: 1
  2233. m_OnCullStateChanged:
  2234. m_PersistentCalls:
  2235. m_Calls: []
  2236. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  2237. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  2238. m_FontData:
  2239. m_Font: {fileID: 12800000, guid: 5ca928efea4136b4d9460387747d3580, type: 3}
  2240. m_FontSize: 42
  2241. m_FontStyle: 0
  2242. m_BestFit: 1
  2243. m_MinSize: 10
  2244. m_MaxSize: 87
  2245. m_Alignment: 0
  2246. m_AlignByGeometry: 1
  2247. m_RichText: 1
  2248. m_HorizontalOverflow: 0
  2249. m_VerticalOverflow: 0
  2250. m_LineSpacing: 1
  2251. m_Text: "ACCEPTANCE OF TERMS OF USE\r\n\nThe terms of this agreement (\"Terms of
  2252. Service\") govern the relationship between you and Emortal Productions (aka Ace
  2253. and King Productions), (hereinafter \"Ace and King Productions\" or \"Us\" or
  2254. \"We\") regarding your use of Ace and King Productions' games, websites and related
  2255. services (the \"service\"). Use of the service is also governed by Ace and King
  2256. Productions' Privacy Policy and other relevant policies, which are incorporated
  2257. herein by reference. \r\n\nBy installing, using or otherwise accessing the service,
  2258. you agree to these terms of service. If you do not agree to these terms of service,
  2259. please do not install, use or otherwise access the service. Use of the service
  2260. is void where prohibited. \n\nAce and King Productions reserves the right, at
  2261. its discretion, to change, modify, add or remove portions of these Terms of Service,
  2262. its Privacy Policy and other relevant Ace and King Productions policies at any
  2263. time by posting the amended terms on the Ace and King Productions service. You
  2264. will be deemed to have accepted such changes by continuing to use the service.
  2265. If at any point you do not agree to any portion of the then-current version of
  2266. our Terms of Service, the Ace and King Productions Privacy Policy, or any other
  2267. Ace and King Productions policy, rules or codes of conduct relating to your use
  2268. of the service, your license to use the service shall immediately terminate, and
  2269. you must immediately stop using the Service.\n\nPlease refer to our Privacy Policy
  2270. http://americasnexttopmodelgame.com/privacy.html for information about how we
  2271. collect, use and disclose information about you. \n\nELIGIBILITY\r\n\nBy using
  2272. our Service, you represent that (1) you are age 13 or older, (2) you understand
  2273. and agree to these Terms of Service, and (3) if you are between the ages of 13
  2274. and 18, your legal guardian has reviewed and agrees to these Terms of Service.
  2275. \r\n\rThe Services are for personal use only. Organizations, companies, or businesses
  2276. may not use the Services for any purpose. You may not use the services if you
  2277. have previously been suspended or removed from the Services. Certain Services
  2278. may not be available in all jurisdictions, and we reserve the right to impose
  2279. additional eligibility requirements. \n\nLIMITED LICENSE\r\n\nYou acknowledge
  2280. that all copyright, trademarks, and other intellectual property rights in and
  2281. relating to our Services is owned by or licensed to us. \r\n\r\nAmerica\u2019s
  2282. Next Top Model and related marks are trademarks of Pottle Productions, Inc..\r\n\xA9
  2283. 2017 CBS Interactive Inc. All Rights Reserved. \r\n\xA9 Software 2017 Ace and
  2284. King Productions . All Rights Reserved. \r\n\rWhilst you are in compliance with
  2285. these terms, we grant you a non-exclusive, non-transferable, personal, revocable
  2286. limited license to access and/or use our Services (but not any related object
  2287. and source code) for your own personal private use, in each case provided that
  2288. such use is in accordance with these terms. You agree not to use our services
  2289. for anything else. These terms also apply to any update or patches which we may
  2290. release or make available for any of the services and any such update or patch
  2291. shall be deemed part of the services for the purposes of these terms. \n\nVIRTUAL
  2292. GOODS\r\n\nOur games may include virtual currencies such as \u201Cglam\u201D or
  2293. \u201Cdollars\u201D and other virtual items, some of which may be \u201Cearned\u201D
  2294. or purchased for real money (\u201Cvirtual goods\u201D). You must be 18 years
  2295. old to purchase virtual goods with real money. Your account and any related items
  2296. are owned by Ace and King Productions. \r\n\r\nIf your account is terminated in
  2297. accordance with these Terms of Use, we will also delete and terminate any virtual
  2298. goods associated with your account. You are not allowed to transfer virtual goods,
  2299. for example by selling, gifting, or trading them. Any such transfer or attempted
  2300. transfer is prohibited and void may lead to the termination of your account and
  2301. any associated virtual goods. \r\n\rYour purchase of virtual items through platforms
  2302. such as the Apple App Store, Google Play, Amazon Games or Facebook is subject
  2303. to those platforms\u2019 payment terms and conditions and Ace and King Productions
  2304. is not a party to the transaction. Ace and King Productions does not control how
  2305. you can pay or how any refunds may be issued on those platforms. Please review
  2306. those platforms\u2019 terms of service for additional information. \r\n\r\nAll
  2307. sales of virtual items are final, and virtual items are non-returnable and non-refundable.
  2308. Virtual items cannot be resold, transferred for value, redeemed for cash or applied
  2309. to any other account. We may limit the number of virtual items you can purchase
  2310. or use within certain periods of time or implement other restrictions on the receipt
  2311. or use of virtual items. We may further restrict your ability to redeem your virtual
  2312. items based on your place of residence.\n\nUSER CONTENT\r\n\n\"User Content\"
  2313. means any communications, images, sounds, and all the material, data, and information
  2314. that you upload or transmit through the service, or that other users upload or
  2315. transmit, including without limitation any chat text. By transmitting or submitting
  2316. any User Content while using the service, you affirm, represent and warrant that
  2317. such transmission or submission is (a) accurate and not confidential or misleading;
  2318. (b) not in violation of any laws, contractual restrictions or other third party
  2319. rights, and that you have permission from any third party whose personal information
  2320. or intellectual property is comprised in the User Content; (c) free of viruses,
  2321. adware, spyware, worms or other malicious code; and (d) you acknowledge and agree
  2322. that any of your personal information within such content will at all times be
  2323. processed by Ace and King Productions in accordance with its Privacy Policy. \n\nFEEDBACK\r\n\nYou
  2324. may voluntarily elect to send us any ideas, suggestions, documents or proposals
  2325. (\u201Cfeedback\u201D) related to the service or otherwise. By sending us feedback,
  2326. you agree that (i) your feedback does not contain the confidential or proprietary
  2327. information of third parties, (ii) we are under no obligation of confidentiality,
  2328. express or implied, with respect to the feedback, (iii) we may have something
  2329. similar to the feedback already under consideration or in development, and (iv)
  2330. you grant us an irrevocable, non-exclusive, royalty-free, perpetual, worldwide
  2331. license to use, modify, publish, distribute and sublicense the feedback. \n\nLINKS\r\n\nWe
  2332. may link to third party websites or services from our Services. You understand
  2333. that we make no promises regarding any content, goods or services provided by
  2334. such third parties and we do not endorse the same. We are also not responsible
  2335. to you in relation to any losses or harm caused by such third parties. Any charges
  2336. you incur in relation to those third parties are your responsibility. You understand
  2337. that when you provide data to such third parties you are providing it in accordance
  2338. with their privacy policy (if any) and our own privacy policy does not apply in
  2339. relation to that data. \r\n\nTRANSFERRING THESE TERMS\r\n\nWe may wish to transfer
  2340. all or a part of our rights or responsibilities under these terms to someone else
  2341. without obtaining your consent. You agree that we may do so provided that the
  2342. transfer does not significantly disadvantage you. You may not transfer any of
  2343. the rights we give you under these terms unless we first agree to this in writing.
  2344. \r\n\r\nENTIRE AGREEMENT\r\n\nThese terms set out the entire agreement between
  2345. you and us concerning our services (as defined in paragraph 1) and they replace
  2346. all earlier agreements and understandings between you and us. \r\n\r\nCHANGES
  2347. TO THESE TERMS\r\n\nYou can find these terms at any time by visiting www.americasnexttopmodelgame.com/terms.html
  2348. \r\n\r\nWe reserve the right to update these terms from time to time by posting
  2349. the updated version at that address. We may do so for a number of reasons including
  2350. without limitation because we change the nature of our products or services, for
  2351. technical or legal reasons, or because the needs of our business have changed.
  2352. You agree that if you do not accept any amendment to our terms then you shall
  2353. immediately stop accessing and/or using our services. \n\nSEVERABILITY\r\n\nIf
  2354. any part of these terms is held to be invalid or unenforceable under any applicable
  2355. local laws or by an applicable court, that part shall be interpreted in a manner
  2356. consistent with applicable law to reflect as nearly as possible our original intentions
  2357. and the remainder of these terms shall remain valid and enforceable. If it is
  2358. not possible to interpret an invalid or unenforceable part of these terms in a
  2359. manner consistent with applicable law, then that part shall be deemed deleted
  2360. from these terms without affecting the remaining provisions of these terms.\n\nWAIVERS
  2361. OF OUR RIGHTS\r\n\nOur failure to exercise or enforce any of our rights under
  2362. these terms does not waive our right to enforce such right. Any waiver of such
  2363. rights shall only be effective if it is in writing and signed by us. \r\n\r\nDISCLAIMERS
  2364. OF WARRANTIES AND DAMAGES, LIMITATIONS OF LIABILITY YOU EXPRESSLY AGREE THAT USE
  2365. OF THE SERVICE IS AT YOUR SOLE RISK AND IS PROVIDED ON AN \u201CAS IS\u201D BASIS
  2366. WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT
  2367. LIMITED TO, WARRANTIES OF TITLE OR IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY
  2368. OR FITNESS FOR A PARTICULAR PURPOSE. \r\n\r\nWITHOUT LIMITING THE FOREGOING, NEITHER
  2369. ACE AND KING PRODUCTIONS NOR ITS AFFILIATES OR SUBSIDIARIES, OR ANY OF THEIR DIRECTORS,
  2370. EMPLOYEES, AGENTS, ATTORNEYS, THIRD-PARTY CONTENT PROVIDERS, DISTRIBUTORS, LICENSEES
  2371. OR LICENSORS WARRANT THAT (A) THE SERVICE WILL MEET YOUR REQUIREMENTS OR THE SERVICE
  2372. MATERIALS OR USER CONTENT WILL BE VIEWABLE TO YOU OR (B) THE SERVICE WILL BE UNINTERRUPTED,
  2373. TIMELY, SECURE OR ERROR-FREE OR THAT ERRORS WILL BE CORRECTED. \r\n\r\nUNDER THE
  2374. FULLEST EXTENT PERMITTED BY APPLICABLE LAW, THE ACE AND KING PRODUCTIONS PARTIES
  2375. SHALL NOT BE RESPONSIBLE OR LIABLE TO YOU FOR ANY INDIRECT, INCIDENTAL, CONSEQUENTIAL,
  2376. SPECIAL, EXEMPLARY, PUNITIVE OR OTHER DAMAGES, INCLUDING BUT NOT LIMITED TO LOSS
  2377. OF REVENUES, LOST PROFITS, LOST DATA OR BUSINESS INTERRUPTION OR OTHER INTANGIBLE
  2378. LOSSES, ARISING OUT OF OR RELATING IN ANY WAY TO THESE TERMS OF SERVICE OR THE
  2379. SERVICE, WHETHER BASED ON WARRANTY, CONTRACT, TORT (INCLUDING NEGLIGENCE), OR
  2380. ANY OTHER LEGAL THEORY, AND WHETHER OR NOT ANY ACE AND KING PRODUCTIONS PARTY
  2381. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. \r\n\r\nUNDER NO CIRCUMSTANCES
  2382. WILL THE PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT YOU HAVE PAID TO ACE
  2383. AND KING PRODUCTIONS IN ACCORDANCE WITH THESE TERMS OF SERVICE IN THE NINETY (90)
  2384. DAYS IMMEDIATELY PRECEDING THE DATE ON WHICH YOU FIRST ASSERT ANY SUCH CLAIM.
  2385. YOU ACKNOWLEDGE AND AGREE THAT IF YOU HAVE NOT PAID ACE AND KING PRODUCTIONS ANY
  2386. SUCH AMOUNTS IN THE NINETY (90) DAYS IMMEDIATELY PRECEDING THE DATE ON WHICH YOU
  2387. FIRST ASSERT ANY SUCH CLAIM, YOUR SOLE AND EXCLUSIVE REMEDY FOR ANY DISPUTE WITH
  2388. ACE AND KING PRODUCTIONS IS TO STOP USING THE SERVICE AND TO CANCEL YOUR ACCOUNT.
  2389. \n\nINDEMNIFICATION\r\n\nYou agree to indemnify, defend and hold Ace and King
  2390. Productions harmless from and against any and all claims, liabilities, damages,
  2391. losses, costs, expenses, fees (including reasonable attorneys\u2019 fees and court
  2392. costs) due to or arising from (1) information in your Account and any information
  2393. you (or anyone accessing the service using your Account) submit, post or transmit
  2394. through the service, (2) your (or anyone accessing the service using your Account)
  2395. use of the service, (3) your (or anyone accessing the service using your Account)
  2396. violation of these Terms of Service, and (4) your (or anyone accessing the service
  2397. using your Account) violation of any rights of any other person or entity. Ace
  2398. and King Productions reserves the right, at your expense, to assume the exclusive
  2399. defense and control of any indemnifiable matter and you agree to cooperate with
  2400. Ace and King Productions to defend these claims.\n\nRELEASE \r\n\nYou agree to
  2401. indemnify, hold harmless, defend and release Ace and King Productions, its users,
  2402. licensors, suppliers and partners, and its and their respective officers, directors,
  2403. stockholders, agents and affiliates, from any claims, losses, damages or liabilities,
  2404. including attorney\u2019s fees, arising out of (i) the use or misuse of the service
  2405. by you or any third party using your account, (ii) breach of any of this Agreement
  2406. by you or any third party using your account, (iii) the violation of any applicable
  2407. law or the rights of any other person or entity arising out of related to the
  2408. service or the use thereof by you or any third party using your account, or (iv)
  2409. the infringement of any intellectual property or other right of any person or
  2410. entity by you or any third party using your account. You agree not to settle any
  2411. matter without the prior written consent of Ace and King Productions. Ace and
  2412. King Productions reserves the right, at your expense, to assume the exclusive
  2413. defense and control of any matter for which you are required to indemnify us and
  2414. you agree to cooperate with our defense of these claims. \n\nCOMPLAINTS AND DISPUTE
  2415. RESOLUTION\r\n\nMost concerns can be solved quickly by contacting us at info@americasnexttopmodelgame.com.
  2416. \r\n\r\nIn the unlikely event that we cannot solve your concern and you wish to
  2417. bring legal action against us these terms shall be governed by and construed in
  2418. accordance with the laws of California. \n\nGOVERNING LAW AND REMEDIES\r\n\nThese
  2419. Terms of Service and any action related thereto or to the service will be governed
  2420. by the laws of the State of California without regard to its conflict of laws
  2421. provisions. The exclusive jurisdiction and venue of any action with respect to
  2422. the subject matter of these Terms of Service will be the state and federal courts
  2423. located in San Francisco, California, and each of the parties hereto waives any
  2424. objection to jurisdiction and venue in such courts. The parties specifically disclaim
  2425. application of the United Nations Convention on Contracts for the International
  2426. Sale of Goods. You acknowledge that the rights granted and obligations made to
  2427. Ace and King Productions under these Terms of Service are of a unique and irreplaceable
  2428. nature, the loss of which may result in immediate and irreparable harm to Ace
  2429. and King Productions for which remedies at law are inadequate. Ace and King Productions
  2430. shall therefore be entitled to seek injunctive or other equitable relief (without
  2431. the obligation to post any bond) in the event of any breach or anticipatory breach
  2432. by you. You hereby irrevocably waive all rights to seek injunctive or other equitable
  2433. relief. "
  2434. --- !u!222 &1039339194
  2435. CanvasRenderer:
  2436. m_ObjectHideFlags: 0
  2437. m_PrefabParentObject: {fileID: 222776693783000044, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2438. type: 2}
  2439. m_PrefabInternal: {fileID: 774040002}
  2440. m_GameObject: {fileID: 1039339191}
  2441. --- !u!1 &1098174699
  2442. GameObject:
  2443. m_ObjectHideFlags: 0
  2444. m_PrefabParentObject: {fileID: 1072775037824200, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2445. type: 2}
  2446. m_PrefabInternal: {fileID: 774040002}
  2447. serializedVersion: 5
  2448. m_Component:
  2449. - component: {fileID: 1098174700}
  2450. - component: {fileID: 1098174703}
  2451. - component: {fileID: 1098174702}
  2452. - component: {fileID: 1098174701}
  2453. m_Layer: 5
  2454. m_Name: Viewport
  2455. m_TagString: Untagged
  2456. m_Icon: {fileID: 0}
  2457. m_NavMeshLayer: 0
  2458. m_StaticEditorFlags: 0
  2459. m_IsActive: 1
  2460. --- !u!224 &1098174700
  2461. RectTransform:
  2462. m_ObjectHideFlags: 0
  2463. m_PrefabParentObject: {fileID: 224371573227697406, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2464. type: 2}
  2465. m_PrefabInternal: {fileID: 774040002}
  2466. m_GameObject: {fileID: 1098174699}
  2467. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2468. m_LocalPosition: {x: 0, y: 0, z: 0}
  2469. m_LocalScale: {x: 1, y: 1, z: 1}
  2470. m_Children:
  2471. - {fileID: 1468170599}
  2472. m_Father: {fileID: 1938405412}
  2473. m_RootOrder: 1
  2474. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2475. m_AnchorMin: {x: 0.034, y: 0.04652795}
  2476. m_AnchorMax: {x: 0.969413, y: 0.77417606}
  2477. m_AnchoredPosition: {x: 0.9900055, y: -0.76000214}
  2478. m_SizeDelta: {x: -0.79999924, y: -0.6399994}
  2479. m_Pivot: {x: 0, y: 1}
  2480. --- !u!114 &1098174701
  2481. MonoBehaviour:
  2482. m_ObjectHideFlags: 0
  2483. m_PrefabParentObject: {fileID: 114149510932548788, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2484. type: 2}
  2485. m_PrefabInternal: {fileID: 774040002}
  2486. m_GameObject: {fileID: 1098174699}
  2487. m_Enabled: 1
  2488. m_EditorHideFlags: 0
  2489. m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  2490. m_Name:
  2491. m_EditorClassIdentifier:
  2492. m_Material: {fileID: 0}
  2493. m_Color: {r: 1, g: 1, b: 1, a: 1}
  2494. m_RaycastTarget: 1
  2495. m_OnCullStateChanged:
  2496. m_PersistentCalls:
  2497. m_Calls: []
  2498. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  2499. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  2500. m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0}
  2501. m_Type: 1
  2502. m_PreserveAspect: 0
  2503. m_FillCenter: 1
  2504. m_FillMethod: 4
  2505. m_FillAmount: 1
  2506. m_FillClockwise: 1
  2507. m_FillOrigin: 0
  2508. --- !u!222 &1098174702
  2509. CanvasRenderer:
  2510. m_ObjectHideFlags: 0
  2511. m_PrefabParentObject: {fileID: 222286970711137552, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2512. type: 2}
  2513. m_PrefabInternal: {fileID: 774040002}
  2514. m_GameObject: {fileID: 1098174699}
  2515. --- !u!114 &1098174703
  2516. MonoBehaviour:
  2517. m_ObjectHideFlags: 0
  2518. m_PrefabParentObject: {fileID: 114381443349847492, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2519. type: 2}
  2520. m_PrefabInternal: {fileID: 774040002}
  2521. m_GameObject: {fileID: 1098174699}
  2522. m_Enabled: 1
  2523. m_EditorHideFlags: 0
  2524. m_Script: {fileID: -1200242548, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  2525. m_Name:
  2526. m_EditorClassIdentifier:
  2527. m_ShowMaskGraphic: 0
  2528. --- !u!1 &1165288178
  2529. GameObject:
  2530. m_ObjectHideFlags: 0
  2531. m_PrefabParentObject: {fileID: 1450642312146186, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2532. type: 2}
  2533. m_PrefabInternal: {fileID: 774040002}
  2534. serializedVersion: 5
  2535. m_Component:
  2536. - component: {fileID: 1165288179}
  2537. - component: {fileID: 1165288183}
  2538. - component: {fileID: 1165288182}
  2539. - component: {fileID: 1165288181}
  2540. - component: {fileID: 1165288180}
  2541. m_Layer: 0
  2542. m_Name: Button - Accept
  2543. m_TagString: Untagged
  2544. m_Icon: {fileID: 0}
  2545. m_NavMeshLayer: 0
  2546. m_StaticEditorFlags: 0
  2547. m_IsActive: 1
  2548. --- !u!224 &1165288179
  2549. RectTransform:
  2550. m_ObjectHideFlags: 0
  2551. m_PrefabParentObject: {fileID: 224487181642279392, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2552. type: 2}
  2553. m_PrefabInternal: {fileID: 774040002}
  2554. m_GameObject: {fileID: 1165288178}
  2555. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  2556. m_LocalPosition: {x: 0, y: 0, z: 0}
  2557. m_LocalScale: {x: 1, y: 1, z: 1}
  2558. m_Children:
  2559. - {fileID: 528814868}
  2560. m_Father: {fileID: 1338291960}
  2561. m_RootOrder: 2
  2562. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2563. m_AnchorMin: {x: 0.79700005, y: 0.028}
  2564. m_AnchorMax: {x: 0.99687326, y: 0.133}
  2565. m_AnchoredPosition: {x: 0.20996094, y: 0.099975586}
  2566. m_SizeDelta: {x: 0.08000183, y: -1.6000004}
  2567. m_Pivot: {x: 0.5, y: 0.50000006}
  2568. --- !u!114 &1165288180
  2569. MonoBehaviour:
  2570. m_ObjectHideFlags: 0
  2571. m_PrefabParentObject: {fileID: 114468994185503780, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2572. type: 2}
  2573. m_PrefabInternal: {fileID: 774040002}
  2574. m_GameObject: {fileID: 1165288178}
  2575. m_Enabled: 1
  2576. m_EditorHideFlags: 0
  2577. m_Script: {fileID: 11500000, guid: 9651a93a000fb0443a393d82a634c50b, type: 3}
  2578. m_Name:
  2579. m_EditorClassIdentifier:
  2580. buttonAudio: {fileID: 8300000, guid: 0a9b6cbd5fbad0b4aa2b3e4a708233a6, type: 3}
  2581. canPlayOnly: 1
  2582. --- !u!114 &1165288181
  2583. MonoBehaviour:
  2584. m_ObjectHideFlags: 0
  2585. m_PrefabParentObject: {fileID: 114055679647547742, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2586. type: 2}
  2587. m_PrefabInternal: {fileID: 774040002}
  2588. m_GameObject: {fileID: 1165288178}
  2589. m_Enabled: 1
  2590. m_EditorHideFlags: 0
  2591. m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2592. m_Name:
  2593. m_EditorClassIdentifier:
  2594. m_Navigation:
  2595. m_Mode: 0
  2596. m_SelectOnUp: {fileID: 0}
  2597. m_SelectOnDown: {fileID: 0}
  2598. m_SelectOnLeft: {fileID: 0}
  2599. m_SelectOnRight: {fileID: 0}
  2600. m_Transition: 1
  2601. m_Colors:
  2602. m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
  2603. m_HighlightedColor: {r: 1, g: 1, b: 1, a: 1}
  2604. m_PressedColor: {r: 1, g: 1, b: 1, a: 1}
  2605. m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
  2606. m_ColorMultiplier: 1
  2607. m_FadeDuration: 0.1
  2608. m_SpriteState:
  2609. m_HighlightedSprite: {fileID: 0}
  2610. m_PressedSprite: {fileID: 0}
  2611. m_DisabledSprite: {fileID: 0}
  2612. m_AnimationTriggers:
  2613. m_NormalTrigger: Normal
  2614. m_HighlightedTrigger: Highlighted
  2615. m_PressedTrigger: Pressed
  2616. m_DisabledTrigger: Disabled
  2617. m_Interactable: 1
  2618. m_TargetGraphic: {fileID: 1165288182}
  2619. m_OnClick:
  2620. m_PersistentCalls:
  2621. m_Calls:
  2622. - m_Target: {fileID: 355912982}
  2623. m_MethodName: CheckMark
  2624. m_Mode: 1
  2625. m_Arguments:
  2626. m_ObjectArgument: {fileID: 0}
  2627. m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
  2628. m_IntArgument: 0
  2629. m_FloatArgument: 0
  2630. m_StringArgument:
  2631. m_BoolArgument: 0
  2632. m_CallState: 2
  2633. - m_Target: {fileID: 774040004}
  2634. m_MethodName: LoadScene
  2635. m_Mode: 1
  2636. m_Arguments:
  2637. m_ObjectArgument: {fileID: 0}
  2638. m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
  2639. m_IntArgument: 0
  2640. m_FloatArgument: 0
  2641. m_StringArgument:
  2642. m_BoolArgument: 0
  2643. m_CallState: 2
  2644. m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
  2645. Culture=neutral, PublicKeyToken=null
  2646. --- !u!114 &1165288182
  2647. MonoBehaviour:
  2648. m_ObjectHideFlags: 0
  2649. m_PrefabParentObject: {fileID: 114997957726755884, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2650. type: 2}
  2651. m_PrefabInternal: {fileID: 774040002}
  2652. m_GameObject: {fileID: 1165288178}
  2653. m_Enabled: 1
  2654. m_EditorHideFlags: 0
  2655. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2656. m_Name:
  2657. m_EditorClassIdentifier:
  2658. m_Material: {fileID: 0}
  2659. m_Color: {r: 1, g: 1, b: 1, a: 1}
  2660. m_RaycastTarget: 1
  2661. m_OnCullStateChanged:
  2662. m_PersistentCalls:
  2663. m_Calls: []
  2664. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  2665. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  2666. m_Sprite: {fileID: 21300002, guid: 82ea4fa0f538a0345ab547bccaf2e802, type: 3}
  2667. m_Type: 0
  2668. m_PreserveAspect: 1
  2669. m_FillCenter: 1
  2670. m_FillMethod: 4
  2671. m_FillAmount: 1
  2672. m_FillClockwise: 1
  2673. m_FillOrigin: 0
  2674. --- !u!222 &1165288183
  2675. CanvasRenderer:
  2676. m_ObjectHideFlags: 0
  2677. m_PrefabParentObject: {fileID: 222315637728289058, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2678. type: 2}
  2679. m_PrefabInternal: {fileID: 774040002}
  2680. m_GameObject: {fileID: 1165288178}
  2681. --- !u!1 &1194907999
  2682. GameObject:
  2683. m_ObjectHideFlags: 0
  2684. m_PrefabParentObject: {fileID: 1706754784203634, guid: bcd76c1e78564ad4cafec91e517586af,
  2685. type: 2}
  2686. m_PrefabInternal: {fileID: 1615544598}
  2687. serializedVersion: 5
  2688. m_Component:
  2689. - component: {fileID: 1194908000}
  2690. - component: {fileID: 1194908002}
  2691. - component: {fileID: 1194908001}
  2692. m_Layer: 0
  2693. m_Name: Text - Info
  2694. m_TagString: Untagged
  2695. m_Icon: {fileID: 0}
  2696. m_NavMeshLayer: 0
  2697. m_StaticEditorFlags: 0
  2698. m_IsActive: 1
  2699. --- !u!224 &1194908000
  2700. RectTransform:
  2701. m_ObjectHideFlags: 0
  2702. m_PrefabParentObject: {fileID: 224705434716182120, guid: bcd76c1e78564ad4cafec91e517586af,
  2703. type: 2}
  2704. m_PrefabInternal: {fileID: 1615544598}
  2705. m_GameObject: {fileID: 1194907999}
  2706. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2707. m_LocalPosition: {x: 0, y: 0, z: 0}
  2708. m_LocalScale: {x: 1, y: 1, z: 1}
  2709. m_Children: []
  2710. m_Father: {fileID: 1457621337}
  2711. m_RootOrder: 3
  2712. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2713. m_AnchorMin: {x: 0.24168903, y: 0.069000006}
  2714. m_AnchorMax: {x: 0.7591268, y: 0.266}
  2715. m_AnchoredPosition: {x: -0.56742096, y: 1.1228027}
  2716. m_SizeDelta: {x: -2.2000122, y: -0.3999939}
  2717. m_Pivot: {x: 0.5, y: 0.5}
  2718. --- !u!114 &1194908001
  2719. MonoBehaviour:
  2720. m_ObjectHideFlags: 0
  2721. m_PrefabParentObject: {fileID: 114232022044216854, guid: bcd76c1e78564ad4cafec91e517586af,
  2722. type: 2}
  2723. m_PrefabInternal: {fileID: 1615544598}
  2724. m_GameObject: {fileID: 1194907999}
  2725. m_Enabled: 1
  2726. m_EditorHideFlags: 0
  2727. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2728. m_Name:
  2729. m_EditorClassIdentifier:
  2730. m_Material: {fileID: 0}
  2731. m_Color: {r: 0, g: 0, b: 0, a: 1}
  2732. m_RaycastTarget: 1
  2733. m_OnCullStateChanged:
  2734. m_PersistentCalls:
  2735. m_Calls: []
  2736. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  2737. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  2738. m_FontData:
  2739. m_Font: {fileID: 12800000, guid: 5ca928efea4136b4d9460387747d3580, type: 3}
  2740. m_FontSize: 14
  2741. m_FontStyle: 0
  2742. m_BestFit: 1
  2743. m_MinSize: 10
  2744. m_MaxSize: 40
  2745. m_Alignment: 4
  2746. m_AlignByGeometry: 0
  2747. m_RichText: 1
  2748. m_HorizontalOverflow: 0
  2749. m_VerticalOverflow: 0
  2750. m_LineSpacing: 1
  2751. m_Text: 'You have problems with your internet connection,
  2752. try again later'
  2753. --- !u!222 &1194908002
  2754. CanvasRenderer:
  2755. m_ObjectHideFlags: 0
  2756. m_PrefabParentObject: {fileID: 222003747921068498, guid: bcd76c1e78564ad4cafec91e517586af,
  2757. type: 2}
  2758. m_PrefabInternal: {fileID: 1615544598}
  2759. m_GameObject: {fileID: 1194907999}
  2760. --- !u!1 &1240006593
  2761. GameObject:
  2762. m_ObjectHideFlags: 0
  2763. m_PrefabParentObject: {fileID: 1111963656816236, guid: bcd76c1e78564ad4cafec91e517586af,
  2764. type: 2}
  2765. m_PrefabInternal: {fileID: 1615544598}
  2766. serializedVersion: 5
  2767. m_Component:
  2768. - component: {fileID: 1240006594}
  2769. - component: {fileID: 1240006597}
  2770. - component: {fileID: 1240006596}
  2771. - component: {fileID: 1240006595}
  2772. m_Layer: 0
  2773. m_Name: BackGround - Error
  2774. m_TagString: Untagged
  2775. m_Icon: {fileID: 0}
  2776. m_NavMeshLayer: 0
  2777. m_StaticEditorFlags: 0
  2778. m_IsActive: 1
  2779. --- !u!224 &1240006594
  2780. RectTransform:
  2781. m_ObjectHideFlags: 0
  2782. m_PrefabParentObject: {fileID: 224468969402885978, guid: bcd76c1e78564ad4cafec91e517586af,
  2783. type: 2}
  2784. m_PrefabInternal: {fileID: 1615544598}
  2785. m_GameObject: {fileID: 1240006593}
  2786. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2787. m_LocalPosition: {x: 0, y: 0, z: 0}
  2788. m_LocalScale: {x: 1, y: 1, z: 1}
  2789. m_Children: []
  2790. m_Father: {fileID: 1615544599}
  2791. m_RootOrder: 0
  2792. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2793. m_AnchorMin: {x: 0, y: 0}
  2794. m_AnchorMax: {x: 1, y: 1}
  2795. m_AnchoredPosition: {x: 0, y: 0}
  2796. m_SizeDelta: {x: 0, y: 185.73389}
  2797. m_Pivot: {x: 0.5, y: 0.5}
  2798. --- !u!114 &1240006595
  2799. MonoBehaviour:
  2800. m_ObjectHideFlags: 0
  2801. m_PrefabParentObject: {fileID: 114267509290874402, guid: bcd76c1e78564ad4cafec91e517586af,
  2802. type: 2}
  2803. m_PrefabInternal: {fileID: 1615544598}
  2804. m_GameObject: {fileID: 1240006593}
  2805. m_Enabled: 1
  2806. m_EditorHideFlags: 0
  2807. m_Script: {fileID: -1254083943, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2808. m_Name:
  2809. m_EditorClassIdentifier:
  2810. m_AspectMode: 4
  2811. m_AspectRatio: 1.7775999
  2812. --- !u!114 &1240006596
  2813. MonoBehaviour:
  2814. m_ObjectHideFlags: 0
  2815. m_PrefabParentObject: {fileID: 114264540254518336, guid: bcd76c1e78564ad4cafec91e517586af,
  2816. type: 2}
  2817. m_PrefabInternal: {fileID: 1615544598}
  2818. m_GameObject: {fileID: 1240006593}
  2819. m_Enabled: 1
  2820. m_EditorHideFlags: 0
  2821. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2822. m_Name:
  2823. m_EditorClassIdentifier:
  2824. m_Material: {fileID: 0}
  2825. m_Color: {r: 1, g: 1, b: 1, a: 1}
  2826. m_RaycastTarget: 1
  2827. m_OnCullStateChanged:
  2828. m_PersistentCalls:
  2829. m_Calls: []
  2830. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  2831. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  2832. m_Sprite: {fileID: 21300000, guid: 4279b0c7f5b408c449b47e8b93d64566, type: 3}
  2833. m_Type: 0
  2834. m_PreserveAspect: 1
  2835. m_FillCenter: 1
  2836. m_FillMethod: 4
  2837. m_FillAmount: 1
  2838. m_FillClockwise: 1
  2839. m_FillOrigin: 0
  2840. --- !u!222 &1240006597
  2841. CanvasRenderer:
  2842. m_ObjectHideFlags: 0
  2843. m_PrefabParentObject: {fileID: 222472285353934066, guid: bcd76c1e78564ad4cafec91e517586af,
  2844. type: 2}
  2845. m_PrefabInternal: {fileID: 1615544598}
  2846. m_GameObject: {fileID: 1240006593}
  2847. --- !u!1 &1292802429
  2848. GameObject:
  2849. m_ObjectHideFlags: 0
  2850. m_PrefabParentObject: {fileID: 1022826452306094, guid: 9301daacae57091409db44ffaf9b5d9c,
  2851. type: 2}
  2852. m_PrefabInternal: {fileID: 2067816372}
  2853. serializedVersion: 5
  2854. m_Component:
  2855. - component: {fileID: 1292802430}
  2856. - component: {fileID: 1292802433}
  2857. - component: {fileID: 1292802432}
  2858. - component: {fileID: 1292802431}
  2859. m_Layer: 0
  2860. m_Name: Image
  2861. m_TagString: Untagged
  2862. m_Icon: {fileID: 0}
  2863. m_NavMeshLayer: 0
  2864. m_StaticEditorFlags: 0
  2865. m_IsActive: 1
  2866. --- !u!224 &1292802430
  2867. RectTransform:
  2868. m_ObjectHideFlags: 0
  2869. m_PrefabParentObject: {fileID: 224039627261264474, guid: 9301daacae57091409db44ffaf9b5d9c,
  2870. type: 2}
  2871. m_PrefabInternal: {fileID: 2067816372}
  2872. m_GameObject: {fileID: 1292802429}
  2873. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2874. m_LocalPosition: {x: 0, y: 0, z: 0}
  2875. m_LocalScale: {x: 1, y: 1, z: 1}
  2876. m_Children: []
  2877. m_Father: {fileID: 63047651}
  2878. m_RootOrder: 1
  2879. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2880. m_AnchorMin: {x: 0, y: 0.09622505}
  2881. m_AnchorMax: {x: 1, y: 0.22122504}
  2882. m_AnchoredPosition: {x: 0, y: 4}
  2883. m_SizeDelta: {x: -257.9, y: -8}
  2884. m_Pivot: {x: 0.5, y: 0.5}
  2885. --- !u!114 &1292802431
  2886. MonoBehaviour:
  2887. m_ObjectHideFlags: 0
  2888. m_PrefabParentObject: {fileID: 114451423229166968, guid: 9301daacae57091409db44ffaf9b5d9c,
  2889. type: 2}
  2890. m_PrefabInternal: {fileID: 2067816372}
  2891. m_GameObject: {fileID: 1292802429}
  2892. m_Enabled: 1
  2893. m_EditorHideFlags: 0
  2894. m_Script: {fileID: 1573420865, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2895. m_Name:
  2896. m_EditorClassIdentifier:
  2897. m_EffectColor: {r: 0, g: 0, b: 0, a: 0.5}
  2898. m_EffectDistance: {x: 2, y: -2}
  2899. m_UseGraphicAlpha: 1
  2900. --- !u!114 &1292802432
  2901. MonoBehaviour:
  2902. m_ObjectHideFlags: 0
  2903. m_PrefabParentObject: {fileID: 114622642907049468, guid: 9301daacae57091409db44ffaf9b5d9c,
  2904. type: 2}
  2905. m_PrefabInternal: {fileID: 2067816372}
  2906. m_GameObject: {fileID: 1292802429}
  2907. m_Enabled: 1
  2908. m_EditorHideFlags: 0
  2909. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  2910. m_Name:
  2911. m_EditorClassIdentifier:
  2912. m_Material: {fileID: 0}
  2913. m_Color: {r: 1, g: 1, b: 1, a: 1}
  2914. m_RaycastTarget: 1
  2915. m_OnCullStateChanged:
  2916. m_PersistentCalls:
  2917. m_Calls: []
  2918. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  2919. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  2920. m_Sprite: {fileID: 0}
  2921. m_Type: 0
  2922. m_PreserveAspect: 0
  2923. m_FillCenter: 1
  2924. m_FillMethod: 4
  2925. m_FillAmount: 1
  2926. m_FillClockwise: 1
  2927. m_FillOrigin: 0
  2928. --- !u!222 &1292802433
  2929. CanvasRenderer:
  2930. m_ObjectHideFlags: 0
  2931. m_PrefabParentObject: {fileID: 222441833647767556, guid: 9301daacae57091409db44ffaf9b5d9c,
  2932. type: 2}
  2933. m_PrefabInternal: {fileID: 2067816372}
  2934. m_GameObject: {fileID: 1292802429}
  2935. --- !u!224 &1338291960
  2936. RectTransform:
  2937. m_ObjectHideFlags: 0
  2938. m_PrefabParentObject: {fileID: 224968310443385938, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  2939. type: 2}
  2940. m_PrefabInternal: {fileID: 774040002}
  2941. m_GameObject: {fileID: 774040003}
  2942. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2943. m_LocalPosition: {x: 0, y: 0, z: 0}
  2944. m_LocalScale: {x: 1, y: 1, z: 1}
  2945. m_Children:
  2946. - {fileID: 1984960086}
  2947. - {fileID: 1938405412}
  2948. - {fileID: 1165288179}
  2949. m_Father: {fileID: 355912978}
  2950. m_RootOrder: 0
  2951. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2952. m_AnchorMin: {x: 0, y: 0}
  2953. m_AnchorMax: {x: 1, y: 1}
  2954. m_AnchoredPosition: {x: 0, y: 0}
  2955. m_SizeDelta: {x: 0, y: 0}
  2956. m_Pivot: {x: 0.5, y: 0.5}
  2957. --- !u!1 &1414936864
  2958. GameObject:
  2959. m_ObjectHideFlags: 0
  2960. m_PrefabParentObject: {fileID: 1742964249160434, guid: bcd76c1e78564ad4cafec91e517586af,
  2961. type: 2}
  2962. m_PrefabInternal: {fileID: 1615544598}
  2963. serializedVersion: 5
  2964. m_Component:
  2965. - component: {fileID: 1414936865}
  2966. - component: {fileID: 1414936867}
  2967. - component: {fileID: 1414936866}
  2968. m_Layer: 0
  2969. m_Name: Image
  2970. m_TagString: Untagged
  2971. m_Icon: {fileID: 0}
  2972. m_NavMeshLayer: 0
  2973. m_StaticEditorFlags: 0
  2974. m_IsActive: 1
  2975. --- !u!224 &1414936865
  2976. RectTransform:
  2977. m_ObjectHideFlags: 0
  2978. m_PrefabParentObject: {fileID: 224093500589337470, guid: bcd76c1e78564ad4cafec91e517586af,
  2979. type: 2}
  2980. m_PrefabInternal: {fileID: 1615544598}
  2981. m_GameObject: {fileID: 1414936864}
  2982. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  2983. m_LocalPosition: {x: 0, y: 0, z: 0}
  2984. m_LocalScale: {x: 1, y: 1, z: 1}
  2985. m_Children: []
  2986. m_Father: {fileID: 1615544599}
  2987. m_RootOrder: 2
  2988. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  2989. m_AnchorMin: {x: 0.66356266, y: 0.6926294}
  2990. m_AnchorMax: {x: 1, y: 1}
  2991. m_AnchoredPosition: {x: -1.8500977, y: 13.5}
  2992. m_SizeDelta: {x: 3.7000122, y: 22}
  2993. m_Pivot: {x: 0.5, y: 0.5}
  2994. --- !u!114 &1414936866
  2995. MonoBehaviour:
  2996. m_ObjectHideFlags: 0
  2997. m_PrefabParentObject: {fileID: 114603804922107888, guid: bcd76c1e78564ad4cafec91e517586af,
  2998. type: 2}
  2999. m_PrefabInternal: {fileID: 1615544598}
  3000. m_GameObject: {fileID: 1414936864}
  3001. m_Enabled: 1
  3002. m_EditorHideFlags: 0
  3003. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  3004. m_Name:
  3005. m_EditorClassIdentifier:
  3006. m_Material: {fileID: 0}
  3007. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3008. m_RaycastTarget: 1
  3009. m_OnCullStateChanged:
  3010. m_PersistentCalls:
  3011. m_Calls: []
  3012. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  3013. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  3014. m_Sprite: {fileID: 21300000, guid: 36f96db63fce9e2448e88724356625dd, type: 3}
  3015. m_Type: 0
  3016. m_PreserveAspect: 1
  3017. m_FillCenter: 1
  3018. m_FillMethod: 4
  3019. m_FillAmount: 1
  3020. m_FillClockwise: 1
  3021. m_FillOrigin: 0
  3022. --- !u!222 &1414936867
  3023. CanvasRenderer:
  3024. m_ObjectHideFlags: 0
  3025. m_PrefabParentObject: {fileID: 222336361148843836, guid: bcd76c1e78564ad4cafec91e517586af,
  3026. type: 2}
  3027. m_PrefabInternal: {fileID: 1615544598}
  3028. m_GameObject: {fileID: 1414936864}
  3029. --- !u!224 &1433921937
  3030. RectTransform:
  3031. m_ObjectHideFlags: 0
  3032. m_PrefabParentObject: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  3033. type: 2}
  3034. m_PrefabInternal: {fileID: 2067816372}
  3035. m_GameObject: {fileID: 1433921938}
  3036. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  3037. m_LocalPosition: {x: 0, y: 0, z: 0}
  3038. m_LocalScale: {x: 0.9999981, y: 0.9999981, z: 0.9999981}
  3039. m_Children:
  3040. - {fileID: 672553311}
  3041. - {fileID: 300609392}
  3042. - {fileID: 63047651}
  3043. m_Father: {fileID: 355912978}
  3044. m_RootOrder: 2
  3045. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3046. m_AnchorMin: {x: 0, y: 0}
  3047. m_AnchorMax: {x: 1, y: 1}
  3048. m_AnchoredPosition: {x: 0, y: 0}
  3049. m_SizeDelta: {x: 0, y: 0}
  3050. m_Pivot: {x: 0.5, y: 0.5}
  3051. --- !u!1 &1433921938
  3052. GameObject:
  3053. m_ObjectHideFlags: 0
  3054. m_PrefabParentObject: {fileID: 1074636747102064, guid: 9301daacae57091409db44ffaf9b5d9c,
  3055. type: 2}
  3056. m_PrefabInternal: {fileID: 2067816372}
  3057. serializedVersion: 5
  3058. m_Component:
  3059. - component: {fileID: 1433921937}
  3060. - component: {fileID: 1433921939}
  3061. m_Layer: 0
  3062. m_Name: Panel - DeviceError
  3063. m_TagString: Untagged
  3064. m_Icon: {fileID: 0}
  3065. m_NavMeshLayer: 0
  3066. m_StaticEditorFlags: 0
  3067. m_IsActive: 0
  3068. --- !u!222 &1433921939
  3069. CanvasRenderer:
  3070. m_ObjectHideFlags: 0
  3071. m_PrefabParentObject: {fileID: 222783268989912360, guid: 9301daacae57091409db44ffaf9b5d9c,
  3072. type: 2}
  3073. m_PrefabInternal: {fileID: 2067816372}
  3074. m_GameObject: {fileID: 1433921938}
  3075. --- !u!1 &1457621336
  3076. GameObject:
  3077. m_ObjectHideFlags: 0
  3078. m_PrefabParentObject: {fileID: 1227491834791790, guid: bcd76c1e78564ad4cafec91e517586af,
  3079. type: 2}
  3080. m_PrefabInternal: {fileID: 1615544598}
  3081. serializedVersion: 5
  3082. m_Component:
  3083. - component: {fileID: 1457621337}
  3084. - component: {fileID: 1457621339}
  3085. - component: {fileID: 1457621338}
  3086. m_Layer: 0
  3087. m_Name: Content - ErrorText
  3088. m_TagString: Untagged
  3089. m_Icon: {fileID: 0}
  3090. m_NavMeshLayer: 0
  3091. m_StaticEditorFlags: 0
  3092. m_IsActive: 1
  3093. --- !u!224 &1457621337
  3094. RectTransform:
  3095. m_ObjectHideFlags: 0
  3096. m_PrefabParentObject: {fileID: 224746030447600858, guid: bcd76c1e78564ad4cafec91e517586af,
  3097. type: 2}
  3098. m_PrefabInternal: {fileID: 1615544598}
  3099. m_GameObject: {fileID: 1457621336}
  3100. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  3101. m_LocalPosition: {x: 0, y: 0, z: 0}
  3102. m_LocalScale: {x: 1, y: 1, z: 1}
  3103. m_Children:
  3104. - {fileID: 706082}
  3105. - {fileID: 2132855619}
  3106. - {fileID: 32491329}
  3107. - {fileID: 1194908000}
  3108. m_Father: {fileID: 812341334}
  3109. m_RootOrder: 0
  3110. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3111. m_AnchorMin: {x: 0.136, y: 0.17989255}
  3112. m_AnchorMax: {x: 0.86283183, y: 0.7277383}
  3113. m_AnchoredPosition: {x: 0.99998474, y: 5}
  3114. m_SizeDelta: {x: -4.200012, y: -1}
  3115. m_Pivot: {x: 0.5, y: 0.5}
  3116. --- !u!114 &1457621338
  3117. MonoBehaviour:
  3118. m_ObjectHideFlags: 0
  3119. m_PrefabParentObject: {fileID: 114167975098270292, guid: bcd76c1e78564ad4cafec91e517586af,
  3120. type: 2}
  3121. m_PrefabInternal: {fileID: 1615544598}
  3122. m_GameObject: {fileID: 1457621336}
  3123. m_Enabled: 1
  3124. m_EditorHideFlags: 0
  3125. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  3126. m_Name:
  3127. m_EditorClassIdentifier:
  3128. m_Material: {fileID: 0}
  3129. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3130. m_RaycastTarget: 1
  3131. m_OnCullStateChanged:
  3132. m_PersistentCalls:
  3133. m_Calls: []
  3134. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  3135. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  3136. m_Sprite: {fileID: 21300000, guid: 806fabc6be3253f4cb05a0814eb17fde, type: 3}
  3137. m_Type: 0
  3138. m_PreserveAspect: 0
  3139. m_FillCenter: 1
  3140. m_FillMethod: 4
  3141. m_FillAmount: 1
  3142. m_FillClockwise: 1
  3143. m_FillOrigin: 0
  3144. --- !u!222 &1457621339
  3145. CanvasRenderer:
  3146. m_ObjectHideFlags: 0
  3147. m_PrefabParentObject: {fileID: 222143941155525198, guid: bcd76c1e78564ad4cafec91e517586af,
  3148. type: 2}
  3149. m_PrefabInternal: {fileID: 1615544598}
  3150. m_GameObject: {fileID: 1457621336}
  3151. --- !u!1 &1465377790
  3152. GameObject:
  3153. m_ObjectHideFlags: 0
  3154. m_PrefabParentObject: {fileID: 1313454488225196, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3155. type: 2}
  3156. m_PrefabInternal: {fileID: 774040002}
  3157. serializedVersion: 5
  3158. m_Component:
  3159. - component: {fileID: 1465377791}
  3160. - component: {fileID: 1465377793}
  3161. - component: {fileID: 1465377792}
  3162. m_Layer: 0
  3163. m_Name: Text - message
  3164. m_TagString: Untagged
  3165. m_Icon: {fileID: 0}
  3166. m_NavMeshLayer: 0
  3167. m_StaticEditorFlags: 0
  3168. m_IsActive: 1
  3169. --- !u!224 &1465377791
  3170. RectTransform:
  3171. m_ObjectHideFlags: 0
  3172. m_PrefabParentObject: {fileID: 224352712948952778, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3173. type: 2}
  3174. m_PrefabInternal: {fileID: 774040002}
  3175. m_GameObject: {fileID: 1465377790}
  3176. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  3177. m_LocalPosition: {x: 0, y: 0, z: 0}
  3178. m_LocalScale: {x: 1, y: 1, z: 1}
  3179. m_Children: []
  3180. m_Father: {fileID: 854313225}
  3181. m_RootOrder: 1
  3182. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3183. m_AnchorMin: {x: 0.17246108, y: 0.17600001}
  3184. m_AnchorMax: {x: 0.915, y: 0.5}
  3185. m_AnchoredPosition: {x: 0, y: 1.300003}
  3186. m_SizeDelta: {x: -0.2000122, y: -2.5999985}
  3187. m_Pivot: {x: 0.5, y: 0.5}
  3188. --- !u!114 &1465377792
  3189. MonoBehaviour:
  3190. m_ObjectHideFlags: 0
  3191. m_PrefabParentObject: {fileID: 114699227037163696, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3192. type: 2}
  3193. m_PrefabInternal: {fileID: 774040002}
  3194. m_GameObject: {fileID: 1465377790}
  3195. m_Enabled: 1
  3196. m_EditorHideFlags: 0
  3197. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  3198. m_Name:
  3199. m_EditorClassIdentifier:
  3200. m_Material: {fileID: 0}
  3201. m_Color: {r: 0, g: 0, b: 0, a: 1}
  3202. m_RaycastTarget: 1
  3203. m_OnCullStateChanged:
  3204. m_PersistentCalls:
  3205. m_Calls: []
  3206. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  3207. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  3208. m_FontData:
  3209. m_Font: {fileID: 12800000, guid: 5ca928efea4136b4d9460387747d3580, type: 3}
  3210. m_FontSize: 14
  3211. m_FontStyle: 0
  3212. m_BestFit: 1
  3213. m_MinSize: 10
  3214. m_MaxSize: 50
  3215. m_Alignment: 4
  3216. m_AlignByGeometry: 1
  3217. m_RichText: 1
  3218. m_HorizontalOverflow: 0
  3219. m_VerticalOverflow: 0
  3220. m_LineSpacing: 1
  3221. m_Text: Read Carefully
  3222. --- !u!222 &1465377793
  3223. CanvasRenderer:
  3224. m_ObjectHideFlags: 0
  3225. m_PrefabParentObject: {fileID: 222498963636649222, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3226. type: 2}
  3227. m_PrefabInternal: {fileID: 774040002}
  3228. m_GameObject: {fileID: 1465377790}
  3229. --- !u!1 &1468170598
  3230. GameObject:
  3231. m_ObjectHideFlags: 0
  3232. m_PrefabParentObject: {fileID: 1725600997987550, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3233. type: 2}
  3234. m_PrefabInternal: {fileID: 774040002}
  3235. serializedVersion: 5
  3236. m_Component:
  3237. - component: {fileID: 1468170599}
  3238. - component: {fileID: 1468170601}
  3239. - component: {fileID: 1468170600}
  3240. m_Layer: 5
  3241. m_Name: Content
  3242. m_TagString: Untagged
  3243. m_Icon: {fileID: 0}
  3244. m_NavMeshLayer: 0
  3245. m_StaticEditorFlags: 0
  3246. m_IsActive: 1
  3247. --- !u!224 &1468170599
  3248. RectTransform:
  3249. m_ObjectHideFlags: 0
  3250. m_PrefabParentObject: {fileID: 224455898292921578, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3251. type: 2}
  3252. m_PrefabInternal: {fileID: 774040002}
  3253. m_GameObject: {fileID: 1468170598}
  3254. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  3255. m_LocalPosition: {x: 0, y: 0, z: 0}
  3256. m_LocalScale: {x: 1, y: 1, z: 1}
  3257. m_Children:
  3258. - {fileID: 98719081}
  3259. m_Father: {fileID: 1098174700}
  3260. m_RootOrder: 0
  3261. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3262. m_AnchorMin: {x: 0.5, y: 0.5}
  3263. m_AnchorMax: {x: 0.5, y: 0.5}
  3264. m_AnchoredPosition: {x: -130.54, y: 69.9708}
  3265. m_SizeDelta: {x: 261.07, y: 21812}
  3266. m_Pivot: {x: 0, y: 1}
  3267. --- !u!114 &1468170600
  3268. MonoBehaviour:
  3269. m_ObjectHideFlags: 0
  3270. m_PrefabParentObject: {fileID: 114751499755268854, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3271. type: 2}
  3272. m_PrefabInternal: {fileID: 774040002}
  3273. m_GameObject: {fileID: 1468170598}
  3274. m_Enabled: 1
  3275. m_EditorHideFlags: 0
  3276. m_Script: {fileID: 1741964061, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  3277. m_Name:
  3278. m_EditorClassIdentifier:
  3279. m_HorizontalFit: 0
  3280. m_VerticalFit: 2
  3281. --- !u!114 &1468170601
  3282. MonoBehaviour:
  3283. m_ObjectHideFlags: 0
  3284. m_PrefabParentObject: {fileID: 114237006074919062, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3285. type: 2}
  3286. m_PrefabInternal: {fileID: 774040002}
  3287. m_GameObject: {fileID: 1468170598}
  3288. m_Enabled: 1
  3289. m_EditorHideFlags: 0
  3290. m_Script: {fileID: 1297475563, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  3291. m_Name:
  3292. m_EditorClassIdentifier:
  3293. m_Padding:
  3294. m_Left: 7
  3295. m_Right: 5
  3296. m_Top: 5
  3297. m_Bottom: 0
  3298. m_ChildAlignment: 0
  3299. m_Spacing: 0
  3300. m_ChildForceExpandWidth: 1
  3301. m_ChildForceExpandHeight: 0
  3302. m_ChildControlWidth: 1
  3303. m_ChildControlHeight: 0
  3304. --- !u!1 &1471508773
  3305. GameObject:
  3306. m_ObjectHideFlags: 0
  3307. m_PrefabParentObject: {fileID: 1329800014990134, guid: 9301daacae57091409db44ffaf9b5d9c,
  3308. type: 2}
  3309. m_PrefabInternal: {fileID: 2067816372}
  3310. serializedVersion: 5
  3311. m_Component:
  3312. - component: {fileID: 1471508774}
  3313. - component: {fileID: 1471508777}
  3314. - component: {fileID: 1471508776}
  3315. - component: {fileID: 1471508775}
  3316. m_Layer: 0
  3317. m_Name: Text
  3318. m_TagString: Untagged
  3319. m_Icon: {fileID: 0}
  3320. m_NavMeshLayer: 0
  3321. m_StaticEditorFlags: 0
  3322. m_IsActive: 1
  3323. --- !u!224 &1471508774
  3324. RectTransform:
  3325. m_ObjectHideFlags: 0
  3326. m_PrefabParentObject: {fileID: 224362311056895116, guid: 9301daacae57091409db44ffaf9b5d9c,
  3327. type: 2}
  3328. m_PrefabInternal: {fileID: 2067816372}
  3329. m_GameObject: {fileID: 1471508773}
  3330. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  3331. m_LocalPosition: {x: 0, y: 0, z: 0}
  3332. m_LocalScale: {x: 1, y: 1, z: 1}
  3333. m_Children: []
  3334. m_Father: {fileID: 63047651}
  3335. m_RootOrder: 0
  3336. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3337. m_AnchorMin: {x: 0, y: 0}
  3338. m_AnchorMax: {x: 1, y: 1}
  3339. m_AnchoredPosition: {x: 0, y: 0}
  3340. m_SizeDelta: {x: 0, y: 0}
  3341. m_Pivot: {x: 0.5, y: 0.5}
  3342. --- !u!114 &1471508775
  3343. MonoBehaviour:
  3344. m_ObjectHideFlags: 0
  3345. m_PrefabParentObject: {fileID: 114460776502812264, guid: 9301daacae57091409db44ffaf9b5d9c,
  3346. type: 2}
  3347. m_PrefabInternal: {fileID: 2067816372}
  3348. m_GameObject: {fileID: 1471508773}
  3349. m_Enabled: 1
  3350. m_EditorHideFlags: 0
  3351. m_Script: {fileID: 1573420865, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  3352. m_Name:
  3353. m_EditorClassIdentifier:
  3354. m_EffectColor: {r: 0, g: 0, b: 0, a: 0.5}
  3355. m_EffectDistance: {x: 2, y: -2}
  3356. m_UseGraphicAlpha: 1
  3357. --- !u!114 &1471508776
  3358. MonoBehaviour:
  3359. m_ObjectHideFlags: 0
  3360. m_PrefabParentObject: {fileID: 114908314310997298, guid: 9301daacae57091409db44ffaf9b5d9c,
  3361. type: 2}
  3362. m_PrefabInternal: {fileID: 2067816372}
  3363. m_GameObject: {fileID: 1471508773}
  3364. m_Enabled: 1
  3365. m_EditorHideFlags: 0
  3366. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  3367. m_Name:
  3368. m_EditorClassIdentifier:
  3369. m_Material: {fileID: 0}
  3370. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3371. m_RaycastTarget: 1
  3372. m_OnCullStateChanged:
  3373. m_PersistentCalls:
  3374. m_Calls: []
  3375. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  3376. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  3377. m_FontData:
  3378. m_Font: {fileID: 12800000, guid: 5ca928efea4136b4d9460387747d3580, type: 3}
  3379. m_FontSize: 20
  3380. m_FontStyle: 0
  3381. m_BestFit: 1
  3382. m_MinSize: 2
  3383. m_MaxSize: 60
  3384. m_Alignment: 4
  3385. m_AlignByGeometry: 1
  3386. m_RichText: 1
  3387. m_HorizontalOverflow: 0
  3388. m_VerticalOverflow: 0
  3389. m_LineSpacing: 1
  3390. m_Text: Learn more
  3391. --- !u!222 &1471508777
  3392. CanvasRenderer:
  3393. m_ObjectHideFlags: 0
  3394. m_PrefabParentObject: {fileID: 222544762431800014, guid: 9301daacae57091409db44ffaf9b5d9c,
  3395. type: 2}
  3396. m_PrefabInternal: {fileID: 2067816372}
  3397. m_GameObject: {fileID: 1471508773}
  3398. --- !u!1001 &1615544598
  3399. Prefab:
  3400. m_ObjectHideFlags: 0
  3401. serializedVersion: 2
  3402. m_Modification:
  3403. m_TransformParent: {fileID: 355912978}
  3404. m_Modifications:
  3405. - target: {fileID: 114026320509713530, guid: bcd76c1e78564ad4cafec91e517586af,
  3406. type: 2}
  3407. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.size
  3408. value: 1
  3409. objectReference: {fileID: 0}
  3410. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3411. type: 2}
  3412. propertyPath: m_LocalPosition.x
  3413. value: 0
  3414. objectReference: {fileID: 0}
  3415. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3416. type: 2}
  3417. propertyPath: m_LocalPosition.y
  3418. value: 0
  3419. objectReference: {fileID: 0}
  3420. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3421. type: 2}
  3422. propertyPath: m_LocalPosition.z
  3423. value: 0
  3424. objectReference: {fileID: 0}
  3425. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3426. type: 2}
  3427. propertyPath: m_LocalRotation.x
  3428. value: 0
  3429. objectReference: {fileID: 0}
  3430. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3431. type: 2}
  3432. propertyPath: m_LocalRotation.y
  3433. value: 0
  3434. objectReference: {fileID: 0}
  3435. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3436. type: 2}
  3437. propertyPath: m_LocalRotation.z
  3438. value: 0
  3439. objectReference: {fileID: 0}
  3440. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3441. type: 2}
  3442. propertyPath: m_LocalRotation.w
  3443. value: 1
  3444. objectReference: {fileID: 0}
  3445. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3446. type: 2}
  3447. propertyPath: m_RootOrder
  3448. value: 1
  3449. objectReference: {fileID: 0}
  3450. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3451. type: 2}
  3452. propertyPath: m_AnchoredPosition.x
  3453. value: 0
  3454. objectReference: {fileID: 0}
  3455. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3456. type: 2}
  3457. propertyPath: m_AnchoredPosition.y
  3458. value: 0
  3459. objectReference: {fileID: 0}
  3460. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3461. type: 2}
  3462. propertyPath: m_SizeDelta.x
  3463. value: 0
  3464. objectReference: {fileID: 0}
  3465. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3466. type: 2}
  3467. propertyPath: m_SizeDelta.y
  3468. value: 0
  3469. objectReference: {fileID: 0}
  3470. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3471. type: 2}
  3472. propertyPath: m_AnchorMin.x
  3473. value: 0
  3474. objectReference: {fileID: 0}
  3475. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3476. type: 2}
  3477. propertyPath: m_AnchorMin.y
  3478. value: 0
  3479. objectReference: {fileID: 0}
  3480. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3481. type: 2}
  3482. propertyPath: m_AnchorMax.x
  3483. value: 1
  3484. objectReference: {fileID: 0}
  3485. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3486. type: 2}
  3487. propertyPath: m_AnchorMax.y
  3488. value: 1
  3489. objectReference: {fileID: 0}
  3490. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3491. type: 2}
  3492. propertyPath: m_Pivot.x
  3493. value: 0.5
  3494. objectReference: {fileID: 0}
  3495. - target: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3496. type: 2}
  3497. propertyPath: m_Pivot.y
  3498. value: 0.5
  3499. objectReference: {fileID: 0}
  3500. - target: {fileID: 224703411328187066, guid: bcd76c1e78564ad4cafec91e517586af,
  3501. type: 2}
  3502. propertyPath: m_SizeDelta.y
  3503. value: 185.73389
  3504. objectReference: {fileID: 0}
  3505. - target: {fileID: 224093500589337470, guid: bcd76c1e78564ad4cafec91e517586af,
  3506. type: 2}
  3507. propertyPath: m_AnchoredPosition.x
  3508. value: -1.8500977
  3509. objectReference: {fileID: 0}
  3510. - target: {fileID: 224093500589337470, guid: bcd76c1e78564ad4cafec91e517586af,
  3511. type: 2}
  3512. propertyPath: m_AnchoredPosition.y
  3513. value: 13.5
  3514. objectReference: {fileID: 0}
  3515. - target: {fileID: 224468969402885978, guid: bcd76c1e78564ad4cafec91e517586af,
  3516. type: 2}
  3517. propertyPath: m_AnchorMax.x
  3518. value: 1
  3519. objectReference: {fileID: 0}
  3520. - target: {fileID: 224468969402885978, guid: bcd76c1e78564ad4cafec91e517586af,
  3521. type: 2}
  3522. propertyPath: m_AnchorMax.y
  3523. value: 1
  3524. objectReference: {fileID: 0}
  3525. - target: {fileID: 224468969402885978, guid: bcd76c1e78564ad4cafec91e517586af,
  3526. type: 2}
  3527. propertyPath: m_SizeDelta.x
  3528. value: 0
  3529. objectReference: {fileID: 0}
  3530. - target: {fileID: 1772532053645584, guid: bcd76c1e78564ad4cafec91e517586af, type: 2}
  3531. propertyPath: m_IsActive
  3532. value: 0
  3533. objectReference: {fileID: 0}
  3534. - target: {fileID: 224916958950027118, guid: bcd76c1e78564ad4cafec91e517586af,
  3535. type: 2}
  3536. propertyPath: m_AnchoredPosition.y
  3537. value: 0
  3538. objectReference: {fileID: 0}
  3539. - target: {fileID: 114026320509713530, guid: bcd76c1e78564ad4cafec91e517586af,
  3540. type: 2}
  3541. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
  3542. value: 1
  3543. objectReference: {fileID: 0}
  3544. - target: {fileID: 114026320509713530, guid: bcd76c1e78564ad4cafec91e517586af,
  3545. type: 2}
  3546. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState
  3547. value: 2
  3548. objectReference: {fileID: 0}
  3549. - target: {fileID: 114026320509713530, guid: bcd76c1e78564ad4cafec91e517586af,
  3550. type: 2}
  3551. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target
  3552. value:
  3553. objectReference: {fileID: 355912982}
  3554. - target: {fileID: 114026320509713530, guid: bcd76c1e78564ad4cafec91e517586af,
  3555. type: 2}
  3556. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
  3557. value: Quit
  3558. objectReference: {fileID: 0}
  3559. - target: {fileID: 114026320509713530, guid: bcd76c1e78564ad4cafec91e517586af,
  3560. type: 2}
  3561. propertyPath: m_OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
  3562. value: UnityEngine.Object, UnityEngine
  3563. objectReference: {fileID: 0}
  3564. - target: {fileID: 224922853740343120, guid: bcd76c1e78564ad4cafec91e517586af,
  3565. type: 2}
  3566. propertyPath: m_AnchoredPosition.x
  3567. value: -111.96387
  3568. objectReference: {fileID: 0}
  3569. - target: {fileID: 224468969402885978, guid: bcd76c1e78564ad4cafec91e517586af,
  3570. type: 2}
  3571. propertyPath: m_SizeDelta.y
  3572. value: 185.73389
  3573. objectReference: {fileID: 0}
  3574. m_RemovedComponents: []
  3575. m_ParentPrefab: {fileID: 100100000, guid: bcd76c1e78564ad4cafec91e517586af, type: 2}
  3576. m_RootGameObject: {fileID: 1615544600}
  3577. m_IsPrefabParent: 0
  3578. --- !u!224 &1615544599
  3579. RectTransform:
  3580. m_ObjectHideFlags: 0
  3581. m_PrefabParentObject: {fileID: 224800421937639588, guid: bcd76c1e78564ad4cafec91e517586af,
  3582. type: 2}
  3583. m_PrefabInternal: {fileID: 1615544598}
  3584. m_GameObject: {fileID: 1615544600}
  3585. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  3586. m_LocalPosition: {x: 0, y: 0, z: 0}
  3587. m_LocalScale: {x: 1, y: 1, z: 1}
  3588. m_Children:
  3589. - {fileID: 1240006594}
  3590. - {fileID: 812341334}
  3591. - {fileID: 1414936865}
  3592. m_Father: {fileID: 355912978}
  3593. m_RootOrder: 1
  3594. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3595. m_AnchorMin: {x: 0, y: 0}
  3596. m_AnchorMax: {x: 1, y: 1}
  3597. m_AnchoredPosition: {x: 0, y: 0}
  3598. m_SizeDelta: {x: 0, y: 0}
  3599. m_Pivot: {x: 0.5, y: 0.5}
  3600. --- !u!1 &1615544600
  3601. GameObject:
  3602. m_ObjectHideFlags: 0
  3603. m_PrefabParentObject: {fileID: 1772532053645584, guid: bcd76c1e78564ad4cafec91e517586af,
  3604. type: 2}
  3605. m_PrefabInternal: {fileID: 1615544598}
  3606. serializedVersion: 5
  3607. m_Component:
  3608. - component: {fileID: 1615544599}
  3609. - component: {fileID: 1615544601}
  3610. m_Layer: 0
  3611. m_Name: Panel - ErrorConnection
  3612. m_TagString: Untagged
  3613. m_Icon: {fileID: 0}
  3614. m_NavMeshLayer: 0
  3615. m_StaticEditorFlags: 0
  3616. m_IsActive: 0
  3617. --- !u!222 &1615544601
  3618. CanvasRenderer:
  3619. m_ObjectHideFlags: 0
  3620. m_PrefabParentObject: {fileID: 222728674578031420, guid: bcd76c1e78564ad4cafec91e517586af,
  3621. type: 2}
  3622. m_PrefabInternal: {fileID: 1615544598}
  3623. m_GameObject: {fileID: 1615544600}
  3624. --- !u!1 &1691875524
  3625. GameObject:
  3626. m_ObjectHideFlags: 0
  3627. m_PrefabParentObject: {fileID: 1066001301020988, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3628. type: 2}
  3629. m_PrefabInternal: {fileID: 774040002}
  3630. serializedVersion: 5
  3631. m_Component:
  3632. - component: {fileID: 1691875525}
  3633. - component: {fileID: 1691875527}
  3634. - component: {fileID: 1691875526}
  3635. m_Layer: 0
  3636. m_Name: Text - Welcome
  3637. m_TagString: Untagged
  3638. m_Icon: {fileID: 0}
  3639. m_NavMeshLayer: 0
  3640. m_StaticEditorFlags: 0
  3641. m_IsActive: 1
  3642. --- !u!224 &1691875525
  3643. RectTransform:
  3644. m_ObjectHideFlags: 0
  3645. m_PrefabParentObject: {fileID: 224628247545289274, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3646. type: 2}
  3647. m_PrefabInternal: {fileID: 774040002}
  3648. m_GameObject: {fileID: 1691875524}
  3649. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  3650. m_LocalPosition: {x: 0, y: 0, z: 0}
  3651. m_LocalScale: {x: 0.3304886, y: 0.3304886, z: 0.3304886}
  3652. m_Children: []
  3653. m_Father: {fileID: 1938405412}
  3654. m_RootOrder: 0
  3655. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3656. m_AnchorMin: {x: 0.22376113, y: 0.7897041}
  3657. m_AnchorMax: {x: 0.936413, y: 0.97417605}
  3658. m_AnchoredPosition: {x: -0.5, y: -0.19999695}
  3659. m_SizeDelta: {x: 422.96997, y: 72.6}
  3660. m_Pivot: {x: 0.5, y: 0.5}
  3661. --- !u!114 &1691875526
  3662. MonoBehaviour:
  3663. m_ObjectHideFlags: 0
  3664. m_PrefabParentObject: {fileID: 114420197860520850, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3665. type: 2}
  3666. m_PrefabInternal: {fileID: 774040002}
  3667. m_GameObject: {fileID: 1691875524}
  3668. m_Enabled: 1
  3669. m_EditorHideFlags: 0
  3670. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  3671. m_Name:
  3672. m_EditorClassIdentifier:
  3673. m_Material: {fileID: 0}
  3674. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3675. m_RaycastTarget: 1
  3676. m_OnCullStateChanged:
  3677. m_PersistentCalls:
  3678. m_Calls: []
  3679. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  3680. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  3681. m_FontData:
  3682. m_Font: {fileID: 12800000, guid: 89ed40ff90614a04c9cd25f5c5f55771, type: 3}
  3683. m_FontSize: 42
  3684. m_FontStyle: 0
  3685. m_BestFit: 0
  3686. m_MinSize: 10
  3687. m_MaxSize: 87
  3688. m_Alignment: 4
  3689. m_AlignByGeometry: 0
  3690. m_RichText: 1
  3691. m_HorizontalOverflow: 0
  3692. m_VerticalOverflow: 0
  3693. m_LineSpacing: 1
  3694. m_Text: Welcome To ANTM Mobile Game
  3695. --- !u!222 &1691875527
  3696. CanvasRenderer:
  3697. m_ObjectHideFlags: 0
  3698. m_PrefabParentObject: {fileID: 222388284259267790, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3699. type: 2}
  3700. m_PrefabInternal: {fileID: 774040002}
  3701. m_GameObject: {fileID: 1691875524}
  3702. --- !u!1 &1715346390
  3703. GameObject:
  3704. m_ObjectHideFlags: 0
  3705. m_PrefabParentObject: {fileID: 1327377176885528, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3706. type: 2}
  3707. m_PrefabInternal: {fileID: 774040002}
  3708. serializedVersion: 5
  3709. m_Component:
  3710. - component: {fileID: 1715346391}
  3711. - component: {fileID: 1715346393}
  3712. - component: {fileID: 1715346392}
  3713. m_Layer: 0
  3714. m_Name: Text - Welcome B
  3715. m_TagString: Untagged
  3716. m_Icon: {fileID: 0}
  3717. m_NavMeshLayer: 0
  3718. m_StaticEditorFlags: 0
  3719. m_IsActive: 1
  3720. --- !u!224 &1715346391
  3721. RectTransform:
  3722. m_ObjectHideFlags: 0
  3723. m_PrefabParentObject: {fileID: 224907844798516024, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3724. type: 2}
  3725. m_PrefabInternal: {fileID: 774040002}
  3726. m_GameObject: {fileID: 1715346390}
  3727. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  3728. m_LocalPosition: {x: 0, y: 0, z: 0}
  3729. m_LocalScale: {x: 0.33048496, y: 0.33048496, z: 0.33048496}
  3730. m_Children: []
  3731. m_Father: {fileID: 98719081}
  3732. m_RootOrder: 1
  3733. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3734. m_AnchorMin: {x: 0.5, y: 1}
  3735. m_AnchorMax: {x: 0.5, y: 1}
  3736. m_AnchoredPosition: {x: -0.000010123, y: -7038}
  3737. m_SizeDelta: {x: 752, y: 7488.76}
  3738. m_Pivot: {x: 0.5, y: 0.5}
  3739. --- !u!114 &1715346392
  3740. MonoBehaviour:
  3741. m_ObjectHideFlags: 0
  3742. m_PrefabParentObject: {fileID: 114576646098086602, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3743. type: 2}
  3744. m_PrefabInternal: {fileID: 774040002}
  3745. m_GameObject: {fileID: 1715346390}
  3746. m_Enabled: 1
  3747. m_EditorHideFlags: 0
  3748. m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  3749. m_Name:
  3750. m_EditorClassIdentifier:
  3751. m_Material: {fileID: 0}
  3752. m_Color: {r: 0.14901961, g: 0.098039225, b: 0.13725491, a: 1}
  3753. m_RaycastTarget: 1
  3754. m_OnCullStateChanged:
  3755. m_PersistentCalls:
  3756. m_Calls: []
  3757. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  3758. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  3759. m_FontData:
  3760. m_Font: {fileID: 12800000, guid: 5ca928efea4136b4d9460387747d3580, type: 3}
  3761. m_FontSize: 42
  3762. m_FontStyle: 0
  3763. m_BestFit: 0
  3764. m_MinSize: 10
  3765. m_MaxSize: 87
  3766. m_Alignment: 1
  3767. m_AlignByGeometry: 1
  3768. m_RichText: 1
  3769. m_HorizontalOverflow: 0
  3770. m_VerticalOverflow: 0
  3771. m_LineSpacing: 1
  3772. m_Text: "DISPUTES - ARBITRATION\r\n\nIf you have any dispute with or claim against
  3773. us or any of our affiliates, or if we have a dispute with or claim against you,
  3774. in either case arising out of or relating to the Services or these Terms (a \u201CClaim\u201D),
  3775. and the Claim is not resolved by emailing our customer service department at info@americasnexttopmodelgame.com,
  3776. you and we each agree to resolve such Claim through an individual binding arbitration
  3777. or through an individual action in small claims court in the U.S. county (or parish)
  3778. of your residence or in San Francisco, California. Class arbitrations and class
  3779. actions are not permitted, and your Claim may not be consolidated with any other
  3780. person\u2019s claim. You and we agree that the U.S. Federal Arbitration Act governs
  3781. the interpretation and enforcement of this provision, and that you and we are
  3782. each waiving the right to a trial by jury or to participate in a class action.
  3783. This section shall survive termination of these Terms or any subscription that
  3784. you may have to any of the Services. \r\n\r\nBefore you or we commence an arbitration
  3785. or file a small claims court action with respect to a Claim, you must first send
  3786. to Ace and King Productions a written notice of your claim or we must send a written
  3787. notice of our claim to you (\"Notice\"). Your Notice must (1) be sent by certified
  3788. mail; (2) be addressed to: Ace and King Productions, 27171 SE 25th Place, Sammamish,
  3789. WA 98075 Attn: Legal Department; (3) describe the nature of your Claim; and (4)
  3790. specify the damages or other relief you seek. If we and you do not then resolve
  3791. the Claim within 30 days after our receipt of Notice is received, either you or
  3792. we may commence an arbitration or file a small claims court action to resolve
  3793. the Claim. \r\n\r\nAny such arbitration shall be administered by the American
  3794. Arbitration Association and be conducted in accordance with its Consumer Arbitration
  3795. Rules (the \u201CRules\u201D). Contact information for the American Arbitration
  3796. Association, as well as copies of the Rules and applicable forms, are available
  3797. at http://www.adr.org. In circumstances in which the Rules provide for an in-person
  3798. hearing, such hearing will take place in the U.S. county (or parish) of your residence,
  3799. or otherwise in San Francisco, California. For any non-frivolous Claim that does
  3800. not exceed $50,000, Ace and King Productions will pay all costs of the arbitration,
  3801. and reimburse any filing fees you may be required to pay. If the arbitrator awards
  3802. you damages that are greater than Ace and King Productions\u2019 last written
  3803. settlement offer communicated before commencement of the arbitration, Ace and
  3804. King Productions will pay you the greater of $1,000 or the amount of the award.
  3805. \r\n\r\nTERMINATION/SUSPENSION\r\n\nWe reserve the right, without notice and in
  3806. our sole discretion, to terminate or suspend your right to access or use our Services
  3807. or to discontinue all or a part of the services. We are not responsible for any
  3808. loss or harm related to your inability to access or use our services. "
  3809. --- !u!222 &1715346393
  3810. CanvasRenderer:
  3811. m_ObjectHideFlags: 0
  3812. m_PrefabParentObject: {fileID: 222863867275482142, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3813. type: 2}
  3814. m_PrefabInternal: {fileID: 774040002}
  3815. m_GameObject: {fileID: 1715346390}
  3816. --- !u!1 &1938405411
  3817. GameObject:
  3818. m_ObjectHideFlags: 0
  3819. m_PrefabParentObject: {fileID: 1673801922995446, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3820. type: 2}
  3821. m_PrefabInternal: {fileID: 774040002}
  3822. serializedVersion: 5
  3823. m_Component:
  3824. - component: {fileID: 1938405412}
  3825. - component: {fileID: 1938405415}
  3826. - component: {fileID: 1938405414}
  3827. - component: {fileID: 1938405413}
  3828. m_Layer: 5
  3829. m_Name: Panel - TermsBeta
  3830. m_TagString: Untagged
  3831. m_Icon: {fileID: 0}
  3832. m_NavMeshLayer: 0
  3833. m_StaticEditorFlags: 0
  3834. m_IsActive: 1
  3835. --- !u!224 &1938405412
  3836. RectTransform:
  3837. m_ObjectHideFlags: 0
  3838. m_PrefabParentObject: {fileID: 224109225136195860, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3839. type: 2}
  3840. m_PrefabInternal: {fileID: 774040002}
  3841. m_GameObject: {fileID: 1938405411}
  3842. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  3843. m_LocalPosition: {x: 0, y: 0, z: 0}
  3844. m_LocalScale: {x: 3.025823, y: 3.025823, z: 3.025823}
  3845. m_Children:
  3846. - {fileID: 1691875525}
  3847. - {fileID: 1098174700}
  3848. - {fileID: 1954858709}
  3849. - {fileID: 800564218}
  3850. m_Father: {fileID: 1338291960}
  3851. m_RootOrder: 1
  3852. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3853. m_AnchorMin: {x: 0.534338, y: 0}
  3854. m_AnchorMax: {x: 0.534338, y: 0}
  3855. m_AnchoredPosition: {x: -5, y: 304.5}
  3856. m_SizeDelta: {x: 293, y: 193.2}
  3857. m_Pivot: {x: 0.5, y: 0.5}
  3858. --- !u!114 &1938405413
  3859. MonoBehaviour:
  3860. m_ObjectHideFlags: 0
  3861. m_PrefabParentObject: {fileID: 114911995253799880, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3862. type: 2}
  3863. m_PrefabInternal: {fileID: 774040002}
  3864. m_GameObject: {fileID: 1938405411}
  3865. m_Enabled: 1
  3866. m_EditorHideFlags: 0
  3867. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  3868. m_Name:
  3869. m_EditorClassIdentifier:
  3870. m_Material: {fileID: 0}
  3871. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3872. m_RaycastTarget: 1
  3873. m_OnCullStateChanged:
  3874. m_PersistentCalls:
  3875. m_Calls: []
  3876. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  3877. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  3878. m_Sprite: {fileID: 21300000, guid: 2aa274bf797c9e342a21bf40b8cfc80d, type: 3}
  3879. m_Type: 0
  3880. m_PreserveAspect: 0
  3881. m_FillCenter: 1
  3882. m_FillMethod: 4
  3883. m_FillAmount: 1
  3884. m_FillClockwise: 1
  3885. m_FillOrigin: 0
  3886. --- !u!114 &1938405414
  3887. MonoBehaviour:
  3888. m_ObjectHideFlags: 0
  3889. m_PrefabParentObject: {fileID: 114017001522401202, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3890. type: 2}
  3891. m_PrefabInternal: {fileID: 774040002}
  3892. m_GameObject: {fileID: 1938405411}
  3893. m_Enabled: 1
  3894. m_EditorHideFlags: 0
  3895. m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  3896. m_Name:
  3897. m_EditorClassIdentifier:
  3898. m_Content: {fileID: 1468170599}
  3899. m_Horizontal: 0
  3900. m_Vertical: 1
  3901. m_MovementType: 1
  3902. m_Elasticity: 0.1
  3903. m_Inertia: 1
  3904. m_DecelerationRate: 0.135
  3905. m_ScrollSensitivity: 1
  3906. m_Viewport: {fileID: 1098174700}
  3907. m_HorizontalScrollbar: {fileID: 0}
  3908. m_VerticalScrollbar: {fileID: 1954858710}
  3909. m_HorizontalScrollbarVisibility: 0
  3910. m_VerticalScrollbarVisibility: 1
  3911. m_HorizontalScrollbarSpacing: 0
  3912. m_VerticalScrollbarSpacing: 0
  3913. m_OnValueChanged:
  3914. m_PersistentCalls:
  3915. m_Calls: []
  3916. m_TypeName: UnityEngine.UI.ScrollRect+ScrollRectEvent, UnityEngine.UI, Version=1.0.0.0,
  3917. Culture=neutral, PublicKeyToken=null
  3918. --- !u!222 &1938405415
  3919. CanvasRenderer:
  3920. m_ObjectHideFlags: 0
  3921. m_PrefabParentObject: {fileID: 222045118026586186, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3922. type: 2}
  3923. m_PrefabInternal: {fileID: 774040002}
  3924. m_GameObject: {fileID: 1938405411}
  3925. --- !u!1 &1954858708
  3926. GameObject:
  3927. m_ObjectHideFlags: 0
  3928. m_PrefabParentObject: {fileID: 1481019374693934, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3929. type: 2}
  3930. m_PrefabInternal: {fileID: 774040002}
  3931. serializedVersion: 5
  3932. m_Component:
  3933. - component: {fileID: 1954858709}
  3934. - component: {fileID: 1954858712}
  3935. - component: {fileID: 1954858711}
  3936. - component: {fileID: 1954858710}
  3937. m_Layer: 5
  3938. m_Name: Scrollbar Vertical
  3939. m_TagString: Untagged
  3940. m_Icon: {fileID: 0}
  3941. m_NavMeshLayer: 0
  3942. m_StaticEditorFlags: 0
  3943. m_IsActive: 1
  3944. --- !u!224 &1954858709
  3945. RectTransform:
  3946. m_ObjectHideFlags: 0
  3947. m_PrefabParentObject: {fileID: 224048891908820458, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3948. type: 2}
  3949. m_PrefabInternal: {fileID: 774040002}
  3950. m_GameObject: {fileID: 1954858708}
  3951. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  3952. m_LocalPosition: {x: 0, y: 0, z: 0}
  3953. m_LocalScale: {x: 1, y: 1, z: 1}
  3954. m_Children:
  3955. - {fileID: 377865605}
  3956. m_Father: {fileID: 1938405412}
  3957. m_RootOrder: 2
  3958. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  3959. m_AnchorMin: {x: 0.9795871, y: 0}
  3960. m_AnchorMax: {x: 1, y: 0.82734185}
  3961. m_AnchoredPosition: {x: 0, y: 0}
  3962. m_SizeDelta: {x: -0.32999992, y: 0}
  3963. m_Pivot: {x: 1, y: 1}
  3964. --- !u!114 &1954858710
  3965. MonoBehaviour:
  3966. m_ObjectHideFlags: 0
  3967. m_PrefabParentObject: {fileID: 114935191328040710, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  3968. type: 2}
  3969. m_PrefabInternal: {fileID: 774040002}
  3970. m_GameObject: {fileID: 1954858708}
  3971. m_Enabled: 1
  3972. m_EditorHideFlags: 0
  3973. m_Script: {fileID: -2061169968, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  3974. m_Name:
  3975. m_EditorClassIdentifier:
  3976. m_Navigation:
  3977. m_Mode: 3
  3978. m_SelectOnUp: {fileID: 0}
  3979. m_SelectOnDown: {fileID: 0}
  3980. m_SelectOnLeft: {fileID: 0}
  3981. m_SelectOnRight: {fileID: 0}
  3982. m_Transition: 1
  3983. m_Colors:
  3984. m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
  3985. m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
  3986. m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
  3987. m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
  3988. m_ColorMultiplier: 1
  3989. m_FadeDuration: 0.1
  3990. m_SpriteState:
  3991. m_HighlightedSprite: {fileID: 0}
  3992. m_PressedSprite: {fileID: 0}
  3993. m_DisabledSprite: {fileID: 0}
  3994. m_AnimationTriggers:
  3995. m_NormalTrigger: Normal
  3996. m_HighlightedTrigger: Highlighted
  3997. m_PressedTrigger: Pressed
  3998. m_DisabledTrigger: Disabled
  3999. m_Interactable: 1
  4000. m_TargetGraphic: {fileID: 556750651}
  4001. m_HandleRect: {fileID: 556750650}
  4002. m_Direction: 2
  4003. m_Value: 1
  4004. m_Size: 0.006415808
  4005. m_NumberOfSteps: 0
  4006. m_OnValueChanged:
  4007. m_PersistentCalls:
  4008. m_Calls: []
  4009. m_TypeName: UnityEngine.UI.Scrollbar+ScrollEvent, UnityEngine.UI, Version=1.0.0.0,
  4010. Culture=neutral, PublicKeyToken=null
  4011. --- !u!114 &1954858711
  4012. MonoBehaviour:
  4013. m_ObjectHideFlags: 0
  4014. m_PrefabParentObject: {fileID: 114945666062502776, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  4015. type: 2}
  4016. m_PrefabInternal: {fileID: 774040002}
  4017. m_GameObject: {fileID: 1954858708}
  4018. m_Enabled: 0
  4019. m_EditorHideFlags: 0
  4020. m_Script: {fileID: -765806418, guid: f5f67c52d1564df4a8936ccd202a3bd8, type: 3}
  4021. m_Name:
  4022. m_EditorClassIdentifier:
  4023. m_Material: {fileID: 0}
  4024. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4025. m_RaycastTarget: 1
  4026. m_OnCullStateChanged:
  4027. m_PersistentCalls:
  4028. m_Calls: []
  4029. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  4030. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  4031. m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
  4032. m_Type: 1
  4033. m_PreserveAspect: 0
  4034. m_FillCenter: 1
  4035. m_FillMethod: 4
  4036. m_FillAmount: 1
  4037. m_FillClockwise: 1
  4038. m_FillOrigin: 0
  4039. --- !u!222 &1954858712
  4040. CanvasRenderer:
  4041. m_ObjectHideFlags: 0
  4042. m_PrefabParentObject: {fileID: 222663579026228332, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  4043. type: 2}
  4044. m_PrefabInternal: {fileID: 774040002}
  4045. m_GameObject: {fileID: 1954858708}
  4046. --- !u!1 &1984960085
  4047. GameObject:
  4048. m_ObjectHideFlags: 0
  4049. m_PrefabParentObject: {fileID: 1499884346575534, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  4050. type: 2}
  4051. m_PrefabInternal: {fileID: 774040002}
  4052. serializedVersion: 5
  4053. m_Component:
  4054. - component: {fileID: 1984960086}
  4055. - component: {fileID: 1984960088}
  4056. - component: {fileID: 1984960087}
  4057. m_Layer: 0
  4058. m_Name: Image - BackGround
  4059. m_TagString: Untagged
  4060. m_Icon: {fileID: 0}
  4061. m_NavMeshLayer: 0
  4062. m_StaticEditorFlags: 0
  4063. m_IsActive: 1
  4064. --- !u!224 &1984960086
  4065. RectTransform:
  4066. m_ObjectHideFlags: 0
  4067. m_PrefabParentObject: {fileID: 224743662764708304, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  4068. type: 2}
  4069. m_PrefabInternal: {fileID: 774040002}
  4070. m_GameObject: {fileID: 1984960085}
  4071. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  4072. m_LocalPosition: {x: 0, y: 0, z: 0}
  4073. m_LocalScale: {x: 1, y: 1, z: 1}
  4074. m_Children:
  4075. - {fileID: 519069287}
  4076. - {fileID: 818126470}
  4077. m_Father: {fileID: 1338291960}
  4078. m_RootOrder: 0
  4079. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  4080. m_AnchorMin: {x: 0.5, y: 0}
  4081. m_AnchorMax: {x: 0.5, y: 1}
  4082. m_AnchoredPosition: {x: -0.0000038147, y: -57}
  4083. m_SizeDelta: {x: 2296.2, y: 202.8}
  4084. m_Pivot: {x: 0.5, y: 0.5}
  4085. --- !u!114 &1984960087
  4086. MonoBehaviour:
  4087. m_ObjectHideFlags: 0
  4088. m_PrefabParentObject: {fileID: 114962503226223264, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  4089. type: 2}
  4090. m_PrefabInternal: {fileID: 774040002}
  4091. m_GameObject: {fileID: 1984960085}
  4092. m_Enabled: 1
  4093. m_EditorHideFlags: 0
  4094. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  4095. m_Name:
  4096. m_EditorClassIdentifier:
  4097. m_Material: {fileID: 0}
  4098. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4099. m_RaycastTarget: 1
  4100. m_OnCullStateChanged:
  4101. m_PersistentCalls:
  4102. m_Calls: []
  4103. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  4104. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  4105. m_Sprite: {fileID: 21300000, guid: 7a9f6ca677204f440a9312fd22fd37fd, type: 3}
  4106. m_Type: 0
  4107. m_PreserveAspect: 1
  4108. m_FillCenter: 1
  4109. m_FillMethod: 4
  4110. m_FillAmount: 1
  4111. m_FillClockwise: 1
  4112. m_FillOrigin: 0
  4113. --- !u!222 &1984960088
  4114. CanvasRenderer:
  4115. m_ObjectHideFlags: 0
  4116. m_PrefabParentObject: {fileID: 222482481787036368, guid: 239d5e37fc982974cbf2c2fb9da6f058,
  4117. type: 2}
  4118. m_PrefabInternal: {fileID: 774040002}
  4119. m_GameObject: {fileID: 1984960085}
  4120. --- !u!1001 &2067816372
  4121. Prefab:
  4122. m_ObjectHideFlags: 0
  4123. serializedVersion: 2
  4124. m_Modification:
  4125. m_TransformParent: {fileID: 355912978}
  4126. m_Modifications:
  4127. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4128. type: 2}
  4129. propertyPath: m_LocalPosition.x
  4130. value: 0
  4131. objectReference: {fileID: 0}
  4132. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4133. type: 2}
  4134. propertyPath: m_LocalPosition.y
  4135. value: 0
  4136. objectReference: {fileID: 0}
  4137. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4138. type: 2}
  4139. propertyPath: m_LocalPosition.z
  4140. value: 0
  4141. objectReference: {fileID: 0}
  4142. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4143. type: 2}
  4144. propertyPath: m_LocalRotation.x
  4145. value: -0
  4146. objectReference: {fileID: 0}
  4147. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4148. type: 2}
  4149. propertyPath: m_LocalRotation.y
  4150. value: -0
  4151. objectReference: {fileID: 0}
  4152. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4153. type: 2}
  4154. propertyPath: m_LocalRotation.z
  4155. value: -0
  4156. objectReference: {fileID: 0}
  4157. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4158. type: 2}
  4159. propertyPath: m_LocalRotation.w
  4160. value: 1
  4161. objectReference: {fileID: 0}
  4162. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4163. type: 2}
  4164. propertyPath: m_RootOrder
  4165. value: 2
  4166. objectReference: {fileID: 0}
  4167. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4168. type: 2}
  4169. propertyPath: m_AnchoredPosition.x
  4170. value: 0
  4171. objectReference: {fileID: 0}
  4172. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4173. type: 2}
  4174. propertyPath: m_AnchoredPosition.y
  4175. value: 0
  4176. objectReference: {fileID: 0}
  4177. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4178. type: 2}
  4179. propertyPath: m_SizeDelta.x
  4180. value: 0
  4181. objectReference: {fileID: 0}
  4182. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4183. type: 2}
  4184. propertyPath: m_SizeDelta.y
  4185. value: 0
  4186. objectReference: {fileID: 0}
  4187. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4188. type: 2}
  4189. propertyPath: m_AnchorMin.x
  4190. value: 0
  4191. objectReference: {fileID: 0}
  4192. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4193. type: 2}
  4194. propertyPath: m_AnchorMin.y
  4195. value: 0
  4196. objectReference: {fileID: 0}
  4197. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4198. type: 2}
  4199. propertyPath: m_AnchorMax.x
  4200. value: 1
  4201. objectReference: {fileID: 0}
  4202. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4203. type: 2}
  4204. propertyPath: m_AnchorMax.y
  4205. value: 1
  4206. objectReference: {fileID: 0}
  4207. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4208. type: 2}
  4209. propertyPath: m_Pivot.x
  4210. value: 0.5
  4211. objectReference: {fileID: 0}
  4212. - target: {fileID: 224402658498853338, guid: 9301daacae57091409db44ffaf9b5d9c,
  4213. type: 2}
  4214. propertyPath: m_Pivot.y
  4215. value: 0.5
  4216. objectReference: {fileID: 0}
  4217. m_RemovedComponents: []
  4218. m_ParentPrefab: {fileID: 100100000, guid: 9301daacae57091409db44ffaf9b5d9c, type: 2}
  4219. m_RootGameObject: {fileID: 1433921938}
  4220. m_IsPrefabParent: 0
  4221. --- !u!1 &2127759334
  4222. GameObject:
  4223. m_ObjectHideFlags: 0
  4224. m_PrefabParentObject: {fileID: 1665620316498618, guid: bcd76c1e78564ad4cafec91e517586af,
  4225. type: 2}
  4226. m_PrefabInternal: {fileID: 1615544598}
  4227. serializedVersion: 5
  4228. m_Component:
  4229. - component: {fileID: 2127759335}
  4230. - component: {fileID: 2127759337}
  4231. - component: {fileID: 2127759336}
  4232. m_Layer: 0
  4233. m_Name: Image
  4234. m_TagString: Untagged
  4235. m_Icon: {fileID: 0}
  4236. m_NavMeshLayer: 0
  4237. m_StaticEditorFlags: 0
  4238. m_IsActive: 1
  4239. --- !u!224 &2127759335
  4240. RectTransform:
  4241. m_ObjectHideFlags: 0
  4242. m_PrefabParentObject: {fileID: 224443599535336064, guid: bcd76c1e78564ad4cafec91e517586af,
  4243. type: 2}
  4244. m_PrefabInternal: {fileID: 1615544598}
  4245. m_GameObject: {fileID: 2127759334}
  4246. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  4247. m_LocalPosition: {x: 0, y: 0, z: 0}
  4248. m_LocalScale: {x: 1, y: 1, z: 1}
  4249. m_Children: []
  4250. m_Father: {fileID: 2132855619}
  4251. m_RootOrder: 0
  4252. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  4253. m_AnchorMin: {x: 0.77000004, y: 0.10625201}
  4254. m_AnchorMax: {x: 1, y: 0.88974804}
  4255. m_AnchoredPosition: {x: 0.33273315, y: 0.2539978}
  4256. m_SizeDelta: {x: 0, y: 0}
  4257. m_Pivot: {x: 0.5, y: 0.5}
  4258. --- !u!114 &2127759336
  4259. MonoBehaviour:
  4260. m_ObjectHideFlags: 0
  4261. m_PrefabParentObject: {fileID: 114067289306705854, guid: bcd76c1e78564ad4cafec91e517586af,
  4262. type: 2}
  4263. m_PrefabInternal: {fileID: 1615544598}
  4264. m_GameObject: {fileID: 2127759334}
  4265. m_Enabled: 1
  4266. m_EditorHideFlags: 0
  4267. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  4268. m_Name:
  4269. m_EditorClassIdentifier:
  4270. m_Material: {fileID: 0}
  4271. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4272. m_RaycastTarget: 0
  4273. m_OnCullStateChanged:
  4274. m_PersistentCalls:
  4275. m_Calls: []
  4276. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  4277. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  4278. m_Sprite: {fileID: 21300000, guid: 92a9dd8a8cf851247a7a2e673c2ffa2e, type: 3}
  4279. m_Type: 0
  4280. m_PreserveAspect: 0
  4281. m_FillCenter: 1
  4282. m_FillMethod: 4
  4283. m_FillAmount: 1
  4284. m_FillClockwise: 1
  4285. m_FillOrigin: 0
  4286. --- !u!222 &2127759337
  4287. CanvasRenderer:
  4288. m_ObjectHideFlags: 0
  4289. m_PrefabParentObject: {fileID: 222829770333732612, guid: bcd76c1e78564ad4cafec91e517586af,
  4290. type: 2}
  4291. m_PrefabInternal: {fileID: 1615544598}
  4292. m_GameObject: {fileID: 2127759334}
  4293. --- !u!1 &2132855618
  4294. GameObject:
  4295. m_ObjectHideFlags: 0
  4296. m_PrefabParentObject: {fileID: 1317652435841522, guid: bcd76c1e78564ad4cafec91e517586af,
  4297. type: 2}
  4298. m_PrefabInternal: {fileID: 1615544598}
  4299. serializedVersion: 5
  4300. m_Component:
  4301. - component: {fileID: 2132855619}
  4302. - component: {fileID: 2132855622}
  4303. - component: {fileID: 2132855621}
  4304. - component: {fileID: 2132855620}
  4305. m_Layer: 0
  4306. m_Name: Button
  4307. m_TagString: Untagged
  4308. m_Icon: {fileID: 0}
  4309. m_NavMeshLayer: 0
  4310. m_StaticEditorFlags: 0
  4311. m_IsActive: 1
  4312. --- !u!224 &2132855619
  4313. RectTransform:
  4314. m_ObjectHideFlags: 0
  4315. m_PrefabParentObject: {fileID: 224916958950027118, guid: bcd76c1e78564ad4cafec91e517586af,
  4316. type: 2}
  4317. m_PrefabInternal: {fileID: 1615544598}
  4318. m_GameObject: {fileID: 2132855618}
  4319. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  4320. m_LocalPosition: {x: 0, y: 0, z: 0}
  4321. m_LocalScale: {x: 1, y: 1, z: 1}
  4322. m_Children:
  4323. - {fileID: 2127759335}
  4324. - {fileID: 464102027}
  4325. m_Father: {fileID: 1457621337}
  4326. m_RootOrder: 1
  4327. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  4328. m_AnchorMin: {x: 0.5, y: 0}
  4329. m_AnchorMax: {x: 0.5, y: 0}
  4330. m_AnchoredPosition: {x: 0.00032473996, y: 0}
  4331. m_SizeDelta: {x: 436.8, y: 127}
  4332. m_Pivot: {x: 0.5, y: 1.0000001}
  4333. --- !u!114 &2132855620
  4334. MonoBehaviour:
  4335. m_ObjectHideFlags: 0
  4336. m_PrefabParentObject: {fileID: 114026320509713530, guid: bcd76c1e78564ad4cafec91e517586af,
  4337. type: 2}
  4338. m_PrefabInternal: {fileID: 1615544598}
  4339. m_GameObject: {fileID: 2132855618}
  4340. m_Enabled: 1
  4341. m_EditorHideFlags: 0
  4342. m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  4343. m_Name:
  4344. m_EditorClassIdentifier:
  4345. m_Navigation:
  4346. m_Mode: 3
  4347. m_SelectOnUp: {fileID: 0}
  4348. m_SelectOnDown: {fileID: 0}
  4349. m_SelectOnLeft: {fileID: 0}
  4350. m_SelectOnRight: {fileID: 0}
  4351. m_Transition: 1
  4352. m_Colors:
  4353. m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
  4354. m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
  4355. m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
  4356. m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
  4357. m_ColorMultiplier: 1
  4358. m_FadeDuration: 0.1
  4359. m_SpriteState:
  4360. m_HighlightedSprite: {fileID: 0}
  4361. m_PressedSprite: {fileID: 0}
  4362. m_DisabledSprite: {fileID: 0}
  4363. m_AnimationTriggers:
  4364. m_NormalTrigger: Normal
  4365. m_HighlightedTrigger: Highlighted
  4366. m_PressedTrigger: Pressed
  4367. m_DisabledTrigger: Disabled
  4368. m_Interactable: 1
  4369. m_TargetGraphic: {fileID: 2132855621}
  4370. m_OnClick:
  4371. m_PersistentCalls:
  4372. m_Calls:
  4373. - m_Target: {fileID: 355912982}
  4374. m_MethodName: Quit
  4375. m_Mode: 1
  4376. m_Arguments:
  4377. m_ObjectArgument: {fileID: 0}
  4378. m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine
  4379. m_IntArgument: 0
  4380. m_FloatArgument: 0
  4381. m_StringArgument:
  4382. m_BoolArgument: 0
  4383. m_CallState: 2
  4384. m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0,
  4385. Culture=neutral, PublicKeyToken=null
  4386. --- !u!114 &2132855621
  4387. MonoBehaviour:
  4388. m_ObjectHideFlags: 0
  4389. m_PrefabParentObject: {fileID: 114905541765887604, guid: bcd76c1e78564ad4cafec91e517586af,
  4390. type: 2}
  4391. m_PrefabInternal: {fileID: 1615544598}
  4392. m_GameObject: {fileID: 2132855618}
  4393. m_Enabled: 1
  4394. m_EditorHideFlags: 0
  4395. m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
  4396. m_Name:
  4397. m_EditorClassIdentifier:
  4398. m_Material: {fileID: 0}
  4399. m_Color: {r: 1, g: 1, b: 1, a: 1}
  4400. m_RaycastTarget: 1
  4401. m_OnCullStateChanged:
  4402. m_PersistentCalls:
  4403. m_Calls: []
  4404. m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI,
  4405. Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
  4406. m_Sprite: {fileID: 21300000, guid: bb954f07fbaef9d41ad94e943b1c170b, type: 3}
  4407. m_Type: 0
  4408. m_PreserveAspect: 1
  4409. m_FillCenter: 1
  4410. m_FillMethod: 4
  4411. m_FillAmount: 1
  4412. m_FillClockwise: 1
  4413. m_FillOrigin: 0
  4414. --- !u!222 &2132855622
  4415. CanvasRenderer:
  4416. m_ObjectHideFlags: 0
  4417. m_PrefabParentObject: {fileID: 222186598666349376, guid: bcd76c1e78564ad4cafec91e517586af,
  4418. type: 2}
  4419. m_PrefabInternal: {fileID: 1615544598}
  4420. m_GameObject: {fileID: 2132855618}