InlineIcons.png.meta 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289
  1. fileFormatVersion: 2
  2. guid: 215687feeab0b7445b4a1cd86c82c2e1
  3. labels:
  4. - IgnoreTest_CheckPlatformTextureSettings
  5. TextureImporter:
  6. internalIDToNameTable:
  7. - first:
  8. 213: 21300000
  9. second: premium
  10. - first:
  11. 213: 21300002
  12. second: coins
  13. - first:
  14. 213: 21300004
  15. second: food
  16. - first:
  17. 213: 21300006
  18. second: goods
  19. - first:
  20. 213: 21300008
  21. second: glass
  22. - first:
  23. 213: 21300010
  24. second: workers_big_city_capital
  25. - first:
  26. 213: 21300012
  27. second: research_points
  28. - first:
  29. 213: 21300014
  30. second: boost
  31. - first:
  32. 213: 21300016
  33. second: bb_checkmark
  34. - first:
  35. 213: -6279640769779937744
  36. second: clock_embossed_pos
  37. - first:
  38. 213: 2102306210881839429
  39. second: culture_bonus
  40. - first:
  41. 213: 4513387777306473356
  42. second: workers_small_city_capital
  43. - first:
  44. 213: -6479823341794910233
  45. second: expansion
  46. - first:
  47. 213: 7780953735995972703
  48. second: happiness_3
  49. - first:
  50. 213: 7459902675860876989
  51. second: culture_range
  52. - first:
  53. 213: -399840562033327265
  54. second: map
  55. - first:
  56. 213: 1357911645972831016
  57. second: scout
  58. - first:
  59. 213: 1260782343283211980
  60. second: swords
  61. - first:
  62. 213: 7096138885364736195
  63. second: upgrade
  64. - first:
  65. 213: 2441754920960949527
  66. second: coin_food_boost
  67. - first:
  68. 213: -3338912914735402841
  69. second: range_blue
  70. - first:
  71. 213: 8323598589155270872
  72. second: map_blue
  73. - first:
  74. 213: -8863619430189855094
  75. second: swords_blue
  76. - first:
  77. 213: 6644182187024332451
  78. second: scout_blue
  79. - first:
  80. 213: -3518875668666682211
  81. second: culture_bonus
  82. - first:
  83. 213: -1869673367297931309
  84. second: coins_small
  85. - first:
  86. 213: 7245690677989368111
  87. second: bb_lock
  88. - first:
  89. 213: 2267314249368087281
  90. second: happiness_0
  91. - first:
  92. 213: -9053465508694820594
  93. second: happiness_1
  94. - first:
  95. 213: -1134528729738406305
  96. second: happiness_2
  97. - first:
  98. 213: 4721570850333449918
  99. second: tutorial_icon_build
  100. - first:
  101. 213: 1954612522021269676
  102. second: tutorial_icon_produce
  103. - first:
  104. 213: -2043815690625100865
  105. second: tutorial_icon_incident
  106. - first:
  107. 213: 7245690677989368111
  108. second: dead
  109. - first:
  110. 213: 7245690677989368111
  111. second: clock_blue
  112. - first:
  113. 213: 3121471347900928983
  114. second: workers_city_capital
  115. - first:
  116. 213: 255080986811049931
  117. second: food_small
  118. - first:
  119. 213: -8988441530965576436
  120. second: upgrade_small
  121. - first:
  122. 213: 6547572931748238266
  123. second: research_points_small
  124. - first:
  125. 213: -1571012651542167539
  126. second: warning
  127. - first:
  128. 213: 7237261532831544450
  129. second: icon_bronze_bracelet
  130. - first:
  131. 213: 8373675954752092734
  132. second: icon_alabaster_idol
  133. - first:
  134. 213: 358799654582701605
  135. second: icon_wool
  136. - first:
  137. 213: 1438499179017281121
  138. second: icon_flint
  139. - first:
  140. 213: 5908195551155024309
  141. second: icon_hide
  142. - first:
  143. 213: -7191163486456543192
  144. second: wonder_active_checkmark
  145. - first:
  146. 213: 6905562749588875414
  147. second: cta_recruit
  148. - first:
  149. 213: 8706619048834826526
  150. second: icon_food_black
  151. - first:
  152. 213: -8078951251822203351
  153. second: irrigation_bonus
  154. - first:
  155. 213: 8170858238558910055
  156. second: InlineIcons_1
  157. - first:
  158. 213: 8806383704849223010
  159. second: InlineIcons_2
  160. - first:
  161. 213: -4770960272869957185
  162. second: cta_linen_shirt
  163. - first:
  164. 213: -9021633436630479557
  165. second: cta_marble_bust
  166. - first:
  167. 213: -2269303870351376580
  168. second: cta_golden_sphinx
  169. - first:
  170. 213: 541087786881136906
  171. second: cta_papyrus
  172. - first:
  173. 213: -7343220986905845580
  174. second: cta_ankh
  175. - first:
  176. 213: -2518806979871309895
  177. second: cta_ceremonial_dress
  178. - first:
  179. 213: 6619405697063382928
  180. second: irrigation_0
  181. - first:
  182. 213: -5368687836300328278
  183. second: irrigation_1
  184. - first:
  185. 213: 1461871564780703198
  186. second: irrigation_2
  187. - first:
  188. 213: -2457531169152919533
  189. second: irrigation
  190. - first:
  191. 213: -8318277596760801014
  192. second: cta_iron_pendant
  193. - first:
  194. 213: 2117336584302238645
  195. second: cta_gold_ore
  196. - first:
  197. 213: -7215298494019262123
  198. second: cta_papyrus_scroll
  199. - first:
  200. 213: 8674190453677158122
  201. second: cta_research_points
  202. - first:
  203. 213: 1494432333228735887
  204. second: workers_trading_big
  205. - first:
  206. 213: -6162265055754030298
  207. second: cta_silver_ring
  208. - first:
  209. 213: -7230867332484785407
  210. second: cta_toga
  211. - first:
  212. 213: 8640258737205591229
  213. second: cta_column
  214. - first:
  215. 213: -7927273033115742964
  216. second: deben
  217. - first:
  218. 213: -7357144505842695810
  219. second: cta_gold_laurel
  220. - first:
  221. 213: 210297501773229927
  222. second: cta_tunic
  223. - first:
  224. 213: 3537169958838929854
  225. second: cta_stone_tablet
  226. - first:
  227. 213: 4104117333016806175
  228. second: ebc_cryptofthecount
  229. - first:
  230. 213: 3495086814825567685
  231. second: blueprint
  232. - first:
  233. 213: 921062424029211809
  234. second: workers_big_city_egypt
  235. - first:
  236. 213: -3402344481944718353
  237. second: trade
  238. - first:
  239. 213: 7972151216418658502
  240. second: InlineIcons_32
  241. - first:
  242. 213: 5078477160627523986
  243. second: wonders
  244. - first:
  245. 213: -497568770147540219
  246. second: unit_cavalry
  247. - first:
  248. 213: 5390246818323809478
  249. second: unit_range
  250. - first:
  251. 213: 2437483765381717123
  252. second: unit_melee
  253. - first:
  254. 213: -5437674158304577141
  255. second: commander
  256. - first:
  257. 213: -5645743825326872590
  258. second: icon_trade token
  259. - first:
  260. 213: -701876230672350822
  261. second: cta_building_vikings_sailorport
  262. - first:
  263. 213: -7851600766591116406
  264. second: cta_silk_threads
  265. - first:
  266. 213: -2829443050583330228
  267. second: cta_rice
  268. - first:
  269. 213: 4524241383834298874
  270. second: cta_silk
  271. - first:
  272. 213: 6396128496709196802
  273. second: cta_porcelain
  274. - first:
  275. 213: -7411174152488024004
  276. second: cta_clay
  277. - first:
  278. 213: -44565893461480510
  279. second: cta_moth_cocoons
  280. - first:
  281. 213: 4936506583271141030
  282. second: cta_kaolin
  283. - first:
  284. 213: -8264326421717354311
  285. second: cta_wu_zhu
  286. - first:
  287. 213: -5167353112666354359
  288. second: cta_coins
  289. - first:
  290. 213: -1321098932929957079
  291. second: cta_mosaic
  292. - first:
  293. 213: 7462434613906369459
  294. second: cta_goblet
  295. - first:
  296. 213: 8287165777748813492
  297. second: cta_cape
  298. - first:
  299. 213: -7907368816393526887
  300. second: wu_zhu
  301. - first:
  302. 213: 5803713721798503446
  303. second: cta_cocoa
  304. - first:
  305. 213: 6409830552331150148
  306. second: cta_jade
  307. - first:
  308. 213: 4956319499149316874
  309. second: cta_obsidian
  310. - first:
  311. 213: 8757602080057577540
  312. second: cta_feather
  313. - first:
  314. 213: 9112743452827066768
  315. second: cta_priest
  316. - first:
  317. 213: -5159087384432534610
  318. second: cta_ancestor_mask
  319. - first:
  320. 213: 8678780475385641507
  321. second: cta_calendar_stone
  322. - first:
  323. 213: -5049782452158657568
  324. second: cta_ritual_dagger
  325. - first:
  326. 213: 7513239266779225853
  327. second: cta_headdress
  328. - first:
  329. 213: -6316392241553622110
  330. second: cta_suns_blessing
  331. - first:
  332. 213: 6195470969790340212
  333. second: ranking
  334. - first:
  335. 213: -4834095905783300709
  336. second: ebc_hydra
  337. - first:
  338. 213: 6107784321054212483
  339. second: cocoa
  340. - first:
  341. 213: 7681201850867341242
  342. second: ath_attempt
  343. - first:
  344. 213: -7043394559850540028
  345. second: cta_obsidianjade
  346. - first:
  347. 213: -4501791974573854292
  348. second: cta_obsidiancalendarancestormask
  349. - first:
  350. 213: 5488086946749717670
  351. second: cta_pepper
  352. - first:
  353. 213: -1670260634343250872
  354. second: cta_planks
  355. - first:
  356. 213: -8210193684748564459
  357. second: cta_salt
  358. - first:
  359. 213: -2217656884674354197
  360. second: cta_ink
  361. - first:
  362. 213: -8037489388941252367
  363. second: cta_wooden_wheel
  364. - first:
  365. 213: 1023881543254830229
  366. second: cta_happiness_maya_2
  367. - first:
  368. 213: -8141631665637155745
  369. second: workers_big_priestmaya
  370. - first:
  371. 213: -8943414918624194942
  372. second: workers_big_priestmaya
  373. - first:
  374. 213: -4198053654051914648
  375. second: workers_small_priestmaya
  376. - first:
  377. 213: -2136406889496393637
  378. second: workers_big_city_mayas
  379. - first:
  380. 213: 6228371465862800648
  381. second: workers_city_mayas
  382. - first:
  383. 213: 2108014542765709681
  384. second: workers_small_city_mayas
  385. - first:
  386. 213: -6707575059094875716
  387. second: workers_big_city_china
  388. - first:
  389. 213: 5706957933644387078
  390. second: workers_city_china
  391. - first:
  392. 213: -3297204628491984772
  393. second: workers_small_city_china
  394. - first:
  395. 213: -6346629593138849361
  396. second: workers_city_egypt
  397. - first:
  398. 213: -3389039848645536794
  399. second: workers_small_city_egypt
  400. - first:
  401. 213: 37763770702065993
  402. second: ebc_madscientistslab
  403. - first:
  404. 213: -1999946806344817058
  405. second: ebc_piratefortress
  406. - first:
  407. 213: 7812820661483254461
  408. second: wonder_inactive_checkmark
  409. - first:
  410. 213: 3969048961352433308
  411. second: cta_maya_luxurious_workshop_level2
  412. - first:
  413. 213: 1037585894331930479
  414. second: ebc_wintermarket
  415. - first:
  416. 213: 1853125249586873685
  417. second: info
  418. - first:
  419. 213: 9124709818946717747
  420. second: ebc_trojanhorse
  421. - first:
  422. 213: -8267115305123039760
  423. second: icon_chest_good2
  424. - first:
  425. 213: 8996665824694350818
  426. second: ebc_broch
  427. - first:
  428. 213: 4624541004163449478
  429. second: cta_manuscript
  430. - first:
  431. 213: 2289998852469363648
  432. second: cta_barrel
  433. - first:
  434. 213: -7333887034695731682
  435. second: cta_herbs
  436. - first:
  437. 213: 1088730770723027953
  438. second: cta_icon_chest_blueprint
  439. - first:
  440. 213: -1953511547368589529
  441. second: cta_icon_chest_rp
  442. - first:
  443. 213: 4939863863825205819
  444. second: ebc_persianpalace
  445. - first:
  446. 213: -1104962026362419977
  447. second: shoreline
  448. - first:
  449. 213: -2794259043635821732
  450. second: cta_mead
  451. - first:
  452. 213: 8617892559191809022
  453. second: cta_stockfish
  454. - first:
  455. 213: 5701253759128972283
  456. second: cta_spice_treasure
  457. - first:
  458. 213: 8814212362280375727
  459. second: cta_gold_treasure
  460. - first:
  461. 213: -4951088303895349411
  462. second: icon_gem_treasure
  463. - first:
  464. 213: -1856732651501631057
  465. second: cta_pennies
  466. - first:
  467. 213: -3386218922703161388
  468. second: cta_honey
  469. - first:
  470. 213: -8478562381375844705
  471. second: cta_fish
  472. - first:
  473. 213: 4751259173209894178
  474. second: cta_ceramic_treasure
  475. - first:
  476. 213: 7700661865242328817
  477. second: pennies
  478. - first:
  479. 213: 8289822419994577490
  480. second: workers_big_city_vikings
  481. - first:
  482. 213: 3017109405843695886
  483. second: workers_city_vikings
  484. - first:
  485. 213: 429688389500101892
  486. second: workers_small_city_vikings
  487. - first:
  488. 213: 7673711170268496860
  489. second: workers_big_sailorvikings
  490. - first:
  491. 213: 7291930161081552924
  492. second: workers_sailorvikings
  493. - first:
  494. 213: -983479635111419447
  495. second: workers_small_sailorvikings
  496. - first:
  497. 213: -5617448299673312401
  498. second: cta_mixedchest
  499. - first:
  500. 213: -2904807348406626498
  501. second: wonder_orb
  502. - first:
  503. 213: -1487877384612313618
  504. second: cta_icon_mystery_chest_gold
  505. - first:
  506. 213: -1659708932042841261
  507. second: blueprint_rare
  508. - first:
  509. 213: 4281911320752687849
  510. second: InlineIcons_122
  511. - first:
  512. 213: 7674156195484195045
  513. second: gears
  514. - first:
  515. 213: -7006899675943808146
  516. second: ebc_madrasa
  517. - first:
  518. 213: 5534174253454217892
  519. second: ebc_shrineofreflection
  520. - first:
  521. 213: 4642325231336661812
  522. second: cta_gears
  523. - first:
  524. 213: 3375157875343467442
  525. second: cta_wax_seal
  526. - first:
  527. 213: -838908008875007501
  528. second: cta_door
  529. - first:
  530. 213: -2578651400172810937
  531. second: cta_saffron
  532. - first:
  533. 213: -4178829386858457095
  534. second: InlineIcons_130
  535. - first:
  536. 213: 2586379074099917112
  537. second: cta_building_vikings_sailorport_premium_1
  538. - first:
  539. 213: -12563651127225671
  540. second: cta_building_vikings_sailorport_premium_2
  541. - first:
  542. 213: 3112621357950915070
  543. second: InlineIcons_133
  544. - first:
  545. 213: -329868462160931304
  546. second: InlineIcons_134
  547. - first:
  548. 213: -8463493406355435034
  549. second: InlineIcons_135
  550. - first:
  551. 213: 2084413756825693856
  552. second: InlineIcons_136
  553. - first:
  554. 213: 3643772185187624922
  555. second: flat_cancel
  556. - first:
  557. 213: -922888878065087515
  558. second: flat_check
  559. - first:
  560. 213: 2061223666325461347
  561. second: bb_lock_grey
  562. - first:
  563. 213: -2965744954758517795
  564. second: icon_crate
  565. - first:
  566. 213: 3436914362765528371
  567. second: icon_star
  568. - first:
  569. 213: 7134325258175837443
  570. second: icon_tome
  571. - first:
  572. 213: -728244194544253039
  573. second: icon_wardrobe
  574. - first:
  575. 213: -5750983614340588109
  576. second: icon_chili
  577. - first:
  578. 213: -4020335626915314013
  579. second: icon_arabia_worker
  580. - first:
  581. 213: 3814798381351036019
  582. second: icon_dirham
  583. - first:
  584. 213: 1302763225339234619
  585. second: icon_gold_dinar
  586. - first:
  587. 213: 1896382066041297041
  588. second: icon_incense
  589. - first:
  590. 213: -6463064620358863643
  591. second: icon_coffee_beans
  592. - first:
  593. 213: -7081792888699921481
  594. second: icon_myrrh
  595. - first:
  596. 213: 8475544577015182143
  597. second: icon_brass
  598. - first:
  599. 213: 6694968190869980855
  600. second: icon_coffee
  601. - first:
  602. 213: 4932850884273308405
  603. second: icon_camel
  604. - first:
  605. 213: -5536544251107829900
  606. second: InlineIcons_154
  607. - first:
  608. 213: 8954016801280762372
  609. second: cta_icon_mystery_chest
  610. - first:
  611. 213: -7335904089167868400
  612. second: cta_icon_loot_container
  613. - first:
  614. 213: -3662145209645026858
  615. second: cta_icon_loot_container_bronze
  616. - first:
  617. 213: 2101787439100353768
  618. second: InlineIcons_158
  619. - first:
  620. 213: 6718763151315418932
  621. second: icon_event_pegasus_tokens
  622. - first:
  623. 213: 8158563787144471110
  624. second: icon_event_greek_2023_grand_prize_progress
  625. externalObjects: {}
  626. serializedVersion: 12
  627. mipmaps:
  628. mipMapMode: 0
  629. enableMipMap: 0
  630. sRGBTexture: 1
  631. linearTexture: 0
  632. fadeOut: 0
  633. borderMipMap: 0
  634. mipMapsPreserveCoverage: 0
  635. alphaTestReferenceValue: 0.5
  636. mipMapFadeDistanceStart: 1
  637. mipMapFadeDistanceEnd: 3
  638. bumpmap:
  639. convertToNormalMap: 0
  640. externalNormalMap: 0
  641. heightScale: 0.25
  642. normalMapFilter: 0
  643. isReadable: 0
  644. streamingMipmaps: 0
  645. streamingMipmapsPriority: 0
  646. vTOnly: 0
  647. ignoreMasterTextureLimit: 0
  648. grayScaleToAlpha: 0
  649. generateCubemap: 6
  650. cubemapConvolution: 0
  651. seamlessCubemap: 0
  652. textureFormat: 1
  653. maxTextureSize: 2048
  654. textureSettings:
  655. serializedVersion: 2
  656. filterMode: 1
  657. aniso: 1
  658. mipBias: 0
  659. wrapU: 1
  660. wrapV: 1
  661. wrapW: 0
  662. nPOTScale: 0
  663. lightmap: 0
  664. compressionQuality: 50
  665. spriteMode: 2
  666. spriteExtrude: 1
  667. spriteMeshType: 1
  668. alignment: 0
  669. spritePivot: {x: 0.5, y: 0.5}
  670. spritePixelsToUnits: 100
  671. spriteBorder: {x: 0, y: 0, z: 0, w: 0}
  672. spriteGenerateFallbackPhysicsShape: 0
  673. alphaUsage: 1
  674. alphaIsTransparency: 1
  675. spriteTessellationDetail: -1
  676. textureType: 8
  677. textureShape: 1
  678. singleChannelComponent: 0
  679. flipbookRows: 1
  680. flipbookColumns: 1
  681. maxTextureSizeSet: 0
  682. compressionQualitySet: 0
  683. textureFormatSet: 0
  684. ignorePngGamma: 0
  685. applyGammaDecoding: 1
  686. cookieLightType: 1
  687. platformSettings:
  688. - serializedVersion: 3
  689. buildTarget: DefaultTexturePlatform
  690. maxTextureSize: 2048
  691. resizeAlgorithm: 0
  692. textureFormat: -1
  693. textureCompression: 2
  694. compressionQuality: 50
  695. crunchedCompression: 0
  696. allowsAlphaSplitting: 0
  697. overridden: 0
  698. androidETC2FallbackOverride: 0
  699. forceMaximumCompressionQuality_BC6H_BC7: 0
  700. - serializedVersion: 3
  701. buildTarget: Standalone
  702. maxTextureSize: 2048
  703. resizeAlgorithm: 0
  704. textureFormat: -1
  705. textureCompression: 2
  706. compressionQuality: 50
  707. crunchedCompression: 0
  708. allowsAlphaSplitting: 0
  709. overridden: 0
  710. androidETC2FallbackOverride: 0
  711. forceMaximumCompressionQuality_BC6H_BC7: 0
  712. - serializedVersion: 3
  713. buildTarget: WebGL
  714. maxTextureSize: 2048
  715. resizeAlgorithm: 0
  716. textureFormat: 29
  717. textureCompression: 2
  718. compressionQuality: 100
  719. crunchedCompression: 0
  720. allowsAlphaSplitting: 0
  721. overridden: 1
  722. androidETC2FallbackOverride: 0
  723. forceMaximumCompressionQuality_BC6H_BC7: 0
  724. - serializedVersion: 3
  725. buildTarget: iPhone
  726. maxTextureSize: 2048
  727. resizeAlgorithm: 0
  728. textureFormat: 48
  729. textureCompression: 2
  730. compressionQuality: 100
  731. crunchedCompression: 0
  732. allowsAlphaSplitting: 0
  733. overridden: 1
  734. androidETC2FallbackOverride: 0
  735. forceMaximumCompressionQuality_BC6H_BC7: 0
  736. - serializedVersion: 3
  737. buildTarget: Android
  738. maxTextureSize: 2048
  739. resizeAlgorithm: 0
  740. textureFormat: 47
  741. textureCompression: 2
  742. compressionQuality: 100
  743. crunchedCompression: 0
  744. allowsAlphaSplitting: 0
  745. overridden: 1
  746. androidETC2FallbackOverride: 0
  747. forceMaximumCompressionQuality_BC6H_BC7: 0
  748. - serializedVersion: 3
  749. buildTarget: Server
  750. maxTextureSize: 2048
  751. resizeAlgorithm: 0
  752. textureFormat: -1
  753. textureCompression: 2
  754. compressionQuality: 50
  755. crunchedCompression: 0
  756. allowsAlphaSplitting: 0
  757. overridden: 0
  758. androidETC2FallbackOverride: 0
  759. forceMaximumCompressionQuality_BC6H_BC7: 0
  760. spriteSheet:
  761. serializedVersion: 2
  762. sprites:
  763. - serializedVersion: 2
  764. name: premium
  765. rect:
  766. serializedVersion: 2
  767. x: 49
  768. y: 866
  769. width: 76
  770. height: 92
  771. alignment: 0
  772. pivot: {x: 0.5, y: 0.5}
  773. border: {x: 0, y: 0, z: 0, w: 0}
  774. outline: []
  775. physicsShape: []
  776. tessellationDetail: 0
  777. bones: []
  778. spriteID: 83f85091368767e4188587d328b8c84f
  779. internalID: 21300000
  780. vertices: []
  781. indices:
  782. edges: []
  783. weights: []
  784. - serializedVersion: 2
  785. name: coins
  786. rect:
  787. serializedVersion: 2
  788. x: 158
  789. y: 864
  790. width: 85
  791. height: 93
  792. alignment: 0
  793. pivot: {x: 0.5, y: 0.5}
  794. border: {x: 0, y: 0, z: 0, w: 0}
  795. outline: []
  796. physicsShape: []
  797. tessellationDetail: 0
  798. bones: []
  799. spriteID: 49e741622c3aefa4ca44ec32dad4ef71
  800. internalID: 21300002
  801. vertices: []
  802. indices:
  803. edges: []
  804. weights: []
  805. - serializedVersion: 2
  806. name: food
  807. rect:
  808. serializedVersion: 2
  809. x: 278
  810. y: 867
  811. width: 87
  812. height: 94
  813. alignment: 0
  814. pivot: {x: 0.5, y: 0.5}
  815. border: {x: 0, y: 0, z: 0, w: 0}
  816. outline: []
  817. physicsShape: []
  818. tessellationDetail: 0
  819. bones: []
  820. spriteID: 7d7bc22a6fb83004d8764e921be63edd
  821. internalID: 21300004
  822. vertices: []
  823. indices:
  824. edges: []
  825. weights: []
  826. - serializedVersion: 2
  827. name: goods
  828. rect:
  829. serializedVersion: 2
  830. x: 398
  831. y: 862
  832. width: 107
  833. height: 88
  834. alignment: 0
  835. pivot: {x: 0.5, y: 0.5}
  836. border: {x: 0, y: 0, z: 0, w: 0}
  837. outline: []
  838. physicsShape: []
  839. tessellationDetail: 0
  840. bones: []
  841. spriteID: d89852f581cf9354e8fb5aa021cc68e3
  842. internalID: 21300006
  843. vertices: []
  844. indices:
  845. edges: []
  846. weights: []
  847. - serializedVersion: 2
  848. name: glass
  849. rect:
  850. serializedVersion: 2
  851. x: 505
  852. y: 848
  853. width: 103
  854. height: 105
  855. alignment: 0
  856. pivot: {x: 0.5, y: 0.5}
  857. border: {x: 0, y: 0, z: 0, w: 0}
  858. outline: []
  859. physicsShape: []
  860. tessellationDetail: 0
  861. bones: []
  862. spriteID: 53f810b2f7a935246a387957ace8ad2f
  863. internalID: 21300008
  864. vertices: []
  865. indices:
  866. edges: []
  867. weights: []
  868. - serializedVersion: 2
  869. name: workers_big_city_capital
  870. rect:
  871. serializedVersion: 2
  872. x: 53
  873. y: 729
  874. width: 98
  875. height: 93
  876. alignment: 0
  877. pivot: {x: 0.5, y: 0.5}
  878. border: {x: 0, y: 0, z: 0, w: 0}
  879. outline: []
  880. physicsShape: []
  881. tessellationDetail: 0
  882. bones: []
  883. spriteID: 4cd4703620da72440a97a394f2eac0e0
  884. internalID: 21300010
  885. vertices: []
  886. indices:
  887. edges: []
  888. weights: []
  889. - serializedVersion: 2
  890. name: research_points
  891. rect:
  892. serializedVersion: 2
  893. x: 234
  894. y: 734
  895. width: 78
  896. height: 92
  897. alignment: 0
  898. pivot: {x: 0.5, y: 0.5}
  899. border: {x: 0, y: 0, z: 0, w: 0}
  900. outline: []
  901. physicsShape: []
  902. tessellationDetail: 0
  903. bones: []
  904. spriteID: aa8f66d69aacd5a44b855a1defaa1136
  905. internalID: 21300012
  906. vertices: []
  907. indices:
  908. edges: []
  909. weights: []
  910. - serializedVersion: 2
  911. name: boost
  912. rect:
  913. serializedVersion: 2
  914. x: 333
  915. y: 742
  916. width: 79
  917. height: 79
  918. alignment: 0
  919. pivot: {x: 0.5, y: 0.5}
  920. border: {x: 0, y: 0, z: 0, w: 0}
  921. outline: []
  922. physicsShape: []
  923. tessellationDetail: 0
  924. bones: []
  925. spriteID: 2b0d033be79806440bcba6231f98aba1
  926. internalID: 21300014
  927. vertices: []
  928. indices:
  929. edges: []
  930. weights: []
  931. - serializedVersion: 2
  932. name: bb_checkmark
  933. rect:
  934. serializedVersion: 2
  935. x: 427
  936. y: 760
  937. width: 40
  938. height: 38
  939. alignment: 0
  940. pivot: {x: 0.5, y: 0.5}
  941. border: {x: 0, y: 0, z: 0, w: 0}
  942. outline: []
  943. physicsShape: []
  944. tessellationDetail: 0
  945. bones: []
  946. spriteID: c563e19d8f40c7d4088db86f37a4c600
  947. internalID: 21300016
  948. vertices: []
  949. indices:
  950. edges: []
  951. weights: []
  952. - serializedVersion: 2
  953. name: clock_embossed_pos
  954. rect:
  955. serializedVersion: 2
  956. x: 478
  957. y: 759
  958. width: 40
  959. height: 42
  960. alignment: 0
  961. pivot: {x: 0.5, y: 0.5}
  962. border: {x: 0, y: 0, z: 0, w: 0}
  963. outline: []
  964. physicsShape: []
  965. tessellationDetail: 0
  966. bones: []
  967. spriteID: ced74530b2ea39a4ab157a71997e2f8b
  968. internalID: -6279640769779937744
  969. vertices: []
  970. indices:
  971. edges: []
  972. weights: []
  973. - serializedVersion: 2
  974. name: workers_small_city_capital
  975. rect:
  976. serializedVersion: 2
  977. x: 152
  978. y: 730
  979. width: 56
  980. height: 50
  981. alignment: 0
  982. pivot: {x: 0.5, y: 0.5}
  983. border: {x: 0, y: 0, z: 0, w: 0}
  984. outline: []
  985. physicsShape: []
  986. tessellationDetail: 0
  987. bones: []
  988. spriteID: 9d726b4690cc3c046a3d3625cc4b2d45
  989. internalID: 4513387777306473356
  990. vertices: []
  991. indices:
  992. edges: []
  993. weights: []
  994. - serializedVersion: 2
  995. name: expansion
  996. rect:
  997. serializedVersion: 2
  998. x: 609
  999. y: 864
  1000. width: 84
  1001. height: 77
  1002. alignment: 0
  1003. pivot: {x: 0.5, y: 0.5}
  1004. border: {x: 0, y: 0, z: 0, w: 0}
  1005. outline: []
  1006. physicsShape: []
  1007. tessellationDetail: 0
  1008. bones: []
  1009. spriteID: a53c7f54d885517428d30f4f28fce080
  1010. internalID: -6479823341794910233
  1011. vertices: []
  1012. indices:
  1013. edges: []
  1014. weights: []
  1015. - serializedVersion: 2
  1016. name: happiness_3
  1017. rect:
  1018. serializedVersion: 2
  1019. x: 712
  1020. y: 865
  1021. width: 81
  1022. height: 86
  1023. alignment: 0
  1024. pivot: {x: 0.5, y: 0.5}
  1025. border: {x: 0, y: 0, z: 0, w: 0}
  1026. outline: []
  1027. physicsShape: []
  1028. tessellationDetail: 0
  1029. bones: []
  1030. spriteID: 68cb8f35ec89aae49b141f263f832673
  1031. internalID: 7780953735995972703
  1032. vertices: []
  1033. indices:
  1034. edges: []
  1035. weights: []
  1036. - serializedVersion: 2
  1037. name: culture_range
  1038. rect:
  1039. serializedVersion: 2
  1040. x: 808
  1041. y: 862
  1042. width: 86
  1043. height: 93
  1044. alignment: 0
  1045. pivot: {x: 0.5, y: 0.5}
  1046. border: {x: 0, y: 0, z: 0, w: 0}
  1047. outline: []
  1048. physicsShape: []
  1049. tessellationDetail: 0
  1050. bones: []
  1051. spriteID: 3bcc40f1032b13945baef86763ef6aed
  1052. internalID: 7459902675860876989
  1053. vertices: []
  1054. indices:
  1055. edges: []
  1056. weights: []
  1057. - serializedVersion: 2
  1058. name: map
  1059. rect:
  1060. serializedVersion: 2
  1061. x: 906
  1062. y: 870
  1063. width: 84
  1064. height: 74
  1065. alignment: 0
  1066. pivot: {x: 0.5, y: 0.5}
  1067. border: {x: 0, y: 0, z: 0, w: 0}
  1068. outline: []
  1069. physicsShape: []
  1070. tessellationDetail: 0
  1071. bones: []
  1072. spriteID: dabd4aac492f3a944bff918910a2b10c
  1073. internalID: -399840562033327265
  1074. vertices: []
  1075. indices:
  1076. edges: []
  1077. weights: []
  1078. - serializedVersion: 2
  1079. name: scout
  1080. rect:
  1081. serializedVersion: 2
  1082. x: 905
  1083. y: 784
  1084. width: 83
  1085. height: 56
  1086. alignment: 0
  1087. pivot: {x: 0.5, y: 0.5}
  1088. border: {x: 0, y: 0, z: 0, w: 0}
  1089. outline: []
  1090. physicsShape: []
  1091. tessellationDetail: 0
  1092. bones: []
  1093. spriteID: 2b4f5de59fe9d214cb8e9f2b2ea74681
  1094. internalID: 1357911645972831016
  1095. vertices: []
  1096. indices:
  1097. edges: []
  1098. weights: []
  1099. - serializedVersion: 2
  1100. name: swords
  1101. rect:
  1102. serializedVersion: 2
  1103. x: 819
  1104. y: 778
  1105. width: 65
  1106. height: 67
  1107. alignment: 0
  1108. pivot: {x: 0.5, y: 0.5}
  1109. border: {x: 0, y: 0, z: 0, w: 0}
  1110. outline: []
  1111. physicsShape: []
  1112. tessellationDetail: 0
  1113. bones: []
  1114. spriteID: 5a9b475af385adc40b094c5de24f73b0
  1115. internalID: 1260782343283211980
  1116. vertices: []
  1117. indices:
  1118. edges: []
  1119. weights: []
  1120. - serializedVersion: 2
  1121. name: upgrade
  1122. rect:
  1123. serializedVersion: 2
  1124. x: 720
  1125. y: 774
  1126. width: 66
  1127. height: 80
  1128. alignment: 0
  1129. pivot: {x: 0.5, y: 0.5}
  1130. border: {x: 0, y: 0, z: 0, w: 0}
  1131. outline: []
  1132. physicsShape: []
  1133. tessellationDetail: 0
  1134. bones: []
  1135. spriteID: 2e9e84f41137bc9459155c51b48a78cf
  1136. internalID: 7096138885364736195
  1137. vertices: []
  1138. indices:
  1139. edges: []
  1140. weights: []
  1141. - serializedVersion: 2
  1142. name: coin_food_boost
  1143. rect:
  1144. serializedVersion: 2
  1145. x: 642
  1146. y: 625
  1147. width: 154
  1148. height: 106
  1149. alignment: 0
  1150. pivot: {x: 0.5, y: 0.5}
  1151. border: {x: 0, y: 0, z: 0, w: 0}
  1152. outline: []
  1153. physicsShape: []
  1154. tessellationDetail: 0
  1155. bones: []
  1156. spriteID: b5e1b5d0bc69e9b4e84a618d58c0184f
  1157. internalID: 2441754920960949527
  1158. vertices: []
  1159. indices:
  1160. edges: []
  1161. weights: []
  1162. - serializedVersion: 2
  1163. name: culture_bonus
  1164. rect:
  1165. serializedVersion: 2
  1166. x: 623
  1167. y: 741
  1168. width: 76
  1169. height: 74
  1170. alignment: 0
  1171. pivot: {x: 0.5, y: 0.5}
  1172. border: {x: 0, y: 0, z: 0, w: 0}
  1173. outline: []
  1174. physicsShape: []
  1175. tessellationDetail: 0
  1176. bones: []
  1177. spriteID: 436398409ee116b4f8cf892406ccb78b
  1178. internalID: 2102306210881839429
  1179. vertices: []
  1180. indices:
  1181. edges: []
  1182. weights: []
  1183. - serializedVersion: 2
  1184. name: coins_small
  1185. rect:
  1186. serializedVersion: 2
  1187. x: 169
  1188. y: 957
  1189. width: 60
  1190. height: 66
  1191. alignment: 0
  1192. pivot: {x: 0.5, y: 0.5}
  1193. border: {x: 0, y: 0, z: 0, w: 0}
  1194. outline: []
  1195. physicsShape: []
  1196. tessellationDetail: 0
  1197. bones: []
  1198. spriteID: 8ca9c23c24295e645bf4cc9cc4d0bd57
  1199. internalID: -1869673367297931309
  1200. vertices: []
  1201. indices:
  1202. edges: []
  1203. weights: []
  1204. - serializedVersion: 2
  1205. name: bb_lock
  1206. rect:
  1207. serializedVersion: 2
  1208. x: 430
  1209. y: 800
  1210. width: 34
  1211. height: 47
  1212. alignment: 0
  1213. pivot: {x: 0.5, y: 0.5}
  1214. border: {x: 0, y: 0, z: 0, w: 0}
  1215. outline: []
  1216. physicsShape: []
  1217. tessellationDetail: 0
  1218. bones: []
  1219. spriteID: 37d6aeaf2a1d1f24eaba5154ac8b0e13
  1220. internalID: 7245690677989368111
  1221. vertices: []
  1222. indices:
  1223. edges: []
  1224. weights: []
  1225. - serializedVersion: 2
  1226. name: happiness_0
  1227. rect:
  1228. serializedVersion: 2
  1229. x: 58
  1230. y: 636
  1231. width: 78
  1232. height: 84
  1233. alignment: 0
  1234. pivot: {x: 0.5, y: 0.5}
  1235. border: {x: 0, y: 0, z: 0, w: 0}
  1236. outline: []
  1237. physicsShape: []
  1238. tessellationDetail: 0
  1239. bones: []
  1240. spriteID: 4ad54f0f6dbfb7143bad98c648e809ca
  1241. internalID: 2267314249368087281
  1242. vertices: []
  1243. indices:
  1244. edges: []
  1245. weights: []
  1246. - serializedVersion: 2
  1247. name: happiness_1
  1248. rect:
  1249. serializedVersion: 2
  1250. x: 137
  1251. y: 636
  1252. width: 78
  1253. height: 84
  1254. alignment: 0
  1255. pivot: {x: 0.5, y: 0.5}
  1256. border: {x: 0, y: 0, z: 0, w: 0}
  1257. outline: []
  1258. physicsShape: []
  1259. tessellationDetail: 0
  1260. bones: []
  1261. spriteID: 6ec6fcaba52d4494faf75bc1c3af336c
  1262. internalID: -9053465508694820594
  1263. vertices: []
  1264. indices:
  1265. edges: []
  1266. weights: []
  1267. - serializedVersion: 2
  1268. name: happiness_2
  1269. rect:
  1270. serializedVersion: 2
  1271. x: 216
  1272. y: 636
  1273. width: 78
  1274. height: 84
  1275. alignment: 0
  1276. pivot: {x: 0.5, y: 0.5}
  1277. border: {x: 0, y: 0, z: 0, w: 0}
  1278. outline: []
  1279. physicsShape: []
  1280. tessellationDetail: 0
  1281. bones: []
  1282. spriteID: ec13a36d203f80941870232804ccef92
  1283. internalID: -1134528729738406305
  1284. vertices: []
  1285. indices:
  1286. edges: []
  1287. weights: []
  1288. - serializedVersion: 2
  1289. name: tutorial_icon_build
  1290. rect:
  1291. serializedVersion: 2
  1292. x: 0
  1293. y: 507
  1294. width: 94
  1295. height: 110
  1296. alignment: 0
  1297. pivot: {x: 0.5, y: 0.5}
  1298. border: {x: 0, y: 0, z: 0, w: 0}
  1299. outline: []
  1300. physicsShape: []
  1301. tessellationDetail: 0
  1302. bones: []
  1303. spriteID: fd561678281081f438b6638ea4235756
  1304. internalID: 4721570850333449918
  1305. vertices: []
  1306. indices:
  1307. edges: []
  1308. weights: []
  1309. - serializedVersion: 2
  1310. name: tutorial_icon_produce
  1311. rect:
  1312. serializedVersion: 2
  1313. x: 95
  1314. y: 507
  1315. width: 105
  1316. height: 110
  1317. alignment: 0
  1318. pivot: {x: 0.5, y: 0.5}
  1319. border: {x: 0, y: 0, z: 0, w: 0}
  1320. outline: []
  1321. physicsShape: []
  1322. tessellationDetail: 0
  1323. bones: []
  1324. spriteID: 2afac35630599f147977221b5b90f941
  1325. internalID: 1954612522021269676
  1326. vertices: []
  1327. indices:
  1328. edges: []
  1329. weights: []
  1330. - serializedVersion: 2
  1331. name: tutorial_icon_incident
  1332. rect:
  1333. serializedVersion: 2
  1334. x: 200
  1335. y: 507
  1336. width: 133
  1337. height: 110
  1338. alignment: 0
  1339. pivot: {x: 0.5, y: 0.5}
  1340. border: {x: 0, y: 0, z: 0, w: 0}
  1341. outline: []
  1342. physicsShape: []
  1343. tessellationDetail: 0
  1344. bones: []
  1345. spriteID: 9a374c56294889d49863ffcd54fada26
  1346. internalID: -2043815690625100865
  1347. vertices: []
  1348. indices:
  1349. edges: []
  1350. weights: []
  1351. - serializedVersion: 2
  1352. name: dead
  1353. rect:
  1354. serializedVersion: 2
  1355. x: 310
  1356. y: 628
  1357. width: 111
  1358. height: 80
  1359. alignment: 0
  1360. pivot: {x: 0.5, y: 0.5}
  1361. border: {x: 0, y: 0, z: 0, w: 0}
  1362. outline: []
  1363. physicsShape: []
  1364. tessellationDetail: 0
  1365. bones: []
  1366. spriteID: a0158a702588ee3459817f1e7556e159
  1367. internalID: -9160987577138628238
  1368. vertices: []
  1369. indices:
  1370. edges: []
  1371. weights: []
  1372. - serializedVersion: 2
  1373. name: clock_blue
  1374. rect:
  1375. serializedVersion: 2
  1376. x: 429
  1377. y: 661
  1378. width: 90
  1379. height: 91
  1380. alignment: 0
  1381. pivot: {x: 0.5, y: 0.5}
  1382. border: {x: 0, y: 0, z: 0, w: 0}
  1383. outline: []
  1384. physicsShape: []
  1385. tessellationDetail: 0
  1386. bones: []
  1387. spriteID: cb6c77a2aa025d843be0f74568128068
  1388. internalID: -8246627260571945669
  1389. vertices: []
  1390. indices:
  1391. edges: []
  1392. weights: []
  1393. - serializedVersion: 2
  1394. name: workers_city_capital
  1395. rect:
  1396. serializedVersion: 2
  1397. x: 0
  1398. y: 960
  1399. width: 69
  1400. height: 65
  1401. alignment: 0
  1402. pivot: {x: 0.5, y: 0.5}
  1403. border: {x: 0, y: 0, z: 0, w: 0}
  1404. outline: []
  1405. physicsShape: []
  1406. tessellationDetail: 0
  1407. bones: []
  1408. spriteID: b32f1b9cf20a22842a506a3deca6ce00
  1409. internalID: 3121471347900928983
  1410. vertices: []
  1411. indices:
  1412. edges: []
  1413. weights: []
  1414. - serializedVersion: 2
  1415. name: food_small
  1416. rect:
  1417. serializedVersion: 2
  1418. x: 357
  1419. y: 952
  1420. width: 61
  1421. height: 68
  1422. alignment: 0
  1423. pivot: {x: 0.5, y: 0.5}
  1424. border: {x: 0, y: 0, z: 0, w: 0}
  1425. outline: []
  1426. physicsShape: []
  1427. tessellationDetail: 0
  1428. bones: []
  1429. spriteID: 77228c1a149c01c47bd9c44a2fbce206
  1430. internalID: 255080986811049931
  1431. vertices: []
  1432. indices:
  1433. edges: []
  1434. weights: []
  1435. - serializedVersion: 2
  1436. name: upgrade_small
  1437. rect:
  1438. serializedVersion: 2
  1439. x: 483
  1440. y: 959
  1441. width: 55
  1442. height: 65
  1443. alignment: 0
  1444. pivot: {x: 0.5, y: 0.5}
  1445. border: {x: 0, y: 0, z: 0, w: 0}
  1446. outline: []
  1447. physicsShape: []
  1448. tessellationDetail: 0
  1449. bones: []
  1450. spriteID: f55aebf2655497f4fae10f5f71b0f3a1
  1451. internalID: -8988441530965576436
  1452. vertices: []
  1453. indices:
  1454. edges: []
  1455. weights: []
  1456. - serializedVersion: 2
  1457. name: research_points_small
  1458. rect:
  1459. serializedVersion: 2
  1460. x: 162
  1461. y: 786
  1462. width: 56
  1463. height: 67
  1464. alignment: 0
  1465. pivot: {x: 0.5, y: 0.5}
  1466. border: {x: 0, y: 0, z: 0, w: 0}
  1467. outline: []
  1468. physicsShape: []
  1469. tessellationDetail: 0
  1470. bones: []
  1471. spriteID: bcf88ff28388b57408808d682fe07859
  1472. internalID: 6547572931748238266
  1473. vertices: []
  1474. indices:
  1475. edges: []
  1476. weights: []
  1477. - serializedVersion: 2
  1478. name: warning
  1479. rect:
  1480. serializedVersion: 2
  1481. x: 607
  1482. y: 969
  1483. width: 56
  1484. height: 49
  1485. alignment: 0
  1486. pivot: {x: 0.5, y: 0.5}
  1487. border: {x: 0, y: 0, z: 0, w: 0}
  1488. outline: []
  1489. physicsShape: []
  1490. tessellationDetail: 0
  1491. bones: []
  1492. spriteID: d004f272154a23ae0800000000000000
  1493. internalID: -1571012651542167539
  1494. vertices: []
  1495. indices:
  1496. edges: []
  1497. weights: []
  1498. - serializedVersion: 2
  1499. name: icon_bronze_bracelet
  1500. rect:
  1501. serializedVersion: 2
  1502. x: 342
  1503. y: 530
  1504. width: 75
  1505. height: 92
  1506. alignment: 0
  1507. pivot: {x: 0.5, y: 0.5}
  1508. border: {x: 0, y: 0, z: 0, w: 0}
  1509. outline: []
  1510. physicsShape: []
  1511. tessellationDetail: 0
  1512. bones: []
  1513. spriteID: 284f50bf40bef6460800000000000000
  1514. internalID: 7237261532831544450
  1515. vertices: []
  1516. indices:
  1517. edges: []
  1518. weights: []
  1519. - serializedVersion: 2
  1520. name: icon_alabaster_idol
  1521. rect:
  1522. serializedVersion: 2
  1523. x: 417
  1524. y: 530
  1525. width: 75
  1526. height: 92
  1527. alignment: 0
  1528. pivot: {x: 0.5, y: 0.5}
  1529. border: {x: 0, y: 0, z: 0, w: 0}
  1530. outline: []
  1531. physicsShape: []
  1532. tessellationDetail: 0
  1533. bones: []
  1534. spriteID: e3a7a3b4ae5453470800000000000000
  1535. internalID: 8373675954752092734
  1536. vertices: []
  1537. indices:
  1538. edges: []
  1539. weights: []
  1540. - serializedVersion: 2
  1541. name: icon_wool
  1542. rect:
  1543. serializedVersion: 2
  1544. x: 492
  1545. y: 531
  1546. width: 92
  1547. height: 92
  1548. alignment: 0
  1549. pivot: {x: 0.5, y: 0.5}
  1550. border: {x: 0, y: 0, z: 0, w: 0}
  1551. outline: []
  1552. physicsShape: []
  1553. tessellationDetail: 0
  1554. bones: []
  1555. spriteID: 52e4fe48266baf400800000000000000
  1556. internalID: 358799654582701605
  1557. vertices: []
  1558. indices:
  1559. edges: []
  1560. weights: []
  1561. - serializedVersion: 2
  1562. name: icon_flint
  1563. rect:
  1564. serializedVersion: 2
  1565. x: 584
  1566. y: 530
  1567. width: 82
  1568. height: 92
  1569. alignment: 0
  1570. pivot: {x: 0.5, y: 0.5}
  1571. border: {x: 0, y: 0, z: 0, w: 0}
  1572. outline: []
  1573. physicsShape: []
  1574. tessellationDetail: 0
  1575. bones: []
  1576. spriteID: 16e140fb16396f310800000000000000
  1577. internalID: 1438499179017281121
  1578. vertices: []
  1579. indices:
  1580. edges: []
  1581. weights: []
  1582. - serializedVersion: 2
  1583. name: icon_hide
  1584. rect:
  1585. serializedVersion: 2
  1586. x: 668
  1587. y: 531
  1588. width: 93
  1589. height: 90
  1590. alignment: 0
  1591. pivot: {x: 0.5, y: 0.5}
  1592. border: {x: 0, y: 0, z: 0, w: 0}
  1593. outline: []
  1594. physicsShape: []
  1595. tessellationDetail: 0
  1596. bones: []
  1597. spriteID: 5b173220d802ef150800000000000000
  1598. internalID: 5908195551155024309
  1599. vertices: []
  1600. indices:
  1601. edges: []
  1602. weights: []
  1603. - serializedVersion: 2
  1604. name: cta_recruit
  1605. rect:
  1606. serializedVersion: 2
  1607. x: 529
  1608. y: 638
  1609. width: 83
  1610. height: 100
  1611. alignment: 0
  1612. pivot: {x: 0.5, y: 0.5}
  1613. border: {x: 0, y: 0, z: 0, w: 0}
  1614. outline: []
  1615. physicsShape: []
  1616. tessellationDetail: 0
  1617. bones: []
  1618. spriteID: 6982a67cbbc75df50800000000000000
  1619. internalID: 6905562749588875414
  1620. vertices: []
  1621. indices:
  1622. edges: []
  1623. weights: []
  1624. - serializedVersion: 2
  1625. name: icon_food_black
  1626. rect:
  1627. serializedVersion: 2
  1628. x: 841
  1629. y: 533
  1630. width: 81
  1631. height: 90
  1632. alignment: 0
  1633. pivot: {x: 0.5, y: 0.5}
  1634. border: {x: 0, y: 0, z: 0, w: 0}
  1635. outline: []
  1636. physicsShape: []
  1637. tessellationDetail: 0
  1638. bones: []
  1639. spriteID: e11037035ef14d870800000000000000
  1640. internalID: 8706619048834826526
  1641. vertices: []
  1642. indices:
  1643. edges: []
  1644. weights: []
  1645. - serializedVersion: 2
  1646. name: irrigation_bonus
  1647. rect:
  1648. serializedVersion: 2
  1649. x: 546
  1650. y: 748
  1651. width: 60
  1652. height: 72
  1653. alignment: 0
  1654. pivot: {x: 0.5, y: 0.5}
  1655. border: {x: 0, y: 0, z: 0, w: 0}
  1656. outline: []
  1657. physicsShape: []
  1658. tessellationDetail: 0
  1659. bones: []
  1660. spriteID: 92ea07df3acc1ef80800000000000000
  1661. internalID: -8078951251822203351
  1662. vertices: []
  1663. indices:
  1664. edges: []
  1665. weights: []
  1666. - serializedVersion: 2
  1667. name: cta_linen_shirt
  1668. rect:
  1669. serializedVersion: 2
  1670. x: 60
  1671. y: 412
  1672. width: 75
  1673. height: 94
  1674. alignment: 0
  1675. pivot: {x: 0.5, y: 0.5}
  1676. border: {x: 0, y: 0, z: 0, w: 0}
  1677. outline: []
  1678. physicsShape: []
  1679. tessellationDetail: 0
  1680. bones: []
  1681. spriteID: fb1e512d8e42acdb0800000000000000
  1682. internalID: -4770960272869957185
  1683. vertices: []
  1684. indices:
  1685. edges: []
  1686. weights: []
  1687. - serializedVersion: 2
  1688. name: cta_marble_bust
  1689. rect:
  1690. serializedVersion: 2
  1691. x: 461
  1692. y: 415
  1693. width: 71
  1694. height: 93
  1695. alignment: 0
  1696. pivot: {x: 0.5, y: 0.5}
  1697. border: {x: 0, y: 0, z: 0, w: 0}
  1698. outline: []
  1699. physicsShape: []
  1700. tessellationDetail: 0
  1701. bones: []
  1702. spriteID: b3d8ad32038bcc280800000000000000
  1703. internalID: -9021633436630479557
  1704. vertices: []
  1705. indices:
  1706. edges: []
  1707. weights: []
  1708. - serializedVersion: 2
  1709. name: cta_golden_sphinx
  1710. rect:
  1711. serializedVersion: 2
  1712. x: 137
  1713. y: 413
  1714. width: 91
  1715. height: 92
  1716. alignment: 0
  1717. pivot: {x: 0.5, y: 0.5}
  1718. border: {x: 0, y: 0, z: 0, w: 0}
  1719. outline: []
  1720. physicsShape: []
  1721. tessellationDetail: 0
  1722. bones: []
  1723. spriteID: c3f79483720d180e0800000000000000
  1724. internalID: -2269303870351376580
  1725. vertices: []
  1726. indices:
  1727. edges: []
  1728. weights: []
  1729. - serializedVersion: 2
  1730. name: cta_papyrus
  1731. rect:
  1732. serializedVersion: 2
  1733. x: 231
  1734. y: 413
  1735. width: 92
  1736. height: 93
  1737. alignment: 0
  1738. pivot: {x: 0.5, y: 0.5}
  1739. border: {x: 0, y: 0, z: 0, w: 0}
  1740. outline: []
  1741. physicsShape: []
  1742. tessellationDetail: 0
  1743. bones: []
  1744. spriteID: a093a51b974528700800000000000000
  1745. internalID: 541087786881136906
  1746. vertices: []
  1747. indices:
  1748. edges: []
  1749. weights: []
  1750. - serializedVersion: 2
  1751. name: cta_ankh
  1752. rect:
  1753. serializedVersion: 2
  1754. x: 327
  1755. y: 417
  1756. width: 68
  1757. height: 93
  1758. alignment: 0
  1759. pivot: {x: 0.5, y: 0.5}
  1760. border: {x: 0, y: 0, z: 0, w: 0}
  1761. outline: []
  1762. physicsShape: []
  1763. tessellationDetail: 0
  1764. bones: []
  1765. spriteID: 4b0a8402b63a71a90800000000000000
  1766. internalID: -7343220986905845580
  1767. vertices: []
  1768. indices:
  1769. edges: []
  1770. weights: []
  1771. - serializedVersion: 2
  1772. name: cta_ceremonial_dress
  1773. rect:
  1774. serializedVersion: 2
  1775. x: 396
  1776. y: 417
  1777. width: 60
  1778. height: 93
  1779. alignment: 0
  1780. pivot: {x: 0.5, y: 0.5}
  1781. border: {x: 0, y: 0, z: 0, w: 0}
  1782. outline: []
  1783. physicsShape: []
  1784. tessellationDetail: 0
  1785. bones: []
  1786. spriteID: 9bffef2a5666b0dd0800000000000000
  1787. internalID: -2518806979871309895
  1788. vertices: []
  1789. indices:
  1790. edges: []
  1791. weights: []
  1792. - serializedVersion: 2
  1793. name: irrigation_0
  1794. rect:
  1795. serializedVersion: 2
  1796. x: 0
  1797. y: 325
  1798. width: 78
  1799. height: 84
  1800. alignment: 0
  1801. pivot: {x: 0.5, y: 0.5}
  1802. border: {x: 0, y: 0, z: 0, w: 0}
  1803. outline: []
  1804. physicsShape: []
  1805. tessellationDetail: 0
  1806. bones: []
  1807. spriteID: 09fe8ad096adcdb50800000000000000
  1808. internalID: 6619405697063382928
  1809. vertices: []
  1810. indices:
  1811. edges: []
  1812. weights: []
  1813. - serializedVersion: 2
  1814. name: irrigation_1
  1815. rect:
  1816. serializedVersion: 2
  1817. x: 79
  1818. y: 325
  1819. width: 78
  1820. height: 84
  1821. alignment: 0
  1822. pivot: {x: 0.5, y: 0.5}
  1823. border: {x: 0, y: 0, z: 0, w: 0}
  1824. outline: []
  1825. physicsShape: []
  1826. tessellationDetail: 0
  1827. bones: []
  1828. spriteID: aa2cb5f7bd69e75b0800000000000000
  1829. internalID: -5368687836300328278
  1830. vertices: []
  1831. indices:
  1832. edges: []
  1833. weights: []
  1834. - serializedVersion: 2
  1835. name: irrigation_2
  1836. rect:
  1837. serializedVersion: 2
  1838. x: 159
  1839. y: 325
  1840. width: 78
  1841. height: 84
  1842. alignment: 0
  1843. pivot: {x: 0.5, y: 0.5}
  1844. border: {x: 0, y: 0, z: 0, w: 0}
  1845. outline: []
  1846. physicsShape: []
  1847. tessellationDetail: 0
  1848. bones: []
  1849. spriteID: edd8ffd517c994410800000000000000
  1850. internalID: 1461871564780703198
  1851. vertices: []
  1852. indices:
  1853. edges: []
  1854. weights: []
  1855. - serializedVersion: 2
  1856. name: irrigation
  1857. rect:
  1858. serializedVersion: 2
  1859. x: 237
  1860. y: 325
  1861. width: 78
  1862. height: 84
  1863. alignment: 0
  1864. pivot: {x: 0.5, y: 0.5}
  1865. border: {x: 0, y: 0, z: 0, w: 0}
  1866. outline: []
  1867. physicsShape: []
  1868. tessellationDetail: 0
  1869. bones: []
  1870. spriteID: 31890361c6815edd0800000000000000
  1871. internalID: -2457531169152919533
  1872. vertices: []
  1873. indices:
  1874. edges: []
  1875. weights: []
  1876. - serializedVersion: 2
  1877. name: cta_iron_pendant
  1878. rect:
  1879. serializedVersion: 2
  1880. x: 721
  1881. y: 417
  1882. width: 85
  1883. height: 93
  1884. alignment: 0
  1885. pivot: {x: 0.5, y: 0.5}
  1886. border: {x: 0, y: 0, z: 0, w: 0}
  1887. outline: []
  1888. physicsShape: []
  1889. tessellationDetail: 0
  1890. bones: []
  1891. spriteID: a018bfd099a8f8c80800000000000000
  1892. internalID: -8318277596760801014
  1893. vertices: []
  1894. indices:
  1895. edges: []
  1896. weights: []
  1897. - serializedVersion: 2
  1898. name: cta_gold_ore
  1899. rect:
  1900. serializedVersion: 2
  1901. x: 537
  1902. y: 417
  1903. width: 79
  1904. height: 93
  1905. alignment: 0
  1906. pivot: {x: 0.5, y: 0.5}
  1907. border: {x: 0, y: 0, z: 0, w: 0}
  1908. outline: []
  1909. physicsShape: []
  1910. tessellationDetail: 0
  1911. bones: []
  1912. spriteID: 5bb1641c76a426d10800000000000000
  1913. internalID: 2117336584302238645
  1914. vertices: []
  1915. indices:
  1916. edges: []
  1917. weights: []
  1918. - serializedVersion: 2
  1919. name: cta_papyrus_scroll
  1920. rect:
  1921. serializedVersion: 2
  1922. x: 616
  1923. y: 417
  1924. width: 104
  1925. height: 93
  1926. alignment: 0
  1927. pivot: {x: 0.5, y: 0.5}
  1928. border: {x: 0, y: 0, z: 0, w: 0}
  1929. outline: []
  1930. physicsShape: []
  1931. tessellationDetail: 0
  1932. bones: []
  1933. spriteID: 559229b7f3c1edb90800000000000000
  1934. internalID: -7215298494019262123
  1935. vertices: []
  1936. indices:
  1937. edges: []
  1938. weights: []
  1939. - serializedVersion: 2
  1940. name: cta_research_points
  1941. rect:
  1942. serializedVersion: 2
  1943. x: 808
  1944. y: 417
  1945. width: 80
  1946. height: 93
  1947. alignment: 0
  1948. pivot: {x: 0.5, y: 0.5}
  1949. border: {x: 0, y: 0, z: 0, w: 0}
  1950. outline: []
  1951. physicsShape: []
  1952. tessellationDetail: 0
  1953. bones: []
  1954. spriteID: aeee281824ae06870800000000000000
  1955. internalID: 8674190453677158122
  1956. vertices: []
  1957. indices:
  1958. edges: []
  1959. weights: []
  1960. - serializedVersion: 2
  1961. name: workers_trading_big
  1962. rect:
  1963. serializedVersion: 2
  1964. x: 810
  1965. y: 670
  1966. width: 98
  1967. height: 93
  1968. alignment: 0
  1969. pivot: {x: 0.5, y: 0.5}
  1970. border: {x: 0, y: 0, z: 0, w: 0}
  1971. outline: []
  1972. physicsShape: []
  1973. tessellationDetail: 0
  1974. bones: []
  1975. spriteID: f8df4fa0a4a4db410800000000000000
  1976. internalID: 1494432333228735887
  1977. vertices: []
  1978. indices:
  1979. edges: []
  1980. weights: []
  1981. - serializedVersion: 2
  1982. name: cta_silver_ring
  1983. rect:
  1984. serializedVersion: 2
  1985. x: 889
  1986. y: 419
  1987. width: 69
  1988. height: 94
  1989. alignment: 0
  1990. pivot: {x: 0.5, y: 0.5}
  1991. border: {x: 0, y: 0, z: 0, w: 0}
  1992. outline: []
  1993. physicsShape: []
  1994. tessellationDetail: 0
  1995. bones: []
  1996. spriteID: 6237af3b49c3b7aa0800000000000000
  1997. internalID: -6162265055754030298
  1998. vertices: []
  1999. indices:
  2000. edges: []
  2001. weights: []
  2002. - serializedVersion: 2
  2003. name: cta_toga
  2004. rect:
  2005. serializedVersion: 2
  2006. x: 824
  2007. y: 318
  2008. width: 65
  2009. height: 95
  2010. alignment: 0
  2011. pivot: {x: 0.5, y: 0.5}
  2012. border: {x: 0, y: 0, z: 0, w: 0}
  2013. outline: []
  2014. physicsShape: []
  2015. tessellationDetail: 0
  2016. bones: []
  2017. spriteID: 10b944dc87cc6ab90800000000000000
  2018. internalID: -7230867332484785407
  2019. vertices: []
  2020. indices:
  2021. edges: []
  2022. weights: []
  2023. - serializedVersion: 2
  2024. name: cta_column
  2025. rect:
  2026. serializedVersion: 2
  2027. x: 892
  2028. y: 320
  2029. width: 68
  2030. height: 92
  2031. alignment: 0
  2032. pivot: {x: 0.5, y: 0.5}
  2033. border: {x: 0, y: 0, z: 0, w: 0}
  2034. outline: []
  2035. physicsShape: []
  2036. tessellationDetail: 0
  2037. bones: []
  2038. spriteID: dbcba9e1b8d58e770800000000000000
  2039. internalID: 8640258737205591229
  2040. vertices: []
  2041. indices:
  2042. edges: []
  2043. weights: []
  2044. - serializedVersion: 2
  2045. name: deben
  2046. rect:
  2047. serializedVersion: 2
  2048. x: 752
  2049. y: 318
  2050. width: 71
  2051. height: 92
  2052. alignment: 0
  2053. pivot: {x: 0.5, y: 0.5}
  2054. border: {x: 0, y: 0, z: 0, w: 0}
  2055. outline: []
  2056. physicsShape: []
  2057. tessellationDetail: 0
  2058. bones: []
  2059. spriteID: c0d4a974d2bacf190800000000000000
  2060. internalID: -7927273033115742964
  2061. vertices: []
  2062. indices:
  2063. edges: []
  2064. weights: []
  2065. - serializedVersion: 2
  2066. name: cta_gold_laurel
  2067. rect:
  2068. serializedVersion: 2
  2069. x: 648
  2070. y: 323
  2071. width: 100
  2072. height: 89
  2073. alignment: 0
  2074. pivot: {x: 0.5, y: 0.5}
  2075. border: {x: 0, y: 0, z: 0, w: 0}
  2076. outline: []
  2077. physicsShape: []
  2078. tessellationDetail: 0
  2079. bones: []
  2080. spriteID: e7187004d0c26e990800000000000000
  2081. internalID: -7357144505842695810
  2082. vertices: []
  2083. indices:
  2084. edges: []
  2085. weights: []
  2086. - serializedVersion: 2
  2087. name: cta_tunic
  2088. rect:
  2089. serializedVersion: 2
  2090. x: 561
  2091. y: 312
  2092. width: 80
  2093. height: 100
  2094. alignment: 0
  2095. pivot: {x: 0.5, y: 0.5}
  2096. border: {x: 0, y: 0, z: 0, w: 0}
  2097. outline: []
  2098. physicsShape: []
  2099. tessellationDetail: 0
  2100. bones: []
  2101. spriteID: 76f6852b6702be200800000000000000
  2102. internalID: 210297501773229927
  2103. vertices: []
  2104. indices:
  2105. edges: []
  2106. weights: []
  2107. - serializedVersion: 2
  2108. name: cta_stone_tablet
  2109. rect:
  2110. serializedVersion: 2
  2111. x: 482
  2112. y: 317
  2113. width: 76
  2114. height: 92
  2115. alignment: 0
  2116. pivot: {x: 0.5, y: 0.5}
  2117. border: {x: 0, y: 0, z: 0, w: 0}
  2118. outline: []
  2119. physicsShape: []
  2120. tessellationDetail: 0
  2121. bones: []
  2122. spriteID: eb907ca365d861130800000000000000
  2123. internalID: 3537169958838929854
  2124. vertices: []
  2125. indices:
  2126. edges: []
  2127. weights: []
  2128. - serializedVersion: 2
  2129. name: blueprint
  2130. rect:
  2131. serializedVersion: 2
  2132. x: 1
  2133. y: 241
  2134. width: 70
  2135. height: 72
  2136. alignment: 0
  2137. pivot: {x: 0.5, y: 0.5}
  2138. border: {x: 0, y: 0, z: 0, w: 0}
  2139. outline: []
  2140. physicsShape: []
  2141. tessellationDetail: 0
  2142. bones: []
  2143. spriteID: 5c554d8b0fa018030800000000000000
  2144. internalID: 3495086814825567685
  2145. vertices: []
  2146. indices:
  2147. edges: []
  2148. weights: []
  2149. - serializedVersion: 2
  2150. name: workers_big_city_egypt
  2151. rect:
  2152. serializedVersion: 2
  2153. x: 914
  2154. y: 670
  2155. width: 94
  2156. height: 94
  2157. alignment: 0
  2158. pivot: {x: 0.5, y: 0.5}
  2159. border: {x: 0, y: 0, z: 0, w: 0}
  2160. outline: []
  2161. physicsShape: []
  2162. tessellationDetail: 0
  2163. bones: []
  2164. spriteID: 1aca838056548cc00800000000000000
  2165. internalID: 921062424029211809
  2166. vertices: []
  2167. indices:
  2168. edges: []
  2169. weights: []
  2170. - serializedVersion: 2
  2171. name: trade
  2172. rect:
  2173. serializedVersion: 2
  2174. x: 907
  2175. y: 947
  2176. width: 86
  2177. height: 71
  2178. alignment: 0
  2179. pivot: {x: 0.5, y: 0.5}
  2180. border: {x: 0, y: 0, z: 0, w: 0}
  2181. outline: []
  2182. physicsShape: []
  2183. tessellationDetail: 0
  2184. bones: []
  2185. spriteID: fe3bc2658b178c0d0800000000000000
  2186. internalID: -3402344481944718353
  2187. vertices: []
  2188. indices:
  2189. edges: []
  2190. weights: []
  2191. - serializedVersion: 2
  2192. name: InlineIcons_32
  2193. rect:
  2194. serializedVersion: 2
  2195. x: 671
  2196. y: 953
  2197. width: 65
  2198. height: 71
  2199. alignment: 0
  2200. pivot: {x: 0.5, y: 0.5}
  2201. border: {x: 0, y: 0, z: 0, w: 0}
  2202. outline: []
  2203. physicsShape: []
  2204. tessellationDetail: 0
  2205. bones: []
  2206. spriteID: 6c815560b45c2ae60800000000000000
  2207. internalID: 7972151216418658502
  2208. vertices: []
  2209. indices:
  2210. edges: []
  2211. weights: []
  2212. - serializedVersion: 2
  2213. name: wonders
  2214. rect:
  2215. serializedVersion: 2
  2216. x: 77
  2217. y: 240
  2218. width: 101
  2219. height: 72
  2220. alignment: 0
  2221. pivot: {x: 0.5, y: 0.5}
  2222. border: {x: 0, y: 0, z: 0, w: 0}
  2223. outline: []
  2224. physicsShape: []
  2225. tessellationDetail: 0
  2226. bones: []
  2227. spriteID: 291532712106a7640800000000000000
  2228. internalID: 5078477160627523986
  2229. vertices: []
  2230. indices:
  2231. edges: []
  2232. weights: []
  2233. - serializedVersion: 2
  2234. name: unit_cavalry
  2235. rect:
  2236. serializedVersion: 2
  2237. x: 182
  2238. y: 240
  2239. width: 71
  2240. height: 72
  2241. alignment: 0
  2242. pivot: {x: 0.5, y: 0.5}
  2243. border: {x: 0, y: 0, z: 0, w: 0}
  2244. outline: []
  2245. physicsShape: []
  2246. tessellationDetail: 0
  2247. bones: []
  2248. spriteID: 503270cf6d74819f0800000000000000
  2249. internalID: -497568770147540219
  2250. vertices: []
  2251. indices:
  2252. edges: []
  2253. weights: []
  2254. - serializedVersion: 2
  2255. name: unit_range
  2256. rect:
  2257. serializedVersion: 2
  2258. x: 256
  2259. y: 242
  2260. width: 68
  2261. height: 67
  2262. alignment: 0
  2263. pivot: {x: 0.5, y: 0.5}
  2264. border: {x: 0, y: 0, z: 0, w: 0}
  2265. outline: []
  2266. physicsShape: []
  2267. tessellationDetail: 0
  2268. bones: []
  2269. spriteID: 6c4ced92ce00eca40800000000000000
  2270. internalID: 5390246818323809478
  2271. vertices: []
  2272. indices:
  2273. edges: []
  2274. weights: []
  2275. - serializedVersion: 2
  2276. name: unit_melee
  2277. rect:
  2278. serializedVersion: 2
  2279. x: 330
  2280. y: 244
  2281. width: 57
  2282. height: 65
  2283. alignment: 0
  2284. pivot: {x: 0.5, y: 0.5}
  2285. border: {x: 0, y: 0, z: 0, w: 0}
  2286. outline: []
  2287. physicsShape: []
  2288. tessellationDetail: 0
  2289. bones: []
  2290. spriteID: 38cdb5df19ea3d120800000000000000
  2291. internalID: 2437483765381717123
  2292. vertices: []
  2293. indices:
  2294. edges: []
  2295. weights: []
  2296. - serializedVersion: 2
  2297. name: commander
  2298. rect:
  2299. serializedVersion: 2
  2300. x: 391
  2301. y: 240
  2302. width: 103
  2303. height: 71
  2304. alignment: 0
  2305. pivot: {x: 0.5, y: 0.5}
  2306. border: {x: 0, y: 0, z: 0, w: 0}
  2307. outline: []
  2308. physicsShape: []
  2309. tessellationDetail: 0
  2310. bones: []
  2311. spriteID: b893fedb9208984b0800000000000000
  2312. internalID: -5437674158304577141
  2313. vertices: []
  2314. indices:
  2315. edges: []
  2316. weights: []
  2317. - serializedVersion: 2
  2318. name: icon_trade token
  2319. rect:
  2320. serializedVersion: 2
  2321. x: 928
  2322. y: 536
  2323. width: 87
  2324. height: 87
  2325. alignment: 0
  2326. pivot: {x: 0.5, y: 0.5}
  2327. border: {x: 0, y: 0, z: 0, w: 0}
  2328. outline: []
  2329. physicsShape: []
  2330. tessellationDetail: 0
  2331. bones: []
  2332. spriteID: 2f7698e37e946a1b0800000000000000
  2333. internalID: -5645743825326872590
  2334. vertices: []
  2335. indices:
  2336. edges: []
  2337. weights: []
  2338. - serializedVersion: 2
  2339. name: cta_silk_threads
  2340. rect:
  2341. serializedVersion: 2
  2342. x: 960
  2343. y: 320
  2344. width: 50
  2345. height: 93
  2346. alignment: 0
  2347. pivot: {x: 0.5, y: 0.5}
  2348. border: {x: 0, y: 0, z: 0, w: 0}
  2349. outline: []
  2350. physicsShape: []
  2351. tessellationDetail: 0
  2352. bones: []
  2353. spriteID: a8bd62dc3b2890390800000000000000
  2354. internalID: -7851600766591116406
  2355. vertices: []
  2356. indices:
  2357. edges: []
  2358. weights: []
  2359. - serializedVersion: 2
  2360. name: cta_rice
  2361. rect:
  2362. serializedVersion: 2
  2363. x: 502
  2364. y: 212
  2365. width: 104
  2366. height: 92
  2367. alignment: 0
  2368. pivot: {x: 0.5, y: 0.5}
  2369. border: {x: 0, y: 0, z: 0, w: 0}
  2370. outline: []
  2371. physicsShape: []
  2372. tessellationDetail: 0
  2373. bones: []
  2374. spriteID: c4278c9598ccbb8d0800000000000000
  2375. internalID: -2829443050583330228
  2376. vertices: []
  2377. indices:
  2378. edges: []
  2379. weights: []
  2380. - serializedVersion: 2
  2381. name: cta_silk
  2382. rect:
  2383. serializedVersion: 2
  2384. x: 606
  2385. y: 212
  2386. width: 70
  2387. height: 93
  2388. alignment: 0
  2389. pivot: {x: 0.5, y: 0.5}
  2390. border: {x: 0, y: 0, z: 0, w: 0}
  2391. outline: []
  2392. physicsShape: []
  2393. tessellationDetail: 0
  2394. bones: []
  2395. spriteID: af9a091719559ce30800000000000000
  2396. internalID: 4524241383834298874
  2397. vertices: []
  2398. indices:
  2399. edges: []
  2400. weights: []
  2401. - serializedVersion: 2
  2402. name: cta_porcelain
  2403. rect:
  2404. serializedVersion: 2
  2405. x: 676
  2406. y: 215
  2407. width: 59
  2408. height: 92
  2409. alignment: 0
  2410. pivot: {x: 0.5, y: 0.5}
  2411. border: {x: 0, y: 0, z: 0, w: 0}
  2412. outline: []
  2413. physicsShape: []
  2414. tessellationDetail: 0
  2415. bones: []
  2416. spriteID: 20cda18cafc93c850800000000000000
  2417. internalID: 6396128496709196802
  2418. vertices: []
  2419. indices:
  2420. edges: []
  2421. weights: []
  2422. - serializedVersion: 2
  2423. name: cta_clay
  2424. rect:
  2425. serializedVersion: 2
  2426. x: 736
  2427. y: 221
  2428. width: 103
  2429. height: 72
  2430. alignment: 0
  2431. pivot: {x: 0.5, y: 0.5}
  2432. border: {x: 0, y: 0, z: 0, w: 0}
  2433. outline: []
  2434. physicsShape: []
  2435. tessellationDetail: 0
  2436. bones: []
  2437. spriteID: c380568df58362990800000000000000
  2438. internalID: -7411174152488024004
  2439. vertices: []
  2440. indices:
  2441. edges: []
  2442. weights: []
  2443. - serializedVersion: 2
  2444. name: cta_moth_cocoons
  2445. rect:
  2446. serializedVersion: 2
  2447. x: 840
  2448. y: 208
  2449. width: 92
  2450. height: 92
  2451. alignment: 0
  2452. pivot: {x: 0.5, y: 0.5}
  2453. border: {x: 0, y: 0, z: 0, w: 0}
  2454. outline: []
  2455. physicsShape: []
  2456. tessellationDetail: 0
  2457. bones: []
  2458. spriteID: 2cb61275e8ba16ff0800000000000000
  2459. internalID: -44565893461480510
  2460. vertices: []
  2461. indices:
  2462. edges: []
  2463. weights: []
  2464. - serializedVersion: 2
  2465. name: cta_kaolin
  2466. rect:
  2467. serializedVersion: 2
  2468. x: 935
  2469. y: 211
  2470. width: 78
  2471. height: 92
  2472. alignment: 0
  2473. pivot: {x: 0.5, y: 0.5}
  2474. border: {x: 0, y: 0, z: 0, w: 0}
  2475. outline: []
  2476. physicsShape: []
  2477. tessellationDetail: 0
  2478. bones: []
  2479. spriteID: 6aee04f259ef18440800000000000000
  2480. internalID: 4936506583271141030
  2481. vertices: []
  2482. indices:
  2483. edges: []
  2484. weights: []
  2485. - serializedVersion: 2
  2486. name: cta_wu_zhu
  2487. rect:
  2488. serializedVersion: 2
  2489. x: 0
  2490. y: 141
  2491. width: 96
  2492. height: 98
  2493. alignment: 0
  2494. pivot: {x: 0.5, y: 0.5}
  2495. border: {x: 0, y: 0, z: 0, w: 0}
  2496. outline: []
  2497. physicsShape: []
  2498. tessellationDetail: 0
  2499. bones: []
  2500. spriteID: 9b879add7e63f4d80800000000000000
  2501. internalID: -8264326421717354311
  2502. vertices: []
  2503. indices:
  2504. edges: []
  2505. weights: []
  2506. - serializedVersion: 2
  2507. name: cta_coins
  2508. rect:
  2509. serializedVersion: 2
  2510. x: 101
  2511. y: 146
  2512. width: 82
  2513. height: 90
  2514. alignment: 0
  2515. pivot: {x: 0.5, y: 0.5}
  2516. border: {x: 0, y: 0, z: 0, w: 0}
  2517. outline: []
  2518. physicsShape: []
  2519. tessellationDetail: 0
  2520. bones: []
  2521. spriteID: 94d438ac8bfd948b0800000000000000
  2522. internalID: -5167353112666354359
  2523. vertices: []
  2524. indices:
  2525. edges: []
  2526. weights: []
  2527. - serializedVersion: 2
  2528. name: cta_mosaic
  2529. rect:
  2530. serializedVersion: 2
  2531. x: 192
  2532. y: 146
  2533. width: 87
  2534. height: 92
  2535. alignment: 0
  2536. pivot: {x: 0.5, y: 0.5}
  2537. border: {x: 0, y: 0, z: 0, w: 0}
  2538. outline: []
  2539. physicsShape: []
  2540. tessellationDetail: 0
  2541. bones: []
  2542. spriteID: 923ff8d15838aade0800000000000000
  2543. internalID: -1321098932929957079
  2544. vertices: []
  2545. indices:
  2546. edges: []
  2547. weights: []
  2548. - serializedVersion: 2
  2549. name: cta_goblet
  2550. rect:
  2551. serializedVersion: 2
  2552. x: 280
  2553. y: 145
  2554. width: 84
  2555. height: 93
  2556. alignment: 0
  2557. pivot: {x: 0.5, y: 0.5}
  2558. border: {x: 0, y: 0, z: 0, w: 0}
  2559. outline: []
  2560. physicsShape: []
  2561. tessellationDetail: 0
  2562. bones: []
  2563. spriteID: 3bbe7716eb4ef8760800000000000000
  2564. internalID: 7462434613906369459
  2565. vertices: []
  2566. indices:
  2567. edges: []
  2568. weights: []
  2569. - serializedVersion: 2
  2570. name: cta_cape
  2571. rect:
  2572. serializedVersion: 2
  2573. x: 367
  2574. y: 146
  2575. width: 71
  2576. height: 92
  2577. alignment: 0
  2578. pivot: {x: 0.5, y: 0.5}
  2579. border: {x: 0, y: 0, z: 0, w: 0}
  2580. outline: []
  2581. physicsShape: []
  2582. tessellationDetail: 0
  2583. bones: []
  2584. spriteID: 4b6ed791e5de10370800000000000000
  2585. internalID: 8287165777748813492
  2586. vertices: []
  2587. indices:
  2588. edges: []
  2589. weights: []
  2590. - serializedVersion: 2
  2591. name: wu_zhu
  2592. rect:
  2593. serializedVersion: 2
  2594. x: 103
  2595. y: 957
  2596. width: 63
  2597. height: 66
  2598. alignment: 0
  2599. pivot: {x: 0.5, y: 0.5}
  2600. border: {x: 0, y: 0, z: 0, w: 0}
  2601. outline: []
  2602. physicsShape: []
  2603. tessellationDetail: 0
  2604. bones: []
  2605. spriteID: 991ecded4f1634290800000000000000
  2606. internalID: -7907368816393526887
  2607. vertices: []
  2608. indices:
  2609. edges: []
  2610. weights: []
  2611. - serializedVersion: 2
  2612. name: cta_cocoa
  2613. rect:
  2614. serializedVersion: 2
  2615. x: 451
  2616. y: 119
  2617. width: 56
  2618. height: 92
  2619. alignment: 0
  2620. pivot: {x: 0.5, y: 0.5}
  2621. border: {x: 0, y: 0, z: 0, w: 0}
  2622. outline: []
  2623. physicsShape: []
  2624. tessellationDetail: 0
  2625. bones: []
  2626. spriteID: 61c2cdd61eeea8050800000000000000
  2627. internalID: 5803713721798503446
  2628. vertices: []
  2629. indices:
  2630. edges: []
  2631. weights: []
  2632. - serializedVersion: 2
  2633. name: cta_jade
  2634. rect:
  2635. serializedVersion: 2
  2636. x: 510
  2637. y: 119
  2638. width: 64
  2639. height: 91
  2640. alignment: 0
  2641. pivot: {x: 0.5, y: 0.5}
  2642. border: {x: 0, y: 0, z: 0, w: 0}
  2643. outline: []
  2644. physicsShape: []
  2645. tessellationDetail: 0
  2646. bones: []
  2647. spriteID: 443e4263dea44f850800000000000000
  2648. internalID: 6409830552331150148
  2649. vertices: []
  2650. indices:
  2651. edges: []
  2652. weights: []
  2653. - serializedVersion: 2
  2654. name: cta_obsidian
  2655. rect:
  2656. serializedVersion: 2
  2657. x: 578
  2658. y: 119
  2659. width: 65
  2660. height: 92
  2661. alignment: 0
  2662. pivot: {x: 0.5, y: 0.5}
  2663. border: {x: 0, y: 0, z: 0, w: 0}
  2664. outline: []
  2665. physicsShape: []
  2666. tessellationDetail: 0
  2667. bones: []
  2668. spriteID: a031324235268c440800000000000000
  2669. internalID: 4956319499149316874
  2670. vertices: []
  2671. indices:
  2672. edges: []
  2673. weights: []
  2674. - serializedVersion: 2
  2675. name: cta_feather
  2676. rect:
  2677. serializedVersion: 2
  2678. x: 646
  2679. y: 119
  2680. width: 42
  2681. height: 92
  2682. alignment: 0
  2683. pivot: {x: 0.5, y: 0.5}
  2684. border: {x: 0, y: 0, z: 0, w: 0}
  2685. outline: []
  2686. physicsShape: []
  2687. tessellationDetail: 0
  2688. bones: []
  2689. spriteID: 440dd0a21b0498970800000000000000
  2690. internalID: 8757602080057577540
  2691. vertices: []
  2692. indices:
  2693. edges: []
  2694. weights: []
  2695. - serializedVersion: 2
  2696. name: cta_priest
  2697. rect:
  2698. serializedVersion: 2
  2699. x: 696
  2700. y: 126
  2701. width: 76
  2702. height: 85
  2703. alignment: 0
  2704. pivot: {x: 0.5, y: 0.5}
  2705. border: {x: 0, y: 0, z: 0, w: 0}
  2706. outline: []
  2707. physicsShape: []
  2708. tessellationDetail: 0
  2709. bones: []
  2710. spriteID: 091260393e7f67e70800000000000000
  2711. internalID: 9112743452827066768
  2712. vertices: []
  2713. indices:
  2714. edges: []
  2715. weights: []
  2716. - serializedVersion: 2
  2717. name: cta_ancestor_mask
  2718. rect:
  2719. serializedVersion: 2
  2720. x: 844
  2721. y: 114
  2722. width: 87
  2723. height: 92
  2724. alignment: 0
  2725. pivot: {x: 0.5, y: 0.5}
  2726. border: {x: 0, y: 0, z: 0, w: 0}
  2727. outline: []
  2728. physicsShape: []
  2729. tessellationDetail: 0
  2730. bones: []
  2731. spriteID: eab13bd9b5d3768b0800000000000000
  2732. internalID: -5159087384432534610
  2733. vertices: []
  2734. indices:
  2735. edges: []
  2736. weights: []
  2737. - serializedVersion: 2
  2738. name: cta_calendar_stone
  2739. rect:
  2740. serializedVersion: 2
  2741. x: 933
  2742. y: 114
  2743. width: 91
  2744. height: 92
  2745. alignment: 0
  2746. pivot: {x: 0.5, y: 0.5}
  2747. border: {x: 0, y: 0, z: 0, w: 0}
  2748. outline: []
  2749. physicsShape: []
  2750. tessellationDetail: 0
  2751. bones: []
  2752. spriteID: 32af4f63cd8317870800000000000000
  2753. internalID: 8678780475385641507
  2754. vertices: []
  2755. indices:
  2756. edges: []
  2757. weights: []
  2758. - serializedVersion: 2
  2759. name: cta_ritual_dagger
  2760. rect:
  2761. serializedVersion: 2
  2762. x: 1
  2763. y: 48
  2764. width: 66
  2765. height: 92
  2766. alignment: 0
  2767. pivot: {x: 0.5, y: 0.5}
  2768. border: {x: 0, y: 0, z: 0, w: 0}
  2769. outline: []
  2770. physicsShape: []
  2771. tessellationDetail: 0
  2772. bones: []
  2773. spriteID: 0eb051a5d919be9b0800000000000000
  2774. internalID: -5049782452158657568
  2775. vertices: []
  2776. indices:
  2777. edges: []
  2778. weights: []
  2779. - serializedVersion: 2
  2780. name: cta_headdress
  2781. rect:
  2782. serializedVersion: 2
  2783. x: 72
  2784. y: 48
  2785. width: 100
  2786. height: 92
  2787. alignment: 0
  2788. pivot: {x: 0.5, y: 0.5}
  2789. border: {x: 0, y: 0, z: 0, w: 0}
  2790. outline: []
  2791. physicsShape: []
  2792. tessellationDetail: 0
  2793. bones: []
  2794. spriteID: dfe54e86e43644860800000000000000
  2795. internalID: 7513239266779225853
  2796. vertices: []
  2797. indices:
  2798. edges: []
  2799. weights: []
  2800. - serializedVersion: 2
  2801. name: cta_suns_blessing
  2802. rect:
  2803. serializedVersion: 2
  2804. x: 173
  2805. y: 48
  2806. width: 90
  2807. height: 92
  2808. alignment: 0
  2809. pivot: {x: 0.5, y: 0.5}
  2810. border: {x: 0, y: 0, z: 0, w: 0}
  2811. outline: []
  2812. physicsShape: []
  2813. tessellationDetail: 0
  2814. bones: []
  2815. spriteID: 2abb924d8baa758a0800000000000000
  2816. internalID: -6316392241553622110
  2817. vertices: []
  2818. indices:
  2819. edges: []
  2820. weights: []
  2821. - serializedVersion: 2
  2822. name: ranking
  2823. rect:
  2824. serializedVersion: 2
  2825. x: 922
  2826. y: 38
  2827. width: 102
  2828. height: 72
  2829. alignment: 0
  2830. pivot: {x: 0.5, y: 0.5}
  2831. border: {x: 0, y: 0, z: 0, w: 0}
  2832. outline: []
  2833. physicsShape: []
  2834. tessellationDetail: 0
  2835. bones: []
  2836. spriteID: 47c1992a50cbaf550800000000000000
  2837. internalID: 6195470969790340212
  2838. vertices: []
  2839. indices:
  2840. edges: []
  2841. weights: []
  2842. - serializedVersion: 2
  2843. name: ebc_hydra
  2844. rect:
  2845. serializedVersion: 2
  2846. x: 267
  2847. y: 42
  2848. width: 108
  2849. height: 98
  2850. alignment: 0
  2851. pivot: {x: 0.5, y: 0.5}
  2852. border: {x: 0, y: 0, z: 0, w: 0}
  2853. outline: []
  2854. physicsShape: []
  2855. tessellationDetail: 0
  2856. bones: []
  2857. spriteID: b9dbd95c267d9ecb0800000000000000
  2858. internalID: -4834095905783300709
  2859. vertices: []
  2860. indices:
  2861. edges: []
  2862. weights: []
  2863. - serializedVersion: 2
  2864. name: ath_attempt
  2865. rect:
  2866. serializedVersion: 2
  2867. x: 324
  2868. y: 330
  2869. width: 62
  2870. height: 76
  2871. alignment: 0
  2872. pivot: {x: 0.5, y: 0.5}
  2873. border: {x: 0, y: 0, z: 0, w: 0}
  2874. outline: []
  2875. physicsShape: []
  2876. tessellationDetail: 0
  2877. bones: []
  2878. spriteID: ab75509f26c199a60800000000000000
  2879. internalID: 7681201850867341242
  2880. vertices: []
  2881. indices:
  2882. edges: []
  2883. weights: []
  2884. - serializedVersion: 2
  2885. name: cta_obsidianjade
  2886. rect:
  2887. serializedVersion: 2
  2888. x: 529
  2889. y: 16
  2890. width: 105
  2891. height: 101
  2892. alignment: 0
  2893. pivot: {x: 0.5, y: 0.5}
  2894. border: {x: 0, y: 0, z: 0, w: 0}
  2895. outline: []
  2896. physicsShape: []
  2897. tessellationDetail: 0
  2898. bones: []
  2899. spriteID: 404903f17f5d04e90800000000000000
  2900. internalID: -7043394559850540028
  2901. vertices: []
  2902. indices:
  2903. edges: []
  2904. weights: []
  2905. - serializedVersion: 2
  2906. name: cta_obsidiancalendarancestormask
  2907. rect:
  2908. serializedVersion: 2
  2909. x: 637
  2910. y: 14
  2911. width: 141
  2912. height: 100
  2913. alignment: 0
  2914. pivot: {x: 0.5, y: 0.5}
  2915. border: {x: 0, y: 0, z: 0, w: 0}
  2916. outline: []
  2917. physicsShape: []
  2918. tessellationDetail: 0
  2919. bones: []
  2920. spriteID: ca132d6fc0c6681c0800000000000000
  2921. internalID: -4501791974573854292
  2922. vertices: []
  2923. indices:
  2924. edges: []
  2925. weights: []
  2926. - serializedVersion: 2
  2927. name: cocoa
  2928. rect:
  2929. serializedVersion: 2
  2930. x: 232
  2931. y: 958
  2932. width: 38
  2933. height: 64
  2934. alignment: 0
  2935. pivot: {x: 0.5, y: 0.5}
  2936. border: {x: 0, y: 0, z: 0, w: 0}
  2937. outline: []
  2938. physicsShape: []
  2939. tessellationDetail: 0
  2940. bones: []
  2941. spriteID: 3810325ca7533c450800000000000000
  2942. internalID: 6107784321054212483
  2943. vertices: []
  2944. indices:
  2945. edges: []
  2946. weights: []
  2947. - serializedVersion: 2
  2948. name: cta_pepper
  2949. rect:
  2950. serializedVersion: 2
  2951. x: 375
  2952. y: 35
  2953. width: 86
  2954. height: 93
  2955. alignment: 0
  2956. pivot: {x: 0.5, y: 0.5}
  2957. border: {x: 0, y: 0, z: 0, w: 0}
  2958. outline: []
  2959. physicsShape: []
  2960. tessellationDetail: 0
  2961. bones: []
  2962. spriteID: 6ac997d300a992c40800000000000000
  2963. internalID: 5488086946749717670
  2964. vertices: []
  2965. indices:
  2966. edges: []
  2967. weights: []
  2968. - serializedVersion: 2
  2969. name: cta_planks
  2970. rect:
  2971. serializedVersion: 2
  2972. x: 779
  2973. y: 24
  2974. width: 90
  2975. height: 83
  2976. alignment: 0
  2977. pivot: {x: 0.5, y: 0.5}
  2978. border: {x: 0, y: 0, z: 0, w: 0}
  2979. outline: []
  2980. physicsShape: []
  2981. tessellationDetail: 0
  2982. bones: []
  2983. spriteID: 844e6af6dca02d8e0800000000000000
  2984. internalID: -1670260634343250872
  2985. vertices: []
  2986. indices:
  2987. edges: []
  2988. weights: []
  2989. - serializedVersion: 2
  2990. name: cta_salt
  2991. rect:
  2992. serializedVersion: 2
  2993. x: 3
  2994. y: 1024
  2995. width: 89
  2996. height: 104
  2997. alignment: 0
  2998. pivot: {x: 0.5, y: 0.5}
  2999. border: {x: 0, y: 0, z: 0, w: 0}
  3000. outline: []
  3001. physicsShape: []
  3002. tessellationDetail: 0
  3003. bones: []
  3004. spriteID: 518086bd7588f0e80800000000000000
  3005. internalID: -8210193684748564459
  3006. vertices: []
  3007. indices:
  3008. edges: []
  3009. weights: []
  3010. - serializedVersion: 2
  3011. name: cta_ink
  3012. rect:
  3013. serializedVersion: 2
  3014. x: 97
  3015. y: 1026
  3016. width: 86
  3017. height: 96
  3018. alignment: 0
  3019. pivot: {x: 0.5, y: 0.5}
  3020. border: {x: 0, y: 0, z: 0, w: 0}
  3021. outline: []
  3022. physicsShape: []
  3023. tessellationDetail: 0
  3024. bones: []
  3025. spriteID: be3294320dc4931e0800000000000000
  3026. internalID: -2217656884674354197
  3027. vertices: []
  3028. indices:
  3029. edges: []
  3030. weights: []
  3031. - serializedVersion: 2
  3032. name: cta_wooden_wheel
  3033. rect:
  3034. serializedVersion: 2
  3035. x: 186
  3036. y: 1027
  3037. width: 95
  3038. height: 98
  3039. alignment: 0
  3040. pivot: {x: 0.5, y: 0.5}
  3041. border: {x: 0, y: 0, z: 0, w: 0}
  3042. outline: []
  3043. physicsShape: []
  3044. tessellationDetail: 0
  3045. bones: []
  3046. spriteID: 1f86f263cf9157090800000000000000
  3047. internalID: -8037489388941252367
  3048. vertices: []
  3049. indices:
  3050. edges: []
  3051. weights: []
  3052. - serializedVersion: 2
  3053. name: cta_happiness_maya_2
  3054. rect:
  3055. serializedVersion: 2
  3056. x: 284
  3057. y: 1027
  3058. width: 98
  3059. height: 98
  3060. alignment: 0
  3061. pivot: {x: 0.5, y: 0.5}
  3062. border: {x: 0, y: 0, z: 0, w: 0}
  3063. outline: []
  3064. physicsShape: []
  3065. tessellationDetail: 0
  3066. bones: []
  3067. spriteID: 59c68cdb6de853e00800000000000000
  3068. internalID: 1023881543254830229
  3069. vertices: []
  3070. indices:
  3071. edges: []
  3072. weights: []
  3073. - serializedVersion: 2
  3074. name: workers_big_priestmaya
  3075. rect:
  3076. serializedVersion: 2
  3077. x: 388
  3078. y: 1029
  3079. width: 98
  3080. height: 110
  3081. alignment: 0
  3082. pivot: {x: 0.5, y: 0.5}
  3083. border: {x: 0, y: 0, z: 0, w: 0}
  3084. outline: []
  3085. physicsShape: []
  3086. tessellationDetail: 0
  3087. bones: []
  3088. spriteID: f5c10a5e22d130f80800000000000000
  3089. internalID: -8141631665637155745
  3090. vertices: []
  3091. indices:
  3092. edges: []
  3093. weights: []
  3094. - serializedVersion: 2
  3095. name: workers_priestmaya
  3096. rect:
  3097. serializedVersion: 2
  3098. x: 491
  3099. y: 1028
  3100. width: 72
  3101. height: 80
  3102. alignment: 0
  3103. pivot: {x: 0.5, y: 0.5}
  3104. border: {x: 0, y: 0, z: 0, w: 0}
  3105. outline: []
  3106. physicsShape: []
  3107. tessellationDetail: 0
  3108. bones: []
  3109. spriteID: 28ec978048b92e380800000000000000
  3110. internalID: -7713781604464504857
  3111. vertices: []
  3112. indices:
  3113. edges: []
  3114. weights: []
  3115. - serializedVersion: 2
  3116. name: workers_small_priestmaya
  3117. rect:
  3118. serializedVersion: 2
  3119. x: 565
  3120. y: 1028
  3121. width: 61
  3122. height: 66
  3123. alignment: 0
  3124. pivot: {x: 0.5, y: 0.5}
  3125. border: {x: 0, y: 0, z: 0, w: 0}
  3126. outline: []
  3127. physicsShape: []
  3128. tessellationDetail: 0
  3129. bones: []
  3130. spriteID: 86c7432a1748db5c0800000000000000
  3131. internalID: -4198053654051914648
  3132. vertices: []
  3133. indices:
  3134. edges: []
  3135. weights: []
  3136. - serializedVersion: 2
  3137. name: workers_big_city_mayas
  3138. rect:
  3139. serializedVersion: 2
  3140. x: 628
  3141. y: 1028
  3142. width: 104
  3143. height: 101
  3144. alignment: 0
  3145. pivot: {x: 0.5, y: 0.5}
  3146. border: {x: 0, y: 0, z: 0, w: 0}
  3147. outline: []
  3148. physicsShape: []
  3149. tessellationDetail: 0
  3150. bones: []
  3151. spriteID: b58cedfc045f952e0800000000000000
  3152. internalID: -2136406889496393637
  3153. vertices: []
  3154. indices:
  3155. edges: []
  3156. weights: []
  3157. - serializedVersion: 2
  3158. name: workers_city_mayas
  3159. rect:
  3160. serializedVersion: 2
  3161. x: 736
  3162. y: 1028
  3163. width: 70
  3164. height: 70
  3165. alignment: 0
  3166. pivot: {x: 0.5, y: 0.5}
  3167. border: {x: 0, y: 0, z: 0, w: 0}
  3168. outline: []
  3169. physicsShape: []
  3170. tessellationDetail: 0
  3171. bones: []
  3172. spriteID: 8056eef49de9f6650800000000000000
  3173. internalID: 6228371465862800648
  3174. vertices: []
  3175. indices:
  3176. edges: []
  3177. weights: []
  3178. - serializedVersion: 2
  3179. name: workers_small_city_mayas
  3180. rect:
  3181. serializedVersion: 2
  3182. x: 807
  3183. y: 1028
  3184. width: 54
  3185. height: 53
  3186. alignment: 0
  3187. pivot: {x: 0.5, y: 0.5}
  3188. border: {x: 0, y: 0, z: 0, w: 0}
  3189. outline: []
  3190. physicsShape: []
  3191. tessellationDetail: 0
  3192. bones: []
  3193. spriteID: 17958e2de0c214d10800000000000000
  3194. internalID: 2108014542765709681
  3195. vertices: []
  3196. indices:
  3197. edges: []
  3198. weights: []
  3199. - serializedVersion: 2
  3200. name: workers_big_city_china
  3201. rect:
  3202. serializedVersion: 2
  3203. x: 6
  3204. y: 1131
  3205. width: 109
  3206. height: 107
  3207. alignment: 0
  3208. pivot: {x: 0.5, y: 0.5}
  3209. border: {x: 0, y: 0, z: 0, w: 0}
  3210. outline: []
  3211. physicsShape: []
  3212. tessellationDetail: 0
  3213. bones: []
  3214. spriteID: cb15162a508e9e2a0800000000000000
  3215. internalID: -6707575059094875716
  3216. vertices: []
  3217. indices:
  3218. edges: []
  3219. weights: []
  3220. - serializedVersion: 2
  3221. name: workers_city_china
  3222. rect:
  3223. serializedVersion: 2
  3224. x: 122
  3225. y: 1130
  3226. width: 74
  3227. height: 73
  3228. alignment: 0
  3229. pivot: {x: 0.5, y: 0.5}
  3230. border: {x: 0, y: 0, z: 0, w: 0}
  3231. outline: []
  3232. physicsShape: []
  3233. tessellationDetail: 0
  3234. bones: []
  3235. spriteID: 60398fef000333f40800000000000000
  3236. internalID: 5706957933644387078
  3237. vertices: []
  3238. indices:
  3239. edges: []
  3240. weights: []
  3241. - serializedVersion: 2
  3242. name: workers_small_city_china
  3243. rect:
  3244. serializedVersion: 2
  3245. x: 200
  3246. y: 1131
  3247. width: 61
  3248. height: 58
  3249. alignment: 0
  3250. pivot: {x: 0.5, y: 0.5}
  3251. border: {x: 0, y: 0, z: 0, w: 0}
  3252. outline: []
  3253. physicsShape: []
  3254. tessellationDetail: 0
  3255. bones: []
  3256. spriteID: c7026f61cd9fd32d0800000000000000
  3257. internalID: -3297204628491984772
  3258. vertices: []
  3259. indices:
  3260. edges: []
  3261. weights: []
  3262. - serializedVersion: 2
  3263. name: workers_city_egypt
  3264. rect:
  3265. serializedVersion: 2
  3266. x: 865
  3267. y: 1026
  3268. width: 74
  3269. height: 71
  3270. alignment: 0
  3271. pivot: {x: 0.5, y: 0.5}
  3272. border: {x: 0, y: 0, z: 0, w: 0}
  3273. outline: []
  3274. physicsShape: []
  3275. tessellationDetail: 0
  3276. bones: []
  3277. spriteID: fa91afbc20e3ce7a0800000000000000
  3278. internalID: -6346629593138849361
  3279. vertices: []
  3280. indices:
  3281. edges: []
  3282. weights: []
  3283. - serializedVersion: 2
  3284. name: workers_small_city_egypt
  3285. rect:
  3286. serializedVersion: 2
  3287. x: 942
  3288. y: 1026
  3289. width: 58
  3290. height: 55
  3291. alignment: 0
  3292. pivot: {x: 0.5, y: 0.5}
  3293. border: {x: 0, y: 0, z: 0, w: 0}
  3294. outline: []
  3295. physicsShape: []
  3296. tessellationDetail: 0
  3297. bones: []
  3298. spriteID: 6e3d6dba636b7f0d0800000000000000
  3299. internalID: -3389039848645536794
  3300. vertices: []
  3301. indices:
  3302. edges: []
  3303. weights: []
  3304. - serializedVersion: 2
  3305. name: ebc_madscientistslab
  3306. rect:
  3307. serializedVersion: 2
  3308. x: 780
  3309. y: 118
  3310. width: 64
  3311. height: 94
  3312. alignment: 0
  3313. pivot: {x: 0.5, y: 0.5}
  3314. border: {x: 0, y: 0, z: 0, w: 0}
  3315. outline: []
  3316. physicsShape: []
  3317. tessellationDetail: 0
  3318. bones: []
  3319. spriteID: 941731a03f9268000800000000000000
  3320. internalID: 37763770702065993
  3321. vertices: []
  3322. indices:
  3323. edges: []
  3324. weights: []
  3325. - serializedVersion: 2
  3326. name: ebc_piratefortress
  3327. rect:
  3328. serializedVersion: 2
  3329. x: 263
  3330. y: 1125
  3331. width: 107
  3332. height: 93
  3333. alignment: 0
  3334. pivot: {x: 0.5, y: 0.5}
  3335. border: {x: 0, y: 0, z: 0, w: 0}
  3336. outline: []
  3337. physicsShape: []
  3338. tessellationDetail: 0
  3339. bones: []
  3340. spriteID: e56e32ec9f2ce34e0800000000000000
  3341. internalID: -1999946806344817058
  3342. vertices: []
  3343. indices:
  3344. edges: []
  3345. weights: []
  3346. - serializedVersion: 2
  3347. name: cta_maya_luxurious_workshop_level2
  3348. rect:
  3349. serializedVersion: 2
  3350. x: 370
  3351. y: 1138
  3352. width: 233
  3353. height: 107
  3354. alignment: 0
  3355. pivot: {x: 0.5, y: 0.5}
  3356. border: {x: 0, y: 0, z: 0, w: 0}
  3357. outline: []
  3358. physicsShape: []
  3359. tessellationDetail: 0
  3360. bones: []
  3361. spriteID: c9e7b8d5005e41730800000000000000
  3362. internalID: 3969048961352433308
  3363. vertices: []
  3364. indices:
  3365. edges: []
  3366. weights: []
  3367. - serializedVersion: 2
  3368. name: ebc_wintermarket
  3369. rect:
  3370. serializedVersion: 2
  3371. x: 603
  3372. y: 1136
  3373. width: 112
  3374. height: 103
  3375. alignment: 0
  3376. pivot: {x: 0.5, y: 0.5}
  3377. border: {x: 0, y: 0, z: 0, w: 0}
  3378. outline: []
  3379. physicsShape: []
  3380. tessellationDetail: 0
  3381. bones: []
  3382. spriteID: f675c9f9fde366e00800000000000000
  3383. internalID: 1037585894331930479
  3384. vertices: []
  3385. indices:
  3386. edges: []
  3387. weights: []
  3388. - serializedVersion: 2
  3389. name: info
  3390. rect:
  3391. serializedVersion: 2
  3392. x: 740
  3393. y: 1103
  3394. width: 52
  3395. height: 52
  3396. alignment: 0
  3397. pivot: {x: 0.5, y: 0.5}
  3398. border: {x: 0, y: 0, z: 0, w: 0}
  3399. outline: []
  3400. physicsShape: []
  3401. tessellationDetail: 0
  3402. bones: []
  3403. spriteID: 555cee1a89f97b910800000000000000
  3404. internalID: 1853125249586873685
  3405. vertices: []
  3406. indices:
  3407. edges: []
  3408. weights: []
  3409. - serializedVersion: 2
  3410. name: ebc_trojanhorse
  3411. rect:
  3412. serializedVersion: 2
  3413. x: 811
  3414. y: 1113
  3415. width: 101
  3416. height: 95
  3417. alignment: 0
  3418. pivot: {x: 0.5, y: 0.5}
  3419. border: {x: 0, y: 0, z: 0, w: 0}
  3420. outline: []
  3421. physicsShape: []
  3422. tessellationDetail: 0
  3423. bones: []
  3424. spriteID: 33886dc4c3b71ae70800000000000000
  3425. internalID: 9124709818946717747
  3426. vertices: []
  3427. indices:
  3428. edges: []
  3429. weights: []
  3430. - serializedVersion: 2
  3431. name: icon_chest_good2
  3432. rect:
  3433. serializedVersion: 2
  3434. x: 912
  3435. y: 1109
  3436. width: 90
  3437. height: 92
  3438. alignment: 0
  3439. pivot: {x: 0.5, y: 0.5}
  3440. border: {x: 0, y: 0, z: 0, w: 0}
  3441. outline: []
  3442. physicsShape: []
  3443. tessellationDetail: 0
  3444. bones: []
  3445. spriteID: 0f532f85e6e454d80800000000000000
  3446. internalID: -8267115305123039760
  3447. vertices: []
  3448. indices:
  3449. edges: []
  3450. weights: []
  3451. - serializedVersion: 2
  3452. name: ebc_broch
  3453. rect:
  3454. serializedVersion: 2
  3455. x: 935
  3456. y: 1202
  3457. width: 89
  3458. height: 95
  3459. alignment: 0
  3460. pivot: {x: 0.5, y: 0.5}
  3461. border: {x: 0, y: 0, z: 0, w: 0}
  3462. outline: []
  3463. physicsShape: []
  3464. tessellationDetail: 0
  3465. bones: []
  3466. spriteID: 2e3bdc3b6e39adc70800000000000000
  3467. internalID: 8996665824694350818
  3468. vertices: []
  3469. indices:
  3470. edges: []
  3471. weights: []
  3472. - serializedVersion: 2
  3473. name: cta_manuscript
  3474. rect:
  3475. serializedVersion: 2
  3476. x: 443
  3477. y: 1458
  3478. width: 100
  3479. height: 102
  3480. alignment: 0
  3481. pivot: {x: 0.5, y: 0.5}
  3482. border: {x: 0, y: 0, z: 0, w: 0}
  3483. outline: []
  3484. physicsShape: []
  3485. tessellationDetail: 0
  3486. bones: []
  3487. spriteID: 682046a9a8bad2040800000000000000
  3488. internalID: 4624541004163449478
  3489. vertices: []
  3490. indices:
  3491. edges: []
  3492. weights: []
  3493. - serializedVersion: 2
  3494. name: cta_barrel
  3495. rect:
  3496. serializedVersion: 2
  3497. x: 105
  3498. y: 1203
  3499. width: 82
  3500. height: 103
  3501. alignment: 0
  3502. pivot: {x: 0.5, y: 0.5}
  3503. border: {x: 0, y: 0, z: 0, w: 0}
  3504. outline: []
  3505. physicsShape: []
  3506. tessellationDetail: 0
  3507. bones: []
  3508. spriteID: 0c31d79c2d5b7cf10800000000000000
  3509. internalID: 2289998852469363648
  3510. vertices: []
  3511. indices:
  3512. edges: []
  3513. weights: []
  3514. - serializedVersion: 2
  3515. name: cta_herbs
  3516. rect:
  3517. serializedVersion: 2
  3518. x: 188
  3519. y: 1189
  3520. width: 74
  3521. height: 115
  3522. alignment: 0
  3523. pivot: {x: 0.5, y: 0.5}
  3524. border: {x: 0, y: 0, z: 0, w: 0}
  3525. outline: []
  3526. physicsShape: []
  3527. tessellationDetail: 0
  3528. bones: []
  3529. spriteID: e163e1a399cc83a90800000000000000
  3530. internalID: -7333887034695731682
  3531. vertices: []
  3532. indices:
  3533. edges: []
  3534. weights: []
  3535. - serializedVersion: 2
  3536. name: cta_icon_chest_blueprint
  3537. rect:
  3538. serializedVersion: 2
  3539. x: 263
  3540. y: 1219
  3541. width: 102
  3542. height: 92
  3543. alignment: 0
  3544. pivot: {x: 0.5, y: 0.5}
  3545. border: {x: 0, y: 0, z: 0, w: 0}
  3546. outline: []
  3547. physicsShape: []
  3548. tessellationDetail: 0
  3549. bones: []
  3550. spriteID: 1fbbbfc1ed2fb1f00800000000000000
  3551. internalID: 1088730770723027953
  3552. vertices: []
  3553. indices:
  3554. edges: []
  3555. weights: []
  3556. - serializedVersion: 2
  3557. name: cta_icon_chest_rp
  3558. rect:
  3559. serializedVersion: 2
  3560. x: 367
  3561. y: 1246
  3562. width: 102
  3563. height: 81
  3564. alignment: 0
  3565. pivot: {x: 0.5, y: 0.5}
  3566. border: {x: 0, y: 0, z: 0, w: 0}
  3567. outline: []
  3568. physicsShape: []
  3569. tessellationDetail: 0
  3570. bones: []
  3571. spriteID: 727b87a099bb3e4e0800000000000000
  3572. internalID: -1953511547368589529
  3573. vertices: []
  3574. indices:
  3575. edges: []
  3576. weights: []
  3577. - serializedVersion: 2
  3578. name: ebc_persianpalace
  3579. rect:
  3580. serializedVersion: 2
  3581. x: 825
  3582. y: 1216
  3583. width: 99
  3584. height: 120
  3585. alignment: 0
  3586. pivot: {x: 0.5, y: 0.5}
  3587. border: {x: 0, y: 0, z: 0, w: 0}
  3588. outline: []
  3589. physicsShape: []
  3590. tessellationDetail: 0
  3591. bones: []
  3592. spriteID: b3a071af20ced8440800000000000000
  3593. internalID: 4939863863825205819
  3594. vertices: []
  3595. indices:
  3596. edges: []
  3597. weights: []
  3598. - serializedVersion: 2
  3599. name: shoreline
  3600. rect:
  3601. serializedVersion: 2
  3602. x: 3
  3603. y: 1343
  3604. width: 83
  3605. height: 78
  3606. alignment: 0
  3607. pivot: {x: 0.5, y: 0.5}
  3608. border: {x: 0, y: 0, z: 0, w: 0}
  3609. outline: []
  3610. physicsShape: []
  3611. tessellationDetail: 0
  3612. bones: []
  3613. spriteID: 7f44f5034e26aa0f0800000000000000
  3614. internalID: -1104962026362419977
  3615. vertices: []
  3616. indices:
  3617. edges: []
  3618. weights: []
  3619. - serializedVersion: 2
  3620. name: cta_mead
  3621. rect:
  3622. serializedVersion: 2
  3623. x: 90
  3624. y: 1307
  3625. width: 147
  3626. height: 98
  3627. alignment: 0
  3628. pivot: {x: 0.5, y: 0.5}
  3629. border: {x: 0, y: 0, z: 0, w: 0}
  3630. outline: []
  3631. physicsShape: []
  3632. tessellationDetail: 0
  3633. bones: []
  3634. spriteID: c530aa5543cc839d0800000000000000
  3635. internalID: -2794259043635821732
  3636. vertices: []
  3637. indices:
  3638. edges: []
  3639. weights: []
  3640. - serializedVersion: 2
  3641. name: cta_stockfish
  3642. rect:
  3643. serializedVersion: 2
  3644. x: 238
  3645. y: 1317
  3646. width: 94
  3647. height: 102
  3648. alignment: 0
  3649. pivot: {x: 0.5, y: 0.5}
  3650. border: {x: 0, y: 0, z: 0, w: 0}
  3651. outline: []
  3652. physicsShape: []
  3653. tessellationDetail: 0
  3654. bones: []
  3655. spriteID: efb1c1f7f97e89770800000000000000
  3656. internalID: 8617892559191809022
  3657. vertices: []
  3658. indices:
  3659. edges: []
  3660. weights: []
  3661. - serializedVersion: 2
  3662. name: cta_spice_treasure
  3663. rect:
  3664. serializedVersion: 2
  3665. x: 333
  3666. y: 1328
  3667. width: 106
  3668. height: 83
  3669. alignment: 0
  3670. pivot: {x: 0.5, y: 0.5}
  3671. border: {x: 0, y: 0, z: 0, w: 0}
  3672. outline: []
  3673. physicsShape: []
  3674. tessellationDetail: 0
  3675. bones: []
  3676. spriteID: bfb2e3f561cee1f40800000000000000
  3677. internalID: 5701253759128972283
  3678. vertices: []
  3679. indices:
  3680. edges: []
  3681. weights: []
  3682. - serializedVersion: 2
  3683. name: cta_gold_treasure
  3684. rect:
  3685. serializedVersion: 2
  3686. x: 440
  3687. y: 1353
  3688. width: 106
  3689. height: 102
  3690. alignment: 0
  3691. pivot: {x: 0.5, y: 0.5}
  3692. border: {x: 0, y: 0, z: 0, w: 0}
  3693. outline: []
  3694. physicsShape: []
  3695. tessellationDetail: 0
  3696. bones: []
  3697. spriteID: fa5149c917f525a70800000000000000
  3698. internalID: 8814212362280375727
  3699. vertices: []
  3700. indices:
  3701. edges: []
  3702. weights: []
  3703. - serializedVersion: 2
  3704. name: icon_gem_treasure
  3705. rect:
  3706. serializedVersion: 2
  3707. x: 547
  3708. y: 1354
  3709. width: 101
  3710. height: 72
  3711. alignment: 0
  3712. pivot: {x: 0.5, y: 0.5}
  3713. border: {x: 0, y: 0, z: 0, w: 0}
  3714. outline: []
  3715. physicsShape: []
  3716. tessellationDetail: 0
  3717. bones: []
  3718. spriteID: d57f9ba6b633a4bb0800000000000000
  3719. internalID: -4951088303895349411
  3720. vertices: []
  3721. indices:
  3722. edges: []
  3723. weights: []
  3724. - serializedVersion: 2
  3725. name: cta_pennies
  3726. rect:
  3727. serializedVersion: 2
  3728. x: 491
  3729. y: 1252
  3730. width: 95
  3731. height: 101
  3732. alignment: 0
  3733. pivot: {x: 0.5, y: 0.5}
  3734. border: {x: 0, y: 0, z: 0, w: 0}
  3735. outline: []
  3736. physicsShape: []
  3737. tessellationDetail: 0
  3738. bones: []
  3739. spriteID: fa94068ad7f8b36e0800000000000000
  3740. internalID: -1856732651501631057
  3741. vertices: []
  3742. indices:
  3743. edges: []
  3744. weights: []
  3745. - serializedVersion: 2
  3746. name: cta_honey
  3747. rect:
  3748. serializedVersion: 2
  3749. x: 595
  3750. y: 1252
  3751. width: 102
  3752. height: 101
  3753. alignment: 0
  3754. pivot: {x: 0.5, y: 0.5}
  3755. border: {x: 0, y: 0, z: 0, w: 0}
  3756. outline: []
  3757. physicsShape: []
  3758. tessellationDetail: 0
  3759. bones: []
  3760. spriteID: 4d7729ca4dbb101d0800000000000000
  3761. internalID: -3386218922703161388
  3762. vertices: []
  3763. indices:
  3764. edges: []
  3765. weights: []
  3766. - serializedVersion: 2
  3767. name: cta_fish
  3768. rect:
  3769. serializedVersion: 2
  3770. x: 702
  3771. y: 1251
  3772. width: 88
  3773. height: 102
  3774. alignment: 0
  3775. pivot: {x: 0.5, y: 0.5}
  3776. border: {x: 0, y: 0, z: 0, w: 0}
  3777. outline: []
  3778. physicsShape: []
  3779. tessellationDetail: 0
  3780. bones: []
  3781. spriteID: f9e4a1c7f68165a80800000000000000
  3782. internalID: -8478562381375844705
  3783. vertices: []
  3784. indices:
  3785. edges: []
  3786. weights: []
  3787. - serializedVersion: 2
  3788. name: cta_ceramic_treasure
  3789. rect:
  3790. serializedVersion: 2
  3791. x: 924
  3792. y: 1299
  3793. width: 100
  3794. height: 102
  3795. alignment: 0
  3796. pivot: {x: 0.5, y: 0.5}
  3797. border: {x: 0, y: 0, z: 0, w: 0}
  3798. outline: []
  3799. physicsShape: []
  3800. tessellationDetail: 0
  3801. bones: []
  3802. spriteID: 22dedf67b0ddfe140800000000000000
  3803. internalID: 4751259173209894178
  3804. vertices: []
  3805. indices:
  3806. edges: []
  3807. weights: []
  3808. - serializedVersion: 2
  3809. name: pennies
  3810. rect:
  3811. serializedVersion: 2
  3812. x: 543
  3813. y: 958
  3814. width: 61
  3815. height: 65
  3816. alignment: 0
  3817. pivot: {x: 0.5, y: 0.5}
  3818. border: {x: 0, y: 0, z: 0, w: 0}
  3819. outline: []
  3820. physicsShape: []
  3821. tessellationDetail: 0
  3822. bones: []
  3823. spriteID: 1fe7a25aa2f3eda60800000000000000
  3824. internalID: 7700661865242328817
  3825. vertices: []
  3826. indices:
  3827. edges: []
  3828. weights: []
  3829. - serializedVersion: 2
  3830. name: workers_big_city_vikings
  3831. rect:
  3832. serializedVersion: 2
  3833. x: 8
  3834. y: 1423
  3835. width: 104
  3836. height: 115
  3837. alignment: 0
  3838. pivot: {x: 0.5, y: 0.5}
  3839. border: {x: 0, y: 0, z: 0, w: 0}
  3840. outline: []
  3841. physicsShape: []
  3842. tessellationDetail: 0
  3843. bones: []
  3844. spriteID: 25a88d2d19d5b0370800000000000000
  3845. internalID: 8289822419994577490
  3846. vertices: []
  3847. indices:
  3848. edges: []
  3849. weights: []
  3850. - serializedVersion: 2
  3851. name: workers_city_vikings
  3852. rect:
  3853. serializedVersion: 2
  3854. x: 115
  3855. y: 1422
  3856. width: 71
  3857. height: 80
  3858. alignment: 0
  3859. pivot: {x: 0.5, y: 0.5}
  3860. border: {x: 0, y: 0, z: 0, w: 0}
  3861. outline: []
  3862. physicsShape: []
  3863. tessellationDetail: 0
  3864. bones: []
  3865. spriteID: e09adcfe40deed920800000000000000
  3866. internalID: 3017109405843695886
  3867. vertices: []
  3868. indices:
  3869. edges: []
  3870. weights: []
  3871. - serializedVersion: 2
  3872. name: workers_small_city_vikings
  3873. rect:
  3874. serializedVersion: 2
  3875. x: 190
  3876. y: 1423
  3877. width: 56
  3878. height: 63
  3879. alignment: 0
  3880. pivot: {x: 0.5, y: 0.5}
  3881. border: {x: 0, y: 0, z: 0, w: 0}
  3882. outline: []
  3883. physicsShape: []
  3884. tessellationDetail: 0
  3885. bones: []
  3886. spriteID: 405634c405f86f500800000000000000
  3887. internalID: 429688389500101892
  3888. vertices: []
  3889. indices:
  3890. edges: []
  3891. weights: []
  3892. - serializedVersion: 2
  3893. name: workers_big_sailorvikings
  3894. rect:
  3895. serializedVersion: 2
  3896. x: 4
  3897. y: 1541
  3898. width: 112
  3899. height: 105
  3900. alignment: 0
  3901. pivot: {x: 0.5, y: 0.5}
  3902. border: {x: 0, y: 0, z: 0, w: 0}
  3903. outline: []
  3904. physicsShape: []
  3905. tessellationDetail: 0
  3906. bones: []
  3907. spriteID: cd30dccf6af7e7a60800000000000000
  3908. internalID: 7673711170268496860
  3909. vertices: []
  3910. indices:
  3911. edges: []
  3912. weights: []
  3913. - serializedVersion: 2
  3914. name: workers_sailorvikings
  3915. rect:
  3916. serializedVersion: 2
  3917. x: 122
  3918. y: 1505
  3919. width: 74
  3920. height: 72
  3921. alignment: 0
  3922. pivot: {x: 0.5, y: 0.5}
  3923. border: {x: 0, y: 0, z: 0, w: 0}
  3924. outline: []
  3925. physicsShape: []
  3926. tessellationDetail: 0
  3927. bones: []
  3928. spriteID: c101932e8d3223560800000000000000
  3929. internalID: 7291930161081552924
  3930. vertices: []
  3931. indices:
  3932. edges: []
  3933. weights: []
  3934. - serializedVersion: 2
  3935. name: workers_small_sailorvikings
  3936. rect:
  3937. serializedVersion: 2
  3938. x: 201
  3939. y: 1490
  3940. width: 60
  3941. height: 59
  3942. alignment: 0
  3943. pivot: {x: 0.5, y: 0.5}
  3944. border: {x: 0, y: 0, z: 0, w: 0}
  3945. outline: []
  3946. physicsShape: []
  3947. tessellationDetail: 0
  3948. bones: []
  3949. spriteID: 9c16a598b7af952f0800000000000000
  3950. internalID: -983479635111419447
  3951. vertices: []
  3952. indices:
  3953. edges: []
  3954. weights: []
  3955. - serializedVersion: 2
  3956. name: cta_mixedchest
  3957. rect:
  3958. serializedVersion: 2
  3959. x: 653
  3960. y: 1354
  3961. width: 108
  3962. height: 103
  3963. alignment: 0
  3964. pivot: {x: 0.5, y: 0.5}
  3965. border: {x: 0, y: 0, z: 0, w: 0}
  3966. outline: []
  3967. physicsShape: []
  3968. tessellationDetail: 0
  3969. bones: []
  3970. spriteID: f63a9d1b880da02b0800000000000000
  3971. internalID: -5617448299673312401
  3972. vertices: []
  3973. indices:
  3974. edges: []
  3975. weights: []
  3976. - serializedVersion: 2
  3977. name: cta_icon_mystery_chest_gold
  3978. rect:
  3979. serializedVersion: 2
  3980. x: 715
  3981. y: 1162
  3982. width: 82
  3983. height: 87
  3984. alignment: 0
  3985. pivot: {x: 0.5, y: 0.5}
  3986. border: {x: 0, y: 0, z: 0, w: 0}
  3987. outline: []
  3988. physicsShape: []
  3989. tessellationDetail: 0
  3990. bones: []
  3991. spriteID: ee588dcd66ff95be0800000000000000
  3992. internalID: -1487877384612313618
  3993. vertices: []
  3994. indices:
  3995. edges: []
  3996. weights: []
  3997. - serializedVersion: 2
  3998. name: blueprint_rare
  3999. rect:
  4000. serializedVersion: 2
  4001. x: 783
  4002. y: 1354
  4003. width: 125
  4004. height: 114
  4005. alignment: 0
  4006. pivot: {x: 0.5, y: 0.5}
  4007. border: {x: 0, y: 0, z: 0, w: 0}
  4008. outline: []
  4009. physicsShape: []
  4010. tessellationDetail: 0
  4011. bones: []
  4012. spriteID: 3532b03158787f8e0800000000000000
  4013. internalID: -1659708932042841261
  4014. vertices: []
  4015. indices:
  4016. edges: []
  4017. weights: []
  4018. - serializedVersion: 2
  4019. name: InlineIcons_122
  4020. rect:
  4021. serializedVersion: 2
  4022. x: 913
  4023. y: 1402
  4024. width: 98
  4025. height: 94
  4026. alignment: 0
  4027. pivot: {x: 0.5, y: 0.5}
  4028. border: {x: 0, y: 0, z: 0, w: 0}
  4029. outline: []
  4030. physicsShape: []
  4031. tessellationDetail: 0
  4032. bones: []
  4033. spriteID: 9ea0031e8a76c6b30800000000000000
  4034. internalID: 4281911320752687849
  4035. vertices: []
  4036. indices:
  4037. edges: []
  4038. weights: []
  4039. - serializedVersion: 2
  4040. name: wonder_active_checkmark
  4041. rect:
  4042. serializedVersion: 2
  4043. x: 1
  4044. y: 1650
  4045. width: 67
  4046. height: 66
  4047. alignment: 0
  4048. pivot: {x: 0.5, y: 0.5}
  4049. border: {x: 0, y: 0, z: 0, w: 0}
  4050. outline: []
  4051. physicsShape: []
  4052. tessellationDetail: 0
  4053. bones: []
  4054. spriteID: 8288ff3d8ead33c90800000000000000
  4055. internalID: -7191163486456543192
  4056. vertices: []
  4057. indices:
  4058. edges: []
  4059. weights: []
  4060. - serializedVersion: 2
  4061. name: wonder_inactive_checkmark
  4062. rect:
  4063. serializedVersion: 2
  4064. x: 70
  4065. y: 1650
  4066. width: 68
  4067. height: 66
  4068. alignment: 0
  4069. pivot: {x: 0.5, y: 0.5}
  4070. border: {x: 0, y: 0, z: 0, w: 0}
  4071. outline: []
  4072. physicsShape: []
  4073. tessellationDetail: 0
  4074. bones: []
  4075. spriteID: db2ba8d5ff6bc6c60800000000000000
  4076. internalID: 7812820661483254461
  4077. vertices: []
  4078. indices:
  4079. edges: []
  4080. weights: []
  4081. - serializedVersion: 2
  4082. name: wonder_orb
  4083. rect:
  4084. serializedVersion: 2
  4085. x: 926
  4086. y: 1501
  4087. width: 95
  4088. height: 88
  4089. alignment: 0
  4090. pivot: {x: 0.5, y: 0.5}
  4091. border: {x: 0, y: 0, z: 0, w: 0}
  4092. outline: []
  4093. physicsShape: []
  4094. tessellationDetail: 0
  4095. bones: []
  4096. spriteID: e3757416b1d00b7d0800000000000000
  4097. internalID: -2904807348406626498
  4098. vertices: []
  4099. indices:
  4100. edges: []
  4101. weights: []
  4102. - serializedVersion: 2
  4103. name: gears
  4104. rect:
  4105. serializedVersion: 2
  4106. x: 804
  4107. y: 1470
  4108. width: 96
  4109. height: 93
  4110. alignment: 0
  4111. pivot: {x: 0.5, y: 0.5}
  4112. border: {x: 0, y: 0, z: 0, w: 0}
  4113. outline: []
  4114. physicsShape: []
  4115. tessellationDetail: 0
  4116. bones: []
  4117. spriteID: 5e8d2be7664108a60800000000000000
  4118. internalID: 7674156195484195045
  4119. vertices: []
  4120. indices:
  4121. edges: []
  4122. weights: []
  4123. - serializedVersion: 2
  4124. name: ebc_madrasa
  4125. rect:
  4126. serializedVersion: 2
  4127. x: 925
  4128. y: 1588
  4129. width: 98
  4130. height: 94
  4131. alignment: 0
  4132. pivot: {x: 0.5, y: 0.5}
  4133. border: {x: 0, y: 0, z: 0, w: 0}
  4134. outline: []
  4135. physicsShape: []
  4136. tessellationDetail: 0
  4137. bones: []
  4138. spriteID: e63d19e6edd72ce90800000000000000
  4139. internalID: -7006899675943808146
  4140. vertices: []
  4141. indices:
  4142. edges: []
  4143. weights: []
  4144. - serializedVersion: 2
  4145. name: ebc_shrineofreflection
  4146. rect:
  4147. serializedVersion: 2
  4148. x: 1
  4149. y: 1248
  4150. width: 89
  4151. height: 85
  4152. alignment: 0
  4153. pivot: {x: 0.5, y: 0.5}
  4154. border: {x: 0, y: 0, z: 0, w: 0}
  4155. outline: []
  4156. physicsShape: []
  4157. tessellationDetail: 0
  4158. bones: []
  4159. spriteID: 4a2504689265dcc40800000000000000
  4160. internalID: 5534174253454217892
  4161. vertices: []
  4162. indices:
  4163. edges: []
  4164. weights: []
  4165. - serializedVersion: 2
  4166. name: cta_gears
  4167. rect:
  4168. serializedVersion: 2
  4169. x: 727
  4170. y: 1469
  4171. width: 72
  4172. height: 69
  4173. alignment: 0
  4174. pivot: {x: 0.5, y: 0.5}
  4175. border: {x: 0, y: 0, z: 0, w: 0}
  4176. outline: []
  4177. physicsShape: []
  4178. tessellationDetail: 0
  4179. bones: []
  4180. spriteID: 433a7a9a33adc6040800000000000000
  4181. internalID: 4642325231336661812
  4182. vertices: []
  4183. indices:
  4184. edges: []
  4185. weights: []
  4186. - serializedVersion: 2
  4187. name: cta_wax_seal
  4188. rect:
  4189. serializedVersion: 2
  4190. x: 825
  4191. y: 1566
  4192. width: 101
  4193. height: 103
  4194. alignment: 0
  4195. pivot: {x: 0.5, y: 0.5}
  4196. border: {x: 0, y: 0, z: 3, w: 0}
  4197. outline: []
  4198. physicsShape: []
  4199. tessellationDetail: 0
  4200. bones: []
  4201. spriteID: 2b3a5bc8438f6de20800000000000000
  4202. internalID: 3375157875343467442
  4203. vertices: []
  4204. indices:
  4205. edges: []
  4206. weights: []
  4207. - serializedVersion: 2
  4208. name: cta_door
  4209. rect:
  4210. serializedVersion: 2
  4211. x: 726
  4212. y: 1537
  4213. width: 81
  4214. height: 102
  4215. alignment: 0
  4216. pivot: {x: 0.5, y: 0.5}
  4217. border: {x: 0, y: 0, z: 0, w: 0}
  4218. outline: []
  4219. physicsShape: []
  4220. tessellationDetail: 0
  4221. bones: []
  4222. spriteID: 3f166c35c999b54f0800000000000000
  4223. internalID: -838908008875007501
  4224. vertices: []
  4225. indices:
  4226. edges: []
  4227. weights: []
  4228. - serializedVersion: 2
  4229. name: cta_saffron
  4230. rect:
  4231. serializedVersion: 2
  4232. x: 623
  4233. y: 1458
  4234. width: 103
  4235. height: 96
  4236. alignment: 0
  4237. pivot: {x: 0.5, y: 0.5}
  4238. border: {x: 0, y: 0, z: 0, w: 0}
  4239. outline: []
  4240. physicsShape: []
  4241. tessellationDetail: 0
  4242. bones: []
  4243. spriteID: 74dc22db63ac63cd0800000000000000
  4244. internalID: -2578651400172810937
  4245. vertices: []
  4246. indices:
  4247. edges: []
  4248. weights: []
  4249. - serializedVersion: 2
  4250. name: ebc_cryptofthecount
  4251. rect:
  4252. serializedVersion: 2
  4253. x: 942
  4254. y: 1685
  4255. width: 80
  4256. height: 116
  4257. alignment: 0
  4258. pivot: {x: 0.5, y: 0.5}
  4259. border: {x: 0, y: 0, z: 0, w: 0}
  4260. outline: []
  4261. physicsShape: []
  4262. tessellationDetail: 0
  4263. bones: []
  4264. spriteID: f138df648f0c4f830800000000000000
  4265. internalID: 4104117333016806175
  4266. vertices: []
  4267. indices:
  4268. edges: []
  4269. weights: []
  4270. - serializedVersion: 2
  4271. name: InlineIcons_130
  4272. rect:
  4273. serializedVersion: 2
  4274. x: 261
  4275. y: 1419
  4276. width: 101
  4277. height: 95
  4278. alignment: 0
  4279. pivot: {x: 0.5, y: 0.5}
  4280. border: {x: 0, y: 0, z: 0, w: 0}
  4281. outline: []
  4282. physicsShape: []
  4283. tessellationDetail: 0
  4284. bones: []
  4285. spriteID: 9f7965320d0d106c0800000000000000
  4286. internalID: -4178829386858457095
  4287. vertices: []
  4288. indices:
  4289. edges: []
  4290. weights: []
  4291. - serializedVersion: 2
  4292. name: cta_building_vikings_sailorport_premium_1
  4293. rect:
  4294. serializedVersion: 2
  4295. x: 822
  4296. y: 1670
  4297. width: 119
  4298. height: 104
  4299. alignment: 0
  4300. pivot: {x: 0.5, y: 0.5}
  4301. border: {x: 0, y: 0, z: 0, w: 0}
  4302. outline: []
  4303. physicsShape: []
  4304. tessellationDetail: 0
  4305. bones: []
  4306. spriteID: 831ba3e801aa4e320800000000000000
  4307. internalID: 2586379074099917112
  4308. vertices: []
  4309. indices:
  4310. edges: []
  4311. weights: []
  4312. - serializedVersion: 2
  4313. name: cta_building_vikings_sailorport_premium_2
  4314. rect:
  4315. serializedVersion: 2
  4316. x: 674
  4317. y: 1657
  4318. width: 147
  4319. height: 103
  4320. alignment: 0
  4321. pivot: {x: 0.5, y: 0.5}
  4322. border: {x: 0, y: 0, z: 0, w: 0}
  4323. outline: []
  4324. physicsShape: []
  4325. tessellationDetail: 0
  4326. bones: []
  4327. spriteID: 9b2da750d6d53dff0800000000000000
  4328. internalID: -12563651127225671
  4329. vertices: []
  4330. indices:
  4331. edges: []
  4332. weights: []
  4333. - serializedVersion: 2
  4334. name: cta_building_vikings_sailorport
  4335. rect:
  4336. serializedVersion: 2
  4337. x: 653
  4338. y: 1554
  4339. width: 72
  4340. height: 103
  4341. alignment: 0
  4342. pivot: {x: 0.5, y: 0.5}
  4343. border: {x: 0, y: 0, z: 0, w: 0}
  4344. outline: []
  4345. physicsShape: []
  4346. tessellationDetail: 0
  4347. bones: []
  4348. spriteID: a910c72794f6246f0800000000000000
  4349. internalID: -701876230672350822
  4350. vertices: []
  4351. indices:
  4352. edges: []
  4353. weights: []
  4354. - serializedVersion: 2
  4355. name: InlineIcons_133
  4356. rect:
  4357. serializedVersion: 2
  4358. x: 903
  4359. y: 1801
  4360. width: 121
  4361. height: 102
  4362. alignment: 0
  4363. pivot: {x: 0.5, y: 0.5}
  4364. border: {x: 0, y: 0, z: 0, w: 0}
  4365. outline: []
  4366. physicsShape: []
  4367. tessellationDetail: 0
  4368. bones: []
  4369. spriteID: ef155f832a0423b20800000000000000
  4370. internalID: 3112621357950915070
  4371. vertices: []
  4372. indices:
  4373. edges: []
  4374. weights: []
  4375. - serializedVersion: 2
  4376. name: InlineIcons_134
  4377. rect:
  4378. serializedVersion: 2
  4379. x: 903
  4380. y: 1918
  4381. width: 116
  4382. height: 130
  4383. alignment: 0
  4384. pivot: {x: 0.5, y: 0.5}
  4385. border: {x: 0, y: 0, z: 0, w: 0}
  4386. outline: []
  4387. physicsShape: []
  4388. tessellationDetail: 0
  4389. bones: []
  4390. spriteID: 8161b42a1621c6bf0800000000000000
  4391. internalID: -329868462160931304
  4392. vertices: []
  4393. indices:
  4394. edges: []
  4395. weights: []
  4396. - serializedVersion: 2
  4397. name: InlineIcons_135
  4398. rect:
  4399. serializedVersion: 2
  4400. x: 0
  4401. y: 1717
  4402. width: 138
  4403. height: 139
  4404. alignment: 0
  4405. pivot: {x: 0.5, y: 0.5}
  4406. border: {x: 0, y: 0, z: 0, w: 0}
  4407. outline: []
  4408. physicsShape: []
  4409. tessellationDetail: 0
  4410. bones: []
  4411. spriteID: 6e1d253a691ab8a80800000000000000
  4412. internalID: -8463493406355435034
  4413. vertices: []
  4414. indices:
  4415. edges: []
  4416. weights: []
  4417. - serializedVersion: 2
  4418. name: InlineIcons_136
  4419. rect:
  4420. serializedVersion: 2
  4421. x: 148
  4422. y: 1599
  4423. width: 104
  4424. height: 112
  4425. alignment: 0
  4426. pivot: {x: 0.5, y: 0.5}
  4427. border: {x: 0, y: 0, z: 0, w: 0}
  4428. outline: []
  4429. physicsShape: []
  4430. tessellationDetail: 0
  4431. bones: []
  4432. spriteID: 0ae6884a4435dec10800000000000000
  4433. internalID: 2084413756825693856
  4434. vertices: []
  4435. indices:
  4436. edges: []
  4437. weights: []
  4438. - serializedVersion: 2
  4439. name: flat_cancel
  4440. rect:
  4441. serializedVersion: 2
  4442. x: 4
  4443. y: 1856
  4444. width: 87
  4445. height: 87
  4446. alignment: 0
  4447. pivot: {x: 0.5, y: 0.5}
  4448. border: {x: 0, y: 0, z: 0, w: 0}
  4449. outline: []
  4450. physicsShape: []
  4451. tessellationDetail: 0
  4452. bones: []
  4453. spriteID: ad7ae843f77419230800000000000000
  4454. internalID: 3643772185187624922
  4455. vertices: []
  4456. indices:
  4457. edges: []
  4458. weights: []
  4459. - serializedVersion: 2
  4460. name: flat_check
  4461. rect:
  4462. serializedVersion: 2
  4463. x: 101
  4464. y: 1856
  4465. width: 114
  4466. height: 87
  4467. alignment: 0
  4468. pivot: {x: 0.5, y: 0.5}
  4469. border: {x: 0, y: 0, z: 0, w: 0}
  4470. outline: []
  4471. physicsShape: []
  4472. tessellationDetail: 0
  4473. bones: []
  4474. spriteID: 5eb85cf747d3133f0800000000000000
  4475. internalID: -922888878065087515
  4476. vertices: []
  4477. indices:
  4478. edges: []
  4479. weights: []
  4480. - serializedVersion: 2
  4481. name: bb_lock_grey
  4482. rect:
  4483. serializedVersion: 2
  4484. x: 466
  4485. y: 807
  4486. width: 38
  4487. height: 50
  4488. alignment: 0
  4489. pivot: {x: 0.5, y: 0.5}
  4490. border: {x: 0, y: 0, z: 0, w: 0}
  4491. outline: []
  4492. physicsShape: []
  4493. tessellationDetail: 0
  4494. bones: []
  4495. spriteID: 36915f1f000fa9c10800000000000000
  4496. internalID: 2061223666325461347
  4497. vertices: []
  4498. indices:
  4499. edges: []
  4500. weights: []
  4501. - serializedVersion: 2
  4502. name: icon_crate
  4503. rect:
  4504. serializedVersion: 2
  4505. x: 138
  4506. y: 1715
  4507. width: 54
  4508. height: 50
  4509. alignment: 0
  4510. pivot: {x: 0.5, y: 0.5}
  4511. border: {x: 0, y: 0, z: 0, w: 0}
  4512. outline: []
  4513. physicsShape: []
  4514. tessellationDetail: 0
  4515. bones: []
  4516. spriteID: ddb26354dae87d6d0800000000000000
  4517. internalID: -2965744954758517795
  4518. vertices: []
  4519. indices:
  4520. edges: []
  4521. weights: []
  4522. - serializedVersion: 2
  4523. name: icon_star
  4524. rect:
  4525. serializedVersion: 2
  4526. x: 202
  4527. y: 1718
  4528. width: 56
  4529. height: 56
  4530. alignment: 0
  4531. pivot: {x: 0.5, y: 0.5}
  4532. border: {x: 0, y: 0, z: 0, w: 0}
  4533. outline: []
  4534. physicsShape: []
  4535. tessellationDetail: 0
  4536. bones: []
  4537. spriteID: 33dc314476f52bf20800000000000000
  4538. internalID: 3436914362765528371
  4539. vertices: []
  4540. indices:
  4541. edges: []
  4542. weights: []
  4543. - serializedVersion: 2
  4544. name: icon_tome
  4545. rect:
  4546. serializedVersion: 2
  4547. x: 796
  4548. y: 1774
  4549. width: 104
  4550. height: 104
  4551. alignment: 0
  4552. pivot: {x: 0.5, y: 0.5}
  4553. border: {x: 0, y: 0, z: 0, w: 0}
  4554. outline: []
  4555. physicsShape: []
  4556. tessellationDetail: 0
  4557. bones: []
  4558. spriteID: 305faa5e507320360800000000000000
  4559. internalID: 7134325258175837443
  4560. vertices: []
  4561. indices:
  4562. edges: []
  4563. weights: []
  4564. - serializedVersion: 2
  4565. name: icon_wardrobe
  4566. rect:
  4567. serializedVersion: 2
  4568. x: 706
  4569. y: 1774
  4570. width: 86
  4571. height: 104
  4572. alignment: 0
  4573. pivot: {x: 0.5, y: 0.5}
  4574. border: {x: 0, y: 0, z: 0, w: 0}
  4575. outline: []
  4576. physicsShape: []
  4577. tessellationDetail: 0
  4578. bones: []
  4579. spriteID: 197037273c1c4e5f0800000000000000
  4580. internalID: -728244194544253039
  4581. vertices: []
  4582. indices:
  4583. edges: []
  4584. weights: []
  4585. - serializedVersion: 2
  4586. name: icon_chili
  4587. rect:
  4588. serializedVersion: 2
  4589. x: 618
  4590. y: 1774
  4591. width: 84
  4592. height: 104
  4593. alignment: 0
  4594. pivot: {x: 0.5, y: 0.5}
  4595. border: {x: 0, y: 0, z: 0, w: 0}
  4596. outline: []
  4597. physicsShape: []
  4598. tessellationDetail: 0
  4599. bones: []
  4600. spriteID: 3bd132e6fd66030b0800000000000000
  4601. internalID: -5750983614340588109
  4602. vertices: []
  4603. indices:
  4604. edges: []
  4605. weights: []
  4606. - serializedVersion: 2
  4607. name: icon_arabia_worker
  4608. rect:
  4609. serializedVersion: 2
  4610. x: 271
  4611. y: 1571
  4612. width: 81
  4613. height: 79
  4614. alignment: 0
  4615. pivot: {x: 0.5, y: 0.5}
  4616. border: {x: 0, y: 0, z: 0, w: 0}
  4617. outline: []
  4618. physicsShape: []
  4619. tessellationDetail: 0
  4620. bones: []
  4621. spriteID: 3a68dd74c06e438c0800000000000000
  4622. internalID: -4020335626915314013
  4623. vertices: []
  4624. indices:
  4625. edges: []
  4626. weights: []
  4627. - serializedVersion: 2
  4628. name: icon_dirham
  4629. rect:
  4630. serializedVersion: 2
  4631. x: 352
  4632. y: 1572
  4633. width: 60
  4634. height: 71
  4635. alignment: 0
  4636. pivot: {x: 0.5, y: 0.5}
  4637. border: {x: 0, y: 0, z: 0, w: 0}
  4638. outline: []
  4639. physicsShape: []
  4640. tessellationDetail: 0
  4641. bones: []
  4642. spriteID: 374e92a8ae2e0f430800000000000000
  4643. internalID: 3814798381351036019
  4644. vertices: []
  4645. indices:
  4646. edges: []
  4647. weights: []
  4648. - serializedVersion: 2
  4649. name: icon_gold_dinar
  4650. rect:
  4651. serializedVersion: 2
  4652. x: 412
  4653. y: 1572
  4654. width: 64
  4655. height: 71
  4656. alignment: 0
  4657. pivot: {x: 0.5, y: 0.5}
  4658. border: {x: 0, y: 0, z: 0, w: 0}
  4659. outline: []
  4660. physicsShape: []
  4661. tessellationDetail: 0
  4662. bones: []
  4663. spriteID: b3989c84048541210800000000000000
  4664. internalID: 1302763225339234619
  4665. vertices: []
  4666. indices:
  4667. edges: []
  4668. weights: []
  4669. - serializedVersion: 2
  4670. name: icon_incense
  4671. rect:
  4672. serializedVersion: 2
  4673. x: 476
  4674. y: 1565
  4675. width: 58
  4676. height: 84
  4677. alignment: 0
  4678. pivot: {x: 0.5, y: 0.5}
  4679. border: {x: 0, y: 0, z: 0, w: 0}
  4680. outline: []
  4681. physicsShape: []
  4682. tessellationDetail: 0
  4683. bones: []
  4684. spriteID: 19810dc017d415a10800000000000000
  4685. internalID: 1896382066041297041
  4686. vertices: []
  4687. indices:
  4688. edges: []
  4689. weights: []
  4690. - serializedVersion: 2
  4691. name: icon_coffee_beans
  4692. rect:
  4693. serializedVersion: 2
  4694. x: 277
  4695. y: 1650
  4696. width: 74
  4697. height: 50
  4698. alignment: 0
  4699. pivot: {x: 0.5, y: 0.5}
  4700. border: {x: 0, y: 0, z: 0, w: 0}
  4701. outline: []
  4702. physicsShape: []
  4703. tessellationDetail: 0
  4704. bones: []
  4705. spriteID: 5e47d1778f49e46a0800000000000000
  4706. internalID: -6463064620358863643
  4707. vertices: []
  4708. indices:
  4709. edges: []
  4710. weights: []
  4711. - serializedVersion: 2
  4712. name: icon_myrrh
  4713. rect:
  4714. serializedVersion: 2
  4715. x: 352
  4716. y: 1650
  4717. width: 76
  4718. height: 63
  4719. alignment: 0
  4720. pivot: {x: 0.5, y: 0.5}
  4721. border: {x: 0, y: 0, z: 0, w: 0}
  4722. outline: []
  4723. physicsShape: []
  4724. tessellationDetail: 0
  4725. bones: []
  4726. spriteID: 7bb572083ea68bd90800000000000000
  4727. internalID: -7081792888699921481
  4728. vertices: []
  4729. indices:
  4730. edges: []
  4731. weights: []
  4732. - serializedVersion: 2
  4733. name: icon_brass
  4734. rect:
  4735. serializedVersion: 2
  4736. x: 429
  4737. y: 1650
  4738. width: 74
  4739. height: 66
  4740. alignment: 0
  4741. pivot: {x: 0.5, y: 0.5}
  4742. border: {x: 0, y: 0, z: 0, w: 0}
  4743. outline: []
  4744. physicsShape: []
  4745. tessellationDetail: 0
  4746. bones: []
  4747. spriteID: f337afe23ee2f9570800000000000000
  4748. internalID: 8475544577015182143
  4749. vertices: []
  4750. indices:
  4751. edges: []
  4752. weights: []
  4753. - serializedVersion: 2
  4754. name: icon_coffee
  4755. rect:
  4756. serializedVersion: 2
  4757. x: 269
  4758. y: 1700
  4759. width: 80
  4760. height: 81
  4761. alignment: 0
  4762. pivot: {x: 0.5, y: 0.5}
  4763. border: {x: 1, y: 0, z: 0, w: 0}
  4764. outline: []
  4765. physicsShape: []
  4766. tessellationDetail: 0
  4767. bones: []
  4768. spriteID: 7b6485f191e49ec50800000000000000
  4769. internalID: 6694968190869980855
  4770. vertices: []
  4771. indices:
  4772. edges: []
  4773. weights: []
  4774. - serializedVersion: 2
  4775. name: icon_camel
  4776. rect:
  4777. serializedVersion: 2
  4778. x: 349
  4779. y: 1713
  4780. width: 67
  4781. height: 89
  4782. alignment: 0
  4783. pivot: {x: 0.5, y: 0.5}
  4784. border: {x: 0, y: 0, z: 0, w: 0}
  4785. outline: []
  4786. physicsShape: []
  4787. tessellationDetail: 0
  4788. bones: []
  4789. spriteID: 5f2051f6eb1057440800000000000000
  4790. internalID: 4932850884273308405
  4791. vertices: []
  4792. indices:
  4793. edges: []
  4794. weights: []
  4795. - serializedVersion: 2
  4796. name: InlineIcons_154
  4797. rect:
  4798. serializedVersion: 2
  4799. x: 538
  4800. y: 1564
  4801. width: 107
  4802. height: 102
  4803. alignment: 0
  4804. pivot: {x: 0.5, y: 0.5}
  4805. border: {x: 0, y: 0, z: 0, w: 0}
  4806. outline: []
  4807. physicsShape: []
  4808. tessellationDetail: 0
  4809. bones: []
  4810. spriteID: 4779c75665e3a23b0800000000000000
  4811. internalID: -5536544251107829900
  4812. vertices: []
  4813. indices:
  4814. edges: []
  4815. weights: []
  4816. - serializedVersion: 2
  4817. name: cta_icon_mystery_chest
  4818. rect:
  4819. serializedVersion: 2
  4820. x: 532
  4821. y: 1676
  4822. width: 113
  4823. height: 90
  4824. alignment: 0
  4825. pivot: {x: 0.5, y: 0.5}
  4826. border: {x: 0, y: 0, z: 0, w: 0}
  4827. outline: []
  4828. physicsShape: []
  4829. tessellationDetail: 0
  4830. bones: []
  4831. spriteID: 402283127de034c70800000000000000
  4832. internalID: 8954016801280762372
  4833. vertices: []
  4834. indices:
  4835. edges: []
  4836. weights: []
  4837. - serializedVersion: 2
  4838. name: cta_icon_loot_container
  4839. rect:
  4840. serializedVersion: 2
  4841. x: 497
  4842. y: 1771
  4843. width: 120
  4844. height: 98
  4845. alignment: 0
  4846. pivot: {x: 0.5, y: 0.5}
  4847. border: {x: 0, y: 0, z: 0, w: 0}
  4848. outline: []
  4849. physicsShape: []
  4850. tessellationDetail: 0
  4851. bones: []
  4852. spriteID: 01e40d22912a13a90800000000000000
  4853. internalID: -7335904089167868400
  4854. vertices: []
  4855. indices:
  4856. edges: []
  4857. weights: []
  4858. - serializedVersion: 2
  4859. name: cta_icon_loot_container_bronze
  4860. rect:
  4861. serializedVersion: 2
  4862. x: 500
  4863. y: 1869
  4864. width: 116
  4865. height: 95
  4866. alignment: 0
  4867. pivot: {x: 0.5, y: 0.5}
  4868. border: {x: 0, y: 0, z: 0, w: 0}
  4869. outline: []
  4870. physicsShape: []
  4871. tessellationDetail: 0
  4872. bones: []
  4873. spriteID: 6d1b53fa5527d2dc0800000000000000
  4874. internalID: -3662145209645026858
  4875. vertices: []
  4876. indices:
  4877. edges: []
  4878. weights: []
  4879. - serializedVersion: 2
  4880. name: InlineIcons_158
  4881. rect:
  4882. serializedVersion: 2
  4883. x: 761
  4884. y: 1919
  4885. width: 141
  4886. height: 116
  4887. alignment: 0
  4888. pivot: {x: 0.5, y: 0.5}
  4889. border: {x: 0, y: 0, z: 0, w: 0}
  4890. outline: []
  4891. physicsShape: []
  4892. tessellationDetail: 0
  4893. bones: []
  4894. spriteID: 8ec54f44a8c0b2d10800000000000000
  4895. internalID: 2101787439100353768
  4896. vertices: []
  4897. indices:
  4898. edges: []
  4899. weights: []
  4900. - serializedVersion: 2
  4901. name: icon_event_pegasus_tokens
  4902. rect:
  4903. serializedVersion: 2
  4904. x: 651
  4905. y: 1886
  4906. width: 97
  4907. height: 106
  4908. alignment: 0
  4909. pivot: {x: 0.5, y: 0.5}
  4910. border: {x: 0, y: 0, z: 0, w: 0}
  4911. outline: []
  4912. physicsShape: []
  4913. tessellationDetail: 0
  4914. bones: []
  4915. spriteID: 43fb3241d77dd3d50800000000000000
  4916. internalID: 6718763151315418932
  4917. vertices: []
  4918. indices:
  4919. edges: []
  4920. weights: []
  4921. - serializedVersion: 2
  4922. name: icon_event_greek_2023_grand_prize_progress
  4923. rect:
  4924. serializedVersion: 2
  4925. x: 3
  4926. y: 1947
  4927. width: 96
  4928. height: 101
  4929. alignment: 0
  4930. pivot: {x: 0.5, y: 0.5}
  4931. border: {x: 0, y: 0, z: 0, w: 0}
  4932. outline: []
  4933. physicsShape: []
  4934. tessellationDetail: 0
  4935. bones: []
  4936. spriteID: 642ac1ad98a093170800000000000000
  4937. internalID: 8158563787144471110
  4938. vertices: []
  4939. indices:
  4940. edges: []
  4941. weights: []
  4942. - serializedVersion: 2
  4943. name: icon_alliance_point_rare
  4944. rect:
  4945. serializedVersion: 2
  4946. x: 575
  4947. y: 1961
  4948. width: 74
  4949. height: 87
  4950. alignment: 0
  4951. pivot: {x: 0.5, y: 0.5}
  4952. border: {x: 0, y: 0, z: 0, w: 0}
  4953. outline: []
  4954. physicsShape: []
  4955. tessellationDetail: 0
  4956. bones: []
  4957. spriteID: 573717ceb7fbae349bdebf8d08b3d181
  4958. internalID: -1619160577
  4959. vertices: []
  4960. indices:
  4961. edges: []
  4962. weights: []
  4963. - serializedVersion: 2
  4964. name: icon_alliance_point_epic
  4965. rect:
  4966. serializedVersion: 2
  4967. x: 501
  4968. y: 1961
  4969. width: 74
  4970. height: 87
  4971. alignment: 0
  4972. pivot: {x: 0.5, y: 0.5}
  4973. border: {x: 0, y: 0, z: 0, w: 0}
  4974. outline: []
  4975. physicsShape: []
  4976. tessellationDetail: 0
  4977. bones: []
  4978. spriteID: da5adb701da504246ae9f7a485068ceb
  4979. internalID: -724805922
  4980. vertices: []
  4981. indices:
  4982. edges: []
  4983. weights: []
  4984. - serializedVersion: 2
  4985. name: icon_alliance_point
  4986. rect:
  4987. serializedVersion: 2
  4988. x: 427
  4989. y: 1961
  4990. width: 73
  4991. height: 87
  4992. alignment: 0
  4993. pivot: {x: 0.5, y: 0.5}
  4994. border: {x: 0, y: 0, z: 0, w: 0}
  4995. outline: []
  4996. physicsShape: []
  4997. tessellationDetail: 0
  4998. bones: []
  4999. spriteID: 7ffcc435ba857794eb9b402c043c281c
  5000. internalID: 2144358214
  5001. vertices: []
  5002. indices:
  5003. edges: []
  5004. weights: []
  5005. - serializedVersion: 2
  5006. name: InlineIcons_0
  5007. rect:
  5008. serializedVersion: 2
  5009. x: 101
  5010. y: 1947
  5011. width: 119
  5012. height: 101
  5013. alignment: 0
  5014. pivot: {x: 0.5, y: 0.5}
  5015. border: {x: 0, y: 0, z: 0, w: 0}
  5016. outline: []
  5017. physicsShape: []
  5018. tessellationDetail: 0
  5019. bones: []
  5020. spriteID: 85509f06080011c46a059d23e4fcd470
  5021. internalID: 370364008
  5022. vertices: []
  5023. indices:
  5024. edges: []
  5025. weights: []
  5026. - serializedVersion: 2
  5027. name: InlineIcons_1
  5028. rect:
  5029. serializedVersion: 2
  5030. x: 228
  5031. y: 1789
  5032. width: 95
  5033. height: 123
  5034. alignment: 0
  5035. pivot: {x: 0.5, y: 0.5}
  5036. border: {x: 0, y: 0, z: 0, w: 0}
  5037. outline: []
  5038. physicsShape: []
  5039. tessellationDetail: 0
  5040. bones: []
  5041. spriteID: 788fc962772e8fa4c83bbec04b8d6218
  5042. internalID: -702928828
  5043. vertices: []
  5044. indices:
  5045. edges: []
  5046. weights: []
  5047. - serializedVersion: 2
  5048. name: icon_checkmark_brown
  5049. rect:
  5050. serializedVersion: 2
  5051. x: 850
  5052. y: 957
  5053. width: 54
  5054. height: 44
  5055. alignment: 0
  5056. pivot: {x: 0.5, y: 0.5}
  5057. border: {x: 0, y: 0, z: 0, w: 0}
  5058. outline: []
  5059. physicsShape: []
  5060. tessellationDetail: 0
  5061. bones: []
  5062. spriteID: fa55e09056a017a4aac91a8b3f4e28b4
  5063. internalID: -1670182809
  5064. vertices: []
  5065. indices:
  5066. edges: []
  5067. weights: []
  5068. outline: []
  5069. physicsShape: []
  5070. bones: []
  5071. spriteID: e3ca2b924617e4dd89f48a6ee355034e
  5072. internalID: 0
  5073. vertices: []
  5074. indices:
  5075. edges: []
  5076. weights: []
  5077. secondaryTextures: []
  5078. nameFileIdTable:
  5079. InlineIcons_0: 370364008
  5080. InlineIcons_1: -702928828
  5081. InlineIcons_122: 4281911320752687849
  5082. InlineIcons_130: -4178829386858457095
  5083. InlineIcons_133: 3112621357950915070
  5084. InlineIcons_134: -329868462160931304
  5085. InlineIcons_135: -8463493406355435034
  5086. InlineIcons_136: 2084413756825693856
  5087. InlineIcons_154: -5536544251107829900
  5088. InlineIcons_158: 2101787439100353768
  5089. InlineIcons_32: 7972151216418658502
  5090. ath_attempt: 7681201850867341242
  5091. bb_checkmark: 21300016
  5092. bb_lock: 7245690677989368111
  5093. bb_lock_grey: 2061223666325461347
  5094. blueprint: 3495086814825567685
  5095. blueprint_rare: -1659708932042841261
  5096. boost: 21300014
  5097. clock_blue: -8246627260571945669
  5098. clock_embossed_pos: -6279640769779937744
  5099. cocoa: 6107784321054212483
  5100. coin_food_boost: 2441754920960949527
  5101. coins: 21300002
  5102. coins_small: -1869673367297931309
  5103. commander: -5437674158304577141
  5104. cta_ancestor_mask: -5159087384432534610
  5105. cta_ankh: -7343220986905845580
  5106. cta_barrel: 2289998852469363648
  5107. cta_building_vikings_sailorport: -701876230672350822
  5108. cta_building_vikings_sailorport_premium_1: 2586379074099917112
  5109. cta_building_vikings_sailorport_premium_2: -12563651127225671
  5110. cta_calendar_stone: 8678780475385641507
  5111. cta_cape: 8287165777748813492
  5112. cta_ceramic_treasure: 4751259173209894178
  5113. cta_ceremonial_dress: -2518806979871309895
  5114. cta_clay: -7411174152488024004
  5115. cta_cocoa: 5803713721798503446
  5116. cta_coins: -5167353112666354359
  5117. cta_column: 8640258737205591229
  5118. cta_door: -838908008875007501
  5119. cta_feather: 8757602080057577540
  5120. cta_fish: -8478562381375844705
  5121. cta_gears: 4642325231336661812
  5122. cta_goblet: 7462434613906369459
  5123. cta_gold_laurel: -7357144505842695810
  5124. cta_gold_ore: 2117336584302238645
  5125. cta_gold_treasure: 8814212362280375727
  5126. cta_golden_sphinx: -2269303870351376580
  5127. cta_happiness_maya_2: 1023881543254830229
  5128. cta_headdress: 7513239266779225853
  5129. cta_herbs: -7333887034695731682
  5130. cta_honey: -3386218922703161388
  5131. cta_icon_chest_blueprint: 1088730770723027953
  5132. cta_icon_chest_rp: -1953511547368589529
  5133. cta_icon_loot_container: -7335904089167868400
  5134. cta_icon_loot_container_bronze: -3662145209645026858
  5135. cta_icon_mystery_chest: 8954016801280762372
  5136. cta_icon_mystery_chest_gold: -1487877384612313618
  5137. cta_ink: -2217656884674354197
  5138. cta_iron_pendant: -8318277596760801014
  5139. cta_jade: 6409830552331150148
  5140. cta_kaolin: 4936506583271141030
  5141. cta_linen_shirt: -4770960272869957185
  5142. cta_manuscript: 4624541004163449478
  5143. cta_marble_bust: -9021633436630479557
  5144. cta_maya_luxurious_workshop_level2: 3969048961352433308
  5145. cta_mead: -2794259043635821732
  5146. cta_mixedchest: -5617448299673312401
  5147. cta_mosaic: -1321098932929957079
  5148. cta_moth_cocoons: -44565893461480510
  5149. cta_obsidian: 4956319499149316874
  5150. cta_obsidiancalendarancestormask: -4501791974573854292
  5151. cta_obsidianjade: -7043394559850540028
  5152. cta_papyrus: 541087786881136906
  5153. cta_papyrus_scroll: -7215298494019262123
  5154. cta_pennies: -1856732651501631057
  5155. cta_pepper: 5488086946749717670
  5156. cta_planks: -1670260634343250872
  5157. cta_porcelain: 6396128496709196802
  5158. cta_priest: 9112743452827066768
  5159. cta_recruit: 6905562749588875414
  5160. cta_research_points: 8674190453677158122
  5161. cta_rice: -2829443050583330228
  5162. cta_ritual_dagger: -5049782452158657568
  5163. cta_saffron: -2578651400172810937
  5164. cta_salt: -8210193684748564459
  5165. cta_silk: 4524241383834298874
  5166. cta_silk_threads: -7851600766591116406
  5167. cta_silver_ring: -6162265055754030298
  5168. cta_spice_treasure: 5701253759128972283
  5169. cta_stockfish: 8617892559191809022
  5170. cta_stone_tablet: 3537169958838929854
  5171. cta_suns_blessing: -6316392241553622110
  5172. cta_toga: -7230867332484785407
  5173. cta_tunic: 210297501773229927
  5174. cta_wax_seal: 3375157875343467442
  5175. cta_wooden_wheel: -8037489388941252367
  5176. cta_wu_zhu: -8264326421717354311
  5177. culture_bonus: 2102306210881839429
  5178. culture_range: 7459902675860876989
  5179. dead: -9160987577138628238
  5180. deben: -7927273033115742964
  5181. ebc_broch: 8996665824694350818
  5182. ebc_cryptofthecount: 4104117333016806175
  5183. ebc_hydra: -4834095905783300709
  5184. ebc_madrasa: -7006899675943808146
  5185. ebc_madscientistslab: 37763770702065993
  5186. ebc_persianpalace: 4939863863825205819
  5187. ebc_piratefortress: -1999946806344817058
  5188. ebc_shrineofreflection: 5534174253454217892
  5189. ebc_trojanhorse: 9124709818946717747
  5190. ebc_wintermarket: 1037585894331930479
  5191. expansion: -6479823341794910233
  5192. flat_cancel: 3643772185187624922
  5193. flat_check: -922888878065087515
  5194. food: 21300004
  5195. food_small: 255080986811049931
  5196. gears: 7674156195484195045
  5197. glass: 21300008
  5198. goods: 21300006
  5199. happiness_0: 2267314249368087281
  5200. happiness_1: -9053465508694820594
  5201. happiness_2: -1134528729738406305
  5202. happiness_3: 7780953735995972703
  5203. icon_alabaster_idol: 8373675954752092734
  5204. icon_alliance_point: 2144358214
  5205. icon_alliance_point_epic: -724805922
  5206. icon_alliance_point_rare: -1619160577
  5207. icon_arabia_worker: -4020335626915314013
  5208. icon_brass: 8475544577015182143
  5209. icon_bronze_bracelet: 7237261532831544450
  5210. icon_camel: 4932850884273308405
  5211. icon_checkmark_brown: -1670182809
  5212. icon_chest_good2: -8267115305123039760
  5213. icon_chili: -5750983614340588109
  5214. icon_coffee: 6694968190869980855
  5215. icon_coffee_beans: -6463064620358863643
  5216. icon_crate: -2965744954758517795
  5217. icon_dirham: 3814798381351036019
  5218. icon_event_greek_2023_grand_prize_progress: 8158563787144471110
  5219. icon_event_pegasus_tokens: 6718763151315418932
  5220. icon_flint: 1438499179017281121
  5221. icon_food_black: 8706619048834826526
  5222. icon_gem_treasure: -4951088303895349411
  5223. icon_gold_dinar: 1302763225339234619
  5224. icon_hide: 5908195551155024309
  5225. icon_incense: 1896382066041297041
  5226. icon_myrrh: -7081792888699921481
  5227. icon_star: 3436914362765528371
  5228. icon_tome: 7134325258175837443
  5229. icon_trade token: -5645743825326872590
  5230. icon_wardrobe: -728244194544253039
  5231. icon_wool: 358799654582701605
  5232. info: 1853125249586873685
  5233. irrigation: -2457531169152919533
  5234. irrigation_0: 6619405697063382928
  5235. irrigation_1: -5368687836300328278
  5236. irrigation_2: 1461871564780703198
  5237. irrigation_bonus: -8078951251822203351
  5238. map: -399840562033327265
  5239. pennies: 7700661865242328817
  5240. premium: 21300000
  5241. ranking: 6195470969790340212
  5242. research_points: 21300012
  5243. research_points_small: 6547572931748238266
  5244. scout: 1357911645972831016
  5245. shoreline: -1104962026362419977
  5246. swords: 1260782343283211980
  5247. trade: -3402344481944718353
  5248. tutorial_icon_build: 4721570850333449918
  5249. tutorial_icon_incident: -2043815690625100865
  5250. tutorial_icon_produce: 1954612522021269676
  5251. unit_cavalry: -497568770147540219
  5252. unit_melee: 2437483765381717123
  5253. unit_range: 5390246818323809478
  5254. upgrade: 7096138885364736195
  5255. upgrade_small: -8988441530965576436
  5256. warning: -1571012651542167539
  5257. wonder_active_checkmark: -7191163486456543192
  5258. wonder_inactive_checkmark: 7812820661483254461
  5259. wonder_orb: -2904807348406626498
  5260. wonders: 5078477160627523986
  5261. workers_big_city_capital: 21300010
  5262. workers_big_city_china: -6707575059094875716
  5263. workers_big_city_egypt: 921062424029211809
  5264. workers_big_city_mayas: -2136406889496393637
  5265. workers_big_city_vikings: 8289822419994577490
  5266. workers_big_priestmaya: -8141631665637155745
  5267. workers_big_sailorvikings: 7673711170268496860
  5268. workers_city_capital: 3121471347900928983
  5269. workers_city_china: 5706957933644387078
  5270. workers_city_egypt: -6346629593138849361
  5271. workers_city_mayas: 6228371465862800648
  5272. workers_city_vikings: 3017109405843695886
  5273. workers_priestmaya: -7713781604464504857
  5274. workers_sailorvikings: 7291930161081552924
  5275. workers_small_city_capital: 4513387777306473356
  5276. workers_small_city_china: -3297204628491984772
  5277. workers_small_city_egypt: -3389039848645536794
  5278. workers_small_city_mayas: 2108014542765709681
  5279. workers_small_city_vikings: 429688389500101892
  5280. workers_small_priestmaya: -4198053654051914648
  5281. workers_small_sailorvikings: -983479635111419447
  5282. workers_trading_big: 1494432333228735887
  5283. wu_zhu: -7907368816393526887
  5284. spritePackingTag:
  5285. pSDRemoveMatte: 0
  5286. pSDShowRemoveMatteOption: 0
  5287. userData:
  5288. assetBundleName:
  5289. assetBundleVariant: