Example Scene.unity 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909
  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: 9
  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.212, g: 0.227, b: 0.259, 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. m_UseRadianceAmbientProbe: 0
  43. --- !u!157 &4
  44. LightmapSettings:
  45. m_ObjectHideFlags: 0
  46. serializedVersion: 11
  47. m_GIWorkflowMode: 1
  48. m_GISettings:
  49. serializedVersion: 2
  50. m_BounceScale: 1
  51. m_IndirectOutputScale: 1
  52. m_AlbedoBoost: 1
  53. m_EnvironmentLightingMode: 0
  54. m_EnableBakedLightmaps: 0
  55. m_EnableRealtimeLightmaps: 0
  56. m_LightmapEditorSettings:
  57. serializedVersion: 12
  58. m_Resolution: 2
  59. m_BakeResolution: 40
  60. m_AtlasSize: 1024
  61. m_AO: 0
  62. m_AOMaxDistance: 1
  63. m_CompAOExponent: 0
  64. m_CompAOExponentDirect: 0
  65. m_ExtractAmbientOcclusion: 0
  66. m_Padding: 2
  67. m_LightmapParameters: {fileID: 0}
  68. m_LightmapsBakeMode: 1
  69. m_TextureCompression: 1
  70. m_FinalGather: 0
  71. m_FinalGatherFiltering: 1
  72. m_FinalGatherRayCount: 1024
  73. m_ReflectionCompression: 2
  74. m_MixedBakeMode: 1
  75. m_BakeBackend: 0
  76. m_PVRSampling: 1
  77. m_PVRDirectSampleCount: 32
  78. m_PVRSampleCount: 500
  79. m_PVRBounces: 2
  80. m_PVREnvironmentSampleCount: 500
  81. m_PVREnvironmentReferencePointCount: 2048
  82. m_PVRFilteringMode: 0
  83. m_PVRDenoiserTypeDirect: 0
  84. m_PVRDenoiserTypeIndirect: 0
  85. m_PVRDenoiserTypeAO: 0
  86. m_PVRFilterTypeDirect: 0
  87. m_PVRFilterTypeIndirect: 0
  88. m_PVRFilterTypeAO: 0
  89. m_PVREnvironmentMIS: 0
  90. m_PVRCulling: 1
  91. m_PVRFilteringGaussRadiusDirect: 1
  92. m_PVRFilteringGaussRadiusIndirect: 5
  93. m_PVRFilteringGaussRadiusAO: 2
  94. m_PVRFilteringAtrousPositionSigmaDirect: 0.5
  95. m_PVRFilteringAtrousPositionSigmaIndirect: 2
  96. m_PVRFilteringAtrousPositionSigmaAO: 1
  97. m_ExportTrainingData: 0
  98. m_TrainingDataDestination: TrainingData
  99. m_LightProbeSampleCountMultiplier: 4
  100. m_LightingDataAsset: {fileID: 0}
  101. m_UseShadowmask: 0
  102. --- !u!196 &5
  103. NavMeshSettings:
  104. serializedVersion: 2
  105. m_ObjectHideFlags: 0
  106. m_BuildSettings:
  107. serializedVersion: 2
  108. agentTypeID: 0
  109. agentRadius: 0.5
  110. agentHeight: 2
  111. agentSlope: 45
  112. agentClimb: 0.4
  113. ledgeDropHeight: 0
  114. maxJumpAcrossDistance: 0
  115. minRegionArea: 2
  116. manualCellSize: 0
  117. cellSize: 0.16666667
  118. manualTileSize: 0
  119. tileSize: 256
  120. accuratePlacement: 0
  121. debug:
  122. m_Flags: 0
  123. m_NavMeshData: {fileID: 0}
  124. --- !u!1 &480112315
  125. GameObject:
  126. m_ObjectHideFlags: 0
  127. m_CorrespondingSourceObject: {fileID: 0}
  128. m_PrefabInstance: {fileID: 0}
  129. m_PrefabAsset: {fileID: 0}
  130. serializedVersion: 6
  131. m_Component:
  132. - component: {fileID: 480112320}
  133. - component: {fileID: 480112319}
  134. - component: {fileID: 480112317}
  135. - component: {fileID: 480112316}
  136. m_Layer: 0
  137. m_Name: Main Camera
  138. m_TagString: MainCamera
  139. m_Icon: {fileID: 0}
  140. m_NavMeshLayer: 0
  141. m_StaticEditorFlags: 0
  142. m_IsActive: 1
  143. --- !u!81 &480112316
  144. AudioListener:
  145. m_ObjectHideFlags: 0
  146. m_CorrespondingSourceObject: {fileID: 0}
  147. m_PrefabInstance: {fileID: 0}
  148. m_PrefabAsset: {fileID: 0}
  149. m_GameObject: {fileID: 480112315}
  150. m_Enabled: 1
  151. --- !u!124 &480112317
  152. Behaviour:
  153. m_ObjectHideFlags: 0
  154. m_CorrespondingSourceObject: {fileID: 0}
  155. m_PrefabInstance: {fileID: 0}
  156. m_PrefabAsset: {fileID: 0}
  157. m_GameObject: {fileID: 480112315}
  158. m_Enabled: 1
  159. --- !u!20 &480112319
  160. Camera:
  161. m_ObjectHideFlags: 0
  162. m_CorrespondingSourceObject: {fileID: 0}
  163. m_PrefabInstance: {fileID: 0}
  164. m_PrefabAsset: {fileID: 0}
  165. m_GameObject: {fileID: 480112315}
  166. m_Enabled: 1
  167. serializedVersion: 2
  168. m_ClearFlags: 1
  169. m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
  170. m_projectionMatrixMode: 1
  171. m_GateFitMode: 2
  172. m_FOVAxisMode: 0
  173. m_SensorSize: {x: 36, y: 24}
  174. m_LensShift: {x: 0, y: 0}
  175. m_FocalLength: 50
  176. m_NormalizedViewPortRect:
  177. serializedVersion: 2
  178. x: 0
  179. y: 0
  180. width: 1
  181. height: 1
  182. near clip plane: 0.3
  183. far clip plane: 1000
  184. field of view: 60
  185. orthographic: 1
  186. orthographic size: 4.21875
  187. m_Depth: 0
  188. m_CullingMask:
  189. serializedVersion: 2
  190. m_Bits: 4294967295
  191. m_RenderingPath: -1
  192. m_TargetTexture: {fileID: 0}
  193. m_TargetDisplay: 0
  194. m_TargetEye: 3
  195. m_HDR: 1
  196. m_AllowMSAA: 0
  197. m_AllowDynamicResolution: 0
  198. m_ForceIntoRT: 0
  199. m_OcclusionCulling: 1
  200. m_StereoConvergence: 10
  201. m_StereoSeparation: 0.022
  202. --- !u!4 &480112320
  203. Transform:
  204. m_ObjectHideFlags: 0
  205. m_CorrespondingSourceObject: {fileID: 0}
  206. m_PrefabInstance: {fileID: 0}
  207. m_PrefabAsset: {fileID: 0}
  208. m_GameObject: {fileID: 480112315}
  209. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  210. m_LocalPosition: {x: 2.81, y: -1.04, z: -1}
  211. m_LocalScale: {x: 1, y: 1, z: 1}
  212. m_Children: []
  213. m_Father: {fileID: 0}
  214. m_RootOrder: 0
  215. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  216. --- !u!1 &968630982
  217. GameObject:
  218. m_ObjectHideFlags: 0
  219. m_CorrespondingSourceObject: {fileID: 0}
  220. m_PrefabInstance: {fileID: 0}
  221. m_PrefabAsset: {fileID: 0}
  222. serializedVersion: 6
  223. m_Component:
  224. - component: {fileID: 968630983}
  225. - component: {fileID: 968630985}
  226. - component: {fileID: 968630984}
  227. m_Layer: 0
  228. m_Name: Overlay
  229. m_TagString: Untagged
  230. m_Icon: {fileID: 0}
  231. m_NavMeshLayer: 0
  232. m_StaticEditorFlags: 0
  233. m_IsActive: 1
  234. --- !u!4 &968630983
  235. Transform:
  236. m_ObjectHideFlags: 0
  237. m_CorrespondingSourceObject: {fileID: 0}
  238. m_PrefabInstance: {fileID: 0}
  239. m_PrefabAsset: {fileID: 0}
  240. m_GameObject: {fileID: 968630982}
  241. m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
  242. m_LocalPosition: {x: 0, y: 0, z: 0}
  243. m_LocalScale: {x: 1, y: 1, z: 1}
  244. m_Children: []
  245. m_Father: {fileID: 1330583397}
  246. m_RootOrder: 1
  247. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  248. --- !u!483693784 &968630984
  249. TilemapRenderer:
  250. m_ObjectHideFlags: 0
  251. m_CorrespondingSourceObject: {fileID: 0}
  252. m_PrefabInstance: {fileID: 0}
  253. m_PrefabAsset: {fileID: 0}
  254. m_GameObject: {fileID: 968630982}
  255. m_Enabled: 1
  256. m_CastShadows: 0
  257. m_ReceiveShadows: 0
  258. m_DynamicOccludee: 1
  259. m_MotionVectors: 1
  260. m_LightProbeUsage: 0
  261. m_ReflectionProbeUsage: 0
  262. m_RayTracingMode: 0
  263. m_RenderingLayerMask: 4294967295
  264. m_RendererPriority: 0
  265. m_Materials:
  266. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  267. m_StaticBatchInfo:
  268. firstSubMesh: 0
  269. subMeshCount: 0
  270. m_StaticBatchRoot: {fileID: 0}
  271. m_ProbeAnchor: {fileID: 0}
  272. m_LightProbeVolumeOverride: {fileID: 0}
  273. m_ScaleInLightmap: 1
  274. m_ReceiveGI: 1
  275. m_PreserveUVs: 0
  276. m_IgnoreNormalsForChartDetection: 0
  277. m_ImportantGI: 0
  278. m_StitchLightmapSeams: 0
  279. m_SelectedEditorRenderState: 0
  280. m_MinimumChartSize: 4
  281. m_AutoUVMaxDistance: 0.5
  282. m_AutoUVMaxAngle: 89
  283. m_LightmapParameters: {fileID: 0}
  284. m_SortingLayerID: 0
  285. m_SortingLayer: 0
  286. m_SortingOrder: 10
  287. m_ChunkSize: {x: 32, y: 32, z: 32}
  288. m_ChunkCullingBounds: {x: 0, y: 0, z: 0}
  289. m_MaxChunkCount: 16
  290. m_MaxFrameAge: 16
  291. m_SortOrder: 0
  292. m_Mode: 0
  293. m_DetectChunkCullingBounds: 0
  294. m_MaskInteraction: 0
  295. --- !u!1839735485 &968630985
  296. Tilemap:
  297. m_ObjectHideFlags: 0
  298. m_CorrespondingSourceObject: {fileID: 0}
  299. m_PrefabInstance: {fileID: 0}
  300. m_PrefabAsset: {fileID: 0}
  301. m_GameObject: {fileID: 968630982}
  302. m_Enabled: 1
  303. m_Tiles:
  304. - first: {x: 14, y: 3, z: 0}
  305. second:
  306. serializedVersion: 2
  307. m_TileIndex: 5
  308. m_TileSpriteIndex: 5
  309. m_TileMatrixIndex: 0
  310. m_TileColorIndex: 0
  311. m_TileObjectToInstantiateIndex: 65535
  312. m_AllTileFlags: 2147483649
  313. - first: {x: 12, y: 4, z: 0}
  314. second:
  315. serializedVersion: 2
  316. m_TileIndex: 4
  317. m_TileSpriteIndex: 4
  318. m_TileMatrixIndex: 0
  319. m_TileColorIndex: 0
  320. m_TileObjectToInstantiateIndex: 65535
  321. m_AllTileFlags: 1
  322. - first: {x: 13, y: 5, z: 0}
  323. second:
  324. serializedVersion: 2
  325. m_TileIndex: 0
  326. m_TileSpriteIndex: 0
  327. m_TileMatrixIndex: 0
  328. m_TileColorIndex: 0
  329. m_TileObjectToInstantiateIndex: 65535
  330. m_AllTileFlags: 1
  331. - first: {x: 14, y: 5, z: 0}
  332. second:
  333. serializedVersion: 2
  334. m_TileIndex: 1
  335. m_TileSpriteIndex: 1
  336. m_TileMatrixIndex: 0
  337. m_TileColorIndex: 0
  338. m_TileObjectToInstantiateIndex: 65535
  339. m_AllTileFlags: 1
  340. - first: {x: 13, y: 6, z: 0}
  341. second:
  342. serializedVersion: 2
  343. m_TileIndex: 2
  344. m_TileSpriteIndex: 2
  345. m_TileMatrixIndex: 0
  346. m_TileColorIndex: 0
  347. m_TileObjectToInstantiateIndex: 65535
  348. m_AllTileFlags: 1
  349. - first: {x: 14, y: 6, z: 0}
  350. second:
  351. serializedVersion: 2
  352. m_TileIndex: 3
  353. m_TileSpriteIndex: 3
  354. m_TileMatrixIndex: 0
  355. m_TileColorIndex: 0
  356. m_TileObjectToInstantiateIndex: 65535
  357. m_AllTileFlags: 1
  358. m_AnimatedTiles: {}
  359. m_TileAssetArray:
  360. - m_RefCount: 1
  361. m_Data: {fileID: 11400000, guid: 76ccd9a18f8306e43a2636b95628cf0d, type: 2}
  362. - m_RefCount: 1
  363. m_Data: {fileID: 11400000, guid: 9c431cb3aae665344bd9c87916be396e, type: 2}
  364. - m_RefCount: 1
  365. m_Data: {fileID: 11400000, guid: 48b36a592d05c2b48b800e93bc7b6632, type: 2}
  366. - m_RefCount: 1
  367. m_Data: {fileID: 11400000, guid: b5dd33d8b7682fa48aaca5e0c10d085e, type: 2}
  368. - m_RefCount: 1
  369. m_Data: {fileID: 11400000, guid: 673f7ff3110ddc340a25afcb5d669386, type: 2}
  370. - m_RefCount: 1
  371. m_Data: {fileID: 11400000, guid: 32d0d8625379b2a45a74a42bf1d62958, type: 2}
  372. m_TileSpriteArray:
  373. - m_RefCount: 1
  374. m_Data: {fileID: 21300164, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  375. - m_RefCount: 1
  376. m_Data: {fileID: 21300166, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  377. - m_RefCount: 1
  378. m_Data: {fileID: 21300132, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  379. - m_RefCount: 1
  380. m_Data: {fileID: 21300134, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  381. - m_RefCount: 1
  382. m_Data: {fileID: 21300140, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  383. - m_RefCount: 1
  384. m_Data: {fileID: 21300010, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  385. m_TileMatrixArray:
  386. - m_RefCount: 6
  387. m_Data:
  388. e00: 1
  389. e01: 0
  390. e02: 0
  391. e03: 0
  392. e10: 0
  393. e11: 1
  394. e12: 0
  395. e13: 0
  396. e20: 0
  397. e21: 0
  398. e22: 1
  399. e23: 0
  400. e30: 0
  401. e31: 0
  402. e32: 0
  403. e33: 1
  404. m_TileColorArray:
  405. - m_RefCount: 6
  406. m_Data: {r: 1, g: 1, b: 1, a: 1}
  407. m_TileObjectToInstantiateArray: []
  408. m_AnimationFrameRate: 1
  409. m_Color: {r: 1, g: 1, b: 1, a: 1}
  410. m_Origin: {x: 0, y: 0, z: 0}
  411. m_Size: {x: 15, y: 7, z: 1}
  412. m_TileAnchor: {x: 0.5, y: 0.5, z: 0}
  413. m_TileOrientation: 0
  414. m_TileOrientationMatrix:
  415. e00: 1
  416. e01: 0
  417. e02: 0
  418. e03: 0
  419. e10: 0
  420. e11: 1
  421. e12: 0
  422. e13: 0
  423. e20: 0
  424. e21: 0
  425. e22: 1
  426. e23: 0
  427. e30: 0
  428. e31: 0
  429. e32: 0
  430. e33: 1
  431. --- !u!1 &1330583395
  432. GameObject:
  433. m_ObjectHideFlags: 0
  434. m_CorrespondingSourceObject: {fileID: 0}
  435. m_PrefabInstance: {fileID: 0}
  436. m_PrefabAsset: {fileID: 0}
  437. serializedVersion: 6
  438. m_Component:
  439. - component: {fileID: 1330583397}
  440. - component: {fileID: 1330583396}
  441. m_Layer: 0
  442. m_Name: Grid
  443. m_TagString: Untagged
  444. m_Icon: {fileID: 0}
  445. m_NavMeshLayer: 0
  446. m_StaticEditorFlags: 0
  447. m_IsActive: 1
  448. --- !u!156049354 &1330583396
  449. Grid:
  450. m_ObjectHideFlags: 0
  451. m_CorrespondingSourceObject: {fileID: 0}
  452. m_PrefabInstance: {fileID: 0}
  453. m_PrefabAsset: {fileID: 0}
  454. m_GameObject: {fileID: 1330583395}
  455. m_Enabled: 1
  456. m_CellSize: {x: 1, y: 1, z: 0}
  457. m_CellGap: {x: 0, y: 0, z: 0}
  458. m_CellLayout: 0
  459. m_CellSwizzle: 0
  460. --- !u!4 &1330583397
  461. Transform:
  462. m_ObjectHideFlags: 0
  463. m_CorrespondingSourceObject: {fileID: 0}
  464. m_PrefabInstance: {fileID: 0}
  465. m_PrefabAsset: {fileID: 0}
  466. m_GameObject: {fileID: 1330583395}
  467. m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
  468. m_LocalPosition: {x: 0, y: 0, z: 0}
  469. m_LocalScale: {x: 1, y: 1, z: 1}
  470. m_Children:
  471. - {fileID: 1714055914}
  472. - {fileID: 968630983}
  473. m_Father: {fileID: 0}
  474. m_RootOrder: 1
  475. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  476. --- !u!1 &1714055913
  477. GameObject:
  478. m_ObjectHideFlags: 0
  479. m_CorrespondingSourceObject: {fileID: 0}
  480. m_PrefabInstance: {fileID: 0}
  481. m_PrefabAsset: {fileID: 0}
  482. serializedVersion: 6
  483. m_Component:
  484. - component: {fileID: 1714055914}
  485. - component: {fileID: 1714055916}
  486. - component: {fileID: 1714055915}
  487. m_Layer: 0
  488. m_Name: Base
  489. m_TagString: Untagged
  490. m_Icon: {fileID: 0}
  491. m_NavMeshLayer: 0
  492. m_StaticEditorFlags: 0
  493. m_IsActive: 1
  494. --- !u!4 &1714055914
  495. Transform:
  496. m_ObjectHideFlags: 0
  497. m_CorrespondingSourceObject: {fileID: 0}
  498. m_PrefabInstance: {fileID: 0}
  499. m_PrefabAsset: {fileID: 0}
  500. m_GameObject: {fileID: 1714055913}
  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: 1330583397}
  506. m_RootOrder: 0
  507. m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
  508. --- !u!483693784 &1714055915
  509. TilemapRenderer:
  510. m_ObjectHideFlags: 0
  511. m_CorrespondingSourceObject: {fileID: 0}
  512. m_PrefabInstance: {fileID: 0}
  513. m_PrefabAsset: {fileID: 0}
  514. m_GameObject: {fileID: 1714055913}
  515. m_Enabled: 1
  516. m_CastShadows: 0
  517. m_ReceiveShadows: 0
  518. m_DynamicOccludee: 1
  519. m_MotionVectors: 1
  520. m_LightProbeUsage: 0
  521. m_ReflectionProbeUsage: 0
  522. m_RayTracingMode: 0
  523. m_RenderingLayerMask: 4294967295
  524. m_RendererPriority: 0
  525. m_Materials:
  526. - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
  527. m_StaticBatchInfo:
  528. firstSubMesh: 0
  529. subMeshCount: 0
  530. m_StaticBatchRoot: {fileID: 0}
  531. m_ProbeAnchor: {fileID: 0}
  532. m_LightProbeVolumeOverride: {fileID: 0}
  533. m_ScaleInLightmap: 1
  534. m_ReceiveGI: 1
  535. m_PreserveUVs: 0
  536. m_IgnoreNormalsForChartDetection: 0
  537. m_ImportantGI: 0
  538. m_StitchLightmapSeams: 0
  539. m_SelectedEditorRenderState: 0
  540. m_MinimumChartSize: 4
  541. m_AutoUVMaxDistance: 0.5
  542. m_AutoUVMaxAngle: 89
  543. m_LightmapParameters: {fileID: 0}
  544. m_SortingLayerID: 0
  545. m_SortingLayer: 0
  546. m_SortingOrder: 0
  547. m_ChunkSize: {x: 32, y: 32, z: 32}
  548. m_ChunkCullingBounds: {x: 0, y: 0, z: 0}
  549. m_MaxChunkCount: 16
  550. m_MaxFrameAge: 16
  551. m_SortOrder: 0
  552. m_Mode: 0
  553. m_DetectChunkCullingBounds: 0
  554. m_MaskInteraction: 0
  555. --- !u!1839735485 &1714055916
  556. Tilemap:
  557. m_ObjectHideFlags: 0
  558. m_CorrespondingSourceObject: {fileID: 0}
  559. m_PrefabInstance: {fileID: 0}
  560. m_PrefabAsset: {fileID: 0}
  561. m_GameObject: {fileID: 1714055913}
  562. m_Enabled: 1
  563. m_Tiles:
  564. - first: {x: -6, y: -7, z: 0}
  565. second:
  566. serializedVersion: 2
  567. m_TileIndex: 0
  568. m_TileSpriteIndex: 193
  569. m_TileMatrixIndex: 0
  570. m_TileColorIndex: 0
  571. m_TileObjectToInstantiateIndex: 65535
  572. m_AllTileFlags: 2147483649
  573. - first: {x: -5, y: -7, z: 0}
  574. second:
  575. serializedVersion: 2
  576. m_TileIndex: 1
  577. m_TileSpriteIndex: 162
  578. m_TileMatrixIndex: 0
  579. m_TileColorIndex: 0
  580. m_TileObjectToInstantiateIndex: 65535
  581. m_AllTileFlags: 2147483649
  582. - first: {x: -4, y: -7, z: 0}
  583. second:
  584. serializedVersion: 2
  585. m_TileIndex: 2
  586. m_TileSpriteIndex: 161
  587. m_TileMatrixIndex: 0
  588. m_TileColorIndex: 0
  589. m_TileObjectToInstantiateIndex: 65535
  590. m_AllTileFlags: 1
  591. - first: {x: -3, y: -7, z: 0}
  592. second:
  593. serializedVersion: 2
  594. m_TileIndex: 3
  595. m_TileSpriteIndex: 158
  596. m_TileMatrixIndex: 0
  597. m_TileColorIndex: 0
  598. m_TileObjectToInstantiateIndex: 65535
  599. m_AllTileFlags: 2147483649
  600. - first: {x: -2, y: -7, z: 0}
  601. second:
  602. serializedVersion: 2
  603. m_TileIndex: 4
  604. m_TileSpriteIndex: 157
  605. m_TileMatrixIndex: 0
  606. m_TileColorIndex: 0
  607. m_TileObjectToInstantiateIndex: 65535
  608. m_AllTileFlags: 1
  609. - first: {x: -1, y: -7, z: 0}
  610. second:
  611. serializedVersion: 2
  612. m_TileIndex: 5
  613. m_TileSpriteIndex: 156
  614. m_TileMatrixIndex: 0
  615. m_TileColorIndex: 0
  616. m_TileObjectToInstantiateIndex: 65535
  617. m_AllTileFlags: 2147483649
  618. - first: {x: 0, y: -7, z: 0}
  619. second:
  620. serializedVersion: 2
  621. m_TileIndex: 6
  622. m_TileSpriteIndex: 155
  623. m_TileMatrixIndex: 0
  624. m_TileColorIndex: 0
  625. m_TileObjectToInstantiateIndex: 65535
  626. m_AllTileFlags: 2147483649
  627. - first: {x: 1, y: -7, z: 0}
  628. second:
  629. serializedVersion: 2
  630. m_TileIndex: 7
  631. m_TileSpriteIndex: 154
  632. m_TileMatrixIndex: 0
  633. m_TileColorIndex: 0
  634. m_TileObjectToInstantiateIndex: 65535
  635. m_AllTileFlags: 2147483649
  636. - first: {x: 2, y: -7, z: 0}
  637. second:
  638. serializedVersion: 2
  639. m_TileIndex: 8
  640. m_TileSpriteIndex: 148
  641. m_TileMatrixIndex: 0
  642. m_TileColorIndex: 0
  643. m_TileObjectToInstantiateIndex: 65535
  644. m_AllTileFlags: 2147483649
  645. - first: {x: 3, y: -7, z: 0}
  646. second:
  647. serializedVersion: 2
  648. m_TileIndex: 9
  649. m_TileSpriteIndex: 142
  650. m_TileMatrixIndex: 0
  651. m_TileColorIndex: 0
  652. m_TileObjectToInstantiateIndex: 65535
  653. m_AllTileFlags: 2147483649
  654. - first: {x: 4, y: -7, z: 0}
  655. second:
  656. serializedVersion: 2
  657. m_TileIndex: 10
  658. m_TileSpriteIndex: 141
  659. m_TileMatrixIndex: 0
  660. m_TileColorIndex: 0
  661. m_TileObjectToInstantiateIndex: 65535
  662. m_AllTileFlags: 2147483649
  663. - first: {x: 5, y: -7, z: 0}
  664. second:
  665. serializedVersion: 2
  666. m_TileIndex: 11
  667. m_TileSpriteIndex: 140
  668. m_TileMatrixIndex: 0
  669. m_TileColorIndex: 0
  670. m_TileObjectToInstantiateIndex: 65535
  671. m_AllTileFlags: 2147483649
  672. - first: {x: 6, y: -7, z: 0}
  673. second:
  674. serializedVersion: 2
  675. m_TileIndex: 12
  676. m_TileSpriteIndex: 139
  677. m_TileMatrixIndex: 0
  678. m_TileColorIndex: 0
  679. m_TileObjectToInstantiateIndex: 65535
  680. m_AllTileFlags: 2147483649
  681. - first: {x: 7, y: -7, z: 0}
  682. second:
  683. serializedVersion: 2
  684. m_TileIndex: 13
  685. m_TileSpriteIndex: 123
  686. m_TileMatrixIndex: 0
  687. m_TileColorIndex: 0
  688. m_TileObjectToInstantiateIndex: 65535
  689. m_AllTileFlags: 2147483649
  690. - first: {x: 8, y: -7, z: 0}
  691. second:
  692. serializedVersion: 2
  693. m_TileIndex: 14
  694. m_TileSpriteIndex: 107
  695. m_TileMatrixIndex: 0
  696. m_TileColorIndex: 0
  697. m_TileObjectToInstantiateIndex: 65535
  698. m_AllTileFlags: 2147483649
  699. - first: {x: 9, y: -7, z: 0}
  700. second:
  701. serializedVersion: 2
  702. m_TileIndex: 15
  703. m_TileSpriteIndex: 42
  704. m_TileMatrixIndex: 0
  705. m_TileColorIndex: 0
  706. m_TileObjectToInstantiateIndex: 65535
  707. m_AllTileFlags: 2147483649
  708. - first: {x: -6, y: -6, z: 0}
  709. second:
  710. serializedVersion: 2
  711. m_TileIndex: 16
  712. m_TileSpriteIndex: 41
  713. m_TileMatrixIndex: 0
  714. m_TileColorIndex: 0
  715. m_TileObjectToInstantiateIndex: 65535
  716. m_AllTileFlags: 1
  717. - first: {x: -5, y: -6, z: 0}
  718. second:
  719. serializedVersion: 2
  720. m_TileIndex: 17
  721. m_TileSpriteIndex: 22
  722. m_TileMatrixIndex: 0
  723. m_TileColorIndex: 0
  724. m_TileObjectToInstantiateIndex: 65535
  725. m_AllTileFlags: 1
  726. - first: {x: -4, y: -6, z: 0}
  727. second:
  728. serializedVersion: 2
  729. m_TileIndex: 18
  730. m_TileSpriteIndex: 18
  731. m_TileMatrixIndex: 0
  732. m_TileColorIndex: 0
  733. m_TileObjectToInstantiateIndex: 65535
  734. m_AllTileFlags: 1
  735. - first: {x: -3, y: -6, z: 0}
  736. second:
  737. serializedVersion: 2
  738. m_TileIndex: 19
  739. m_TileSpriteIndex: 19
  740. m_TileMatrixIndex: 0
  741. m_TileColorIndex: 0
  742. m_TileObjectToInstantiateIndex: 65535
  743. m_AllTileFlags: 1
  744. - first: {x: -2, y: -6, z: 0}
  745. second:
  746. serializedVersion: 2
  747. m_TileIndex: 20
  748. m_TileSpriteIndex: 20
  749. m_TileMatrixIndex: 0
  750. m_TileColorIndex: 0
  751. m_TileObjectToInstantiateIndex: 65535
  752. m_AllTileFlags: 1
  753. - first: {x: -1, y: -6, z: 0}
  754. second:
  755. serializedVersion: 2
  756. m_TileIndex: 21
  757. m_TileSpriteIndex: 21
  758. m_TileMatrixIndex: 0
  759. m_TileColorIndex: 0
  760. m_TileObjectToInstantiateIndex: 65535
  761. m_AllTileFlags: 2147483649
  762. - first: {x: 0, y: -6, z: 0}
  763. second:
  764. serializedVersion: 2
  765. m_TileIndex: 22
  766. m_TileSpriteIndex: 59
  767. m_TileMatrixIndex: 0
  768. m_TileColorIndex: 0
  769. m_TileObjectToInstantiateIndex: 65535
  770. m_AllTileFlags: 2147483649
  771. - first: {x: 1, y: -6, z: 0}
  772. second:
  773. serializedVersion: 2
  774. m_TileIndex: 23
  775. m_TileSpriteIndex: 23
  776. m_TileMatrixIndex: 0
  777. m_TileColorIndex: 0
  778. m_TileObjectToInstantiateIndex: 65535
  779. m_AllTileFlags: 2147483649
  780. - first: {x: 2, y: -6, z: 0}
  781. second:
  782. serializedVersion: 2
  783. m_TileIndex: 24
  784. m_TileSpriteIndex: 24
  785. m_TileMatrixIndex: 0
  786. m_TileColorIndex: 0
  787. m_TileObjectToInstantiateIndex: 65535
  788. m_AllTileFlags: 1
  789. - first: {x: 3, y: -6, z: 0}
  790. second:
  791. serializedVersion: 2
  792. m_TileIndex: 25
  793. m_TileSpriteIndex: 25
  794. m_TileMatrixIndex: 0
  795. m_TileColorIndex: 0
  796. m_TileObjectToInstantiateIndex: 65535
  797. m_AllTileFlags: 1
  798. - first: {x: 4, y: -6, z: 0}
  799. second:
  800. serializedVersion: 2
  801. m_TileIndex: 26
  802. m_TileSpriteIndex: 26
  803. m_TileMatrixIndex: 0
  804. m_TileColorIndex: 0
  805. m_TileObjectToInstantiateIndex: 65535
  806. m_AllTileFlags: 1
  807. - first: {x: 5, y: -6, z: 0}
  808. second:
  809. serializedVersion: 2
  810. m_TileIndex: 27
  811. m_TileSpriteIndex: 27
  812. m_TileMatrixIndex: 0
  813. m_TileColorIndex: 0
  814. m_TileObjectToInstantiateIndex: 65535
  815. m_AllTileFlags: 1
  816. - first: {x: 6, y: -6, z: 0}
  817. second:
  818. serializedVersion: 2
  819. m_TileIndex: 28
  820. m_TileSpriteIndex: 28
  821. m_TileMatrixIndex: 0
  822. m_TileColorIndex: 0
  823. m_TileObjectToInstantiateIndex: 65535
  824. m_AllTileFlags: 1
  825. - first: {x: 7, y: -6, z: 0}
  826. second:
  827. serializedVersion: 2
  828. m_TileIndex: 29
  829. m_TileSpriteIndex: 29
  830. m_TileMatrixIndex: 0
  831. m_TileColorIndex: 0
  832. m_TileObjectToInstantiateIndex: 65535
  833. m_AllTileFlags: 2147483649
  834. - first: {x: 8, y: -6, z: 0}
  835. second:
  836. serializedVersion: 2
  837. m_TileIndex: 30
  838. m_TileSpriteIndex: 30
  839. m_TileMatrixIndex: 0
  840. m_TileColorIndex: 0
  841. m_TileObjectToInstantiateIndex: 65535
  842. m_AllTileFlags: 2147483649
  843. - first: {x: 9, y: -6, z: 0}
  844. second:
  845. serializedVersion: 2
  846. m_TileIndex: 31
  847. m_TileSpriteIndex: 31
  848. m_TileMatrixIndex: 0
  849. m_TileColorIndex: 0
  850. m_TileObjectToInstantiateIndex: 65535
  851. m_AllTileFlags: 2147483649
  852. - first: {x: -6, y: -5, z: 0}
  853. second:
  854. serializedVersion: 2
  855. m_TileIndex: 32
  856. m_TileSpriteIndex: 32
  857. m_TileMatrixIndex: 0
  858. m_TileColorIndex: 0
  859. m_TileObjectToInstantiateIndex: 65535
  860. m_AllTileFlags: 1
  861. - first: {x: -5, y: -5, z: 0}
  862. second:
  863. serializedVersion: 2
  864. m_TileIndex: 33
  865. m_TileSpriteIndex: 33
  866. m_TileMatrixIndex: 0
  867. m_TileColorIndex: 0
  868. m_TileObjectToInstantiateIndex: 65535
  869. m_AllTileFlags: 1
  870. - first: {x: -4, y: -5, z: 0}
  871. second:
  872. serializedVersion: 2
  873. m_TileIndex: 34
  874. m_TileSpriteIndex: 34
  875. m_TileMatrixIndex: 0
  876. m_TileColorIndex: 0
  877. m_TileObjectToInstantiateIndex: 65535
  878. m_AllTileFlags: 1
  879. - first: {x: -3, y: -5, z: 0}
  880. second:
  881. serializedVersion: 2
  882. m_TileIndex: 35
  883. m_TileSpriteIndex: 35
  884. m_TileMatrixIndex: 0
  885. m_TileColorIndex: 0
  886. m_TileObjectToInstantiateIndex: 65535
  887. m_AllTileFlags: 1
  888. - first: {x: -2, y: -5, z: 0}
  889. second:
  890. serializedVersion: 2
  891. m_TileIndex: 36
  892. m_TileSpriteIndex: 36
  893. m_TileMatrixIndex: 0
  894. m_TileColorIndex: 0
  895. m_TileObjectToInstantiateIndex: 65535
  896. m_AllTileFlags: 1
  897. - first: {x: -1, y: -5, z: 0}
  898. second:
  899. serializedVersion: 2
  900. m_TileIndex: 37
  901. m_TileSpriteIndex: 37
  902. m_TileMatrixIndex: 0
  903. m_TileColorIndex: 0
  904. m_TileObjectToInstantiateIndex: 65535
  905. m_AllTileFlags: 1
  906. - first: {x: 0, y: -5, z: 0}
  907. second:
  908. serializedVersion: 2
  909. m_TileIndex: 38
  910. m_TileSpriteIndex: 38
  911. m_TileMatrixIndex: 0
  912. m_TileColorIndex: 0
  913. m_TileObjectToInstantiateIndex: 65535
  914. m_AllTileFlags: 1
  915. - first: {x: 1, y: -5, z: 0}
  916. second:
  917. serializedVersion: 2
  918. m_TileIndex: 39
  919. m_TileSpriteIndex: 39
  920. m_TileMatrixIndex: 0
  921. m_TileColorIndex: 0
  922. m_TileObjectToInstantiateIndex: 65535
  923. m_AllTileFlags: 1
  924. - first: {x: 2, y: -5, z: 0}
  925. second:
  926. serializedVersion: 2
  927. m_TileIndex: 40
  928. m_TileSpriteIndex: 40
  929. m_TileMatrixIndex: 0
  930. m_TileColorIndex: 0
  931. m_TileObjectToInstantiateIndex: 65535
  932. m_AllTileFlags: 2147483649
  933. - first: {x: 3, y: -5, z: 0}
  934. second:
  935. serializedVersion: 2
  936. m_TileIndex: 41
  937. m_TileSpriteIndex: 74
  938. m_TileMatrixIndex: 0
  939. m_TileColorIndex: 0
  940. m_TileObjectToInstantiateIndex: 65535
  941. m_AllTileFlags: 2147483649
  942. - first: {x: 4, y: -5, z: 0}
  943. second:
  944. serializedVersion: 2
  945. m_TileIndex: 42
  946. m_TileSpriteIndex: 75
  947. m_TileMatrixIndex: 0
  948. m_TileColorIndex: 0
  949. m_TileObjectToInstantiateIndex: 65535
  950. m_AllTileFlags: 2147483649
  951. - first: {x: 5, y: -5, z: 0}
  952. second:
  953. serializedVersion: 2
  954. m_TileIndex: 43
  955. m_TileSpriteIndex: 43
  956. m_TileMatrixIndex: 0
  957. m_TileColorIndex: 0
  958. m_TileObjectToInstantiateIndex: 65535
  959. m_AllTileFlags: 2147483649
  960. - first: {x: 6, y: -5, z: 0}
  961. second:
  962. serializedVersion: 2
  963. m_TileIndex: 44
  964. m_TileSpriteIndex: 44
  965. m_TileMatrixIndex: 0
  966. m_TileColorIndex: 0
  967. m_TileObjectToInstantiateIndex: 65535
  968. m_AllTileFlags: 2147483649
  969. - first: {x: 7, y: -5, z: 0}
  970. second:
  971. serializedVersion: 2
  972. m_TileIndex: 45
  973. m_TileSpriteIndex: 45
  974. m_TileMatrixIndex: 0
  975. m_TileColorIndex: 0
  976. m_TileObjectToInstantiateIndex: 65535
  977. m_AllTileFlags: 2147483649
  978. - first: {x: 8, y: -5, z: 0}
  979. second:
  980. serializedVersion: 2
  981. m_TileIndex: 46
  982. m_TileSpriteIndex: 46
  983. m_TileMatrixIndex: 0
  984. m_TileColorIndex: 0
  985. m_TileObjectToInstantiateIndex: 65535
  986. m_AllTileFlags: 2147483649
  987. - first: {x: 9, y: -5, z: 0}
  988. second:
  989. serializedVersion: 2
  990. m_TileIndex: 47
  991. m_TileSpriteIndex: 47
  992. m_TileMatrixIndex: 0
  993. m_TileColorIndex: 0
  994. m_TileObjectToInstantiateIndex: 65535
  995. m_AllTileFlags: 2147483649
  996. - first: {x: -6, y: -4, z: 0}
  997. second:
  998. serializedVersion: 2
  999. m_TileIndex: 48
  1000. m_TileSpriteIndex: 48
  1001. m_TileMatrixIndex: 0
  1002. m_TileColorIndex: 0
  1003. m_TileObjectToInstantiateIndex: 65535
  1004. m_AllTileFlags: 1
  1005. - first: {x: -5, y: -4, z: 0}
  1006. second:
  1007. serializedVersion: 2
  1008. m_TileIndex: 49
  1009. m_TileSpriteIndex: 49
  1010. m_TileMatrixIndex: 0
  1011. m_TileColorIndex: 0
  1012. m_TileObjectToInstantiateIndex: 65535
  1013. m_AllTileFlags: 1
  1014. - first: {x: -4, y: -4, z: 0}
  1015. second:
  1016. serializedVersion: 2
  1017. m_TileIndex: 50
  1018. m_TileSpriteIndex: 50
  1019. m_TileMatrixIndex: 0
  1020. m_TileColorIndex: 0
  1021. m_TileObjectToInstantiateIndex: 65535
  1022. m_AllTileFlags: 1
  1023. - first: {x: -3, y: -4, z: 0}
  1024. second:
  1025. serializedVersion: 2
  1026. m_TileIndex: 51
  1027. m_TileSpriteIndex: 51
  1028. m_TileMatrixIndex: 0
  1029. m_TileColorIndex: 0
  1030. m_TileObjectToInstantiateIndex: 65535
  1031. m_AllTileFlags: 1
  1032. - first: {x: -2, y: -4, z: 0}
  1033. second:
  1034. serializedVersion: 2
  1035. m_TileIndex: 52
  1036. m_TileSpriteIndex: 52
  1037. m_TileMatrixIndex: 0
  1038. m_TileColorIndex: 0
  1039. m_TileObjectToInstantiateIndex: 65535
  1040. m_AllTileFlags: 1
  1041. - first: {x: -1, y: -4, z: 0}
  1042. second:
  1043. serializedVersion: 2
  1044. m_TileIndex: 53
  1045. m_TileSpriteIndex: 53
  1046. m_TileMatrixIndex: 0
  1047. m_TileColorIndex: 0
  1048. m_TileObjectToInstantiateIndex: 65535
  1049. m_AllTileFlags: 1
  1050. - first: {x: 0, y: -4, z: 0}
  1051. second:
  1052. serializedVersion: 2
  1053. m_TileIndex: 54
  1054. m_TileSpriteIndex: 54
  1055. m_TileMatrixIndex: 0
  1056. m_TileColorIndex: 0
  1057. m_TileObjectToInstantiateIndex: 65535
  1058. m_AllTileFlags: 1
  1059. - first: {x: 1, y: -4, z: 0}
  1060. second:
  1061. serializedVersion: 2
  1062. m_TileIndex: 55
  1063. m_TileSpriteIndex: 55
  1064. m_TileMatrixIndex: 0
  1065. m_TileColorIndex: 0
  1066. m_TileObjectToInstantiateIndex: 65535
  1067. m_AllTileFlags: 1
  1068. - first: {x: 2, y: -4, z: 0}
  1069. second:
  1070. serializedVersion: 2
  1071. m_TileIndex: 56
  1072. m_TileSpriteIndex: 56
  1073. m_TileMatrixIndex: 0
  1074. m_TileColorIndex: 0
  1075. m_TileObjectToInstantiateIndex: 65535
  1076. m_AllTileFlags: 2147483649
  1077. - first: {x: 3, y: -4, z: 0}
  1078. second:
  1079. serializedVersion: 2
  1080. m_TileIndex: 57
  1081. m_TileSpriteIndex: 57
  1082. m_TileMatrixIndex: 0
  1083. m_TileColorIndex: 0
  1084. m_TileObjectToInstantiateIndex: 65535
  1085. m_AllTileFlags: 2147483649
  1086. - first: {x: 4, y: -4, z: 0}
  1087. second:
  1088. serializedVersion: 2
  1089. m_TileIndex: 58
  1090. m_TileSpriteIndex: 58
  1091. m_TileMatrixIndex: 0
  1092. m_TileColorIndex: 0
  1093. m_TileObjectToInstantiateIndex: 65535
  1094. m_AllTileFlags: 2147483649
  1095. - first: {x: 5, y: -4, z: 0}
  1096. second:
  1097. serializedVersion: 2
  1098. m_TileIndex: 59
  1099. m_TileSpriteIndex: 90
  1100. m_TileMatrixIndex: 0
  1101. m_TileColorIndex: 0
  1102. m_TileObjectToInstantiateIndex: 65535
  1103. m_AllTileFlags: 2147483649
  1104. - first: {x: 6, y: -4, z: 0}
  1105. second:
  1106. serializedVersion: 2
  1107. m_TileIndex: 60
  1108. m_TileSpriteIndex: 60
  1109. m_TileMatrixIndex: 0
  1110. m_TileColorIndex: 0
  1111. m_TileObjectToInstantiateIndex: 65535
  1112. m_AllTileFlags: 2147483649
  1113. - first: {x: 7, y: -4, z: 0}
  1114. second:
  1115. serializedVersion: 2
  1116. m_TileIndex: 61
  1117. m_TileSpriteIndex: 61
  1118. m_TileMatrixIndex: 0
  1119. m_TileColorIndex: 0
  1120. m_TileObjectToInstantiateIndex: 65535
  1121. m_AllTileFlags: 2147483649
  1122. - first: {x: 8, y: -4, z: 0}
  1123. second:
  1124. serializedVersion: 2
  1125. m_TileIndex: 62
  1126. m_TileSpriteIndex: 62
  1127. m_TileMatrixIndex: 0
  1128. m_TileColorIndex: 0
  1129. m_TileObjectToInstantiateIndex: 65535
  1130. m_AllTileFlags: 2147483649
  1131. - first: {x: 9, y: -4, z: 0}
  1132. second:
  1133. serializedVersion: 2
  1134. m_TileIndex: 63
  1135. m_TileSpriteIndex: 63
  1136. m_TileMatrixIndex: 0
  1137. m_TileColorIndex: 0
  1138. m_TileObjectToInstantiateIndex: 65535
  1139. m_AllTileFlags: 1
  1140. - first: {x: -6, y: -3, z: 0}
  1141. second:
  1142. serializedVersion: 2
  1143. m_TileIndex: 64
  1144. m_TileSpriteIndex: 64
  1145. m_TileMatrixIndex: 0
  1146. m_TileColorIndex: 0
  1147. m_TileObjectToInstantiateIndex: 65535
  1148. m_AllTileFlags: 1
  1149. - first: {x: -5, y: -3, z: 0}
  1150. second:
  1151. serializedVersion: 2
  1152. m_TileIndex: 65
  1153. m_TileSpriteIndex: 65
  1154. m_TileMatrixIndex: 0
  1155. m_TileColorIndex: 0
  1156. m_TileObjectToInstantiateIndex: 65535
  1157. m_AllTileFlags: 1
  1158. - first: {x: -4, y: -3, z: 0}
  1159. second:
  1160. serializedVersion: 2
  1161. m_TileIndex: 66
  1162. m_TileSpriteIndex: 66
  1163. m_TileMatrixIndex: 0
  1164. m_TileColorIndex: 0
  1165. m_TileObjectToInstantiateIndex: 65535
  1166. m_AllTileFlags: 1
  1167. - first: {x: -3, y: -3, z: 0}
  1168. second:
  1169. serializedVersion: 2
  1170. m_TileIndex: 67
  1171. m_TileSpriteIndex: 67
  1172. m_TileMatrixIndex: 0
  1173. m_TileColorIndex: 0
  1174. m_TileObjectToInstantiateIndex: 65535
  1175. m_AllTileFlags: 1
  1176. - first: {x: -2, y: -3, z: 0}
  1177. second:
  1178. serializedVersion: 2
  1179. m_TileIndex: 68
  1180. m_TileSpriteIndex: 68
  1181. m_TileMatrixIndex: 0
  1182. m_TileColorIndex: 0
  1183. m_TileObjectToInstantiateIndex: 65535
  1184. m_AllTileFlags: 1
  1185. - first: {x: -1, y: -3, z: 0}
  1186. second:
  1187. serializedVersion: 2
  1188. m_TileIndex: 69
  1189. m_TileSpriteIndex: 69
  1190. m_TileMatrixIndex: 0
  1191. m_TileColorIndex: 0
  1192. m_TileObjectToInstantiateIndex: 65535
  1193. m_AllTileFlags: 2147483649
  1194. - first: {x: 0, y: -3, z: 0}
  1195. second:
  1196. serializedVersion: 2
  1197. m_TileIndex: 70
  1198. m_TileSpriteIndex: 70
  1199. m_TileMatrixIndex: 0
  1200. m_TileColorIndex: 0
  1201. m_TileObjectToInstantiateIndex: 65535
  1202. m_AllTileFlags: 1
  1203. - first: {x: 2, y: -3, z: 0}
  1204. second:
  1205. serializedVersion: 2
  1206. m_TileIndex: 71
  1207. m_TileSpriteIndex: 71
  1208. m_TileMatrixIndex: 0
  1209. m_TileColorIndex: 0
  1210. m_TileObjectToInstantiateIndex: 65535
  1211. m_AllTileFlags: 2147483649
  1212. - first: {x: 3, y: -3, z: 0}
  1213. second:
  1214. serializedVersion: 2
  1215. m_TileIndex: 72
  1216. m_TileSpriteIndex: 72
  1217. m_TileMatrixIndex: 0
  1218. m_TileColorIndex: 0
  1219. m_TileObjectToInstantiateIndex: 65535
  1220. m_AllTileFlags: 2147483649
  1221. - first: {x: 4, y: -3, z: 0}
  1222. second:
  1223. serializedVersion: 2
  1224. m_TileIndex: 73
  1225. m_TileSpriteIndex: 73
  1226. m_TileMatrixIndex: 0
  1227. m_TileColorIndex: 0
  1228. m_TileObjectToInstantiateIndex: 65535
  1229. m_AllTileFlags: 2147483649
  1230. - first: {x: 5, y: -3, z: 0}
  1231. second:
  1232. serializedVersion: 2
  1233. m_TileIndex: 74
  1234. m_TileSpriteIndex: 91
  1235. m_TileMatrixIndex: 0
  1236. m_TileColorIndex: 0
  1237. m_TileObjectToInstantiateIndex: 65535
  1238. m_AllTileFlags: 2147483649
  1239. - first: {x: 6, y: -3, z: 0}
  1240. second:
  1241. serializedVersion: 2
  1242. m_TileIndex: 75
  1243. m_TileSpriteIndex: 92
  1244. m_TileMatrixIndex: 0
  1245. m_TileColorIndex: 0
  1246. m_TileObjectToInstantiateIndex: 65535
  1247. m_AllTileFlags: 2147483649
  1248. - first: {x: 7, y: -3, z: 0}
  1249. second:
  1250. serializedVersion: 2
  1251. m_TileIndex: 76
  1252. m_TileSpriteIndex: 76
  1253. m_TileMatrixIndex: 0
  1254. m_TileColorIndex: 0
  1255. m_TileObjectToInstantiateIndex: 65535
  1256. m_AllTileFlags: 2147483649
  1257. - first: {x: 8, y: -3, z: 0}
  1258. second:
  1259. serializedVersion: 2
  1260. m_TileIndex: 77
  1261. m_TileSpriteIndex: 77
  1262. m_TileMatrixIndex: 0
  1263. m_TileColorIndex: 0
  1264. m_TileObjectToInstantiateIndex: 65535
  1265. m_AllTileFlags: 2147483649
  1266. - first: {x: 9, y: -3, z: 0}
  1267. second:
  1268. serializedVersion: 2
  1269. m_TileIndex: 78
  1270. m_TileSpriteIndex: 78
  1271. m_TileMatrixIndex: 0
  1272. m_TileColorIndex: 0
  1273. m_TileObjectToInstantiateIndex: 65535
  1274. m_AllTileFlags: 2147483649
  1275. - first: {x: 13, y: -3, z: 0}
  1276. second:
  1277. serializedVersion: 2
  1278. m_TileIndex: 183
  1279. m_TileSpriteIndex: 181
  1280. m_TileMatrixIndex: 0
  1281. m_TileColorIndex: 0
  1282. m_TileObjectToInstantiateIndex: 65535
  1283. m_AllTileFlags: 2147483649
  1284. - first: {x: 14, y: -3, z: 0}
  1285. second:
  1286. serializedVersion: 2
  1287. m_TileIndex: 182
  1288. m_TileSpriteIndex: 180
  1289. m_TileMatrixIndex: 0
  1290. m_TileColorIndex: 0
  1291. m_TileObjectToInstantiateIndex: 65535
  1292. m_AllTileFlags: 2147483649
  1293. - first: {x: -6, y: -2, z: 0}
  1294. second:
  1295. serializedVersion: 2
  1296. m_TileIndex: 79
  1297. m_TileSpriteIndex: 79
  1298. m_TileMatrixIndex: 0
  1299. m_TileColorIndex: 0
  1300. m_TileObjectToInstantiateIndex: 65535
  1301. m_AllTileFlags: 2147483649
  1302. - first: {x: -5, y: -2, z: 0}
  1303. second:
  1304. serializedVersion: 2
  1305. m_TileIndex: 80
  1306. m_TileSpriteIndex: 80
  1307. m_TileMatrixIndex: 0
  1308. m_TileColorIndex: 0
  1309. m_TileObjectToInstantiateIndex: 65535
  1310. m_AllTileFlags: 2147483649
  1311. - first: {x: -4, y: -2, z: 0}
  1312. second:
  1313. serializedVersion: 2
  1314. m_TileIndex: 81
  1315. m_TileSpriteIndex: 81
  1316. m_TileMatrixIndex: 0
  1317. m_TileColorIndex: 0
  1318. m_TileObjectToInstantiateIndex: 65535
  1319. m_AllTileFlags: 2147483649
  1320. - first: {x: -3, y: -2, z: 0}
  1321. second:
  1322. serializedVersion: 2
  1323. m_TileIndex: 82
  1324. m_TileSpriteIndex: 82
  1325. m_TileMatrixIndex: 0
  1326. m_TileColorIndex: 0
  1327. m_TileObjectToInstantiateIndex: 65535
  1328. m_AllTileFlags: 2147483649
  1329. - first: {x: -2, y: -2, z: 0}
  1330. second:
  1331. serializedVersion: 2
  1332. m_TileIndex: 83
  1333. m_TileSpriteIndex: 83
  1334. m_TileMatrixIndex: 0
  1335. m_TileColorIndex: 0
  1336. m_TileObjectToInstantiateIndex: 65535
  1337. m_AllTileFlags: 2147483649
  1338. - first: {x: -1, y: -2, z: 0}
  1339. second:
  1340. serializedVersion: 2
  1341. m_TileIndex: 84
  1342. m_TileSpriteIndex: 84
  1343. m_TileMatrixIndex: 0
  1344. m_TileColorIndex: 0
  1345. m_TileObjectToInstantiateIndex: 65535
  1346. m_AllTileFlags: 2147483649
  1347. - first: {x: 0, y: -2, z: 0}
  1348. second:
  1349. serializedVersion: 2
  1350. m_TileIndex: 85
  1351. m_TileSpriteIndex: 85
  1352. m_TileMatrixIndex: 0
  1353. m_TileColorIndex: 0
  1354. m_TileObjectToInstantiateIndex: 65535
  1355. m_AllTileFlags: 2147483649
  1356. - first: {x: 1, y: -2, z: 0}
  1357. second:
  1358. serializedVersion: 2
  1359. m_TileIndex: 86
  1360. m_TileSpriteIndex: 86
  1361. m_TileMatrixIndex: 0
  1362. m_TileColorIndex: 0
  1363. m_TileObjectToInstantiateIndex: 65535
  1364. m_AllTileFlags: 2147483649
  1365. - first: {x: 2, y: -2, z: 0}
  1366. second:
  1367. serializedVersion: 2
  1368. m_TileIndex: 87
  1369. m_TileSpriteIndex: 87
  1370. m_TileMatrixIndex: 0
  1371. m_TileColorIndex: 0
  1372. m_TileObjectToInstantiateIndex: 65535
  1373. m_AllTileFlags: 2147483649
  1374. - first: {x: 3, y: -2, z: 0}
  1375. second:
  1376. serializedVersion: 2
  1377. m_TileIndex: 88
  1378. m_TileSpriteIndex: 88
  1379. m_TileMatrixIndex: 0
  1380. m_TileColorIndex: 0
  1381. m_TileObjectToInstantiateIndex: 65535
  1382. m_AllTileFlags: 2147483649
  1383. - first: {x: 4, y: -2, z: 0}
  1384. second:
  1385. serializedVersion: 2
  1386. m_TileIndex: 89
  1387. m_TileSpriteIndex: 89
  1388. m_TileMatrixIndex: 0
  1389. m_TileColorIndex: 0
  1390. m_TileObjectToInstantiateIndex: 65535
  1391. m_AllTileFlags: 2147483649
  1392. - first: {x: 5, y: -2, z: 0}
  1393. second:
  1394. serializedVersion: 2
  1395. m_TileIndex: 90
  1396. m_TileSpriteIndex: 121
  1397. m_TileMatrixIndex: 0
  1398. m_TileColorIndex: 0
  1399. m_TileObjectToInstantiateIndex: 65535
  1400. m_AllTileFlags: 2147483649
  1401. - first: {x: 6, y: -2, z: 0}
  1402. second:
  1403. serializedVersion: 2
  1404. m_TileIndex: 91
  1405. m_TileSpriteIndex: 105
  1406. m_TileMatrixIndex: 0
  1407. m_TileColorIndex: 0
  1408. m_TileObjectToInstantiateIndex: 65535
  1409. m_AllTileFlags: 1
  1410. - first: {x: 7, y: -2, z: 0}
  1411. second:
  1412. serializedVersion: 2
  1413. m_TileIndex: 92
  1414. m_TileSpriteIndex: 108
  1415. m_TileMatrixIndex: 0
  1416. m_TileColorIndex: 0
  1417. m_TileObjectToInstantiateIndex: 65535
  1418. m_AllTileFlags: 1
  1419. - first: {x: 8, y: -2, z: 0}
  1420. second:
  1421. serializedVersion: 2
  1422. m_TileIndex: 93
  1423. m_TileSpriteIndex: 93
  1424. m_TileMatrixIndex: 0
  1425. m_TileColorIndex: 0
  1426. m_TileObjectToInstantiateIndex: 65535
  1427. m_AllTileFlags: 2147483649
  1428. - first: {x: 9, y: -2, z: 0}
  1429. second:
  1430. serializedVersion: 2
  1431. m_TileIndex: 94
  1432. m_TileSpriteIndex: 94
  1433. m_TileMatrixIndex: 0
  1434. m_TileColorIndex: 0
  1435. m_TileObjectToInstantiateIndex: 65535
  1436. m_AllTileFlags: 1
  1437. - first: {x: 11, y: -2, z: 0}
  1438. second:
  1439. serializedVersion: 2
  1440. m_TileIndex: 183
  1441. m_TileSpriteIndex: 181
  1442. m_TileMatrixIndex: 0
  1443. m_TileColorIndex: 0
  1444. m_TileObjectToInstantiateIndex: 65535
  1445. m_AllTileFlags: 2147483649
  1446. - first: {x: 12, y: -2, z: 0}
  1447. second:
  1448. serializedVersion: 2
  1449. m_TileIndex: 181
  1450. m_TileSpriteIndex: 178
  1451. m_TileMatrixIndex: 0
  1452. m_TileColorIndex: 0
  1453. m_TileObjectToInstantiateIndex: 65535
  1454. m_AllTileFlags: 2147483649
  1455. - first: {x: 13, y: -2, z: 0}
  1456. second:
  1457. serializedVersion: 2
  1458. m_TileIndex: 178
  1459. m_TileSpriteIndex: 177
  1460. m_TileMatrixIndex: 0
  1461. m_TileColorIndex: 0
  1462. m_TileObjectToInstantiateIndex: 65535
  1463. m_AllTileFlags: 2147483649
  1464. - first: {x: 14, y: -2, z: 0}
  1465. second:
  1466. serializedVersion: 2
  1467. m_TileIndex: 177
  1468. m_TileSpriteIndex: 174
  1469. m_TileMatrixIndex: 0
  1470. m_TileColorIndex: 0
  1471. m_TileObjectToInstantiateIndex: 65535
  1472. m_AllTileFlags: 2147483649
  1473. - first: {x: 15, y: -2, z: 0}
  1474. second:
  1475. serializedVersion: 2
  1476. m_TileIndex: 182
  1477. m_TileSpriteIndex: 180
  1478. m_TileMatrixIndex: 0
  1479. m_TileColorIndex: 0
  1480. m_TileObjectToInstantiateIndex: 65535
  1481. m_AllTileFlags: 2147483649
  1482. - first: {x: -6, y: -1, z: 0}
  1483. second:
  1484. serializedVersion: 2
  1485. m_TileIndex: 95
  1486. m_TileSpriteIndex: 95
  1487. m_TileMatrixIndex: 0
  1488. m_TileColorIndex: 0
  1489. m_TileObjectToInstantiateIndex: 65535
  1490. m_AllTileFlags: 1
  1491. - first: {x: -5, y: -1, z: 0}
  1492. second:
  1493. serializedVersion: 2
  1494. m_TileIndex: 96
  1495. m_TileSpriteIndex: 96
  1496. m_TileMatrixIndex: 0
  1497. m_TileColorIndex: 0
  1498. m_TileObjectToInstantiateIndex: 65535
  1499. m_AllTileFlags: 1
  1500. - first: {x: -4, y: -1, z: 0}
  1501. second:
  1502. serializedVersion: 2
  1503. m_TileIndex: 97
  1504. m_TileSpriteIndex: 97
  1505. m_TileMatrixIndex: 0
  1506. m_TileColorIndex: 0
  1507. m_TileObjectToInstantiateIndex: 65535
  1508. m_AllTileFlags: 2147483649
  1509. - first: {x: -3, y: -1, z: 0}
  1510. second:
  1511. serializedVersion: 2
  1512. m_TileIndex: 98
  1513. m_TileSpriteIndex: 98
  1514. m_TileMatrixIndex: 0
  1515. m_TileColorIndex: 0
  1516. m_TileObjectToInstantiateIndex: 65535
  1517. m_AllTileFlags: 1
  1518. - first: {x: -2, y: -1, z: 0}
  1519. second:
  1520. serializedVersion: 2
  1521. m_TileIndex: 99
  1522. m_TileSpriteIndex: 99
  1523. m_TileMatrixIndex: 0
  1524. m_TileColorIndex: 0
  1525. m_TileObjectToInstantiateIndex: 65535
  1526. m_AllTileFlags: 1
  1527. - first: {x: -1, y: -1, z: 0}
  1528. second:
  1529. serializedVersion: 2
  1530. m_TileIndex: 100
  1531. m_TileSpriteIndex: 100
  1532. m_TileMatrixIndex: 0
  1533. m_TileColorIndex: 0
  1534. m_TileObjectToInstantiateIndex: 65535
  1535. m_AllTileFlags: 1
  1536. - first: {x: 0, y: -1, z: 0}
  1537. second:
  1538. serializedVersion: 2
  1539. m_TileIndex: 101
  1540. m_TileSpriteIndex: 101
  1541. m_TileMatrixIndex: 0
  1542. m_TileColorIndex: 0
  1543. m_TileObjectToInstantiateIndex: 65535
  1544. m_AllTileFlags: 1
  1545. - first: {x: 1, y: -1, z: 0}
  1546. second:
  1547. serializedVersion: 2
  1548. m_TileIndex: 102
  1549. m_TileSpriteIndex: 102
  1550. m_TileMatrixIndex: 0
  1551. m_TileColorIndex: 0
  1552. m_TileObjectToInstantiateIndex: 65535
  1553. m_AllTileFlags: 1
  1554. - first: {x: 2, y: -1, z: 0}
  1555. second:
  1556. serializedVersion: 2
  1557. m_TileIndex: 103
  1558. m_TileSpriteIndex: 103
  1559. m_TileMatrixIndex: 0
  1560. m_TileColorIndex: 0
  1561. m_TileObjectToInstantiateIndex: 65535
  1562. m_AllTileFlags: 1
  1563. - first: {x: 3, y: -1, z: 0}
  1564. second:
  1565. serializedVersion: 2
  1566. m_TileIndex: 104
  1567. m_TileSpriteIndex: 104
  1568. m_TileMatrixIndex: 0
  1569. m_TileColorIndex: 0
  1570. m_TileObjectToInstantiateIndex: 65535
  1571. m_AllTileFlags: 2147483649
  1572. - first: {x: 4, y: -1, z: 0}
  1573. second:
  1574. serializedVersion: 2
  1575. m_TileIndex: 105
  1576. m_TileSpriteIndex: 138
  1577. m_TileMatrixIndex: 0
  1578. m_TileColorIndex: 0
  1579. m_TileObjectToInstantiateIndex: 65535
  1580. m_AllTileFlags: 2147483649
  1581. - first: {x: 7, y: -1, z: 0}
  1582. second:
  1583. serializedVersion: 2
  1584. m_TileIndex: 108
  1585. m_TileSpriteIndex: 122
  1586. m_TileMatrixIndex: 0
  1587. m_TileColorIndex: 0
  1588. m_TileObjectToInstantiateIndex: 65535
  1589. m_AllTileFlags: 2147483649
  1590. - first: {x: 8, y: -1, z: 0}
  1591. second:
  1592. serializedVersion: 2
  1593. m_TileIndex: 109
  1594. m_TileSpriteIndex: 109
  1595. m_TileMatrixIndex: 0
  1596. m_TileColorIndex: 0
  1597. m_TileObjectToInstantiateIndex: 65535
  1598. m_AllTileFlags: 2147483649
  1599. - first: {x: 9, y: -1, z: 0}
  1600. second:
  1601. serializedVersion: 2
  1602. m_TileIndex: 110
  1603. m_TileSpriteIndex: 110
  1604. m_TileMatrixIndex: 0
  1605. m_TileColorIndex: 0
  1606. m_TileObjectToInstantiateIndex: 65535
  1607. m_AllTileFlags: 2147483649
  1608. - first: {x: 11, y: -1, z: 0}
  1609. second:
  1610. serializedVersion: 2
  1611. m_TileIndex: 174
  1612. m_TileSpriteIndex: 173
  1613. m_TileMatrixIndex: 0
  1614. m_TileColorIndex: 0
  1615. m_TileObjectToInstantiateIndex: 65535
  1616. m_AllTileFlags: 2147483649
  1617. - first: {x: 12, y: -1, z: 0}
  1618. second:
  1619. serializedVersion: 2
  1620. m_TileIndex: 173
  1621. m_TileSpriteIndex: 172
  1622. m_TileMatrixIndex: 0
  1623. m_TileColorIndex: 0
  1624. m_TileObjectToInstantiateIndex: 65535
  1625. m_AllTileFlags: 2147483649
  1626. - first: {x: 13, y: -1, z: 0}
  1627. second:
  1628. serializedVersion: 2
  1629. m_TileIndex: 172
  1630. m_TileSpriteIndex: 171
  1631. m_TileMatrixIndex: 0
  1632. m_TileColorIndex: 0
  1633. m_TileObjectToInstantiateIndex: 65535
  1634. m_AllTileFlags: 2147483649
  1635. - first: {x: 14, y: -1, z: 0}
  1636. second:
  1637. serializedVersion: 2
  1638. m_TileIndex: 171
  1639. m_TileSpriteIndex: 170
  1640. m_TileMatrixIndex: 0
  1641. m_TileColorIndex: 0
  1642. m_TileObjectToInstantiateIndex: 65535
  1643. m_AllTileFlags: 2147483649
  1644. - first: {x: 15, y: -1, z: 0}
  1645. second:
  1646. serializedVersion: 2
  1647. m_TileIndex: 170
  1648. m_TileSpriteIndex: 166
  1649. m_TileMatrixIndex: 0
  1650. m_TileColorIndex: 0
  1651. m_TileObjectToInstantiateIndex: 65535
  1652. m_AllTileFlags: 2147483649
  1653. - first: {x: -6, y: 0, z: 0}
  1654. second:
  1655. serializedVersion: 2
  1656. m_TileIndex: 111
  1657. m_TileSpriteIndex: 111
  1658. m_TileMatrixIndex: 0
  1659. m_TileColorIndex: 0
  1660. m_TileObjectToInstantiateIndex: 65535
  1661. m_AllTileFlags: 2147483649
  1662. - first: {x: -5, y: 0, z: 0}
  1663. second:
  1664. serializedVersion: 2
  1665. m_TileIndex: 112
  1666. m_TileSpriteIndex: 112
  1667. m_TileMatrixIndex: 0
  1668. m_TileColorIndex: 0
  1669. m_TileObjectToInstantiateIndex: 65535
  1670. m_AllTileFlags: 2147483649
  1671. - first: {x: -4, y: 0, z: 0}
  1672. second:
  1673. serializedVersion: 2
  1674. m_TileIndex: 113
  1675. m_TileSpriteIndex: 113
  1676. m_TileMatrixIndex: 0
  1677. m_TileColorIndex: 0
  1678. m_TileObjectToInstantiateIndex: 65535
  1679. m_AllTileFlags: 2147483649
  1680. - first: {x: -3, y: 0, z: 0}
  1681. second:
  1682. serializedVersion: 2
  1683. m_TileIndex: 114
  1684. m_TileSpriteIndex: 114
  1685. m_TileMatrixIndex: 0
  1686. m_TileColorIndex: 0
  1687. m_TileObjectToInstantiateIndex: 65535
  1688. m_AllTileFlags: 2147483649
  1689. - first: {x: -2, y: 0, z: 0}
  1690. second:
  1691. serializedVersion: 2
  1692. m_TileIndex: 115
  1693. m_TileSpriteIndex: 115
  1694. m_TileMatrixIndex: 0
  1695. m_TileColorIndex: 0
  1696. m_TileObjectToInstantiateIndex: 65535
  1697. m_AllTileFlags: 2147483649
  1698. - first: {x: -1, y: 0, z: 0}
  1699. second:
  1700. serializedVersion: 2
  1701. m_TileIndex: 116
  1702. m_TileSpriteIndex: 116
  1703. m_TileMatrixIndex: 0
  1704. m_TileColorIndex: 0
  1705. m_TileObjectToInstantiateIndex: 65535
  1706. m_AllTileFlags: 2147483649
  1707. - first: {x: 0, y: 0, z: 0}
  1708. second:
  1709. serializedVersion: 2
  1710. m_TileIndex: 117
  1711. m_TileSpriteIndex: 117
  1712. m_TileMatrixIndex: 0
  1713. m_TileColorIndex: 0
  1714. m_TileObjectToInstantiateIndex: 65535
  1715. m_AllTileFlags: 2147483649
  1716. - first: {x: 1, y: 0, z: 0}
  1717. second:
  1718. serializedVersion: 2
  1719. m_TileIndex: 118
  1720. m_TileSpriteIndex: 118
  1721. m_TileMatrixIndex: 0
  1722. m_TileColorIndex: 0
  1723. m_TileObjectToInstantiateIndex: 65535
  1724. m_AllTileFlags: 2147483649
  1725. - first: {x: 2, y: 0, z: 0}
  1726. second:
  1727. serializedVersion: 2
  1728. m_TileIndex: 119
  1729. m_TileSpriteIndex: 119
  1730. m_TileMatrixIndex: 0
  1731. m_TileColorIndex: 0
  1732. m_TileObjectToInstantiateIndex: 65535
  1733. m_AllTileFlags: 2147483649
  1734. - first: {x: 3, y: 0, z: 0}
  1735. second:
  1736. serializedVersion: 2
  1737. m_TileIndex: 120
  1738. m_TileSpriteIndex: 120
  1739. m_TileMatrixIndex: 0
  1740. m_TileColorIndex: 0
  1741. m_TileObjectToInstantiateIndex: 65535
  1742. m_AllTileFlags: 1
  1743. - first: {x: 4, y: 0, z: 0}
  1744. second:
  1745. serializedVersion: 2
  1746. m_TileIndex: 121
  1747. m_TileSpriteIndex: 159
  1748. m_TileMatrixIndex: 0
  1749. m_TileColorIndex: 0
  1750. m_TileObjectToInstantiateIndex: 65535
  1751. m_AllTileFlags: 1
  1752. - first: {x: 7, y: 0, z: 0}
  1753. second:
  1754. serializedVersion: 2
  1755. m_TileIndex: 124
  1756. m_TileSpriteIndex: 124
  1757. m_TileMatrixIndex: 0
  1758. m_TileColorIndex: 0
  1759. m_TileObjectToInstantiateIndex: 65535
  1760. m_AllTileFlags: 1
  1761. - first: {x: 8, y: 0, z: 0}
  1762. second:
  1763. serializedVersion: 2
  1764. m_TileIndex: 125
  1765. m_TileSpriteIndex: 125
  1766. m_TileMatrixIndex: 0
  1767. m_TileColorIndex: 0
  1768. m_TileObjectToInstantiateIndex: 65535
  1769. m_AllTileFlags: 2147483649
  1770. - first: {x: 9, y: 0, z: 0}
  1771. second:
  1772. serializedVersion: 2
  1773. m_TileIndex: 126
  1774. m_TileSpriteIndex: 126
  1775. m_TileMatrixIndex: 0
  1776. m_TileColorIndex: 0
  1777. m_TileObjectToInstantiateIndex: 65535
  1778. m_AllTileFlags: 2147483649
  1779. - first: {x: 11, y: 0, z: 0}
  1780. second:
  1781. serializedVersion: 2
  1782. m_TileIndex: 174
  1783. m_TileSpriteIndex: 173
  1784. m_TileMatrixIndex: 0
  1785. m_TileColorIndex: 0
  1786. m_TileObjectToInstantiateIndex: 65535
  1787. m_AllTileFlags: 2147483649
  1788. - first: {x: 12, y: 0, z: 0}
  1789. second:
  1790. serializedVersion: 2
  1791. m_TileIndex: 177
  1792. m_TileSpriteIndex: 174
  1793. m_TileMatrixIndex: 0
  1794. m_TileColorIndex: 0
  1795. m_TileObjectToInstantiateIndex: 65535
  1796. m_AllTileFlags: 2147483649
  1797. - first: {x: 13, y: 0, z: 0}
  1798. second:
  1799. serializedVersion: 2
  1800. m_TileIndex: 178
  1801. m_TileSpriteIndex: 177
  1802. m_TileMatrixIndex: 0
  1803. m_TileColorIndex: 0
  1804. m_TileObjectToInstantiateIndex: 65535
  1805. m_AllTileFlags: 2147483649
  1806. - first: {x: 14, y: 0, z: 0}
  1807. second:
  1808. serializedVersion: 2
  1809. m_TileIndex: 173
  1810. m_TileSpriteIndex: 172
  1811. m_TileMatrixIndex: 0
  1812. m_TileColorIndex: 0
  1813. m_TileObjectToInstantiateIndex: 65535
  1814. m_AllTileFlags: 2147483649
  1815. - first: {x: 15, y: 0, z: 0}
  1816. second:
  1817. serializedVersion: 2
  1818. m_TileIndex: 166
  1819. m_TileSpriteIndex: 165
  1820. m_TileMatrixIndex: 0
  1821. m_TileColorIndex: 0
  1822. m_TileObjectToInstantiateIndex: 65535
  1823. m_AllTileFlags: 2147483649
  1824. - first: {x: -6, y: 1, z: 0}
  1825. second:
  1826. serializedVersion: 2
  1827. m_TileIndex: 127
  1828. m_TileSpriteIndex: 127
  1829. m_TileMatrixIndex: 0
  1830. m_TileColorIndex: 0
  1831. m_TileObjectToInstantiateIndex: 65535
  1832. m_AllTileFlags: 1
  1833. - first: {x: -5, y: 1, z: 0}
  1834. second:
  1835. serializedVersion: 2
  1836. m_TileIndex: 128
  1837. m_TileSpriteIndex: 128
  1838. m_TileMatrixIndex: 0
  1839. m_TileColorIndex: 0
  1840. m_TileObjectToInstantiateIndex: 65535
  1841. m_AllTileFlags: 1
  1842. - first: {x: -4, y: 1, z: 0}
  1843. second:
  1844. serializedVersion: 2
  1845. m_TileIndex: 129
  1846. m_TileSpriteIndex: 129
  1847. m_TileMatrixIndex: 0
  1848. m_TileColorIndex: 0
  1849. m_TileObjectToInstantiateIndex: 65535
  1850. m_AllTileFlags: 2147483649
  1851. - first: {x: -3, y: 1, z: 0}
  1852. second:
  1853. serializedVersion: 2
  1854. m_TileIndex: 130
  1855. m_TileSpriteIndex: 130
  1856. m_TileMatrixIndex: 0
  1857. m_TileColorIndex: 0
  1858. m_TileObjectToInstantiateIndex: 65535
  1859. m_AllTileFlags: 2147483649
  1860. - first: {x: -2, y: 1, z: 0}
  1861. second:
  1862. serializedVersion: 2
  1863. m_TileIndex: 131
  1864. m_TileSpriteIndex: 131
  1865. m_TileMatrixIndex: 0
  1866. m_TileColorIndex: 0
  1867. m_TileObjectToInstantiateIndex: 65535
  1868. m_AllTileFlags: 2147483649
  1869. - first: {x: -1, y: 1, z: 0}
  1870. second:
  1871. serializedVersion: 2
  1872. m_TileIndex: 132
  1873. m_TileSpriteIndex: 132
  1874. m_TileMatrixIndex: 0
  1875. m_TileColorIndex: 0
  1876. m_TileObjectToInstantiateIndex: 65535
  1877. m_AllTileFlags: 1
  1878. - first: {x: 0, y: 1, z: 0}
  1879. second:
  1880. serializedVersion: 2
  1881. m_TileIndex: 133
  1882. m_TileSpriteIndex: 133
  1883. m_TileMatrixIndex: 0
  1884. m_TileColorIndex: 0
  1885. m_TileObjectToInstantiateIndex: 65535
  1886. m_AllTileFlags: 2147483649
  1887. - first: {x: 1, y: 1, z: 0}
  1888. second:
  1889. serializedVersion: 2
  1890. m_TileIndex: 134
  1891. m_TileSpriteIndex: 134
  1892. m_TileMatrixIndex: 0
  1893. m_TileColorIndex: 0
  1894. m_TileObjectToInstantiateIndex: 65535
  1895. m_AllTileFlags: 2147483649
  1896. - first: {x: 2, y: 1, z: 0}
  1897. second:
  1898. serializedVersion: 2
  1899. m_TileIndex: 135
  1900. m_TileSpriteIndex: 135
  1901. m_TileMatrixIndex: 0
  1902. m_TileColorIndex: 0
  1903. m_TileObjectToInstantiateIndex: 65535
  1904. m_AllTileFlags: 2147483649
  1905. - first: {x: 3, y: 1, z: 0}
  1906. second:
  1907. serializedVersion: 2
  1908. m_TileIndex: 136
  1909. m_TileSpriteIndex: 136
  1910. m_TileMatrixIndex: 0
  1911. m_TileColorIndex: 0
  1912. m_TileObjectToInstantiateIndex: 65535
  1913. m_AllTileFlags: 2147483649
  1914. - first: {x: 4, y: 1, z: 0}
  1915. second:
  1916. serializedVersion: 2
  1917. m_TileIndex: 137
  1918. m_TileSpriteIndex: 137
  1919. m_TileMatrixIndex: 0
  1920. m_TileColorIndex: 0
  1921. m_TileObjectToInstantiateIndex: 65535
  1922. m_AllTileFlags: 2147483649
  1923. - first: {x: 6, y: 1, z: 0}
  1924. second:
  1925. serializedVersion: 2
  1926. m_TileIndex: 106
  1927. m_TileSpriteIndex: 106
  1928. m_TileMatrixIndex: 0
  1929. m_TileColorIndex: 0
  1930. m_TileObjectToInstantiateIndex: 65535
  1931. m_AllTileFlags: 2147483649
  1932. - first: {x: 7, y: 1, z: 0}
  1933. second:
  1934. serializedVersion: 2
  1935. m_TileIndex: 106
  1936. m_TileSpriteIndex: 106
  1937. m_TileMatrixIndex: 0
  1938. m_TileColorIndex: 0
  1939. m_TileObjectToInstantiateIndex: 65535
  1940. m_AllTileFlags: 2147483649
  1941. - first: {x: 11, y: 1, z: 0}
  1942. second:
  1943. serializedVersion: 2
  1944. m_TileIndex: 165
  1945. m_TileSpriteIndex: 164
  1946. m_TileMatrixIndex: 0
  1947. m_TileColorIndex: 0
  1948. m_TileObjectToInstantiateIndex: 65535
  1949. m_AllTileFlags: 2147483649
  1950. - first: {x: 12, y: 1, z: 0}
  1951. second:
  1952. serializedVersion: 2
  1953. m_TileIndex: 164
  1954. m_TileSpriteIndex: 163
  1955. m_TileMatrixIndex: 0
  1956. m_TileColorIndex: 0
  1957. m_TileObjectToInstantiateIndex: 65535
  1958. m_AllTileFlags: 2147483649
  1959. - first: {x: 13, y: 1, z: 0}
  1960. second:
  1961. serializedVersion: 2
  1962. m_TileIndex: 164
  1963. m_TileSpriteIndex: 163
  1964. m_TileMatrixIndex: 0
  1965. m_TileColorIndex: 0
  1966. m_TileObjectToInstantiateIndex: 65535
  1967. m_AllTileFlags: 2147483649
  1968. - first: {x: 14, y: 1, z: 0}
  1969. second:
  1970. serializedVersion: 2
  1971. m_TileIndex: 166
  1972. m_TileSpriteIndex: 165
  1973. m_TileMatrixIndex: 0
  1974. m_TileColorIndex: 0
  1975. m_TileObjectToInstantiateIndex: 65535
  1976. m_AllTileFlags: 2147483649
  1977. - first: {x: -6, y: 2, z: 0}
  1978. second:
  1979. serializedVersion: 2
  1980. m_TileIndex: 143
  1981. m_TileSpriteIndex: 143
  1982. m_TileMatrixIndex: 0
  1983. m_TileColorIndex: 0
  1984. m_TileObjectToInstantiateIndex: 65535
  1985. m_AllTileFlags: 2147483649
  1986. - first: {x: -5, y: 2, z: 0}
  1987. second:
  1988. serializedVersion: 2
  1989. m_TileIndex: 144
  1990. m_TileSpriteIndex: 144
  1991. m_TileMatrixIndex: 0
  1992. m_TileColorIndex: 0
  1993. m_TileObjectToInstantiateIndex: 65535
  1994. m_AllTileFlags: 2147483649
  1995. - first: {x: -4, y: 2, z: 0}
  1996. second:
  1997. serializedVersion: 2
  1998. m_TileIndex: 145
  1999. m_TileSpriteIndex: 145
  2000. m_TileMatrixIndex: 0
  2001. m_TileColorIndex: 0
  2002. m_TileObjectToInstantiateIndex: 65535
  2003. m_AllTileFlags: 1
  2004. - first: {x: -3, y: 2, z: 0}
  2005. second:
  2006. serializedVersion: 2
  2007. m_TileIndex: 146
  2008. m_TileSpriteIndex: 146
  2009. m_TileMatrixIndex: 0
  2010. m_TileColorIndex: 0
  2011. m_TileObjectToInstantiateIndex: 65535
  2012. m_AllTileFlags: 1
  2013. - first: {x: -2, y: 2, z: 0}
  2014. second:
  2015. serializedVersion: 2
  2016. m_TileIndex: 147
  2017. m_TileSpriteIndex: 147
  2018. m_TileMatrixIndex: 0
  2019. m_TileColorIndex: 0
  2020. m_TileObjectToInstantiateIndex: 65535
  2021. m_AllTileFlags: 1
  2022. - first: {x: 0, y: 2, z: 0}
  2023. second:
  2024. serializedVersion: 2
  2025. m_TileIndex: 149
  2026. m_TileSpriteIndex: 149
  2027. m_TileMatrixIndex: 0
  2028. m_TileColorIndex: 0
  2029. m_TileObjectToInstantiateIndex: 65535
  2030. m_AllTileFlags: 1
  2031. - first: {x: 1, y: 2, z: 0}
  2032. second:
  2033. serializedVersion: 2
  2034. m_TileIndex: 150
  2035. m_TileSpriteIndex: 150
  2036. m_TileMatrixIndex: 0
  2037. m_TileColorIndex: 0
  2038. m_TileObjectToInstantiateIndex: 65535
  2039. m_AllTileFlags: 2147483649
  2040. - first: {x: 2, y: 2, z: 0}
  2041. second:
  2042. serializedVersion: 2
  2043. m_TileIndex: 151
  2044. m_TileSpriteIndex: 151
  2045. m_TileMatrixIndex: 0
  2046. m_TileColorIndex: 0
  2047. m_TileObjectToInstantiateIndex: 65535
  2048. m_AllTileFlags: 2147483649
  2049. - first: {x: 3, y: 2, z: 0}
  2050. second:
  2051. serializedVersion: 2
  2052. m_TileIndex: 152
  2053. m_TileSpriteIndex: 152
  2054. m_TileMatrixIndex: 0
  2055. m_TileColorIndex: 0
  2056. m_TileObjectToInstantiateIndex: 65535
  2057. m_AllTileFlags: 2147483649
  2058. - first: {x: 4, y: 2, z: 0}
  2059. second:
  2060. serializedVersion: 2
  2061. m_TileIndex: 153
  2062. m_TileSpriteIndex: 153
  2063. m_TileMatrixIndex: 0
  2064. m_TileColorIndex: 0
  2065. m_TileObjectToInstantiateIndex: 65535
  2066. m_AllTileFlags: 2147483649
  2067. - first: {x: 6, y: 2, z: 0}
  2068. second:
  2069. serializedVersion: 2
  2070. m_TileIndex: 138
  2071. m_TileSpriteIndex: 189
  2072. m_TileMatrixIndex: 0
  2073. m_TileColorIndex: 0
  2074. m_TileObjectToInstantiateIndex: 65535
  2075. m_AllTileFlags: 2147483649
  2076. - first: {x: 7, y: 2, z: 0}
  2077. second:
  2078. serializedVersion: 2
  2079. m_TileIndex: 122
  2080. m_TileSpriteIndex: 186
  2081. m_TileMatrixIndex: 0
  2082. m_TileColorIndex: 0
  2083. m_TileObjectToInstantiateIndex: 65535
  2084. m_AllTileFlags: 1
  2085. - first: {x: -6, y: 3, z: 0}
  2086. second:
  2087. serializedVersion: 2
  2088. m_TileIndex: 246
  2089. m_TileSpriteIndex: 246
  2090. m_TileMatrixIndex: 0
  2091. m_TileColorIndex: 0
  2092. m_TileObjectToInstantiateIndex: 65535
  2093. m_AllTileFlags: 2147483649
  2094. - first: {x: -5, y: 3, z: 0}
  2095. second:
  2096. serializedVersion: 2
  2097. m_TileIndex: 245
  2098. m_TileSpriteIndex: 245
  2099. m_TileMatrixIndex: 0
  2100. m_TileColorIndex: 0
  2101. m_TileObjectToInstantiateIndex: 65535
  2102. m_AllTileFlags: 2147483649
  2103. - first: {x: -4, y: 3, z: 0}
  2104. second:
  2105. serializedVersion: 2
  2106. m_TileIndex: 244
  2107. m_TileSpriteIndex: 244
  2108. m_TileMatrixIndex: 0
  2109. m_TileColorIndex: 0
  2110. m_TileObjectToInstantiateIndex: 65535
  2111. m_AllTileFlags: 2147483649
  2112. - first: {x: -3, y: 3, z: 0}
  2113. second:
  2114. serializedVersion: 2
  2115. m_TileIndex: 243
  2116. m_TileSpriteIndex: 243
  2117. m_TileMatrixIndex: 0
  2118. m_TileColorIndex: 0
  2119. m_TileObjectToInstantiateIndex: 65535
  2120. m_AllTileFlags: 2147483649
  2121. - first: {x: 0, y: 3, z: 0}
  2122. second:
  2123. serializedVersion: 2
  2124. m_TileIndex: 242
  2125. m_TileSpriteIndex: 242
  2126. m_TileMatrixIndex: 0
  2127. m_TileColorIndex: 0
  2128. m_TileObjectToInstantiateIndex: 65535
  2129. m_AllTileFlags: 2147483649
  2130. - first: {x: 1, y: 3, z: 0}
  2131. second:
  2132. serializedVersion: 2
  2133. m_TileIndex: 241
  2134. m_TileSpriteIndex: 241
  2135. m_TileMatrixIndex: 0
  2136. m_TileColorIndex: 0
  2137. m_TileObjectToInstantiateIndex: 65535
  2138. m_AllTileFlags: 2147483649
  2139. - first: {x: 2, y: 3, z: 0}
  2140. second:
  2141. serializedVersion: 2
  2142. m_TileIndex: 167
  2143. m_TileSpriteIndex: 167
  2144. m_TileMatrixIndex: 0
  2145. m_TileColorIndex: 0
  2146. m_TileObjectToInstantiateIndex: 65535
  2147. m_AllTileFlags: 1
  2148. - first: {x: 3, y: 3, z: 0}
  2149. second:
  2150. serializedVersion: 2
  2151. m_TileIndex: 168
  2152. m_TileSpriteIndex: 168
  2153. m_TileMatrixIndex: 0
  2154. m_TileColorIndex: 0
  2155. m_TileObjectToInstantiateIndex: 65535
  2156. m_AllTileFlags: 1
  2157. - first: {x: 4, y: 3, z: 0}
  2158. second:
  2159. serializedVersion: 2
  2160. m_TileIndex: 169
  2161. m_TileSpriteIndex: 169
  2162. m_TileMatrixIndex: 0
  2163. m_TileColorIndex: 0
  2164. m_TileObjectToInstantiateIndex: 65535
  2165. m_AllTileFlags: 1
  2166. - first: {x: 5, y: 3, z: 0}
  2167. second:
  2168. serializedVersion: 2
  2169. m_TileIndex: 185
  2170. m_TileSpriteIndex: 185
  2171. m_TileMatrixIndex: 0
  2172. m_TileColorIndex: 0
  2173. m_TileObjectToInstantiateIndex: 65535
  2174. m_AllTileFlags: 2147483649
  2175. - first: {x: 6, y: 3, z: 0}
  2176. second:
  2177. serializedVersion: 2
  2178. m_TileIndex: 187
  2179. m_TileSpriteIndex: 187
  2180. m_TileMatrixIndex: 0
  2181. m_TileColorIndex: 0
  2182. m_TileObjectToInstantiateIndex: 65535
  2183. m_AllTileFlags: 2147483649
  2184. - first: {x: 11, y: 3, z: 0}
  2185. second:
  2186. serializedVersion: 2
  2187. m_TileIndex: 163
  2188. m_TileSpriteIndex: 182
  2189. m_TileMatrixIndex: 0
  2190. m_TileColorIndex: 0
  2191. m_TileObjectToInstantiateIndex: 65535
  2192. m_AllTileFlags: 2147483649
  2193. - first: {x: 14, y: 3, z: 0}
  2194. second:
  2195. serializedVersion: 2
  2196. m_TileIndex: 210
  2197. m_TileSpriteIndex: 210
  2198. m_TileMatrixIndex: 0
  2199. m_TileColorIndex: 0
  2200. m_TileObjectToInstantiateIndex: 65535
  2201. m_AllTileFlags: 2147483649
  2202. - first: {x: -6, y: 4, z: 0}
  2203. second:
  2204. serializedVersion: 2
  2205. m_TileIndex: 240
  2206. m_TileSpriteIndex: 240
  2207. m_TileMatrixIndex: 0
  2208. m_TileColorIndex: 0
  2209. m_TileObjectToInstantiateIndex: 65535
  2210. m_AllTileFlags: 1
  2211. - first: {x: -5, y: 4, z: 0}
  2212. second:
  2213. serializedVersion: 2
  2214. m_TileIndex: 239
  2215. m_TileSpriteIndex: 239
  2216. m_TileMatrixIndex: 0
  2217. m_TileColorIndex: 0
  2218. m_TileObjectToInstantiateIndex: 65535
  2219. m_AllTileFlags: 1
  2220. - first: {x: -4, y: 4, z: 0}
  2221. second:
  2222. serializedVersion: 2
  2223. m_TileIndex: 230
  2224. m_TileSpriteIndex: 230
  2225. m_TileMatrixIndex: 0
  2226. m_TileColorIndex: 0
  2227. m_TileObjectToInstantiateIndex: 65535
  2228. m_AllTileFlags: 1
  2229. - first: {x: -3, y: 4, z: 0}
  2230. second:
  2231. serializedVersion: 2
  2232. m_TileIndex: 229
  2233. m_TileSpriteIndex: 229
  2234. m_TileMatrixIndex: 0
  2235. m_TileColorIndex: 0
  2236. m_TileObjectToInstantiateIndex: 65535
  2237. m_AllTileFlags: 1
  2238. - first: {x: -2, y: 4, z: 0}
  2239. second:
  2240. serializedVersion: 2
  2241. m_TileIndex: 228
  2242. m_TileSpriteIndex: 228
  2243. m_TileMatrixIndex: 0
  2244. m_TileColorIndex: 0
  2245. m_TileObjectToInstantiateIndex: 65535
  2246. m_AllTileFlags: 2147483649
  2247. - first: {x: -1, y: 4, z: 0}
  2248. second:
  2249. serializedVersion: 2
  2250. m_TileIndex: 227
  2251. m_TileSpriteIndex: 227
  2252. m_TileMatrixIndex: 0
  2253. m_TileColorIndex: 0
  2254. m_TileObjectToInstantiateIndex: 65535
  2255. m_AllTileFlags: 2147483649
  2256. - first: {x: 0, y: 4, z: 0}
  2257. second:
  2258. serializedVersion: 2
  2259. m_TileIndex: 226
  2260. m_TileSpriteIndex: 226
  2261. m_TileMatrixIndex: 0
  2262. m_TileColorIndex: 0
  2263. m_TileObjectToInstantiateIndex: 65535
  2264. m_AllTileFlags: 1
  2265. - first: {x: 1, y: 4, z: 0}
  2266. second:
  2267. serializedVersion: 2
  2268. m_TileIndex: 225
  2269. m_TileSpriteIndex: 225
  2270. m_TileMatrixIndex: 0
  2271. m_TileColorIndex: 0
  2272. m_TileObjectToInstantiateIndex: 65535
  2273. m_AllTileFlags: 1
  2274. - first: {x: 3, y: 4, z: 0}
  2275. second:
  2276. serializedVersion: 2
  2277. m_TileIndex: 184
  2278. m_TileSpriteIndex: 184
  2279. m_TileMatrixIndex: 0
  2280. m_TileColorIndex: 0
  2281. m_TileObjectToInstantiateIndex: 65535
  2282. m_AllTileFlags: 1
  2283. - first: {x: 4, y: 4, z: 0}
  2284. second:
  2285. serializedVersion: 2
  2286. m_TileIndex: 185
  2287. m_TileSpriteIndex: 185
  2288. m_TileMatrixIndex: 0
  2289. m_TileColorIndex: 0
  2290. m_TileObjectToInstantiateIndex: 65535
  2291. m_AllTileFlags: 2147483649
  2292. - first: {x: 5, y: 4, z: 0}
  2293. second:
  2294. serializedVersion: 2
  2295. m_TileIndex: 219
  2296. m_TileSpriteIndex: 219
  2297. m_TileMatrixIndex: 0
  2298. m_TileColorIndex: 0
  2299. m_TileObjectToInstantiateIndex: 65535
  2300. m_AllTileFlags: 2147483649
  2301. - first: {x: 6, y: 4, z: 0}
  2302. second:
  2303. serializedVersion: 2
  2304. m_TileIndex: 203
  2305. m_TileSpriteIndex: 203
  2306. m_TileMatrixIndex: 0
  2307. m_TileColorIndex: 0
  2308. m_TileObjectToInstantiateIndex: 65535
  2309. m_AllTileFlags: 2147483649
  2310. - first: {x: 7, y: 4, z: 0}
  2311. second:
  2312. serializedVersion: 2
  2313. m_TileIndex: 188
  2314. m_TileSpriteIndex: 188
  2315. m_TileMatrixIndex: 0
  2316. m_TileColorIndex: 0
  2317. m_TileObjectToInstantiateIndex: 65535
  2318. m_AllTileFlags: 2147483649
  2319. - first: {x: 8, y: 4, z: 0}
  2320. second:
  2321. serializedVersion: 2
  2322. m_TileIndex: 238
  2323. m_TileSpriteIndex: 238
  2324. m_TileMatrixIndex: 0
  2325. m_TileColorIndex: 0
  2326. m_TileObjectToInstantiateIndex: 65535
  2327. m_AllTileFlags: 2147483649
  2328. - first: {x: 9, y: 4, z: 0}
  2329. second:
  2330. serializedVersion: 2
  2331. m_TileIndex: 190
  2332. m_TileSpriteIndex: 190
  2333. m_TileMatrixIndex: 0
  2334. m_TileColorIndex: 0
  2335. m_TileObjectToInstantiateIndex: 65535
  2336. m_AllTileFlags: 2147483649
  2337. - first: {x: 11, y: 4, z: 0}
  2338. second:
  2339. serializedVersion: 2
  2340. m_TileIndex: 179
  2341. m_TileSpriteIndex: 179
  2342. m_TileMatrixIndex: 0
  2343. m_TileColorIndex: 0
  2344. m_TileObjectToInstantiateIndex: 65535
  2345. m_AllTileFlags: 1
  2346. - first: {x: 12, y: 4, z: 0}
  2347. second:
  2348. serializedVersion: 2
  2349. m_TileIndex: 180
  2350. m_TileSpriteIndex: 183
  2351. m_TileMatrixIndex: 0
  2352. m_TileColorIndex: 0
  2353. m_TileObjectToInstantiateIndex: 65535
  2354. m_AllTileFlags: 1
  2355. - first: {x: 14, y: 4, z: 0}
  2356. second:
  2357. serializedVersion: 2
  2358. m_TileIndex: 192
  2359. m_TileSpriteIndex: 192
  2360. m_TileMatrixIndex: 0
  2361. m_TileColorIndex: 0
  2362. m_TileObjectToInstantiateIndex: 65535
  2363. m_AllTileFlags: 2147483649
  2364. - first: {x: -6, y: 5, z: 0}
  2365. second:
  2366. serializedVersion: 2
  2367. m_TileIndex: 224
  2368. m_TileSpriteIndex: 224
  2369. m_TileMatrixIndex: 0
  2370. m_TileColorIndex: 0
  2371. m_TileObjectToInstantiateIndex: 65535
  2372. m_AllTileFlags: 2147483649
  2373. - first: {x: -5, y: 5, z: 0}
  2374. second:
  2375. serializedVersion: 2
  2376. m_TileIndex: 223
  2377. m_TileSpriteIndex: 223
  2378. m_TileMatrixIndex: 0
  2379. m_TileColorIndex: 0
  2380. m_TileObjectToInstantiateIndex: 65535
  2381. m_AllTileFlags: 2147483649
  2382. - first: {x: -4, y: 5, z: 0}
  2383. second:
  2384. serializedVersion: 2
  2385. m_TileIndex: 214
  2386. m_TileSpriteIndex: 214
  2387. m_TileMatrixIndex: 0
  2388. m_TileColorIndex: 0
  2389. m_TileObjectToInstantiateIndex: 65535
  2390. m_AllTileFlags: 2147483649
  2391. - first: {x: -3, y: 5, z: 0}
  2392. second:
  2393. serializedVersion: 2
  2394. m_TileIndex: 213
  2395. m_TileSpriteIndex: 213
  2396. m_TileMatrixIndex: 0
  2397. m_TileColorIndex: 0
  2398. m_TileObjectToInstantiateIndex: 65535
  2399. m_AllTileFlags: 2147483649
  2400. - first: {x: -2, y: 5, z: 0}
  2401. second:
  2402. serializedVersion: 2
  2403. m_TileIndex: 212
  2404. m_TileSpriteIndex: 212
  2405. m_TileMatrixIndex: 0
  2406. m_TileColorIndex: 0
  2407. m_TileObjectToInstantiateIndex: 65535
  2408. m_AllTileFlags: 2147483649
  2409. - first: {x: -1, y: 5, z: 0}
  2410. second:
  2411. serializedVersion: 2
  2412. m_TileIndex: 211
  2413. m_TileSpriteIndex: 211
  2414. m_TileMatrixIndex: 0
  2415. m_TileColorIndex: 0
  2416. m_TileObjectToInstantiateIndex: 65535
  2417. m_AllTileFlags: 1
  2418. - first: {x: 1, y: 5, z: 0}
  2419. second:
  2420. serializedVersion: 2
  2421. m_TileIndex: 209
  2422. m_TileSpriteIndex: 209
  2423. m_TileMatrixIndex: 0
  2424. m_TileColorIndex: 0
  2425. m_TileObjectToInstantiateIndex: 65535
  2426. m_AllTileFlags: 2147483649
  2427. - first: {x: 2, y: 5, z: 0}
  2428. second:
  2429. serializedVersion: 2
  2430. m_TileIndex: 199
  2431. m_TileSpriteIndex: 199
  2432. m_TileMatrixIndex: 0
  2433. m_TileColorIndex: 0
  2434. m_TileObjectToInstantiateIndex: 65535
  2435. m_AllTileFlags: 2147483649
  2436. - first: {x: 3, y: 5, z: 0}
  2437. second:
  2438. serializedVersion: 2
  2439. m_TileIndex: 200
  2440. m_TileSpriteIndex: 200
  2441. m_TileMatrixIndex: 0
  2442. m_TileColorIndex: 0
  2443. m_TileObjectToInstantiateIndex: 65535
  2444. m_AllTileFlags: 2147483649
  2445. - first: {x: 4, y: 5, z: 0}
  2446. second:
  2447. serializedVersion: 2
  2448. m_TileIndex: 201
  2449. m_TileSpriteIndex: 201
  2450. m_TileMatrixIndex: 0
  2451. m_TileColorIndex: 0
  2452. m_TileObjectToInstantiateIndex: 65535
  2453. m_AllTileFlags: 2147483649
  2454. - first: {x: 5, y: 5, z: 0}
  2455. second:
  2456. serializedVersion: 2
  2457. m_TileIndex: 202
  2458. m_TileSpriteIndex: 202
  2459. m_TileMatrixIndex: 0
  2460. m_TileColorIndex: 0
  2461. m_TileObjectToInstantiateIndex: 65535
  2462. m_AllTileFlags: 2147483649
  2463. - first: {x: 6, y: 5, z: 0}
  2464. second:
  2465. serializedVersion: 2
  2466. m_TileIndex: 203
  2467. m_TileSpriteIndex: 203
  2468. m_TileMatrixIndex: 0
  2469. m_TileColorIndex: 0
  2470. m_TileObjectToInstantiateIndex: 65535
  2471. m_AllTileFlags: 2147483649
  2472. - first: {x: 7, y: 5, z: 0}
  2473. second:
  2474. serializedVersion: 2
  2475. m_TileIndex: 204
  2476. m_TileSpriteIndex: 204
  2477. m_TileMatrixIndex: 0
  2478. m_TileColorIndex: 0
  2479. m_TileObjectToInstantiateIndex: 65535
  2480. m_AllTileFlags: 2147483649
  2481. - first: {x: 8, y: 5, z: 0}
  2482. second:
  2483. serializedVersion: 2
  2484. m_TileIndex: 205
  2485. m_TileSpriteIndex: 205
  2486. m_TileMatrixIndex: 0
  2487. m_TileColorIndex: 0
  2488. m_TileObjectToInstantiateIndex: 65535
  2489. m_AllTileFlags: 2147483649
  2490. - first: {x: 9, y: 5, z: 0}
  2491. second:
  2492. serializedVersion: 2
  2493. m_TileIndex: 220
  2494. m_TileSpriteIndex: 220
  2495. m_TileMatrixIndex: 0
  2496. m_TileColorIndex: 0
  2497. m_TileObjectToInstantiateIndex: 65535
  2498. m_AllTileFlags: 2147483649
  2499. - first: {x: 10, y: 5, z: 0}
  2500. second:
  2501. serializedVersion: 2
  2502. m_TileIndex: 190
  2503. m_TileSpriteIndex: 190
  2504. m_TileMatrixIndex: 0
  2505. m_TileColorIndex: 0
  2506. m_TileObjectToInstantiateIndex: 65535
  2507. m_AllTileFlags: 2147483649
  2508. - first: {x: 11, y: 5, z: 0}
  2509. second:
  2510. serializedVersion: 2
  2511. m_TileIndex: 195
  2512. m_TileSpriteIndex: 206
  2513. m_TileMatrixIndex: 0
  2514. m_TileColorIndex: 0
  2515. m_TileObjectToInstantiateIndex: 65535
  2516. m_AllTileFlags: 1
  2517. - first: {x: 12, y: 5, z: 0}
  2518. second:
  2519. serializedVersion: 2
  2520. m_TileIndex: 196
  2521. m_TileSpriteIndex: 196
  2522. m_TileMatrixIndex: 0
  2523. m_TileColorIndex: 0
  2524. m_TileObjectToInstantiateIndex: 65535
  2525. m_AllTileFlags: 1
  2526. - first: {x: 13, y: 5, z: 0}
  2527. second:
  2528. serializedVersion: 2
  2529. m_TileIndex: 159
  2530. m_TileSpriteIndex: 195
  2531. m_TileMatrixIndex: 0
  2532. m_TileColorIndex: 0
  2533. m_TileObjectToInstantiateIndex: 65535
  2534. m_AllTileFlags: 2147483649
  2535. - first: {x: 14, y: 5, z: 0}
  2536. second:
  2537. serializedVersion: 2
  2538. m_TileIndex: 160
  2539. m_TileSpriteIndex: 160
  2540. m_TileMatrixIndex: 0
  2541. m_TileColorIndex: 0
  2542. m_TileObjectToInstantiateIndex: 65535
  2543. m_AllTileFlags: 2147483649
  2544. - first: {x: -6, y: 6, z: 0}
  2545. second:
  2546. serializedVersion: 2
  2547. m_TileIndex: 208
  2548. m_TileSpriteIndex: 208
  2549. m_TileMatrixIndex: 0
  2550. m_TileColorIndex: 0
  2551. m_TileObjectToInstantiateIndex: 65535
  2552. m_AllTileFlags: 1
  2553. - first: {x: -5, y: 6, z: 0}
  2554. second:
  2555. serializedVersion: 2
  2556. m_TileIndex: 207
  2557. m_TileSpriteIndex: 207
  2558. m_TileMatrixIndex: 0
  2559. m_TileColorIndex: 0
  2560. m_TileObjectToInstantiateIndex: 65535
  2561. m_AllTileFlags: 2147483649
  2562. - first: {x: -4, y: 6, z: 0}
  2563. second:
  2564. serializedVersion: 2
  2565. m_TileIndex: 198
  2566. m_TileSpriteIndex: 198
  2567. m_TileMatrixIndex: 0
  2568. m_TileColorIndex: 0
  2569. m_TileObjectToInstantiateIndex: 65535
  2570. m_AllTileFlags: 1
  2571. - first: {x: -3, y: 6, z: 0}
  2572. second:
  2573. serializedVersion: 2
  2574. m_TileIndex: 197
  2575. m_TileSpriteIndex: 197
  2576. m_TileMatrixIndex: 0
  2577. m_TileColorIndex: 0
  2578. m_TileObjectToInstantiateIndex: 65535
  2579. m_AllTileFlags: 1
  2580. - first: {x: -2, y: 6, z: 0}
  2581. second:
  2582. serializedVersion: 2
  2583. m_TileIndex: 194
  2584. m_TileSpriteIndex: 194
  2585. m_TileMatrixIndex: 0
  2586. m_TileColorIndex: 0
  2587. m_TileObjectToInstantiateIndex: 65535
  2588. m_AllTileFlags: 2147483649
  2589. - first: {x: 1, y: 6, z: 0}
  2590. second:
  2591. serializedVersion: 2
  2592. m_TileIndex: 191
  2593. m_TileSpriteIndex: 191
  2594. m_TileMatrixIndex: 0
  2595. m_TileColorIndex: 0
  2596. m_TileObjectToInstantiateIndex: 65535
  2597. m_AllTileFlags: 2147483649
  2598. - first: {x: 2, y: 6, z: 0}
  2599. second:
  2600. serializedVersion: 2
  2601. m_TileIndex: 215
  2602. m_TileSpriteIndex: 215
  2603. m_TileMatrixIndex: 0
  2604. m_TileColorIndex: 0
  2605. m_TileObjectToInstantiateIndex: 65535
  2606. m_AllTileFlags: 2147483649
  2607. - first: {x: 3, y: 6, z: 0}
  2608. second:
  2609. serializedVersion: 2
  2610. m_TileIndex: 216
  2611. m_TileSpriteIndex: 216
  2612. m_TileMatrixIndex: 0
  2613. m_TileColorIndex: 0
  2614. m_TileObjectToInstantiateIndex: 65535
  2615. m_AllTileFlags: 1
  2616. - first: {x: 4, y: 6, z: 0}
  2617. second:
  2618. serializedVersion: 2
  2619. m_TileIndex: 217
  2620. m_TileSpriteIndex: 217
  2621. m_TileMatrixIndex: 0
  2622. m_TileColorIndex: 0
  2623. m_TileObjectToInstantiateIndex: 65535
  2624. m_AllTileFlags: 2147483649
  2625. - first: {x: 5, y: 6, z: 0}
  2626. second:
  2627. serializedVersion: 2
  2628. m_TileIndex: 218
  2629. m_TileSpriteIndex: 218
  2630. m_TileMatrixIndex: 0
  2631. m_TileColorIndex: 0
  2632. m_TileObjectToInstantiateIndex: 65535
  2633. m_AllTileFlags: 2147483649
  2634. - first: {x: 6, y: 6, z: 0}
  2635. second:
  2636. serializedVersion: 2
  2637. m_TileIndex: 219
  2638. m_TileSpriteIndex: 219
  2639. m_TileMatrixIndex: 0
  2640. m_TileColorIndex: 0
  2641. m_TileObjectToInstantiateIndex: 65535
  2642. m_AllTileFlags: 2147483649
  2643. - first: {x: 7, y: 6, z: 0}
  2644. second:
  2645. serializedVersion: 2
  2646. m_TileIndex: 220
  2647. m_TileSpriteIndex: 220
  2648. m_TileMatrixIndex: 0
  2649. m_TileColorIndex: 0
  2650. m_TileObjectToInstantiateIndex: 65535
  2651. m_AllTileFlags: 2147483649
  2652. - first: {x: 8, y: 6, z: 0}
  2653. second:
  2654. serializedVersion: 2
  2655. m_TileIndex: 222
  2656. m_TileSpriteIndex: 176
  2657. m_TileMatrixIndex: 0
  2658. m_TileColorIndex: 0
  2659. m_TileObjectToInstantiateIndex: 65535
  2660. m_AllTileFlags: 2147483649
  2661. - first: {x: 9, y: 6, z: 0}
  2662. second:
  2663. serializedVersion: 2
  2664. m_TileIndex: 222
  2665. m_TileSpriteIndex: 176
  2666. m_TileMatrixIndex: 0
  2667. m_TileColorIndex: 0
  2668. m_TileObjectToInstantiateIndex: 65535
  2669. m_AllTileFlags: 2147483649
  2670. - first: {x: 10, y: 6, z: 0}
  2671. second:
  2672. serializedVersion: 2
  2673. m_TileIndex: 221
  2674. m_TileSpriteIndex: 175
  2675. m_TileMatrixIndex: 0
  2676. m_TileColorIndex: 0
  2677. m_TileObjectToInstantiateIndex: 65535
  2678. m_AllTileFlags: 2147483649
  2679. - first: {x: 13, y: 6, z: 0}
  2680. second:
  2681. serializedVersion: 2
  2682. m_TileIndex: 175
  2683. m_TileSpriteIndex: 222
  2684. m_TileMatrixIndex: 0
  2685. m_TileColorIndex: 0
  2686. m_TileObjectToInstantiateIndex: 65535
  2687. m_AllTileFlags: 1
  2688. - first: {x: 14, y: 6, z: 0}
  2689. second:
  2690. serializedVersion: 2
  2691. m_TileIndex: 176
  2692. m_TileSpriteIndex: 221
  2693. m_TileMatrixIndex: 0
  2694. m_TileColorIndex: 0
  2695. m_TileObjectToInstantiateIndex: 65535
  2696. m_AllTileFlags: 1
  2697. - first: {x: 2, y: 7, z: 0}
  2698. second:
  2699. serializedVersion: 2
  2700. m_TileIndex: 231
  2701. m_TileSpriteIndex: 231
  2702. m_TileMatrixIndex: 0
  2703. m_TileColorIndex: 0
  2704. m_TileObjectToInstantiateIndex: 65535
  2705. m_AllTileFlags: 2147483649
  2706. - first: {x: 3, y: 7, z: 0}
  2707. second:
  2708. serializedVersion: 2
  2709. m_TileIndex: 232
  2710. m_TileSpriteIndex: 232
  2711. m_TileMatrixIndex: 0
  2712. m_TileColorIndex: 0
  2713. m_TileObjectToInstantiateIndex: 65535
  2714. m_AllTileFlags: 2147483649
  2715. - first: {x: 4, y: 7, z: 0}
  2716. second:
  2717. serializedVersion: 2
  2718. m_TileIndex: 233
  2719. m_TileSpriteIndex: 233
  2720. m_TileMatrixIndex: 0
  2721. m_TileColorIndex: 0
  2722. m_TileObjectToInstantiateIndex: 65535
  2723. m_AllTileFlags: 2147483649
  2724. - first: {x: 5, y: 7, z: 0}
  2725. second:
  2726. serializedVersion: 2
  2727. m_TileIndex: 234
  2728. m_TileSpriteIndex: 234
  2729. m_TileMatrixIndex: 0
  2730. m_TileColorIndex: 0
  2731. m_TileObjectToInstantiateIndex: 65535
  2732. m_AllTileFlags: 2147483649
  2733. - first: {x: 6, y: 7, z: 0}
  2734. second:
  2735. serializedVersion: 2
  2736. m_TileIndex: 235
  2737. m_TileSpriteIndex: 235
  2738. m_TileMatrixIndex: 0
  2739. m_TileColorIndex: 0
  2740. m_TileObjectToInstantiateIndex: 65535
  2741. m_AllTileFlags: 2147483649
  2742. - first: {x: 7, y: 7, z: 0}
  2743. second:
  2744. serializedVersion: 2
  2745. m_TileIndex: 236
  2746. m_TileSpriteIndex: 236
  2747. m_TileMatrixIndex: 0
  2748. m_TileColorIndex: 0
  2749. m_TileObjectToInstantiateIndex: 65535
  2750. m_AllTileFlags: 2147483649
  2751. - first: {x: 8, y: 7, z: 0}
  2752. second:
  2753. serializedVersion: 2
  2754. m_TileIndex: 237
  2755. m_TileSpriteIndex: 237
  2756. m_TileMatrixIndex: 0
  2757. m_TileColorIndex: 0
  2758. m_TileObjectToInstantiateIndex: 65535
  2759. m_AllTileFlags: 2147483649
  2760. - first: {x: 9, y: 7, z: 0}
  2761. second:
  2762. serializedVersion: 2
  2763. m_TileIndex: 238
  2764. m_TileSpriteIndex: 238
  2765. m_TileMatrixIndex: 0
  2766. m_TileColorIndex: 0
  2767. m_TileObjectToInstantiateIndex: 65535
  2768. m_AllTileFlags: 2147483649
  2769. - first: {x: 2, y: 8, z: 0}
  2770. second:
  2771. serializedVersion: 2
  2772. m_TileIndex: 247
  2773. m_TileSpriteIndex: 247
  2774. m_TileMatrixIndex: 0
  2775. m_TileColorIndex: 0
  2776. m_TileObjectToInstantiateIndex: 65535
  2777. m_AllTileFlags: 1
  2778. - first: {x: 3, y: 8, z: 0}
  2779. second:
  2780. serializedVersion: 2
  2781. m_TileIndex: 248
  2782. m_TileSpriteIndex: 248
  2783. m_TileMatrixIndex: 0
  2784. m_TileColorIndex: 0
  2785. m_TileObjectToInstantiateIndex: 65535
  2786. m_AllTileFlags: 1
  2787. - first: {x: 4, y: 8, z: 0}
  2788. second:
  2789. serializedVersion: 2
  2790. m_TileIndex: 249
  2791. m_TileSpriteIndex: 249
  2792. m_TileMatrixIndex: 0
  2793. m_TileColorIndex: 0
  2794. m_TileObjectToInstantiateIndex: 65535
  2795. m_AllTileFlags: 1
  2796. - first: {x: 5, y: 8, z: 0}
  2797. second:
  2798. serializedVersion: 2
  2799. m_TileIndex: 250
  2800. m_TileSpriteIndex: 250
  2801. m_TileMatrixIndex: 0
  2802. m_TileColorIndex: 0
  2803. m_TileObjectToInstantiateIndex: 65535
  2804. m_AllTileFlags: 1
  2805. - first: {x: 6, y: 8, z: 0}
  2806. second:
  2807. serializedVersion: 2
  2808. m_TileIndex: 251
  2809. m_TileSpriteIndex: 251
  2810. m_TileMatrixIndex: 0
  2811. m_TileColorIndex: 0
  2812. m_TileObjectToInstantiateIndex: 65535
  2813. m_AllTileFlags: 1
  2814. - first: {x: 7, y: 8, z: 0}
  2815. second:
  2816. serializedVersion: 2
  2817. m_TileIndex: 252
  2818. m_TileSpriteIndex: 252
  2819. m_TileMatrixIndex: 0
  2820. m_TileColorIndex: 0
  2821. m_TileObjectToInstantiateIndex: 65535
  2822. m_AllTileFlags: 1
  2823. - first: {x: 8, y: 8, z: 0}
  2824. second:
  2825. serializedVersion: 2
  2826. m_TileIndex: 253
  2827. m_TileSpriteIndex: 253
  2828. m_TileMatrixIndex: 0
  2829. m_TileColorIndex: 0
  2830. m_TileObjectToInstantiateIndex: 65535
  2831. m_AllTileFlags: 1
  2832. - first: {x: 9, y: 8, z: 0}
  2833. second:
  2834. serializedVersion: 2
  2835. m_TileIndex: 254
  2836. m_TileSpriteIndex: 254
  2837. m_TileMatrixIndex: 0
  2838. m_TileColorIndex: 0
  2839. m_TileObjectToInstantiateIndex: 65535
  2840. m_AllTileFlags: 2147483649
  2841. m_AnimatedTiles: {}
  2842. m_TileAssetArray:
  2843. - m_RefCount: 1
  2844. m_Data: {fileID: 11400000, guid: 264f2019776a39c4288bd00cc51e69da, type: 2}
  2845. - m_RefCount: 1
  2846. m_Data: {fileID: 11400000, guid: cd04ae81ed4690a449ccf9abbd72a4d7, type: 2}
  2847. - m_RefCount: 1
  2848. m_Data: {fileID: 11400000, guid: 0d028dd544c9f4946bf87694dffad4f1, type: 2}
  2849. - m_RefCount: 1
  2850. m_Data: {fileID: 11400000, guid: 63653abb4e5a249419c0dae36ffd3baf, type: 2}
  2851. - m_RefCount: 1
  2852. m_Data: {fileID: 11400000, guid: 1044b284748ecaa478a7c2ed840f19d1, type: 2}
  2853. - m_RefCount: 1
  2854. m_Data: {fileID: 11400000, guid: 133648a62a1be854ea7e3967f565e7e9, type: 2}
  2855. - m_RefCount: 1
  2856. m_Data: {fileID: 11400000, guid: 95ff4a404e0f1374493affb223ac33ba, type: 2}
  2857. - m_RefCount: 1
  2858. m_Data: {fileID: 11400000, guid: 84470118d6bcf1646b4a361e007857c3, type: 2}
  2859. - m_RefCount: 1
  2860. m_Data: {fileID: 11400000, guid: b71f5b8dccffe5642bbb142890f97b95, type: 2}
  2861. - m_RefCount: 1
  2862. m_Data: {fileID: 11400000, guid: 24022e2072574254586372994c169b39, type: 2}
  2863. - m_RefCount: 1
  2864. m_Data: {fileID: 11400000, guid: 8f3118307a1dae646af4e7716583ea30, type: 2}
  2865. - m_RefCount: 1
  2866. m_Data: {fileID: 11400000, guid: 47ec5c29a3dca71448a689fedc0113e1, type: 2}
  2867. - m_RefCount: 1
  2868. m_Data: {fileID: 11400000, guid: 579501669c906c44c8bfcc28fa7c4557, type: 2}
  2869. - m_RefCount: 1
  2870. m_Data: {fileID: 11400000, guid: aad508a11bdbd0d488be2ee181f818ec, type: 2}
  2871. - m_RefCount: 1
  2872. m_Data: {fileID: 11400000, guid: 63f73e4ac00a4dc4d91b27c46cb0e9ab, type: 2}
  2873. - m_RefCount: 1
  2874. m_Data: {fileID: 11400000, guid: 2dfcecfaa30a93345b5406acbc625abc, type: 2}
  2875. - m_RefCount: 1
  2876. m_Data: {fileID: 11400000, guid: ea7ed23cc6c698940b611ec9add790e3, type: 2}
  2877. - m_RefCount: 1
  2878. m_Data: {fileID: 11400000, guid: 564560e1b456015449b758f8ff271c68, type: 2}
  2879. - m_RefCount: 1
  2880. m_Data: {fileID: 11400000, guid: bddf70fb0e41690448ad65384c62afa7, type: 2}
  2881. - m_RefCount: 1
  2882. m_Data: {fileID: 11400000, guid: 35952797b99ad9546a76187d0e07677c, type: 2}
  2883. - m_RefCount: 1
  2884. m_Data: {fileID: 11400000, guid: fb2e8813a1be8c640ae9626be3b99d16, type: 2}
  2885. - m_RefCount: 1
  2886. m_Data: {fileID: 11400000, guid: 5dd77a69afaef914f8d5ff9f26c3a0de, type: 2}
  2887. - m_RefCount: 1
  2888. m_Data: {fileID: 11400000, guid: 4076ba28564dcb347ae947cc1b4cc91b, type: 2}
  2889. - m_RefCount: 1
  2890. m_Data: {fileID: 11400000, guid: 556ac52633f1d0642bf9cf2d10ae3fdc, type: 2}
  2891. - m_RefCount: 1
  2892. m_Data: {fileID: 11400000, guid: 7ce6826ee6d2aa2468470743b185d8ca, type: 2}
  2893. - m_RefCount: 1
  2894. m_Data: {fileID: 11400000, guid: c20db68d2a28bb7498e04a2b7a2824ce, type: 2}
  2895. - m_RefCount: 1
  2896. m_Data: {fileID: 11400000, guid: a79ada65ac48b2a4e9971e8cd8d2f49d, type: 2}
  2897. - m_RefCount: 1
  2898. m_Data: {fileID: 11400000, guid: 4083f6975af57eb409e7e5437f877f62, type: 2}
  2899. - m_RefCount: 1
  2900. m_Data: {fileID: 11400000, guid: 5ff9366c2ee564848a84126eb8a2c357, type: 2}
  2901. - m_RefCount: 1
  2902. m_Data: {fileID: 11400000, guid: 215f430de7646eb489cbe78ace03a275, type: 2}
  2903. - m_RefCount: 1
  2904. m_Data: {fileID: 11400000, guid: acdf76ae8a247dc40beb7f53ccbaea94, type: 2}
  2905. - m_RefCount: 1
  2906. m_Data: {fileID: 11400000, guid: 02d238b3a8bba864a927b8e5f2963387, type: 2}
  2907. - m_RefCount: 1
  2908. m_Data: {fileID: 11400000, guid: 39ebf700b4ad2154abd64ab32eefcaa4, type: 2}
  2909. - m_RefCount: 1
  2910. m_Data: {fileID: 11400000, guid: 19170fcaf06beb342bf5c557d957f24b, type: 2}
  2911. - m_RefCount: 1
  2912. m_Data: {fileID: 11400000, guid: 2a4658ecab127e145bfee7fb4871f262, type: 2}
  2913. - m_RefCount: 1
  2914. m_Data: {fileID: 11400000, guid: e10ca6b4b64ae6247ae764d758ef8f9d, type: 2}
  2915. - m_RefCount: 1
  2916. m_Data: {fileID: 11400000, guid: 25ccc6ff2276d4440a32daab24faf038, type: 2}
  2917. - m_RefCount: 1
  2918. m_Data: {fileID: 11400000, guid: 203e64f95a357be4da53e70d43a1184a, type: 2}
  2919. - m_RefCount: 1
  2920. m_Data: {fileID: 11400000, guid: 472d0e13ff3ad444d91b6019738e970b, type: 2}
  2921. - m_RefCount: 1
  2922. m_Data: {fileID: 11400000, guid: 0f961f86926940f4c902825ffa3a4f78, type: 2}
  2923. - m_RefCount: 1
  2924. m_Data: {fileID: 11400000, guid: 4d66c314b08c6f841b7e3c20a2583dc9, type: 2}
  2925. - m_RefCount: 1
  2926. m_Data: {fileID: 11400000, guid: 6f44769651423334e9fd3cccd6810068, type: 2}
  2927. - m_RefCount: 1
  2928. m_Data: {fileID: 11400000, guid: 54e1eb6d9e49dd04fb11956d137f932a, type: 2}
  2929. - m_RefCount: 1
  2930. m_Data: {fileID: 11400000, guid: f345c416c4ada5946a9c22a3dcbb9aae, type: 2}
  2931. - m_RefCount: 1
  2932. m_Data: {fileID: 11400000, guid: ee0024451b863494787eb92cb37147c3, type: 2}
  2933. - m_RefCount: 1
  2934. m_Data: {fileID: 11400000, guid: 992659271c8c2c84bab83593a72f0104, type: 2}
  2935. - m_RefCount: 1
  2936. m_Data: {fileID: 11400000, guid: 0afd7d65055bf1940ba545590211389c, type: 2}
  2937. - m_RefCount: 1
  2938. m_Data: {fileID: 11400000, guid: cd9f932f6ffd53743ad85f83f387c7d5, type: 2}
  2939. - m_RefCount: 1
  2940. m_Data: {fileID: 11400000, guid: 912bca87e128eb8459636b497328a07e, type: 2}
  2941. - m_RefCount: 1
  2942. m_Data: {fileID: 11400000, guid: bea83d01ccbf87f41a691b0fba91eb1b, type: 2}
  2943. - m_RefCount: 1
  2944. m_Data: {fileID: 11400000, guid: bd475076094cd994b98ccf7bcf7c8fec, type: 2}
  2945. - m_RefCount: 1
  2946. m_Data: {fileID: 11400000, guid: 2368bcdce66a1d34e85e19595a3e9380, type: 2}
  2947. - m_RefCount: 1
  2948. m_Data: {fileID: 11400000, guid: 9f4b24803204d104baed8c8795101093, type: 2}
  2949. - m_RefCount: 1
  2950. m_Data: {fileID: 11400000, guid: 9c3f1f07ada0e844baeff094025abb0c, type: 2}
  2951. - m_RefCount: 1
  2952. m_Data: {fileID: 11400000, guid: f5c5bb398ac2af349be5328d7e372ba2, type: 2}
  2953. - m_RefCount: 1
  2954. m_Data: {fileID: 11400000, guid: 11a9d9684cd67124088ee3474cbee171, type: 2}
  2955. - m_RefCount: 1
  2956. m_Data: {fileID: 11400000, guid: 670c3b1c5cd42f841bb24ceeb2d35600, type: 2}
  2957. - m_RefCount: 1
  2958. m_Data: {fileID: 11400000, guid: a4efc49cf9fbcba4994f534c13fde59f, type: 2}
  2959. - m_RefCount: 1
  2960. m_Data: {fileID: 11400000, guid: 6cd364be68a610640a723270eab9bd59, type: 2}
  2961. - m_RefCount: 1
  2962. m_Data: {fileID: 11400000, guid: 07866031e50f0854ab1a2a65b8872051, type: 2}
  2963. - m_RefCount: 1
  2964. m_Data: {fileID: 11400000, guid: 936b1ec7842ee404a9bb641a013c6255, type: 2}
  2965. - m_RefCount: 1
  2966. m_Data: {fileID: 11400000, guid: 4161c30ed1d0499459d2ad14c20af83b, type: 2}
  2967. - m_RefCount: 1
  2968. m_Data: {fileID: 11400000, guid: 7b83526ffe7fd0e4ca626a701cda5daf, type: 2}
  2969. - m_RefCount: 1
  2970. m_Data: {fileID: 11400000, guid: ee47f8babb3efed46b5934b4d2e65b82, type: 2}
  2971. - m_RefCount: 1
  2972. m_Data: {fileID: 11400000, guid: 8edfbcf2c3a989f4f809a6960647de83, type: 2}
  2973. - m_RefCount: 1
  2974. m_Data: {fileID: 11400000, guid: 808d3841906ada24c9ffdad1606b99b3, type: 2}
  2975. - m_RefCount: 1
  2976. m_Data: {fileID: 11400000, guid: 6828ba1f307dbf0449df21cf30d36f42, type: 2}
  2977. - m_RefCount: 1
  2978. m_Data: {fileID: 11400000, guid: b4c6ba221da4bc147a1b0c1b6f14c0f4, type: 2}
  2979. - m_RefCount: 1
  2980. m_Data: {fileID: 11400000, guid: d1865770bfee78144890f3f6139de7c0, type: 2}
  2981. - m_RefCount: 1
  2982. m_Data: {fileID: 11400000, guid: d0a5fe89c3796cb4bbbfe58944e7f93a, type: 2}
  2983. - m_RefCount: 1
  2984. m_Data: {fileID: 11400000, guid: 3d4725bd5df43784c88a76aa61ef8c51, type: 2}
  2985. - m_RefCount: 1
  2986. m_Data: {fileID: 11400000, guid: c4802dcd944231c458e1701fc0c37969, type: 2}
  2987. - m_RefCount: 1
  2988. m_Data: {fileID: 11400000, guid: af92c26641dad2d42adcd6d2a145a01d, type: 2}
  2989. - m_RefCount: 1
  2990. m_Data: {fileID: 11400000, guid: f0c708a1693911d41b1fe07dd49e9f38, type: 2}
  2991. - m_RefCount: 1
  2992. m_Data: {fileID: 11400000, guid: d96f6d28c5272b64d91c956bb5046962, type: 2}
  2993. - m_RefCount: 1
  2994. m_Data: {fileID: 11400000, guid: d6531e157b8becc4db7ec21176d11475, type: 2}
  2995. - m_RefCount: 1
  2996. m_Data: {fileID: 11400000, guid: bfe988fc8bde4184682bdd48e320eea3, type: 2}
  2997. - m_RefCount: 1
  2998. m_Data: {fileID: 11400000, guid: d1c2fdb9d37eab94c9988b184cec80c6, type: 2}
  2999. - m_RefCount: 1
  3000. m_Data: {fileID: 11400000, guid: 0079bce2f7db2f84786711d72be9aecb, type: 2}
  3001. - m_RefCount: 1
  3002. m_Data: {fileID: 11400000, guid: 0507625efbfc1944c8187c70dd9b9ef8, type: 2}
  3003. - m_RefCount: 1
  3004. m_Data: {fileID: 11400000, guid: 0b1b4dd40dacb1b4383b31a96ba3d073, type: 2}
  3005. - m_RefCount: 1
  3006. m_Data: {fileID: 11400000, guid: 7900aadc2451bc34fa0387678195b578, type: 2}
  3007. - m_RefCount: 1
  3008. m_Data: {fileID: 11400000, guid: 5b44e292fdac8b7459d27626c8dd10a7, type: 2}
  3009. - m_RefCount: 1
  3010. m_Data: {fileID: 11400000, guid: c08956850f2c1c948bd96d333bec09fc, type: 2}
  3011. - m_RefCount: 1
  3012. m_Data: {fileID: 11400000, guid: bf532c5092e2d6f4bb003e854cf8cdd2, type: 2}
  3013. - m_RefCount: 1
  3014. m_Data: {fileID: 11400000, guid: 27f88d8dda87b5041a718558068dd7d6, type: 2}
  3015. - m_RefCount: 1
  3016. m_Data: {fileID: 11400000, guid: bee648cfdbc125e4dab7408fb47673e2, type: 2}
  3017. - m_RefCount: 1
  3018. m_Data: {fileID: 11400000, guid: cffc1ad861d21da4e9d34249b6620877, type: 2}
  3019. - m_RefCount: 1
  3020. m_Data: {fileID: 11400000, guid: 33bbd2ff2305b3e4195cd1ae1e220b0b, type: 2}
  3021. - m_RefCount: 1
  3022. m_Data: {fileID: 11400000, guid: df01ae65fda2bb544b719b4baea990a4, type: 2}
  3023. - m_RefCount: 1
  3024. m_Data: {fileID: 11400000, guid: 26d5bb131032b414a9a28de35c25db0d, type: 2}
  3025. - m_RefCount: 1
  3026. m_Data: {fileID: 11400000, guid: 49aa5736e389dcd4185511644a9e9523, type: 2}
  3027. - m_RefCount: 1
  3028. m_Data: {fileID: 11400000, guid: e48feae73a9de154a8f72ebd2c0c1b84, type: 2}
  3029. - m_RefCount: 1
  3030. m_Data: {fileID: 11400000, guid: e3fb9d4cd1ffedd4d944e319c8492d79, type: 2}
  3031. - m_RefCount: 1
  3032. m_Data: {fileID: 11400000, guid: 753b97dfdf80fa848bb9a0e2d93c9060, type: 2}
  3033. - m_RefCount: 1
  3034. m_Data: {fileID: 11400000, guid: 90b266d480ce5e44b902613d0e2a1725, type: 2}
  3035. - m_RefCount: 1
  3036. m_Data: {fileID: 11400000, guid: db79711bf66a47644a62aeebe2a73949, type: 2}
  3037. - m_RefCount: 1
  3038. m_Data: {fileID: 11400000, guid: 9b21c5a73f6efed428d3ab218c88c690, type: 2}
  3039. - m_RefCount: 1
  3040. m_Data: {fileID: 11400000, guid: def0c3a49f9ad4e40aba25b1c830fcdb, type: 2}
  3041. - m_RefCount: 1
  3042. m_Data: {fileID: 11400000, guid: cb26dcb5e1e942e44853605951549c47, type: 2}
  3043. - m_RefCount: 1
  3044. m_Data: {fileID: 11400000, guid: f2507169caefa59449621862122c5eb0, type: 2}
  3045. - m_RefCount: 1
  3046. m_Data: {fileID: 11400000, guid: e4c4e8a606f9d31488e5f7baf058e7bb, type: 2}
  3047. - m_RefCount: 1
  3048. m_Data: {fileID: 11400000, guid: d481ba45e25f0934eb9f74232f5270a9, type: 2}
  3049. - m_RefCount: 1
  3050. m_Data: {fileID: 11400000, guid: 430527af15615514d87b3f3eb469c9d0, type: 2}
  3051. - m_RefCount: 1
  3052. m_Data: {fileID: 11400000, guid: 2a937f1c82c8ffa418dc5b757777f46b, type: 2}
  3053. - m_RefCount: 1
  3054. m_Data: {fileID: 11400000, guid: 0431a8962fa137f46ac7d1b185e44ae5, type: 2}
  3055. - m_RefCount: 2
  3056. m_Data: {fileID: 11400000, guid: 8336f00855401944c91accb9a36738f1, type: 2}
  3057. - m_RefCount: 0
  3058. m_Data: {fileID: 0}
  3059. - m_RefCount: 1
  3060. m_Data: {fileID: 11400000, guid: e627e660d65eb1243b89b9f14da03d7a, type: 2}
  3061. - m_RefCount: 1
  3062. m_Data: {fileID: 11400000, guid: 3992fa106393365498e5c0fc61f5d25f, type: 2}
  3063. - m_RefCount: 1
  3064. m_Data: {fileID: 11400000, guid: b1de4c8a73c45584abdb5d1c3228e739, type: 2}
  3065. - m_RefCount: 1
  3066. m_Data: {fileID: 11400000, guid: b12cc220b8fe6e344b25989c9e40a946, type: 2}
  3067. - m_RefCount: 1
  3068. m_Data: {fileID: 11400000, guid: 83791502b0879c44da80b46bc5b66ea7, type: 2}
  3069. - m_RefCount: 1
  3070. m_Data: {fileID: 11400000, guid: fdd91429e9b0c5144a70c84ee6e3234d, type: 2}
  3071. - m_RefCount: 1
  3072. m_Data: {fileID: 11400000, guid: 5205c06e5d3eda742b07633ab9864578, type: 2}
  3073. - m_RefCount: 1
  3074. m_Data: {fileID: 11400000, guid: b030069301c282f4c848ed33b6aa24dc, type: 2}
  3075. - m_RefCount: 1
  3076. m_Data: {fileID: 11400000, guid: cb55bc022bdea8b489342f48a6aba368, type: 2}
  3077. - m_RefCount: 1
  3078. m_Data: {fileID: 11400000, guid: c9b505f2ba8e417439efefee70adc5ce, type: 2}
  3079. - m_RefCount: 1
  3080. m_Data: {fileID: 11400000, guid: 4a316d98b9494b548bd5673671b2c90d, type: 2}
  3081. - m_RefCount: 1
  3082. m_Data: {fileID: 11400000, guid: ad01bc45c470b824e8ec187231be8499, type: 2}
  3083. - m_RefCount: 1
  3084. m_Data: {fileID: 11400000, guid: 4f24ed007f1eb8c4eaa55bc18d388754, type: 2}
  3085. - m_RefCount: 1
  3086. m_Data: {fileID: 11400000, guid: c28c1692a7ed5bc42a9e6ff644103427, type: 2}
  3087. - m_RefCount: 1
  3088. m_Data: {fileID: 11400000, guid: c6ab9764540dbc8428c8ef82795940c3, type: 2}
  3089. - m_RefCount: 0
  3090. m_Data: {fileID: 0}
  3091. - m_RefCount: 1
  3092. m_Data: {fileID: 11400000, guid: 97e4d321bdfdcd749822930f68813c92, type: 2}
  3093. - m_RefCount: 1
  3094. m_Data: {fileID: 11400000, guid: 3dcfd25d665a283438fddf30ce9674a1, type: 2}
  3095. - m_RefCount: 1
  3096. m_Data: {fileID: 11400000, guid: 81bb618df0e85934084554f770d75bda, type: 2}
  3097. - m_RefCount: 1
  3098. m_Data: {fileID: 11400000, guid: 6537a81f0b09e4a4fa9d669560f42230, type: 2}
  3099. - m_RefCount: 1
  3100. m_Data: {fileID: 11400000, guid: 1545f815228bc174b87692366b40481c, type: 2}
  3101. - m_RefCount: 1
  3102. m_Data: {fileID: 11400000, guid: 55db33df8d6b75b48be6eed6a5a06300, type: 2}
  3103. - m_RefCount: 1
  3104. m_Data: {fileID: 11400000, guid: 9dd743f6efd942948a476c04ccd1eeab, type: 2}
  3105. - m_RefCount: 1
  3106. m_Data: {fileID: 11400000, guid: 9512df69ebe6e03498f7ffd6bac25173, type: 2}
  3107. - m_RefCount: 1
  3108. m_Data: {fileID: 11400000, guid: bfcd35d31c7d4e847bc493d418477210, type: 2}
  3109. - m_RefCount: 1
  3110. m_Data: {fileID: 11400000, guid: 5afcbbc00f49cf349b6400259bb68742, type: 2}
  3111. - m_RefCount: 1
  3112. m_Data: {fileID: 11400000, guid: c91e65ff32df4df4382ca92d79faa69e, type: 2}
  3113. - m_RefCount: 1
  3114. m_Data: {fileID: 11400000, guid: 0e0c8454b9273c946912c10968c0fece, type: 2}
  3115. - m_RefCount: 1
  3116. m_Data: {fileID: 11400000, guid: d0dd439b296f38b41b1341210007c18f, type: 2}
  3117. - m_RefCount: 1
  3118. m_Data: {fileID: 11400000, guid: 6c3bee314930cef42a2d81023882286a, type: 2}
  3119. - m_RefCount: 1
  3120. m_Data: {fileID: 11400000, guid: 316834c4d144cbc4c88c8202683dd706, type: 2}
  3121. - m_RefCount: 0
  3122. m_Data: {fileID: 0}
  3123. - m_RefCount: 0
  3124. m_Data: {fileID: 0}
  3125. - m_RefCount: 0
  3126. m_Data: {fileID: 0}
  3127. - m_RefCount: 0
  3128. m_Data: {fileID: 0}
  3129. - m_RefCount: 1
  3130. m_Data: {fileID: 11400000, guid: bbb84ca876d066a44a97f92dbc4c6ae6, type: 2}
  3131. - m_RefCount: 1
  3132. m_Data: {fileID: 11400000, guid: afff464b43a0569428119911a62926be, type: 2}
  3133. - m_RefCount: 1
  3134. m_Data: {fileID: 11400000, guid: fdb237c3f34585b4b8f5f27ee3681235, type: 2}
  3135. - m_RefCount: 1
  3136. m_Data: {fileID: 11400000, guid: c8de73281dc91cb4391690b0ce6a144f, type: 2}
  3137. - m_RefCount: 1
  3138. m_Data: {fileID: 11400000, guid: a347a625d5fa83849b1643f829b3da7d, type: 2}
  3139. - m_RefCount: 0
  3140. m_Data: {fileID: 0}
  3141. - m_RefCount: 1
  3142. m_Data: {fileID: 11400000, guid: a6b8055fac8fa95418905ab36e089185, type: 2}
  3143. - m_RefCount: 1
  3144. m_Data: {fileID: 11400000, guid: 906e5391725e5bc47b98aa13f9f5b137, type: 2}
  3145. - m_RefCount: 1
  3146. m_Data: {fileID: 11400000, guid: f499793ac76b59948bd16ce52a1be58d, type: 2}
  3147. - m_RefCount: 1
  3148. m_Data: {fileID: 11400000, guid: e9e782004ede0dc47b25f36b95626cda, type: 2}
  3149. - m_RefCount: 1
  3150. m_Data: {fileID: 11400000, guid: 2059c73c23f2d3046acd2a02e98b12f0, type: 2}
  3151. - m_RefCount: 0
  3152. m_Data: {fileID: 0}
  3153. - m_RefCount: 0
  3154. m_Data: {fileID: 0}
  3155. - m_RefCount: 0
  3156. m_Data: {fileID: 0}
  3157. - m_RefCount: 0
  3158. m_Data: {fileID: 0}
  3159. - m_RefCount: 0
  3160. m_Data: {fileID: 0}
  3161. - m_RefCount: 1
  3162. m_Data: {fileID: 11400000, guid: 7fa68755d5bc403478abd8c4efb6b879, type: 2}
  3163. - m_RefCount: 1
  3164. m_Data: {fileID: 11400000, guid: ef6acdd95b3e91b4795e08e75af8c088, type: 2}
  3165. - m_RefCount: 0
  3166. m_Data: {fileID: 0}
  3167. - m_RefCount: 0
  3168. m_Data: {fileID: 0}
  3169. - m_RefCount: 1
  3170. m_Data: {fileID: 11400000, guid: eea2fddd7a2162a41bd4e43afbf8da0b, type: 2}
  3171. - m_RefCount: 2
  3172. m_Data: {fileID: 11400000, guid: 23c1881817e4cd047aab44254164f199, type: 2}
  3173. - m_RefCount: 1
  3174. m_Data: {fileID: 11400000, guid: e1e9f19a69a0a384a87e282e42f6f4c1, type: 2}
  3175. - m_RefCount: 2
  3176. m_Data: {fileID: 11400000, guid: 6f22bb5867e26064fad05cbe3d0bdb8c, type: 2}
  3177. - m_RefCount: 1
  3178. m_Data: {fileID: 11400000, guid: 248646c89a8cf0440a3fe10c4d4acc49, type: 2}
  3179. - m_RefCount: 1
  3180. m_Data: {fileID: 11400000, guid: bb41baad78133c24dab7079464a8a9f0, type: 2}
  3181. - m_RefCount: 1
  3182. m_Data: {fileID: 11400000, guid: b439de98b18b55749a5c91a3ae2a1950, type: 2}
  3183. - m_RefCount: 1
  3184. m_Data: {fileID: 11400000, guid: 6bc48ceaeea97f742a09c3615a8eda29, type: 2}
  3185. - m_RefCount: 1
  3186. m_Data: {fileID: 11400000, guid: c263026dc4b4a374baff11b9b4271120, type: 2}
  3187. - m_RefCount: 1
  3188. m_Data: {fileID: 11400000, guid: 114ea4a92f00e564ebb9fcae2f3c716a, type: 2}
  3189. - m_RefCount: 2
  3190. m_Data: {fileID: 11400000, guid: ef5cf6ed1da069f4b8eb872284e28007, type: 2}
  3191. - m_RefCount: 2
  3192. m_Data: {fileID: 11400000, guid: 9c5dcb650110e3e4d96f17d74c286ef5, type: 2}
  3193. - m_RefCount: 1
  3194. m_Data: {fileID: 11400000, guid: d95fed27789b7f4419d90d5d09448647, type: 2}
  3195. - m_RefCount: 1
  3196. m_Data: {fileID: 11400000, guid: 13e36d5fd69c5fc46a29cd319a88719f, type: 2}
  3197. - m_RefCount: 2
  3198. m_Data: {fileID: 11400000, guid: 121479c4f9a405e4dbeed0d47435bc8e, type: 2}
  3199. - m_RefCount: 2
  3200. m_Data: {fileID: 11400000, guid: 831e14251a4968b42b55702811579b10, type: 2}
  3201. - m_RefCount: 1
  3202. m_Data: {fileID: 11400000, guid: 50e03a528e6d51f4fa83260fbb2d447e, type: 2}
  3203. - m_RefCount: 1
  3204. m_Data: {fileID: 11400000, guid: e1e5cae4a091a83419eda147ba3bb5d2, type: 2}
  3205. - m_RefCount: 1
  3206. m_Data: {fileID: 11400000, guid: b6d5ea0bc61855d4886e59b3b310003c, type: 2}
  3207. - m_RefCount: 2
  3208. m_Data: {fileID: 11400000, guid: 47dc37224202a87448c41764e3a75fdf, type: 2}
  3209. - m_RefCount: 2
  3210. m_Data: {fileID: 11400000, guid: 5e50e082cee58034fbccf6eee0382db7, type: 2}
  3211. - m_RefCount: 1
  3212. m_Data: {fileID: 11400000, guid: 95e502a70a2a0ed4293137d0d014ba82, type: 2}
  3213. - m_RefCount: 2
  3214. m_Data: {fileID: 11400000, guid: b517508b3dd77d547a6ddc8b71641c1f, type: 2}
  3215. - m_RefCount: 0
  3216. m_Data: {fileID: 0}
  3217. - m_RefCount: 1
  3218. m_Data: {fileID: 11400000, guid: 934a69b1671506440b1bcc5cacc0bb59, type: 2}
  3219. - m_RefCount: 1
  3220. m_Data: {fileID: 11400000, guid: f0ecd3d4228f6174db9d31714aad512b, type: 2}
  3221. - m_RefCount: 0
  3222. m_Data: {fileID: 0}
  3223. - m_RefCount: 2
  3224. m_Data: {fileID: 11400000, guid: 5334637dcb5ef3345bc324907b9a6ed7, type: 2}
  3225. - m_RefCount: 1
  3226. m_Data: {fileID: 11400000, guid: 95ecad811a5f6f246a3cf8ac95eecd68, type: 2}
  3227. - m_RefCount: 1
  3228. m_Data: {fileID: 11400000, guid: 644a0e069c1a9c14bb4b8adeccedcb91, type: 2}
  3229. - m_RefCount: 0
  3230. m_Data: {fileID: 0}
  3231. - m_RefCount: 1
  3232. m_Data: {fileID: 11400000, guid: 59f73a2f382e66b49bb41386828f2af4, type: 2}
  3233. - m_RefCount: 1
  3234. m_Data: {fileID: 11400000, guid: ca5f073edcdc8fe49afb343c607a8c65, type: 2}
  3235. - m_RefCount: 1
  3236. m_Data: {fileID: 11400000, guid: 3b9228a15add7b9488986dfb3d3ad974, type: 2}
  3237. - m_RefCount: 1
  3238. m_Data: {fileID: 11400000, guid: f79154a74c589d6428b9baadda8ebc86, type: 2}
  3239. - m_RefCount: 1
  3240. m_Data: {fileID: 11400000, guid: bb986626095074541800f82ee19c167c, type: 2}
  3241. - m_RefCount: 1
  3242. m_Data: {fileID: 11400000, guid: c4807f61fe11ec144b96653aad3f529f, type: 2}
  3243. - m_RefCount: 1
  3244. m_Data: {fileID: 11400000, guid: 237771f5913eb0e478af25e6e097a11c, type: 2}
  3245. - m_RefCount: 1
  3246. m_Data: {fileID: 11400000, guid: e3a7f19c9c3702242bedba3ae5f014e9, type: 2}
  3247. - m_RefCount: 1
  3248. m_Data: {fileID: 11400000, guid: 0256be55fc571834da1be1e2c9ac47fd, type: 2}
  3249. - m_RefCount: 2
  3250. m_Data: {fileID: 11400000, guid: 4a69a1db46ffcbc40ab3077209eb7797, type: 2}
  3251. - m_RefCount: 1
  3252. m_Data: {fileID: 11400000, guid: 95d3ed64d268122448940cf7c3403758, type: 2}
  3253. - m_RefCount: 1
  3254. m_Data: {fileID: 11400000, guid: 3894bc2d5d7c37c4e933450c3c9b813c, type: 2}
  3255. - m_RefCount: 0
  3256. m_Data: {fileID: 0}
  3257. - m_RefCount: 1
  3258. m_Data: {fileID: 11400000, guid: dfa713baf00d14647b2a5cd4ca6dbcf6, type: 2}
  3259. - m_RefCount: 1
  3260. m_Data: {fileID: 11400000, guid: 128cc8e463fc90d438f4559e7114f668, type: 2}
  3261. - m_RefCount: 1
  3262. m_Data: {fileID: 11400000, guid: 4fcc0bbd2c43a324e9be162950cadb8b, type: 2}
  3263. - m_RefCount: 1
  3264. m_Data: {fileID: 11400000, guid: 7337c6a361c17324f86701ba7bfd65fa, type: 2}
  3265. - m_RefCount: 1
  3266. m_Data: {fileID: 11400000, guid: ede1d6db2d7152b4eb850d898c81925f, type: 2}
  3267. - m_RefCount: 1
  3268. m_Data: {fileID: 11400000, guid: 4523e179dfccd284790c7d7cb8c2d2cd, type: 2}
  3269. - m_RefCount: 1
  3270. m_Data: {fileID: 11400000, guid: 011030486a4970148a90d5ef5c88e25f, type: 2}
  3271. - m_RefCount: 1
  3272. m_Data: {fileID: 11400000, guid: 43e3c69a8232e2449943f74a5563123b, type: 2}
  3273. - m_RefCount: 1
  3274. m_Data: {fileID: 11400000, guid: 7761930a95e50f44ca957bdc1a9cb8be, type: 2}
  3275. - m_RefCount: 1
  3276. m_Data: {fileID: 11400000, guid: b42d85d1767182a4a9026ab0d5582743, type: 2}
  3277. - m_RefCount: 1
  3278. m_Data: {fileID: 11400000, guid: 12f3caf389036994abaf40b447f7fbce, type: 2}
  3279. - m_RefCount: 1
  3280. m_Data: {fileID: 11400000, guid: 6937c2ac8ecae704e821f2bd57fadc95, type: 2}
  3281. - m_RefCount: 2
  3282. m_Data: {fileID: 11400000, guid: d42eee59dbb09744aa6211000248e1b0, type: 2}
  3283. - m_RefCount: 2
  3284. m_Data: {fileID: 11400000, guid: 26df2831e02dd784fb31e915221f7baf, type: 2}
  3285. - m_RefCount: 1
  3286. m_Data: {fileID: 11400000, guid: dbd845317552c7d4fa1ad5d9d57efc51, type: 2}
  3287. - m_RefCount: 2
  3288. m_Data: {fileID: 11400000, guid: 5aa15d08f8bbfaf4e974540cb304f3e9, type: 2}
  3289. - m_RefCount: 1
  3290. m_Data: {fileID: 11400000, guid: 3b05f89b623d32547a1ea67fe19f2579, type: 2}
  3291. - m_RefCount: 1
  3292. m_Data: {fileID: 11400000, guid: 9b7d0686623317246b3a8c6e97013b6b, type: 2}
  3293. - m_RefCount: 1
  3294. m_Data: {fileID: 11400000, guid: 3809fdbb5fc567e45b7278cb2918ab90, type: 2}
  3295. - m_RefCount: 1
  3296. m_Data: {fileID: 11400000, guid: 844f6b44dd258c440b7c3da2d6cdea68, type: 2}
  3297. - m_RefCount: 1
  3298. m_Data: {fileID: 11400000, guid: 9d9a907480d7ede4c892cf358b45aad1, type: 2}
  3299. - m_RefCount: 1
  3300. m_Data: {fileID: 11400000, guid: 695f42514437b814c8f0402b9837f085, type: 2}
  3301. - m_RefCount: 1
  3302. m_Data: {fileID: 11400000, guid: ca54b8448ad055b44a789d64e4e54fc0, type: 2}
  3303. - m_RefCount: 1
  3304. m_Data: {fileID: 11400000, guid: 937df8706017c6346831d0aae9a29cc2, type: 2}
  3305. - m_RefCount: 1
  3306. m_Data: {fileID: 11400000, guid: 028ca7044e953d04ab7043ce56f3cb88, type: 2}
  3307. - m_RefCount: 1
  3308. m_Data: {fileID: 11400000, guid: b4b2b499f0b285b418e55dd6b07787f5, type: 2}
  3309. - m_RefCount: 1
  3310. m_Data: {fileID: 11400000, guid: 52a09e7936ed3b84da2b6d6056b2c2d7, type: 2}
  3311. - m_RefCount: 1
  3312. m_Data: {fileID: 11400000, guid: 55560339e82b85640883c3e22ec2340a, type: 2}
  3313. - m_RefCount: 1
  3314. m_Data: {fileID: 11400000, guid: ba0f65557312175408107a802b7c20a9, type: 2}
  3315. - m_RefCount: 1
  3316. m_Data: {fileID: 11400000, guid: 75d92c6f3b98e244aa53333caa9f6f0c, type: 2}
  3317. - m_RefCount: 1
  3318. m_Data: {fileID: 11400000, guid: e1690eec13f69fb45930c906e93992e3, type: 2}
  3319. - m_RefCount: 2
  3320. m_Data: {fileID: 11400000, guid: 2fc080ba7e4dd874b8c494a0d418d500, type: 2}
  3321. - m_RefCount: 1
  3322. m_Data: {fileID: 11400000, guid: 4be63f773bd262e4e93efbd1fa6de265, type: 2}
  3323. - m_RefCount: 1
  3324. m_Data: {fileID: 11400000, guid: e54698950b8c78141b8b761f43afc0b8, type: 2}
  3325. - m_RefCount: 1
  3326. m_Data: {fileID: 11400000, guid: 864c5328408b21647bdcd7be5df595c7, type: 2}
  3327. - m_RefCount: 1
  3328. m_Data: {fileID: 11400000, guid: 1ab79507de8eeac49ada3012afe9fea1, type: 2}
  3329. - m_RefCount: 1
  3330. m_Data: {fileID: 11400000, guid: 5f964b367cd990146bdce0384d618338, type: 2}
  3331. - m_RefCount: 1
  3332. m_Data: {fileID: 11400000, guid: 408ddc1c2a6aa3a4ca104e65c5de4ab6, type: 2}
  3333. - m_RefCount: 1
  3334. m_Data: {fileID: 11400000, guid: 0aa8fe872d716d140a7930e3b7652943, type: 2}
  3335. - m_RefCount: 1
  3336. m_Data: {fileID: 11400000, guid: 2f6527dafd123864b89988ae5f87f3b5, type: 2}
  3337. - m_RefCount: 1
  3338. m_Data: {fileID: 11400000, guid: 41297441f2d5b0342ba97ba4ebe87437, type: 2}
  3339. - m_RefCount: 1
  3340. m_Data: {fileID: 11400000, guid: 6a952b728482e2545a6a1300408200cb, type: 2}
  3341. - m_RefCount: 1
  3342. m_Data: {fileID: 11400000, guid: f6ad73a5e5cbdbe4a9b2ec0c1c29bd32, type: 2}
  3343. - m_RefCount: 1
  3344. m_Data: {fileID: 11400000, guid: d89db745927860f499ed316ea6e62b65, type: 2}
  3345. - m_RefCount: 1
  3346. m_Data: {fileID: 11400000, guid: 8a967e097417f7944903eb9360318fba, type: 2}
  3347. - m_RefCount: 1
  3348. m_Data: {fileID: 11400000, guid: 747e5ae9f6f1df047af45a3ca7f587f3, type: 2}
  3349. - m_RefCount: 1
  3350. m_Data: {fileID: 11400000, guid: b2d9a9ef829b74046b538b6720be75c5, type: 2}
  3351. - m_RefCount: 1
  3352. m_Data: {fileID: 11400000, guid: b5e81bcb762881b4b9a08ef910f8881d, type: 2}
  3353. m_TileSpriteArray:
  3354. - m_RefCount: 0
  3355. m_Data: {fileID: 0}
  3356. - m_RefCount: 0
  3357. m_Data: {fileID: 0}
  3358. - m_RefCount: 0
  3359. m_Data: {fileID: 0}
  3360. - m_RefCount: 0
  3361. m_Data: {fileID: 0}
  3362. - m_RefCount: 0
  3363. m_Data: {fileID: 0}
  3364. - m_RefCount: 0
  3365. m_Data: {fileID: 0}
  3366. - m_RefCount: 0
  3367. m_Data: {fileID: 0}
  3368. - m_RefCount: 0
  3369. m_Data: {fileID: 0}
  3370. - m_RefCount: 0
  3371. m_Data: {fileID: 0}
  3372. - m_RefCount: 0
  3373. m_Data: {fileID: 0}
  3374. - m_RefCount: 0
  3375. m_Data: {fileID: 0}
  3376. - m_RefCount: 0
  3377. m_Data: {fileID: 0}
  3378. - m_RefCount: 0
  3379. m_Data: {fileID: 0}
  3380. - m_RefCount: 0
  3381. m_Data: {fileID: 0}
  3382. - m_RefCount: 0
  3383. m_Data: {fileID: 0}
  3384. - m_RefCount: 0
  3385. m_Data: {fileID: 0}
  3386. - m_RefCount: 0
  3387. m_Data: {fileID: 0}
  3388. - m_RefCount: 0
  3389. m_Data: {fileID: 0}
  3390. - m_RefCount: 1
  3391. m_Data: {fileID: 21300450, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3392. - m_RefCount: 1
  3393. m_Data: {fileID: 21300452, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3394. - m_RefCount: 1
  3395. m_Data: {fileID: 21300454, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3396. - m_RefCount: 1
  3397. m_Data: {fileID: 21300456, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3398. - m_RefCount: 1
  3399. m_Data: {fileID: 21300448, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3400. - m_RefCount: 1
  3401. m_Data: {fileID: 21300460, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3402. - m_RefCount: 1
  3403. m_Data: {fileID: 21300462, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3404. - m_RefCount: 1
  3405. m_Data: {fileID: 21300464, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3406. - m_RefCount: 1
  3407. m_Data: {fileID: 21300466, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3408. - m_RefCount: 1
  3409. m_Data: {fileID: 21300468, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3410. - m_RefCount: 1
  3411. m_Data: {fileID: 21300470, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3412. - m_RefCount: 1
  3413. m_Data: {fileID: 21300472, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3414. - m_RefCount: 1
  3415. m_Data: {fileID: 21300474, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3416. - m_RefCount: 1
  3417. m_Data: {fileID: 21300476, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3418. - m_RefCount: 1
  3419. m_Data: {fileID: 21300414, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3420. - m_RefCount: 1
  3421. m_Data: {fileID: 21300416, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3422. - m_RefCount: 1
  3423. m_Data: {fileID: 21300418, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3424. - m_RefCount: 1
  3425. m_Data: {fileID: 21300420, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3426. - m_RefCount: 1
  3427. m_Data: {fileID: 21300422, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3428. - m_RefCount: 1
  3429. m_Data: {fileID: 21300424, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3430. - m_RefCount: 1
  3431. m_Data: {fileID: 21300426, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3432. - m_RefCount: 1
  3433. m_Data: {fileID: 21300428, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3434. - m_RefCount: 1
  3435. m_Data: {fileID: 21300430, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3436. - m_RefCount: 1
  3437. m_Data: {fileID: 21300446, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3438. - m_RefCount: 1
  3439. m_Data: {fileID: 21300508, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3440. - m_RefCount: 1
  3441. m_Data: {fileID: 21300436, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3442. - m_RefCount: 1
  3443. m_Data: {fileID: 21300438, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3444. - m_RefCount: 1
  3445. m_Data: {fileID: 21300440, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3446. - m_RefCount: 1
  3447. m_Data: {fileID: 21300442, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3448. - m_RefCount: 1
  3449. m_Data: {fileID: 21300444, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3450. - m_RefCount: 1
  3451. m_Data: {fileID: 21300382, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3452. - m_RefCount: 1
  3453. m_Data: {fileID: 21300384, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3454. - m_RefCount: 1
  3455. m_Data: {fileID: 21300386, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3456. - m_RefCount: 1
  3457. m_Data: {fileID: 21300388, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3458. - m_RefCount: 1
  3459. m_Data: {fileID: 21300390, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3460. - m_RefCount: 1
  3461. m_Data: {fileID: 21300392, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3462. - m_RefCount: 1
  3463. m_Data: {fileID: 21300394, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3464. - m_RefCount: 1
  3465. m_Data: {fileID: 21300396, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3466. - m_RefCount: 1
  3467. m_Data: {fileID: 21300398, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3468. - m_RefCount: 1
  3469. m_Data: {fileID: 21300400, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3470. - m_RefCount: 1
  3471. m_Data: {fileID: 21300402, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3472. - m_RefCount: 1
  3473. m_Data: {fileID: 21300458, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3474. - m_RefCount: 1
  3475. m_Data: {fileID: 21300406, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3476. - m_RefCount: 1
  3477. m_Data: {fileID: 21300408, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3478. - m_RefCount: 1
  3479. m_Data: {fileID: 21300410, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3480. - m_RefCount: 1
  3481. m_Data: {fileID: 21300412, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3482. - m_RefCount: 1
  3483. m_Data: {fileID: 21300352, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3484. - m_RefCount: 1
  3485. m_Data: {fileID: 21300354, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3486. - m_RefCount: 1
  3487. m_Data: {fileID: 21300356, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3488. - m_RefCount: 1
  3489. m_Data: {fileID: 21300358, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3490. - m_RefCount: 1
  3491. m_Data: {fileID: 21300360, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3492. - m_RefCount: 1
  3493. m_Data: {fileID: 21300362, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3494. - m_RefCount: 1
  3495. m_Data: {fileID: 21300364, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3496. - m_RefCount: 1
  3497. m_Data: {fileID: 21300366, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3498. - m_RefCount: 1
  3499. m_Data: {fileID: 21300368, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3500. - m_RefCount: 1
  3501. m_Data: {fileID: 21300370, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3502. - m_RefCount: 1
  3503. m_Data: {fileID: 21300432, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3504. - m_RefCount: 1
  3505. m_Data: {fileID: 21300434, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3506. - m_RefCount: 1
  3507. m_Data: {fileID: 21300376, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3508. - m_RefCount: 1
  3509. m_Data: {fileID: 21300378, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3510. - m_RefCount: 1
  3511. m_Data: {fileID: 21300380, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3512. - m_RefCount: 1
  3513. m_Data: {fileID: 21300320, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3514. - m_RefCount: 1
  3515. m_Data: {fileID: 21300322, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3516. - m_RefCount: 1
  3517. m_Data: {fileID: 21300324, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3518. - m_RefCount: 1
  3519. m_Data: {fileID: 21300326, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3520. - m_RefCount: 1
  3521. m_Data: {fileID: 21300328, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3522. - m_RefCount: 1
  3523. m_Data: {fileID: 21300330, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3524. - m_RefCount: 1
  3525. m_Data: {fileID: 21300332, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3526. - m_RefCount: 1
  3527. m_Data: {fileID: 21300334, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3528. - m_RefCount: 1
  3529. m_Data: {fileID: 21300336, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3530. - m_RefCount: 1
  3531. m_Data: {fileID: 21300338, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3532. - m_RefCount: 1
  3533. m_Data: {fileID: 21300340, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3534. - m_RefCount: 1
  3535. m_Data: {fileID: 21300404, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3536. - m_RefCount: 1
  3537. m_Data: {fileID: 21300372, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3538. - m_RefCount: 1
  3539. m_Data: {fileID: 21300374, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3540. - m_RefCount: 1
  3541. m_Data: {fileID: 21300348, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3542. - m_RefCount: 1
  3543. m_Data: {fileID: 21300350, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3544. - m_RefCount: 1
  3545. m_Data: {fileID: 21300288, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3546. - m_RefCount: 1
  3547. m_Data: {fileID: 21300290, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3548. - m_RefCount: 1
  3549. m_Data: {fileID: 21300292, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3550. - m_RefCount: 1
  3551. m_Data: {fileID: 21300294, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3552. - m_RefCount: 1
  3553. m_Data: {fileID: 21300296, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3554. - m_RefCount: 1
  3555. m_Data: {fileID: 21300298, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3556. - m_RefCount: 1
  3557. m_Data: {fileID: 21300300, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3558. - m_RefCount: 1
  3559. m_Data: {fileID: 21300302, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3560. - m_RefCount: 1
  3561. m_Data: {fileID: 21300304, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3562. - m_RefCount: 1
  3563. m_Data: {fileID: 21300306, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3564. - m_RefCount: 1
  3565. m_Data: {fileID: 21300344, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3566. - m_RefCount: 2
  3567. m_Data: {fileID: 21300310, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3568. - m_RefCount: 1
  3569. m_Data: {fileID: 21300506, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3570. - m_RefCount: 1
  3571. m_Data: {fileID: 21300346, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3572. - m_RefCount: 1
  3573. m_Data: {fileID: 21300316, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3574. - m_RefCount: 1
  3575. m_Data: {fileID: 21300318, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3576. - m_RefCount: 1
  3577. m_Data: {fileID: 21300256, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3578. - m_RefCount: 1
  3579. m_Data: {fileID: 21300258, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3580. - m_RefCount: 1
  3581. m_Data: {fileID: 21300260, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3582. - m_RefCount: 1
  3583. m_Data: {fileID: 21300262, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3584. - m_RefCount: 1
  3585. m_Data: {fileID: 21300264, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3586. - m_RefCount: 1
  3587. m_Data: {fileID: 21300266, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3588. - m_RefCount: 1
  3589. m_Data: {fileID: 21300268, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3590. - m_RefCount: 1
  3591. m_Data: {fileID: 21300270, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3592. - m_RefCount: 1
  3593. m_Data: {fileID: 21300272, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3594. - m_RefCount: 1
  3595. m_Data: {fileID: 21300274, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3596. - m_RefCount: 1
  3597. m_Data: {fileID: 21300342, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3598. - m_RefCount: 1
  3599. m_Data: {fileID: 21300314, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3600. - m_RefCount: 1
  3601. m_Data: {fileID: 21300504, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3602. - m_RefCount: 1
  3603. m_Data: {fileID: 21300282, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3604. - m_RefCount: 1
  3605. m_Data: {fileID: 21300284, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3606. - m_RefCount: 1
  3607. m_Data: {fileID: 21300286, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3608. - m_RefCount: 1
  3609. m_Data: {fileID: 21300224, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3610. - m_RefCount: 1
  3611. m_Data: {fileID: 21300226, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3612. - m_RefCount: 1
  3613. m_Data: {fileID: 21300228, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3614. - m_RefCount: 1
  3615. m_Data: {fileID: 21300230, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3616. - m_RefCount: 1
  3617. m_Data: {fileID: 21300232, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3618. - m_RefCount: 1
  3619. m_Data: {fileID: 21300234, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3620. - m_RefCount: 1
  3621. m_Data: {fileID: 21300236, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3622. - m_RefCount: 1
  3623. m_Data: {fileID: 21300238, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3624. - m_RefCount: 1
  3625. m_Data: {fileID: 21300240, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3626. - m_RefCount: 1
  3627. m_Data: {fileID: 21300242, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3628. - m_RefCount: 1
  3629. m_Data: {fileID: 21300244, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3630. - m_RefCount: 1
  3631. m_Data: {fileID: 21300308, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3632. - m_RefCount: 1
  3633. m_Data: {fileID: 21300502, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3634. - m_RefCount: 1
  3635. m_Data: {fileID: 21300500, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3636. - m_RefCount: 1
  3637. m_Data: {fileID: 21300498, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3638. - m_RefCount: 1
  3639. m_Data: {fileID: 21300496, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3640. - m_RefCount: 1
  3641. m_Data: {fileID: 21300192, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3642. - m_RefCount: 1
  3643. m_Data: {fileID: 21300194, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3644. - m_RefCount: 1
  3645. m_Data: {fileID: 21300196, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3646. - m_RefCount: 1
  3647. m_Data: {fileID: 21300198, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3648. - m_RefCount: 1
  3649. m_Data: {fileID: 21300200, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3650. - m_RefCount: 1
  3651. m_Data: {fileID: 21300494, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3652. - m_RefCount: 1
  3653. m_Data: {fileID: 21300204, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3654. - m_RefCount: 1
  3655. m_Data: {fileID: 21300206, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3656. - m_RefCount: 1
  3657. m_Data: {fileID: 21300208, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3658. - m_RefCount: 1
  3659. m_Data: {fileID: 21300210, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3660. - m_RefCount: 1
  3661. m_Data: {fileID: 21300212, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3662. - m_RefCount: 1
  3663. m_Data: {fileID: 21300492, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3664. - m_RefCount: 1
  3665. m_Data: {fileID: 21300490, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3666. - m_RefCount: 1
  3667. m_Data: {fileID: 21300488, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3668. - m_RefCount: 1
  3669. m_Data: {fileID: 21300486, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3670. - m_RefCount: 1
  3671. m_Data: {fileID: 21300484, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3672. - m_RefCount: 1
  3673. m_Data: {fileID: 21300276, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3674. - m_RefCount: 1
  3675. m_Data: {fileID: 21300162, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3676. - m_RefCount: 1
  3677. m_Data: {fileID: 21300482, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3678. - m_RefCount: 1
  3679. m_Data: {fileID: 21300480, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3680. - m_RefCount: 2
  3681. m_Data: {fileID: 21300188, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3682. - m_RefCount: 1
  3683. m_Data: {fileID: 21300186, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3684. - m_RefCount: 2
  3685. m_Data: {fileID: 21300190, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3686. - m_RefCount: 1
  3687. m_Data: {fileID: 21300222, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3688. - m_RefCount: 1
  3689. m_Data: {fileID: 21300176, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3690. - m_RefCount: 1
  3691. m_Data: {fileID: 21300178, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3692. - m_RefCount: 1
  3693. m_Data: {fileID: 21300180, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3694. - m_RefCount: 1
  3695. m_Data: {fileID: 21300220, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3696. - m_RefCount: 1
  3697. m_Data: {fileID: 21300216, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3698. - m_RefCount: 2
  3699. m_Data: {fileID: 21300214, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3700. - m_RefCount: 2
  3701. m_Data: {fileID: 21300218, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3702. - m_RefCount: 2
  3703. m_Data: {fileID: 21300182, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3704. - m_RefCount: 1
  3705. m_Data: {fileID: 21300094, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3706. - m_RefCount: 2
  3707. m_Data: {fileID: 21300092, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3708. - m_RefCount: 2
  3709. m_Data: {fileID: 21300184, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3710. - m_RefCount: 1
  3711. m_Data: {fileID: 21300248, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3712. - m_RefCount: 1
  3713. m_Data: {fileID: 21300136, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3714. - m_RefCount: 2
  3715. m_Data: {fileID: 21300254, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3716. - m_RefCount: 2
  3717. m_Data: {fileID: 21300250, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3718. - m_RefCount: 1
  3719. m_Data: {fileID: 21300168, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3720. - m_RefCount: 1
  3721. m_Data: {fileID: 21300138, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3722. - m_RefCount: 1
  3723. m_Data: {fileID: 21300146, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3724. - m_RefCount: 2
  3725. m_Data: {fileID: 21300148, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3726. - m_RefCount: 1
  3727. m_Data: {fileID: 21300278, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3728. - m_RefCount: 1
  3729. m_Data: {fileID: 21300152, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3730. - m_RefCount: 1
  3731. m_Data: {fileID: 21300154, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3732. - m_RefCount: 1
  3733. m_Data: {fileID: 21300246, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3734. - m_RefCount: 2
  3735. m_Data: {fileID: 21300158, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3736. - m_RefCount: 1
  3737. m_Data: {fileID: 21300014, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3738. - m_RefCount: 1
  3739. m_Data: {fileID: 21300012, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3740. - m_RefCount: 1
  3741. m_Data: {fileID: 21300478, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3742. - m_RefCount: 1
  3743. m_Data: {fileID: 21300008, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3744. - m_RefCount: 1
  3745. m_Data: {fileID: 21300160, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3746. - m_RefCount: 1
  3747. m_Data: {fileID: 21300106, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3748. - m_RefCount: 1
  3749. m_Data: {fileID: 21300006, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3750. - m_RefCount: 1
  3751. m_Data: {fileID: 21300004, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3752. - m_RefCount: 1
  3753. m_Data: {fileID: 21300112, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3754. - m_RefCount: 1
  3755. m_Data: {fileID: 21300114, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3756. - m_RefCount: 1
  3757. m_Data: {fileID: 21300116, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3758. - m_RefCount: 1
  3759. m_Data: {fileID: 21300118, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3760. - m_RefCount: 2
  3761. m_Data: {fileID: 21300120, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3762. - m_RefCount: 1
  3763. m_Data: {fileID: 21300122, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3764. - m_RefCount: 1
  3765. m_Data: {fileID: 21300124, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3766. - m_RefCount: 1
  3767. m_Data: {fileID: 21300104, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3768. - m_RefCount: 1
  3769. m_Data: {fileID: 21300002, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3770. - m_RefCount: 1
  3771. m_Data: {fileID: 21300000, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3772. - m_RefCount: 1
  3773. m_Data: {fileID: 21300046, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3774. - m_RefCount: 1
  3775. m_Data: {fileID: 21300044, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3776. - m_RefCount: 1
  3777. m_Data: {fileID: 21300042, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3778. - m_RefCount: 1
  3779. m_Data: {fileID: 21300040, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3780. - m_RefCount: 1
  3781. m_Data: {fileID: 21300038, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3782. - m_RefCount: 1
  3783. m_Data: {fileID: 21300036, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3784. - m_RefCount: 1
  3785. m_Data: {fileID: 21300080, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3786. - m_RefCount: 1
  3787. m_Data: {fileID: 21300082, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3788. - m_RefCount: 1
  3789. m_Data: {fileID: 21300084, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3790. - m_RefCount: 1
  3791. m_Data: {fileID: 21300086, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3792. - m_RefCount: 2
  3793. m_Data: {fileID: 21300088, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3794. - m_RefCount: 2
  3795. m_Data: {fileID: 21300090, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3796. - m_RefCount: 1
  3797. m_Data: {fileID: 21300130, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3798. - m_RefCount: 1
  3799. m_Data: {fileID: 21300128, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3800. - m_RefCount: 1
  3801. m_Data: {fileID: 21300034, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3802. - m_RefCount: 1
  3803. m_Data: {fileID: 21300032, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3804. - m_RefCount: 1
  3805. m_Data: {fileID: 21300078, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3806. - m_RefCount: 1
  3807. m_Data: {fileID: 21300076, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3808. - m_RefCount: 1
  3809. m_Data: {fileID: 21300074, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3810. - m_RefCount: 1
  3811. m_Data: {fileID: 21300072, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3812. - m_RefCount: 1
  3813. m_Data: {fileID: 21300070, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3814. - m_RefCount: 1
  3815. m_Data: {fileID: 21300068, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3816. - m_RefCount: 1
  3817. m_Data: {fileID: 21300048, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3818. - m_RefCount: 1
  3819. m_Data: {fileID: 21300050, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3820. - m_RefCount: 1
  3821. m_Data: {fileID: 21300052, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3822. - m_RefCount: 1
  3823. m_Data: {fileID: 21300054, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3824. - m_RefCount: 1
  3825. m_Data: {fileID: 21300056, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3826. - m_RefCount: 1
  3827. m_Data: {fileID: 21300058, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3828. - m_RefCount: 1
  3829. m_Data: {fileID: 21300060, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3830. - m_RefCount: 2
  3831. m_Data: {fileID: 21300062, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3832. - m_RefCount: 1
  3833. m_Data: {fileID: 21300066, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3834. - m_RefCount: 1
  3835. m_Data: {fileID: 21300064, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3836. - m_RefCount: 1
  3837. m_Data: {fileID: 21300110, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3838. - m_RefCount: 1
  3839. m_Data: {fileID: 21300108, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3840. - m_RefCount: 1
  3841. m_Data: {fileID: 21300102, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3842. - m_RefCount: 1
  3843. m_Data: {fileID: 21300100, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3844. - m_RefCount: 1
  3845. m_Data: {fileID: 21300098, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3846. - m_RefCount: 1
  3847. m_Data: {fileID: 21300096, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3848. - m_RefCount: 1
  3849. m_Data: {fileID: 21300016, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3850. - m_RefCount: 1
  3851. m_Data: {fileID: 21300018, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3852. - m_RefCount: 1
  3853. m_Data: {fileID: 21300020, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3854. - m_RefCount: 1
  3855. m_Data: {fileID: 21300022, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3856. - m_RefCount: 1
  3857. m_Data: {fileID: 21300024, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3858. - m_RefCount: 1
  3859. m_Data: {fileID: 21300026, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3860. - m_RefCount: 1
  3861. m_Data: {fileID: 21300028, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3862. - m_RefCount: 1
  3863. m_Data: {fileID: 21300030, guid: 537c371732866ca438a76cc8b649cde7, type: 3}
  3864. m_TileMatrixArray:
  3865. - m_RefCount: 253
  3866. m_Data:
  3867. e00: 1
  3868. e01: 0
  3869. e02: 0
  3870. e03: 0
  3871. e10: 0
  3872. e11: 1
  3873. e12: 0
  3874. e13: 0
  3875. e20: 0
  3876. e21: 0
  3877. e22: 1
  3878. e23: 0
  3879. e30: 0
  3880. e31: 0
  3881. e32: 0
  3882. e33: 1
  3883. m_TileColorArray:
  3884. - m_RefCount: 253
  3885. m_Data: {r: 1, g: 1, b: 1, a: 1}
  3886. m_TileObjectToInstantiateArray: []
  3887. m_AnimationFrameRate: 1
  3888. m_Color: {r: 1, g: 1, b: 1, a: 1}
  3889. m_Origin: {x: -6, y: -7, z: 0}
  3890. m_Size: {x: 27, y: 16, z: 1}
  3891. m_TileAnchor: {x: 0.5, y: 0.5, z: 0}
  3892. m_TileOrientation: 0
  3893. m_TileOrientationMatrix:
  3894. e00: 1
  3895. e01: 0
  3896. e02: 0
  3897. e03: 0
  3898. e10: 0
  3899. e11: 1
  3900. e12: 0
  3901. e13: 0
  3902. e20: 0
  3903. e21: 0
  3904. e22: 1
  3905. e23: 0
  3906. e30: 0
  3907. e31: 0
  3908. e32: 0
  3909. e33: 1