bear.plist.meta 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210
  1. {
  2. "ver": "1.2.6",
  3. "uuid": "ecd1b9c1-6f61-40c7-9be2-f932dcfa0e8c",
  4. "importer": "sprite-atlas",
  5. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  6. "size": {
  7. "width": 968,
  8. "height": 504
  9. },
  10. "type": "Texture Packer",
  11. "subMetas": {
  12. "bear_click_00.png": {
  13. "ver": "1.0.6",
  14. "uuid": "b1d789c2-36e4-46d0-9f31-e440b52f1c49",
  15. "importer": "sprite-frame",
  16. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  17. "trimType": "auto",
  18. "trimThreshold": 1,
  19. "rotated": false,
  20. "offsetX": 0,
  21. "offsetY": 0,
  22. "trimX": 648,
  23. "trimY": 71,
  24. "width": 70,
  25. "height": 69,
  26. "rawWidth": 70,
  27. "rawHeight": 69,
  28. "borderTop": 0,
  29. "borderBottom": 0,
  30. "borderLeft": 0,
  31. "borderRight": 0,
  32. "spriteType": "normal",
  33. "subMetas": {}
  34. },
  35. "bear_click_01.png": {
  36. "ver": "1.0.6",
  37. "uuid": "4475b69e-f47f-487a-942c-1fb562e7b7b8",
  38. "importer": "sprite-frame",
  39. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  40. "trimType": "auto",
  41. "trimThreshold": 1,
  42. "rotated": false,
  43. "offsetX": 0,
  44. "offsetY": 0,
  45. "trimX": 648,
  46. "trimY": 71,
  47. "width": 70,
  48. "height": 69,
  49. "rawWidth": 70,
  50. "rawHeight": 69,
  51. "borderTop": 0,
  52. "borderBottom": 0,
  53. "borderLeft": 0,
  54. "borderRight": 0,
  55. "spriteType": "normal",
  56. "subMetas": {}
  57. },
  58. "bear_click_10.png": {
  59. "ver": "1.0.6",
  60. "uuid": "5cd3a525-1a5b-4fec-8cf8-7af65bbca188",
  61. "importer": "sprite-frame",
  62. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  63. "trimType": "auto",
  64. "trimThreshold": 1,
  65. "rotated": false,
  66. "offsetX": 0,
  67. "offsetY": 0,
  68. "trimX": 788,
  69. "trimY": 71,
  70. "width": 70,
  71. "height": 69,
  72. "rawWidth": 70,
  73. "rawHeight": 69,
  74. "borderTop": 0,
  75. "borderBottom": 0,
  76. "borderLeft": 0,
  77. "borderRight": 0,
  78. "spriteType": "normal",
  79. "subMetas": {}
  80. },
  81. "bear_click_11.png": {
  82. "ver": "1.0.6",
  83. "uuid": "2faecc1d-2b30-44b1-9238-9eb29ad13fb5",
  84. "importer": "sprite-frame",
  85. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  86. "trimType": "auto",
  87. "trimThreshold": 1,
  88. "rotated": false,
  89. "offsetX": 0,
  90. "offsetY": 0,
  91. "trimX": 72,
  92. "trimY": 140,
  93. "width": 70,
  94. "height": 69,
  95. "rawWidth": 70,
  96. "rawHeight": 69,
  97. "borderTop": 0,
  98. "borderBottom": 0,
  99. "borderLeft": 0,
  100. "borderRight": 0,
  101. "spriteType": "normal",
  102. "subMetas": {}
  103. },
  104. "bear_click_12.png": {
  105. "ver": "1.0.6",
  106. "uuid": "e532d31c-068f-4470-8b38-b0b87e1170b7",
  107. "importer": "sprite-frame",
  108. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  109. "trimType": "auto",
  110. "trimThreshold": 1,
  111. "rotated": false,
  112. "offsetX": 0,
  113. "offsetY": 0,
  114. "trimX": 858,
  115. "trimY": 71,
  116. "width": 70,
  117. "height": 69,
  118. "rawWidth": 70,
  119. "rawHeight": 69,
  120. "borderTop": 0,
  121. "borderBottom": 0,
  122. "borderLeft": 0,
  123. "borderRight": 0,
  124. "spriteType": "normal",
  125. "subMetas": {}
  126. },
  127. "bear_click_13.png": {
  128. "ver": "1.0.6",
  129. "uuid": "0c158acc-a211-445b-acb5-fbbaca19615a",
  130. "importer": "sprite-frame",
  131. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  132. "trimType": "auto",
  133. "trimThreshold": 1,
  134. "rotated": false,
  135. "offsetX": 0,
  136. "offsetY": 0,
  137. "trimX": 2,
  138. "trimY": 140,
  139. "width": 70,
  140. "height": 69,
  141. "rawWidth": 70,
  142. "rawHeight": 69,
  143. "borderTop": 0,
  144. "borderBottom": 0,
  145. "borderLeft": 0,
  146. "borderRight": 0,
  147. "spriteType": "normal",
  148. "subMetas": {}
  149. },
  150. "bear_click_14.png": {
  151. "ver": "1.0.6",
  152. "uuid": "0f885ccb-653c-4bbf-828f-140c29d3ea86",
  153. "importer": "sprite-frame",
  154. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  155. "trimType": "auto",
  156. "trimThreshold": 1,
  157. "rotated": false,
  158. "offsetX": 0,
  159. "offsetY": 0,
  160. "trimX": 718,
  161. "trimY": 71,
  162. "width": 70,
  163. "height": 69,
  164. "rawWidth": 70,
  165. "rawHeight": 69,
  166. "borderTop": 0,
  167. "borderBottom": 0,
  168. "borderLeft": 0,
  169. "borderRight": 0,
  170. "spriteType": "normal",
  171. "subMetas": {}
  172. },
  173. "bear_click_15.png": {
  174. "ver": "1.0.6",
  175. "uuid": "6aee3ae1-c01e-4b7c-913e-3d08fcb40450",
  176. "importer": "sprite-frame",
  177. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  178. "trimType": "auto",
  179. "trimThreshold": 1,
  180. "rotated": false,
  181. "offsetX": 0,
  182. "offsetY": 0,
  183. "trimX": 718,
  184. "trimY": 71,
  185. "width": 70,
  186. "height": 69,
  187. "rawWidth": 70,
  188. "rawHeight": 69,
  189. "borderTop": 0,
  190. "borderBottom": 0,
  191. "borderLeft": 0,
  192. "borderRight": 0,
  193. "spriteType": "normal",
  194. "subMetas": {}
  195. },
  196. "bear_click_16.png": {
  197. "ver": "1.0.6",
  198. "uuid": "b708dc39-6f09-4298-b48c-393beea5b9d7",
  199. "importer": "sprite-frame",
  200. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  201. "trimType": "auto",
  202. "trimThreshold": 1,
  203. "rotated": false,
  204. "offsetX": 0,
  205. "offsetY": 0,
  206. "trimX": 718,
  207. "trimY": 71,
  208. "width": 70,
  209. "height": 69,
  210. "rawWidth": 70,
  211. "rawHeight": 69,
  212. "borderTop": 0,
  213. "borderBottom": 0,
  214. "borderLeft": 0,
  215. "borderRight": 0,
  216. "spriteType": "normal",
  217. "subMetas": {}
  218. },
  219. "bear_click_17.png": {
  220. "ver": "1.0.6",
  221. "uuid": "cda063ac-c83d-4119-bea7-27a96531a581",
  222. "importer": "sprite-frame",
  223. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  224. "trimType": "auto",
  225. "trimThreshold": 1,
  226. "rotated": false,
  227. "offsetX": 0,
  228. "offsetY": 0,
  229. "trimX": 718,
  230. "trimY": 71,
  231. "width": 70,
  232. "height": 69,
  233. "rawWidth": 70,
  234. "rawHeight": 69,
  235. "borderTop": 0,
  236. "borderBottom": 0,
  237. "borderLeft": 0,
  238. "borderRight": 0,
  239. "spriteType": "normal",
  240. "subMetas": {}
  241. },
  242. "bear_click_18.png": {
  243. "ver": "1.0.6",
  244. "uuid": "e7d3a673-f60a-4dbe-aff5-478a01423f9f",
  245. "importer": "sprite-frame",
  246. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  247. "trimType": "auto",
  248. "trimThreshold": 1,
  249. "rotated": false,
  250. "offsetX": 0,
  251. "offsetY": 0,
  252. "trimX": 718,
  253. "trimY": 71,
  254. "width": 70,
  255. "height": 69,
  256. "rawWidth": 70,
  257. "rawHeight": 69,
  258. "borderTop": 0,
  259. "borderBottom": 0,
  260. "borderLeft": 0,
  261. "borderRight": 0,
  262. "spriteType": "normal",
  263. "subMetas": {}
  264. },
  265. "bear_click_19.png": {
  266. "ver": "1.0.6",
  267. "uuid": "a34f0574-9842-4149-9ce7-6b8feae9affa",
  268. "importer": "sprite-frame",
  269. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  270. "trimType": "auto",
  271. "trimThreshold": 1,
  272. "rotated": false,
  273. "offsetX": 0,
  274. "offsetY": 0,
  275. "trimX": 718,
  276. "trimY": 71,
  277. "width": 70,
  278. "height": 69,
  279. "rawWidth": 70,
  280. "rawHeight": 69,
  281. "borderTop": 0,
  282. "borderBottom": 0,
  283. "borderLeft": 0,
  284. "borderRight": 0,
  285. "spriteType": "normal",
  286. "subMetas": {}
  287. },
  288. "bear_click_02.png": {
  289. "ver": "1.0.6",
  290. "uuid": "caed8519-dd0c-4f1a-95af-ef6a74b95d99",
  291. "importer": "sprite-frame",
  292. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  293. "trimType": "auto",
  294. "trimThreshold": 1,
  295. "rotated": false,
  296. "offsetX": 0,
  297. "offsetY": 0,
  298. "trimX": 648,
  299. "trimY": 71,
  300. "width": 70,
  301. "height": 69,
  302. "rawWidth": 70,
  303. "rawHeight": 69,
  304. "borderTop": 0,
  305. "borderBottom": 0,
  306. "borderLeft": 0,
  307. "borderRight": 0,
  308. "spriteType": "normal",
  309. "subMetas": {}
  310. },
  311. "bear_click_20.png": {
  312. "ver": "1.0.6",
  313. "uuid": "66442acc-76a8-4076-8405-555cbda69089",
  314. "importer": "sprite-frame",
  315. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  316. "trimType": "auto",
  317. "trimThreshold": 1,
  318. "rotated": false,
  319. "offsetX": 0,
  320. "offsetY": 0,
  321. "trimX": 718,
  322. "trimY": 71,
  323. "width": 70,
  324. "height": 69,
  325. "rawWidth": 70,
  326. "rawHeight": 69,
  327. "borderTop": 0,
  328. "borderBottom": 0,
  329. "borderLeft": 0,
  330. "borderRight": 0,
  331. "spriteType": "normal",
  332. "subMetas": {}
  333. },
  334. "bear_click_21.png": {
  335. "ver": "1.0.6",
  336. "uuid": "58127f1b-9a43-40a5-bf2f-2cdab24cfb0d",
  337. "importer": "sprite-frame",
  338. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  339. "trimType": "auto",
  340. "trimThreshold": 1,
  341. "rotated": false,
  342. "offsetX": 0,
  343. "offsetY": 0,
  344. "trimX": 578,
  345. "trimY": 71,
  346. "width": 70,
  347. "height": 69,
  348. "rawWidth": 70,
  349. "rawHeight": 69,
  350. "borderTop": 0,
  351. "borderBottom": 0,
  352. "borderLeft": 0,
  353. "borderRight": 0,
  354. "spriteType": "normal",
  355. "subMetas": {}
  356. },
  357. "bear_click_22.png": {
  358. "ver": "1.0.6",
  359. "uuid": "b7f5ad01-7cca-4650-9591-7012c604376e",
  360. "importer": "sprite-frame",
  361. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  362. "trimType": "auto",
  363. "trimThreshold": 1,
  364. "rotated": false,
  365. "offsetX": 0,
  366. "offsetY": 0,
  367. "trimX": 228,
  368. "trimY": 71,
  369. "width": 70,
  370. "height": 69,
  371. "rawWidth": 70,
  372. "rawHeight": 69,
  373. "borderTop": 0,
  374. "borderBottom": 0,
  375. "borderLeft": 0,
  376. "borderRight": 0,
  377. "spriteType": "normal",
  378. "subMetas": {}
  379. },
  380. "bear_click_23.png": {
  381. "ver": "1.0.6",
  382. "uuid": "fddf2781-767e-4ccc-bf0e-b0df268bc87f",
  383. "importer": "sprite-frame",
  384. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  385. "trimType": "auto",
  386. "trimThreshold": 1,
  387. "rotated": false,
  388. "offsetX": 0,
  389. "offsetY": 0,
  390. "trimX": 368,
  391. "trimY": 71,
  392. "width": 70,
  393. "height": 69,
  394. "rawWidth": 70,
  395. "rawHeight": 69,
  396. "borderTop": 0,
  397. "borderBottom": 0,
  398. "borderLeft": 0,
  399. "borderRight": 0,
  400. "spriteType": "normal",
  401. "subMetas": {}
  402. },
  403. "bear_click_24.png": {
  404. "ver": "1.0.6",
  405. "uuid": "ed617b65-16ca-49db-a567-3579384f00ea",
  406. "importer": "sprite-frame",
  407. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  408. "trimType": "auto",
  409. "trimThreshold": 1,
  410. "rotated": false,
  411. "offsetX": 0,
  412. "offsetY": 0,
  413. "trimX": 508,
  414. "trimY": 71,
  415. "width": 70,
  416. "height": 69,
  417. "rawWidth": 70,
  418. "rawHeight": 69,
  419. "borderTop": 0,
  420. "borderBottom": 0,
  421. "borderLeft": 0,
  422. "borderRight": 0,
  423. "spriteType": "normal",
  424. "subMetas": {}
  425. },
  426. "bear_click_25.png": {
  427. "ver": "1.0.6",
  428. "uuid": "cea2db5e-a17b-4549-90a7-8bc861e7b372",
  429. "importer": "sprite-frame",
  430. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  431. "trimType": "auto",
  432. "trimThreshold": 1,
  433. "rotated": false,
  434. "offsetX": 0,
  435. "offsetY": 0,
  436. "trimX": 438,
  437. "trimY": 71,
  438. "width": 70,
  439. "height": 69,
  440. "rawWidth": 70,
  441. "rawHeight": 69,
  442. "borderTop": 0,
  443. "borderBottom": 0,
  444. "borderLeft": 0,
  445. "borderRight": 0,
  446. "spriteType": "normal",
  447. "subMetas": {}
  448. },
  449. "bear_click_26.png": {
  450. "ver": "1.0.6",
  451. "uuid": "d39e5dac-7bc9-4213-b079-546c3ea5c103",
  452. "importer": "sprite-frame",
  453. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  454. "trimType": "auto",
  455. "trimThreshold": 1,
  456. "rotated": false,
  457. "offsetX": 0,
  458. "offsetY": 0,
  459. "trimX": 298,
  460. "trimY": 71,
  461. "width": 70,
  462. "height": 69,
  463. "rawWidth": 70,
  464. "rawHeight": 69,
  465. "borderTop": 0,
  466. "borderBottom": 0,
  467. "borderLeft": 0,
  468. "borderRight": 0,
  469. "spriteType": "normal",
  470. "subMetas": {}
  471. },
  472. "bear_click_27.png": {
  473. "ver": "1.0.6",
  474. "uuid": "5856ba16-80c8-478d-b13e-a4b4ad5d4aed",
  475. "importer": "sprite-frame",
  476. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  477. "trimType": "auto",
  478. "trimThreshold": 1,
  479. "rotated": false,
  480. "offsetX": 0,
  481. "offsetY": 0,
  482. "trimX": 298,
  483. "trimY": 71,
  484. "width": 70,
  485. "height": 69,
  486. "rawWidth": 70,
  487. "rawHeight": 69,
  488. "borderTop": 0,
  489. "borderBottom": 0,
  490. "borderLeft": 0,
  491. "borderRight": 0,
  492. "spriteType": "normal",
  493. "subMetas": {}
  494. },
  495. "bear_click_28.png": {
  496. "ver": "1.0.6",
  497. "uuid": "b20b7625-dafa-42c4-9a1a-e9b04827fa02",
  498. "importer": "sprite-frame",
  499. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  500. "trimType": "auto",
  501. "trimThreshold": 1,
  502. "rotated": false,
  503. "offsetX": 0,
  504. "offsetY": 0,
  505. "trimX": 298,
  506. "trimY": 71,
  507. "width": 70,
  508. "height": 69,
  509. "rawWidth": 70,
  510. "rawHeight": 69,
  511. "borderTop": 0,
  512. "borderBottom": 0,
  513. "borderLeft": 0,
  514. "borderRight": 0,
  515. "spriteType": "normal",
  516. "subMetas": {}
  517. },
  518. "bear_click_29.png": {
  519. "ver": "1.0.6",
  520. "uuid": "53deead1-5420-4946-953c-2d59a0fcefa7",
  521. "importer": "sprite-frame",
  522. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  523. "trimType": "auto",
  524. "trimThreshold": 1,
  525. "rotated": false,
  526. "offsetX": 0,
  527. "offsetY": 0,
  528. "trimX": 298,
  529. "trimY": 71,
  530. "width": 70,
  531. "height": 69,
  532. "rawWidth": 70,
  533. "rawHeight": 69,
  534. "borderTop": 0,
  535. "borderBottom": 0,
  536. "borderLeft": 0,
  537. "borderRight": 0,
  538. "spriteType": "normal",
  539. "subMetas": {}
  540. },
  541. "bear_click_03.png": {
  542. "ver": "1.0.6",
  543. "uuid": "df8f0121-fda6-4b4d-a9c8-12acfcac9bc1",
  544. "importer": "sprite-frame",
  545. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  546. "trimType": "auto",
  547. "trimThreshold": 1,
  548. "rotated": false,
  549. "offsetX": 0,
  550. "offsetY": 0,
  551. "trimX": 298,
  552. "trimY": 71,
  553. "width": 70,
  554. "height": 69,
  555. "rawWidth": 70,
  556. "rawHeight": 69,
  557. "borderTop": 0,
  558. "borderBottom": 0,
  559. "borderLeft": 0,
  560. "borderRight": 0,
  561. "spriteType": "normal",
  562. "subMetas": {}
  563. },
  564. "bear_click_04.png": {
  565. "ver": "1.0.6",
  566. "uuid": "287b922b-c696-4467-a022-2daad764bfcc",
  567. "importer": "sprite-frame",
  568. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  569. "trimType": "auto",
  570. "trimThreshold": 1,
  571. "rotated": false,
  572. "offsetX": 0,
  573. "offsetY": 0,
  574. "trimX": 212,
  575. "trimY": 140,
  576. "width": 70,
  577. "height": 69,
  578. "rawWidth": 70,
  579. "rawHeight": 69,
  580. "borderTop": 0,
  581. "borderBottom": 0,
  582. "borderLeft": 0,
  583. "borderRight": 0,
  584. "spriteType": "normal",
  585. "subMetas": {}
  586. },
  587. "bear_click_05.png": {
  588. "ver": "1.0.6",
  589. "uuid": "32bad5cd-5c4f-4303-bdf0-607670e6b691",
  590. "importer": "sprite-frame",
  591. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  592. "trimType": "auto",
  593. "trimThreshold": 1,
  594. "rotated": false,
  595. "offsetX": 0,
  596. "offsetY": 0,
  597. "trimX": 282,
  598. "trimY": 140,
  599. "width": 70,
  600. "height": 69,
  601. "rawWidth": 70,
  602. "rawHeight": 69,
  603. "borderTop": 0,
  604. "borderBottom": 0,
  605. "borderLeft": 0,
  606. "borderRight": 0,
  607. "spriteType": "normal",
  608. "subMetas": {}
  609. },
  610. "bear_click_06.png": {
  611. "ver": "1.0.6",
  612. "uuid": "50f7f7e3-3034-4284-bc04-0a60e2b800de",
  613. "importer": "sprite-frame",
  614. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  615. "trimType": "auto",
  616. "trimThreshold": 1,
  617. "rotated": false,
  618. "offsetX": 0,
  619. "offsetY": 0,
  620. "trimX": 142,
  621. "trimY": 140,
  622. "width": 70,
  623. "height": 69,
  624. "rawWidth": 70,
  625. "rawHeight": 69,
  626. "borderTop": 0,
  627. "borderBottom": 0,
  628. "borderLeft": 0,
  629. "borderRight": 0,
  630. "spriteType": "normal",
  631. "subMetas": {}
  632. },
  633. "bear_click_07.png": {
  634. "ver": "1.0.6",
  635. "uuid": "8cb8a3bc-c0fa-4078-9568-ebccd9681eaa",
  636. "importer": "sprite-frame",
  637. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  638. "trimType": "auto",
  639. "trimThreshold": 1,
  640. "rotated": false,
  641. "offsetX": 0,
  642. "offsetY": 0,
  643. "trimX": 744,
  644. "trimY": 2,
  645. "width": 70,
  646. "height": 69,
  647. "rawWidth": 70,
  648. "rawHeight": 69,
  649. "borderTop": 0,
  650. "borderBottom": 0,
  651. "borderLeft": 0,
  652. "borderRight": 0,
  653. "spriteType": "normal",
  654. "subMetas": {}
  655. },
  656. "bear_click_08.png": {
  657. "ver": "1.0.6",
  658. "uuid": "0ade6c1c-0b41-42ac-b925-b528467620aa",
  659. "importer": "sprite-frame",
  660. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  661. "trimType": "auto",
  662. "trimThreshold": 1,
  663. "rotated": false,
  664. "offsetX": 0,
  665. "offsetY": 0,
  666. "trimX": 718,
  667. "trimY": 71,
  668. "width": 70,
  669. "height": 69,
  670. "rawWidth": 70,
  671. "rawHeight": 69,
  672. "borderTop": 0,
  673. "borderBottom": 0,
  674. "borderLeft": 0,
  675. "borderRight": 0,
  676. "spriteType": "normal",
  677. "subMetas": {}
  678. },
  679. "bear_click_09.png": {
  680. "ver": "1.0.6",
  681. "uuid": "ea68f4fc-809c-454d-b43a-c9fc25404b8e",
  682. "importer": "sprite-frame",
  683. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  684. "trimType": "auto",
  685. "trimThreshold": 1,
  686. "rotated": false,
  687. "offsetX": 0,
  688. "offsetY": 0,
  689. "trimX": 450,
  690. "trimY": 2,
  691. "width": 70,
  692. "height": 69,
  693. "rawWidth": 70,
  694. "rawHeight": 69,
  695. "borderTop": 0,
  696. "borderBottom": 0,
  697. "borderLeft": 0,
  698. "borderRight": 0,
  699. "spriteType": "normal",
  700. "subMetas": {}
  701. },
  702. "bear_column_00.png": {
  703. "ver": "1.0.6",
  704. "uuid": "19956264-6008-4ce0-998c-2349c7c4a0f3",
  705. "importer": "sprite-frame",
  706. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  707. "trimType": "auto",
  708. "trimThreshold": 1,
  709. "rotated": false,
  710. "offsetX": -1,
  711. "offsetY": 0,
  712. "trimX": 734,
  713. "trimY": 140,
  714. "width": 78,
  715. "height": 70,
  716. "rawWidth": 82,
  717. "rawHeight": 74,
  718. "borderTop": 0,
  719. "borderBottom": 0,
  720. "borderLeft": 0,
  721. "borderRight": 0,
  722. "spriteType": "normal",
  723. "subMetas": {}
  724. },
  725. "bear_column_01.png": {
  726. "ver": "1.0.6",
  727. "uuid": "4dfbc350-91d5-4dc5-812b-82b034218fa1",
  728. "importer": "sprite-frame",
  729. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  730. "trimType": "auto",
  731. "trimThreshold": 1,
  732. "rotated": false,
  733. "offsetX": 0,
  734. "offsetY": 0,
  735. "trimX": 812,
  736. "trimY": 140,
  737. "width": 78,
  738. "height": 70,
  739. "rawWidth": 82,
  740. "rawHeight": 74,
  741. "borderTop": 0,
  742. "borderBottom": 0,
  743. "borderLeft": 0,
  744. "borderRight": 0,
  745. "spriteType": "normal",
  746. "subMetas": {}
  747. },
  748. "bear_column_10.png": {
  749. "ver": "1.0.6",
  750. "uuid": "16bceaf8-5bc6-4211-8e24-3500ca7ceedd",
  751. "importer": "sprite-frame",
  752. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  753. "trimType": "auto",
  754. "trimThreshold": 1,
  755. "rotated": false,
  756. "offsetX": 0,
  757. "offsetY": 0,
  758. "trimX": 242,
  759. "trimY": 427,
  760. "width": 80,
  761. "height": 74,
  762. "rawWidth": 82,
  763. "rawHeight": 74,
  764. "borderTop": 0,
  765. "borderBottom": 0,
  766. "borderLeft": 0,
  767. "borderRight": 0,
  768. "spriteType": "normal",
  769. "subMetas": {}
  770. },
  771. "bear_column_11.png": {
  772. "ver": "1.0.6",
  773. "uuid": "908213e1-2e54-46f6-9ec9-972860957b8a",
  774. "importer": "sprite-frame",
  775. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  776. "trimType": "auto",
  777. "trimThreshold": 1,
  778. "rotated": false,
  779. "offsetX": 0,
  780. "offsetY": 0,
  781. "trimX": 547,
  782. "trimY": 281,
  783. "width": 78,
  784. "height": 72,
  785. "rawWidth": 82,
  786. "rawHeight": 74,
  787. "borderTop": 0,
  788. "borderBottom": 0,
  789. "borderLeft": 0,
  790. "borderRight": 0,
  791. "spriteType": "normal",
  792. "subMetas": {}
  793. },
  794. "bear_column_12.png": {
  795. "ver": "1.0.6",
  796. "uuid": "426b12b6-b841-4a02-9ca5-cf8ea972f8e0",
  797. "importer": "sprite-frame",
  798. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  799. "trimType": "auto",
  800. "trimThreshold": 1,
  801. "rotated": false,
  802. "offsetX": 0,
  803. "offsetY": 0,
  804. "trimX": 625,
  805. "trimY": 281,
  806. "width": 78,
  807. "height": 72,
  808. "rawWidth": 82,
  809. "rawHeight": 74,
  810. "borderTop": 0,
  811. "borderBottom": 0,
  812. "borderLeft": 0,
  813. "borderRight": 0,
  814. "spriteType": "normal",
  815. "subMetas": {}
  816. },
  817. "bear_column_13.png": {
  818. "ver": "1.0.6",
  819. "uuid": "5d21b2d3-786e-4c05-8a83-cdf434900b6f",
  820. "importer": "sprite-frame",
  821. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  822. "trimType": "auto",
  823. "trimThreshold": 1,
  824. "rotated": false,
  825. "offsetX": -1,
  826. "offsetY": 0,
  827. "trimX": 656,
  828. "trimY": 140,
  829. "width": 78,
  830. "height": 70,
  831. "rawWidth": 82,
  832. "rawHeight": 74,
  833. "borderTop": 0,
  834. "borderBottom": 0,
  835. "borderLeft": 0,
  836. "borderRight": 0,
  837. "spriteType": "normal",
  838. "subMetas": {}
  839. },
  840. "bear_column_14.png": {
  841. "ver": "1.0.6",
  842. "uuid": "845c8620-ac9b-4a1c-9cd3-f9bb13f05119",
  843. "importer": "sprite-frame",
  844. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  845. "trimType": "auto",
  846. "trimThreshold": 1,
  847. "rotated": false,
  848. "offsetX": -1,
  849. "offsetY": 0,
  850. "trimX": 734,
  851. "trimY": 140,
  852. "width": 78,
  853. "height": 70,
  854. "rawWidth": 82,
  855. "rawHeight": 74,
  856. "borderTop": 0,
  857. "borderBottom": 0,
  858. "borderLeft": 0,
  859. "borderRight": 0,
  860. "spriteType": "normal",
  861. "subMetas": {}
  862. },
  863. "bear_column_15.png": {
  864. "ver": "1.0.6",
  865. "uuid": "c5fd73bd-87b1-42bb-9fc2-41ab3bf8ecd3",
  866. "importer": "sprite-frame",
  867. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  868. "trimType": "auto",
  869. "trimThreshold": 1,
  870. "rotated": false,
  871. "offsetX": -1,
  872. "offsetY": 0,
  873. "trimX": 578,
  874. "trimY": 140,
  875. "width": 78,
  876. "height": 70,
  877. "rawWidth": 82,
  878. "rawHeight": 74,
  879. "borderTop": 0,
  880. "borderBottom": 0,
  881. "borderLeft": 0,
  882. "borderRight": 0,
  883. "spriteType": "normal",
  884. "subMetas": {}
  885. },
  886. "bear_column_16.png": {
  887. "ver": "1.0.6",
  888. "uuid": "85b8bf47-3ce7-49c7-810f-5a1c6d23ce55",
  889. "importer": "sprite-frame",
  890. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  891. "trimType": "auto",
  892. "trimThreshold": 1,
  893. "rotated": false,
  894. "offsetX": 0,
  895. "offsetY": 0,
  896. "trimX": 502,
  897. "trimY": 140,
  898. "width": 76,
  899. "height": 70,
  900. "rawWidth": 82,
  901. "rawHeight": 74,
  902. "borderTop": 0,
  903. "borderBottom": 0,
  904. "borderLeft": 0,
  905. "borderRight": 0,
  906. "spriteType": "normal",
  907. "subMetas": {}
  908. },
  909. "bear_column_17.png": {
  910. "ver": "1.0.6",
  911. "uuid": "8cdaff70-c3a2-4755-8868-fdc5808e6957",
  912. "importer": "sprite-frame",
  913. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  914. "trimType": "auto",
  915. "trimThreshold": 1,
  916. "rotated": false,
  917. "offsetX": -1,
  918. "offsetY": 1,
  919. "trimX": 352,
  920. "trimY": 140,
  921. "width": 76,
  922. "height": 70,
  923. "rawWidth": 82,
  924. "rawHeight": 74,
  925. "borderTop": 0,
  926. "borderBottom": 0,
  927. "borderLeft": 0,
  928. "borderRight": 0,
  929. "spriteType": "normal",
  930. "subMetas": {}
  931. },
  932. "bear_column_18.png": {
  933. "ver": "1.0.6",
  934. "uuid": "fab1b297-054a-48f5-aaf9-431aadcaaf30",
  935. "importer": "sprite-frame",
  936. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  937. "trimType": "auto",
  938. "trimThreshold": 1,
  939. "rotated": false,
  940. "offsetX": 0,
  941. "offsetY": 1,
  942. "trimX": 428,
  943. "trimY": 140,
  944. "width": 74,
  945. "height": 70,
  946. "rawWidth": 82,
  947. "rawHeight": 74,
  948. "borderTop": 0,
  949. "borderBottom": 0,
  950. "borderLeft": 0,
  951. "borderRight": 0,
  952. "spriteType": "normal",
  953. "subMetas": {}
  954. },
  955. "bear_column_19.png": {
  956. "ver": "1.0.6",
  957. "uuid": "15adbc9f-dd5f-45e7-babf-d8def220900e",
  958. "importer": "sprite-frame",
  959. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  960. "trimType": "auto",
  961. "trimThreshold": 1,
  962. "rotated": false,
  963. "offsetX": 0,
  964. "offsetY": 0,
  965. "trimX": 224,
  966. "trimY": 2,
  967. "width": 74,
  968. "height": 68,
  969. "rawWidth": 82,
  970. "rawHeight": 74,
  971. "borderTop": 0,
  972. "borderBottom": 0,
  973. "borderLeft": 0,
  974. "borderRight": 0,
  975. "spriteType": "normal",
  976. "subMetas": {}
  977. },
  978. "bear_column_02.png": {
  979. "ver": "1.0.6",
  980. "uuid": "f2fed1de-c50e-486d-8cea-f06c7a088d65",
  981. "importer": "sprite-frame",
  982. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  983. "trimType": "auto",
  984. "trimThreshold": 1,
  985. "rotated": false,
  986. "offsetX": 0,
  987. "offsetY": 0,
  988. "trimX": 703,
  989. "trimY": 281,
  990. "width": 78,
  991. "height": 72,
  992. "rawWidth": 82,
  993. "rawHeight": 74,
  994. "borderTop": 0,
  995. "borderBottom": 0,
  996. "borderLeft": 0,
  997. "borderRight": 0,
  998. "spriteType": "normal",
  999. "subMetas": {}
  1000. },
  1001. "bear_column_20.png": {
  1002. "ver": "1.0.6",
  1003. "uuid": "7a3d6e03-e734-4eb9-88b0-821ad7d9a17a",
  1004. "importer": "sprite-frame",
  1005. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1006. "trimType": "auto",
  1007. "trimThreshold": 1,
  1008. "rotated": false,
  1009. "offsetX": 0,
  1010. "offsetY": 0,
  1011. "trimX": 224,
  1012. "trimY": 2,
  1013. "width": 74,
  1014. "height": 68,
  1015. "rawWidth": 82,
  1016. "rawHeight": 74,
  1017. "borderTop": 0,
  1018. "borderBottom": 0,
  1019. "borderLeft": 0,
  1020. "borderRight": 0,
  1021. "spriteType": "normal",
  1022. "subMetas": {}
  1023. },
  1024. "bear_column_21.png": {
  1025. "ver": "1.0.6",
  1026. "uuid": "e4990ba5-ef6e-46c6-ad2b-f4915ed6cfc8",
  1027. "importer": "sprite-frame",
  1028. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1029. "trimType": "auto",
  1030. "trimThreshold": 1,
  1031. "rotated": false,
  1032. "offsetX": 0,
  1033. "offsetY": 0,
  1034. "trimX": 224,
  1035. "trimY": 2,
  1036. "width": 74,
  1037. "height": 68,
  1038. "rawWidth": 82,
  1039. "rawHeight": 74,
  1040. "borderTop": 0,
  1041. "borderBottom": 0,
  1042. "borderLeft": 0,
  1043. "borderRight": 0,
  1044. "spriteType": "normal",
  1045. "subMetas": {}
  1046. },
  1047. "bear_column_22.png": {
  1048. "ver": "1.0.6",
  1049. "uuid": "e1712d17-92c1-418a-a2fa-3b6db6a9e1b6",
  1050. "importer": "sprite-frame",
  1051. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1052. "trimType": "auto",
  1053. "trimThreshold": 1,
  1054. "rotated": false,
  1055. "offsetX": 0,
  1056. "offsetY": 0,
  1057. "trimX": 224,
  1058. "trimY": 2,
  1059. "width": 74,
  1060. "height": 68,
  1061. "rawWidth": 82,
  1062. "rawHeight": 74,
  1063. "borderTop": 0,
  1064. "borderBottom": 0,
  1065. "borderLeft": 0,
  1066. "borderRight": 0,
  1067. "spriteType": "normal",
  1068. "subMetas": {}
  1069. },
  1070. "bear_column_23.png": {
  1071. "ver": "1.0.6",
  1072. "uuid": "26dd5b67-ffdd-4bb1-8a04-ada996d2892d",
  1073. "importer": "sprite-frame",
  1074. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1075. "trimType": "auto",
  1076. "trimThreshold": 1,
  1077. "rotated": false,
  1078. "offsetX": 0,
  1079. "offsetY": 0,
  1080. "trimX": 224,
  1081. "trimY": 2,
  1082. "width": 74,
  1083. "height": 68,
  1084. "rawWidth": 82,
  1085. "rawHeight": 74,
  1086. "borderTop": 0,
  1087. "borderBottom": 0,
  1088. "borderLeft": 0,
  1089. "borderRight": 0,
  1090. "spriteType": "normal",
  1091. "subMetas": {}
  1092. },
  1093. "bear_column_24.png": {
  1094. "ver": "1.0.6",
  1095. "uuid": "958dbb7a-f478-423b-a5bd-445358631328",
  1096. "importer": "sprite-frame",
  1097. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1098. "trimType": "auto",
  1099. "trimThreshold": 1,
  1100. "rotated": false,
  1101. "offsetX": 0,
  1102. "offsetY": 0,
  1103. "trimX": 224,
  1104. "trimY": 2,
  1105. "width": 74,
  1106. "height": 68,
  1107. "rawWidth": 82,
  1108. "rawHeight": 74,
  1109. "borderTop": 0,
  1110. "borderBottom": 0,
  1111. "borderLeft": 0,
  1112. "borderRight": 0,
  1113. "spriteType": "normal",
  1114. "subMetas": {}
  1115. },
  1116. "bear_column_25.png": {
  1117. "ver": "1.0.6",
  1118. "uuid": "b0825ab0-e0cd-4dd9-bf73-262a77bf39ce",
  1119. "importer": "sprite-frame",
  1120. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1121. "trimType": "auto",
  1122. "trimThreshold": 1,
  1123. "rotated": false,
  1124. "offsetX": -1,
  1125. "offsetY": 1,
  1126. "trimX": 890,
  1127. "trimY": 140,
  1128. "width": 76,
  1129. "height": 70,
  1130. "rawWidth": 82,
  1131. "rawHeight": 74,
  1132. "borderTop": 0,
  1133. "borderBottom": 0,
  1134. "borderLeft": 0,
  1135. "borderRight": 0,
  1136. "spriteType": "normal",
  1137. "subMetas": {}
  1138. },
  1139. "bear_column_26.png": {
  1140. "ver": "1.0.6",
  1141. "uuid": "27b3b5e4-aaca-4ecb-a0eb-8e3d51547008",
  1142. "importer": "sprite-frame",
  1143. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1144. "trimType": "auto",
  1145. "trimThreshold": 1,
  1146. "rotated": false,
  1147. "offsetX": 0,
  1148. "offsetY": 0,
  1149. "trimX": 2,
  1150. "trimY": 210,
  1151. "width": 76,
  1152. "height": 70,
  1153. "rawWidth": 82,
  1154. "rawHeight": 74,
  1155. "borderTop": 0,
  1156. "borderBottom": 0,
  1157. "borderLeft": 0,
  1158. "borderRight": 0,
  1159. "spriteType": "normal",
  1160. "subMetas": {}
  1161. },
  1162. "bear_column_27.png": {
  1163. "ver": "1.0.6",
  1164. "uuid": "f6322685-b327-4eeb-bf70-babde769c4f1",
  1165. "importer": "sprite-frame",
  1166. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1167. "trimType": "auto",
  1168. "trimThreshold": 1,
  1169. "rotated": false,
  1170. "offsetX": 0,
  1171. "offsetY": 0,
  1172. "trimX": 78,
  1173. "trimY": 210,
  1174. "width": 76,
  1175. "height": 70,
  1176. "rawWidth": 82,
  1177. "rawHeight": 74,
  1178. "borderTop": 0,
  1179. "borderBottom": 0,
  1180. "borderLeft": 0,
  1181. "borderRight": 0,
  1182. "spriteType": "normal",
  1183. "subMetas": {}
  1184. },
  1185. "bear_column_28.png": {
  1186. "ver": "1.0.6",
  1187. "uuid": "b016fcd2-7e47-45e7-a6bf-21b426329a23",
  1188. "importer": "sprite-frame",
  1189. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1190. "trimType": "auto",
  1191. "trimThreshold": 1,
  1192. "rotated": false,
  1193. "offsetX": -1,
  1194. "offsetY": 0,
  1195. "trimX": 734,
  1196. "trimY": 140,
  1197. "width": 78,
  1198. "height": 70,
  1199. "rawWidth": 82,
  1200. "rawHeight": 74,
  1201. "borderTop": 0,
  1202. "borderBottom": 0,
  1203. "borderLeft": 0,
  1204. "borderRight": 0,
  1205. "spriteType": "normal",
  1206. "subMetas": {}
  1207. },
  1208. "bear_column_29.png": {
  1209. "ver": "1.0.6",
  1210. "uuid": "3b4bf3b5-0938-4ee6-872e-627a546eba32",
  1211. "importer": "sprite-frame",
  1212. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1213. "trimType": "auto",
  1214. "trimThreshold": 1,
  1215. "rotated": false,
  1216. "offsetX": 0,
  1217. "offsetY": 0,
  1218. "trimX": 76,
  1219. "trimY": 2,
  1220. "width": 74,
  1221. "height": 68,
  1222. "rawWidth": 80,
  1223. "rawHeight": 74,
  1224. "borderTop": 0,
  1225. "borderBottom": 0,
  1226. "borderLeft": 0,
  1227. "borderRight": 0,
  1228. "spriteType": "normal",
  1229. "subMetas": {}
  1230. },
  1231. "bear_column_03.png": {
  1232. "ver": "1.0.6",
  1233. "uuid": "54900da8-7c92-4526-8639-2a184b0266ee",
  1234. "importer": "sprite-frame",
  1235. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1236. "trimType": "auto",
  1237. "trimThreshold": 1,
  1238. "rotated": false,
  1239. "offsetX": 0,
  1240. "offsetY": 0,
  1241. "trimX": 781,
  1242. "trimY": 281,
  1243. "width": 80,
  1244. "height": 72,
  1245. "rawWidth": 82,
  1246. "rawHeight": 74,
  1247. "borderTop": 0,
  1248. "borderBottom": 0,
  1249. "borderLeft": 0,
  1250. "borderRight": 0,
  1251. "spriteType": "normal",
  1252. "subMetas": {}
  1253. },
  1254. "bear_column_04.png": {
  1255. "ver": "1.0.6",
  1256. "uuid": "54b799b8-9073-4d27-a0e5-6f797075f7df",
  1257. "importer": "sprite-frame",
  1258. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1259. "trimType": "auto",
  1260. "trimThreshold": 1,
  1261. "rotated": false,
  1262. "offsetX": 0,
  1263. "offsetY": 0,
  1264. "trimX": 160,
  1265. "trimY": 427,
  1266. "width": 82,
  1267. "height": 74,
  1268. "rawWidth": 82,
  1269. "rawHeight": 74,
  1270. "borderTop": 0,
  1271. "borderBottom": 0,
  1272. "borderLeft": 0,
  1273. "borderRight": 0,
  1274. "spriteType": "normal",
  1275. "subMetas": {}
  1276. },
  1277. "bear_column_05.png": {
  1278. "ver": "1.0.6",
  1279. "uuid": "f9aee424-dc49-4e60-8a80-225ac379cfa5",
  1280. "importer": "sprite-frame",
  1281. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1282. "trimType": "auto",
  1283. "trimThreshold": 1,
  1284. "rotated": false,
  1285. "offsetX": 0,
  1286. "offsetY": 0,
  1287. "trimX": 160,
  1288. "trimY": 427,
  1289. "width": 82,
  1290. "height": 74,
  1291. "rawWidth": 82,
  1292. "rawHeight": 74,
  1293. "borderTop": 0,
  1294. "borderBottom": 0,
  1295. "borderLeft": 0,
  1296. "borderRight": 0,
  1297. "spriteType": "normal",
  1298. "subMetas": {}
  1299. },
  1300. "bear_column_06.png": {
  1301. "ver": "1.0.6",
  1302. "uuid": "358df1b4-d8c0-4816-8a01-e4b983ee32cf",
  1303. "importer": "sprite-frame",
  1304. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1305. "trimType": "auto",
  1306. "trimThreshold": 1,
  1307. "rotated": false,
  1308. "offsetX": 0,
  1309. "offsetY": 0,
  1310. "trimX": 160,
  1311. "trimY": 427,
  1312. "width": 82,
  1313. "height": 74,
  1314. "rawWidth": 82,
  1315. "rawHeight": 74,
  1316. "borderTop": 0,
  1317. "borderBottom": 0,
  1318. "borderLeft": 0,
  1319. "borderRight": 0,
  1320. "spriteType": "normal",
  1321. "subMetas": {}
  1322. },
  1323. "bear_column_07.png": {
  1324. "ver": "1.0.6",
  1325. "uuid": "0579e150-74dd-4429-a22c-60b035cd47cc",
  1326. "importer": "sprite-frame",
  1327. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1328. "trimType": "auto",
  1329. "trimThreshold": 1,
  1330. "rotated": false,
  1331. "offsetX": 0,
  1332. "offsetY": 0,
  1333. "trimX": 160,
  1334. "trimY": 427,
  1335. "width": 82,
  1336. "height": 74,
  1337. "rawWidth": 82,
  1338. "rawHeight": 74,
  1339. "borderTop": 0,
  1340. "borderBottom": 0,
  1341. "borderLeft": 0,
  1342. "borderRight": 0,
  1343. "spriteType": "normal",
  1344. "subMetas": {}
  1345. },
  1346. "bear_column_08.png": {
  1347. "ver": "1.0.6",
  1348. "uuid": "00d5ca66-3709-4d77-8111-747525fd0377",
  1349. "importer": "sprite-frame",
  1350. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1351. "trimType": "auto",
  1352. "trimThreshold": 1,
  1353. "rotated": false,
  1354. "offsetX": 0,
  1355. "offsetY": 0,
  1356. "trimX": 160,
  1357. "trimY": 427,
  1358. "width": 82,
  1359. "height": 74,
  1360. "rawWidth": 82,
  1361. "rawHeight": 74,
  1362. "borderTop": 0,
  1363. "borderBottom": 0,
  1364. "borderLeft": 0,
  1365. "borderRight": 0,
  1366. "spriteType": "normal",
  1367. "subMetas": {}
  1368. },
  1369. "bear_column_09.png": {
  1370. "ver": "1.0.6",
  1371. "uuid": "b0da51ca-f3ab-48c2-8e40-b0b210a926ab",
  1372. "importer": "sprite-frame",
  1373. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1374. "trimType": "auto",
  1375. "trimThreshold": 1,
  1376. "rotated": false,
  1377. "offsetX": 0,
  1378. "offsetY": 0,
  1379. "trimX": 160,
  1380. "trimY": 427,
  1381. "width": 82,
  1382. "height": 74,
  1383. "rawWidth": 82,
  1384. "rawHeight": 74,
  1385. "borderTop": 0,
  1386. "borderBottom": 0,
  1387. "borderLeft": 0,
  1388. "borderRight": 0,
  1389. "spriteType": "normal",
  1390. "subMetas": {}
  1391. },
  1392. "bear_line_00.png": {
  1393. "ver": "1.0.6",
  1394. "uuid": "009a4311-a814-4f83-903f-ed62e3bc8739",
  1395. "importer": "sprite-frame",
  1396. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1397. "trimType": "auto",
  1398. "trimThreshold": 1,
  1399. "rotated": false,
  1400. "offsetX": -1,
  1401. "offsetY": 1,
  1402. "trimX": 471,
  1403. "trimY": 281,
  1404. "width": 76,
  1405. "height": 71,
  1406. "rawWidth": 80,
  1407. "rawHeight": 73,
  1408. "borderTop": 0,
  1409. "borderBottom": 0,
  1410. "borderLeft": 0,
  1411. "borderRight": 0,
  1412. "spriteType": "normal",
  1413. "subMetas": {}
  1414. },
  1415. "bear_line_01.png": {
  1416. "ver": "1.0.6",
  1417. "uuid": "06002150-5b01-4bc4-bfb9-d74523594918",
  1418. "importer": "sprite-frame",
  1419. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1420. "trimType": "auto",
  1421. "trimThreshold": 1,
  1422. "rotated": false,
  1423. "offsetX": -1,
  1424. "offsetY": 0,
  1425. "trimX": 237,
  1426. "trimY": 281,
  1427. "width": 78,
  1428. "height": 71,
  1429. "rawWidth": 80,
  1430. "rawHeight": 73,
  1431. "borderTop": 0,
  1432. "borderBottom": 0,
  1433. "borderLeft": 0,
  1434. "borderRight": 0,
  1435. "spriteType": "normal",
  1436. "subMetas": {}
  1437. },
  1438. "bear_line_10.png": {
  1439. "ver": "1.0.6",
  1440. "uuid": "e2d10256-d282-4b5e-8b8f-5ce4a2d1132c",
  1441. "importer": "sprite-frame",
  1442. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1443. "trimType": "auto",
  1444. "trimThreshold": 1,
  1445. "rotated": false,
  1446. "offsetX": 0,
  1447. "offsetY": 0,
  1448. "trimX": 2,
  1449. "trimY": 354,
  1450. "width": 80,
  1451. "height": 73,
  1452. "rawWidth": 80,
  1453. "rawHeight": 73,
  1454. "borderTop": 0,
  1455. "borderBottom": 0,
  1456. "borderLeft": 0,
  1457. "borderRight": 0,
  1458. "spriteType": "normal",
  1459. "subMetas": {}
  1460. },
  1461. "bear_line_11.png": {
  1462. "ver": "1.0.6",
  1463. "uuid": "9cf6be42-bdf5-472c-85eb-b6f5df70779f",
  1464. "importer": "sprite-frame",
  1465. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1466. "trimType": "auto",
  1467. "trimThreshold": 1,
  1468. "rotated": false,
  1469. "offsetX": 0,
  1470. "offsetY": 0,
  1471. "trimX": 159,
  1472. "trimY": 281,
  1473. "width": 78,
  1474. "height": 71,
  1475. "rawWidth": 80,
  1476. "rawHeight": 73,
  1477. "borderTop": 0,
  1478. "borderBottom": 0,
  1479. "borderLeft": 0,
  1480. "borderRight": 0,
  1481. "spriteType": "normal",
  1482. "subMetas": {}
  1483. },
  1484. "bear_line_12.png": {
  1485. "ver": "1.0.6",
  1486. "uuid": "7013c230-902d-4ede-a4bc-1e7d66e630f7",
  1487. "importer": "sprite-frame",
  1488. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1489. "trimType": "auto",
  1490. "trimThreshold": 1,
  1491. "rotated": false,
  1492. "offsetX": -1,
  1493. "offsetY": 0,
  1494. "trimX": 81,
  1495. "trimY": 281,
  1496. "width": 78,
  1497. "height": 71,
  1498. "rawWidth": 80,
  1499. "rawHeight": 73,
  1500. "borderTop": 0,
  1501. "borderBottom": 0,
  1502. "borderLeft": 0,
  1503. "borderRight": 0,
  1504. "spriteType": "normal",
  1505. "subMetas": {}
  1506. },
  1507. "bear_line_13.png": {
  1508. "ver": "1.0.6",
  1509. "uuid": "ae79517c-0a3c-4a03-b053-a1c9794ee09e",
  1510. "importer": "sprite-frame",
  1511. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1512. "trimType": "auto",
  1513. "trimThreshold": 1,
  1514. "rotated": false,
  1515. "offsetX": -1,
  1516. "offsetY": 0,
  1517. "trimX": 393,
  1518. "trimY": 281,
  1519. "width": 78,
  1520. "height": 71,
  1521. "rawWidth": 80,
  1522. "rawHeight": 73,
  1523. "borderTop": 0,
  1524. "borderBottom": 0,
  1525. "borderLeft": 0,
  1526. "borderRight": 0,
  1527. "spriteType": "normal",
  1528. "subMetas": {}
  1529. },
  1530. "bear_line_14.png": {
  1531. "ver": "1.0.6",
  1532. "uuid": "b334f039-15a6-428e-8481-f43726eb2973",
  1533. "importer": "sprite-frame",
  1534. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1535. "trimType": "auto",
  1536. "trimThreshold": 1,
  1537. "rotated": false,
  1538. "offsetX": -1,
  1539. "offsetY": 1,
  1540. "trimX": 471,
  1541. "trimY": 281,
  1542. "width": 76,
  1543. "height": 71,
  1544. "rawWidth": 80,
  1545. "rawHeight": 73,
  1546. "borderTop": 0,
  1547. "borderBottom": 0,
  1548. "borderLeft": 0,
  1549. "borderRight": 0,
  1550. "spriteType": "normal",
  1551. "subMetas": {}
  1552. },
  1553. "bear_line_15.png": {
  1554. "ver": "1.0.6",
  1555. "uuid": "86596aa8-b78e-4bbd-91d8-24470f0b2b73",
  1556. "importer": "sprite-frame",
  1557. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1558. "trimType": "auto",
  1559. "trimThreshold": 1,
  1560. "rotated": false,
  1561. "offsetX": -1,
  1562. "offsetY": 0,
  1563. "trimX": 374,
  1564. "trimY": 2,
  1565. "width": 76,
  1566. "height": 69,
  1567. "rawWidth": 80,
  1568. "rawHeight": 73,
  1569. "borderTop": 0,
  1570. "borderBottom": 0,
  1571. "borderLeft": 0,
  1572. "borderRight": 0,
  1573. "spriteType": "normal",
  1574. "subMetas": {}
  1575. },
  1576. "bear_line_16.png": {
  1577. "ver": "1.0.6",
  1578. "uuid": "f9d2759c-5327-4134-89e3-4bebd85be80b",
  1579. "importer": "sprite-frame",
  1580. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1581. "trimType": "auto",
  1582. "trimThreshold": 1,
  1583. "rotated": false,
  1584. "offsetX": -1,
  1585. "offsetY": 0,
  1586. "trimX": 298,
  1587. "trimY": 2,
  1588. "width": 76,
  1589. "height": 69,
  1590. "rawWidth": 80,
  1591. "rawHeight": 73,
  1592. "borderTop": 0,
  1593. "borderBottom": 0,
  1594. "borderLeft": 0,
  1595. "borderRight": 0,
  1596. "spriteType": "normal",
  1597. "subMetas": {}
  1598. },
  1599. "bear_line_17.png": {
  1600. "ver": "1.0.6",
  1601. "uuid": "c531a5f0-9f35-4940-82e7-3b130b231e10",
  1602. "importer": "sprite-frame",
  1603. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1604. "trimType": "auto",
  1605. "trimThreshold": 1,
  1606. "rotated": false,
  1607. "offsetX": -1,
  1608. "offsetY": 0,
  1609. "trimX": 152,
  1610. "trimY": 71,
  1611. "width": 76,
  1612. "height": 69,
  1613. "rawWidth": 80,
  1614. "rawHeight": 73,
  1615. "borderTop": 0,
  1616. "borderBottom": 0,
  1617. "borderLeft": 0,
  1618. "borderRight": 0,
  1619. "spriteType": "normal",
  1620. "subMetas": {}
  1621. },
  1622. "bear_line_18.png": {
  1623. "ver": "1.0.6",
  1624. "uuid": "889d5866-aedb-47de-a940-201b8d54e100",
  1625. "importer": "sprite-frame",
  1626. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1627. "trimType": "auto",
  1628. "trimThreshold": 1,
  1629. "rotated": false,
  1630. "offsetX": -1,
  1631. "offsetY": 1,
  1632. "trimX": 595,
  1633. "trimY": 2,
  1634. "width": 74,
  1635. "height": 69,
  1636. "rawWidth": 80,
  1637. "rawHeight": 73,
  1638. "borderTop": 0,
  1639. "borderBottom": 0,
  1640. "borderLeft": 0,
  1641. "borderRight": 0,
  1642. "spriteType": "normal",
  1643. "subMetas": {}
  1644. },
  1645. "bear_line_19.png": {
  1646. "ver": "1.0.6",
  1647. "uuid": "b5165307-e940-47ac-9bc7-e08d98363858",
  1648. "importer": "sprite-frame",
  1649. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1650. "trimType": "auto",
  1651. "trimThreshold": 1,
  1652. "rotated": false,
  1653. "offsetX": -1,
  1654. "offsetY": 0,
  1655. "trimX": 2,
  1656. "trimY": 2,
  1657. "width": 74,
  1658. "height": 67,
  1659. "rawWidth": 80,
  1660. "rawHeight": 73,
  1661. "borderTop": 0,
  1662. "borderBottom": 0,
  1663. "borderLeft": 0,
  1664. "borderRight": 0,
  1665. "spriteType": "normal",
  1666. "subMetas": {}
  1667. },
  1668. "bear_line_02.png": {
  1669. "ver": "1.0.6",
  1670. "uuid": "4bca20a2-b817-4f6d-a8ff-e624a1703f63",
  1671. "importer": "sprite-frame",
  1672. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1673. "trimType": "auto",
  1674. "trimThreshold": 1,
  1675. "rotated": false,
  1676. "offsetX": -1,
  1677. "offsetY": 0,
  1678. "trimX": 315,
  1679. "trimY": 281,
  1680. "width": 78,
  1681. "height": 71,
  1682. "rawWidth": 80,
  1683. "rawHeight": 73,
  1684. "borderTop": 0,
  1685. "borderBottom": 0,
  1686. "borderLeft": 0,
  1687. "borderRight": 0,
  1688. "spriteType": "normal",
  1689. "subMetas": {}
  1690. },
  1691. "bear_line_20.png": {
  1692. "ver": "1.0.6",
  1693. "uuid": "47ad5193-b305-4681-aca6-e1cc6164f1ce",
  1694. "importer": "sprite-frame",
  1695. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1696. "trimType": "auto",
  1697. "trimThreshold": 1,
  1698. "rotated": false,
  1699. "offsetX": -1,
  1700. "offsetY": 0,
  1701. "trimX": 2,
  1702. "trimY": 2,
  1703. "width": 74,
  1704. "height": 67,
  1705. "rawWidth": 80,
  1706. "rawHeight": 73,
  1707. "borderTop": 0,
  1708. "borderBottom": 0,
  1709. "borderLeft": 0,
  1710. "borderRight": 0,
  1711. "spriteType": "normal",
  1712. "subMetas": {}
  1713. },
  1714. "bear_line_21.png": {
  1715. "ver": "1.0.6",
  1716. "uuid": "750a7c21-84cb-4079-88ea-d3cc0925d695",
  1717. "importer": "sprite-frame",
  1718. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1719. "trimType": "auto",
  1720. "trimThreshold": 1,
  1721. "rotated": false,
  1722. "offsetX": -1,
  1723. "offsetY": 0,
  1724. "trimX": 2,
  1725. "trimY": 2,
  1726. "width": 74,
  1727. "height": 67,
  1728. "rawWidth": 80,
  1729. "rawHeight": 73,
  1730. "borderTop": 0,
  1731. "borderBottom": 0,
  1732. "borderLeft": 0,
  1733. "borderRight": 0,
  1734. "spriteType": "normal",
  1735. "subMetas": {}
  1736. },
  1737. "bear_line_22.png": {
  1738. "ver": "1.0.6",
  1739. "uuid": "f4c2f487-6acd-4a04-ae0e-109e6d17c240",
  1740. "importer": "sprite-frame",
  1741. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1742. "trimType": "auto",
  1743. "trimThreshold": 1,
  1744. "rotated": false,
  1745. "offsetX": -1,
  1746. "offsetY": 0,
  1747. "trimX": 2,
  1748. "trimY": 2,
  1749. "width": 74,
  1750. "height": 67,
  1751. "rawWidth": 80,
  1752. "rawHeight": 73,
  1753. "borderTop": 0,
  1754. "borderBottom": 0,
  1755. "borderLeft": 0,
  1756. "borderRight": 0,
  1757. "spriteType": "normal",
  1758. "subMetas": {}
  1759. },
  1760. "bear_line_23.png": {
  1761. "ver": "1.0.6",
  1762. "uuid": "c8d3f479-49c9-4c92-b62a-dba0efe4903a",
  1763. "importer": "sprite-frame",
  1764. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1765. "trimType": "auto",
  1766. "trimThreshold": 1,
  1767. "rotated": false,
  1768. "offsetX": -1,
  1769. "offsetY": 0,
  1770. "trimX": 2,
  1771. "trimY": 2,
  1772. "width": 74,
  1773. "height": 67,
  1774. "rawWidth": 80,
  1775. "rawHeight": 73,
  1776. "borderTop": 0,
  1777. "borderBottom": 0,
  1778. "borderLeft": 0,
  1779. "borderRight": 0,
  1780. "spriteType": "normal",
  1781. "subMetas": {}
  1782. },
  1783. "bear_line_24.png": {
  1784. "ver": "1.0.6",
  1785. "uuid": "c279df5a-0ba3-45cb-9615-efb178b00df0",
  1786. "importer": "sprite-frame",
  1787. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1788. "trimType": "auto",
  1789. "trimThreshold": 1,
  1790. "rotated": false,
  1791. "offsetX": -1,
  1792. "offsetY": 0,
  1793. "trimX": 2,
  1794. "trimY": 2,
  1795. "width": 74,
  1796. "height": 67,
  1797. "rawWidth": 80,
  1798. "rawHeight": 73,
  1799. "borderTop": 0,
  1800. "borderBottom": 0,
  1801. "borderLeft": 0,
  1802. "borderRight": 0,
  1803. "spriteType": "normal",
  1804. "subMetas": {}
  1805. },
  1806. "bear_line_25.png": {
  1807. "ver": "1.0.6",
  1808. "uuid": "6da189c6-b8a3-4e76-8ad0-c3dd979578a2",
  1809. "importer": "sprite-frame",
  1810. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1811. "trimType": "auto",
  1812. "trimThreshold": 1,
  1813. "rotated": false,
  1814. "offsetX": -1,
  1815. "offsetY": 1,
  1816. "trimX": 2,
  1817. "trimY": 71,
  1818. "width": 74,
  1819. "height": 69,
  1820. "rawWidth": 80,
  1821. "rawHeight": 73,
  1822. "borderTop": 0,
  1823. "borderBottom": 0,
  1824. "borderLeft": 0,
  1825. "borderRight": 0,
  1826. "spriteType": "normal",
  1827. "subMetas": {}
  1828. },
  1829. "bear_line_26.png": {
  1830. "ver": "1.0.6",
  1831. "uuid": "341fa4b4-9538-46b1-b4fc-270ae88aebca",
  1832. "importer": "sprite-frame",
  1833. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1834. "trimType": "auto",
  1835. "trimThreshold": 1,
  1836. "rotated": false,
  1837. "offsetX": -1,
  1838. "offsetY": 0,
  1839. "trimX": 889,
  1840. "trimY": 2,
  1841. "width": 76,
  1842. "height": 69,
  1843. "rawWidth": 80,
  1844. "rawHeight": 73,
  1845. "borderTop": 0,
  1846. "borderBottom": 0,
  1847. "borderLeft": 0,
  1848. "borderRight": 0,
  1849. "spriteType": "normal",
  1850. "subMetas": {}
  1851. },
  1852. "bear_line_27.png": {
  1853. "ver": "1.0.6",
  1854. "uuid": "a6a00a87-5f57-4e58-bb68-6d33ce50fc7b",
  1855. "importer": "sprite-frame",
  1856. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1857. "trimType": "auto",
  1858. "trimThreshold": 1,
  1859. "rotated": false,
  1860. "offsetX": -1,
  1861. "offsetY": 0,
  1862. "trimX": 76,
  1863. "trimY": 71,
  1864. "width": 76,
  1865. "height": 69,
  1866. "rawWidth": 80,
  1867. "rawHeight": 73,
  1868. "borderTop": 0,
  1869. "borderBottom": 0,
  1870. "borderLeft": 0,
  1871. "borderRight": 0,
  1872. "spriteType": "normal",
  1873. "subMetas": {}
  1874. },
  1875. "bear_line_28.png": {
  1876. "ver": "1.0.6",
  1877. "uuid": "f9762acf-5629-4aa3-ab61-b6ec7527f801",
  1878. "importer": "sprite-frame",
  1879. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1880. "trimType": "auto",
  1881. "trimThreshold": 1,
  1882. "rotated": false,
  1883. "offsetX": -1,
  1884. "offsetY": 1,
  1885. "trimX": 471,
  1886. "trimY": 281,
  1887. "width": 76,
  1888. "height": 71,
  1889. "rawWidth": 80,
  1890. "rawHeight": 73,
  1891. "borderTop": 0,
  1892. "borderBottom": 0,
  1893. "borderLeft": 0,
  1894. "borderRight": 0,
  1895. "spriteType": "normal",
  1896. "subMetas": {}
  1897. },
  1898. "bear_line_29.png": {
  1899. "ver": "1.0.6",
  1900. "uuid": "d6023bf4-1ab2-4bdf-8ab0-582f549b0c68",
  1901. "importer": "sprite-frame",
  1902. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1903. "trimType": "auto",
  1904. "trimThreshold": 1,
  1905. "rotated": false,
  1906. "offsetX": 0,
  1907. "offsetY": 1,
  1908. "trimX": 150,
  1909. "trimY": 2,
  1910. "width": 74,
  1911. "height": 68,
  1912. "rawWidth": 80,
  1913. "rawHeight": 74,
  1914. "borderTop": 0,
  1915. "borderBottom": 0,
  1916. "borderLeft": 0,
  1917. "borderRight": 0,
  1918. "spriteType": "normal",
  1919. "subMetas": {}
  1920. },
  1921. "bear_line_03.png": {
  1922. "ver": "1.0.6",
  1923. "uuid": "7ab0cbc3-5e0d-444b-bf16-4412a11d76e6",
  1924. "importer": "sprite-frame",
  1925. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1926. "trimType": "auto",
  1927. "trimThreshold": 1,
  1928. "rotated": false,
  1929. "offsetX": 0,
  1930. "offsetY": 0,
  1931. "trimX": 477,
  1932. "trimY": 354,
  1933. "width": 80,
  1934. "height": 73,
  1935. "rawWidth": 80,
  1936. "rawHeight": 73,
  1937. "borderTop": 0,
  1938. "borderBottom": 0,
  1939. "borderLeft": 0,
  1940. "borderRight": 0,
  1941. "spriteType": "normal",
  1942. "subMetas": {}
  1943. },
  1944. "bear_line_04.png": {
  1945. "ver": "1.0.6",
  1946. "uuid": "f4005488-0279-4e51-93b6-bbfc28e63962",
  1947. "importer": "sprite-frame",
  1948. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1949. "trimType": "auto",
  1950. "trimThreshold": 1,
  1951. "rotated": false,
  1952. "offsetX": 0,
  1953. "offsetY": 0,
  1954. "trimX": 557,
  1955. "trimY": 354,
  1956. "width": 80,
  1957. "height": 73,
  1958. "rawWidth": 80,
  1959. "rawHeight": 73,
  1960. "borderTop": 0,
  1961. "borderBottom": 0,
  1962. "borderLeft": 0,
  1963. "borderRight": 0,
  1964. "spriteType": "normal",
  1965. "subMetas": {}
  1966. },
  1967. "bear_line_05.png": {
  1968. "ver": "1.0.6",
  1969. "uuid": "4affaf07-9b8b-4dcf-bac0-1d6ee412a307",
  1970. "importer": "sprite-frame",
  1971. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1972. "trimType": "auto",
  1973. "trimThreshold": 1,
  1974. "rotated": false,
  1975. "offsetX": 0,
  1976. "offsetY": 0,
  1977. "trimX": 557,
  1978. "trimY": 354,
  1979. "width": 80,
  1980. "height": 73,
  1981. "rawWidth": 80,
  1982. "rawHeight": 73,
  1983. "borderTop": 0,
  1984. "borderBottom": 0,
  1985. "borderLeft": 0,
  1986. "borderRight": 0,
  1987. "spriteType": "normal",
  1988. "subMetas": {}
  1989. },
  1990. "bear_line_06.png": {
  1991. "ver": "1.0.6",
  1992. "uuid": "16abd730-e42d-4dcf-b0cc-8ba6b0e2451d",
  1993. "importer": "sprite-frame",
  1994. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  1995. "trimType": "auto",
  1996. "trimThreshold": 1,
  1997. "rotated": false,
  1998. "offsetX": 0,
  1999. "offsetY": 0,
  2000. "trimX": 557,
  2001. "trimY": 354,
  2002. "width": 80,
  2003. "height": 73,
  2004. "rawWidth": 80,
  2005. "rawHeight": 73,
  2006. "borderTop": 0,
  2007. "borderBottom": 0,
  2008. "borderLeft": 0,
  2009. "borderRight": 0,
  2010. "spriteType": "normal",
  2011. "subMetas": {}
  2012. },
  2013. "bear_line_07.png": {
  2014. "ver": "1.0.6",
  2015. "uuid": "36acc5aa-92cd-43e6-9c0b-2bb781f45356",
  2016. "importer": "sprite-frame",
  2017. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2018. "trimType": "auto",
  2019. "trimThreshold": 1,
  2020. "rotated": false,
  2021. "offsetX": 0,
  2022. "offsetY": 0,
  2023. "trimX": 557,
  2024. "trimY": 354,
  2025. "width": 80,
  2026. "height": 73,
  2027. "rawWidth": 80,
  2028. "rawHeight": 73,
  2029. "borderTop": 0,
  2030. "borderBottom": 0,
  2031. "borderLeft": 0,
  2032. "borderRight": 0,
  2033. "spriteType": "normal",
  2034. "subMetas": {}
  2035. },
  2036. "bear_line_08.png": {
  2037. "ver": "1.0.6",
  2038. "uuid": "9299e33d-ff1a-4a72-8aa5-0b264e0dd55a",
  2039. "importer": "sprite-frame",
  2040. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2041. "trimType": "auto",
  2042. "trimThreshold": 1,
  2043. "rotated": false,
  2044. "offsetX": 0,
  2045. "offsetY": 0,
  2046. "trimX": 557,
  2047. "trimY": 354,
  2048. "width": 80,
  2049. "height": 73,
  2050. "rawWidth": 80,
  2051. "rawHeight": 73,
  2052. "borderTop": 0,
  2053. "borderBottom": 0,
  2054. "borderLeft": 0,
  2055. "borderRight": 0,
  2056. "spriteType": "normal",
  2057. "subMetas": {}
  2058. },
  2059. "bear_line_09.png": {
  2060. "ver": "1.0.6",
  2061. "uuid": "7e34a0b7-4ff1-4e08-ae1b-db3aff1dbdba",
  2062. "importer": "sprite-frame",
  2063. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2064. "trimType": "auto",
  2065. "trimThreshold": 1,
  2066. "rotated": false,
  2067. "offsetX": 0,
  2068. "offsetY": 0,
  2069. "trimX": 637,
  2070. "trimY": 354,
  2071. "width": 80,
  2072. "height": 73,
  2073. "rawWidth": 80,
  2074. "rawHeight": 73,
  2075. "borderTop": 0,
  2076. "borderBottom": 0,
  2077. "borderLeft": 0,
  2078. "borderRight": 0,
  2079. "spriteType": "normal",
  2080. "subMetas": {}
  2081. },
  2082. "bear_wrap_00.png": {
  2083. "ver": "1.0.6",
  2084. "uuid": "8ddb13db-3a21-4f74-b85f-b75cff0b7927",
  2085. "importer": "sprite-frame",
  2086. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2087. "trimType": "auto",
  2088. "trimThreshold": 1,
  2089. "rotated": false,
  2090. "offsetX": 0,
  2091. "offsetY": 1,
  2092. "trimX": 814,
  2093. "trimY": 2,
  2094. "width": 75,
  2095. "height": 69,
  2096. "rawWidth": 81,
  2097. "rawHeight": 75,
  2098. "borderTop": 0,
  2099. "borderBottom": 0,
  2100. "borderLeft": 0,
  2101. "borderRight": 0,
  2102. "spriteType": "normal",
  2103. "subMetas": {}
  2104. },
  2105. "bear_wrap_01.png": {
  2106. "ver": "1.0.6",
  2107. "uuid": "8734e3e7-5fd1-4265-84b5-d94471008724",
  2108. "importer": "sprite-frame",
  2109. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2110. "trimType": "auto",
  2111. "trimThreshold": 1,
  2112. "rotated": false,
  2113. "offsetX": 0,
  2114. "offsetY": 0,
  2115. "trimX": 154,
  2116. "trimY": 210,
  2117. "width": 77,
  2118. "height": 71,
  2119. "rawWidth": 81,
  2120. "rawHeight": 75,
  2121. "borderTop": 0,
  2122. "borderBottom": 0,
  2123. "borderLeft": 0,
  2124. "borderRight": 0,
  2125. "spriteType": "normal",
  2126. "subMetas": {}
  2127. },
  2128. "bear_wrap_10.png": {
  2129. "ver": "1.0.6",
  2130. "uuid": "547d42a1-633a-4859-bbef-5c670e8727cc",
  2131. "importer": "sprite-frame",
  2132. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2133. "trimType": "auto",
  2134. "trimThreshold": 1,
  2135. "rotated": false,
  2136. "offsetX": 0,
  2137. "offsetY": 1,
  2138. "trimX": 310,
  2139. "trimY": 210,
  2140. "width": 77,
  2141. "height": 71,
  2142. "rawWidth": 81,
  2143. "rawHeight": 75,
  2144. "borderTop": 0,
  2145. "borderBottom": 0,
  2146. "borderLeft": 0,
  2147. "borderRight": 0,
  2148. "spriteType": "normal",
  2149. "subMetas": {}
  2150. },
  2151. "bear_wrap_11.png": {
  2152. "ver": "1.0.6",
  2153. "uuid": "b87117a3-b3c9-4cd1-b66c-72cc39d9722b",
  2154. "importer": "sprite-frame",
  2155. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2156. "trimType": "auto",
  2157. "trimThreshold": 1,
  2158. "rotated": false,
  2159. "offsetX": -1,
  2160. "offsetY": 0,
  2161. "trimX": 2,
  2162. "trimY": 281,
  2163. "width": 79,
  2164. "height": 71,
  2165. "rawWidth": 81,
  2166. "rawHeight": 75,
  2167. "borderTop": 0,
  2168. "borderBottom": 0,
  2169. "borderLeft": 0,
  2170. "borderRight": 0,
  2171. "spriteType": "normal",
  2172. "subMetas": {}
  2173. },
  2174. "bear_wrap_12.png": {
  2175. "ver": "1.0.6",
  2176. "uuid": "11177a42-427f-41bc-b6ed-d827340dfbb1",
  2177. "importer": "sprite-frame",
  2178. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2179. "trimType": "auto",
  2180. "trimThreshold": 1,
  2181. "rotated": false,
  2182. "offsetX": -1,
  2183. "offsetY": 0,
  2184. "trimX": 231,
  2185. "trimY": 210,
  2186. "width": 79,
  2187. "height": 71,
  2188. "rawWidth": 81,
  2189. "rawHeight": 75,
  2190. "borderTop": 0,
  2191. "borderBottom": 0,
  2192. "borderLeft": 0,
  2193. "borderRight": 0,
  2194. "spriteType": "normal",
  2195. "subMetas": {}
  2196. },
  2197. "bear_wrap_13.png": {
  2198. "ver": "1.0.6",
  2199. "uuid": "3dc9eb3e-cb9c-49f5-bc85-300d05166a2d",
  2200. "importer": "sprite-frame",
  2201. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2202. "trimType": "auto",
  2203. "trimThreshold": 1,
  2204. "rotated": false,
  2205. "offsetX": 0,
  2206. "offsetY": 0,
  2207. "trimX": 403,
  2208. "trimY": 427,
  2209. "width": 81,
  2210. "height": 75,
  2211. "rawWidth": 81,
  2212. "rawHeight": 75,
  2213. "borderTop": 0,
  2214. "borderBottom": 0,
  2215. "borderLeft": 0,
  2216. "borderRight": 0,
  2217. "spriteType": "normal",
  2218. "subMetas": {}
  2219. },
  2220. "bear_wrap_14.png": {
  2221. "ver": "1.0.6",
  2222. "uuid": "bc9b068f-9a33-42a2-ae36-20020d6308d6",
  2223. "importer": "sprite-frame",
  2224. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2225. "trimType": "auto",
  2226. "trimThreshold": 1,
  2227. "rotated": false,
  2228. "offsetX": 0,
  2229. "offsetY": 0,
  2230. "trimX": 565,
  2231. "trimY": 427,
  2232. "width": 81,
  2233. "height": 75,
  2234. "rawWidth": 81,
  2235. "rawHeight": 75,
  2236. "borderTop": 0,
  2237. "borderBottom": 0,
  2238. "borderLeft": 0,
  2239. "borderRight": 0,
  2240. "spriteType": "normal",
  2241. "subMetas": {}
  2242. },
  2243. "bear_wrap_15.png": {
  2244. "ver": "1.0.6",
  2245. "uuid": "a7bf456e-8aca-488c-b1ed-b2ac7e7af67c",
  2246. "importer": "sprite-frame",
  2247. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2248. "trimType": "auto",
  2249. "trimThreshold": 1,
  2250. "rotated": false,
  2251. "offsetX": 0,
  2252. "offsetY": -1,
  2253. "trimX": 796,
  2254. "trimY": 354,
  2255. "width": 79,
  2256. "height": 73,
  2257. "rawWidth": 81,
  2258. "rawHeight": 75,
  2259. "borderTop": 0,
  2260. "borderBottom": 0,
  2261. "borderLeft": 0,
  2262. "borderRight": 0,
  2263. "spriteType": "normal",
  2264. "subMetas": {}
  2265. },
  2266. "bear_wrap_16.png": {
  2267. "ver": "1.0.6",
  2268. "uuid": "0a956899-b200-40f0-aa33-43d0d5b593e9",
  2269. "importer": "sprite-frame",
  2270. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2271. "trimType": "auto",
  2272. "trimThreshold": 1,
  2273. "rotated": false,
  2274. "offsetX": -1,
  2275. "offsetY": 0,
  2276. "trimX": 717,
  2277. "trimY": 354,
  2278. "width": 79,
  2279. "height": 73,
  2280. "rawWidth": 81,
  2281. "rawHeight": 75,
  2282. "borderTop": 0,
  2283. "borderBottom": 0,
  2284. "borderLeft": 0,
  2285. "borderRight": 0,
  2286. "spriteType": "normal",
  2287. "subMetas": {}
  2288. },
  2289. "bear_wrap_17.png": {
  2290. "ver": "1.0.6",
  2291. "uuid": "99bcdcd4-2ada-4955-b983-0cd8a9da73f7",
  2292. "importer": "sprite-frame",
  2293. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2294. "trimType": "auto",
  2295. "trimThreshold": 1,
  2296. "rotated": false,
  2297. "offsetX": 0,
  2298. "offsetY": 0,
  2299. "trimX": 618,
  2300. "trimY": 210,
  2301. "width": 77,
  2302. "height": 71,
  2303. "rawWidth": 81,
  2304. "rawHeight": 75,
  2305. "borderTop": 0,
  2306. "borderBottom": 0,
  2307. "borderLeft": 0,
  2308. "borderRight": 0,
  2309. "spriteType": "normal",
  2310. "subMetas": {}
  2311. },
  2312. "bear_wrap_18.png": {
  2313. "ver": "1.0.6",
  2314. "uuid": "bee15082-30ff-483b-a227-32b05e5a88c8",
  2315. "importer": "sprite-frame",
  2316. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2317. "trimType": "auto",
  2318. "trimThreshold": 1,
  2319. "rotated": false,
  2320. "offsetX": 0,
  2321. "offsetY": 0,
  2322. "trimX": 669,
  2323. "trimY": 2,
  2324. "width": 75,
  2325. "height": 69,
  2326. "rawWidth": 81,
  2327. "rawHeight": 75,
  2328. "borderTop": 0,
  2329. "borderBottom": 0,
  2330. "borderLeft": 0,
  2331. "borderRight": 0,
  2332. "spriteType": "normal",
  2333. "subMetas": {}
  2334. },
  2335. "bear_wrap_19.png": {
  2336. "ver": "1.0.6",
  2337. "uuid": "2dba033a-b563-4c57-953d-e2e76b2494bf",
  2338. "importer": "sprite-frame",
  2339. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2340. "trimType": "auto",
  2341. "trimThreshold": 1,
  2342. "rotated": false,
  2343. "offsetX": 0,
  2344. "offsetY": 0,
  2345. "trimX": 387,
  2346. "trimY": 210,
  2347. "width": 77,
  2348. "height": 71,
  2349. "rawWidth": 81,
  2350. "rawHeight": 75,
  2351. "borderTop": 0,
  2352. "borderBottom": 0,
  2353. "borderLeft": 0,
  2354. "borderRight": 0,
  2355. "spriteType": "normal",
  2356. "subMetas": {}
  2357. },
  2358. "bear_wrap_02.png": {
  2359. "ver": "1.0.6",
  2360. "uuid": "2a50fcd7-9869-446b-953a-994c16f52b60",
  2361. "importer": "sprite-frame",
  2362. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2363. "trimType": "auto",
  2364. "trimThreshold": 1,
  2365. "rotated": false,
  2366. "offsetX": -1,
  2367. "offsetY": 1,
  2368. "trimX": 81,
  2369. "trimY": 427,
  2370. "width": 79,
  2371. "height": 73,
  2372. "rawWidth": 81,
  2373. "rawHeight": 75,
  2374. "borderTop": 0,
  2375. "borderBottom": 0,
  2376. "borderLeft": 0,
  2377. "borderRight": 0,
  2378. "spriteType": "normal",
  2379. "subMetas": {}
  2380. },
  2381. "bear_wrap_20.png": {
  2382. "ver": "1.0.6",
  2383. "uuid": "b60122a9-09bd-4b63-8e23-8afe055ea6d7",
  2384. "importer": "sprite-frame",
  2385. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2386. "trimType": "auto",
  2387. "trimThreshold": 1,
  2388. "rotated": false,
  2389. "offsetX": -1,
  2390. "offsetY": 0,
  2391. "trimX": 2,
  2392. "trimY": 427,
  2393. "width": 79,
  2394. "height": 73,
  2395. "rawWidth": 81,
  2396. "rawHeight": 75,
  2397. "borderTop": 0,
  2398. "borderBottom": 0,
  2399. "borderLeft": 0,
  2400. "borderRight": 0,
  2401. "spriteType": "normal",
  2402. "subMetas": {}
  2403. },
  2404. "bear_wrap_21.png": {
  2405. "ver": "1.0.6",
  2406. "uuid": "ad555427-5dd9-47bc-bca4-1996c52dc493",
  2407. "importer": "sprite-frame",
  2408. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2409. "trimType": "auto",
  2410. "trimThreshold": 1,
  2411. "rotated": false,
  2412. "offsetX": 0,
  2413. "offsetY": 0,
  2414. "trimX": 875,
  2415. "trimY": 354,
  2416. "width": 79,
  2417. "height": 73,
  2418. "rawWidth": 81,
  2419. "rawHeight": 75,
  2420. "borderTop": 0,
  2421. "borderBottom": 0,
  2422. "borderLeft": 0,
  2423. "borderRight": 0,
  2424. "spriteType": "normal",
  2425. "subMetas": {}
  2426. },
  2427. "bear_wrap_22.png": {
  2428. "ver": "1.0.6",
  2429. "uuid": "18a99b68-333e-410a-98a4-09bc4dc1f45b",
  2430. "importer": "sprite-frame",
  2431. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2432. "trimType": "auto",
  2433. "trimThreshold": 1,
  2434. "rotated": false,
  2435. "offsetX": 0,
  2436. "offsetY": 0,
  2437. "trimX": 727,
  2438. "trimY": 427,
  2439. "width": 81,
  2440. "height": 75,
  2441. "rawWidth": 81,
  2442. "rawHeight": 75,
  2443. "borderTop": 0,
  2444. "borderBottom": 0,
  2445. "borderLeft": 0,
  2446. "borderRight": 0,
  2447. "spriteType": "normal",
  2448. "subMetas": {}
  2449. },
  2450. "bear_wrap_23.png": {
  2451. "ver": "1.0.6",
  2452. "uuid": "72c61cb5-335a-4536-86b9-88e8a3c9a9fa",
  2453. "importer": "sprite-frame",
  2454. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2455. "trimType": "auto",
  2456. "trimThreshold": 1,
  2457. "rotated": false,
  2458. "offsetX": 0,
  2459. "offsetY": 0,
  2460. "trimX": 398,
  2461. "trimY": 354,
  2462. "width": 79,
  2463. "height": 73,
  2464. "rawWidth": 81,
  2465. "rawHeight": 75,
  2466. "borderTop": 0,
  2467. "borderBottom": 0,
  2468. "borderLeft": 0,
  2469. "borderRight": 0,
  2470. "spriteType": "normal",
  2471. "subMetas": {}
  2472. },
  2473. "bear_wrap_24.png": {
  2474. "ver": "1.0.6",
  2475. "uuid": "0eff6b3c-1d62-49ed-83a6-65d3973f3c88",
  2476. "importer": "sprite-frame",
  2477. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2478. "trimType": "auto",
  2479. "trimThreshold": 1,
  2480. "rotated": false,
  2481. "offsetX": -1,
  2482. "offsetY": 0,
  2483. "trimX": 861,
  2484. "trimY": 281,
  2485. "width": 79,
  2486. "height": 73,
  2487. "rawWidth": 81,
  2488. "rawHeight": 75,
  2489. "borderTop": 0,
  2490. "borderBottom": 0,
  2491. "borderLeft": 0,
  2492. "borderRight": 0,
  2493. "spriteType": "normal",
  2494. "subMetas": {}
  2495. },
  2496. "bear_wrap_25.png": {
  2497. "ver": "1.0.6",
  2498. "uuid": "4c80301f-9047-478c-8c7d-8aaa20ac71ee",
  2499. "importer": "sprite-frame",
  2500. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2501. "trimType": "auto",
  2502. "trimThreshold": 1,
  2503. "rotated": false,
  2504. "offsetX": 0,
  2505. "offsetY": 0,
  2506. "trimX": 541,
  2507. "trimY": 210,
  2508. "width": 77,
  2509. "height": 71,
  2510. "rawWidth": 81,
  2511. "rawHeight": 75,
  2512. "borderTop": 0,
  2513. "borderBottom": 0,
  2514. "borderLeft": 0,
  2515. "borderRight": 0,
  2516. "spriteType": "normal",
  2517. "subMetas": {}
  2518. },
  2519. "bear_wrap_26.png": {
  2520. "ver": "1.0.6",
  2521. "uuid": "389e9400-dce7-41bd-bb9c-e9e16a95079f",
  2522. "importer": "sprite-frame",
  2523. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2524. "trimType": "auto",
  2525. "trimThreshold": 1,
  2526. "rotated": false,
  2527. "offsetX": 0,
  2528. "offsetY": 0,
  2529. "trimX": 669,
  2530. "trimY": 2,
  2531. "width": 75,
  2532. "height": 69,
  2533. "rawWidth": 81,
  2534. "rawHeight": 75,
  2535. "borderTop": 0,
  2536. "borderBottom": 0,
  2537. "borderLeft": 0,
  2538. "borderRight": 0,
  2539. "spriteType": "normal",
  2540. "subMetas": {}
  2541. },
  2542. "bear_wrap_27.png": {
  2543. "ver": "1.0.6",
  2544. "uuid": "b0a529c9-07d1-467b-801b-72cd394ff654",
  2545. "importer": "sprite-frame",
  2546. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2547. "trimType": "auto",
  2548. "trimThreshold": 1,
  2549. "rotated": false,
  2550. "offsetX": 0,
  2551. "offsetY": 0,
  2552. "trimX": 387,
  2553. "trimY": 210,
  2554. "width": 77,
  2555. "height": 71,
  2556. "rawWidth": 81,
  2557. "rawHeight": 75,
  2558. "borderTop": 0,
  2559. "borderBottom": 0,
  2560. "borderLeft": 0,
  2561. "borderRight": 0,
  2562. "spriteType": "normal",
  2563. "subMetas": {}
  2564. },
  2565. "bear_wrap_28.png": {
  2566. "ver": "1.0.6",
  2567. "uuid": "e073d0e2-d05d-4dd8-9e81-b27d555221f4",
  2568. "importer": "sprite-frame",
  2569. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2570. "trimType": "auto",
  2571. "trimThreshold": 1,
  2572. "rotated": false,
  2573. "offsetX": -1,
  2574. "offsetY": 0,
  2575. "trimX": 2,
  2576. "trimY": 427,
  2577. "width": 79,
  2578. "height": 73,
  2579. "rawWidth": 81,
  2580. "rawHeight": 75,
  2581. "borderTop": 0,
  2582. "borderBottom": 0,
  2583. "borderLeft": 0,
  2584. "borderRight": 0,
  2585. "spriteType": "normal",
  2586. "subMetas": {}
  2587. },
  2588. "bear_wrap_29.png": {
  2589. "ver": "1.0.6",
  2590. "uuid": "0c69fbd3-5ec1-4973-b0e7-2ca7980c062a",
  2591. "importer": "sprite-frame",
  2592. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2593. "trimType": "auto",
  2594. "trimThreshold": 1,
  2595. "rotated": false,
  2596. "offsetX": 0,
  2597. "offsetY": 0,
  2598. "trimX": 875,
  2599. "trimY": 354,
  2600. "width": 79,
  2601. "height": 73,
  2602. "rawWidth": 81,
  2603. "rawHeight": 75,
  2604. "borderTop": 0,
  2605. "borderBottom": 0,
  2606. "borderLeft": 0,
  2607. "borderRight": 0,
  2608. "spriteType": "normal",
  2609. "subMetas": {}
  2610. },
  2611. "bear_wrap_03.png": {
  2612. "ver": "1.0.6",
  2613. "uuid": "b3487fe7-482e-4f64-a815-dc0a4da112e0",
  2614. "importer": "sprite-frame",
  2615. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2616. "trimType": "auto",
  2617. "trimThreshold": 1,
  2618. "rotated": false,
  2619. "offsetX": 0,
  2620. "offsetY": 0,
  2621. "trimX": 161,
  2622. "trimY": 354,
  2623. "width": 79,
  2624. "height": 73,
  2625. "rawWidth": 81,
  2626. "rawHeight": 75,
  2627. "borderTop": 0,
  2628. "borderBottom": 0,
  2629. "borderLeft": 0,
  2630. "borderRight": 0,
  2631. "spriteType": "normal",
  2632. "subMetas": {}
  2633. },
  2634. "bear_wrap_30.png": {
  2635. "ver": "1.0.6",
  2636. "uuid": "1560d58a-cca1-452a-be9e-9d78bafc56bb",
  2637. "importer": "sprite-frame",
  2638. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2639. "trimType": "auto",
  2640. "trimThreshold": 1,
  2641. "rotated": false,
  2642. "offsetX": 0,
  2643. "offsetY": 0,
  2644. "trimX": 727,
  2645. "trimY": 427,
  2646. "width": 81,
  2647. "height": 75,
  2648. "rawWidth": 81,
  2649. "rawHeight": 75,
  2650. "borderTop": 0,
  2651. "borderBottom": 0,
  2652. "borderLeft": 0,
  2653. "borderRight": 0,
  2654. "spriteType": "normal",
  2655. "subMetas": {}
  2656. },
  2657. "bear_wrap_31.png": {
  2658. "ver": "1.0.6",
  2659. "uuid": "52af3619-3017-475b-a291-37249d5285e2",
  2660. "importer": "sprite-frame",
  2661. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2662. "trimType": "auto",
  2663. "trimThreshold": 1,
  2664. "rotated": false,
  2665. "offsetX": 0,
  2666. "offsetY": 0,
  2667. "trimX": 398,
  2668. "trimY": 354,
  2669. "width": 79,
  2670. "height": 73,
  2671. "rawWidth": 81,
  2672. "rawHeight": 75,
  2673. "borderTop": 0,
  2674. "borderBottom": 0,
  2675. "borderLeft": 0,
  2676. "borderRight": 0,
  2677. "spriteType": "normal",
  2678. "subMetas": {}
  2679. },
  2680. "bear_wrap_32.png": {
  2681. "ver": "1.0.6",
  2682. "uuid": "d6a8096a-f8aa-464b-9b0b-483ee3324a37",
  2683. "importer": "sprite-frame",
  2684. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2685. "trimType": "auto",
  2686. "trimThreshold": 1,
  2687. "rotated": false,
  2688. "offsetX": -1,
  2689. "offsetY": 0,
  2690. "trimX": 861,
  2691. "trimY": 281,
  2692. "width": 79,
  2693. "height": 73,
  2694. "rawWidth": 81,
  2695. "rawHeight": 75,
  2696. "borderTop": 0,
  2697. "borderBottom": 0,
  2698. "borderLeft": 0,
  2699. "borderRight": 0,
  2700. "spriteType": "normal",
  2701. "subMetas": {}
  2702. },
  2703. "bear_wrap_33.png": {
  2704. "ver": "1.0.6",
  2705. "uuid": "21ac9c30-d5e7-4fe1-9e00-2d8ccaedda8c",
  2706. "importer": "sprite-frame",
  2707. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2708. "trimType": "auto",
  2709. "trimThreshold": 1,
  2710. "rotated": false,
  2711. "offsetX": 0,
  2712. "offsetY": 0,
  2713. "trimX": 541,
  2714. "trimY": 210,
  2715. "width": 77,
  2716. "height": 71,
  2717. "rawWidth": 81,
  2718. "rawHeight": 75,
  2719. "borderTop": 0,
  2720. "borderBottom": 0,
  2721. "borderLeft": 0,
  2722. "borderRight": 0,
  2723. "spriteType": "normal",
  2724. "subMetas": {}
  2725. },
  2726. "bear_wrap_34.png": {
  2727. "ver": "1.0.6",
  2728. "uuid": "475c45ef-96ba-4a1a-9b98-ea0b5b856323",
  2729. "importer": "sprite-frame",
  2730. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2731. "trimType": "auto",
  2732. "trimThreshold": 1,
  2733. "rotated": false,
  2734. "offsetX": 0,
  2735. "offsetY": 0,
  2736. "trimX": 669,
  2737. "trimY": 2,
  2738. "width": 75,
  2739. "height": 69,
  2740. "rawWidth": 81,
  2741. "rawHeight": 75,
  2742. "borderTop": 0,
  2743. "borderBottom": 0,
  2744. "borderLeft": 0,
  2745. "borderRight": 0,
  2746. "spriteType": "normal",
  2747. "subMetas": {}
  2748. },
  2749. "bear_wrap_35.png": {
  2750. "ver": "1.0.6",
  2751. "uuid": "53a0cd6e-3f46-4986-bd32-a77876e277bb",
  2752. "importer": "sprite-frame",
  2753. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2754. "trimType": "auto",
  2755. "trimThreshold": 1,
  2756. "rotated": false,
  2757. "offsetX": 0,
  2758. "offsetY": 0,
  2759. "trimX": 387,
  2760. "trimY": 210,
  2761. "width": 77,
  2762. "height": 71,
  2763. "rawWidth": 81,
  2764. "rawHeight": 75,
  2765. "borderTop": 0,
  2766. "borderBottom": 0,
  2767. "borderLeft": 0,
  2768. "borderRight": 0,
  2769. "spriteType": "normal",
  2770. "subMetas": {}
  2771. },
  2772. "bear_wrap_36.png": {
  2773. "ver": "1.0.6",
  2774. "uuid": "f1b6a88b-a297-4c44-889b-59b865d5c6d1",
  2775. "importer": "sprite-frame",
  2776. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2777. "trimType": "auto",
  2778. "trimThreshold": 1,
  2779. "rotated": false,
  2780. "offsetX": -1,
  2781. "offsetY": 0,
  2782. "trimX": 2,
  2783. "trimY": 427,
  2784. "width": 79,
  2785. "height": 73,
  2786. "rawWidth": 81,
  2787. "rawHeight": 75,
  2788. "borderTop": 0,
  2789. "borderBottom": 0,
  2790. "borderLeft": 0,
  2791. "borderRight": 0,
  2792. "spriteType": "normal",
  2793. "subMetas": {}
  2794. },
  2795. "bear_wrap_37.png": {
  2796. "ver": "1.0.6",
  2797. "uuid": "e2cce97d-2dc4-4d49-94f0-0b524d7cfff0",
  2798. "importer": "sprite-frame",
  2799. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2800. "trimType": "auto",
  2801. "trimThreshold": 1,
  2802. "rotated": false,
  2803. "offsetX": 0,
  2804. "offsetY": 0,
  2805. "trimX": 875,
  2806. "trimY": 354,
  2807. "width": 79,
  2808. "height": 73,
  2809. "rawWidth": 81,
  2810. "rawHeight": 75,
  2811. "borderTop": 0,
  2812. "borderBottom": 0,
  2813. "borderLeft": 0,
  2814. "borderRight": 0,
  2815. "spriteType": "normal",
  2816. "subMetas": {}
  2817. },
  2818. "bear_wrap_38.png": {
  2819. "ver": "1.0.6",
  2820. "uuid": "40c61173-30dd-4b2a-aab1-9755766adcc2",
  2821. "importer": "sprite-frame",
  2822. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2823. "trimType": "auto",
  2824. "trimThreshold": 1,
  2825. "rotated": false,
  2826. "offsetX": 0,
  2827. "offsetY": 0,
  2828. "trimX": 727,
  2829. "trimY": 427,
  2830. "width": 81,
  2831. "height": 75,
  2832. "rawWidth": 81,
  2833. "rawHeight": 75,
  2834. "borderTop": 0,
  2835. "borderBottom": 0,
  2836. "borderLeft": 0,
  2837. "borderRight": 0,
  2838. "spriteType": "normal",
  2839. "subMetas": {}
  2840. },
  2841. "bear_wrap_39.png": {
  2842. "ver": "1.0.6",
  2843. "uuid": "ec31794a-3559-4d88-bc92-5eb900cdd710",
  2844. "importer": "sprite-frame",
  2845. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2846. "trimType": "auto",
  2847. "trimThreshold": 1,
  2848. "rotated": false,
  2849. "offsetX": 0,
  2850. "offsetY": 0,
  2851. "trimX": 322,
  2852. "trimY": 427,
  2853. "width": 81,
  2854. "height": 75,
  2855. "rawWidth": 81,
  2856. "rawHeight": 75,
  2857. "borderTop": 0,
  2858. "borderBottom": 0,
  2859. "borderLeft": 0,
  2860. "borderRight": 0,
  2861. "spriteType": "normal",
  2862. "subMetas": {}
  2863. },
  2864. "bear_wrap_04.png": {
  2865. "ver": "1.0.6",
  2866. "uuid": "05dcd099-d541-496d-bd38-901aca39bf3c",
  2867. "importer": "sprite-frame",
  2868. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2869. "trimType": "auto",
  2870. "trimThreshold": 1,
  2871. "rotated": false,
  2872. "offsetX": 0,
  2873. "offsetY": 0,
  2874. "trimX": 484,
  2875. "trimY": 427,
  2876. "width": 81,
  2877. "height": 75,
  2878. "rawWidth": 81,
  2879. "rawHeight": 75,
  2880. "borderTop": 0,
  2881. "borderBottom": 0,
  2882. "borderLeft": 0,
  2883. "borderRight": 0,
  2884. "spriteType": "normal",
  2885. "subMetas": {}
  2886. },
  2887. "bear_wrap_40.png": {
  2888. "ver": "1.0.6",
  2889. "uuid": "f0c09b95-eff2-455a-aac4-367132f135e5",
  2890. "importer": "sprite-frame",
  2891. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2892. "trimType": "auto",
  2893. "trimThreshold": 1,
  2894. "rotated": false,
  2895. "offsetX": 0,
  2896. "offsetY": 0,
  2897. "trimX": 322,
  2898. "trimY": 427,
  2899. "width": 81,
  2900. "height": 75,
  2901. "rawWidth": 81,
  2902. "rawHeight": 75,
  2903. "borderTop": 0,
  2904. "borderBottom": 0,
  2905. "borderLeft": 0,
  2906. "borderRight": 0,
  2907. "spriteType": "normal",
  2908. "subMetas": {}
  2909. },
  2910. "bear_wrap_41.png": {
  2911. "ver": "1.0.6",
  2912. "uuid": "75eb3743-5cde-4260-89cf-ab62401c52ce",
  2913. "importer": "sprite-frame",
  2914. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2915. "trimType": "auto",
  2916. "trimThreshold": 1,
  2917. "rotated": false,
  2918. "offsetX": 0,
  2919. "offsetY": 0,
  2920. "trimX": 322,
  2921. "trimY": 427,
  2922. "width": 81,
  2923. "height": 75,
  2924. "rawWidth": 81,
  2925. "rawHeight": 75,
  2926. "borderTop": 0,
  2927. "borderBottom": 0,
  2928. "borderLeft": 0,
  2929. "borderRight": 0,
  2930. "spriteType": "normal",
  2931. "subMetas": {}
  2932. },
  2933. "bear_wrap_42.png": {
  2934. "ver": "1.0.6",
  2935. "uuid": "852c4caf-fcae-4127-94ae-0956c73e2deb",
  2936. "importer": "sprite-frame",
  2937. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2938. "trimType": "auto",
  2939. "trimThreshold": 1,
  2940. "rotated": false,
  2941. "offsetX": 0,
  2942. "offsetY": 0,
  2943. "trimX": 646,
  2944. "trimY": 427,
  2945. "width": 81,
  2946. "height": 75,
  2947. "rawWidth": 81,
  2948. "rawHeight": 75,
  2949. "borderTop": 0,
  2950. "borderBottom": 0,
  2951. "borderLeft": 0,
  2952. "borderRight": 0,
  2953. "spriteType": "normal",
  2954. "subMetas": {}
  2955. },
  2956. "bear_wrap_43.png": {
  2957. "ver": "1.0.6",
  2958. "uuid": "e6454e14-22f9-46af-9545-8062f511c51b",
  2959. "importer": "sprite-frame",
  2960. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2961. "trimType": "auto",
  2962. "trimThreshold": 1,
  2963. "rotated": false,
  2964. "offsetX": 0,
  2965. "offsetY": 0,
  2966. "trimX": 808,
  2967. "trimY": 427,
  2968. "width": 81,
  2969. "height": 75,
  2970. "rawWidth": 81,
  2971. "rawHeight": 75,
  2972. "borderTop": 0,
  2973. "borderBottom": 0,
  2974. "borderLeft": 0,
  2975. "borderRight": 0,
  2976. "spriteType": "normal",
  2977. "subMetas": {}
  2978. },
  2979. "bear_wrap_44.png": {
  2980. "ver": "1.0.6",
  2981. "uuid": "b89dbebb-ddf4-45a5-a128-319cb80bf205",
  2982. "importer": "sprite-frame",
  2983. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  2984. "trimType": "auto",
  2985. "trimThreshold": 1,
  2986. "rotated": false,
  2987. "offsetX": 0,
  2988. "offsetY": 0,
  2989. "trimX": 484,
  2990. "trimY": 427,
  2991. "width": 81,
  2992. "height": 75,
  2993. "rawWidth": 81,
  2994. "rawHeight": 75,
  2995. "borderTop": 0,
  2996. "borderBottom": 0,
  2997. "borderLeft": 0,
  2998. "borderRight": 0,
  2999. "spriteType": "normal",
  3000. "subMetas": {}
  3001. },
  3002. "bear_wrap_45.png": {
  3003. "ver": "1.0.6",
  3004. "uuid": "5ee004ca-945a-4a42-ad49-9bd9b79cf738",
  3005. "importer": "sprite-frame",
  3006. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  3007. "trimType": "auto",
  3008. "trimThreshold": 1,
  3009. "rotated": false,
  3010. "offsetX": 0,
  3011. "offsetY": 0,
  3012. "trimX": 319,
  3013. "trimY": 354,
  3014. "width": 79,
  3015. "height": 73,
  3016. "rawWidth": 81,
  3017. "rawHeight": 75,
  3018. "borderTop": 0,
  3019. "borderBottom": 0,
  3020. "borderLeft": 0,
  3021. "borderRight": 0,
  3022. "spriteType": "normal",
  3023. "subMetas": {}
  3024. },
  3025. "bear_wrap_46.png": {
  3026. "ver": "1.0.6",
  3027. "uuid": "af8be34f-1938-445e-9c86-484dedc01ffd",
  3028. "importer": "sprite-frame",
  3029. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  3030. "trimType": "auto",
  3031. "trimThreshold": 1,
  3032. "rotated": false,
  3033. "offsetX": -1,
  3034. "offsetY": 1,
  3035. "trimX": 82,
  3036. "trimY": 354,
  3037. "width": 79,
  3038. "height": 73,
  3039. "rawWidth": 81,
  3040. "rawHeight": 75,
  3041. "borderTop": 0,
  3042. "borderBottom": 0,
  3043. "borderLeft": 0,
  3044. "borderRight": 0,
  3045. "spriteType": "normal",
  3046. "subMetas": {}
  3047. },
  3048. "bear_wrap_47.png": {
  3049. "ver": "1.0.6",
  3050. "uuid": "6e8727a2-0911-4f60-9332-e5720fd3a001",
  3051. "importer": "sprite-frame",
  3052. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  3053. "trimType": "auto",
  3054. "trimThreshold": 1,
  3055. "rotated": false,
  3056. "offsetX": 0,
  3057. "offsetY": 0,
  3058. "trimX": 464,
  3059. "trimY": 210,
  3060. "width": 77,
  3061. "height": 71,
  3062. "rawWidth": 81,
  3063. "rawHeight": 75,
  3064. "borderTop": 0,
  3065. "borderBottom": 0,
  3066. "borderLeft": 0,
  3067. "borderRight": 0,
  3068. "spriteType": "normal",
  3069. "subMetas": {}
  3070. },
  3071. "bear_wrap_48.png": {
  3072. "ver": "1.0.6",
  3073. "uuid": "7d3bf2ad-12e3-4b95-b12d-f662c913ed40",
  3074. "importer": "sprite-frame",
  3075. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  3076. "trimType": "auto",
  3077. "trimThreshold": 1,
  3078. "rotated": false,
  3079. "offsetX": 0,
  3080. "offsetY": 1,
  3081. "trimX": 814,
  3082. "trimY": 2,
  3083. "width": 75,
  3084. "height": 69,
  3085. "rawWidth": 81,
  3086. "rawHeight": 75,
  3087. "borderTop": 0,
  3088. "borderBottom": 0,
  3089. "borderLeft": 0,
  3090. "borderRight": 0,
  3091. "spriteType": "normal",
  3092. "subMetas": {}
  3093. },
  3094. "bear_wrap_05.png": {
  3095. "ver": "1.0.6",
  3096. "uuid": "b06c4f45-9aea-4f11-9158-e0c75c3641ee",
  3097. "importer": "sprite-frame",
  3098. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  3099. "trimType": "auto",
  3100. "trimThreshold": 1,
  3101. "rotated": false,
  3102. "offsetX": 0,
  3103. "offsetY": 0,
  3104. "trimX": 240,
  3105. "trimY": 354,
  3106. "width": 79,
  3107. "height": 73,
  3108. "rawWidth": 81,
  3109. "rawHeight": 75,
  3110. "borderTop": 0,
  3111. "borderBottom": 0,
  3112. "borderLeft": 0,
  3113. "borderRight": 0,
  3114. "spriteType": "normal",
  3115. "subMetas": {}
  3116. },
  3117. "bear_wrap_06.png": {
  3118. "ver": "1.0.6",
  3119. "uuid": "f3a774b5-c8df-4f0d-ace3-da83633fffa8",
  3120. "importer": "sprite-frame",
  3121. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  3122. "trimType": "auto",
  3123. "trimThreshold": 1,
  3124. "rotated": false,
  3125. "offsetX": -1,
  3126. "offsetY": 0,
  3127. "trimX": 851,
  3128. "trimY": 210,
  3129. "width": 79,
  3130. "height": 71,
  3131. "rawWidth": 81,
  3132. "rawHeight": 75,
  3133. "borderTop": 0,
  3134. "borderBottom": 0,
  3135. "borderLeft": 0,
  3136. "borderRight": 0,
  3137. "spriteType": "normal",
  3138. "subMetas": {}
  3139. },
  3140. "bear_wrap_07.png": {
  3141. "ver": "1.0.6",
  3142. "uuid": "94b7fb94-17aa-4b69-a9b1-f098b4fa3881",
  3143. "importer": "sprite-frame",
  3144. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  3145. "trimType": "auto",
  3146. "trimThreshold": 1,
  3147. "rotated": false,
  3148. "offsetX": -1,
  3149. "offsetY": 0,
  3150. "trimX": 695,
  3151. "trimY": 210,
  3152. "width": 79,
  3153. "height": 71,
  3154. "rawWidth": 81,
  3155. "rawHeight": 75,
  3156. "borderTop": 0,
  3157. "borderBottom": 0,
  3158. "borderLeft": 0,
  3159. "borderRight": 0,
  3160. "spriteType": "normal",
  3161. "subMetas": {}
  3162. },
  3163. "bear_wrap_08.png": {
  3164. "ver": "1.0.6",
  3165. "uuid": "e6567f88-44e1-4db1-a2f9-c514de6c1412",
  3166. "importer": "sprite-frame",
  3167. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  3168. "trimType": "auto",
  3169. "trimThreshold": 1,
  3170. "rotated": false,
  3171. "offsetX": 0,
  3172. "offsetY": 1,
  3173. "trimX": 774,
  3174. "trimY": 210,
  3175. "width": 77,
  3176. "height": 71,
  3177. "rawWidth": 81,
  3178. "rawHeight": 75,
  3179. "borderTop": 0,
  3180. "borderBottom": 0,
  3181. "borderLeft": 0,
  3182. "borderRight": 0,
  3183. "spriteType": "normal",
  3184. "subMetas": {}
  3185. },
  3186. "bear_wrap_09.png": {
  3187. "ver": "1.0.6",
  3188. "uuid": "464e8ac9-4f86-4e16-924d-c63e28f1f8a9",
  3189. "importer": "sprite-frame",
  3190. "rawTextureUuid": "6e3d9dff-c9b9-4b0d-ade4-1eaf3d46cf9b",
  3191. "trimType": "auto",
  3192. "trimThreshold": 1,
  3193. "rotated": false,
  3194. "offsetX": 0,
  3195. "offsetY": 1,
  3196. "trimX": 520,
  3197. "trimY": 2,
  3198. "width": 75,
  3199. "height": 69,
  3200. "rawWidth": 81,
  3201. "rawHeight": 75,
  3202. "borderTop": 0,
  3203. "borderBottom": 0,
  3204. "borderLeft": 0,
  3205. "borderRight": 0,
  3206. "spriteType": "normal",
  3207. "subMetas": {}
  3208. }
  3209. }
  3210. }