project.pbxproj 269 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 55;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2B3E96D298A3E04003DA2AD3 /* Pods_Asteria_NotificationServiceExtension.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 51AF3B78609F55449DF09609 /* Pods_Asteria_NotificationServiceExtension.framework */; };
  10. 81056D5C2B60F571009219A3 /* ASHelpListUrlModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81056D5B2B60F571009219A3 /* ASHelpListUrlModel.m */; };
  11. 811F42462A40533C00DA68F1 /* ASPointsHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 811F42452A40533C00DA68F1 /* ASPointsHomeViewController.m */; };
  12. 811F42492A40536C00DA68F1 /* ASPointHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 811F42482A40536C00DA68F1 /* ASPointHeadView.m */; };
  13. 812021152B14659A0026B8B5 /* ASUserInfoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 812021142B14659A0026B8B5 /* ASUserInfoManager.m */; };
  14. 812021182B1467410026B8B5 /* ASUserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 812021172B1467410026B8B5 /* ASUserModel.m */; };
  15. 8120211B2B15F03B0026B8B5 /* ASVipModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8120211A2B15F03B0026B8B5 /* ASVipModel.m */; };
  16. 8120211E2B15F2B30026B8B5 /* ASVipUrlTempModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8120211D2B15F2B30026B8B5 /* ASVipUrlTempModel.m */; };
  17. 812021212B16CD630026B8B5 /* ASSginViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 812021202B16CD630026B8B5 /* ASSginViewModel.m */; };
  18. 812021252B185A610026B8B5 /* ASCouponsListViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 812021242B185A610026B8B5 /* ASCouponsListViewModel.m */; };
  19. 812021282B185C000026B8B5 /* ASCouponsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 812021272B185C000026B8B5 /* ASCouponsModel.m */; };
  20. 8127ADDB2B1193A300464D27 /* ASNetTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 8127ADDA2B1193A300464D27 /* ASNetTools.m */; };
  21. 8131A27C2B365F7700A191BE /* ASProductListCategoryModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8131A27B2B365F7600A191BE /* ASProductListCategoryModel.m */; };
  22. 8131A2802B3687EE00A191BE /* ASCustomWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 8131A27F2B3687EE00A191BE /* ASCustomWindow.m */; };
  23. 8131A2842B36882500A191BE /* ASCustomAlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8131A2832B36882500A191BE /* ASCustomAlertViewController.m */; };
  24. 8131A2872B36890200A191BE /* ASWindowManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8131A2862B36890200A191BE /* ASWindowManager.m */; };
  25. 8131A28C2B3692F300A191BE /* APHomeActiveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8131A2882B3692F300A191BE /* APHomeActiveViewController.m */; };
  26. 8131A28D2B3692F300A191BE /* APHomeActiveWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 8131A28B2B3692F300A191BE /* APHomeActiveWindow.m */; };
  27. 8131A2902B38FF3B00A191BE /* APInputAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8131A28F2B38FF3B00A191BE /* APInputAlertView.m */; };
  28. 8131A2932B3950DA00A191BE /* ASExtraPointsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8131A2922B3950DA00A191BE /* ASExtraPointsModel.m */; };
  29. 8134C1AD2A13094F006EB0EC /* Target_userCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1AC2A13094F006EB0EC /* Target_userCenter.m */; };
  30. 8134C1B42A1358F3006EB0EC /* ASSginView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1B32A1358F3006EB0EC /* ASSginView.m */; };
  31. 8134C1B72A1359E6006EB0EC /* ASSignDayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1B62A1359E6006EB0EC /* ASSignDayView.m */; };
  32. 8134C1BA2A1372A7006EB0EC /* ASUserCenterEnterItemV.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1B92A1372A7006EB0EC /* ASUserCenterEnterItemV.m */; };
  33. 8134C1BD2A1372D5006EB0EC /* ASUserCenterTableHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1BC2A1372D5006EB0EC /* ASUserCenterTableHeadView.m */; };
  34. 8134C1C52A145172006EB0EC /* ASProductItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134C1C42A145172006EB0EC /* ASProductItemView.m */; };
  35. 81354BE72A28786C0082C93A /* ASProductBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BE62A28786C0082C93A /* ASProductBaseModel.m */; };
  36. 81354BED2A287AB50082C93A /* KWMineHomeOrderHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BEA2A287AB50082C93A /* KWMineHomeOrderHeadView.m */; };
  37. 81354BEE2A287AB50082C93A /* KWMineHomeOrderListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BEC2A287AB50082C93A /* KWMineHomeOrderListCell.m */; };
  38. 81354BF22A287B120082C93A /* KWMineHomeOrderModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BF02A287B120082C93A /* KWMineHomeOrderModel.m */; };
  39. 81354BF52A287BED0082C93A /* KWMineHomeOrderSubView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BF42A287BEC0082C93A /* KWMineHomeOrderSubView.m */; };
  40. 81354BF72A288AC20082C93A /* ASUI.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 81354BF62A288AC20082C93A /* ASUI.xcassets */; };
  41. 81354BFC2A28998B0082C93A /* KWMineMoreProductTypeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BF92A28998A0082C93A /* KWMineMoreProductTypeCell.m */; };
  42. 81354BFD2A28998B0082C93A /* KWMineMoreProductsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BFB2A28998A0082C93A /* KWMineMoreProductsCell.m */; };
  43. 81354C002A2899CB0082C93A /* KWMineMoreProductModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354BFF2A2899CB0082C93A /* KWMineMoreProductModel.m */; };
  44. 81354C032A289A070082C93A /* HomeFilterModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354C022A289A070082C93A /* HomeFilterModel.m */; };
  45. 81354C0A2A289C350082C93A /* KWScrollOffsetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354C082A289C350082C93A /* KWScrollOffsetView.m */; };
  46. 81354C0B2A289C350082C93A /* KWTimeEndView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354C092A289C350082C93A /* KWTimeEndView.m */; };
  47. 81354C0E2A297D6A0082C93A /* HomeFlashDealSubCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81354C0C2A297D690082C93A /* HomeFlashDealSubCollectCell.m */; };
  48. 814F5CEF2A11B1F2003847A9 /* ASUserCenterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 814F5CEE2A11B1F2003847A9 /* ASUserCenterViewController.m */; };
  49. 814F5CF52A11B37E003847A9 /* ASUserAvaterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 814F5CF42A11B37E003847A9 /* ASUserAvaterView.m */; };
  50. 814F5D052A11B76F003847A9 /* Roboto-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CF82A11B76F003847A9 /* Roboto-Medium.ttf */; };
  51. 814F5D062A11B76F003847A9 /* Roboto-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CF92A11B76F003847A9 /* Roboto-Light.ttf */; };
  52. 814F5D072A11B76F003847A9 /* Roboto-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFA2A11B76F003847A9 /* Roboto-Regular.ttf */; };
  53. 814F5D082A11B76F003847A9 /* Roboto-MediumItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFB2A11B76F003847A9 /* Roboto-MediumItalic.ttf */; };
  54. 814F5D092A11B76F003847A9 /* Roboto-ThinItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFC2A11B76F003847A9 /* Roboto-ThinItalic.ttf */; };
  55. 814F5D0A2A11B76F003847A9 /* Roboto-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFD2A11B76F003847A9 /* Roboto-BoldItalic.ttf */; };
  56. 814F5D0B2A11B76F003847A9 /* Roboto-LightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFE2A11B76F003847A9 /* Roboto-LightItalic.ttf */; };
  57. 814F5D0C2A11B76F003847A9 /* Roboto-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5CFF2A11B76F003847A9 /* Roboto-Italic.ttf */; };
  58. 814F5D0D2A11B76F003847A9 /* LICENSE.txt in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D002A11B76F003847A9 /* LICENSE.txt */; };
  59. 814F5D0E2A11B76F003847A9 /* Roboto-BlackItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D012A11B76F003847A9 /* Roboto-BlackItalic.ttf */; };
  60. 814F5D0F2A11B76F003847A9 /* Roboto-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D022A11B76F003847A9 /* Roboto-Bold.ttf */; };
  61. 814F5D102A11B76F003847A9 /* Roboto-Thin.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D032A11B76F003847A9 /* Roboto-Thin.ttf */; };
  62. 814F5D112A11B76F003847A9 /* Roboto-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 814F5D042A11B76F003847A9 /* Roboto-Black.ttf */; };
  63. 815970BA2B54DC830073041D /* ASUserCenterViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 815970B92B54DC830073041D /* ASUserCenterViewModel.m */; };
  64. 815DA3D92A39575100616EF7 /* ASProductListImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 815DA3D82A39575100616EF7 /* ASProductListImageCell.m */; };
  65. 815DA3DC2A39625200616EF7 /* ASProductListTypeDesCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 815DA3DB2A39625200616EF7 /* ASProductListTypeDesCell.m */; };
  66. 815DA3DF2A396BD300616EF7 /* ASMoreBtCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 815DA3DE2A396BD300616EF7 /* ASMoreBtCell.m */; };
  67. 81601FE62A2DB19300E4A8F1 /* ASHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FE52A2DB19300E4A8F1 /* ASHomeViewController.m */; };
  68. 81601FF62A2DC78300E4A8F1 /* WMZBannerFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FE92A2DC78300E4A8F1 /* WMZBannerFlowLayout.m */; };
  69. 81601FF72A2DC78300E4A8F1 /* WMZBannerParam.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FEC2A2DC78300E4A8F1 /* WMZBannerParam.m */; };
  70. 81601FF82A2DC78300E4A8F1 /* WMZBannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FEE2A2DC78300E4A8F1 /* WMZBannerView.m */; };
  71. 81601FF92A2DC78300E4A8F1 /* WMZBannerControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FEF2A2DC78300E4A8F1 /* WMZBannerControl.m */; };
  72. 81601FFA2A2DC78300E4A8F1 /* WMZBannerFadeLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FF12A2DC78300E4A8F1 /* WMZBannerFadeLayout.m */; };
  73. 81601FFB2A2DC78300E4A8F1 /* WMZBannerOverLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FF52A2DC78300E4A8F1 /* WMZBannerOverLayout.m */; };
  74. 81601FFF2A2DC8E700E4A8F1 /* ASHomeBannerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81601FFE2A2DC8E700E4A8F1 /* ASHomeBannerCell.m */; };
  75. 816020042A2DCC0200E4A8F1 /* ASHomeBannerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020022A2DCB5600E4A8F1 /* ASHomeBannerModel.m */; };
  76. 816020072A2DD4FB00E4A8F1 /* Target_Home.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020062A2DD4FB00E4A8F1 /* Target_Home.m */; };
  77. 8160200A2A2DD59E00E4A8F1 /* CTMediator+Home.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020092A2DD59E00E4A8F1 /* CTMediator+Home.m */; };
  78. 8160200D2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8160200C2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m */; };
  79. 816020102A2EE55F00E4A8F1 /* ASCategaryListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8160200F2A2EE55F00E4A8F1 /* ASCategaryListCell.m */; };
  80. 816020132A2EE5A200E4A8F1 /* ASCategaryCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020122A2EE5A200E4A8F1 /* ASCategaryCollectCell.m */; };
  81. 816020152A2F065700E4A8F1 /* Home.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 816020142A2F065700E4A8F1 /* Home.xcassets */; };
  82. 816020182A2F070B00E4A8F1 /* ASHomeCategoryModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020172A2F070B00E4A8F1 /* ASHomeCategoryModel.m */; };
  83. 8160201C2A2F101C00E4A8F1 /* ASHomeTipCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8160201B2A2F101C00E4A8F1 /* ASHomeTipCell.m */; };
  84. 8160201F2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8160201E2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m */; };
  85. 816020222A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020212A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m */; };
  86. 816020252A2F1C9E00E4A8F1 /* ASHomeMainListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 816020242A2F1C9E00E4A8F1 /* ASHomeMainListModel.m */; };
  87. 816D0C9A2AF3901C00395B5B /* ASGiftCardListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 816D0C992AF3901C00395B5B /* ASGiftCardListViewController.m */; };
  88. 816D0C9D2AF3988400395B5B /* ASGiftCardAvailabelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 816D0C9C2AF3988300395B5B /* ASGiftCardAvailabelCell.m */; };
  89. 81717C912A3BE39C00648139 /* ASProductSortFilterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C902A3BE39C00648139 /* ASProductSortFilterView.m */; };
  90. 81717C942A3BE4E000648139 /* ASProductListSortFilterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C932A3BE4E000648139 /* ASProductListSortFilterCell.m */; };
  91. 81717C992A3BF1DD00648139 /* ASHomeAlertWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C982A3BF1DD00648139 /* ASHomeAlertWindow.m */; };
  92. 81717C9C2A3BF1F100648139 /* ASHomeAlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C9B2A3BF1F100648139 /* ASHomeAlertViewController.m */; };
  93. 81717CA12A3C0A3500648139 /* KWProductMenuFilterItemHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C9D2A3C0A3400648139 /* KWProductMenuFilterItemHeaderView.m */; };
  94. 81717CA22A3C0A3500648139 /* KWProductMenuFilterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717C9F2A3C0A3500648139 /* KWProductMenuFilterView.m */; };
  95. 81717CA52A3C0A5000648139 /* KWProductFilterItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CA42A3C0A5000648139 /* KWProductFilterItemCell.m */; };
  96. 81717CA82A3C0AAA00648139 /* KWProductListFilterModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CA62A3C0AA900648139 /* KWProductListFilterModel.m */; };
  97. 81717CAB2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CAA2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m */; };
  98. 81717D102A3C4AE000648139 /* KWHisAndHotWordsViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CE62A3C4ADE00648139 /* KWHisAndHotWordsViewModel.m */; };
  99. 81717D112A3C4AE000648139 /* KWSearchViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717CE72A3C4ADE00648139 /* KWSearchViewModel.m */; };
  100. 81717D1C2A3C4AE000648139 /* KWSearchSubTypeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D022A3C4ADF00648139 /* KWSearchSubTypeModel.m */; };
  101. 81717D1D2A3C4AE000648139 /* KWSearchSubTypeHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D042A3C4AE000648139 /* KWSearchSubTypeHeadView.m */; };
  102. 81717D1E2A3C4AE000648139 /* KWSearchMainTypeTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D062A3C4AE000648139 /* KWSearchMainTypeTableView.m */; };
  103. 81717D1F2A3C4AE000648139 /* KWMoneyTypeHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D072A3C4AE000648139 /* KWMoneyTypeHeadView.m */; };
  104. 81717D202A3C4AE000648139 /* KWSearchSubTypeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D0B2A3C4AE000648139 /* KWSearchSubTypeCell.m */; };
  105. 81717D212A3C4AE000648139 /* KWSearchSubTypeTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D0E2A3C4AE000648139 /* KWSearchSubTypeTableView.m */; };
  106. 81717D222A3C4AE000648139 /* KWSearchMainTypeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D0F2A3C4AE000648139 /* KWSearchMainTypeCell.m */; };
  107. 81717D252A3C512700648139 /* Target_Category.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D242A3C512700648139 /* Target_Category.m */; };
  108. 81717D282A3C55CC00648139 /* CTMediator+Categorys.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D272A3C55CC00648139 /* CTMediator+Categorys.m */; };
  109. 81717D352A3D322700648139 /* KWHisKeyWordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D292A3D322600648139 /* KWHisKeyWordCell.m */; };
  110. 81717D362A3D322700648139 /* KWLenovoWordListView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D2B2A3D322600648139 /* KWLenovoWordListView.m */; };
  111. 81717D372A3D322700648139 /* KWHisCollectHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D2D2A3D322600648139 /* KWHisCollectHeaderView.m */; };
  112. 81717D382A3D322700648139 /* KWNoHisWordsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D312A3D322700648139 /* KWNoHisWordsCell.m */; };
  113. 81717D392A3D322700648139 /* KWCustomLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D322A3D322700648139 /* KWCustomLayout.m */; };
  114. 81717D3A2A3D322700648139 /* KWHisAndHotWordsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D342A3D322700648139 /* KWHisAndHotWordsView.m */; };
  115. 81717D3C2A3D430C00648139 /* Category.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 81717D3B2A3D430C00648139 /* Category.xcassets */; };
  116. 81717D3F2A3D5EAD00648139 /* ASDefualtAlertV.m in Sources */ = {isa = PBXBuildFile; fileRef = 81717D3E2A3D5EAD00648139 /* ASDefualtAlertV.m */; };
  117. 8172449F29F3B2ED005FA9C9 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 8172449E29F3B2ED005FA9C9 /* AppDelegate.m */; };
  118. 817244AA29F3B2EE005FA9C9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 817244A929F3B2EE005FA9C9 /* Assets.xcassets */; };
  119. 817244AD29F3B2EE005FA9C9 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 817244AB29F3B2EE005FA9C9 /* LaunchScreen.storyboard */; };
  120. 817244B029F3B2EE005FA9C9 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 817244AF29F3B2EE005FA9C9 /* main.m */; };
  121. 817244BE29F3B81C005FA9C9 /* NotificationService.m in Sources */ = {isa = PBXBuildFile; fileRef = 817244BD29F3B81C005FA9C9 /* NotificationService.m */; };
  122. 817244C229F3B81C005FA9C9 /* NotificationServiceExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 817244BA29F3B81C005FA9C9 /* NotificationServiceExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  123. 8186564A2A5BE9790049D861 /* ASSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 818656492A5BE9790049D861 /* ASSearchViewController.m */; };
  124. 8186564D2A5BF6010049D861 /* ASCategoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8186564C2A5BF6010049D861 /* ASCategoryViewController.m */; };
  125. 81932E2B29F7539B007C37AF /* UIColor+AS.m in Sources */ = {isa = PBXBuildFile; fileRef = 81932E2A29F7539B007C37AF /* UIColor+AS.m */; };
  126. 819349302BF59000009FDDB2 /* ASHomeViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8193492F2BF59000009FDDB2 /* ASHomeViewModel.m */; };
  127. 819349352BF5A679009FDDB2 /* ASJumpModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 819349342BF5A679009FDDB2 /* ASJumpModel.m */; };
  128. 8193D5C82BEA299F00B9AB11 /* ASAddressListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8193D5C72BEA299F00B9AB11 /* ASAddressListViewController.m */; };
  129. 8193D5CB2BEA2A0800B9AB11 /* ASMineAddressModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8193D5CA2BEA2A0800B9AB11 /* ASMineAddressModel.m */; };
  130. 8193D5CE2BEA2B8E00B9AB11 /* ASAddressViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8193D5CD2BEA2B8E00B9AB11 /* ASAddressViewModel.m */; };
  131. 8193D5D12BEA2F3100B9AB11 /* ASMineAddressCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8193D5D02BEA2F3100B9AB11 /* ASMineAddressCell.m */; };
  132. 819900222A020A6F006FE68C /* LYTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 819900212A020A6F006FE68C /* LYTools.m */; };
  133. 81AA11D02B23EA15008EB5C7 /* ASVipCouponsViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AA11CF2B23EA15008EB5C7 /* ASVipCouponsViewModel.m */; };
  134. 81AA11D32B23EC20008EB5C7 /* ASVipCouponModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AA11D22B23EC20008EB5C7 /* ASVipCouponModel.m */; };
  135. 81AA11D92B23FF1F008EB5C7 /* ASCategoriesViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AA11D82B23FF1F008EB5C7 /* ASCategoriesViewModel.m */; };
  136. 81AA11DC2B23FF71008EB5C7 /* ASCurrencyManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AA11DB2B23FF71008EB5C7 /* ASCurrencyManager.m */; };
  137. 81BEA6832A2D7CF3009D36C4 /* UITableView+ASBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 81BEA6822A2D7CF3009D36C4 /* UITableView+ASBase.m */; };
  138. 81C3265F2A36B284002EF442 /* ASProductListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3265E2A36B284002EF442 /* ASProductListViewController.m */; };
  139. 81C326622A36B33B002EF442 /* ASHomeActiveView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C326612A36B33B002EF442 /* ASHomeActiveView.m */; };
  140. 81C326662A36B794002EF442 /* VerScrollTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C326642A36B794002EF442 /* VerScrollTextView.m */; };
  141. 81C3266A2A36F035002EF442 /* ASProductListViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C326692A36F035002EF442 /* ASProductListViewModel.m */; };
  142. 81C3266E2A36FF2B002EF442 /* ASProductListActiveHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3266D2A36FF2B002EF442 /* ASProductListActiveHeaderView.m */; };
  143. 81C326712A37020A002EF442 /* ASProductListMenuHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C326702A37020A002EF442 /* ASProductListMenuHeaderView.m */; };
  144. 81C3B44429F6612800D79294 /* ASBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3B44329F6612800D79294 /* ASBaseViewController.m */; };
  145. 81C3B44A29F6661500D79294 /* ASBaseNavController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3B44929F6661500D79294 /* ASBaseNavController.m */; };
  146. 81C3B45529F66C1700D79294 /* UIView+PublicInit.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C3B45429F66C1700D79294 /* UIView+PublicInit.m */; };
  147. 81C796242A4FD63A003083B8 /* ASVipCouponsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796232A4FD63A003083B8 /* ASVipCouponsViewController.m */; };
  148. 81C796272A4FD898003083B8 /* ASBirthdayTreatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796262A4FD898003083B8 /* ASBirthdayTreatViewController.m */; };
  149. 81C7962B2A539E80003083B8 /* ASMessageListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C7962A2A539E80003083B8 /* ASMessageListViewController.m */; };
  150. 81C7962E2A539F4D003083B8 /* ASMessageListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C7962D2A539F4D003083B8 /* ASMessageListCell.m */; };
  151. 81C796342A551643003083B8 /* ASSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796332A551643003083B8 /* ASSettingViewController.m */; };
  152. 81C796372A5517B0003083B8 /* ASSettingListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796362A5517B0003083B8 /* ASSettingListCell.m */; };
  153. 81C7963A2A5517F7003083B8 /* KWSwitchButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796392A5517F7003083B8 /* KWSwitchButton.m */; };
  154. 81C7963F2A551FB0003083B8 /* ASInfomationSetController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C7963E2A551FB0003083B8 /* ASInfomationSetController.m */; };
  155. 81C796422A551FE9003083B8 /* KWTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796402A551FE9003083B8 /* KWTextField.m */; };
  156. 81C796462A5542B2003083B8 /* ASHelpListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C796452A5542B2003083B8 /* ASHelpListViewController.m */; };
  157. 81CE28942AF490C20012AA45 /* ASGiftCardTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81CE28932AF490C20012AA45 /* ASGiftCardTableView.m */; };
  158. 81CE28972AF4953C0012AA45 /* ASGiftCardModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81CE28962AF4953C0012AA45 /* ASGiftCardModel.m */; };
  159. 81DFA5592A4681E900DA708B /* ASPointEranCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5582A4681E900DA708B /* ASPointEranCell.m */; };
  160. 81DFA55D2A46C46D00DA708B /* ASWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA55C2A46C46D00DA708B /* ASWebViewController.m */; };
  161. 81DFA5602A46CC8E00DA708B /* CTMediator+ASWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA55F2A46CC8E00DA708B /* CTMediator+ASWebView.m */; };
  162. 81DFA5632A46CD6000DA708B /* Target_WebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5622A46CD6000DA708B /* Target_WebView.m */; };
  163. 81DFA5672A46D60900DA708B /* ASPointDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5662A46D60900DA708B /* ASPointDetailViewController.m */; };
  164. 81DFA56A2A46D82200DA708B /* ASPointDetailTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5692A46D82200DA708B /* ASPointDetailTableView.m */; };
  165. 81DFA56D2A46D86500DA708B /* ASPointDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA56C2A46D86500DA708B /* ASPointDetailModel.m */; };
  166. 81DFA5712A46D95400DA708B /* ASPointDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5702A46D95400DA708B /* ASPointDetailCell.m */; };
  167. 81DFA5752A47D97C00DA708B /* ASCouponsListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5742A47D97C00DA708B /* ASCouponsListViewController.m */; };
  168. 81DFA5782A47F28D00DA708B /* ASCouponListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81DFA5772A47F28D00DA708B /* ASCouponListCell.m */; };
  169. 81E195152C01664E005471A1 /* APPassForgetEmailV.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E195102C01664D005471A1 /* APPassForgetEmailV.m */; };
  170. 81E195162C01664E005471A1 /* LoginForgotC.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E195112C01664D005471A1 /* LoginForgotC.m */; };
  171. 81E195172C01664E005471A1 /* APPassForgetCodeV.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E195122C01664D005471A1 /* APPassForgetCodeV.m */; };
  172. 81E195182C01664E005471A1 /* APPassForgetNewPassV.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E195142C01664E005471A1 /* APPassForgetNewPassV.m */; };
  173. 81E257EE2A120756004EEF71 /* ASUserCenterTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E257ED2A120756004EEF71 /* ASUserCenterTopView.m */; };
  174. 81E257F32A120975004EEF71 /* ASUserBaseInfoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E257F22A120975004EEF71 /* ASUserBaseInfoView.m */; };
  175. 81E257F62A12259B004EEF71 /* UserCenter.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 81E257F52A12259B004EEF71 /* UserCenter.xcassets */; };
  176. 81E257F92A122AC6004EEF71 /* ASUI.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 81E257F82A122AC6004EEF71 /* ASUI.xcassets */; };
  177. 81E257FD2A12340E004EEF71 /* ASEnterItemV.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E257FC2A12340E004EEF71 /* ASEnterItemV.m */; };
  178. 81E5EE902A498FC90075695F /* ASVipCenterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E5EE8F2A498FC90075695F /* ASVipCenterViewController.m */; };
  179. 81E5EE942A4A760D0075695F /* ASVipCenterLineItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E5EE932A4A760D0075695F /* ASVipCenterLineItemView.m */; };
  180. 81E5EE972A4A822D0075695F /* ASVipCenterCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E5EE962A4A822D0075695F /* ASVipCenterCollectCell.m */; };
  181. 81E73EBD2B1AABF300C10938 /* ASGiftCardListViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E73EBC2B1AABF300C10938 /* ASGiftCardListViewModel.m */; };
  182. 81E73EC02B1AC49D00C10938 /* ASPointsViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 81E73EBF2B1AC49D00C10938 /* ASPointsViewModel.m */; };
  183. 81EC47662A33035D00516573 /* ASHomeNewInCellTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47652A33035D00516573 /* ASHomeNewInCellTableViewCell.m */; };
  184. 81EC47692A33073100516573 /* ASHomeNewInProductItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47682A33073100516573 /* ASHomeNewInProductItemView.m */; };
  185. 81EC476C2A33131100516573 /* ASHomeNewInSubCollectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC476B2A33131100516573 /* ASHomeNewInSubCollectCell.m */; };
  186. 81EC476F2A33F82C00516573 /* ASHomeImgCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC476E2A33F82C00516573 /* ASHomeImgCell.m */; };
  187. 81EC47722A3402CA00516573 /* ASHomeFlashDealCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47712A3402CA00516573 /* ASHomeFlashDealCell.m */; };
  188. 81EC47752A3423FC00516573 /* ASHomeLookingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47742A3423FC00516573 /* ASHomeLookingCell.m */; };
  189. 81EC47782A3426CE00516573 /* ASHomeLookingCollCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 81EC47772A3426CE00516573 /* ASHomeLookingCollCell.m */; };
  190. 81FC419C2BEB1E0200EB0A85 /* ASEditAddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 81FC419B2BEB1E0200EB0A85 /* ASEditAddressViewController.m */; };
  191. 81FC41A32BEB4D6E00EB0A85 /* InTableScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81FC41A22BEB4D6D00EB0A85 /* InTableScrollView.m */; };
  192. 8810F5092BEB159600346FD4 /* ASCheckoutTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5082BEB159600346FD4 /* ASCheckoutTopView.m */; };
  193. 8810F50C2BEB590C00346FD4 /* ASCheckoutPointApplyCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F50B2BEB590C00346FD4 /* ASCheckoutPointApplyCell.m */; };
  194. 8810F5122BEB685500346FD4 /* ASCheckoutPaymentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5112BEB685500346FD4 /* ASCheckoutPaymentCell.m */; };
  195. 8810F5152BEB754800346FD4 /* ASCheckoutModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5142BEB754800346FD4 /* ASCheckoutModel.m */; };
  196. 8810F5182BEC548D00346FD4 /* ASCheckoutAddressCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5172BEC548D00346FD4 /* ASCheckoutAddressCell.m */; };
  197. 8810F51B2BEC54B400346FD4 /* ASCheckoutShipMethodCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F51A2BEC54B400346FD4 /* ASCheckoutShipMethodCell.m */; };
  198. 8810F51E2BEC565F00346FD4 /* UILabel+Create.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F51C2BEC565F00346FD4 /* UILabel+Create.m */; };
  199. 8810F5212BEDABFA00346FD4 /* ASCheckoutCommentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5202BEDABFA00346FD4 /* ASCheckoutCommentCell.m */; };
  200. 8810F5232BEDF31500346FD4 /* Cart.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 8810F5222BEDF31500346FD4 /* Cart.xcassets */; };
  201. 8810F5262BEDF9F900346FD4 /* ASCheckoutBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5252BEDF9F900346FD4 /* ASCheckoutBottomView.m */; };
  202. 8810F5292BEE0DEA00346FD4 /* ASCheckoutGoodsItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5282BEE0DEA00346FD4 /* ASCheckoutGoodsItemCell.m */; };
  203. 8810F52C2BF1A1CD00346FD4 /* ASAddGiftGoodsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F52B2BF1A1CD00346FD4 /* ASAddGiftGoodsView.m */; };
  204. 8810F5302BF3678400346FD4 /* ASCheckoutPayManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F52F2BF3678400346FD4 /* ASCheckoutPayManager.m */; };
  205. 8810F53F2BF5949000346FD4 /* ASCommonUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F53E2BF5949000346FD4 /* ASCommonUtils.m */; };
  206. 8810F55E2BF5EBF400346FD4 /* ASOrderDetailsInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5472BF5EBF400346FD4 /* ASOrderDetailsInfoCell.m */; };
  207. 8810F55F2BF5EBF400346FD4 /* ASOrderDetailsItemsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5492BF5EBF400346FD4 /* ASOrderDetailsItemsCell.m */; };
  208. 8810F5602BF5EBF400346FD4 /* ASOrderDetailsPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F54B2BF5EBF400346FD4 /* ASOrderDetailsPriceCell.m */; };
  209. 8810F5612BF5EBF400346FD4 /* ASOrderListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F54D2BF5EBF400346FD4 /* ASOrderListCell.m */; };
  210. 8810F5622BF5EBF400346FD4 /* ASOrderDetailsVM.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5502BF5EBF400346FD4 /* ASOrderDetailsVM.m */; };
  211. 8810F5632BF5EBF400346FD4 /* ASOrderListViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5522BF5EBF400346FD4 /* ASOrderListViewModel.m */; };
  212. 8810F5642BF5EBF400346FD4 /* ASOrderDetailsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5552BF5EBF400346FD4 /* ASOrderDetailsModel.m */; };
  213. 8810F5652BF5EBF400346FD4 /* ASOrderDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5582BF5EBF400346FD4 /* ASOrderDetailsViewController.m */; };
  214. 8810F5662BF5EBF400346FD4 /* ASOrderListSubController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F55A2BF5EBF400346FD4 /* ASOrderListSubController.m */; };
  215. 8810F5672BF5EBF400346FD4 /* ASOrderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F55C2BF5EBF400346FD4 /* ASOrderListViewController.m */; };
  216. 8810F56A2BF5F86D00346FD4 /* ASPayFailedViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5692BF5F86D00346FD4 /* ASPayFailedViewController.m */; };
  217. 8810F56D2BF5F8D800346FD4 /* ASPayFinishHeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F56C2BF5F8D800346FD4 /* ASPayFinishHeadView.m */; };
  218. 8810F57E2BF74A2B00346FD4 /* ASGoodsDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F57D2BF74A2B00346FD4 /* ASGoodsDetailsViewController.m */; };
  219. 8810F5812BF74A5800346FD4 /* ASGoodsDetailsTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5802BF74A5800346FD4 /* ASGoodsDetailsTableView.m */; };
  220. 8810F5842BF74E6400346FD4 /* ASGoodsBannerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5832BF74E6400346FD4 /* ASGoodsBannerCell.m */; };
  221. 8810F58A2BF839C600346FD4 /* ASGoodsDetailsSizeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5892BF839C600346FD4 /* ASGoodsDetailsSizeCell.m */; };
  222. 8810F5902BF83D0400346FD4 /* ASGoodsDetailsSizeSelView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F58E2BF83D0400346FD4 /* ASGoodsDetailsSizeSelView.m */; };
  223. 8810F5932BFB250D00346FD4 /* ASGoodsTitlePriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5922BFB250D00346FD4 /* ASGoodsTitlePriceCell.m */; };
  224. 8810F5962BFB291300346FD4 /* ASGoodsCouponCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5952BFB291300346FD4 /* ASGoodsCouponCell.m */; };
  225. 8810F5992BFB2B2400346FD4 /* ASGoodsGuaranteeInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5982BFB2B2400346FD4 /* ASGoodsGuaranteeInfoCell.m */; };
  226. 8810F59C2BFB3A4500346FD4 /* ASGoodsIntrouduceWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F59B2BFB3A4500346FD4 /* ASGoodsIntrouduceWebView.m */; };
  227. 8810F59F2BFC7D7600346FD4 /* ASGoodsReviewHeadCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F59E2BFC7D7600346FD4 /* ASGoodsReviewHeadCell.m */; };
  228. 8810F5A22BFF448C00346FD4 /* ASMyCartNoDataView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5A12BFF448C00346FD4 /* ASMyCartNoDataView.m */; };
  229. 8810F5A82C01849C00346FD4 /* ASGoodsReviewFootCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8810F5A72C01849C00346FD4 /* ASGoodsReviewFootCell.m */; };
  230. 8C24ECE114420CDEE7B9B22B /* Pods_Asteria.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54DCE8001991D89B696E7D44 /* Pods_Asteria.framework */; };
  231. 9A1247942A1B082300126226 /* Fuction_Tool.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1247932A1B082300126226 /* Fuction_Tool.m */; };
  232. 9A1247972A1B0A2800126226 /* AS_ForgotC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1247962A1B0A2800126226 /* AS_ForgotC.m */; };
  233. 9A2027F52A137B8600FF4DAF /* AuthenticationServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A2027F42A137B8600FF4DAF /* AuthenticationServices.framework */; };
  234. 9A2415B92B677DDF00A6E903 /* Target_Cart.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A2415B82B677DDF00A6E903 /* Target_Cart.m */; };
  235. 9A2415BC2B6784A500A6E903 /* MyCartItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A2415BB2B6784A500A6E903 /* MyCartItemCell.m */; };
  236. 9A2415BF2B678A1100A6E903 /* QtyCountV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A2415BD2B678A1000A6E903 /* QtyCountV.m */; };
  237. 9A31EDFD2B468A55009F11EE /* RadioButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A31EDFC2B468A54009F11EE /* RadioButton.m */; };
  238. 9A31EE002B469A73009F11EE /* AS_GoodsReviewsListC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A31EDFF2B469A73009F11EE /* AS_GoodsReviewsListC.m */; };
  239. 9A32A2212B4BEA5C005A5831 /* GoodsReviewsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A32A2202B4BEA5C005A5831 /* GoodsReviewsCell.m */; };
  240. 9A32A2242B4BEAA8005A5831 /* GoodsReviewsImgV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A32A2222B4BEAA7005A5831 /* GoodsReviewsImgV.m */; };
  241. 9A337E3A2A04EE1A00D058A5 /* Target_B.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A337E362A04EE1A00D058A5 /* Target_B.m */; };
  242. 9A337E3B2A04EE1A00D058A5 /* BViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A337E392A04EE1A00D058A5 /* BViewController.m */; };
  243. 9A337E4E2A04F46600D058A5 /* AViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A337E4D2A04F46600D058A5 /* AViewController.m */; };
  244. 9A35203A2B479BAA00D097CB /* YJLAttributesLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A3520392B479BAA00D097CB /* YJLAttributesLabel.m */; };
  245. 9A35203E2B47FF2300D097CB /* GoodsReviewsListTableV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A35203D2B47FF2300D097CB /* GoodsReviewsListTableV.m */; };
  246. 9A3520412B48000F00D097CB /* GoodsReviewsListM.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A3520402B48000F00D097CB /* GoodsReviewsListM.m */; };
  247. 9A3ADC0A2B60BAE200B04BA6 /* GoodsSizePayMentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A3ADC092B60BAE200B04BA6 /* GoodsSizePayMentCell.m */; };
  248. 9A3F5CAB2B3BBEAB00DDB6A7 /* GoodsDetailsPayV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A3F5CAA2B3BBEAB00DDB6A7 /* GoodsDetailsPayV.m */; };
  249. 9A3F5CAF2B3BC11000DDB6A7 /* AlertMyCartDeleteV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A3F5CAE2B3BC11000DDB6A7 /* AlertMyCartDeleteV.m */; };
  250. 9A3F5CB22B3BF63A00DDB6A7 /* Goods.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9A3F5CB12B3BF63A00DDB6A7 /* Goods.xcassets */; };
  251. 9A3F5CB52B3BF73100DDB6A7 /* Base.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9A3F5CB42B3BF73100DDB6A7 /* Base.xcassets */; };
  252. 9A3F5CB82B3BF90100DDB6A7 /* GoodsDetailsIntroduceV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A3F5CB72B3BF90100DDB6A7 /* GoodsDetailsIntroduceV.m */; };
  253. 9A3F5CBB2B3C192000DDB6A7 /* GoodsDetailsBottomV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A3F5CBA2B3C192000DDB6A7 /* GoodsDetailsBottomV.m */; };
  254. 9A5C64582A12064300CBB185 /* AS_LoginC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5C64572A12064300CBB185 /* AS_LoginC.m */; };
  255. 9A5C645B2A1206E500CBB185 /* common.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9A5C645A2A1206E500CBB185 /* common.xcassets */; };
  256. 9A5F528A2B5F56FD007D3791 /* AS_GoodsSizeC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5F52892B5F56FD007D3791 /* AS_GoodsSizeC.m */; };
  257. 9A5F528D2B5F59D1007D3791 /* GoodsSizeSelectTableV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5F528B2B5F59D0007D3791 /* GoodsSizeSelectTableV.m */; };
  258. 9A5F52952B5F59EA007D3791 /* GoosSizeSelectCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5F528F2B5F59EA007D3791 /* GoosSizeSelectCell.m */; };
  259. 9A5F52962B5F59EA007D3791 /* GoodsSizeCountCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A5F52932B5F59EA007D3791 /* GoodsSizeCountCell.m */; };
  260. 9A65DE512A132FB700BB1269 /* LoginThirdAuthV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A65DE502A132FB700BB1269 /* LoginThirdAuthV.m */; };
  261. 9A788C442A08A663003E0025 /* Target_Goods.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A788C432A08A663003E0025 /* Target_Goods.m */; };
  262. 9A78E0142B6389FC00CA4E32 /* Cart_MyCartC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A78E0132B6389FC00CA4E32 /* Cart_MyCartC.m */; };
  263. 9A78E0182B6396D600CA4E32 /* CartVM.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A78E0172B6396D600CA4E32 /* CartVM.m */; };
  264. 9A78E01C2B639F4700CA4E32 /* CartTotalsM.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A78E01B2B639F4700CA4E32 /* CartTotalsM.m */; };
  265. 9A7DA6A12A0CE33500136974 /* Asteria.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9A7DA6A02A0CE33500136974 /* Asteria.xcassets */; };
  266. 9A8BED332B6B86A30080DA36 /* MyCartCouponCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A8BED322B6B86A20080DA36 /* MyCartCouponCell.m */; };
  267. 9A98E5072B5A15A500E8C5C1 /* QDSingleImagePickerPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A98E5052B5A15A400E8C5C1 /* QDSingleImagePickerPreviewViewController.m */; };
  268. 9A98E50A2B5A1EB700E8C5C1 /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5092B5A1EB700E8C5C1 /* Photos.framework */; };
  269. 9A98E50C2B5A1EC500E8C5C1 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E50B2B5A1EC500E8C5C1 /* Security.framework */; };
  270. 9A98E50E2B5A1ED300E8C5C1 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E50D2B5A1ED300E8C5C1 /* SystemConfiguration.framework */; };
  271. 9A98E5102B5A1EFE00E8C5C1 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E50F2B5A1EF000E8C5C1 /* libz.tbd */; };
  272. 9A98E5122B5A248D00E8C5C1 /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5112B5A248D00E8C5C1 /* AssetsLibrary.framework */; };
  273. 9A98E5142B5A258A00E8C5C1 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5132B5A258900E8C5C1 /* CoreFoundation.framework */; };
  274. 9A98E5162B5A25A100E8C5C1 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5152B5A25A100E8C5C1 /* CoreGraphics.framework */; };
  275. 9A98E5182B5A25AD00E8C5C1 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5172B5A25AD00E8C5C1 /* CoreImage.framework */; };
  276. 9A98E51A2B5A25D600E8C5C1 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5192B5A25D600E8C5C1 /* ImageIO.framework */; };
  277. 9A98E51D2B5A275400E8C5C1 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E51C2B5A275400E8C5C1 /* UIKit.framework */; };
  278. 9A98E51E2B5A276A00E8C5C1 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E51B2B5A25E900E8C5C1 /* libc++.tbd */; };
  279. 9A98E5202B5A278A00E8C5C1 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E51F2B5A277B00E8C5C1 /* libsqlite3.tbd */; };
  280. 9A98E5222B5A27A900E8C5C1 /* libz.1.2.5.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5212B5A279D00E8C5C1 /* libz.1.2.5.tbd */; };
  281. 9A98E5242B5A27C500E8C5C1 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5232B5A27C500E8C5C1 /* Accelerate.framework */; };
  282. 9A98E5262B5A27EA00E8C5C1 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5252B5A27EA00E8C5C1 /* MobileCoreServices.framework */; };
  283. 9A98E5282B5A280700E8C5C1 /* SafariServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5272B5A280700E8C5C1 /* SafariServices.framework */; };
  284. 9A98E52A2B5A281600E8C5C1 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E5292B5A281600E8C5C1 /* QuartzCore.framework */; };
  285. 9A98E52C2B5A282800E8C5C1 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A98E52B2B5A282800E8C5C1 /* CoreText.framework */; };
  286. 9AACEE922B7F137D00223466 /* MyCartPayTypeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AACEE912B7F137D00223466 /* MyCartPayTypeCell.m */; };
  287. 9AACEE952B7F473200223466 /* Cart_CheckoutC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AACEE942B7F473200223466 /* Cart_CheckoutC.m */; };
  288. 9AC2CC222B3A673B005187BD /* ASGoodsDetailsVM.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC2CC212B3A673B005187BD /* ASGoodsDetailsVM.m */; };
  289. 9ACBEC212A14585300A8F97A /* CTMediator+ASTargerts.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACBEC202A14585300A8F97A /* CTMediator+ASTargerts.m */; };
  290. 9ACBEC252A14707400A8F97A /* AS_SignUpC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACBEC242A14707400A8F97A /* AS_SignUpC.m */; };
  291. 9ACBEC282A1472AF00A8F97A /* LoginSignUpV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACBEC272A1472AF00A8F97A /* LoginSignUpV.m */; };
  292. 9ACBEC2B2A14CCA300A8F97A /* ThirdPartService.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ACBEC292A14CCA200A8F97A /* ThirdPartService.m */; };
  293. 9AD3459E2A08D545005CA070 /* GoodsDetailSrcView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD3459D2A08D545005CA070 /* GoodsDetailSrcView.m */; };
  294. 9AD345A72A08D571005CA070 /* TYPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345A32A08D571005CA070 /* TYPageControl.m */; };
  295. 9AD345A82A08D571005CA070 /* TYCyclePagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345A42A08D571005CA070 /* TYCyclePagerView.m */; };
  296. 9AD345A92A08D571005CA070 /* TYCyclePagerTransformLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345A52A08D571005CA070 /* TYCyclePagerTransformLayout.m */; };
  297. 9AD345AC2A08D59A005CA070 /* WKM_goodsBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345AB2A08D59A005CA070 /* WKM_goodsBanner.m */; };
  298. 9AD345B12A08D5ED005CA070 /* GoodsBannerCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345AE2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.m */; };
  299. 9AD345B22A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345B02A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m */; };
  300. 9AD345F82A08D60F005CA070 /* ZFPlayerGestureControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345B62A08D60F005CA070 /* ZFPlayerGestureControl.m */; };
  301. 9AD345F92A08D60F005CA070 /* ZFPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345B72A08D60F005CA070 /* ZFPlayerController.m */; };
  302. 9AD345FA2A08D60F005CA070 /* ZFLandscapeWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345BA2A08D60F005CA070 /* ZFLandscapeWindow.m */; };
  303. 9AD345FB2A08D60F005CA070 /* ZFOrientationObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345BD2A08D60F005CA070 /* ZFOrientationObserver.m */; };
  304. 9AD345FC2A08D60F005CA070 /* ZFPlayerLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C02A08D60F005CA070 /* ZFPlayerLogManager.m */; };
  305. 9AD345FD2A08D60F005CA070 /* ZFPersentInteractiveTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C22A08D60F005CA070 /* ZFPersentInteractiveTransition.m */; };
  306. 9AD345FE2A08D60F005CA070 /* UIScrollView+ZFPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C42A08D60F005CA070 /* UIScrollView+ZFPlayer.m */; };
  307. 9AD345FF2A08D60F005CA070 /* ZFPlayerNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C72A08D60F005CA070 /* ZFPlayerNotification.m */; };
  308. 9AD346002A08D60F005CA070 /* ZFPresentTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C82A08D60F005CA070 /* ZFPresentTransition.m */; };
  309. 9AD346012A08D60F005CA070 /* ZFFloatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345C92A08D60F005CA070 /* ZFFloatView.m */; };
  310. 9AD346022A08D60F005CA070 /* ZFPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345CC2A08D60F005CA070 /* ZFPlayerView.m */; };
  311. 9AD346032A08D60F005CA070 /* ZFPortraitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345CE2A08D60F005CA070 /* ZFPortraitViewController.m */; };
  312. 9AD346042A08D60F005CA070 /* ZFKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345D12A08D60F005CA070 /* ZFKVOController.m */; };
  313. 9AD346052A08D60F005CA070 /* ZFLandscapeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345D22A08D60F005CA070 /* ZFLandscapeViewController.m */; };
  314. 9AD346062A08D60F005CA070 /* ZFReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345D52A08D60F005CA070 /* ZFReachabilityManager.m */; };
  315. 9AD346072A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345D72A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m */; };
  316. 9AD346082A08D60F005CA070 /* ZFIJKPlayerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345DA2A08D60F005CA070 /* ZFIJKPlayerManager.m */; };
  317. 9AD346092A08D60F005CA070 /* ZFAVPlayerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345DC2A08D60F005CA070 /* ZFAVPlayerManager.m */; };
  318. 9AD3460A2A08D60F005CA070 /* ZFUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345DF2A08D60F005CA070 /* ZFUtilities.m */; };
  319. 9AD3460B2A08D60F005CA070 /* UIView+ZFFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345E02A08D60F005CA070 /* UIView+ZFFrame.m */; };
  320. 9AD3460C2A08D60F005CA070 /* ZFVolumeBrightnessView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345E42A08D60F005CA070 /* ZFVolumeBrightnessView.m */; };
  321. 9AD3460D2A08D60F005CA070 /* ZFLandScapeControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345E72A08D60F005CA070 /* ZFLandScapeControlView.m */; };
  322. 9AD3460E2A08D60F005CA070 /* ZFNetworkSpeedMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345E82A08D60F005CA070 /* ZFNetworkSpeedMonitor.m */; };
  323. 9AD3460F2A08D60F005CA070 /* ZFPlayer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 9AD345EB2A08D60F005CA070 /* ZFPlayer.bundle */; };
  324. 9AD346102A08D60F005CA070 /* ZFSliderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345EE2A08D60F005CA070 /* ZFSliderView.m */; };
  325. 9AD346112A08D60F005CA070 /* ZFPlayerControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345EF2A08D60F005CA070 /* ZFPlayerControlView.m */; };
  326. 9AD346122A08D60F005CA070 /* ZFSmallFloatControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F02A08D60F005CA070 /* ZFSmallFloatControlView.m */; };
  327. 9AD346132A08D60F005CA070 /* ZFLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F12A08D60F005CA070 /* ZFLoadingView.m */; };
  328. 9AD346142A08D60F005CA070 /* ZFSpeedLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F22A08D60F005CA070 /* ZFSpeedLoadingView.m */; };
  329. 9AD346152A08D60F005CA070 /* ZFPortraitControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F42A08D60F005CA070 /* ZFPortraitControlView.m */; };
  330. 9AD346162A08D60F005CA070 /* UIImageView+ZFCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD345F52A08D60F005CA070 /* UIImageView+ZFCache.m */; };
  331. 9AD346192A08D679005CA070 /* GoodsBannerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD346182A08D679005CA070 /* GoodsBannerModel.m */; };
  332. 9AD3461D2A08D6F0005CA070 /* GoodsInformationM.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD3461C2A08D6EF005CA070 /* GoodsInformationM.m */; };
  333. 9AD346202A08E30E005CA070 /* SelectVCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD3461F2A08E30E005CA070 /* SelectVCollectionViewCell.m */; };
  334. 9AD364C62A05E73E00452C7A /* AS_GoodsDetailsC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD364C52A05E73E00452C7A /* AS_GoodsDetailsC.m */; };
  335. 9AD364D12A05EC7800452C7A /* AS_TabBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD364D02A05EC7800452C7A /* AS_TabBarViewController.m */; };
  336. 9AD4D3972B48E8780086D6FB /* ReviewsTableHearV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD4D3962B48E8780086D6FB /* ReviewsTableHearV.m */; };
  337. 9AD4D39E2B48F5680086D6FB /* NSMutableAttributedString+RYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD4D39D2B48F5680086D6FB /* NSMutableAttributedString+RYText.m */; };
  338. 9AD6A53E2A120CC3001DE3D9 /* Login.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9AD6A53D2A120CC3001DE3D9 /* Login.xcassets */; };
  339. 9AD6A5442A1218E8001DE3D9 /* PassWordSecureBtnV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD6A5422A1218E7001DE3D9 /* PassWordSecureBtnV.m */; };
  340. 9AD6A5452A1218E8001DE3D9 /* EamilTFmatchV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD6A5432A1218E7001DE3D9 /* EamilTFmatchV.m */; };
  341. 9AD6A5492A1237D0001DE3D9 /* Target_Login.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD6A5482A1237D0001DE3D9 /* Target_Login.m */; };
  342. 9ADA8A1E2B4E481E00BACDEA /* GoodsReviewsWriteC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ADA8A1D2B4E481E00BACDEA /* GoodsReviewsWriteC.m */; };
  343. 9ADA8A212B4E96C900BACDEA /* GoodWritUpImgV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ADA8A1F2B4E96C800BACDEA /* GoodWritUpImgV.m */; };
  344. 9AE3674D2B6CDDE50068F10B /* MyCartGrandTotalCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AE3674C2B6CDDE50068F10B /* MyCartGrandTotalCell.m */; };
  345. 9AEFA7DE2B649F4000AE1974 /* MyCarlTableV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AEFA7DD2B649F3F00AE1974 /* MyCarlTableV.m */; };
  346. 9AF9085C2B397320008AC2D2 /* UIViewController+RY_configNet.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AF9085B2B397320008AC2D2 /* UIViewController+RY_configNet.m */; };
  347. 9AF9085F2B3976F3008AC2D2 /* RYBaseVM.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AF9085E2B3976F3008AC2D2 /* RYBaseVM.m */; };
  348. 9AFCDAC22B809C5B003D3573 /* CartCheckTableV.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AFCDAC12B809C5B003D3573 /* CartCheckTableV.m */; };
  349. /* End PBXBuildFile section */
  350. /* Begin PBXContainerItemProxy section */
  351. 817244C029F3B81C005FA9C9 /* PBXContainerItemProxy */ = {
  352. isa = PBXContainerItemProxy;
  353. containerPortal = 8172449229F3B2EC005FA9C9 /* Project object */;
  354. proxyType = 1;
  355. remoteGlobalIDString = 817244B929F3B81C005FA9C9;
  356. remoteInfo = NotificationServiceExtension;
  357. };
  358. /* End PBXContainerItemProxy section */
  359. /* Begin PBXCopyFilesBuildPhase section */
  360. 817244C329F3B81C005FA9C9 /* Embed Foundation Extensions */ = {
  361. isa = PBXCopyFilesBuildPhase;
  362. buildActionMask = 2147483647;
  363. dstPath = "";
  364. dstSubfolderSpec = 13;
  365. files = (
  366. 817244C229F3B81C005FA9C9 /* NotificationServiceExtension.appex in Embed Foundation Extensions */,
  367. );
  368. name = "Embed Foundation Extensions";
  369. runOnlyForDeploymentPostprocessing = 0;
  370. };
  371. /* End PBXCopyFilesBuildPhase section */
  372. /* Begin PBXFileReference section */
  373. 2A57FEE3AE67604607B5A6DE /* Pods-Asteria.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Asteria.release.xcconfig"; path = "Target Support Files/Pods-Asteria/Pods-Asteria.release.xcconfig"; sourceTree = "<group>"; };
  374. 3757F38E691966CC4F482D46 /* Pods-Asteria-NotificationServiceExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Asteria-NotificationServiceExtension.release.xcconfig"; path = "Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension.release.xcconfig"; sourceTree = "<group>"; };
  375. 3C97D3C0DD5DB3DCA3FF46B8 /* Pods-Asteria.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Asteria.debug.xcconfig"; path = "Target Support Files/Pods-Asteria/Pods-Asteria.debug.xcconfig"; sourceTree = "<group>"; };
  376. 51AF3B78609F55449DF09609 /* Pods_Asteria_NotificationServiceExtension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Asteria_NotificationServiceExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  377. 54DCE8001991D89B696E7D44 /* Pods_Asteria.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Asteria.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  378. 81056D5A2B60F571009219A3 /* ASHelpListUrlModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHelpListUrlModel.h; sourceTree = "<group>"; };
  379. 81056D5B2B60F571009219A3 /* ASHelpListUrlModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHelpListUrlModel.m; sourceTree = "<group>"; };
  380. 811F42442A40533C00DA68F1 /* ASPointsHomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointsHomeViewController.h; sourceTree = "<group>"; };
  381. 811F42452A40533C00DA68F1 /* ASPointsHomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointsHomeViewController.m; sourceTree = "<group>"; };
  382. 811F42472A40536C00DA68F1 /* ASPointHeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointHeadView.h; sourceTree = "<group>"; };
  383. 811F42482A40536C00DA68F1 /* ASPointHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointHeadView.m; sourceTree = "<group>"; };
  384. 812021132B14659A0026B8B5 /* ASUserInfoManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserInfoManager.h; sourceTree = "<group>"; };
  385. 812021142B14659A0026B8B5 /* ASUserInfoManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserInfoManager.m; sourceTree = "<group>"; };
  386. 812021162B1467410026B8B5 /* ASUserModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserModel.h; sourceTree = "<group>"; };
  387. 812021172B1467410026B8B5 /* ASUserModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserModel.m; sourceTree = "<group>"; };
  388. 812021192B15F03B0026B8B5 /* ASVipModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipModel.h; sourceTree = "<group>"; };
  389. 8120211A2B15F03B0026B8B5 /* ASVipModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipModel.m; sourceTree = "<group>"; };
  390. 8120211C2B15F2B30026B8B5 /* ASVipUrlTempModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipUrlTempModel.h; sourceTree = "<group>"; };
  391. 8120211D2B15F2B30026B8B5 /* ASVipUrlTempModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipUrlTempModel.m; sourceTree = "<group>"; };
  392. 8120211F2B16CD630026B8B5 /* ASSginViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSginViewModel.h; sourceTree = "<group>"; };
  393. 812021202B16CD630026B8B5 /* ASSginViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSginViewModel.m; sourceTree = "<group>"; };
  394. 812021222B16D2D40026B8B5 /* ASUserNotifyStatic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserNotifyStatic.h; sourceTree = "<group>"; };
  395. 812021232B185A610026B8B5 /* ASCouponsListViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCouponsListViewModel.h; sourceTree = "<group>"; };
  396. 812021242B185A610026B8B5 /* ASCouponsListViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCouponsListViewModel.m; sourceTree = "<group>"; };
  397. 812021262B185C000026B8B5 /* ASCouponsModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCouponsModel.h; sourceTree = "<group>"; };
  398. 812021272B185C000026B8B5 /* ASCouponsModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCouponsModel.m; sourceTree = "<group>"; };
  399. 8127ADD92B1193A300464D27 /* ASNetTools.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASNetTools.h; sourceTree = "<group>"; };
  400. 8127ADDA2B1193A300464D27 /* ASNetTools.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASNetTools.m; sourceTree = "<group>"; };
  401. 8127ADDC2B11973400464D27 /* ASNetApis.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASNetApis.h; sourceTree = "<group>"; };
  402. 8131A27A2B365F7600A191BE /* ASProductListCategoryModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListCategoryModel.h; sourceTree = "<group>"; };
  403. 8131A27B2B365F7600A191BE /* ASProductListCategoryModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListCategoryModel.m; sourceTree = "<group>"; };
  404. 8131A27E2B3687EE00A191BE /* ASCustomWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCustomWindow.h; sourceTree = "<group>"; };
  405. 8131A27F2B3687EE00A191BE /* ASCustomWindow.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCustomWindow.m; sourceTree = "<group>"; };
  406. 8131A2822B36882500A191BE /* ASCustomAlertViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCustomAlertViewController.h; sourceTree = "<group>"; };
  407. 8131A2832B36882500A191BE /* ASCustomAlertViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCustomAlertViewController.m; sourceTree = "<group>"; };
  408. 8131A2852B36890200A191BE /* ASWindowManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASWindowManager.h; sourceTree = "<group>"; };
  409. 8131A2862B36890200A191BE /* ASWindowManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASWindowManager.m; sourceTree = "<group>"; };
  410. 8131A2882B3692F300A191BE /* APHomeActiveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APHomeActiveViewController.m; sourceTree = "<group>"; };
  411. 8131A2892B3692F300A191BE /* APHomeActiveWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APHomeActiveWindow.h; sourceTree = "<group>"; };
  412. 8131A28A2B3692F300A191BE /* APHomeActiveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APHomeActiveViewController.h; sourceTree = "<group>"; };
  413. 8131A28B2B3692F300A191BE /* APHomeActiveWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APHomeActiveWindow.m; sourceTree = "<group>"; };
  414. 8131A28E2B38FF3B00A191BE /* APInputAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APInputAlertView.h; sourceTree = "<group>"; };
  415. 8131A28F2B38FF3B00A191BE /* APInputAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APInputAlertView.m; sourceTree = "<group>"; };
  416. 8131A2912B3950DA00A191BE /* ASExtraPointsModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASExtraPointsModel.h; sourceTree = "<group>"; };
  417. 8131A2922B3950DA00A191BE /* ASExtraPointsModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASExtraPointsModel.m; sourceTree = "<group>"; };
  418. 8134C1AB2A13094F006EB0EC /* Target_userCenter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_userCenter.h; sourceTree = "<group>"; };
  419. 8134C1AC2A13094F006EB0EC /* Target_userCenter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_userCenter.m; sourceTree = "<group>"; };
  420. 8134C1B22A1358F3006EB0EC /* ASSginView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSginView.h; sourceTree = "<group>"; };
  421. 8134C1B32A1358F3006EB0EC /* ASSginView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSginView.m; sourceTree = "<group>"; };
  422. 8134C1B52A1359E6006EB0EC /* ASSignDayView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSignDayView.h; sourceTree = "<group>"; };
  423. 8134C1B62A1359E6006EB0EC /* ASSignDayView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSignDayView.m; sourceTree = "<group>"; };
  424. 8134C1B82A1372A7006EB0EC /* ASUserCenterEnterItemV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserCenterEnterItemV.h; sourceTree = "<group>"; };
  425. 8134C1B92A1372A7006EB0EC /* ASUserCenterEnterItemV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserCenterEnterItemV.m; sourceTree = "<group>"; };
  426. 8134C1BB2A1372D5006EB0EC /* ASUserCenterTableHeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserCenterTableHeadView.h; sourceTree = "<group>"; };
  427. 8134C1BC2A1372D5006EB0EC /* ASUserCenterTableHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserCenterTableHeadView.m; sourceTree = "<group>"; };
  428. 8134C1C32A145172006EB0EC /* ASProductItemView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductItemView.h; sourceTree = "<group>"; };
  429. 8134C1C42A145172006EB0EC /* ASProductItemView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductItemView.m; sourceTree = "<group>"; };
  430. 81354BE52A28786C0082C93A /* ASProductBaseModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductBaseModel.h; sourceTree = "<group>"; };
  431. 81354BE62A28786C0082C93A /* ASProductBaseModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductBaseModel.m; sourceTree = "<group>"; };
  432. 81354BE92A287AB40082C93A /* KWMineHomeOrderHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineHomeOrderHeadView.h; sourceTree = "<group>"; };
  433. 81354BEA2A287AB50082C93A /* KWMineHomeOrderHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineHomeOrderHeadView.m; sourceTree = "<group>"; };
  434. 81354BEB2A287AB50082C93A /* KWMineHomeOrderListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineHomeOrderListCell.h; sourceTree = "<group>"; };
  435. 81354BEC2A287AB50082C93A /* KWMineHomeOrderListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineHomeOrderListCell.m; sourceTree = "<group>"; };
  436. 81354BF02A287B120082C93A /* KWMineHomeOrderModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineHomeOrderModel.m; sourceTree = "<group>"; };
  437. 81354BF12A287B120082C93A /* KWMineHomeOrderModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineHomeOrderModel.h; sourceTree = "<group>"; };
  438. 81354BF32A287BEC0082C93A /* KWMineHomeOrderSubView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineHomeOrderSubView.h; sourceTree = "<group>"; };
  439. 81354BF42A287BEC0082C93A /* KWMineHomeOrderSubView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineHomeOrderSubView.m; sourceTree = "<group>"; };
  440. 81354BF62A288AC20082C93A /* ASUI.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ASUI.xcassets; sourceTree = "<group>"; };
  441. 81354BF82A28998A0082C93A /* KWMineMoreProductTypeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineMoreProductTypeCell.h; sourceTree = "<group>"; };
  442. 81354BF92A28998A0082C93A /* KWMineMoreProductTypeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineMoreProductTypeCell.m; sourceTree = "<group>"; };
  443. 81354BFA2A28998A0082C93A /* KWMineMoreProductsCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineMoreProductsCell.h; sourceTree = "<group>"; };
  444. 81354BFB2A28998A0082C93A /* KWMineMoreProductsCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineMoreProductsCell.m; sourceTree = "<group>"; };
  445. 81354BFE2A2899CA0082C93A /* KWMineMoreProductModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMineMoreProductModel.h; sourceTree = "<group>"; };
  446. 81354BFF2A2899CB0082C93A /* KWMineMoreProductModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMineMoreProductModel.m; sourceTree = "<group>"; };
  447. 81354C012A289A060082C93A /* HomeFilterModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeFilterModel.h; sourceTree = "<group>"; };
  448. 81354C022A289A070082C93A /* HomeFilterModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeFilterModel.m; sourceTree = "<group>"; };
  449. 81354C062A289C340082C93A /* KWScrollOffsetView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWScrollOffsetView.h; sourceTree = "<group>"; };
  450. 81354C072A289C340082C93A /* KWTimeEndView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWTimeEndView.h; sourceTree = "<group>"; };
  451. 81354C082A289C350082C93A /* KWScrollOffsetView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWScrollOffsetView.m; sourceTree = "<group>"; };
  452. 81354C092A289C350082C93A /* KWTimeEndView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWTimeEndView.m; sourceTree = "<group>"; };
  453. 81354C0C2A297D690082C93A /* HomeFlashDealSubCollectCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeFlashDealSubCollectCell.m; sourceTree = "<group>"; };
  454. 81354C0D2A297D6A0082C93A /* HomeFlashDealSubCollectCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeFlashDealSubCollectCell.h; sourceTree = "<group>"; };
  455. 814F5CED2A11B1F2003847A9 /* ASUserCenterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserCenterViewController.h; sourceTree = "<group>"; };
  456. 814F5CEE2A11B1F2003847A9 /* ASUserCenterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserCenterViewController.m; sourceTree = "<group>"; };
  457. 814F5CF32A11B37E003847A9 /* ASUserAvaterView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserAvaterView.h; sourceTree = "<group>"; };
  458. 814F5CF42A11B37E003847A9 /* ASUserAvaterView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserAvaterView.m; sourceTree = "<group>"; };
  459. 814F5CF82A11B76F003847A9 /* Roboto-Medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Medium.ttf"; sourceTree = "<group>"; };
  460. 814F5CF92A11B76F003847A9 /* Roboto-Light.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Light.ttf"; sourceTree = "<group>"; };
  461. 814F5CFA2A11B76F003847A9 /* Roboto-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Regular.ttf"; sourceTree = "<group>"; };
  462. 814F5CFB2A11B76F003847A9 /* Roboto-MediumItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-MediumItalic.ttf"; sourceTree = "<group>"; };
  463. 814F5CFC2A11B76F003847A9 /* Roboto-ThinItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-ThinItalic.ttf"; sourceTree = "<group>"; };
  464. 814F5CFD2A11B76F003847A9 /* Roboto-BoldItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-BoldItalic.ttf"; sourceTree = "<group>"; };
  465. 814F5CFE2A11B76F003847A9 /* Roboto-LightItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-LightItalic.ttf"; sourceTree = "<group>"; };
  466. 814F5CFF2A11B76F003847A9 /* Roboto-Italic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Italic.ttf"; sourceTree = "<group>"; };
  467. 814F5D002A11B76F003847A9 /* LICENSE.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE.txt; sourceTree = "<group>"; };
  468. 814F5D012A11B76F003847A9 /* Roboto-BlackItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-BlackItalic.ttf"; sourceTree = "<group>"; };
  469. 814F5D022A11B76F003847A9 /* Roboto-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Bold.ttf"; sourceTree = "<group>"; };
  470. 814F5D032A11B76F003847A9 /* Roboto-Thin.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Thin.ttf"; sourceTree = "<group>"; };
  471. 814F5D042A11B76F003847A9 /* Roboto-Black.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Roboto-Black.ttf"; sourceTree = "<group>"; };
  472. 815970B82B54DC830073041D /* ASUserCenterViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserCenterViewModel.h; sourceTree = "<group>"; };
  473. 815970B92B54DC830073041D /* ASUserCenterViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserCenterViewModel.m; sourceTree = "<group>"; };
  474. 815DA3D72A39575100616EF7 /* ASProductListImageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListImageCell.h; sourceTree = "<group>"; };
  475. 815DA3D82A39575100616EF7 /* ASProductListImageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListImageCell.m; sourceTree = "<group>"; };
  476. 815DA3DA2A39625200616EF7 /* ASProductListTypeDesCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListTypeDesCell.h; sourceTree = "<group>"; };
  477. 815DA3DB2A39625200616EF7 /* ASProductListTypeDesCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListTypeDesCell.m; sourceTree = "<group>"; };
  478. 815DA3DD2A396BD300616EF7 /* ASMoreBtCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMoreBtCell.h; sourceTree = "<group>"; };
  479. 815DA3DE2A396BD300616EF7 /* ASMoreBtCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASMoreBtCell.m; sourceTree = "<group>"; };
  480. 81601FE42A2DB19300E4A8F1 /* ASHomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeViewController.h; sourceTree = "<group>"; };
  481. 81601FE52A2DB19300E4A8F1 /* ASHomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeViewController.m; sourceTree = "<group>"; };
  482. 81601FE92A2DC78300E4A8F1 /* WMZBannerFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerFlowLayout.m; sourceTree = "<group>"; };
  483. 81601FEA2A2DC78300E4A8F1 /* WMZBannerControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerControl.h; sourceTree = "<group>"; };
  484. 81601FEB2A2DC78300E4A8F1 /* WMZBannerFadeLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerFadeLayout.h; sourceTree = "<group>"; };
  485. 81601FEC2A2DC78300E4A8F1 /* WMZBannerParam.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerParam.m; sourceTree = "<group>"; };
  486. 81601FED2A2DC78300E4A8F1 /* WMZBannerOverLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerOverLayout.h; sourceTree = "<group>"; };
  487. 81601FEE2A2DC78300E4A8F1 /* WMZBannerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerView.m; sourceTree = "<group>"; };
  488. 81601FEF2A2DC78300E4A8F1 /* WMZBannerControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerControl.m; sourceTree = "<group>"; };
  489. 81601FF02A2DC78300E4A8F1 /* WMZBannerFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerFlowLayout.h; sourceTree = "<group>"; };
  490. 81601FF12A2DC78300E4A8F1 /* WMZBannerFadeLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerFadeLayout.m; sourceTree = "<group>"; };
  491. 81601FF22A2DC78300E4A8F1 /* WMZBannerConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerConfig.h; sourceTree = "<group>"; };
  492. 81601FF32A2DC78300E4A8F1 /* WMZBannerParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerParam.h; sourceTree = "<group>"; };
  493. 81601FF42A2DC78300E4A8F1 /* WMZBannerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMZBannerView.h; sourceTree = "<group>"; };
  494. 81601FF52A2DC78300E4A8F1 /* WMZBannerOverLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMZBannerOverLayout.m; sourceTree = "<group>"; };
  495. 81601FFD2A2DC8E700E4A8F1 /* ASHomeBannerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeBannerCell.h; sourceTree = "<group>"; };
  496. 81601FFE2A2DC8E700E4A8F1 /* ASHomeBannerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeBannerCell.m; sourceTree = "<group>"; };
  497. 816020012A2DCB5600E4A8F1 /* ASHomeBannerModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeBannerModel.h; sourceTree = "<group>"; };
  498. 816020022A2DCB5600E4A8F1 /* ASHomeBannerModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeBannerModel.m; sourceTree = "<group>"; };
  499. 816020052A2DD4FB00E4A8F1 /* Target_Home.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_Home.h; sourceTree = "<group>"; };
  500. 816020062A2DD4FB00E4A8F1 /* Target_Home.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_Home.m; sourceTree = "<group>"; };
  501. 816020082A2DD59E00E4A8F1 /* CTMediator+Home.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+Home.h"; sourceTree = "<group>"; };
  502. 816020092A2DD59E00E4A8F1 /* CTMediator+Home.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+Home.m"; sourceTree = "<group>"; };
  503. 8160200B2A2DD5C000E4A8F1 /* CTMediator+UserCenter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+UserCenter.h"; sourceTree = "<group>"; };
  504. 8160200C2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+UserCenter.m"; sourceTree = "<group>"; };
  505. 8160200E2A2EE55F00E4A8F1 /* ASCategaryListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCategaryListCell.h; sourceTree = "<group>"; };
  506. 8160200F2A2EE55F00E4A8F1 /* ASCategaryListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCategaryListCell.m; sourceTree = "<group>"; };
  507. 816020112A2EE5A200E4A8F1 /* ASCategaryCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCategaryCollectCell.h; sourceTree = "<group>"; };
  508. 816020122A2EE5A200E4A8F1 /* ASCategaryCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCategaryCollectCell.m; sourceTree = "<group>"; };
  509. 816020142A2F065700E4A8F1 /* Home.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Home.xcassets; sourceTree = "<group>"; };
  510. 816020162A2F070B00E4A8F1 /* ASHomeCategoryModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeCategoryModel.h; sourceTree = "<group>"; };
  511. 816020172A2F070B00E4A8F1 /* ASHomeCategoryModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeCategoryModel.m; sourceTree = "<group>"; };
  512. 8160201A2A2F101C00E4A8F1 /* ASHomeTipCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeTipCell.h; sourceTree = "<group>"; };
  513. 8160201B2A2F101C00E4A8F1 /* ASHomeTipCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeTipCell.m; sourceTree = "<group>"; };
  514. 8160201D2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeTipCollectCell.h; sourceTree = "<group>"; };
  515. 8160201E2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeTipCollectCell.m; sourceTree = "<group>"; };
  516. 816020202A2F1C6A00E4A8F1 /* ASHomeBestSellCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeBestSellCell.h; sourceTree = "<group>"; };
  517. 816020212A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeBestSellCell.m; sourceTree = "<group>"; };
  518. 816020232A2F1C9E00E4A8F1 /* ASHomeMainListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeMainListModel.h; sourceTree = "<group>"; };
  519. 816020242A2F1C9E00E4A8F1 /* ASHomeMainListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeMainListModel.m; sourceTree = "<group>"; };
  520. 816D0C982AF3901C00395B5B /* ASGiftCardListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGiftCardListViewController.h; sourceTree = "<group>"; };
  521. 816D0C992AF3901C00395B5B /* ASGiftCardListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGiftCardListViewController.m; sourceTree = "<group>"; };
  522. 816D0C9B2AF3988300395B5B /* ASGiftCardAvailabelCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGiftCardAvailabelCell.h; sourceTree = "<group>"; };
  523. 816D0C9C2AF3988300395B5B /* ASGiftCardAvailabelCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGiftCardAvailabelCell.m; sourceTree = "<group>"; };
  524. 81717C8F2A3BE39C00648139 /* ASProductSortFilterView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductSortFilterView.h; sourceTree = "<group>"; };
  525. 81717C902A3BE39C00648139 /* ASProductSortFilterView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductSortFilterView.m; sourceTree = "<group>"; };
  526. 81717C922A3BE4E000648139 /* ASProductListSortFilterCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListSortFilterCell.h; sourceTree = "<group>"; };
  527. 81717C932A3BE4E000648139 /* ASProductListSortFilterCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListSortFilterCell.m; sourceTree = "<group>"; };
  528. 81717C972A3BF1DD00648139 /* ASHomeAlertWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeAlertWindow.h; sourceTree = "<group>"; };
  529. 81717C982A3BF1DD00648139 /* ASHomeAlertWindow.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeAlertWindow.m; sourceTree = "<group>"; };
  530. 81717C9A2A3BF1F100648139 /* ASHomeAlertViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeAlertViewController.h; sourceTree = "<group>"; };
  531. 81717C9B2A3BF1F100648139 /* ASHomeAlertViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeAlertViewController.m; sourceTree = "<group>"; };
  532. 81717C9D2A3C0A3400648139 /* KWProductMenuFilterItemHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWProductMenuFilterItemHeaderView.m; sourceTree = "<group>"; };
  533. 81717C9E2A3C0A3500648139 /* KWProductMenuFilterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWProductMenuFilterView.h; sourceTree = "<group>"; };
  534. 81717C9F2A3C0A3500648139 /* KWProductMenuFilterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWProductMenuFilterView.m; sourceTree = "<group>"; };
  535. 81717CA02A3C0A3500648139 /* KWProductMenuFilterItemHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWProductMenuFilterItemHeaderView.h; sourceTree = "<group>"; };
  536. 81717CA32A3C0A5000648139 /* KWProductFilterItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWProductFilterItemCell.h; sourceTree = "<group>"; };
  537. 81717CA42A3C0A5000648139 /* KWProductFilterItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWProductFilterItemCell.m; sourceTree = "<group>"; };
  538. 81717CA62A3C0AA900648139 /* KWProductListFilterModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWProductListFilterModel.m; sourceTree = "<group>"; };
  539. 81717CA72A3C0AAA00648139 /* KWProductListFilterModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWProductListFilterModel.h; sourceTree = "<group>"; };
  540. 81717CA92A3C359E00648139 /* ASProductlistFilterPriceCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductlistFilterPriceCollectCell.h; sourceTree = "<group>"; };
  541. 81717CAA2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductlistFilterPriceCollectCell.m; sourceTree = "<group>"; };
  542. 81717CE62A3C4ADE00648139 /* KWHisAndHotWordsViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWHisAndHotWordsViewModel.m; sourceTree = "<group>"; };
  543. 81717CE72A3C4ADE00648139 /* KWSearchViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchViewModel.m; sourceTree = "<group>"; };
  544. 81717CE82A3C4ADE00648139 /* KWSearchViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchViewModel.h; sourceTree = "<group>"; };
  545. 81717CE92A3C4ADE00648139 /* KWHisAndHotWordsViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWHisAndHotWordsViewModel.h; sourceTree = "<group>"; };
  546. 81717D012A3C4ADF00648139 /* KWSearchSubTypeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchSubTypeModel.h; sourceTree = "<group>"; };
  547. 81717D022A3C4ADF00648139 /* KWSearchSubTypeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchSubTypeModel.m; sourceTree = "<group>"; };
  548. 81717D042A3C4AE000648139 /* KWSearchSubTypeHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchSubTypeHeadView.m; sourceTree = "<group>"; };
  549. 81717D052A3C4AE000648139 /* KWSearchSubTypeTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchSubTypeTableView.h; sourceTree = "<group>"; };
  550. 81717D062A3C4AE000648139 /* KWSearchMainTypeTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchMainTypeTableView.m; sourceTree = "<group>"; };
  551. 81717D072A3C4AE000648139 /* KWMoneyTypeHeadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMoneyTypeHeadView.m; sourceTree = "<group>"; };
  552. 81717D082A3C4AE000648139 /* KWSearchSubTypeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchSubTypeCell.h; sourceTree = "<group>"; };
  553. 81717D092A3C4AE000648139 /* KWSearchMainTypeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchMainTypeCell.h; sourceTree = "<group>"; };
  554. 81717D0A2A3C4AE000648139 /* KWSearchSubTypeHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchSubTypeHeadView.h; sourceTree = "<group>"; };
  555. 81717D0B2A3C4AE000648139 /* KWSearchSubTypeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchSubTypeCell.m; sourceTree = "<group>"; };
  556. 81717D0C2A3C4AE000648139 /* KWMoneyTypeHeadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMoneyTypeHeadView.h; sourceTree = "<group>"; };
  557. 81717D0D2A3C4AE000648139 /* KWSearchMainTypeTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSearchMainTypeTableView.h; sourceTree = "<group>"; };
  558. 81717D0E2A3C4AE000648139 /* KWSearchSubTypeTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchSubTypeTableView.m; sourceTree = "<group>"; };
  559. 81717D0F2A3C4AE000648139 /* KWSearchMainTypeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSearchMainTypeCell.m; sourceTree = "<group>"; };
  560. 81717D232A3C512700648139 /* Target_Category.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_Category.h; sourceTree = "<group>"; };
  561. 81717D242A3C512700648139 /* Target_Category.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_Category.m; sourceTree = "<group>"; };
  562. 81717D262A3C55CC00648139 /* CTMediator+Categorys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+Categorys.h"; sourceTree = "<group>"; };
  563. 81717D272A3C55CC00648139 /* CTMediator+Categorys.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+Categorys.m"; sourceTree = "<group>"; };
  564. 81717D292A3D322600648139 /* KWHisKeyWordCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWHisKeyWordCell.m; sourceTree = "<group>"; };
  565. 81717D2A2A3D322600648139 /* KWLenovoWordListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWLenovoWordListView.h; sourceTree = "<group>"; };
  566. 81717D2B2A3D322600648139 /* KWLenovoWordListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWLenovoWordListView.m; sourceTree = "<group>"; };
  567. 81717D2C2A3D322600648139 /* KWNoHisWordsCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWNoHisWordsCell.h; sourceTree = "<group>"; };
  568. 81717D2D2A3D322600648139 /* KWHisCollectHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWHisCollectHeaderView.m; sourceTree = "<group>"; };
  569. 81717D2E2A3D322600648139 /* KWHisCollectHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWHisCollectHeaderView.h; sourceTree = "<group>"; };
  570. 81717D2F2A3D322700648139 /* KWHisKeyWordCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWHisKeyWordCell.h; sourceTree = "<group>"; };
  571. 81717D302A3D322700648139 /* KWCustomLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWCustomLayout.h; sourceTree = "<group>"; };
  572. 81717D312A3D322700648139 /* KWNoHisWordsCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWNoHisWordsCell.m; sourceTree = "<group>"; };
  573. 81717D322A3D322700648139 /* KWCustomLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWCustomLayout.m; sourceTree = "<group>"; };
  574. 81717D332A3D322700648139 /* KWHisAndHotWordsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWHisAndHotWordsView.h; sourceTree = "<group>"; };
  575. 81717D342A3D322700648139 /* KWHisAndHotWordsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWHisAndHotWordsView.m; sourceTree = "<group>"; };
  576. 81717D3B2A3D430C00648139 /* Category.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Category.xcassets; sourceTree = "<group>"; };
  577. 81717D3D2A3D5EAD00648139 /* ASDefualtAlertV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASDefualtAlertV.h; sourceTree = "<group>"; };
  578. 81717D3E2A3D5EAD00648139 /* ASDefualtAlertV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASDefualtAlertV.m; sourceTree = "<group>"; };
  579. 8172449A29F3B2ED005FA9C9 /* Asteria.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Asteria.app; sourceTree = BUILT_PRODUCTS_DIR; };
  580. 8172449D29F3B2ED005FA9C9 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  581. 8172449E29F3B2ED005FA9C9 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  582. 817244A929F3B2EE005FA9C9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  583. 817244AC29F3B2EE005FA9C9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  584. 817244AE29F3B2EE005FA9C9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  585. 817244AF29F3B2EE005FA9C9 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  586. 817244BA29F3B81C005FA9C9 /* NotificationServiceExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = NotificationServiceExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
  587. 817244BC29F3B81C005FA9C9 /* NotificationService.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotificationService.h; sourceTree = "<group>"; };
  588. 817244BD29F3B81C005FA9C9 /* NotificationService.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotificationService.m; sourceTree = "<group>"; };
  589. 817244BF29F3B81C005FA9C9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  590. 818656482A5BE9790049D861 /* ASSearchViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSearchViewController.h; sourceTree = "<group>"; };
  591. 818656492A5BE9790049D861 /* ASSearchViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSearchViewController.m; sourceTree = "<group>"; };
  592. 8186564B2A5BF6010049D861 /* ASCategoryViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCategoryViewController.h; sourceTree = "<group>"; };
  593. 8186564C2A5BF6010049D861 /* ASCategoryViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCategoryViewController.m; sourceTree = "<group>"; };
  594. 81932E2929F7539B007C37AF /* UIColor+AS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIColor+AS.h"; sourceTree = "<group>"; };
  595. 81932E2A29F7539B007C37AF /* UIColor+AS.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIColor+AS.m"; sourceTree = "<group>"; };
  596. 8193492E2BF58FFF009FDDB2 /* ASHomeViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeViewModel.h; sourceTree = "<group>"; };
  597. 8193492F2BF59000009FDDB2 /* ASHomeViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeViewModel.m; sourceTree = "<group>"; };
  598. 819349332BF5A679009FDDB2 /* ASJumpModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASJumpModel.h; sourceTree = "<group>"; };
  599. 819349342BF5A679009FDDB2 /* ASJumpModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASJumpModel.m; sourceTree = "<group>"; };
  600. 8193D5C62BEA299F00B9AB11 /* ASAddressListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASAddressListViewController.h; sourceTree = "<group>"; };
  601. 8193D5C72BEA299F00B9AB11 /* ASAddressListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASAddressListViewController.m; sourceTree = "<group>"; };
  602. 8193D5C92BEA2A0800B9AB11 /* ASMineAddressModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMineAddressModel.h; sourceTree = "<group>"; };
  603. 8193D5CA2BEA2A0800B9AB11 /* ASMineAddressModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASMineAddressModel.m; sourceTree = "<group>"; };
  604. 8193D5CC2BEA2B8E00B9AB11 /* ASAddressViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASAddressViewModel.h; sourceTree = "<group>"; };
  605. 8193D5CD2BEA2B8E00B9AB11 /* ASAddressViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASAddressViewModel.m; sourceTree = "<group>"; };
  606. 8193D5CF2BEA2F3100B9AB11 /* ASMineAddressCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMineAddressCell.h; sourceTree = "<group>"; };
  607. 8193D5D02BEA2F3100B9AB11 /* ASMineAddressCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASMineAddressCell.m; sourceTree = "<group>"; };
  608. 8199001E2A0206F7006FE68C /* SizeDefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SizeDefine.h; sourceTree = "<group>"; };
  609. 819900202A020A6F006FE68C /* LYTools.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LYTools.h; sourceTree = "<group>"; };
  610. 819900212A020A6F006FE68C /* LYTools.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LYTools.m; sourceTree = "<group>"; };
  611. 81AA11CE2B23EA15008EB5C7 /* ASVipCouponsViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCouponsViewModel.h; sourceTree = "<group>"; };
  612. 81AA11CF2B23EA15008EB5C7 /* ASVipCouponsViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCouponsViewModel.m; sourceTree = "<group>"; };
  613. 81AA11D12B23EC20008EB5C7 /* ASVipCouponModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCouponModel.h; sourceTree = "<group>"; };
  614. 81AA11D22B23EC20008EB5C7 /* ASVipCouponModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCouponModel.m; sourceTree = "<group>"; };
  615. 81AA11D72B23FF1F008EB5C7 /* ASCategoriesViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCategoriesViewModel.h; sourceTree = "<group>"; };
  616. 81AA11D82B23FF1F008EB5C7 /* ASCategoriesViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCategoriesViewModel.m; sourceTree = "<group>"; };
  617. 81AA11DA2B23FF71008EB5C7 /* ASCurrencyManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCurrencyManager.h; sourceTree = "<group>"; };
  618. 81AA11DB2B23FF71008EB5C7 /* ASCurrencyManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCurrencyManager.m; sourceTree = "<group>"; };
  619. 81BEA6812A2D7CF3009D36C4 /* UITableView+ASBase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UITableView+ASBase.h"; sourceTree = "<group>"; };
  620. 81BEA6822A2D7CF3009D36C4 /* UITableView+ASBase.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UITableView+ASBase.m"; sourceTree = "<group>"; };
  621. 81C3265D2A36B284002EF442 /* ASProductListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListViewController.h; sourceTree = "<group>"; };
  622. 81C3265E2A36B284002EF442 /* ASProductListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListViewController.m; sourceTree = "<group>"; };
  623. 81C326602A36B33B002EF442 /* ASHomeActiveView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeActiveView.h; sourceTree = "<group>"; };
  624. 81C326612A36B33B002EF442 /* ASHomeActiveView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeActiveView.m; sourceTree = "<group>"; };
  625. 81C326642A36B794002EF442 /* VerScrollTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VerScrollTextView.m; sourceTree = "<group>"; };
  626. 81C326652A36B794002EF442 /* VerScrollTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VerScrollTextView.h; sourceTree = "<group>"; };
  627. 81C326682A36F035002EF442 /* ASProductListViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListViewModel.h; sourceTree = "<group>"; };
  628. 81C326692A36F035002EF442 /* ASProductListViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListViewModel.m; sourceTree = "<group>"; };
  629. 81C3266C2A36FF2B002EF442 /* ASProductListActiveHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListActiveHeaderView.h; sourceTree = "<group>"; };
  630. 81C3266D2A36FF2B002EF442 /* ASProductListActiveHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListActiveHeaderView.m; sourceTree = "<group>"; };
  631. 81C3266F2A37020A002EF442 /* ASProductListMenuHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASProductListMenuHeaderView.h; sourceTree = "<group>"; };
  632. 81C326702A37020A002EF442 /* ASProductListMenuHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASProductListMenuHeaderView.m; sourceTree = "<group>"; };
  633. 81C3B44229F6612800D79294 /* ASBaseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASBaseViewController.h; sourceTree = "<group>"; };
  634. 81C3B44329F6612800D79294 /* ASBaseViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASBaseViewController.m; sourceTree = "<group>"; };
  635. 81C3B44829F6661500D79294 /* ASBaseNavController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASBaseNavController.h; sourceTree = "<group>"; };
  636. 81C3B44929F6661500D79294 /* ASBaseNavController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASBaseNavController.m; sourceTree = "<group>"; };
  637. 81C3B44F29F6699900D79294 /* PreFixHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PreFixHeader.h; sourceTree = "<group>"; };
  638. 81C3B45029F669C900D79294 /* ColorDefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ColorDefine.h; sourceTree = "<group>"; };
  639. 81C3B45329F66C1700D79294 /* UIView+PublicInit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+PublicInit.h"; sourceTree = "<group>"; };
  640. 81C3B45429F66C1700D79294 /* UIView+PublicInit.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIView+PublicInit.m"; sourceTree = "<group>"; };
  641. 81C796222A4FD63A003083B8 /* ASVipCouponsViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCouponsViewController.h; sourceTree = "<group>"; };
  642. 81C796232A4FD63A003083B8 /* ASVipCouponsViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCouponsViewController.m; sourceTree = "<group>"; };
  643. 81C796252A4FD898003083B8 /* ASBirthdayTreatViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASBirthdayTreatViewController.h; sourceTree = "<group>"; };
  644. 81C796262A4FD898003083B8 /* ASBirthdayTreatViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASBirthdayTreatViewController.m; sourceTree = "<group>"; };
  645. 81C796292A539E80003083B8 /* ASMessageListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMessageListViewController.h; sourceTree = "<group>"; };
  646. 81C7962A2A539E80003083B8 /* ASMessageListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASMessageListViewController.m; sourceTree = "<group>"; };
  647. 81C7962C2A539F4D003083B8 /* ASMessageListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMessageListCell.h; sourceTree = "<group>"; };
  648. 81C7962D2A539F4D003083B8 /* ASMessageListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASMessageListCell.m; sourceTree = "<group>"; };
  649. 81C796322A551643003083B8 /* ASSettingViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSettingViewController.h; sourceTree = "<group>"; };
  650. 81C796332A551643003083B8 /* ASSettingViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSettingViewController.m; sourceTree = "<group>"; };
  651. 81C796352A5517B0003083B8 /* ASSettingListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASSettingListCell.h; sourceTree = "<group>"; };
  652. 81C796362A5517B0003083B8 /* ASSettingListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASSettingListCell.m; sourceTree = "<group>"; };
  653. 81C796382A5517F7003083B8 /* KWSwitchButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWSwitchButton.h; sourceTree = "<group>"; };
  654. 81C796392A5517F7003083B8 /* KWSwitchButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWSwitchButton.m; sourceTree = "<group>"; };
  655. 81C7963D2A551FB0003083B8 /* ASInfomationSetController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASInfomationSetController.h; sourceTree = "<group>"; };
  656. 81C7963E2A551FB0003083B8 /* ASInfomationSetController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASInfomationSetController.m; sourceTree = "<group>"; };
  657. 81C796402A551FE9003083B8 /* KWTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWTextField.m; sourceTree = "<group>"; };
  658. 81C796412A551FE9003083B8 /* KWTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWTextField.h; sourceTree = "<group>"; };
  659. 81C796442A5542B2003083B8 /* ASHelpListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHelpListViewController.h; sourceTree = "<group>"; };
  660. 81C796452A5542B2003083B8 /* ASHelpListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHelpListViewController.m; sourceTree = "<group>"; };
  661. 81CE28922AF490C20012AA45 /* ASGiftCardTableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGiftCardTableView.h; sourceTree = "<group>"; };
  662. 81CE28932AF490C20012AA45 /* ASGiftCardTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGiftCardTableView.m; sourceTree = "<group>"; };
  663. 81CE28952AF4953C0012AA45 /* ASGiftCardModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGiftCardModel.h; sourceTree = "<group>"; };
  664. 81CE28962AF4953C0012AA45 /* ASGiftCardModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGiftCardModel.m; sourceTree = "<group>"; };
  665. 81DFA5572A4681E900DA708B /* ASPointEranCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointEranCell.h; sourceTree = "<group>"; };
  666. 81DFA5582A4681E900DA708B /* ASPointEranCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointEranCell.m; sourceTree = "<group>"; };
  667. 81DFA55B2A46C46D00DA708B /* ASWebViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASWebViewController.h; sourceTree = "<group>"; };
  668. 81DFA55C2A46C46D00DA708B /* ASWebViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASWebViewController.m; sourceTree = "<group>"; };
  669. 81DFA55E2A46CC8E00DA708B /* CTMediator+ASWebView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+ASWebView.h"; sourceTree = "<group>"; };
  670. 81DFA55F2A46CC8E00DA708B /* CTMediator+ASWebView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+ASWebView.m"; sourceTree = "<group>"; };
  671. 81DFA5612A46CD6000DA708B /* Target_WebView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_WebView.h; sourceTree = "<group>"; };
  672. 81DFA5622A46CD6000DA708B /* Target_WebView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_WebView.m; sourceTree = "<group>"; };
  673. 81DFA5652A46D60900DA708B /* ASPointDetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointDetailViewController.h; sourceTree = "<group>"; };
  674. 81DFA5662A46D60900DA708B /* ASPointDetailViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointDetailViewController.m; sourceTree = "<group>"; };
  675. 81DFA5682A46D82200DA708B /* ASPointDetailTableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointDetailTableView.h; sourceTree = "<group>"; };
  676. 81DFA5692A46D82200DA708B /* ASPointDetailTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointDetailTableView.m; sourceTree = "<group>"; };
  677. 81DFA56B2A46D86500DA708B /* ASPointDetailModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointDetailModel.h; sourceTree = "<group>"; };
  678. 81DFA56C2A46D86500DA708B /* ASPointDetailModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointDetailModel.m; sourceTree = "<group>"; };
  679. 81DFA56F2A46D95400DA708B /* ASPointDetailCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointDetailCell.h; sourceTree = "<group>"; };
  680. 81DFA5702A46D95400DA708B /* ASPointDetailCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointDetailCell.m; sourceTree = "<group>"; };
  681. 81DFA5732A47D97C00DA708B /* ASCouponsListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCouponsListViewController.h; sourceTree = "<group>"; };
  682. 81DFA5742A47D97C00DA708B /* ASCouponsListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCouponsListViewController.m; sourceTree = "<group>"; };
  683. 81DFA5762A47F28D00DA708B /* ASCouponListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCouponListCell.h; sourceTree = "<group>"; };
  684. 81DFA5772A47F28D00DA708B /* ASCouponListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCouponListCell.m; sourceTree = "<group>"; };
  685. 81E1950D2C01664C005471A1 /* LoginForgotC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginForgotC.h; sourceTree = "<group>"; };
  686. 81E1950E2C01664C005471A1 /* APPassForgetCodeV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APPassForgetCodeV.h; sourceTree = "<group>"; };
  687. 81E1950F2C01664C005471A1 /* APPassForgetNewPassV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APPassForgetNewPassV.h; sourceTree = "<group>"; };
  688. 81E195102C01664D005471A1 /* APPassForgetEmailV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APPassForgetEmailV.m; sourceTree = "<group>"; };
  689. 81E195112C01664D005471A1 /* LoginForgotC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginForgotC.m; sourceTree = "<group>"; };
  690. 81E195122C01664D005471A1 /* APPassForgetCodeV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APPassForgetCodeV.m; sourceTree = "<group>"; };
  691. 81E195132C01664D005471A1 /* APPassForgetEmailV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APPassForgetEmailV.h; sourceTree = "<group>"; };
  692. 81E195142C01664E005471A1 /* APPassForgetNewPassV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APPassForgetNewPassV.m; sourceTree = "<group>"; };
  693. 81E257EC2A120756004EEF71 /* ASUserCenterTopView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserCenterTopView.h; sourceTree = "<group>"; };
  694. 81E257ED2A120756004EEF71 /* ASUserCenterTopView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserCenterTopView.m; sourceTree = "<group>"; };
  695. 81E257F12A120975004EEF71 /* ASUserBaseInfoView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASUserBaseInfoView.h; sourceTree = "<group>"; };
  696. 81E257F22A120975004EEF71 /* ASUserBaseInfoView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASUserBaseInfoView.m; sourceTree = "<group>"; };
  697. 81E257F52A12259B004EEF71 /* UserCenter.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = UserCenter.xcassets; sourceTree = "<group>"; };
  698. 81E257F82A122AC6004EEF71 /* ASUI.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ASUI.xcassets; sourceTree = "<group>"; };
  699. 81E257FB2A12340E004EEF71 /* ASEnterItemV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASEnterItemV.h; sourceTree = "<group>"; };
  700. 81E257FC2A12340E004EEF71 /* ASEnterItemV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASEnterItemV.m; sourceTree = "<group>"; };
  701. 81E5EE8E2A498FC90075695F /* ASVipCenterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCenterViewController.h; sourceTree = "<group>"; };
  702. 81E5EE8F2A498FC90075695F /* ASVipCenterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCenterViewController.m; sourceTree = "<group>"; };
  703. 81E5EE922A4A760D0075695F /* ASVipCenterLineItemView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCenterLineItemView.h; sourceTree = "<group>"; };
  704. 81E5EE932A4A760D0075695F /* ASVipCenterLineItemView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCenterLineItemView.m; sourceTree = "<group>"; };
  705. 81E5EE952A4A822D0075695F /* ASVipCenterCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASVipCenterCollectCell.h; sourceTree = "<group>"; };
  706. 81E5EE962A4A822D0075695F /* ASVipCenterCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASVipCenterCollectCell.m; sourceTree = "<group>"; };
  707. 81E73EBB2B1AABF300C10938 /* ASGiftCardListViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGiftCardListViewModel.h; sourceTree = "<group>"; };
  708. 81E73EBC2B1AABF300C10938 /* ASGiftCardListViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGiftCardListViewModel.m; sourceTree = "<group>"; };
  709. 81E73EBE2B1AC49D00C10938 /* ASPointsViewModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPointsViewModel.h; sourceTree = "<group>"; };
  710. 81E73EBF2B1AC49D00C10938 /* ASPointsViewModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPointsViewModel.m; sourceTree = "<group>"; };
  711. 81EC47642A33035D00516573 /* ASHomeNewInCellTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeNewInCellTableViewCell.h; sourceTree = "<group>"; };
  712. 81EC47652A33035D00516573 /* ASHomeNewInCellTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeNewInCellTableViewCell.m; sourceTree = "<group>"; };
  713. 81EC47672A33073100516573 /* ASHomeNewInProductItemView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeNewInProductItemView.h; sourceTree = "<group>"; };
  714. 81EC47682A33073100516573 /* ASHomeNewInProductItemView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeNewInProductItemView.m; sourceTree = "<group>"; };
  715. 81EC476A2A33131100516573 /* ASHomeNewInSubCollectCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeNewInSubCollectCell.h; sourceTree = "<group>"; };
  716. 81EC476B2A33131100516573 /* ASHomeNewInSubCollectCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeNewInSubCollectCell.m; sourceTree = "<group>"; };
  717. 81EC476D2A33F82C00516573 /* ASHomeImgCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeImgCell.h; sourceTree = "<group>"; };
  718. 81EC476E2A33F82C00516573 /* ASHomeImgCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeImgCell.m; sourceTree = "<group>"; };
  719. 81EC47702A3402CA00516573 /* ASHomeFlashDealCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeFlashDealCell.h; sourceTree = "<group>"; };
  720. 81EC47712A3402CA00516573 /* ASHomeFlashDealCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeFlashDealCell.m; sourceTree = "<group>"; };
  721. 81EC47732A3423FC00516573 /* ASHomeLookingCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeLookingCell.h; sourceTree = "<group>"; };
  722. 81EC47742A3423FC00516573 /* ASHomeLookingCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeLookingCell.m; sourceTree = "<group>"; };
  723. 81EC47762A3426CD00516573 /* ASHomeLookingCollCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASHomeLookingCollCell.h; sourceTree = "<group>"; };
  724. 81EC47772A3426CE00516573 /* ASHomeLookingCollCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASHomeLookingCollCell.m; sourceTree = "<group>"; };
  725. 81FC419A2BEB1E0200EB0A85 /* ASEditAddressViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASEditAddressViewController.h; sourceTree = "<group>"; };
  726. 81FC419B2BEB1E0200EB0A85 /* ASEditAddressViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASEditAddressViewController.m; sourceTree = "<group>"; };
  727. 81FC41A12BEB4D6D00EB0A85 /* InTableScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InTableScrollView.h; sourceTree = "<group>"; };
  728. 81FC41A22BEB4D6D00EB0A85 /* InTableScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InTableScrollView.m; sourceTree = "<group>"; };
  729. 8810F5072BEB159600346FD4 /* ASCheckoutTopView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutTopView.h; sourceTree = "<group>"; };
  730. 8810F5082BEB159600346FD4 /* ASCheckoutTopView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutTopView.m; sourceTree = "<group>"; };
  731. 8810F50A2BEB590C00346FD4 /* ASCheckoutPointApplyCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutPointApplyCell.h; sourceTree = "<group>"; };
  732. 8810F50B2BEB590C00346FD4 /* ASCheckoutPointApplyCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutPointApplyCell.m; sourceTree = "<group>"; };
  733. 8810F5102BEB685500346FD4 /* ASCheckoutPaymentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutPaymentCell.h; sourceTree = "<group>"; };
  734. 8810F5112BEB685500346FD4 /* ASCheckoutPaymentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutPaymentCell.m; sourceTree = "<group>"; };
  735. 8810F5132BEB754800346FD4 /* ASCheckoutModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutModel.h; sourceTree = "<group>"; };
  736. 8810F5142BEB754800346FD4 /* ASCheckoutModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutModel.m; sourceTree = "<group>"; };
  737. 8810F5162BEC548D00346FD4 /* ASCheckoutAddressCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutAddressCell.h; sourceTree = "<group>"; };
  738. 8810F5172BEC548D00346FD4 /* ASCheckoutAddressCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutAddressCell.m; sourceTree = "<group>"; };
  739. 8810F5192BEC54B400346FD4 /* ASCheckoutShipMethodCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutShipMethodCell.h; sourceTree = "<group>"; };
  740. 8810F51A2BEC54B400346FD4 /* ASCheckoutShipMethodCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutShipMethodCell.m; sourceTree = "<group>"; };
  741. 8810F51C2BEC565F00346FD4 /* UILabel+Create.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Create.m"; sourceTree = "<group>"; };
  742. 8810F51D2BEC565F00346FD4 /* UILabel+Create.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Create.h"; sourceTree = "<group>"; };
  743. 8810F51F2BEDABFA00346FD4 /* ASCheckoutCommentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutCommentCell.h; sourceTree = "<group>"; };
  744. 8810F5202BEDABFA00346FD4 /* ASCheckoutCommentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutCommentCell.m; sourceTree = "<group>"; };
  745. 8810F5222BEDF31500346FD4 /* Cart.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Cart.xcassets; sourceTree = "<group>"; };
  746. 8810F5242BEDF9F900346FD4 /* ASCheckoutBottomView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutBottomView.h; sourceTree = "<group>"; };
  747. 8810F5252BEDF9F900346FD4 /* ASCheckoutBottomView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutBottomView.m; sourceTree = "<group>"; };
  748. 8810F5272BEE0DEA00346FD4 /* ASCheckoutGoodsItemCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutGoodsItemCell.h; sourceTree = "<group>"; };
  749. 8810F5282BEE0DEA00346FD4 /* ASCheckoutGoodsItemCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutGoodsItemCell.m; sourceTree = "<group>"; };
  750. 8810F52A2BF1A1CD00346FD4 /* ASAddGiftGoodsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASAddGiftGoodsView.h; sourceTree = "<group>"; };
  751. 8810F52B2BF1A1CD00346FD4 /* ASAddGiftGoodsView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASAddGiftGoodsView.m; sourceTree = "<group>"; };
  752. 8810F52E2BF3678400346FD4 /* ASCheckoutPayManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCheckoutPayManager.h; sourceTree = "<group>"; };
  753. 8810F52F2BF3678400346FD4 /* ASCheckoutPayManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCheckoutPayManager.m; sourceTree = "<group>"; };
  754. 8810F53D2BF5949000346FD4 /* ASCommonUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASCommonUtils.h; sourceTree = "<group>"; };
  755. 8810F53E2BF5949000346FD4 /* ASCommonUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASCommonUtils.m; sourceTree = "<group>"; };
  756. 8810F5462BF5EBF400346FD4 /* ASOrderDetailsInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderDetailsInfoCell.h; sourceTree = "<group>"; };
  757. 8810F5472BF5EBF400346FD4 /* ASOrderDetailsInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderDetailsInfoCell.m; sourceTree = "<group>"; };
  758. 8810F5482BF5EBF400346FD4 /* ASOrderDetailsItemsCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderDetailsItemsCell.h; sourceTree = "<group>"; };
  759. 8810F5492BF5EBF400346FD4 /* ASOrderDetailsItemsCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderDetailsItemsCell.m; sourceTree = "<group>"; };
  760. 8810F54A2BF5EBF400346FD4 /* ASOrderDetailsPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderDetailsPriceCell.h; sourceTree = "<group>"; };
  761. 8810F54B2BF5EBF400346FD4 /* ASOrderDetailsPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderDetailsPriceCell.m; sourceTree = "<group>"; };
  762. 8810F54C2BF5EBF400346FD4 /* ASOrderListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderListCell.h; sourceTree = "<group>"; };
  763. 8810F54D2BF5EBF400346FD4 /* ASOrderListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderListCell.m; sourceTree = "<group>"; };
  764. 8810F54F2BF5EBF400346FD4 /* ASOrderDetailsVM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderDetailsVM.h; sourceTree = "<group>"; };
  765. 8810F5502BF5EBF400346FD4 /* ASOrderDetailsVM.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderDetailsVM.m; sourceTree = "<group>"; };
  766. 8810F5512BF5EBF400346FD4 /* ASOrderListViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderListViewModel.h; sourceTree = "<group>"; };
  767. 8810F5522BF5EBF400346FD4 /* ASOrderListViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderListViewModel.m; sourceTree = "<group>"; };
  768. 8810F5542BF5EBF400346FD4 /* ASOrderDetailsModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderDetailsModel.h; sourceTree = "<group>"; };
  769. 8810F5552BF5EBF400346FD4 /* ASOrderDetailsModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderDetailsModel.m; sourceTree = "<group>"; };
  770. 8810F5572BF5EBF400346FD4 /* ASOrderDetailsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderDetailsViewController.h; sourceTree = "<group>"; };
  771. 8810F5582BF5EBF400346FD4 /* ASOrderDetailsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderDetailsViewController.m; sourceTree = "<group>"; };
  772. 8810F5592BF5EBF400346FD4 /* ASOrderListSubController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderListSubController.h; sourceTree = "<group>"; };
  773. 8810F55A2BF5EBF400346FD4 /* ASOrderListSubController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderListSubController.m; sourceTree = "<group>"; };
  774. 8810F55B2BF5EBF400346FD4 /* ASOrderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASOrderListViewController.h; sourceTree = "<group>"; };
  775. 8810F55C2BF5EBF400346FD4 /* ASOrderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASOrderListViewController.m; sourceTree = "<group>"; };
  776. 8810F5682BF5F86D00346FD4 /* ASPayFailedViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPayFailedViewController.h; sourceTree = "<group>"; };
  777. 8810F5692BF5F86D00346FD4 /* ASPayFailedViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPayFailedViewController.m; sourceTree = "<group>"; };
  778. 8810F56B2BF5F8D800346FD4 /* ASPayFinishHeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASPayFinishHeadView.h; sourceTree = "<group>"; };
  779. 8810F56C2BF5F8D800346FD4 /* ASPayFinishHeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASPayFinishHeadView.m; sourceTree = "<group>"; };
  780. 8810F57C2BF74A2B00346FD4 /* ASGoodsDetailsViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsDetailsViewController.h; sourceTree = "<group>"; };
  781. 8810F57D2BF74A2B00346FD4 /* ASGoodsDetailsViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsDetailsViewController.m; sourceTree = "<group>"; };
  782. 8810F57F2BF74A5800346FD4 /* ASGoodsDetailsTableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsDetailsTableView.h; sourceTree = "<group>"; };
  783. 8810F5802BF74A5800346FD4 /* ASGoodsDetailsTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsDetailsTableView.m; sourceTree = "<group>"; };
  784. 8810F5822BF74E6400346FD4 /* ASGoodsBannerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsBannerCell.h; sourceTree = "<group>"; };
  785. 8810F5832BF74E6400346FD4 /* ASGoodsBannerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsBannerCell.m; sourceTree = "<group>"; };
  786. 8810F5882BF839C600346FD4 /* ASGoodsDetailsSizeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsDetailsSizeCell.h; sourceTree = "<group>"; };
  787. 8810F5892BF839C600346FD4 /* ASGoodsDetailsSizeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsDetailsSizeCell.m; sourceTree = "<group>"; };
  788. 8810F58E2BF83D0400346FD4 /* ASGoodsDetailsSizeSelView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASGoodsDetailsSizeSelView.m; sourceTree = "<group>"; };
  789. 8810F58F2BF83D0400346FD4 /* ASGoodsDetailsSizeSelView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASGoodsDetailsSizeSelView.h; sourceTree = "<group>"; };
  790. 8810F5912BFB250D00346FD4 /* ASGoodsTitlePriceCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsTitlePriceCell.h; sourceTree = "<group>"; };
  791. 8810F5922BFB250D00346FD4 /* ASGoodsTitlePriceCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsTitlePriceCell.m; sourceTree = "<group>"; };
  792. 8810F5942BFB291300346FD4 /* ASGoodsCouponCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsCouponCell.h; sourceTree = "<group>"; };
  793. 8810F5952BFB291300346FD4 /* ASGoodsCouponCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsCouponCell.m; sourceTree = "<group>"; };
  794. 8810F5972BFB2B2400346FD4 /* ASGoodsGuaranteeInfoCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsGuaranteeInfoCell.h; sourceTree = "<group>"; };
  795. 8810F5982BFB2B2400346FD4 /* ASGoodsGuaranteeInfoCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsGuaranteeInfoCell.m; sourceTree = "<group>"; };
  796. 8810F59A2BFB3A4500346FD4 /* ASGoodsIntrouduceWebView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsIntrouduceWebView.h; sourceTree = "<group>"; };
  797. 8810F59B2BFB3A4500346FD4 /* ASGoodsIntrouduceWebView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsIntrouduceWebView.m; sourceTree = "<group>"; };
  798. 8810F59D2BFC7D7600346FD4 /* ASGoodsReviewHeadCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsReviewHeadCell.h; sourceTree = "<group>"; };
  799. 8810F59E2BFC7D7600346FD4 /* ASGoodsReviewHeadCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsReviewHeadCell.m; sourceTree = "<group>"; };
  800. 8810F5A02BFF448C00346FD4 /* ASMyCartNoDataView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASMyCartNoDataView.h; sourceTree = "<group>"; };
  801. 8810F5A12BFF448C00346FD4 /* ASMyCartNoDataView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASMyCartNoDataView.m; sourceTree = "<group>"; };
  802. 8810F5A62C01849C00346FD4 /* ASGoodsReviewFootCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsReviewFootCell.h; sourceTree = "<group>"; };
  803. 8810F5A72C01849C00346FD4 /* ASGoodsReviewFootCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsReviewFootCell.m; sourceTree = "<group>"; };
  804. 9A1247922A1B082300126226 /* Fuction_Tool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Fuction_Tool.h; sourceTree = "<group>"; };
  805. 9A1247932A1B082300126226 /* Fuction_Tool.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Fuction_Tool.m; sourceTree = "<group>"; };
  806. 9A1247952A1B0A2800126226 /* AS_ForgotC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_ForgotC.h; sourceTree = "<group>"; };
  807. 9A1247962A1B0A2800126226 /* AS_ForgotC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_ForgotC.m; sourceTree = "<group>"; };
  808. 9A2027F32A137B6A00FF4DAF /* Asteria.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Asteria.entitlements; sourceTree = "<group>"; };
  809. 9A2027F42A137B8600FF4DAF /* AuthenticationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AuthenticationServices.framework; path = System/Library/Frameworks/AuthenticationServices.framework; sourceTree = SDKROOT; };
  810. 9A2415B72B677DDF00A6E903 /* Target_Cart.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_Cart.h; sourceTree = "<group>"; };
  811. 9A2415B82B677DDF00A6E903 /* Target_Cart.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_Cart.m; sourceTree = "<group>"; };
  812. 9A2415BA2B6784A500A6E903 /* MyCartItemCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyCartItemCell.h; sourceTree = "<group>"; };
  813. 9A2415BB2B6784A500A6E903 /* MyCartItemCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyCartItemCell.m; sourceTree = "<group>"; };
  814. 9A2415BD2B678A1000A6E903 /* QtyCountV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QtyCountV.m; sourceTree = "<group>"; };
  815. 9A2415BE2B678A1100A6E903 /* QtyCountV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QtyCountV.h; sourceTree = "<group>"; };
  816. 9A31EDFB2B468A54009F11EE /* RadioButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RadioButton.h; sourceTree = "<group>"; };
  817. 9A31EDFC2B468A54009F11EE /* RadioButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RadioButton.m; sourceTree = "<group>"; };
  818. 9A31EDFE2B469A73009F11EE /* AS_GoodsReviewsListC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_GoodsReviewsListC.h; sourceTree = "<group>"; };
  819. 9A31EDFF2B469A73009F11EE /* AS_GoodsReviewsListC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_GoodsReviewsListC.m; sourceTree = "<group>"; };
  820. 9A32A21F2B4BEA5B005A5831 /* GoodsReviewsCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsReviewsCell.h; sourceTree = "<group>"; };
  821. 9A32A2202B4BEA5C005A5831 /* GoodsReviewsCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsReviewsCell.m; sourceTree = "<group>"; };
  822. 9A32A2222B4BEAA7005A5831 /* GoodsReviewsImgV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsReviewsImgV.m; sourceTree = "<group>"; };
  823. 9A32A2232B4BEAA7005A5831 /* GoodsReviewsImgV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsReviewsImgV.h; sourceTree = "<group>"; };
  824. 9A337E362A04EE1A00D058A5 /* Target_B.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Target_B.m; sourceTree = "<group>"; };
  825. 9A337E372A04EE1A00D058A5 /* Target_B.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Target_B.h; sourceTree = "<group>"; };
  826. 9A337E382A04EE1A00D058A5 /* BViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BViewController.h; sourceTree = "<group>"; };
  827. 9A337E392A04EE1A00D058A5 /* BViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BViewController.m; sourceTree = "<group>"; };
  828. 9A337E4C2A04F46600D058A5 /* AViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AViewController.h; sourceTree = "<group>"; };
  829. 9A337E4D2A04F46600D058A5 /* AViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AViewController.m; sourceTree = "<group>"; };
  830. 9A3520382B479BAA00D097CB /* YJLAttributesLabel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YJLAttributesLabel.h; sourceTree = "<group>"; };
  831. 9A3520392B479BAA00D097CB /* YJLAttributesLabel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YJLAttributesLabel.m; sourceTree = "<group>"; };
  832. 9A35203C2B47FF2300D097CB /* GoodsReviewsListTableV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsReviewsListTableV.h; sourceTree = "<group>"; };
  833. 9A35203D2B47FF2300D097CB /* GoodsReviewsListTableV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsReviewsListTableV.m; sourceTree = "<group>"; };
  834. 9A35203F2B48000F00D097CB /* GoodsReviewsListM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsReviewsListM.h; sourceTree = "<group>"; };
  835. 9A3520402B48000F00D097CB /* GoodsReviewsListM.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsReviewsListM.m; sourceTree = "<group>"; };
  836. 9A3ADC082B60BAE200B04BA6 /* GoodsSizePayMentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsSizePayMentCell.h; sourceTree = "<group>"; };
  837. 9A3ADC092B60BAE200B04BA6 /* GoodsSizePayMentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsSizePayMentCell.m; sourceTree = "<group>"; };
  838. 9A3F5CA92B3BBEAB00DDB6A7 /* GoodsDetailsPayV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsDetailsPayV.h; sourceTree = "<group>"; };
  839. 9A3F5CAA2B3BBEAB00DDB6A7 /* GoodsDetailsPayV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsDetailsPayV.m; sourceTree = "<group>"; };
  840. 9A3F5CAD2B3BC11000DDB6A7 /* AlertMyCartDeleteV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlertMyCartDeleteV.h; sourceTree = "<group>"; };
  841. 9A3F5CAE2B3BC11000DDB6A7 /* AlertMyCartDeleteV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlertMyCartDeleteV.m; sourceTree = "<group>"; };
  842. 9A3F5CB12B3BF63A00DDB6A7 /* Goods.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Goods.xcassets; sourceTree = "<group>"; };
  843. 9A3F5CB42B3BF73100DDB6A7 /* Base.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Base.xcassets; sourceTree = "<group>"; };
  844. 9A3F5CB62B3BF90100DDB6A7 /* GoodsDetailsIntroduceV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsDetailsIntroduceV.h; sourceTree = "<group>"; };
  845. 9A3F5CB72B3BF90100DDB6A7 /* GoodsDetailsIntroduceV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsDetailsIntroduceV.m; sourceTree = "<group>"; };
  846. 9A3F5CB92B3C192000DDB6A7 /* GoodsDetailsBottomV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsDetailsBottomV.h; sourceTree = "<group>"; };
  847. 9A3F5CBA2B3C192000DDB6A7 /* GoodsDetailsBottomV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsDetailsBottomV.m; sourceTree = "<group>"; };
  848. 9A5C64562A12064300CBB185 /* AS_LoginC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_LoginC.h; sourceTree = "<group>"; };
  849. 9A5C64572A12064300CBB185 /* AS_LoginC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_LoginC.m; sourceTree = "<group>"; };
  850. 9A5C645A2A1206E500CBB185 /* common.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = common.xcassets; sourceTree = "<group>"; };
  851. 9A5F52882B5F56FD007D3791 /* AS_GoodsSizeC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_GoodsSizeC.h; sourceTree = "<group>"; };
  852. 9A5F52892B5F56FD007D3791 /* AS_GoodsSizeC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_GoodsSizeC.m; sourceTree = "<group>"; };
  853. 9A5F528B2B5F59D0007D3791 /* GoodsSizeSelectTableV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsSizeSelectTableV.m; sourceTree = "<group>"; };
  854. 9A5F528C2B5F59D1007D3791 /* GoodsSizeSelectTableV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsSizeSelectTableV.h; sourceTree = "<group>"; };
  855. 9A5F528F2B5F59EA007D3791 /* GoosSizeSelectCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoosSizeSelectCell.m; sourceTree = "<group>"; };
  856. 9A5F52912B5F59EA007D3791 /* GoodsSizeCountCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsSizeCountCell.h; sourceTree = "<group>"; };
  857. 9A5F52922B5F59EA007D3791 /* GoosSizeSelectCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoosSizeSelectCell.h; sourceTree = "<group>"; };
  858. 9A5F52932B5F59EA007D3791 /* GoodsSizeCountCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsSizeCountCell.m; sourceTree = "<group>"; };
  859. 9A65DE4F2A132FB700BB1269 /* LoginThirdAuthV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginThirdAuthV.h; sourceTree = "<group>"; };
  860. 9A65DE502A132FB700BB1269 /* LoginThirdAuthV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginThirdAuthV.m; sourceTree = "<group>"; };
  861. 9A788C422A08A663003E0025 /* Target_Goods.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_Goods.h; sourceTree = "<group>"; };
  862. 9A788C432A08A663003E0025 /* Target_Goods.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_Goods.m; sourceTree = "<group>"; };
  863. 9A78E0122B6389FC00CA4E32 /* Cart_MyCartC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cart_MyCartC.h; sourceTree = "<group>"; };
  864. 9A78E0132B6389FC00CA4E32 /* Cart_MyCartC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Cart_MyCartC.m; sourceTree = "<group>"; };
  865. 9A78E0162B6396D600CA4E32 /* CartVM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CartVM.h; sourceTree = "<group>"; };
  866. 9A78E0172B6396D600CA4E32 /* CartVM.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CartVM.m; sourceTree = "<group>"; };
  867. 9A78E01A2B639F4700CA4E32 /* CartTotalsM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CartTotalsM.h; sourceTree = "<group>"; };
  868. 9A78E01B2B639F4700CA4E32 /* CartTotalsM.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CartTotalsM.m; sourceTree = "<group>"; };
  869. 9A7DA6A02A0CE33500136974 /* Asteria.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Asteria.xcassets; sourceTree = "<group>"; };
  870. 9A8BED312B6B86A20080DA36 /* MyCartCouponCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyCartCouponCell.h; sourceTree = "<group>"; };
  871. 9A8BED322B6B86A20080DA36 /* MyCartCouponCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyCartCouponCell.m; sourceTree = "<group>"; };
  872. 9A98E5052B5A15A400E8C5C1 /* QDSingleImagePickerPreviewViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QDSingleImagePickerPreviewViewController.m; sourceTree = "<group>"; };
  873. 9A98E5062B5A15A400E8C5C1 /* QDSingleImagePickerPreviewViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QDSingleImagePickerPreviewViewController.h; sourceTree = "<group>"; };
  874. 9A98E5092B5A1EB700E8C5C1 /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = System/Library/Frameworks/Photos.framework; sourceTree = SDKROOT; };
  875. 9A98E50B2B5A1EC500E8C5C1 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  876. 9A98E50D2B5A1ED300E8C5C1 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  877. 9A98E50F2B5A1EF000E8C5C1 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  878. 9A98E5112B5A248D00E8C5C1 /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
  879. 9A98E5132B5A258900E8C5C1 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
  880. 9A98E5152B5A25A100E8C5C1 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  881. 9A98E5172B5A25AD00E8C5C1 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; };
  882. 9A98E5192B5A25D600E8C5C1 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
  883. 9A98E51B2B5A25E900E8C5C1 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  884. 9A98E51C2B5A275400E8C5C1 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  885. 9A98E51F2B5A277B00E8C5C1 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  886. 9A98E5212B5A279D00E8C5C1 /* libz.1.2.5.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.1.2.5.tbd; path = usr/lib/libz.1.2.5.tbd; sourceTree = SDKROOT; };
  887. 9A98E5232B5A27C500E8C5C1 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  888. 9A98E5252B5A27EA00E8C5C1 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
  889. 9A98E5272B5A280700E8C5C1 /* SafariServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SafariServices.framework; path = System/Library/Frameworks/SafariServices.framework; sourceTree = SDKROOT; };
  890. 9A98E5292B5A281600E8C5C1 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  891. 9A98E52B2B5A282800E8C5C1 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  892. 9AACEE902B7F137D00223466 /* MyCartPayTypeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyCartPayTypeCell.h; sourceTree = "<group>"; };
  893. 9AACEE912B7F137D00223466 /* MyCartPayTypeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyCartPayTypeCell.m; sourceTree = "<group>"; };
  894. 9AACEE932B7F473200223466 /* Cart_CheckoutC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Cart_CheckoutC.h; sourceTree = "<group>"; };
  895. 9AACEE942B7F473200223466 /* Cart_CheckoutC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Cart_CheckoutC.m; sourceTree = "<group>"; };
  896. 9AC2CC202B3A673B005187BD /* ASGoodsDetailsVM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ASGoodsDetailsVM.h; sourceTree = "<group>"; };
  897. 9AC2CC212B3A673B005187BD /* ASGoodsDetailsVM.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ASGoodsDetailsVM.m; sourceTree = "<group>"; };
  898. 9ACBEC1F2A14585300A8F97A /* CTMediator+ASTargerts.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CTMediator+ASTargerts.h"; sourceTree = "<group>"; };
  899. 9ACBEC202A14585300A8F97A /* CTMediator+ASTargerts.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "CTMediator+ASTargerts.m"; sourceTree = "<group>"; };
  900. 9ACBEC232A14707400A8F97A /* AS_SignUpC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_SignUpC.h; sourceTree = "<group>"; };
  901. 9ACBEC242A14707400A8F97A /* AS_SignUpC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_SignUpC.m; sourceTree = "<group>"; };
  902. 9ACBEC262A1472AF00A8F97A /* LoginSignUpV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginSignUpV.h; sourceTree = "<group>"; };
  903. 9ACBEC272A1472AF00A8F97A /* LoginSignUpV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginSignUpV.m; sourceTree = "<group>"; };
  904. 9ACBEC292A14CCA200A8F97A /* ThirdPartService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThirdPartService.m; sourceTree = "<group>"; };
  905. 9ACBEC2A2A14CCA200A8F97A /* ThirdPartService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThirdPartService.h; sourceTree = "<group>"; };
  906. 9AD3459C2A08D545005CA070 /* GoodsDetailSrcView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsDetailSrcView.h; sourceTree = "<group>"; };
  907. 9AD3459D2A08D545005CA070 /* GoodsDetailSrcView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsDetailSrcView.m; sourceTree = "<group>"; };
  908. 9AD345A12A08D571005CA070 /* TYCyclePagerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerView.h; sourceTree = "<group>"; };
  909. 9AD345A22A08D571005CA070 /* TYCyclePagerTransformLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerTransformLayout.h; sourceTree = "<group>"; };
  910. 9AD345A32A08D571005CA070 /* TYPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYPageControl.m; sourceTree = "<group>"; };
  911. 9AD345A42A08D571005CA070 /* TYCyclePagerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerView.m; sourceTree = "<group>"; };
  912. 9AD345A52A08D571005CA070 /* TYCyclePagerTransformLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerTransformLayout.m; sourceTree = "<group>"; };
  913. 9AD345A62A08D571005CA070 /* TYPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYPageControl.h; sourceTree = "<group>"; };
  914. 9AD345AA2A08D59A005CA070 /* WKM_goodsBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKM_goodsBanner.h; sourceTree = "<group>"; };
  915. 9AD345AB2A08D59A005CA070 /* WKM_goodsBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WKM_goodsBanner.m; sourceTree = "<group>"; };
  916. 9AD345AD2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsBannerCollectionViewCell.h; sourceTree = "<group>"; };
  917. 9AD345AE2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsBannerCollectionViewCell.m; sourceTree = "<group>"; };
  918. 9AD345AF2A08D5EC005CA070 /* GoodsVideoCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsVideoCollectionViewCell.h; sourceTree = "<group>"; };
  919. 9AD345B02A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsVideoCollectionViewCell.m; sourceTree = "<group>"; };
  920. 9AD345B52A08D60F005CA070 /* ZFPlayerNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerNotification.h; sourceTree = "<group>"; };
  921. 9AD345B62A08D60F005CA070 /* ZFPlayerGestureControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerGestureControl.m; sourceTree = "<group>"; };
  922. 9AD345B72A08D60F005CA070 /* ZFPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerController.m; sourceTree = "<group>"; };
  923. 9AD345B82A08D60F005CA070 /* ZFFloatView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFFloatView.h; sourceTree = "<group>"; };
  924. 9AD345B92A08D60F005CA070 /* ZFPresentTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPresentTransition.h; sourceTree = "<group>"; };
  925. 9AD345BA2A08D60F005CA070 /* ZFLandscapeWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFLandscapeWindow.m; sourceTree = "<group>"; };
  926. 9AD345BB2A08D60F005CA070 /* ZFKVOController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFKVOController.h; sourceTree = "<group>"; };
  927. 9AD345BC2A08D60F005CA070 /* ZFLandscapeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFLandscapeViewController.h; sourceTree = "<group>"; };
  928. 9AD345BD2A08D60F005CA070 /* ZFOrientationObserver.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFOrientationObserver.m; sourceTree = "<group>"; };
  929. 9AD345BE2A08D60F005CA070 /* ZFPortraitViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPortraitViewController.h; sourceTree = "<group>"; };
  930. 9AD345BF2A08D60F005CA070 /* ZFPlayerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerView.h; sourceTree = "<group>"; };
  931. 9AD345C02A08D60F005CA070 /* ZFPlayerLogManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerLogManager.m; sourceTree = "<group>"; };
  932. 9AD345C12A08D60F005CA070 /* ZFPlayerMediaPlayback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerMediaPlayback.h; sourceTree = "<group>"; };
  933. 9AD345C22A08D60F005CA070 /* ZFPersentInteractiveTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPersentInteractiveTransition.m; sourceTree = "<group>"; };
  934. 9AD345C32A08D60F005CA070 /* ZFReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFReachabilityManager.h; sourceTree = "<group>"; };
  935. 9AD345C42A08D60F005CA070 /* UIScrollView+ZFPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+ZFPlayer.m"; sourceTree = "<group>"; };
  936. 9AD345C52A08D60F005CA070 /* ZFPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayer.h; sourceTree = "<group>"; };
  937. 9AD345C62A08D60F005CA070 /* ZFPlayerGestureControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerGestureControl.h; sourceTree = "<group>"; };
  938. 9AD345C72A08D60F005CA070 /* ZFPlayerNotification.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerNotification.m; sourceTree = "<group>"; };
  939. 9AD345C82A08D60F005CA070 /* ZFPresentTransition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPresentTransition.m; sourceTree = "<group>"; };
  940. 9AD345C92A08D60F005CA070 /* ZFFloatView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFFloatView.m; sourceTree = "<group>"; };
  941. 9AD345CA2A08D60F005CA070 /* ZFPlayerMediaControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerMediaControl.h; sourceTree = "<group>"; };
  942. 9AD345CB2A08D60F005CA070 /* ZFPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerController.h; sourceTree = "<group>"; };
  943. 9AD345CC2A08D60F005CA070 /* ZFPlayerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerView.m; sourceTree = "<group>"; };
  944. 9AD345CD2A08D60F005CA070 /* ZFPlayerLogManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerLogManager.h; sourceTree = "<group>"; };
  945. 9AD345CE2A08D60F005CA070 /* ZFPortraitViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPortraitViewController.m; sourceTree = "<group>"; };
  946. 9AD345CF2A08D60F005CA070 /* ZFOrientationObserver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFOrientationObserver.h; sourceTree = "<group>"; };
  947. 9AD345D02A08D60F005CA070 /* ZFPlayerConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerConst.h; sourceTree = "<group>"; };
  948. 9AD345D12A08D60F005CA070 /* ZFKVOController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFKVOController.m; sourceTree = "<group>"; };
  949. 9AD345D22A08D60F005CA070 /* ZFLandscapeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFLandscapeViewController.m; sourceTree = "<group>"; };
  950. 9AD345D32A08D60F005CA070 /* ZFLandscapeWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFLandscapeWindow.h; sourceTree = "<group>"; };
  951. 9AD345D42A08D60F005CA070 /* UIScrollView+ZFPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+ZFPlayer.h"; sourceTree = "<group>"; };
  952. 9AD345D52A08D60F005CA070 /* ZFReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFReachabilityManager.m; sourceTree = "<group>"; };
  953. 9AD345D62A08D60F005CA070 /* ZFPersentInteractiveTransition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPersentInteractiveTransition.h; sourceTree = "<group>"; };
  954. 9AD345D72A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+ZFPlayerRotation.m"; sourceTree = "<group>"; };
  955. 9AD345D92A08D60F005CA070 /* ZFIJKPlayerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFIJKPlayerManager.h; sourceTree = "<group>"; };
  956. 9AD345DA2A08D60F005CA070 /* ZFIJKPlayerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFIJKPlayerManager.m; sourceTree = "<group>"; };
  957. 9AD345DC2A08D60F005CA070 /* ZFAVPlayerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFAVPlayerManager.m; sourceTree = "<group>"; };
  958. 9AD345DD2A08D60F005CA070 /* ZFAVPlayerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFAVPlayerManager.h; sourceTree = "<group>"; };
  959. 9AD345DF2A08D60F005CA070 /* ZFUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFUtilities.m; sourceTree = "<group>"; };
  960. 9AD345E02A08D60F005CA070 /* UIView+ZFFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ZFFrame.m"; sourceTree = "<group>"; };
  961. 9AD345E12A08D60F005CA070 /* ZFSmallFloatControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFSmallFloatControlView.h; sourceTree = "<group>"; };
  962. 9AD345E22A08D60F005CA070 /* ZFPlayerControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPlayerControlView.h; sourceTree = "<group>"; };
  963. 9AD345E32A08D60F005CA070 /* ZFSliderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFSliderView.h; sourceTree = "<group>"; };
  964. 9AD345E42A08D60F005CA070 /* ZFVolumeBrightnessView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFVolumeBrightnessView.m; sourceTree = "<group>"; };
  965. 9AD345E52A08D60F005CA070 /* ZFSpeedLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFSpeedLoadingView.h; sourceTree = "<group>"; };
  966. 9AD345E62A08D60F005CA070 /* ZFLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFLoadingView.h; sourceTree = "<group>"; };
  967. 9AD345E72A08D60F005CA070 /* ZFLandScapeControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFLandScapeControlView.m; sourceTree = "<group>"; };
  968. 9AD345E82A08D60F005CA070 /* ZFNetworkSpeedMonitor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFNetworkSpeedMonitor.m; sourceTree = "<group>"; };
  969. 9AD345E92A08D60F005CA070 /* UIImageView+ZFCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+ZFCache.h"; sourceTree = "<group>"; };
  970. 9AD345EA2A08D60F005CA070 /* ZFPortraitControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFPortraitControlView.h; sourceTree = "<group>"; };
  971. 9AD345EB2A08D60F005CA070 /* ZFPlayer.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = ZFPlayer.bundle; sourceTree = "<group>"; };
  972. 9AD345EC2A08D60F005CA070 /* UIView+ZFFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ZFFrame.h"; sourceTree = "<group>"; };
  973. 9AD345ED2A08D60F005CA070 /* ZFUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFUtilities.h; sourceTree = "<group>"; };
  974. 9AD345EE2A08D60F005CA070 /* ZFSliderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFSliderView.m; sourceTree = "<group>"; };
  975. 9AD345EF2A08D60F005CA070 /* ZFPlayerControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPlayerControlView.m; sourceTree = "<group>"; };
  976. 9AD345F02A08D60F005CA070 /* ZFSmallFloatControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFSmallFloatControlView.m; sourceTree = "<group>"; };
  977. 9AD345F12A08D60F005CA070 /* ZFLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFLoadingView.m; sourceTree = "<group>"; };
  978. 9AD345F22A08D60F005CA070 /* ZFSpeedLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFSpeedLoadingView.m; sourceTree = "<group>"; };
  979. 9AD345F32A08D60F005CA070 /* ZFVolumeBrightnessView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFVolumeBrightnessView.h; sourceTree = "<group>"; };
  980. 9AD345F42A08D60F005CA070 /* ZFPortraitControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFPortraitControlView.m; sourceTree = "<group>"; };
  981. 9AD345F52A08D60F005CA070 /* UIImageView+ZFCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+ZFCache.m"; sourceTree = "<group>"; };
  982. 9AD345F62A08D60F005CA070 /* ZFNetworkSpeedMonitor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFNetworkSpeedMonitor.h; sourceTree = "<group>"; };
  983. 9AD345F72A08D60F005CA070 /* ZFLandScapeControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFLandScapeControlView.h; sourceTree = "<group>"; };
  984. 9AD346172A08D679005CA070 /* GoodsBannerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsBannerModel.h; sourceTree = "<group>"; };
  985. 9AD346182A08D679005CA070 /* GoodsBannerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsBannerModel.m; sourceTree = "<group>"; };
  986. 9AD3461B2A08D6EF005CA070 /* GoodsInformationM.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodsInformationM.h; sourceTree = "<group>"; };
  987. 9AD3461C2A08D6EF005CA070 /* GoodsInformationM.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodsInformationM.m; sourceTree = "<group>"; };
  988. 9AD3461E2A08E30E005CA070 /* SelectVCollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectVCollectionViewCell.h; sourceTree = "<group>"; };
  989. 9AD3461F2A08E30E005CA070 /* SelectVCollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectVCollectionViewCell.m; sourceTree = "<group>"; };
  990. 9AD346212A08E828005CA070 /* ProjectConfigDefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProjectConfigDefine.h; sourceTree = "<group>"; };
  991. 9AD364C42A05E73E00452C7A /* AS_GoodsDetailsC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_GoodsDetailsC.h; sourceTree = "<group>"; };
  992. 9AD364C52A05E73E00452C7A /* AS_GoodsDetailsC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_GoodsDetailsC.m; sourceTree = "<group>"; };
  993. 9AD364CF2A05EC7800452C7A /* AS_TabBarViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AS_TabBarViewController.h; sourceTree = "<group>"; };
  994. 9AD364D02A05EC7800452C7A /* AS_TabBarViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AS_TabBarViewController.m; sourceTree = "<group>"; };
  995. 9AD4D3952B48E8780086D6FB /* ReviewsTableHearV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ReviewsTableHearV.h; sourceTree = "<group>"; };
  996. 9AD4D3962B48E8780086D6FB /* ReviewsTableHearV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReviewsTableHearV.m; sourceTree = "<group>"; };
  997. 9AD4D39C2B48F5680086D6FB /* NSMutableAttributedString+RYText.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+RYText.h"; sourceTree = "<group>"; };
  998. 9AD4D39D2B48F5680086D6FB /* NSMutableAttributedString+RYText.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+RYText.m"; sourceTree = "<group>"; };
  999. 9AD6A53D2A120CC3001DE3D9 /* Login.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Login.xcassets; sourceTree = "<group>"; };
  1000. 9AD6A5402A1218E6001DE3D9 /* PassWordSecureBtnV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PassWordSecureBtnV.h; sourceTree = "<group>"; };
  1001. 9AD6A5412A1218E7001DE3D9 /* EamilTFmatchV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EamilTFmatchV.h; sourceTree = "<group>"; };
  1002. 9AD6A5422A1218E7001DE3D9 /* PassWordSecureBtnV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PassWordSecureBtnV.m; sourceTree = "<group>"; };
  1003. 9AD6A5432A1218E7001DE3D9 /* EamilTFmatchV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EamilTFmatchV.m; sourceTree = "<group>"; };
  1004. 9AD6A5472A1237D0001DE3D9 /* Target_Login.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Target_Login.h; sourceTree = "<group>"; };
  1005. 9AD6A5482A1237D0001DE3D9 /* Target_Login.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Target_Login.m; sourceTree = "<group>"; };
  1006. 9ADA8A1C2B4E481E00BACDEA /* GoodsReviewsWriteC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoodsReviewsWriteC.h; sourceTree = "<group>"; };
  1007. 9ADA8A1D2B4E481E00BACDEA /* GoodsReviewsWriteC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GoodsReviewsWriteC.m; sourceTree = "<group>"; };
  1008. 9ADA8A1F2B4E96C800BACDEA /* GoodWritUpImgV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodWritUpImgV.m; sourceTree = "<group>"; };
  1009. 9ADA8A202B4E96C900BACDEA /* GoodWritUpImgV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodWritUpImgV.h; sourceTree = "<group>"; };
  1010. 9AE3674B2B6CDDE50068F10B /* MyCartGrandTotalCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyCartGrandTotalCell.h; sourceTree = "<group>"; };
  1011. 9AE3674C2B6CDDE50068F10B /* MyCartGrandTotalCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyCartGrandTotalCell.m; sourceTree = "<group>"; };
  1012. 9AEFA7DC2B649F3F00AE1974 /* MyCarlTableV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MyCarlTableV.h; sourceTree = "<group>"; };
  1013. 9AEFA7DD2B649F3F00AE1974 /* MyCarlTableV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MyCarlTableV.m; sourceTree = "<group>"; };
  1014. 9AF9085A2B397320008AC2D2 /* UIViewController+RY_configNet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIViewController+RY_configNet.h"; sourceTree = "<group>"; };
  1015. 9AF9085B2B397320008AC2D2 /* UIViewController+RY_configNet.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+RY_configNet.m"; sourceTree = "<group>"; };
  1016. 9AF9085D2B3976F3008AC2D2 /* RYBaseVM.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RYBaseVM.h; sourceTree = "<group>"; };
  1017. 9AF9085E2B3976F3008AC2D2 /* RYBaseVM.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RYBaseVM.m; sourceTree = "<group>"; };
  1018. 9AFCDAC02B809C5B003D3573 /* CartCheckTableV.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CartCheckTableV.h; sourceTree = "<group>"; };
  1019. 9AFCDAC12B809C5B003D3573 /* CartCheckTableV.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CartCheckTableV.m; sourceTree = "<group>"; };
  1020. F28014612B0095476AA5BC1B /* Pods-Asteria-NotificationServiceExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Asteria-NotificationServiceExtension.debug.xcconfig"; path = "Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension.debug.xcconfig"; sourceTree = "<group>"; };
  1021. /* End PBXFileReference section */
  1022. /* Begin PBXFrameworksBuildPhase section */
  1023. 8172449729F3B2ED005FA9C9 /* Frameworks */ = {
  1024. isa = PBXFrameworksBuildPhase;
  1025. buildActionMask = 2147483647;
  1026. files = (
  1027. 9A2027F52A137B8600FF4DAF /* AuthenticationServices.framework in Frameworks */,
  1028. 9A98E51D2B5A275400E8C5C1 /* UIKit.framework in Frameworks */,
  1029. 9A98E5202B5A278A00E8C5C1 /* libsqlite3.tbd in Frameworks */,
  1030. 9A98E5102B5A1EFE00E8C5C1 /* libz.tbd in Frameworks */,
  1031. 9A98E51E2B5A276A00E8C5C1 /* libc++.tbd in Frameworks */,
  1032. 9A98E5122B5A248D00E8C5C1 /* AssetsLibrary.framework in Frameworks */,
  1033. 9A98E5162B5A25A100E8C5C1 /* CoreGraphics.framework in Frameworks */,
  1034. 9A98E5222B5A27A900E8C5C1 /* libz.1.2.5.tbd in Frameworks */,
  1035. 9A98E50E2B5A1ED300E8C5C1 /* SystemConfiguration.framework in Frameworks */,
  1036. 9A98E5242B5A27C500E8C5C1 /* Accelerate.framework in Frameworks */,
  1037. 9A98E5142B5A258A00E8C5C1 /* CoreFoundation.framework in Frameworks */,
  1038. 8C24ECE114420CDEE7B9B22B /* Pods_Asteria.framework in Frameworks */,
  1039. 9A98E52C2B5A282800E8C5C1 /* CoreText.framework in Frameworks */,
  1040. 9A98E51A2B5A25D600E8C5C1 /* ImageIO.framework in Frameworks */,
  1041. 9A98E5182B5A25AD00E8C5C1 /* CoreImage.framework in Frameworks */,
  1042. 9A98E5282B5A280700E8C5C1 /* SafariServices.framework in Frameworks */,
  1043. 9A98E52A2B5A281600E8C5C1 /* QuartzCore.framework in Frameworks */,
  1044. 9A98E5262B5A27EA00E8C5C1 /* MobileCoreServices.framework in Frameworks */,
  1045. 9A98E50C2B5A1EC500E8C5C1 /* Security.framework in Frameworks */,
  1046. 9A98E50A2B5A1EB700E8C5C1 /* Photos.framework in Frameworks */,
  1047. );
  1048. runOnlyForDeploymentPostprocessing = 0;
  1049. };
  1050. 817244B729F3B81C005FA9C9 /* Frameworks */ = {
  1051. isa = PBXFrameworksBuildPhase;
  1052. buildActionMask = 2147483647;
  1053. files = (
  1054. 2B3E96D298A3E04003DA2AD3 /* Pods_Asteria_NotificationServiceExtension.framework in Frameworks */,
  1055. );
  1056. runOnlyForDeploymentPostprocessing = 0;
  1057. };
  1058. /* End PBXFrameworksBuildPhase section */
  1059. /* Begin PBXGroup section */
  1060. 5A5FFF81F369698EFECBFE81 /* Frameworks */ = {
  1061. isa = PBXGroup;
  1062. children = (
  1063. 9A98E52B2B5A282800E8C5C1 /* CoreText.framework */,
  1064. 9A98E5292B5A281600E8C5C1 /* QuartzCore.framework */,
  1065. 9A98E5272B5A280700E8C5C1 /* SafariServices.framework */,
  1066. 9A98E5252B5A27EA00E8C5C1 /* MobileCoreServices.framework */,
  1067. 9A98E5232B5A27C500E8C5C1 /* Accelerate.framework */,
  1068. 9A98E5212B5A279D00E8C5C1 /* libz.1.2.5.tbd */,
  1069. 9A98E51F2B5A277B00E8C5C1 /* libsqlite3.tbd */,
  1070. 9A98E51C2B5A275400E8C5C1 /* UIKit.framework */,
  1071. 9A98E51B2B5A25E900E8C5C1 /* libc++.tbd */,
  1072. 9A98E5192B5A25D600E8C5C1 /* ImageIO.framework */,
  1073. 9A98E5172B5A25AD00E8C5C1 /* CoreImage.framework */,
  1074. 9A98E5152B5A25A100E8C5C1 /* CoreGraphics.framework */,
  1075. 9A98E5132B5A258900E8C5C1 /* CoreFoundation.framework */,
  1076. 9A98E5112B5A248D00E8C5C1 /* AssetsLibrary.framework */,
  1077. 9A98E50F2B5A1EF000E8C5C1 /* libz.tbd */,
  1078. 9A98E50D2B5A1ED300E8C5C1 /* SystemConfiguration.framework */,
  1079. 9A98E50B2B5A1EC500E8C5C1 /* Security.framework */,
  1080. 9A98E5092B5A1EB700E8C5C1 /* Photos.framework */,
  1081. 9A2027F42A137B8600FF4DAF /* AuthenticationServices.framework */,
  1082. 54DCE8001991D89B696E7D44 /* Pods_Asteria.framework */,
  1083. 51AF3B78609F55449DF09609 /* Pods_Asteria_NotificationServiceExtension.framework */,
  1084. );
  1085. name = Frameworks;
  1086. sourceTree = "<group>";
  1087. };
  1088. 811F42422A40530200DA68F1 /* UserCenterHome */ = {
  1089. isa = PBXGroup;
  1090. children = (
  1091. 814F5CED2A11B1F2003847A9 /* ASUserCenterViewController.h */,
  1092. 814F5CEE2A11B1F2003847A9 /* ASUserCenterViewController.m */,
  1093. 815970B82B54DC830073041D /* ASUserCenterViewModel.h */,
  1094. 815970B92B54DC830073041D /* ASUserCenterViewModel.m */,
  1095. 8120211F2B16CD630026B8B5 /* ASSginViewModel.h */,
  1096. 812021202B16CD630026B8B5 /* ASSginViewModel.m */,
  1097. 81354BEF2A287B040082C93A /* models */,
  1098. 81354BE82A2879EE0082C93A /* views */,
  1099. );
  1100. path = UserCenterHome;
  1101. sourceTree = "<group>";
  1102. };
  1103. 811F42432A40531C00DA68F1 /* Points */ = {
  1104. isa = PBXGroup;
  1105. children = (
  1106. 811F42442A40533C00DA68F1 /* ASPointsHomeViewController.h */,
  1107. 811F42452A40533C00DA68F1 /* ASPointsHomeViewController.m */,
  1108. 81DFA5652A46D60900DA708B /* ASPointDetailViewController.h */,
  1109. 81DFA5662A46D60900DA708B /* ASPointDetailViewController.m */,
  1110. 81E73EBE2B1AC49D00C10938 /* ASPointsViewModel.h */,
  1111. 81E73EBF2B1AC49D00C10938 /* ASPointsViewModel.m */,
  1112. 81DFA56E2A46D8F600DA708B /* model */,
  1113. 81DFA5642A46D5DF00DA708B /* view */,
  1114. );
  1115. path = Points;
  1116. sourceTree = "<group>";
  1117. };
  1118. 812021122B14657D0026B8B5 /* UserManager */ = {
  1119. isa = PBXGroup;
  1120. children = (
  1121. 81AA11DD2B23FF8B008EB5C7 /* info */,
  1122. 81AA11DE2B23FF93008EB5C7 /* currency */,
  1123. );
  1124. path = UserManager;
  1125. sourceTree = "<group>";
  1126. };
  1127. 8127ADD82B11930300464D27 /* NetTools */ = {
  1128. isa = PBXGroup;
  1129. children = (
  1130. 8127ADD92B1193A300464D27 /* ASNetTools.h */,
  1131. 8127ADDA2B1193A300464D27 /* ASNetTools.m */,
  1132. 8127ADDC2B11973400464D27 /* ASNetApis.h */,
  1133. 812021222B16D2D40026B8B5 /* ASUserNotifyStatic.h */,
  1134. );
  1135. path = NetTools;
  1136. sourceTree = "<group>";
  1137. };
  1138. 8131A27D2B3687CA00A191BE /* Windows */ = {
  1139. isa = PBXGroup;
  1140. children = (
  1141. 8131A28A2B3692F300A191BE /* APHomeActiveViewController.h */,
  1142. 8131A2882B3692F300A191BE /* APHomeActiveViewController.m */,
  1143. 8131A2892B3692F300A191BE /* APHomeActiveWindow.h */,
  1144. 8131A28B2B3692F300A191BE /* APHomeActiveWindow.m */,
  1145. 8131A28E2B38FF3B00A191BE /* APInputAlertView.h */,
  1146. 8131A28F2B38FF3B00A191BE /* APInputAlertView.m */,
  1147. 8131A27E2B3687EE00A191BE /* ASCustomWindow.h */,
  1148. 8131A27F2B3687EE00A191BE /* ASCustomWindow.m */,
  1149. 8131A2822B36882500A191BE /* ASCustomAlertViewController.h */,
  1150. 8131A2832B36882500A191BE /* ASCustomAlertViewController.m */,
  1151. 8131A2852B36890200A191BE /* ASWindowManager.h */,
  1152. 8131A2862B36890200A191BE /* ASWindowManager.m */,
  1153. );
  1154. path = Windows;
  1155. sourceTree = "<group>";
  1156. };
  1157. 81354BE82A2879EE0082C93A /* views */ = {
  1158. isa = PBXGroup;
  1159. children = (
  1160. 81354C0D2A297D6A0082C93A /* HomeFlashDealSubCollectCell.h */,
  1161. 81354C0C2A297D690082C93A /* HomeFlashDealSubCollectCell.m */,
  1162. 81354BFA2A28998A0082C93A /* KWMineMoreProductsCell.h */,
  1163. 81354BFB2A28998A0082C93A /* KWMineMoreProductsCell.m */,
  1164. 81354BF82A28998A0082C93A /* KWMineMoreProductTypeCell.h */,
  1165. 81354BF92A28998A0082C93A /* KWMineMoreProductTypeCell.m */,
  1166. 81354BF32A287BEC0082C93A /* KWMineHomeOrderSubView.h */,
  1167. 81354BF42A287BEC0082C93A /* KWMineHomeOrderSubView.m */,
  1168. 81354BE92A287AB40082C93A /* KWMineHomeOrderHeadView.h */,
  1169. 81354BEA2A287AB50082C93A /* KWMineHomeOrderHeadView.m */,
  1170. 81354BEB2A287AB50082C93A /* KWMineHomeOrderListCell.h */,
  1171. 81354BEC2A287AB50082C93A /* KWMineHomeOrderListCell.m */,
  1172. 8134C1BB2A1372D5006EB0EC /* ASUserCenterTableHeadView.h */,
  1173. 8134C1BC2A1372D5006EB0EC /* ASUserCenterTableHeadView.m */,
  1174. 81E257EC2A120756004EEF71 /* ASUserCenterTopView.h */,
  1175. 81E257ED2A120756004EEF71 /* ASUserCenterTopView.m */,
  1176. 8134C1B22A1358F3006EB0EC /* ASSginView.h */,
  1177. 8134C1B32A1358F3006EB0EC /* ASSginView.m */,
  1178. 8134C1B82A1372A7006EB0EC /* ASUserCenterEnterItemV.h */,
  1179. 8134C1B92A1372A7006EB0EC /* ASUserCenterEnterItemV.m */,
  1180. );
  1181. path = views;
  1182. sourceTree = "<group>";
  1183. };
  1184. 81354BEF2A287B040082C93A /* models */ = {
  1185. isa = PBXGroup;
  1186. children = (
  1187. 81354C012A289A060082C93A /* HomeFilterModel.h */,
  1188. 81354C022A289A070082C93A /* HomeFilterModel.m */,
  1189. 81354BFE2A2899CA0082C93A /* KWMineMoreProductModel.h */,
  1190. 81354BFF2A2899CB0082C93A /* KWMineMoreProductModel.m */,
  1191. 81354BF12A287B120082C93A /* KWMineHomeOrderModel.h */,
  1192. 81354BF02A287B120082C93A /* KWMineHomeOrderModel.m */,
  1193. );
  1194. path = models;
  1195. sourceTree = "<group>";
  1196. };
  1197. 81354C042A289C100082C93A /* productView */ = {
  1198. isa = PBXGroup;
  1199. children = (
  1200. 8134C1C32A145172006EB0EC /* ASProductItemView.h */,
  1201. 8134C1C42A145172006EB0EC /* ASProductItemView.m */,
  1202. 81354BE52A28786C0082C93A /* ASProductBaseModel.h */,
  1203. 81354BE62A28786C0082C93A /* ASProductBaseModel.m */,
  1204. );
  1205. path = productView;
  1206. sourceTree = "<group>";
  1207. };
  1208. 81354C052A289C230082C93A /* someView */ = {
  1209. isa = PBXGroup;
  1210. children = (
  1211. 81354C062A289C340082C93A /* KWScrollOffsetView.h */,
  1212. 81354C082A289C350082C93A /* KWScrollOffsetView.m */,
  1213. 81354C072A289C340082C93A /* KWTimeEndView.h */,
  1214. 81354C092A289C350082C93A /* KWTimeEndView.m */,
  1215. );
  1216. path = someView;
  1217. sourceTree = "<group>";
  1218. };
  1219. 814F5CF02A11B317003847A9 /* SimpleBase */ = {
  1220. isa = PBXGroup;
  1221. children = (
  1222. 81C3B44229F6612800D79294 /* ASBaseViewController.h */,
  1223. 81C3B44329F6612800D79294 /* ASBaseViewController.m */,
  1224. 81C3B44829F6661500D79294 /* ASBaseNavController.h */,
  1225. 81C3B44929F6661500D79294 /* ASBaseNavController.m */,
  1226. );
  1227. path = SimpleBase;
  1228. sourceTree = "<group>";
  1229. };
  1230. 814F5CF12A11B337003847A9 /* ASUI */ = {
  1231. isa = PBXGroup;
  1232. children = (
  1233. 81C3B45029F669C900D79294 /* ColorDefine.h */,
  1234. 8199001E2A0206F7006FE68C /* SizeDefine.h */,
  1235. 81717C962A3BF1AD00648139 /* alert */,
  1236. 81C3B44B29F6691300D79294 /* Extensions */,
  1237. 8199001F2A020A4F006FE68C /* Tools */,
  1238. 81E257F72A122AAB004EEF71 /* Icons */,
  1239. 81E257EF2A12093A004EEF71 /* CustomView */,
  1240. 814F5CF22A11B35B003847A9 /* ASUserAvater */,
  1241. 814F5CF02A11B317003847A9 /* SimpleBase */,
  1242. 81354BF62A288AC20082C93A /* ASUI.xcassets */,
  1243. );
  1244. path = ASUI;
  1245. sourceTree = "<group>";
  1246. };
  1247. 814F5CF22A11B35B003847A9 /* ASUserAvater */ = {
  1248. isa = PBXGroup;
  1249. children = (
  1250. 814F5CF32A11B37E003847A9 /* ASUserAvaterView.h */,
  1251. 814F5CF42A11B37E003847A9 /* ASUserAvaterView.m */,
  1252. );
  1253. path = ASUserAvater;
  1254. sourceTree = "<group>";
  1255. };
  1256. 814F5CF62A11B76F003847A9 /* Font */ = {
  1257. isa = PBXGroup;
  1258. children = (
  1259. 814F5CF72A11B76F003847A9 /* Roboto */,
  1260. );
  1261. path = Font;
  1262. sourceTree = "<group>";
  1263. };
  1264. 814F5CF72A11B76F003847A9 /* Roboto */ = {
  1265. isa = PBXGroup;
  1266. children = (
  1267. 814F5CF82A11B76F003847A9 /* Roboto-Medium.ttf */,
  1268. 814F5CF92A11B76F003847A9 /* Roboto-Light.ttf */,
  1269. 814F5CFA2A11B76F003847A9 /* Roboto-Regular.ttf */,
  1270. 814F5CFB2A11B76F003847A9 /* Roboto-MediumItalic.ttf */,
  1271. 814F5CFC2A11B76F003847A9 /* Roboto-ThinItalic.ttf */,
  1272. 814F5CFD2A11B76F003847A9 /* Roboto-BoldItalic.ttf */,
  1273. 814F5CFE2A11B76F003847A9 /* Roboto-LightItalic.ttf */,
  1274. 814F5CFF2A11B76F003847A9 /* Roboto-Italic.ttf */,
  1275. 814F5D002A11B76F003847A9 /* LICENSE.txt */,
  1276. 814F5D012A11B76F003847A9 /* Roboto-BlackItalic.ttf */,
  1277. 814F5D022A11B76F003847A9 /* Roboto-Bold.ttf */,
  1278. 814F5D032A11B76F003847A9 /* Roboto-Thin.ttf */,
  1279. 814F5D042A11B76F003847A9 /* Roboto-Black.ttf */,
  1280. );
  1281. path = Roboto;
  1282. sourceTree = "<group>";
  1283. };
  1284. 81601FE32A2D938B00E4A8F1 /* Home */ = {
  1285. isa = PBXGroup;
  1286. children = (
  1287. 81601FFC2A2DC8C400E4A8F1 /* Views */,
  1288. 816020002A2DCB3B00E4A8F1 /* Models */,
  1289. 81C326672A36F019002EF442 /* vm */,
  1290. 816020142A2F065700E4A8F1 /* Home.xcassets */,
  1291. 81601FE42A2DB19300E4A8F1 /* ASHomeViewController.h */,
  1292. 81601FE52A2DB19300E4A8F1 /* ASHomeViewController.m */,
  1293. 81C3265D2A36B284002EF442 /* ASProductListViewController.h */,
  1294. 81C3265E2A36B284002EF442 /* ASProductListViewController.m */,
  1295. 816020052A2DD4FB00E4A8F1 /* Target_Home.h */,
  1296. 816020062A2DD4FB00E4A8F1 /* Target_Home.m */,
  1297. );
  1298. path = Home;
  1299. sourceTree = "<group>";
  1300. };
  1301. 81601FE72A2DC76C00E4A8F1 /* Third */ = {
  1302. isa = PBXGroup;
  1303. children = (
  1304. 81FC41A12BEB4D6D00EB0A85 /* InTableScrollView.h */,
  1305. 81FC41A22BEB4D6D00EB0A85 /* InTableScrollView.m */,
  1306. 9A3520372B479B8100D097CB /* YJLAttributesLabel */,
  1307. 9A31EDFA2B468A41009F11EE /* RadioButton */,
  1308. 81C326632A36B6D9002EF442 /* TextRollIngView */,
  1309. 81601FE82A2DC78300E4A8F1 /* WMZBanner */,
  1310. );
  1311. path = Third;
  1312. sourceTree = "<group>";
  1313. };
  1314. 81601FE82A2DC78300E4A8F1 /* WMZBanner */ = {
  1315. isa = PBXGroup;
  1316. children = (
  1317. 81601FE92A2DC78300E4A8F1 /* WMZBannerFlowLayout.m */,
  1318. 81601FEA2A2DC78300E4A8F1 /* WMZBannerControl.h */,
  1319. 81601FEB2A2DC78300E4A8F1 /* WMZBannerFadeLayout.h */,
  1320. 81601FEC2A2DC78300E4A8F1 /* WMZBannerParam.m */,
  1321. 81601FED2A2DC78300E4A8F1 /* WMZBannerOverLayout.h */,
  1322. 81601FEE2A2DC78300E4A8F1 /* WMZBannerView.m */,
  1323. 81601FEF2A2DC78300E4A8F1 /* WMZBannerControl.m */,
  1324. 81601FF02A2DC78300E4A8F1 /* WMZBannerFlowLayout.h */,
  1325. 81601FF12A2DC78300E4A8F1 /* WMZBannerFadeLayout.m */,
  1326. 81601FF22A2DC78300E4A8F1 /* WMZBannerConfig.h */,
  1327. 81601FF32A2DC78300E4A8F1 /* WMZBannerParam.h */,
  1328. 81601FF42A2DC78300E4A8F1 /* WMZBannerView.h */,
  1329. 81601FF52A2DC78300E4A8F1 /* WMZBannerOverLayout.m */,
  1330. );
  1331. path = WMZBanner;
  1332. sourceTree = "<group>";
  1333. };
  1334. 81601FFC2A2DC8C400E4A8F1 /* Views */ = {
  1335. isa = PBXGroup;
  1336. children = (
  1337. 81C3266B2A36FEEC002EF442 /* productList */,
  1338. 81601FFD2A2DC8E700E4A8F1 /* ASHomeBannerCell.h */,
  1339. 81601FFE2A2DC8E700E4A8F1 /* ASHomeBannerCell.m */,
  1340. 8160200E2A2EE55F00E4A8F1 /* ASCategaryListCell.h */,
  1341. 8160200F2A2EE55F00E4A8F1 /* ASCategaryListCell.m */,
  1342. 8160201A2A2F101C00E4A8F1 /* ASHomeTipCell.h */,
  1343. 8160201B2A2F101C00E4A8F1 /* ASHomeTipCell.m */,
  1344. 816020202A2F1C6A00E4A8F1 /* ASHomeBestSellCell.h */,
  1345. 816020212A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m */,
  1346. 81EC47642A33035D00516573 /* ASHomeNewInCellTableViewCell.h */,
  1347. 81EC47652A33035D00516573 /* ASHomeNewInCellTableViewCell.m */,
  1348. 81EC476D2A33F82C00516573 /* ASHomeImgCell.h */,
  1349. 81EC476E2A33F82C00516573 /* ASHomeImgCell.m */,
  1350. 81EC47702A3402CA00516573 /* ASHomeFlashDealCell.h */,
  1351. 81EC47712A3402CA00516573 /* ASHomeFlashDealCell.m */,
  1352. 81EC47732A3423FC00516573 /* ASHomeLookingCell.h */,
  1353. 81EC47742A3423FC00516573 /* ASHomeLookingCell.m */,
  1354. 816020192A2F0C8400E4A8F1 /* someViews */,
  1355. 81C326602A36B33B002EF442 /* ASHomeActiveView.h */,
  1356. 81C326612A36B33B002EF442 /* ASHomeActiveView.m */,
  1357. );
  1358. path = Views;
  1359. sourceTree = "<group>";
  1360. };
  1361. 816020002A2DCB3B00E4A8F1 /* Models */ = {
  1362. isa = PBXGroup;
  1363. children = (
  1364. 816020012A2DCB5600E4A8F1 /* ASHomeBannerModel.h */,
  1365. 816020022A2DCB5600E4A8F1 /* ASHomeBannerModel.m */,
  1366. 816020162A2F070B00E4A8F1 /* ASHomeCategoryModel.h */,
  1367. 816020172A2F070B00E4A8F1 /* ASHomeCategoryModel.m */,
  1368. 816020232A2F1C9E00E4A8F1 /* ASHomeMainListModel.h */,
  1369. 816020242A2F1C9E00E4A8F1 /* ASHomeMainListModel.m */,
  1370. 81717CA72A3C0AAA00648139 /* KWProductListFilterModel.h */,
  1371. 81717CA62A3C0AA900648139 /* KWProductListFilterModel.m */,
  1372. 8131A27A2B365F7600A191BE /* ASProductListCategoryModel.h */,
  1373. 8131A27B2B365F7600A191BE /* ASProductListCategoryModel.m */,
  1374. );
  1375. path = Models;
  1376. sourceTree = "<group>";
  1377. };
  1378. 816020192A2F0C8400E4A8F1 /* someViews */ = {
  1379. isa = PBXGroup;
  1380. children = (
  1381. 816020112A2EE5A200E4A8F1 /* ASCategaryCollectCell.h */,
  1382. 816020122A2EE5A200E4A8F1 /* ASCategaryCollectCell.m */,
  1383. 8160201D2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.h */,
  1384. 8160201E2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m */,
  1385. 81EC47672A33073100516573 /* ASHomeNewInProductItemView.h */,
  1386. 81EC47682A33073100516573 /* ASHomeNewInProductItemView.m */,
  1387. 81EC476A2A33131100516573 /* ASHomeNewInSubCollectCell.h */,
  1388. 81EC476B2A33131100516573 /* ASHomeNewInSubCollectCell.m */,
  1389. 81EC47762A3426CD00516573 /* ASHomeLookingCollCell.h */,
  1390. 81EC47772A3426CE00516573 /* ASHomeLookingCollCell.m */,
  1391. );
  1392. path = someViews;
  1393. sourceTree = "<group>";
  1394. };
  1395. 81717C962A3BF1AD00648139 /* alert */ = {
  1396. isa = PBXGroup;
  1397. children = (
  1398. 81717C972A3BF1DD00648139 /* ASHomeAlertWindow.h */,
  1399. 81717C982A3BF1DD00648139 /* ASHomeAlertWindow.m */,
  1400. 81717C9A2A3BF1F100648139 /* ASHomeAlertViewController.h */,
  1401. 81717C9B2A3BF1F100648139 /* ASHomeAlertViewController.m */,
  1402. 81717D3D2A3D5EAD00648139 /* ASDefualtAlertV.h */,
  1403. 81717D3E2A3D5EAD00648139 /* ASDefualtAlertV.m */,
  1404. );
  1405. path = alert;
  1406. sourceTree = "<group>";
  1407. };
  1408. 81717CAC2A3C453900648139 /* Category */ = {
  1409. isa = PBXGroup;
  1410. children = (
  1411. 81717D002A3C4ADF00648139 /* m */,
  1412. 81717CF22A3C4ADF00648139 /* tipV */,
  1413. 81717D032A3C4AE000648139 /* v */,
  1414. 81717CEA2A3C4ADE00648139 /* vc */,
  1415. 81717CE52A3C4ADE00648139 /* vm */,
  1416. 81717D232A3C512700648139 /* Target_Category.h */,
  1417. 81717D242A3C512700648139 /* Target_Category.m */,
  1418. 81717D3B2A3D430C00648139 /* Category.xcassets */,
  1419. );
  1420. path = Category;
  1421. sourceTree = "<group>";
  1422. };
  1423. 81717CE52A3C4ADE00648139 /* vm */ = {
  1424. isa = PBXGroup;
  1425. children = (
  1426. 81717CE92A3C4ADE00648139 /* KWHisAndHotWordsViewModel.h */,
  1427. 81717CE62A3C4ADE00648139 /* KWHisAndHotWordsViewModel.m */,
  1428. 81717CE82A3C4ADE00648139 /* KWSearchViewModel.h */,
  1429. 81717CE72A3C4ADE00648139 /* KWSearchViewModel.m */,
  1430. 81AA11D72B23FF1F008EB5C7 /* ASCategoriesViewModel.h */,
  1431. 81AA11D82B23FF1F008EB5C7 /* ASCategoriesViewModel.m */,
  1432. );
  1433. path = vm;
  1434. sourceTree = "<group>";
  1435. };
  1436. 81717CEA2A3C4ADE00648139 /* vc */ = {
  1437. isa = PBXGroup;
  1438. children = (
  1439. 818656482A5BE9790049D861 /* ASSearchViewController.h */,
  1440. 818656492A5BE9790049D861 /* ASSearchViewController.m */,
  1441. 8186564B2A5BF6010049D861 /* ASCategoryViewController.h */,
  1442. 8186564C2A5BF6010049D861 /* ASCategoryViewController.m */,
  1443. );
  1444. path = vc;
  1445. sourceTree = "<group>";
  1446. };
  1447. 81717CF22A3C4ADF00648139 /* tipV */ = {
  1448. isa = PBXGroup;
  1449. children = (
  1450. 81717D302A3D322700648139 /* KWCustomLayout.h */,
  1451. 81717D322A3D322700648139 /* KWCustomLayout.m */,
  1452. 81717D332A3D322700648139 /* KWHisAndHotWordsView.h */,
  1453. 81717D342A3D322700648139 /* KWHisAndHotWordsView.m */,
  1454. 81717D2E2A3D322600648139 /* KWHisCollectHeaderView.h */,
  1455. 81717D2D2A3D322600648139 /* KWHisCollectHeaderView.m */,
  1456. 81717D2F2A3D322700648139 /* KWHisKeyWordCell.h */,
  1457. 81717D292A3D322600648139 /* KWHisKeyWordCell.m */,
  1458. 81717D2A2A3D322600648139 /* KWLenovoWordListView.h */,
  1459. 81717D2B2A3D322600648139 /* KWLenovoWordListView.m */,
  1460. 81717D2C2A3D322600648139 /* KWNoHisWordsCell.h */,
  1461. 81717D312A3D322700648139 /* KWNoHisWordsCell.m */,
  1462. );
  1463. path = tipV;
  1464. sourceTree = "<group>";
  1465. };
  1466. 81717D002A3C4ADF00648139 /* m */ = {
  1467. isa = PBXGroup;
  1468. children = (
  1469. 81717D012A3C4ADF00648139 /* KWSearchSubTypeModel.h */,
  1470. 81717D022A3C4ADF00648139 /* KWSearchSubTypeModel.m */,
  1471. );
  1472. path = m;
  1473. sourceTree = "<group>";
  1474. };
  1475. 81717D032A3C4AE000648139 /* v */ = {
  1476. isa = PBXGroup;
  1477. children = (
  1478. 81717D0A2A3C4AE000648139 /* KWSearchSubTypeHeadView.h */,
  1479. 81717D042A3C4AE000648139 /* KWSearchSubTypeHeadView.m */,
  1480. 81717D052A3C4AE000648139 /* KWSearchSubTypeTableView.h */,
  1481. 81717D0E2A3C4AE000648139 /* KWSearchSubTypeTableView.m */,
  1482. 81717D0D2A3C4AE000648139 /* KWSearchMainTypeTableView.h */,
  1483. 81717D062A3C4AE000648139 /* KWSearchMainTypeTableView.m */,
  1484. 81717D0C2A3C4AE000648139 /* KWMoneyTypeHeadView.h */,
  1485. 81717D072A3C4AE000648139 /* KWMoneyTypeHeadView.m */,
  1486. 81717D082A3C4AE000648139 /* KWSearchSubTypeCell.h */,
  1487. 81717D0B2A3C4AE000648139 /* KWSearchSubTypeCell.m */,
  1488. 81717D092A3C4AE000648139 /* KWSearchMainTypeCell.h */,
  1489. 81717D0F2A3C4AE000648139 /* KWSearchMainTypeCell.m */,
  1490. );
  1491. path = v;
  1492. sourceTree = "<group>";
  1493. };
  1494. 8172449129F3B2EC005FA9C9 = {
  1495. isa = PBXGroup;
  1496. children = (
  1497. 8172449C29F3B2ED005FA9C9 /* Asteria */,
  1498. 817244BB29F3B81C005FA9C9 /* NotificationServiceExtension */,
  1499. 8172449B29F3B2ED005FA9C9 /* Products */,
  1500. AD6FCC75A25F3F751CF2E2EB /* Pods */,
  1501. 5A5FFF81F369698EFECBFE81 /* Frameworks */,
  1502. );
  1503. sourceTree = "<group>";
  1504. };
  1505. 8172449B29F3B2ED005FA9C9 /* Products */ = {
  1506. isa = PBXGroup;
  1507. children = (
  1508. 8172449A29F3B2ED005FA9C9 /* Asteria.app */,
  1509. 817244BA29F3B81C005FA9C9 /* NotificationServiceExtension.appex */,
  1510. );
  1511. name = Products;
  1512. sourceTree = "<group>";
  1513. };
  1514. 8172449C29F3B2ED005FA9C9 /* Asteria */ = {
  1515. isa = PBXGroup;
  1516. children = (
  1517. 9AD4D3982B48EB7F0086D6FB /* Category */,
  1518. 9A3F5CAC2B3BC10400DDB6A7 /* Base */,
  1519. 81601FE72A2DC76C00E4A8F1 /* Third */,
  1520. 9A2646BA2A187B6100CBFBDC /* Product */,
  1521. 9A2027F32A137B6A00FF4DAF /* Asteria.entitlements */,
  1522. 81C3B44F29F6699900D79294 /* PreFixHeader.h */,
  1523. 8127ADD82B11930300464D27 /* NetTools */,
  1524. 9A8DD8CC2A0B9E0C00573324 /* Assets */,
  1525. 9AD364CE2A05EC4500452C7A /* Tabber */,
  1526. 9AACEE8E2B7F12DB00223466 /* Common */,
  1527. 9AD364CC2A05EBE800452C7A /* Fuction */,
  1528. 8172449D29F3B2ED005FA9C9 /* AppDelegate.h */,
  1529. 8172449E29F3B2ED005FA9C9 /* AppDelegate.m */,
  1530. 9ACBEC2A2A14CCA200A8F97A /* ThirdPartService.h */,
  1531. 9ACBEC292A14CCA200A8F97A /* ThirdPartService.m */,
  1532. 814F5CF12A11B337003847A9 /* ASUI */,
  1533. 817244A929F3B2EE005FA9C9 /* Assets.xcassets */,
  1534. 817244AB29F3B2EE005FA9C9 /* LaunchScreen.storyboard */,
  1535. 817244AE29F3B2EE005FA9C9 /* Info.plist */,
  1536. 817244AF29F3B2EE005FA9C9 /* main.m */,
  1537. );
  1538. path = Asteria;
  1539. sourceTree = "<group>";
  1540. };
  1541. 817244BB29F3B81C005FA9C9 /* NotificationServiceExtension */ = {
  1542. isa = PBXGroup;
  1543. children = (
  1544. 817244BC29F3B81C005FA9C9 /* NotificationService.h */,
  1545. 817244BD29F3B81C005FA9C9 /* NotificationService.m */,
  1546. 817244BF29F3B81C005FA9C9 /* Info.plist */,
  1547. );
  1548. path = NotificationServiceExtension;
  1549. sourceTree = "<group>";
  1550. };
  1551. 819349162BF1EB11009FDDB2 /* Orders */ = {
  1552. isa = PBXGroup;
  1553. children = (
  1554. 8810F55D2BF5EBF400346FD4 /* Controller */,
  1555. 8810F5562BF5EBF400346FD4 /* Model */,
  1556. 8810F54E2BF5EBF400346FD4 /* View */,
  1557. 8810F5532BF5EBF400346FD4 /* ViewModel */,
  1558. );
  1559. path = Orders;
  1560. sourceTree = "<group>";
  1561. };
  1562. 8193D5C52BEA1F9600B9AB11 /* Address */ = {
  1563. isa = PBXGroup;
  1564. children = (
  1565. 81FC41992BEB1DDC00EB0A85 /* edit */,
  1566. 8193D5C62BEA299F00B9AB11 /* ASAddressListViewController.h */,
  1567. 8193D5C72BEA299F00B9AB11 /* ASAddressListViewController.m */,
  1568. 8193D5CF2BEA2F3100B9AB11 /* ASMineAddressCell.h */,
  1569. 8193D5D02BEA2F3100B9AB11 /* ASMineAddressCell.m */,
  1570. 8193D5CC2BEA2B8E00B9AB11 /* ASAddressViewModel.h */,
  1571. 8193D5CD2BEA2B8E00B9AB11 /* ASAddressViewModel.m */,
  1572. 8193D5C92BEA2A0800B9AB11 /* ASMineAddressModel.h */,
  1573. 8193D5CA2BEA2A0800B9AB11 /* ASMineAddressModel.m */,
  1574. );
  1575. path = Address;
  1576. sourceTree = "<group>";
  1577. };
  1578. 8199001F2A020A4F006FE68C /* Tools */ = {
  1579. isa = PBXGroup;
  1580. children = (
  1581. 819900202A020A6F006FE68C /* LYTools.h */,
  1582. 819900212A020A6F006FE68C /* LYTools.m */,
  1583. 8810F53D2BF5949000346FD4 /* ASCommonUtils.h */,
  1584. 8810F53E2BF5949000346FD4 /* ASCommonUtils.m */,
  1585. );
  1586. path = Tools;
  1587. sourceTree = "<group>";
  1588. };
  1589. 81AA11DD2B23FF8B008EB5C7 /* info */ = {
  1590. isa = PBXGroup;
  1591. children = (
  1592. 812021132B14659A0026B8B5 /* ASUserInfoManager.h */,
  1593. 812021142B14659A0026B8B5 /* ASUserInfoManager.m */,
  1594. 812021162B1467410026B8B5 /* ASUserModel.h */,
  1595. 812021172B1467410026B8B5 /* ASUserModel.m */,
  1596. 812021192B15F03B0026B8B5 /* ASVipModel.h */,
  1597. 8120211A2B15F03B0026B8B5 /* ASVipModel.m */,
  1598. 8120211C2B15F2B30026B8B5 /* ASVipUrlTempModel.h */,
  1599. 8120211D2B15F2B30026B8B5 /* ASVipUrlTempModel.m */,
  1600. );
  1601. path = info;
  1602. sourceTree = "<group>";
  1603. };
  1604. 81AA11DE2B23FF93008EB5C7 /* currency */ = {
  1605. isa = PBXGroup;
  1606. children = (
  1607. 81AA11DA2B23FF71008EB5C7 /* ASCurrencyManager.h */,
  1608. 81AA11DB2B23FF71008EB5C7 /* ASCurrencyManager.m */,
  1609. );
  1610. path = currency;
  1611. sourceTree = "<group>";
  1612. };
  1613. 81C326632A36B6D9002EF442 /* TextRollIngView */ = {
  1614. isa = PBXGroup;
  1615. children = (
  1616. 81C326652A36B794002EF442 /* VerScrollTextView.h */,
  1617. 81C326642A36B794002EF442 /* VerScrollTextView.m */,
  1618. );
  1619. path = TextRollIngView;
  1620. sourceTree = "<group>";
  1621. };
  1622. 81C326672A36F019002EF442 /* vm */ = {
  1623. isa = PBXGroup;
  1624. children = (
  1625. 81C326682A36F035002EF442 /* ASProductListViewModel.h */,
  1626. 81C326692A36F035002EF442 /* ASProductListViewModel.m */,
  1627. 8193492E2BF58FFF009FDDB2 /* ASHomeViewModel.h */,
  1628. 8193492F2BF59000009FDDB2 /* ASHomeViewModel.m */,
  1629. 819349332BF5A679009FDDB2 /* ASJumpModel.h */,
  1630. 819349342BF5A679009FDDB2 /* ASJumpModel.m */,
  1631. );
  1632. path = vm;
  1633. sourceTree = "<group>";
  1634. };
  1635. 81C3266B2A36FEEC002EF442 /* productList */ = {
  1636. isa = PBXGroup;
  1637. children = (
  1638. 81C3266C2A36FF2B002EF442 /* ASProductListActiveHeaderView.h */,
  1639. 81C3266D2A36FF2B002EF442 /* ASProductListActiveHeaderView.m */,
  1640. 81C3266F2A37020A002EF442 /* ASProductListMenuHeaderView.h */,
  1641. 81C326702A37020A002EF442 /* ASProductListMenuHeaderView.m */,
  1642. 815DA3D72A39575100616EF7 /* ASProductListImageCell.h */,
  1643. 815DA3D82A39575100616EF7 /* ASProductListImageCell.m */,
  1644. 815DA3DA2A39625200616EF7 /* ASProductListTypeDesCell.h */,
  1645. 815DA3DB2A39625200616EF7 /* ASProductListTypeDesCell.m */,
  1646. 815DA3DD2A396BD300616EF7 /* ASMoreBtCell.h */,
  1647. 815DA3DE2A396BD300616EF7 /* ASMoreBtCell.m */,
  1648. 81717C8F2A3BE39C00648139 /* ASProductSortFilterView.h */,
  1649. 81717C902A3BE39C00648139 /* ASProductSortFilterView.m */,
  1650. 81717C922A3BE4E000648139 /* ASProductListSortFilterCell.h */,
  1651. 81717C932A3BE4E000648139 /* ASProductListSortFilterCell.m */,
  1652. 81717CA02A3C0A3500648139 /* KWProductMenuFilterItemHeaderView.h */,
  1653. 81717C9D2A3C0A3400648139 /* KWProductMenuFilterItemHeaderView.m */,
  1654. 81717CA32A3C0A5000648139 /* KWProductFilterItemCell.h */,
  1655. 81717CA42A3C0A5000648139 /* KWProductFilterItemCell.m */,
  1656. 81717C9E2A3C0A3500648139 /* KWProductMenuFilterView.h */,
  1657. 81717C9F2A3C0A3500648139 /* KWProductMenuFilterView.m */,
  1658. 81717CA92A3C359E00648139 /* ASProductlistFilterPriceCollectCell.h */,
  1659. 81717CAA2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m */,
  1660. );
  1661. path = productList;
  1662. sourceTree = "<group>";
  1663. };
  1664. 81C3B44B29F6691300D79294 /* Extensions */ = {
  1665. isa = PBXGroup;
  1666. children = (
  1667. 8810F51D2BEC565F00346FD4 /* UILabel+Create.h */,
  1668. 8810F51C2BEC565F00346FD4 /* UILabel+Create.m */,
  1669. 81C3B45329F66C1700D79294 /* UIView+PublicInit.h */,
  1670. 81C3B45429F66C1700D79294 /* UIView+PublicInit.m */,
  1671. 81932E2929F7539B007C37AF /* UIColor+AS.h */,
  1672. 81932E2A29F7539B007C37AF /* UIColor+AS.m */,
  1673. 81BEA6812A2D7CF3009D36C4 /* UITableView+ASBase.h */,
  1674. 81BEA6822A2D7CF3009D36C4 /* UITableView+ASBase.m */,
  1675. );
  1676. path = Extensions;
  1677. sourceTree = "<group>";
  1678. };
  1679. 81C796282A539E65003083B8 /* Message */ = {
  1680. isa = PBXGroup;
  1681. children = (
  1682. 81C796292A539E80003083B8 /* ASMessageListViewController.h */,
  1683. 81C7962A2A539E80003083B8 /* ASMessageListViewController.m */,
  1684. 81C7962C2A539F4D003083B8 /* ASMessageListCell.h */,
  1685. 81C7962D2A539F4D003083B8 /* ASMessageListCell.m */,
  1686. );
  1687. path = Message;
  1688. sourceTree = "<group>";
  1689. };
  1690. 81C796312A55159B003083B8 /* Setting */ = {
  1691. isa = PBXGroup;
  1692. children = (
  1693. 81C796322A551643003083B8 /* ASSettingViewController.h */,
  1694. 81C796332A551643003083B8 /* ASSettingViewController.m */,
  1695. 81C7963D2A551FB0003083B8 /* ASInfomationSetController.h */,
  1696. 81C7963E2A551FB0003083B8 /* ASInfomationSetController.m */,
  1697. 81C796442A5542B2003083B8 /* ASHelpListViewController.h */,
  1698. 81C796452A5542B2003083B8 /* ASHelpListViewController.m */,
  1699. 81056D5A2B60F571009219A3 /* ASHelpListUrlModel.h */,
  1700. 81056D5B2B60F571009219A3 /* ASHelpListUrlModel.m */,
  1701. 81C7963C2A551F86003083B8 /* view */,
  1702. );
  1703. path = Setting;
  1704. sourceTree = "<group>";
  1705. };
  1706. 81C7963B2A5517FE003083B8 /* switchBtn */ = {
  1707. isa = PBXGroup;
  1708. children = (
  1709. 81C796382A5517F7003083B8 /* KWSwitchButton.h */,
  1710. 81C796392A5517F7003083B8 /* KWSwitchButton.m */,
  1711. );
  1712. path = switchBtn;
  1713. sourceTree = "<group>";
  1714. };
  1715. 81C7963C2A551F86003083B8 /* view */ = {
  1716. isa = PBXGroup;
  1717. children = (
  1718. 81C796352A5517B0003083B8 /* ASSettingListCell.h */,
  1719. 81C796362A5517B0003083B8 /* ASSettingListCell.m */,
  1720. );
  1721. path = view;
  1722. sourceTree = "<group>";
  1723. };
  1724. 81C796432A551FF0003083B8 /* textField */ = {
  1725. isa = PBXGroup;
  1726. children = (
  1727. 81C796412A551FE9003083B8 /* KWTextField.h */,
  1728. 81C796402A551FE9003083B8 /* KWTextField.m */,
  1729. );
  1730. path = textField;
  1731. sourceTree = "<group>";
  1732. };
  1733. 81D484DD2A0F40510075DC43 /* UserCenter */ = {
  1734. isa = PBXGroup;
  1735. children = (
  1736. 819349162BF1EB11009FDDB2 /* Orders */,
  1737. 8193D5C52BEA1F9600B9AB11 /* Address */,
  1738. 81C796312A55159B003083B8 /* Setting */,
  1739. 81C796282A539E65003083B8 /* Message */,
  1740. 81E5EE8D2A498FA20075695F /* VipCenter */,
  1741. 81DFA5722A47D91400DA708B /* ConponsAndGiftCard */,
  1742. 811F42432A40531C00DA68F1 /* Points */,
  1743. 811F42422A40530200DA68F1 /* UserCenterHome */,
  1744. 81E257F52A12259B004EEF71 /* UserCenter.xcassets */,
  1745. 8134C1AB2A13094F006EB0EC /* Target_userCenter.h */,
  1746. 8134C1AC2A13094F006EB0EC /* Target_userCenter.m */,
  1747. );
  1748. path = UserCenter;
  1749. sourceTree = "<group>";
  1750. };
  1751. 81DFA55A2A46C44800DA708B /* WebView */ = {
  1752. isa = PBXGroup;
  1753. children = (
  1754. 81DFA55B2A46C46D00DA708B /* ASWebViewController.h */,
  1755. 81DFA55C2A46C46D00DA708B /* ASWebViewController.m */,
  1756. 81DFA5612A46CD6000DA708B /* Target_WebView.h */,
  1757. 81DFA5622A46CD6000DA708B /* Target_WebView.m */,
  1758. );
  1759. path = WebView;
  1760. sourceTree = "<group>";
  1761. };
  1762. 81DFA5642A46D5DF00DA708B /* view */ = {
  1763. isa = PBXGroup;
  1764. children = (
  1765. 811F42472A40536C00DA68F1 /* ASPointHeadView.h */,
  1766. 811F42482A40536C00DA68F1 /* ASPointHeadView.m */,
  1767. 81DFA5572A4681E900DA708B /* ASPointEranCell.h */,
  1768. 81DFA5582A4681E900DA708B /* ASPointEranCell.m */,
  1769. 81DFA5682A46D82200DA708B /* ASPointDetailTableView.h */,
  1770. 81DFA5692A46D82200DA708B /* ASPointDetailTableView.m */,
  1771. 81DFA56F2A46D95400DA708B /* ASPointDetailCell.h */,
  1772. 81DFA5702A46D95400DA708B /* ASPointDetailCell.m */,
  1773. );
  1774. path = view;
  1775. sourceTree = "<group>";
  1776. };
  1777. 81DFA56E2A46D8F600DA708B /* model */ = {
  1778. isa = PBXGroup;
  1779. children = (
  1780. 81DFA56B2A46D86500DA708B /* ASPointDetailModel.h */,
  1781. 81DFA56C2A46D86500DA708B /* ASPointDetailModel.m */,
  1782. 8131A2912B3950DA00A191BE /* ASExtraPointsModel.h */,
  1783. 8131A2922B3950DA00A191BE /* ASExtraPointsModel.m */,
  1784. );
  1785. path = model;
  1786. sourceTree = "<group>";
  1787. };
  1788. 81DFA5722A47D91400DA708B /* ConponsAndGiftCard */ = {
  1789. isa = PBXGroup;
  1790. children = (
  1791. 81DFA5732A47D97C00DA708B /* ASCouponsListViewController.h */,
  1792. 81DFA5742A47D97C00DA708B /* ASCouponsListViewController.m */,
  1793. 816D0C982AF3901C00395B5B /* ASGiftCardListViewController.h */,
  1794. 816D0C992AF3901C00395B5B /* ASGiftCardListViewController.m */,
  1795. 81E73EB82B1AAB4900C10938 /* vm */,
  1796. 81E73EB92B1AAB5400C10938 /* v */,
  1797. 81E73EBA2B1AAB5F00C10938 /* m */,
  1798. );
  1799. path = ConponsAndGiftCard;
  1800. sourceTree = "<group>";
  1801. };
  1802. 81E257EF2A12093A004EEF71 /* CustomView */ = {
  1803. isa = PBXGroup;
  1804. children = (
  1805. 81C796432A551FF0003083B8 /* textField */,
  1806. 81C7963B2A5517FE003083B8 /* switchBtn */,
  1807. 81E257FE2A1235D1004EEF71 /* CutomBottomBar */,
  1808. 81E257FA2A1233F1004EEF71 /* EnterItemV */,
  1809. 81E257F02A120952004EEF71 /* UserInfoV */,
  1810. 8134C1B52A1359E6006EB0EC /* ASSignDayView.h */,
  1811. 8134C1B62A1359E6006EB0EC /* ASSignDayView.m */,
  1812. 81354C052A289C230082C93A /* someView */,
  1813. 81354C042A289C100082C93A /* productView */,
  1814. );
  1815. path = CustomView;
  1816. sourceTree = "<group>";
  1817. };
  1818. 81E257F02A120952004EEF71 /* UserInfoV */ = {
  1819. isa = PBXGroup;
  1820. children = (
  1821. 81E257F12A120975004EEF71 /* ASUserBaseInfoView.h */,
  1822. 81E257F22A120975004EEF71 /* ASUserBaseInfoView.m */,
  1823. );
  1824. path = UserInfoV;
  1825. sourceTree = "<group>";
  1826. };
  1827. 81E257F72A122AAB004EEF71 /* Icons */ = {
  1828. isa = PBXGroup;
  1829. children = (
  1830. 81E257F82A122AC6004EEF71 /* ASUI.xcassets */,
  1831. );
  1832. path = Icons;
  1833. sourceTree = "<group>";
  1834. };
  1835. 81E257FA2A1233F1004EEF71 /* EnterItemV */ = {
  1836. isa = PBXGroup;
  1837. children = (
  1838. 81E257FB2A12340E004EEF71 /* ASEnterItemV.h */,
  1839. 81E257FC2A12340E004EEF71 /* ASEnterItemV.m */,
  1840. );
  1841. path = EnterItemV;
  1842. sourceTree = "<group>";
  1843. };
  1844. 81E257FE2A1235D1004EEF71 /* CutomBottomBar */ = {
  1845. isa = PBXGroup;
  1846. children = (
  1847. );
  1848. path = CutomBottomBar;
  1849. sourceTree = "<group>";
  1850. };
  1851. 81E5EE8D2A498FA20075695F /* VipCenter */ = {
  1852. isa = PBXGroup;
  1853. children = (
  1854. 81E5EE8E2A498FC90075695F /* ASVipCenterViewController.h */,
  1855. 81E5EE8F2A498FC90075695F /* ASVipCenterViewController.m */,
  1856. 81C796222A4FD63A003083B8 /* ASVipCouponsViewController.h */,
  1857. 81C796232A4FD63A003083B8 /* ASVipCouponsViewController.m */,
  1858. 81AA11CE2B23EA15008EB5C7 /* ASVipCouponsViewModel.h */,
  1859. 81AA11CF2B23EA15008EB5C7 /* ASVipCouponsViewModel.m */,
  1860. 81AA11D12B23EC20008EB5C7 /* ASVipCouponModel.h */,
  1861. 81AA11D22B23EC20008EB5C7 /* ASVipCouponModel.m */,
  1862. 81C796252A4FD898003083B8 /* ASBirthdayTreatViewController.h */,
  1863. 81C796262A4FD898003083B8 /* ASBirthdayTreatViewController.m */,
  1864. 81E5EE912A4A75DF0075695F /* Views */,
  1865. );
  1866. path = VipCenter;
  1867. sourceTree = "<group>";
  1868. };
  1869. 81E5EE912A4A75DF0075695F /* Views */ = {
  1870. isa = PBXGroup;
  1871. children = (
  1872. 81E5EE922A4A760D0075695F /* ASVipCenterLineItemView.h */,
  1873. 81E5EE932A4A760D0075695F /* ASVipCenterLineItemView.m */,
  1874. 81E5EE952A4A822D0075695F /* ASVipCenterCollectCell.h */,
  1875. 81E5EE962A4A822D0075695F /* ASVipCenterCollectCell.m */,
  1876. );
  1877. path = Views;
  1878. sourceTree = "<group>";
  1879. };
  1880. 81E73EB82B1AAB4900C10938 /* vm */ = {
  1881. isa = PBXGroup;
  1882. children = (
  1883. 812021232B185A610026B8B5 /* ASCouponsListViewModel.h */,
  1884. 812021242B185A610026B8B5 /* ASCouponsListViewModel.m */,
  1885. 81E73EBB2B1AABF300C10938 /* ASGiftCardListViewModel.h */,
  1886. 81E73EBC2B1AABF300C10938 /* ASGiftCardListViewModel.m */,
  1887. );
  1888. path = vm;
  1889. sourceTree = "<group>";
  1890. };
  1891. 81E73EB92B1AAB5400C10938 /* v */ = {
  1892. isa = PBXGroup;
  1893. children = (
  1894. 816D0C9B2AF3988300395B5B /* ASGiftCardAvailabelCell.h */,
  1895. 816D0C9C2AF3988300395B5B /* ASGiftCardAvailabelCell.m */,
  1896. 81DFA5762A47F28D00DA708B /* ASCouponListCell.h */,
  1897. 81DFA5772A47F28D00DA708B /* ASCouponListCell.m */,
  1898. 81CE28922AF490C20012AA45 /* ASGiftCardTableView.h */,
  1899. 81CE28932AF490C20012AA45 /* ASGiftCardTableView.m */,
  1900. );
  1901. path = v;
  1902. sourceTree = "<group>";
  1903. };
  1904. 81E73EBA2B1AAB5F00C10938 /* m */ = {
  1905. isa = PBXGroup;
  1906. children = (
  1907. 81CE28952AF4953C0012AA45 /* ASGiftCardModel.h */,
  1908. 81CE28962AF4953C0012AA45 /* ASGiftCardModel.m */,
  1909. 812021262B185C000026B8B5 /* ASCouponsModel.h */,
  1910. 812021272B185C000026B8B5 /* ASCouponsModel.m */,
  1911. );
  1912. path = m;
  1913. sourceTree = "<group>";
  1914. };
  1915. 81FC41992BEB1DDC00EB0A85 /* edit */ = {
  1916. isa = PBXGroup;
  1917. children = (
  1918. 81FC419A2BEB1E0200EB0A85 /* ASEditAddressViewController.h */,
  1919. 81FC419B2BEB1E0200EB0A85 /* ASEditAddressViewController.m */,
  1920. );
  1921. path = edit;
  1922. sourceTree = "<group>";
  1923. };
  1924. 8810F52D2BF3676900346FD4 /* PayManager */ = {
  1925. isa = PBXGroup;
  1926. children = (
  1927. 8810F52E2BF3678400346FD4 /* ASCheckoutPayManager.h */,
  1928. 8810F52F2BF3678400346FD4 /* ASCheckoutPayManager.m */,
  1929. );
  1930. path = PayManager;
  1931. sourceTree = "<group>";
  1932. };
  1933. 8810F54E2BF5EBF400346FD4 /* View */ = {
  1934. isa = PBXGroup;
  1935. children = (
  1936. 8810F54C2BF5EBF400346FD4 /* ASOrderListCell.h */,
  1937. 8810F54D2BF5EBF400346FD4 /* ASOrderListCell.m */,
  1938. 8810F5462BF5EBF400346FD4 /* ASOrderDetailsInfoCell.h */,
  1939. 8810F5472BF5EBF400346FD4 /* ASOrderDetailsInfoCell.m */,
  1940. 8810F5482BF5EBF400346FD4 /* ASOrderDetailsItemsCell.h */,
  1941. 8810F5492BF5EBF400346FD4 /* ASOrderDetailsItemsCell.m */,
  1942. 8810F54A2BF5EBF400346FD4 /* ASOrderDetailsPriceCell.h */,
  1943. 8810F54B2BF5EBF400346FD4 /* ASOrderDetailsPriceCell.m */,
  1944. 8810F56B2BF5F8D800346FD4 /* ASPayFinishHeadView.h */,
  1945. 8810F56C2BF5F8D800346FD4 /* ASPayFinishHeadView.m */,
  1946. );
  1947. path = View;
  1948. sourceTree = "<group>";
  1949. };
  1950. 8810F5532BF5EBF400346FD4 /* ViewModel */ = {
  1951. isa = PBXGroup;
  1952. children = (
  1953. 8810F5512BF5EBF400346FD4 /* ASOrderListViewModel.h */,
  1954. 8810F5522BF5EBF400346FD4 /* ASOrderListViewModel.m */,
  1955. 8810F54F2BF5EBF400346FD4 /* ASOrderDetailsVM.h */,
  1956. 8810F5502BF5EBF400346FD4 /* ASOrderDetailsVM.m */,
  1957. );
  1958. path = ViewModel;
  1959. sourceTree = "<group>";
  1960. };
  1961. 8810F5562BF5EBF400346FD4 /* Model */ = {
  1962. isa = PBXGroup;
  1963. children = (
  1964. 8810F5542BF5EBF400346FD4 /* ASOrderDetailsModel.h */,
  1965. 8810F5552BF5EBF400346FD4 /* ASOrderDetailsModel.m */,
  1966. );
  1967. path = Model;
  1968. sourceTree = "<group>";
  1969. };
  1970. 8810F55D2BF5EBF400346FD4 /* Controller */ = {
  1971. isa = PBXGroup;
  1972. children = (
  1973. 8810F5592BF5EBF400346FD4 /* ASOrderListSubController.h */,
  1974. 8810F55A2BF5EBF400346FD4 /* ASOrderListSubController.m */,
  1975. 8810F55B2BF5EBF400346FD4 /* ASOrderListViewController.h */,
  1976. 8810F55C2BF5EBF400346FD4 /* ASOrderListViewController.m */,
  1977. 8810F5572BF5EBF400346FD4 /* ASOrderDetailsViewController.h */,
  1978. 8810F5582BF5EBF400346FD4 /* ASOrderDetailsViewController.m */,
  1979. 8810F5682BF5F86D00346FD4 /* ASPayFailedViewController.h */,
  1980. 8810F5692BF5F86D00346FD4 /* ASPayFailedViewController.m */,
  1981. );
  1982. path = Controller;
  1983. sourceTree = "<group>";
  1984. };
  1985. 9A1247912A1B07F400126226 /* Tool */ = {
  1986. isa = PBXGroup;
  1987. children = (
  1988. 9A1247922A1B082300126226 /* Fuction_Tool.h */,
  1989. 9A1247932A1B082300126226 /* Fuction_Tool.m */,
  1990. );
  1991. path = Tool;
  1992. sourceTree = "<group>";
  1993. };
  1994. 9A2415B52B6770D700A6E903 /* Cell */ = {
  1995. isa = PBXGroup;
  1996. children = (
  1997. 9A2415BA2B6784A500A6E903 /* MyCartItemCell.h */,
  1998. 9A2415BB2B6784A500A6E903 /* MyCartItemCell.m */,
  1999. 9A8BED312B6B86A20080DA36 /* MyCartCouponCell.h */,
  2000. 9A8BED322B6B86A20080DA36 /* MyCartCouponCell.m */,
  2001. 9AE3674B2B6CDDE50068F10B /* MyCartGrandTotalCell.h */,
  2002. 9AE3674C2B6CDDE50068F10B /* MyCartGrandTotalCell.m */,
  2003. 9AACEE902B7F137D00223466 /* MyCartPayTypeCell.h */,
  2004. 9AACEE912B7F137D00223466 /* MyCartPayTypeCell.m */,
  2005. );
  2006. path = Cell;
  2007. sourceTree = "<group>";
  2008. };
  2009. 9A2415B62B677DC000A6E903 /* Target */ = {
  2010. isa = PBXGroup;
  2011. children = (
  2012. 9A2415B72B677DDF00A6E903 /* Target_Cart.h */,
  2013. 9A2415B82B677DDF00A6E903 /* Target_Cart.m */,
  2014. );
  2015. path = Target;
  2016. sourceTree = "<group>";
  2017. };
  2018. 9A2646BA2A187B6100CBFBDC /* Product */ = {
  2019. isa = PBXGroup;
  2020. children = (
  2021. 9A1247912A1B07F400126226 /* Tool */,
  2022. 9AD364CD2A05EC2700452C7A /* Config */,
  2023. 9ACBEC1E2A1457E800A8F97A /* CTMediatoaTargets */,
  2024. );
  2025. path = Product;
  2026. sourceTree = "<group>";
  2027. };
  2028. 9A31EDFA2B468A41009F11EE /* RadioButton */ = {
  2029. isa = PBXGroup;
  2030. children = (
  2031. 9A31EDFB2B468A54009F11EE /* RadioButton.h */,
  2032. 9A31EDFC2B468A54009F11EE /* RadioButton.m */,
  2033. );
  2034. path = RadioButton;
  2035. sourceTree = "<group>";
  2036. };
  2037. 9A32A2252B4BEB2D005A5831 /* Revies */ = {
  2038. isa = PBXGroup;
  2039. children = (
  2040. 9A98E5042B5A159500E8C5C1 /* Base */,
  2041. 9ADA8A1C2B4E481E00BACDEA /* GoodsReviewsWriteC.h */,
  2042. 9ADA8A1D2B4E481E00BACDEA /* GoodsReviewsWriteC.m */,
  2043. 9A32A2262B4BEB5F005A5831 /* V */,
  2044. 9A35203B2B47FEDE00D097CB /* cell */,
  2045. );
  2046. path = Revies;
  2047. sourceTree = "<group>";
  2048. };
  2049. 9A32A2262B4BEB5F005A5831 /* V */ = {
  2050. isa = PBXGroup;
  2051. children = (
  2052. 9ADA8A202B4E96C900BACDEA /* GoodWritUpImgV.h */,
  2053. 9ADA8A1F2B4E96C800BACDEA /* GoodWritUpImgV.m */,
  2054. 9A35203C2B47FF2300D097CB /* GoodsReviewsListTableV.h */,
  2055. 9A35203D2B47FF2300D097CB /* GoodsReviewsListTableV.m */,
  2056. 9AD4D3952B48E8780086D6FB /* ReviewsTableHearV.h */,
  2057. 9AD4D3962B48E8780086D6FB /* ReviewsTableHearV.m */,
  2058. );
  2059. path = V;
  2060. sourceTree = "<group>";
  2061. };
  2062. 9A337E342A04EE1A00D058A5 /* BViewController */ = {
  2063. isa = PBXGroup;
  2064. children = (
  2065. 9A337E352A04EE1A00D058A5 /* Tatgets */,
  2066. 9A337E382A04EE1A00D058A5 /* BViewController.h */,
  2067. 9A337E392A04EE1A00D058A5 /* BViewController.m */,
  2068. );
  2069. path = BViewController;
  2070. sourceTree = "<group>";
  2071. };
  2072. 9A337E352A04EE1A00D058A5 /* Tatgets */ = {
  2073. isa = PBXGroup;
  2074. children = (
  2075. 9A337E362A04EE1A00D058A5 /* Target_B.m */,
  2076. 9A337E372A04EE1A00D058A5 /* Target_B.h */,
  2077. );
  2078. path = Tatgets;
  2079. sourceTree = "<group>";
  2080. };
  2081. 9A337E4B2A04F42500D058A5 /* AMoule */ = {
  2082. isa = PBXGroup;
  2083. children = (
  2084. 9A337E4C2A04F46600D058A5 /* AViewController.h */,
  2085. 9A337E4D2A04F46600D058A5 /* AViewController.m */,
  2086. );
  2087. path = AMoule;
  2088. sourceTree = "<group>";
  2089. };
  2090. 9A337E4F2A04FA0A00D058A5 /* Goods */ = {
  2091. isa = PBXGroup;
  2092. children = (
  2093. 9A5F52982B5F5A07007D3791 /* GoodsSize */,
  2094. 9A32A2252B4BEB2D005A5831 /* Revies */,
  2095. 9A3F5CB02B3BF61B00DDB6A7 /* Assets */,
  2096. 9A3735702A0B4606008BB3CE /* VM */,
  2097. 9AD364C82A05E77200452C7A /* M */,
  2098. 9AD364C72A05E76D00452C7A /* V */,
  2099. 9AD364C32A05E71000452C7A /* VC */,
  2100. 9AD364BF2A05E68400452C7A /* Target */,
  2101. );
  2102. path = Goods;
  2103. sourceTree = "<group>";
  2104. };
  2105. 9A3520372B479B8100D097CB /* YJLAttributesLabel */ = {
  2106. isa = PBXGroup;
  2107. children = (
  2108. 9A3520382B479BAA00D097CB /* YJLAttributesLabel.h */,
  2109. 9A3520392B479BAA00D097CB /* YJLAttributesLabel.m */,
  2110. );
  2111. path = YJLAttributesLabel;
  2112. sourceTree = "<group>";
  2113. };
  2114. 9A35203B2B47FEDE00D097CB /* cell */ = {
  2115. isa = PBXGroup;
  2116. children = (
  2117. 9A32A21F2B4BEA5B005A5831 /* GoodsReviewsCell.h */,
  2118. 9A32A2202B4BEA5C005A5831 /* GoodsReviewsCell.m */,
  2119. 9A32A2232B4BEAA7005A5831 /* GoodsReviewsImgV.h */,
  2120. 9A32A2222B4BEAA7005A5831 /* GoodsReviewsImgV.m */,
  2121. );
  2122. path = cell;
  2123. sourceTree = "<group>";
  2124. };
  2125. 9A3735702A0B4606008BB3CE /* VM */ = {
  2126. isa = PBXGroup;
  2127. children = (
  2128. 9AC2CC202B3A673B005187BD /* ASGoodsDetailsVM.h */,
  2129. 9AC2CC212B3A673B005187BD /* ASGoodsDetailsVM.m */,
  2130. );
  2131. path = VM;
  2132. sourceTree = "<group>";
  2133. };
  2134. 9A3F5CAC2B3BC10400DDB6A7 /* Base */ = {
  2135. isa = PBXGroup;
  2136. children = (
  2137. 9A3F5CB32B3BF71A00DDB6A7 /* Assets */,
  2138. 9AF908592B396BD1008AC2D2 /* RYNetWork */,
  2139. );
  2140. path = Base;
  2141. sourceTree = "<group>";
  2142. };
  2143. 9A3F5CB02B3BF61B00DDB6A7 /* Assets */ = {
  2144. isa = PBXGroup;
  2145. children = (
  2146. 9A3F5CB12B3BF63A00DDB6A7 /* Goods.xcassets */,
  2147. );
  2148. path = Assets;
  2149. sourceTree = "<group>";
  2150. };
  2151. 9A3F5CB32B3BF71A00DDB6A7 /* Assets */ = {
  2152. isa = PBXGroup;
  2153. children = (
  2154. 9A3F5CB42B3BF73100DDB6A7 /* Base.xcassets */,
  2155. );
  2156. path = Assets;
  2157. sourceTree = "<group>";
  2158. };
  2159. 9A5C64522A11E58F00CBB185 /* Login */ = {
  2160. isa = PBXGroup;
  2161. children = (
  2162. 9ACBEC222A1464CD00A8F97A /* VC */,
  2163. 9A65DE4E2A132BDF00BB1269 /* V */,
  2164. 9AD6A5462A123799001DE3D9 /* Target */,
  2165. 9AD6A53A2A120C56001DE3D9 /* Assets */,
  2166. 9AD6A53F2A1218D0001DE3D9 /* BaseView */,
  2167. );
  2168. path = Login;
  2169. sourceTree = "<group>";
  2170. };
  2171. 9A5F528E2B5F59EA007D3791 /* Cell */ = {
  2172. isa = PBXGroup;
  2173. children = (
  2174. 9A5F52912B5F59EA007D3791 /* GoodsSizeCountCell.h */,
  2175. 9A5F52932B5F59EA007D3791 /* GoodsSizeCountCell.m */,
  2176. 9A5F52922B5F59EA007D3791 /* GoosSizeSelectCell.h */,
  2177. 9A5F528F2B5F59EA007D3791 /* GoosSizeSelectCell.m */,
  2178. 9A3ADC082B60BAE200B04BA6 /* GoodsSizePayMentCell.h */,
  2179. 9A3ADC092B60BAE200B04BA6 /* GoodsSizePayMentCell.m */,
  2180. );
  2181. path = Cell;
  2182. sourceTree = "<group>";
  2183. };
  2184. 9A5F52982B5F5A07007D3791 /* GoodsSize */ = {
  2185. isa = PBXGroup;
  2186. children = (
  2187. 9A5F528C2B5F59D1007D3791 /* GoodsSizeSelectTableV.h */,
  2188. 9A5F528B2B5F59D0007D3791 /* GoodsSizeSelectTableV.m */,
  2189. 9A5F528E2B5F59EA007D3791 /* Cell */,
  2190. );
  2191. path = GoodsSize;
  2192. sourceTree = "<group>";
  2193. };
  2194. 9A65DE4E2A132BDF00BB1269 /* V */ = {
  2195. isa = PBXGroup;
  2196. children = (
  2197. 81E1950E2C01664C005471A1 /* APPassForgetCodeV.h */,
  2198. 81E195122C01664D005471A1 /* APPassForgetCodeV.m */,
  2199. 81E195132C01664D005471A1 /* APPassForgetEmailV.h */,
  2200. 81E195102C01664D005471A1 /* APPassForgetEmailV.m */,
  2201. 81E1950F2C01664C005471A1 /* APPassForgetNewPassV.h */,
  2202. 81E195142C01664E005471A1 /* APPassForgetNewPassV.m */,
  2203. 9ACBEC262A1472AF00A8F97A /* LoginSignUpV.h */,
  2204. 9ACBEC272A1472AF00A8F97A /* LoginSignUpV.m */,
  2205. 9A65DE4F2A132FB700BB1269 /* LoginThirdAuthV.h */,
  2206. 9A65DE502A132FB700BB1269 /* LoginThirdAuthV.m */,
  2207. );
  2208. path = V;
  2209. sourceTree = "<group>";
  2210. };
  2211. 9A78E0112B6388F500CA4E32 /* Cart */ = {
  2212. isa = PBXGroup;
  2213. children = (
  2214. 8810F52D2BF3676900346FD4 /* PayManager */,
  2215. 9AFCDABF2B809C29003D3573 /* Checkout */,
  2216. 9A2415B62B677DC000A6E903 /* Target */,
  2217. 9A2415B52B6770D700A6E903 /* Cell */,
  2218. 9AEFA7DB2B649EF700AE1974 /* V */,
  2219. 9A78E0192B63973B00CA4E32 /* M */,
  2220. 9A78E0152B63910A00CA4E32 /* VM */,
  2221. 9A78E0122B6389FC00CA4E32 /* Cart_MyCartC.h */,
  2222. 9A78E0132B6389FC00CA4E32 /* Cart_MyCartC.m */,
  2223. 9AACEE932B7F473200223466 /* Cart_CheckoutC.h */,
  2224. 9AACEE942B7F473200223466 /* Cart_CheckoutC.m */,
  2225. 8810F5222BEDF31500346FD4 /* Cart.xcassets */,
  2226. );
  2227. path = Cart;
  2228. sourceTree = "<group>";
  2229. };
  2230. 9A78E0152B63910A00CA4E32 /* VM */ = {
  2231. isa = PBXGroup;
  2232. children = (
  2233. 9A78E0162B6396D600CA4E32 /* CartVM.h */,
  2234. 9A78E0172B6396D600CA4E32 /* CartVM.m */,
  2235. );
  2236. path = VM;
  2237. sourceTree = "<group>";
  2238. };
  2239. 9A78E0192B63973B00CA4E32 /* M */ = {
  2240. isa = PBXGroup;
  2241. children = (
  2242. 9A78E01A2B639F4700CA4E32 /* CartTotalsM.h */,
  2243. 9A78E01B2B639F4700CA4E32 /* CartTotalsM.m */,
  2244. 8810F5132BEB754800346FD4 /* ASCheckoutModel.h */,
  2245. 8810F5142BEB754800346FD4 /* ASCheckoutModel.m */,
  2246. );
  2247. path = M;
  2248. sourceTree = "<group>";
  2249. };
  2250. 9A8DD8CC2A0B9E0C00573324 /* Assets */ = {
  2251. isa = PBXGroup;
  2252. children = (
  2253. 9A7DA6A02A0CE33500136974 /* Asteria.xcassets */,
  2254. 9A5C645A2A1206E500CBB185 /* common.xcassets */,
  2255. );
  2256. path = Assets;
  2257. sourceTree = "<group>";
  2258. };
  2259. 9A98E5042B5A159500E8C5C1 /* Base */ = {
  2260. isa = PBXGroup;
  2261. children = (
  2262. 9A98E5062B5A15A400E8C5C1 /* QDSingleImagePickerPreviewViewController.h */,
  2263. 9A98E5052B5A15A400E8C5C1 /* QDSingleImagePickerPreviewViewController.m */,
  2264. );
  2265. path = Base;
  2266. sourceTree = "<group>";
  2267. };
  2268. 9AACEE8E2B7F12DB00223466 /* Common */ = {
  2269. isa = PBXGroup;
  2270. children = (
  2271. 9AACEE8F2B7F12FF00223466 /* V */,
  2272. );
  2273. path = Common;
  2274. sourceTree = "<group>";
  2275. };
  2276. 9AACEE8F2B7F12FF00223466 /* V */ = {
  2277. isa = PBXGroup;
  2278. children = (
  2279. 9A3F5CAD2B3BC11000DDB6A7 /* AlertMyCartDeleteV.h */,
  2280. 9A3F5CAE2B3BC11000DDB6A7 /* AlertMyCartDeleteV.m */,
  2281. 9A3F5CA92B3BBEAB00DDB6A7 /* GoodsDetailsPayV.h */,
  2282. 9A3F5CAA2B3BBEAB00DDB6A7 /* GoodsDetailsPayV.m */,
  2283. );
  2284. path = V;
  2285. sourceTree = "<group>";
  2286. };
  2287. 9ACBEC1E2A1457E800A8F97A /* CTMediatoaTargets */ = {
  2288. isa = PBXGroup;
  2289. children = (
  2290. 9ACBEC1F2A14585300A8F97A /* CTMediator+ASTargerts.h */,
  2291. 9ACBEC202A14585300A8F97A /* CTMediator+ASTargerts.m */,
  2292. 816020082A2DD59E00E4A8F1 /* CTMediator+Home.h */,
  2293. 816020092A2DD59E00E4A8F1 /* CTMediator+Home.m */,
  2294. 8160200B2A2DD5C000E4A8F1 /* CTMediator+UserCenter.h */,
  2295. 8160200C2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m */,
  2296. 81DFA55E2A46CC8E00DA708B /* CTMediator+ASWebView.h */,
  2297. 81DFA55F2A46CC8E00DA708B /* CTMediator+ASWebView.m */,
  2298. 81717D262A3C55CC00648139 /* CTMediator+Categorys.h */,
  2299. 81717D272A3C55CC00648139 /* CTMediator+Categorys.m */,
  2300. );
  2301. path = CTMediatoaTargets;
  2302. sourceTree = "<group>";
  2303. };
  2304. 9ACBEC222A1464CD00A8F97A /* VC */ = {
  2305. isa = PBXGroup;
  2306. children = (
  2307. 9A5C64562A12064300CBB185 /* AS_LoginC.h */,
  2308. 9A5C64572A12064300CBB185 /* AS_LoginC.m */,
  2309. 9ACBEC232A14707400A8F97A /* AS_SignUpC.h */,
  2310. 9ACBEC242A14707400A8F97A /* AS_SignUpC.m */,
  2311. 81E1950D2C01664C005471A1 /* LoginForgotC.h */,
  2312. 81E195112C01664D005471A1 /* LoginForgotC.m */,
  2313. 9A1247952A1B0A2800126226 /* AS_ForgotC.h */,
  2314. 9A1247962A1B0A2800126226 /* AS_ForgotC.m */,
  2315. );
  2316. path = VC;
  2317. sourceTree = "<group>";
  2318. };
  2319. 9AD3459F2A08D55D005CA070 /* Banner */ = {
  2320. isa = PBXGroup;
  2321. children = (
  2322. 9AD3461E2A08E30E005CA070 /* SelectVCollectionViewCell.h */,
  2323. 9AD3461F2A08E30E005CA070 /* SelectVCollectionViewCell.m */,
  2324. 9AD3461A2A08D692005CA070 /* M */,
  2325. 9AD345AA2A08D59A005CA070 /* WKM_goodsBanner.h */,
  2326. 9AD345AB2A08D59A005CA070 /* WKM_goodsBanner.m */,
  2327. 9AD345AD2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.h */,
  2328. 9AD345AE2A08D5EB005CA070 /* GoodsBannerCollectionViewCell.m */,
  2329. 9AD345AF2A08D5EC005CA070 /* GoodsVideoCollectionViewCell.h */,
  2330. 9AD345B02A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m */,
  2331. 9AD345B32A08D60F005CA070 /* ZFPlayer */,
  2332. 9AD345A02A08D571005CA070 /* TYCyclePagerView */,
  2333. );
  2334. path = Banner;
  2335. sourceTree = "<group>";
  2336. };
  2337. 9AD345A02A08D571005CA070 /* TYCyclePagerView */ = {
  2338. isa = PBXGroup;
  2339. children = (
  2340. 9AD345A22A08D571005CA070 /* TYCyclePagerTransformLayout.h */,
  2341. 9AD345A52A08D571005CA070 /* TYCyclePagerTransformLayout.m */,
  2342. 9AD345A12A08D571005CA070 /* TYCyclePagerView.h */,
  2343. 9AD345A42A08D571005CA070 /* TYCyclePagerView.m */,
  2344. 9AD345A62A08D571005CA070 /* TYPageControl.h */,
  2345. 9AD345A32A08D571005CA070 /* TYPageControl.m */,
  2346. );
  2347. path = TYCyclePagerView;
  2348. sourceTree = "<group>";
  2349. };
  2350. 9AD345B32A08D60F005CA070 /* ZFPlayer */ = {
  2351. isa = PBXGroup;
  2352. children = (
  2353. 9AD345B42A08D60F005CA070 /* Core */,
  2354. 9AD345D82A08D60F005CA070 /* ijkplayer */,
  2355. 9AD345DB2A08D60F005CA070 /* AVPlayer */,
  2356. 9AD345DE2A08D60F005CA070 /* ControlView */,
  2357. );
  2358. path = ZFPlayer;
  2359. sourceTree = "<group>";
  2360. };
  2361. 9AD345B42A08D60F005CA070 /* Core */ = {
  2362. isa = PBXGroup;
  2363. children = (
  2364. 9AD345B52A08D60F005CA070 /* ZFPlayerNotification.h */,
  2365. 9AD345B62A08D60F005CA070 /* ZFPlayerGestureControl.m */,
  2366. 9AD345B72A08D60F005CA070 /* ZFPlayerController.m */,
  2367. 9AD345B82A08D60F005CA070 /* ZFFloatView.h */,
  2368. 9AD345B92A08D60F005CA070 /* ZFPresentTransition.h */,
  2369. 9AD345BA2A08D60F005CA070 /* ZFLandscapeWindow.m */,
  2370. 9AD345BB2A08D60F005CA070 /* ZFKVOController.h */,
  2371. 9AD345BC2A08D60F005CA070 /* ZFLandscapeViewController.h */,
  2372. 9AD345BD2A08D60F005CA070 /* ZFOrientationObserver.m */,
  2373. 9AD345BE2A08D60F005CA070 /* ZFPortraitViewController.h */,
  2374. 9AD345BF2A08D60F005CA070 /* ZFPlayerView.h */,
  2375. 9AD345C02A08D60F005CA070 /* ZFPlayerLogManager.m */,
  2376. 9AD345C12A08D60F005CA070 /* ZFPlayerMediaPlayback.h */,
  2377. 9AD345C22A08D60F005CA070 /* ZFPersentInteractiveTransition.m */,
  2378. 9AD345C32A08D60F005CA070 /* ZFReachabilityManager.h */,
  2379. 9AD345C42A08D60F005CA070 /* UIScrollView+ZFPlayer.m */,
  2380. 9AD345C52A08D60F005CA070 /* ZFPlayer.h */,
  2381. 9AD345C62A08D60F005CA070 /* ZFPlayerGestureControl.h */,
  2382. 9AD345C72A08D60F005CA070 /* ZFPlayerNotification.m */,
  2383. 9AD345C82A08D60F005CA070 /* ZFPresentTransition.m */,
  2384. 9AD345C92A08D60F005CA070 /* ZFFloatView.m */,
  2385. 9AD345CA2A08D60F005CA070 /* ZFPlayerMediaControl.h */,
  2386. 9AD345CB2A08D60F005CA070 /* ZFPlayerController.h */,
  2387. 9AD345CC2A08D60F005CA070 /* ZFPlayerView.m */,
  2388. 9AD345CD2A08D60F005CA070 /* ZFPlayerLogManager.h */,
  2389. 9AD345CE2A08D60F005CA070 /* ZFPortraitViewController.m */,
  2390. 9AD345CF2A08D60F005CA070 /* ZFOrientationObserver.h */,
  2391. 9AD345D02A08D60F005CA070 /* ZFPlayerConst.h */,
  2392. 9AD345D12A08D60F005CA070 /* ZFKVOController.m */,
  2393. 9AD345D22A08D60F005CA070 /* ZFLandscapeViewController.m */,
  2394. 9AD345D32A08D60F005CA070 /* ZFLandscapeWindow.h */,
  2395. 9AD345D42A08D60F005CA070 /* UIScrollView+ZFPlayer.h */,
  2396. 9AD345D52A08D60F005CA070 /* ZFReachabilityManager.m */,
  2397. 9AD345D62A08D60F005CA070 /* ZFPersentInteractiveTransition.h */,
  2398. 9AD345D72A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m */,
  2399. );
  2400. path = Core;
  2401. sourceTree = "<group>";
  2402. };
  2403. 9AD345D82A08D60F005CA070 /* ijkplayer */ = {
  2404. isa = PBXGroup;
  2405. children = (
  2406. 9AD345D92A08D60F005CA070 /* ZFIJKPlayerManager.h */,
  2407. 9AD345DA2A08D60F005CA070 /* ZFIJKPlayerManager.m */,
  2408. );
  2409. path = ijkplayer;
  2410. sourceTree = "<group>";
  2411. };
  2412. 9AD345DB2A08D60F005CA070 /* AVPlayer */ = {
  2413. isa = PBXGroup;
  2414. children = (
  2415. 9AD345DC2A08D60F005CA070 /* ZFAVPlayerManager.m */,
  2416. 9AD345DD2A08D60F005CA070 /* ZFAVPlayerManager.h */,
  2417. );
  2418. path = AVPlayer;
  2419. sourceTree = "<group>";
  2420. };
  2421. 9AD345DE2A08D60F005CA070 /* ControlView */ = {
  2422. isa = PBXGroup;
  2423. children = (
  2424. 9AD345DF2A08D60F005CA070 /* ZFUtilities.m */,
  2425. 9AD345E02A08D60F005CA070 /* UIView+ZFFrame.m */,
  2426. 9AD345E12A08D60F005CA070 /* ZFSmallFloatControlView.h */,
  2427. 9AD345E22A08D60F005CA070 /* ZFPlayerControlView.h */,
  2428. 9AD345E32A08D60F005CA070 /* ZFSliderView.h */,
  2429. 9AD345E42A08D60F005CA070 /* ZFVolumeBrightnessView.m */,
  2430. 9AD345E52A08D60F005CA070 /* ZFSpeedLoadingView.h */,
  2431. 9AD345E62A08D60F005CA070 /* ZFLoadingView.h */,
  2432. 9AD345E72A08D60F005CA070 /* ZFLandScapeControlView.m */,
  2433. 9AD345E82A08D60F005CA070 /* ZFNetworkSpeedMonitor.m */,
  2434. 9AD345E92A08D60F005CA070 /* UIImageView+ZFCache.h */,
  2435. 9AD345EA2A08D60F005CA070 /* ZFPortraitControlView.h */,
  2436. 9AD345EB2A08D60F005CA070 /* ZFPlayer.bundle */,
  2437. 9AD345EC2A08D60F005CA070 /* UIView+ZFFrame.h */,
  2438. 9AD345ED2A08D60F005CA070 /* ZFUtilities.h */,
  2439. 9AD345EE2A08D60F005CA070 /* ZFSliderView.m */,
  2440. 9AD345EF2A08D60F005CA070 /* ZFPlayerControlView.m */,
  2441. 9AD345F02A08D60F005CA070 /* ZFSmallFloatControlView.m */,
  2442. 9AD345F12A08D60F005CA070 /* ZFLoadingView.m */,
  2443. 9AD345F22A08D60F005CA070 /* ZFSpeedLoadingView.m */,
  2444. 9AD345F32A08D60F005CA070 /* ZFVolumeBrightnessView.h */,
  2445. 9AD345F42A08D60F005CA070 /* ZFPortraitControlView.m */,
  2446. 9AD345F52A08D60F005CA070 /* UIImageView+ZFCache.m */,
  2447. 9AD345F62A08D60F005CA070 /* ZFNetworkSpeedMonitor.h */,
  2448. 9AD345F72A08D60F005CA070 /* ZFLandScapeControlView.h */,
  2449. );
  2450. path = ControlView;
  2451. sourceTree = "<group>";
  2452. };
  2453. 9AD3461A2A08D692005CA070 /* M */ = {
  2454. isa = PBXGroup;
  2455. children = (
  2456. 9AD346172A08D679005CA070 /* GoodsBannerModel.h */,
  2457. 9AD346182A08D679005CA070 /* GoodsBannerModel.m */,
  2458. );
  2459. path = M;
  2460. sourceTree = "<group>";
  2461. };
  2462. 9AD364BF2A05E68400452C7A /* Target */ = {
  2463. isa = PBXGroup;
  2464. children = (
  2465. 9A788C422A08A663003E0025 /* Target_Goods.h */,
  2466. 9A788C432A08A663003E0025 /* Target_Goods.m */,
  2467. );
  2468. path = Target;
  2469. sourceTree = "<group>";
  2470. };
  2471. 9AD364C32A05E71000452C7A /* VC */ = {
  2472. isa = PBXGroup;
  2473. children = (
  2474. 9A31EDFE2B469A73009F11EE /* AS_GoodsReviewsListC.h */,
  2475. 9A31EDFF2B469A73009F11EE /* AS_GoodsReviewsListC.m */,
  2476. 9AD364C42A05E73E00452C7A /* AS_GoodsDetailsC.h */,
  2477. 9AD364C52A05E73E00452C7A /* AS_GoodsDetailsC.m */,
  2478. 9A5F52882B5F56FD007D3791 /* AS_GoodsSizeC.h */,
  2479. 9A5F52892B5F56FD007D3791 /* AS_GoodsSizeC.m */,
  2480. 8810F57C2BF74A2B00346FD4 /* ASGoodsDetailsViewController.h */,
  2481. 8810F57D2BF74A2B00346FD4 /* ASGoodsDetailsViewController.m */,
  2482. );
  2483. path = VC;
  2484. sourceTree = "<group>";
  2485. };
  2486. 9AD364C72A05E76D00452C7A /* V */ = {
  2487. isa = PBXGroup;
  2488. children = (
  2489. 9AD3459C2A08D545005CA070 /* GoodsDetailSrcView.h */,
  2490. 9AD3459D2A08D545005CA070 /* GoodsDetailSrcView.m */,
  2491. 9A3F5CB62B3BF90100DDB6A7 /* GoodsDetailsIntroduceV.h */,
  2492. 9A3F5CB72B3BF90100DDB6A7 /* GoodsDetailsIntroduceV.m */,
  2493. 9AD3459F2A08D55D005CA070 /* Banner */,
  2494. 9A3F5CB92B3C192000DDB6A7 /* GoodsDetailsBottomV.h */,
  2495. 9A3F5CBA2B3C192000DDB6A7 /* GoodsDetailsBottomV.m */,
  2496. 8810F57F2BF74A5800346FD4 /* ASGoodsDetailsTableView.h */,
  2497. 8810F5802BF74A5800346FD4 /* ASGoodsDetailsTableView.m */,
  2498. 8810F5822BF74E6400346FD4 /* ASGoodsBannerCell.h */,
  2499. 8810F5832BF74E6400346FD4 /* ASGoodsBannerCell.m */,
  2500. 8810F5912BFB250D00346FD4 /* ASGoodsTitlePriceCell.h */,
  2501. 8810F5922BFB250D00346FD4 /* ASGoodsTitlePriceCell.m */,
  2502. 8810F5942BFB291300346FD4 /* ASGoodsCouponCell.h */,
  2503. 8810F5952BFB291300346FD4 /* ASGoodsCouponCell.m */,
  2504. 8810F59A2BFB3A4500346FD4 /* ASGoodsIntrouduceWebView.h */,
  2505. 8810F59B2BFB3A4500346FD4 /* ASGoodsIntrouduceWebView.m */,
  2506. 8810F5882BF839C600346FD4 /* ASGoodsDetailsSizeCell.h */,
  2507. 8810F5892BF839C600346FD4 /* ASGoodsDetailsSizeCell.m */,
  2508. 8810F58F2BF83D0400346FD4 /* ASGoodsDetailsSizeSelView.h */,
  2509. 8810F58E2BF83D0400346FD4 /* ASGoodsDetailsSizeSelView.m */,
  2510. 8810F5972BFB2B2400346FD4 /* ASGoodsGuaranteeInfoCell.h */,
  2511. 8810F5982BFB2B2400346FD4 /* ASGoodsGuaranteeInfoCell.m */,
  2512. 8810F59D2BFC7D7600346FD4 /* ASGoodsReviewHeadCell.h */,
  2513. 8810F59E2BFC7D7600346FD4 /* ASGoodsReviewHeadCell.m */,
  2514. 8810F5A62C01849C00346FD4 /* ASGoodsReviewFootCell.h */,
  2515. 8810F5A72C01849C00346FD4 /* ASGoodsReviewFootCell.m */,
  2516. );
  2517. path = V;
  2518. sourceTree = "<group>";
  2519. };
  2520. 9AD364C82A05E77200452C7A /* M */ = {
  2521. isa = PBXGroup;
  2522. children = (
  2523. 9AD3461B2A08D6EF005CA070 /* GoodsInformationM.h */,
  2524. 9AD3461C2A08D6EF005CA070 /* GoodsInformationM.m */,
  2525. 9A35203F2B48000F00D097CB /* GoodsReviewsListM.h */,
  2526. 9A3520402B48000F00D097CB /* GoodsReviewsListM.m */,
  2527. );
  2528. path = M;
  2529. sourceTree = "<group>";
  2530. };
  2531. 9AD364CC2A05EBE800452C7A /* Fuction */ = {
  2532. isa = PBXGroup;
  2533. children = (
  2534. 9A78E0112B6388F500CA4E32 /* Cart */,
  2535. 8131A27D2B3687CA00A191BE /* Windows */,
  2536. 812021122B14657D0026B8B5 /* UserManager */,
  2537. 81DFA55A2A46C44800DA708B /* WebView */,
  2538. 81717CAC2A3C453900648139 /* Category */,
  2539. 81601FE32A2D938B00E4A8F1 /* Home */,
  2540. 9A5C64522A11E58F00CBB185 /* Login */,
  2541. 81D484DD2A0F40510075DC43 /* UserCenter */,
  2542. 9A337E4F2A04FA0A00D058A5 /* Goods */,
  2543. 9A337E4B2A04F42500D058A5 /* AMoule */,
  2544. 9A337E342A04EE1A00D058A5 /* BViewController */,
  2545. );
  2546. path = Fuction;
  2547. sourceTree = "<group>";
  2548. };
  2549. 9AD364CD2A05EC2700452C7A /* Config */ = {
  2550. isa = PBXGroup;
  2551. children = (
  2552. 814F5CF62A11B76F003847A9 /* Font */,
  2553. 9AD346212A08E828005CA070 /* ProjectConfigDefine.h */,
  2554. );
  2555. path = Config;
  2556. sourceTree = "<group>";
  2557. };
  2558. 9AD364CE2A05EC4500452C7A /* Tabber */ = {
  2559. isa = PBXGroup;
  2560. children = (
  2561. 9AD364CF2A05EC7800452C7A /* AS_TabBarViewController.h */,
  2562. 9AD364D02A05EC7800452C7A /* AS_TabBarViewController.m */,
  2563. );
  2564. path = Tabber;
  2565. sourceTree = "<group>";
  2566. };
  2567. 9AD4D3982B48EB7F0086D6FB /* Category */ = {
  2568. isa = PBXGroup;
  2569. children = (
  2570. 9AD4D39C2B48F5680086D6FB /* NSMutableAttributedString+RYText.h */,
  2571. 9AD4D39D2B48F5680086D6FB /* NSMutableAttributedString+RYText.m */,
  2572. );
  2573. path = Category;
  2574. sourceTree = "<group>";
  2575. };
  2576. 9AD6A53A2A120C56001DE3D9 /* Assets */ = {
  2577. isa = PBXGroup;
  2578. children = (
  2579. 9AD6A53D2A120CC3001DE3D9 /* Login.xcassets */,
  2580. );
  2581. path = Assets;
  2582. sourceTree = "<group>";
  2583. };
  2584. 9AD6A53F2A1218D0001DE3D9 /* BaseView */ = {
  2585. isa = PBXGroup;
  2586. children = (
  2587. 9AD6A5412A1218E7001DE3D9 /* EamilTFmatchV.h */,
  2588. 9AD6A5432A1218E7001DE3D9 /* EamilTFmatchV.m */,
  2589. 9AD6A5402A1218E6001DE3D9 /* PassWordSecureBtnV.h */,
  2590. 9AD6A5422A1218E7001DE3D9 /* PassWordSecureBtnV.m */,
  2591. );
  2592. path = BaseView;
  2593. sourceTree = "<group>";
  2594. };
  2595. 9AD6A5462A123799001DE3D9 /* Target */ = {
  2596. isa = PBXGroup;
  2597. children = (
  2598. 9AD6A5472A1237D0001DE3D9 /* Target_Login.h */,
  2599. 9AD6A5482A1237D0001DE3D9 /* Target_Login.m */,
  2600. );
  2601. path = Target;
  2602. sourceTree = "<group>";
  2603. };
  2604. 9AEFA7DB2B649EF700AE1974 /* V */ = {
  2605. isa = PBXGroup;
  2606. children = (
  2607. 9A2415BE2B678A1100A6E903 /* QtyCountV.h */,
  2608. 9A2415BD2B678A1000A6E903 /* QtyCountV.m */,
  2609. 9AEFA7DC2B649F3F00AE1974 /* MyCarlTableV.h */,
  2610. 9AEFA7DD2B649F3F00AE1974 /* MyCarlTableV.m */,
  2611. 8810F5A02BFF448C00346FD4 /* ASMyCartNoDataView.h */,
  2612. 8810F5A12BFF448C00346FD4 /* ASMyCartNoDataView.m */,
  2613. );
  2614. path = V;
  2615. sourceTree = "<group>";
  2616. };
  2617. 9AF908592B396BD1008AC2D2 /* RYNetWork */ = {
  2618. isa = PBXGroup;
  2619. children = (
  2620. 9AF9085A2B397320008AC2D2 /* UIViewController+RY_configNet.h */,
  2621. 9AF9085B2B397320008AC2D2 /* UIViewController+RY_configNet.m */,
  2622. 9AF9085D2B3976F3008AC2D2 /* RYBaseVM.h */,
  2623. 9AF9085E2B3976F3008AC2D2 /* RYBaseVM.m */,
  2624. );
  2625. path = RYNetWork;
  2626. sourceTree = "<group>";
  2627. };
  2628. 9AFCDABF2B809C29003D3573 /* Checkout */ = {
  2629. isa = PBXGroup;
  2630. children = (
  2631. 9AFCDAC02B809C5B003D3573 /* CartCheckTableV.h */,
  2632. 9AFCDAC12B809C5B003D3573 /* CartCheckTableV.m */,
  2633. 8810F5072BEB159600346FD4 /* ASCheckoutTopView.h */,
  2634. 8810F5082BEB159600346FD4 /* ASCheckoutTopView.m */,
  2635. 8810F5242BEDF9F900346FD4 /* ASCheckoutBottomView.h */,
  2636. 8810F5252BEDF9F900346FD4 /* ASCheckoutBottomView.m */,
  2637. 8810F52A2BF1A1CD00346FD4 /* ASAddGiftGoodsView.h */,
  2638. 8810F52B2BF1A1CD00346FD4 /* ASAddGiftGoodsView.m */,
  2639. 8810F5272BEE0DEA00346FD4 /* ASCheckoutGoodsItemCell.h */,
  2640. 8810F5282BEE0DEA00346FD4 /* ASCheckoutGoodsItemCell.m */,
  2641. 8810F50A2BEB590C00346FD4 /* ASCheckoutPointApplyCell.h */,
  2642. 8810F50B2BEB590C00346FD4 /* ASCheckoutPointApplyCell.m */,
  2643. 8810F5162BEC548D00346FD4 /* ASCheckoutAddressCell.h */,
  2644. 8810F5172BEC548D00346FD4 /* ASCheckoutAddressCell.m */,
  2645. 8810F5192BEC54B400346FD4 /* ASCheckoutShipMethodCell.h */,
  2646. 8810F51A2BEC54B400346FD4 /* ASCheckoutShipMethodCell.m */,
  2647. 8810F5102BEB685500346FD4 /* ASCheckoutPaymentCell.h */,
  2648. 8810F5112BEB685500346FD4 /* ASCheckoutPaymentCell.m */,
  2649. 8810F51F2BEDABFA00346FD4 /* ASCheckoutCommentCell.h */,
  2650. 8810F5202BEDABFA00346FD4 /* ASCheckoutCommentCell.m */,
  2651. );
  2652. path = Checkout;
  2653. sourceTree = "<group>";
  2654. };
  2655. AD6FCC75A25F3F751CF2E2EB /* Pods */ = {
  2656. isa = PBXGroup;
  2657. children = (
  2658. 3C97D3C0DD5DB3DCA3FF46B8 /* Pods-Asteria.debug.xcconfig */,
  2659. 2A57FEE3AE67604607B5A6DE /* Pods-Asteria.release.xcconfig */,
  2660. F28014612B0095476AA5BC1B /* Pods-Asteria-NotificationServiceExtension.debug.xcconfig */,
  2661. 3757F38E691966CC4F482D46 /* Pods-Asteria-NotificationServiceExtension.release.xcconfig */,
  2662. );
  2663. path = Pods;
  2664. sourceTree = "<group>";
  2665. };
  2666. /* End PBXGroup section */
  2667. /* Begin PBXNativeTarget section */
  2668. 8172449929F3B2ED005FA9C9 /* Asteria */ = {
  2669. isa = PBXNativeTarget;
  2670. buildConfigurationList = 817244B329F3B2EE005FA9C9 /* Build configuration list for PBXNativeTarget "Asteria" */;
  2671. buildPhases = (
  2672. 99A0BC3099EF658C7572EE53 /* [CP] Check Pods Manifest.lock */,
  2673. 8172449629F3B2ED005FA9C9 /* Sources */,
  2674. 8172449729F3B2ED005FA9C9 /* Frameworks */,
  2675. 8172449829F3B2ED005FA9C9 /* Resources */,
  2676. 817244C329F3B81C005FA9C9 /* Embed Foundation Extensions */,
  2677. 3B92BBFD060A2570947ECE79 /* [CP] Embed Pods Frameworks */,
  2678. 98D74E56EC226FF60623E369 /* [CP] Copy Pods Resources */,
  2679. );
  2680. buildRules = (
  2681. );
  2682. dependencies = (
  2683. 817244C129F3B81C005FA9C9 /* PBXTargetDependency */,
  2684. );
  2685. name = Asteria;
  2686. productName = Asteria;
  2687. productReference = 8172449A29F3B2ED005FA9C9 /* Asteria.app */;
  2688. productType = "com.apple.product-type.application";
  2689. };
  2690. 817244B929F3B81C005FA9C9 /* NotificationServiceExtension */ = {
  2691. isa = PBXNativeTarget;
  2692. buildConfigurationList = 817244C629F3B81C005FA9C9 /* Build configuration list for PBXNativeTarget "NotificationServiceExtension" */;
  2693. buildPhases = (
  2694. 3E1D2F88A7C35F41F9DF89B3 /* [CP] Check Pods Manifest.lock */,
  2695. 817244B629F3B81C005FA9C9 /* Sources */,
  2696. 817244B729F3B81C005FA9C9 /* Frameworks */,
  2697. 817244B829F3B81C005FA9C9 /* Resources */,
  2698. 19CF3293FFA4BAF08C679C6D /* [CP] Copy Pods Resources */,
  2699. );
  2700. buildRules = (
  2701. );
  2702. dependencies = (
  2703. );
  2704. name = NotificationServiceExtension;
  2705. productName = NotificationServiceExtension;
  2706. productReference = 817244BA29F3B81C005FA9C9 /* NotificationServiceExtension.appex */;
  2707. productType = "com.apple.product-type.app-extension";
  2708. };
  2709. /* End PBXNativeTarget section */
  2710. /* Begin PBXProject section */
  2711. 8172449229F3B2EC005FA9C9 /* Project object */ = {
  2712. isa = PBXProject;
  2713. attributes = {
  2714. BuildIndependentTargetsInParallel = 1;
  2715. CLASSPREFIX = AS;
  2716. LastUpgradeCheck = 1420;
  2717. TargetAttributes = {
  2718. 8172449929F3B2ED005FA9C9 = {
  2719. CreatedOnToolsVersion = 14.2;
  2720. };
  2721. 817244B929F3B81C005FA9C9 = {
  2722. CreatedOnToolsVersion = 14.2;
  2723. };
  2724. };
  2725. };
  2726. buildConfigurationList = 8172449529F3B2EC005FA9C9 /* Build configuration list for PBXProject "Asteria" */;
  2727. compatibilityVersion = "Xcode 13.0";
  2728. developmentRegion = en;
  2729. hasScannedForEncodings = 0;
  2730. knownRegions = (
  2731. en,
  2732. Base,
  2733. );
  2734. mainGroup = 8172449129F3B2EC005FA9C9;
  2735. productRefGroup = 8172449B29F3B2ED005FA9C9 /* Products */;
  2736. projectDirPath = "";
  2737. projectRoot = "";
  2738. targets = (
  2739. 8172449929F3B2ED005FA9C9 /* Asteria */,
  2740. 817244B929F3B81C005FA9C9 /* NotificationServiceExtension */,
  2741. );
  2742. };
  2743. /* End PBXProject section */
  2744. /* Begin PBXResourcesBuildPhase section */
  2745. 8172449829F3B2ED005FA9C9 /* Resources */ = {
  2746. isa = PBXResourcesBuildPhase;
  2747. buildActionMask = 2147483647;
  2748. files = (
  2749. 814F5D102A11B76F003847A9 /* Roboto-Thin.ttf in Resources */,
  2750. 816020152A2F065700E4A8F1 /* Home.xcassets in Resources */,
  2751. 814F5D052A11B76F003847A9 /* Roboto-Medium.ttf in Resources */,
  2752. 81717D3C2A3D430C00648139 /* Category.xcassets in Resources */,
  2753. 814F5D0C2A11B76F003847A9 /* Roboto-Italic.ttf in Resources */,
  2754. 814F5D0F2A11B76F003847A9 /* Roboto-Bold.ttf in Resources */,
  2755. 814F5D0B2A11B76F003847A9 /* Roboto-LightItalic.ttf in Resources */,
  2756. 81354BF72A288AC20082C93A /* ASUI.xcassets in Resources */,
  2757. 9A3F5CB52B3BF73100DDB6A7 /* Base.xcassets in Resources */,
  2758. 814F5D112A11B76F003847A9 /* Roboto-Black.ttf in Resources */,
  2759. 814F5D0E2A11B76F003847A9 /* Roboto-BlackItalic.ttf in Resources */,
  2760. 9A3F5CB22B3BF63A00DDB6A7 /* Goods.xcassets in Resources */,
  2761. 814F5D072A11B76F003847A9 /* Roboto-Regular.ttf in Resources */,
  2762. 817244AD29F3B2EE005FA9C9 /* LaunchScreen.storyboard in Resources */,
  2763. 9AD6A53E2A120CC3001DE3D9 /* Login.xcassets in Resources */,
  2764. 814F5D0D2A11B76F003847A9 /* LICENSE.txt in Resources */,
  2765. 814F5D062A11B76F003847A9 /* Roboto-Light.ttf in Resources */,
  2766. 814F5D082A11B76F003847A9 /* Roboto-MediumItalic.ttf in Resources */,
  2767. 81E257F92A122AC6004EEF71 /* ASUI.xcassets in Resources */,
  2768. 9A7DA6A12A0CE33500136974 /* Asteria.xcassets in Resources */,
  2769. 814F5D092A11B76F003847A9 /* Roboto-ThinItalic.ttf in Resources */,
  2770. 9AD3460F2A08D60F005CA070 /* ZFPlayer.bundle in Resources */,
  2771. 814F5D0A2A11B76F003847A9 /* Roboto-BoldItalic.ttf in Resources */,
  2772. 817244AA29F3B2EE005FA9C9 /* Assets.xcassets in Resources */,
  2773. 9A5C645B2A1206E500CBB185 /* common.xcassets in Resources */,
  2774. 8810F5232BEDF31500346FD4 /* Cart.xcassets in Resources */,
  2775. 81E257F62A12259B004EEF71 /* UserCenter.xcassets in Resources */,
  2776. );
  2777. runOnlyForDeploymentPostprocessing = 0;
  2778. };
  2779. 817244B829F3B81C005FA9C9 /* Resources */ = {
  2780. isa = PBXResourcesBuildPhase;
  2781. buildActionMask = 2147483647;
  2782. files = (
  2783. );
  2784. runOnlyForDeploymentPostprocessing = 0;
  2785. };
  2786. /* End PBXResourcesBuildPhase section */
  2787. /* Begin PBXShellScriptBuildPhase section */
  2788. 19CF3293FFA4BAF08C679C6D /* [CP] Copy Pods Resources */ = {
  2789. isa = PBXShellScriptBuildPhase;
  2790. buildActionMask = 2147483647;
  2791. files = (
  2792. );
  2793. inputFileListPaths = (
  2794. "${PODS_ROOT}/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension-resources-${CONFIGURATION}-input-files.xcfilelist",
  2795. );
  2796. name = "[CP] Copy Pods Resources";
  2797. outputFileListPaths = (
  2798. "${PODS_ROOT}/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension-resources-${CONFIGURATION}-output-files.xcfilelist",
  2799. );
  2800. runOnlyForDeploymentPostprocessing = 0;
  2801. shellPath = /bin/sh;
  2802. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Asteria-NotificationServiceExtension/Pods-Asteria-NotificationServiceExtension-resources.sh\"\n";
  2803. showEnvVarsInLog = 0;
  2804. };
  2805. 3B92BBFD060A2570947ECE79 /* [CP] Embed Pods Frameworks */ = {
  2806. isa = PBXShellScriptBuildPhase;
  2807. buildActionMask = 2147483647;
  2808. files = (
  2809. );
  2810. inputFileListPaths = (
  2811. "${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  2812. );
  2813. name = "[CP] Embed Pods Frameworks";
  2814. outputFileListPaths = (
  2815. "${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  2816. );
  2817. runOnlyForDeploymentPostprocessing = 0;
  2818. shellPath = /bin/sh;
  2819. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-frameworks.sh\"\n";
  2820. showEnvVarsInLog = 0;
  2821. };
  2822. 3E1D2F88A7C35F41F9DF89B3 /* [CP] Check Pods Manifest.lock */ = {
  2823. isa = PBXShellScriptBuildPhase;
  2824. buildActionMask = 2147483647;
  2825. files = (
  2826. );
  2827. inputFileListPaths = (
  2828. );
  2829. inputPaths = (
  2830. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2831. "${PODS_ROOT}/Manifest.lock",
  2832. );
  2833. name = "[CP] Check Pods Manifest.lock";
  2834. outputFileListPaths = (
  2835. );
  2836. outputPaths = (
  2837. "$(DERIVED_FILE_DIR)/Pods-Asteria-NotificationServiceExtension-checkManifestLockResult.txt",
  2838. );
  2839. runOnlyForDeploymentPostprocessing = 0;
  2840. shellPath = /bin/sh;
  2841. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  2842. showEnvVarsInLog = 0;
  2843. };
  2844. 98D74E56EC226FF60623E369 /* [CP] Copy Pods Resources */ = {
  2845. isa = PBXShellScriptBuildPhase;
  2846. buildActionMask = 2147483647;
  2847. files = (
  2848. );
  2849. inputFileListPaths = (
  2850. "${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-resources-${CONFIGURATION}-input-files.xcfilelist",
  2851. );
  2852. name = "[CP] Copy Pods Resources";
  2853. outputFileListPaths = (
  2854. "${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-resources-${CONFIGURATION}-output-files.xcfilelist",
  2855. );
  2856. runOnlyForDeploymentPostprocessing = 0;
  2857. shellPath = /bin/sh;
  2858. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Asteria/Pods-Asteria-resources.sh\"\n";
  2859. showEnvVarsInLog = 0;
  2860. };
  2861. 99A0BC3099EF658C7572EE53 /* [CP] Check Pods Manifest.lock */ = {
  2862. isa = PBXShellScriptBuildPhase;
  2863. buildActionMask = 2147483647;
  2864. files = (
  2865. );
  2866. inputFileListPaths = (
  2867. );
  2868. inputPaths = (
  2869. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2870. "${PODS_ROOT}/Manifest.lock",
  2871. );
  2872. name = "[CP] Check Pods Manifest.lock";
  2873. outputFileListPaths = (
  2874. );
  2875. outputPaths = (
  2876. "$(DERIVED_FILE_DIR)/Pods-Asteria-checkManifestLockResult.txt",
  2877. );
  2878. runOnlyForDeploymentPostprocessing = 0;
  2879. shellPath = /bin/sh;
  2880. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  2881. showEnvVarsInLog = 0;
  2882. };
  2883. /* End PBXShellScriptBuildPhase section */
  2884. /* Begin PBXSourcesBuildPhase section */
  2885. 8172449629F3B2ED005FA9C9 /* Sources */ = {
  2886. isa = PBXSourcesBuildPhase;
  2887. buildActionMask = 2147483647;
  2888. files = (
  2889. 81354BEE2A287AB50082C93A /* KWMineHomeOrderListCell.m in Sources */,
  2890. 81601FE62A2DB19300E4A8F1 /* ASHomeViewController.m in Sources */,
  2891. 9A2415BC2B6784A500A6E903 /* MyCartItemCell.m in Sources */,
  2892. 81354BF22A287B120082C93A /* KWMineHomeOrderModel.m in Sources */,
  2893. 8810F5A82C01849C00346FD4 /* ASGoodsReviewFootCell.m in Sources */,
  2894. 9A2415B92B677DDF00A6E903 /* Target_Cart.m in Sources */,
  2895. 8810F5672BF5EBF400346FD4 /* ASOrderListViewController.m in Sources */,
  2896. 81E73EBD2B1AABF300C10938 /* ASGiftCardListViewModel.m in Sources */,
  2897. 9A31EE002B469A73009F11EE /* AS_GoodsReviewsListC.m in Sources */,
  2898. 9AD345F82A08D60F005CA070 /* ZFPlayerGestureControl.m in Sources */,
  2899. 81C326712A37020A002EF442 /* ASProductListMenuHeaderView.m in Sources */,
  2900. 81601FF92A2DC78300E4A8F1 /* WMZBannerControl.m in Sources */,
  2901. 81E73EC02B1AC49D00C10938 /* ASPointsViewModel.m in Sources */,
  2902. 9A3F5CAF2B3BC11000DDB6A7 /* AlertMyCartDeleteV.m in Sources */,
  2903. 81717C912A3BE39C00648139 /* ASProductSortFilterView.m in Sources */,
  2904. 9AACEE952B7F473200223466 /* Cart_CheckoutC.m in Sources */,
  2905. 81C7962E2A539F4D003083B8 /* ASMessageListCell.m in Sources */,
  2906. 81717D382A3D322700648139 /* KWNoHisWordsCell.m in Sources */,
  2907. 9A2415BF2B678A1100A6E903 /* QtyCountV.m in Sources */,
  2908. 9AD345FA2A08D60F005CA070 /* ZFLandscapeWindow.m in Sources */,
  2909. 81E257EE2A120756004EEF71 /* ASUserCenterTopView.m in Sources */,
  2910. 81C326622A36B33B002EF442 /* ASHomeActiveView.m in Sources */,
  2911. 81DFA56A2A46D82200DA708B /* ASPointDetailTableView.m in Sources */,
  2912. 8810F57E2BF74A2B00346FD4 /* ASGoodsDetailsViewController.m in Sources */,
  2913. 9AD346042A08D60F005CA070 /* ZFKVOController.m in Sources */,
  2914. 81717CA12A3C0A3500648139 /* KWProductMenuFilterItemHeaderView.m in Sources */,
  2915. 81C326662A36B794002EF442 /* VerScrollTextView.m in Sources */,
  2916. 81E5EE972A4A822D0075695F /* ASVipCenterCollectCell.m in Sources */,
  2917. 81C796272A4FD898003083B8 /* ASBirthdayTreatViewController.m in Sources */,
  2918. 81E195152C01664E005471A1 /* APPassForgetEmailV.m in Sources */,
  2919. 81717D372A3D322700648139 /* KWHisCollectHeaderView.m in Sources */,
  2920. 8810F5212BEDABFA00346FD4 /* ASCheckoutCommentCell.m in Sources */,
  2921. 9AD346132A08D60F005CA070 /* ZFLoadingView.m in Sources */,
  2922. 8810F5902BF83D0400346FD4 /* ASGoodsDetailsSizeSelView.m in Sources */,
  2923. 9ACBEC212A14585300A8F97A /* CTMediator+ASTargerts.m in Sources */,
  2924. 8134C1AD2A13094F006EB0EC /* Target_userCenter.m in Sources */,
  2925. 81E257F32A120975004EEF71 /* ASUserBaseInfoView.m in Sources */,
  2926. 8172449F29F3B2ED005FA9C9 /* AppDelegate.m in Sources */,
  2927. 816020222A2F1C6A00E4A8F1 /* ASHomeBestSellCell.m in Sources */,
  2928. 81C3266E2A36FF2B002EF442 /* ASProductListActiveHeaderView.m in Sources */,
  2929. 81EC47722A3402CA00516573 /* ASHomeFlashDealCell.m in Sources */,
  2930. 81601FF82A2DC78300E4A8F1 /* WMZBannerView.m in Sources */,
  2931. 811F42492A40536C00DA68F1 /* ASPointHeadView.m in Sources */,
  2932. 9A32A2242B4BEAA8005A5831 /* GoodsReviewsImgV.m in Sources */,
  2933. 817244B029F3B2EE005FA9C9 /* main.m in Sources */,
  2934. 8131A2872B36890200A191BE /* ASWindowManager.m in Sources */,
  2935. 81717D202A3C4AE000648139 /* KWSearchSubTypeCell.m in Sources */,
  2936. 9A3F5CAB2B3BBEAB00DDB6A7 /* GoodsDetailsPayV.m in Sources */,
  2937. 81C796242A4FD63A003083B8 /* ASVipCouponsViewController.m in Sources */,
  2938. 9AEFA7DE2B649F4000AE1974 /* MyCarlTableV.m in Sources */,
  2939. 8810F5302BF3678400346FD4 /* ASCheckoutPayManager.m in Sources */,
  2940. 8810F53F2BF5949000346FD4 /* ASCommonUtils.m in Sources */,
  2941. 9AFCDAC22B809C5B003D3573 /* CartCheckTableV.m in Sources */,
  2942. 9AC2CC222B3A673B005187BD /* ASGoodsDetailsVM.m in Sources */,
  2943. 816020252A2F1C9E00E4A8F1 /* ASHomeMainListModel.m in Sources */,
  2944. 81717CA82A3C0AAA00648139 /* KWProductListFilterModel.m in Sources */,
  2945. 81717D252A3C512700648139 /* Target_Category.m in Sources */,
  2946. 9AD346102A08D60F005CA070 /* ZFSliderView.m in Sources */,
  2947. 9A337E4E2A04F46600D058A5 /* AViewController.m in Sources */,
  2948. 81601FFA2A2DC78300E4A8F1 /* WMZBannerFadeLayout.m in Sources */,
  2949. 816020182A2F070B00E4A8F1 /* ASHomeCategoryModel.m in Sources */,
  2950. 81AA11D92B23FF1F008EB5C7 /* ASCategoriesViewModel.m in Sources */,
  2951. 8810F51B2BEC54B400346FD4 /* ASCheckoutShipMethodCell.m in Sources */,
  2952. 8131A28C2B3692F300A191BE /* APHomeActiveViewController.m in Sources */,
  2953. 9AD4D3972B48E8780086D6FB /* ReviewsTableHearV.m in Sources */,
  2954. 8134C1B72A1359E6006EB0EC /* ASSignDayView.m in Sources */,
  2955. 81AA11D32B23EC20008EB5C7 /* ASVipCouponModel.m in Sources */,
  2956. 81601FF72A2DC78300E4A8F1 /* WMZBannerParam.m in Sources */,
  2957. 81717CA22A3C0A3500648139 /* KWProductMenuFilterView.m in Sources */,
  2958. 9AD346112A08D60F005CA070 /* ZFPlayerControlView.m in Sources */,
  2959. 9AD345B12A08D5ED005CA070 /* GoodsBannerCollectionViewCell.m in Sources */,
  2960. 9AD345B22A08D5ED005CA070 /* GoodsVideoCollectionViewCell.m in Sources */,
  2961. 814F5CEF2A11B1F2003847A9 /* ASUserCenterViewController.m in Sources */,
  2962. 81717D1C2A3C4AE000648139 /* KWSearchSubTypeModel.m in Sources */,
  2963. 9AF9085C2B397320008AC2D2 /* UIViewController+RY_configNet.m in Sources */,
  2964. 8160201F2A2F11AB00E4A8F1 /* ASHomeTipCollectCell.m in Sources */,
  2965. 812021282B185C000026B8B5 /* ASCouponsModel.m in Sources */,
  2966. 816020042A2DCC0200E4A8F1 /* ASHomeBannerModel.m in Sources */,
  2967. 81717D3F2A3D5EAD00648139 /* ASDefualtAlertV.m in Sources */,
  2968. 819900222A020A6F006FE68C /* LYTools.m in Sources */,
  2969. 8810F51E2BEC565F00346FD4 /* UILabel+Create.m in Sources */,
  2970. 816020072A2DD4FB00E4A8F1 /* Target_Home.m in Sources */,
  2971. 81CE28942AF490C20012AA45 /* ASGiftCardTableView.m in Sources */,
  2972. 81FC41A32BEB4D6E00EB0A85 /* InTableScrollView.m in Sources */,
  2973. 816020132A2EE5A200E4A8F1 /* ASCategaryCollectCell.m in Sources */,
  2974. 8810F5622BF5EBF400346FD4 /* ASOrderDetailsVM.m in Sources */,
  2975. 8193D5CB2BEA2A0800B9AB11 /* ASMineAddressModel.m in Sources */,
  2976. 81C796422A551FE9003083B8 /* KWTextField.m in Sources */,
  2977. 9AD346012A08D60F005CA070 /* ZFFloatView.m in Sources */,
  2978. 9A3ADC0A2B60BAE200B04BA6 /* GoodsSizePayMentCell.m in Sources */,
  2979. 9AD345F92A08D60F005CA070 /* ZFPlayerController.m in Sources */,
  2980. 9AD345AC2A08D59A005CA070 /* WKM_goodsBanner.m in Sources */,
  2981. 9AE3674D2B6CDDE50068F10B /* MyCartGrandTotalCell.m in Sources */,
  2982. 81EC476F2A33F82C00516573 /* ASHomeImgCell.m in Sources */,
  2983. 81717D3A2A3D322700648139 /* KWHisAndHotWordsView.m in Sources */,
  2984. 81DFA5592A4681E900DA708B /* ASPointEranCell.m in Sources */,
  2985. 81354BE72A28786C0082C93A /* ASProductBaseModel.m in Sources */,
  2986. 9ADA8A212B4E96C900BACDEA /* GoodWritUpImgV.m in Sources */,
  2987. 9A3F5CB82B3BF90100DDB6A7 /* GoodsDetailsIntroduceV.m in Sources */,
  2988. 8134C1BD2A1372D5006EB0EC /* ASUserCenterTableHeadView.m in Sources */,
  2989. 9AD346002A08D60F005CA070 /* ZFPresentTransition.m in Sources */,
  2990. 81717D112A3C4AE000648139 /* KWSearchViewModel.m in Sources */,
  2991. 9A337E3B2A04EE1A00D058A5 /* BViewController.m in Sources */,
  2992. 8810F56A2BF5F86D00346FD4 /* ASPayFailedViewController.m in Sources */,
  2993. 8810F52C2BF1A1CD00346FD4 /* ASAddGiftGoodsView.m in Sources */,
  2994. 9A31EDFD2B468A55009F11EE /* RadioButton.m in Sources */,
  2995. 8810F59C2BFB3A4500346FD4 /* ASGoodsIntrouduceWebView.m in Sources */,
  2996. 9AD345A72A08D571005CA070 /* TYPageControl.m in Sources */,
  2997. 81354C0A2A289C350082C93A /* KWScrollOffsetView.m in Sources */,
  2998. 8810F5962BFB291300346FD4 /* ASGoodsCouponCell.m in Sources */,
  2999. 81354C032A289A070082C93A /* HomeFilterModel.m in Sources */,
  3000. 9A5F528A2B5F56FD007D3791 /* AS_GoodsSizeC.m in Sources */,
  3001. 8131A2932B3950DA00A191BE /* ASExtraPointsModel.m in Sources */,
  3002. 81717CAB2A3C359E00648139 /* ASProductlistFilterPriceCollectCell.m in Sources */,
  3003. 81AA11D02B23EA15008EB5C7 /* ASVipCouponsViewModel.m in Sources */,
  3004. 81717D352A3D322700648139 /* KWHisKeyWordCell.m in Sources */,
  3005. 9AD364D12A05EC7800452C7A /* AS_TabBarViewController.m in Sources */,
  3006. 9AD345FB2A08D60F005CA070 /* ZFOrientationObserver.m in Sources */,
  3007. 9AD346192A08D679005CA070 /* GoodsBannerModel.m in Sources */,
  3008. 81717C942A3BE4E000648139 /* ASProductListSortFilterCell.m in Sources */,
  3009. 81E195182C01664E005471A1 /* APPassForgetNewPassV.m in Sources */,
  3010. 81056D5C2B60F571009219A3 /* ASHelpListUrlModel.m in Sources */,
  3011. 9AD346082A08D60F005CA070 /* ZFIJKPlayerManager.m in Sources */,
  3012. 9AD3459E2A08D545005CA070 /* GoodsDetailSrcView.m in Sources */,
  3013. 81DFA56D2A46D86500DA708B /* ASPointDetailModel.m in Sources */,
  3014. 9AD346022A08D60F005CA070 /* ZFPlayerView.m in Sources */,
  3015. 9A78E01C2B639F4700CA4E32 /* CartTotalsM.m in Sources */,
  3016. 81DFA55D2A46C46D00DA708B /* ASWebViewController.m in Sources */,
  3017. 8810F5292BEE0DEA00346FD4 /* ASCheckoutGoodsItemCell.m in Sources */,
  3018. 81BEA6832A2D7CF3009D36C4 /* UITableView+ASBase.m in Sources */,
  3019. 81C7963A2A5517F7003083B8 /* KWSwitchButton.m in Sources */,
  3020. 81717C992A3BF1DD00648139 /* ASHomeAlertWindow.m in Sources */,
  3021. 81C7962B2A539E80003083B8 /* ASMessageListViewController.m in Sources */,
  3022. 81C3B44429F6612800D79294 /* ASBaseViewController.m in Sources */,
  3023. 81C3266A2A36F035002EF442 /* ASProductListViewModel.m in Sources */,
  3024. 815DA3DF2A396BD300616EF7 /* ASMoreBtCell.m in Sources */,
  3025. 9A78E0182B6396D600CA4E32 /* CartVM.m in Sources */,
  3026. 9A1247942A1B082300126226 /* Fuction_Tool.m in Sources */,
  3027. 81E5EE942A4A760D0075695F /* ASVipCenterLineItemView.m in Sources */,
  3028. 9A3F5CBB2B3C192000DDB6A7 /* GoodsDetailsBottomV.m in Sources */,
  3029. 81601FFF2A2DC8E700E4A8F1 /* ASHomeBannerCell.m in Sources */,
  3030. 8810F5992BFB2B2400346FD4 /* ASGoodsGuaranteeInfoCell.m in Sources */,
  3031. 812021212B16CD630026B8B5 /* ASSginViewModel.m in Sources */,
  3032. 9AF9085F2B3976F3008AC2D2 /* RYBaseVM.m in Sources */,
  3033. 81CE28972AF4953C0012AA45 /* ASGiftCardModel.m in Sources */,
  3034. 9AD6A5442A1218E8001DE3D9 /* PassWordSecureBtnV.m in Sources */,
  3035. 811F42462A40533C00DA68F1 /* ASPointsHomeViewController.m in Sources */,
  3036. 8131A2802B3687EE00A191BE /* ASCustomWindow.m in Sources */,
  3037. 8810F58A2BF839C600346FD4 /* ASGoodsDetailsSizeCell.m in Sources */,
  3038. 816D0C9A2AF3901C00395B5B /* ASGiftCardListViewController.m in Sources */,
  3039. 81C796372A5517B0003083B8 /* ASSettingListCell.m in Sources */,
  3040. 81717D392A3D322700648139 /* KWCustomLayout.m in Sources */,
  3041. 81DFA5602A46CC8E00DA708B /* CTMediator+ASWebView.m in Sources */,
  3042. 81C3B44A29F6661500D79294 /* ASBaseNavController.m in Sources */,
  3043. 9AD3460C2A08D60F005CA070 /* ZFVolumeBrightnessView.m in Sources */,
  3044. 8810F5262BEDF9F900346FD4 /* ASCheckoutBottomView.m in Sources */,
  3045. 81DFA5752A47D97C00DA708B /* ASCouponsListViewController.m in Sources */,
  3046. 9AD346072A08D60F005CA070 /* UIViewController+ZFPlayerRotation.m in Sources */,
  3047. 8810F5182BEC548D00346FD4 /* ASCheckoutAddressCell.m in Sources */,
  3048. 81C796462A5542B2003083B8 /* ASHelpListViewController.m in Sources */,
  3049. 8810F5642BF5EBF400346FD4 /* ASOrderDetailsModel.m in Sources */,
  3050. 8160200D2A2DD5C000E4A8F1 /* CTMediator+UserCenter.m in Sources */,
  3051. 81DFA5712A46D95400DA708B /* ASPointDetailCell.m in Sources */,
  3052. 9ACBEC2B2A14CCA300A8F97A /* ThirdPartService.m in Sources */,
  3053. 81C3265F2A36B284002EF442 /* ASProductListViewController.m in Sources */,
  3054. 8810F5632BF5EBF400346FD4 /* ASOrderListViewModel.m in Sources */,
  3055. 9AD346142A08D60F005CA070 /* ZFSpeedLoadingView.m in Sources */,
  3056. 81E5EE902A498FC90075695F /* ASVipCenterViewController.m in Sources */,
  3057. 81C7963F2A551FB0003083B8 /* ASInfomationSetController.m in Sources */,
  3058. 8131A27C2B365F7700A191BE /* ASProductListCategoryModel.m in Sources */,
  3059. 9A98E5072B5A15A500E8C5C1 /* QDSingleImagePickerPreviewViewController.m in Sources */,
  3060. 8810F56D2BF5F8D800346FD4 /* ASPayFinishHeadView.m in Sources */,
  3061. 9AD346062A08D60F005CA070 /* ZFReachabilityManager.m in Sources */,
  3062. 81717CA52A3C0A5000648139 /* KWProductFilterItemCell.m in Sources */,
  3063. 812021252B185A610026B8B5 /* ASCouponsListViewModel.m in Sources */,
  3064. 9AD345FE2A08D60F005CA070 /* UIScrollView+ZFPlayer.m in Sources */,
  3065. 9A65DE512A132FB700BB1269 /* LoginThirdAuthV.m in Sources */,
  3066. 819349302BF59000009FDDB2 /* ASHomeViewModel.m in Sources */,
  3067. 9A788C442A08A663003E0025 /* Target_Goods.m in Sources */,
  3068. 8131A2902B38FF3B00A191BE /* APInputAlertView.m in Sources */,
  3069. 9A5F52962B5F59EA007D3791 /* GoodsSizeCountCell.m in Sources */,
  3070. 81EC47692A33073100516573 /* ASHomeNewInProductItemView.m in Sources */,
  3071. 81717D212A3C4AE000648139 /* KWSearchSubTypeTableView.m in Sources */,
  3072. 9A5F52952B5F59EA007D3791 /* GoosSizeSelectCell.m in Sources */,
  3073. 9AACEE922B7F137D00223466 /* MyCartPayTypeCell.m in Sources */,
  3074. 9AD3461D2A08D6F0005CA070 /* GoodsInformationM.m in Sources */,
  3075. 9A1247972A1B0A2800126226 /* AS_ForgotC.m in Sources */,
  3076. 812021182B1467410026B8B5 /* ASUserModel.m in Sources */,
  3077. 81EC476C2A33131100516573 /* ASHomeNewInSubCollectCell.m in Sources */,
  3078. 81DFA5632A46CD6000DA708B /* Target_WebView.m in Sources */,
  3079. 81354BF52A287BED0082C93A /* KWMineHomeOrderSubView.m in Sources */,
  3080. 9AD345A82A08D571005CA070 /* TYCyclePagerView.m in Sources */,
  3081. 8810F55F2BF5EBF400346FD4 /* ASOrderDetailsItemsCell.m in Sources */,
  3082. 8810F5812BF74A5800346FD4 /* ASGoodsDetailsTableView.m in Sources */,
  3083. 9AD346202A08E30E005CA070 /* SelectVCollectionViewCell.m in Sources */,
  3084. 81601FFB2A2DC78300E4A8F1 /* WMZBannerOverLayout.m in Sources */,
  3085. 81354C002A2899CB0082C93A /* KWMineMoreProductModel.m in Sources */,
  3086. 81717D362A3D322700648139 /* KWLenovoWordListView.m in Sources */,
  3087. 8134C1BA2A1372A7006EB0EC /* ASUserCenterEnterItemV.m in Sources */,
  3088. 8810F5932BFB250D00346FD4 /* ASGoodsTitlePriceCell.m in Sources */,
  3089. 8127ADDB2B1193A300464D27 /* ASNetTools.m in Sources */,
  3090. 812021152B14659A0026B8B5 /* ASUserInfoManager.m in Sources */,
  3091. 9AD3460A2A08D60F005CA070 /* ZFUtilities.m in Sources */,
  3092. 8810F5152BEB754800346FD4 /* ASCheckoutModel.m in Sources */,
  3093. 81354BFC2A28998B0082C93A /* KWMineMoreProductTypeCell.m in Sources */,
  3094. 9AD6A5492A1237D0001DE3D9 /* Target_Login.m in Sources */,
  3095. 9A337E3A2A04EE1A00D058A5 /* Target_B.m in Sources */,
  3096. 8186564D2A5BF6010049D861 /* ASCategoryViewController.m in Sources */,
  3097. 9AD6A5452A1218E8001DE3D9 /* EamilTFmatchV.m in Sources */,
  3098. 8810F5842BF74E6400346FD4 /* ASGoodsBannerCell.m in Sources */,
  3099. 9AD345FF2A08D60F005CA070 /* ZFPlayerNotification.m in Sources */,
  3100. 81717D282A3C55CC00648139 /* CTMediator+Categorys.m in Sources */,
  3101. 9AD346092A08D60F005CA070 /* ZFAVPlayerManager.m in Sources */,
  3102. 8134C1B42A1358F3006EB0EC /* ASSginView.m in Sources */,
  3103. 9AD346122A08D60F005CA070 /* ZFSmallFloatControlView.m in Sources */,
  3104. 8131A2842B36882500A191BE /* ASCustomAlertViewController.m in Sources */,
  3105. 81E195162C01664E005471A1 /* LoginForgotC.m in Sources */,
  3106. 81EC47752A3423FC00516573 /* ASHomeLookingCell.m in Sources */,
  3107. 9AD3460E2A08D60F005CA070 /* ZFNetworkSpeedMonitor.m in Sources */,
  3108. 8810F50C2BEB590C00346FD4 /* ASCheckoutPointApplyCell.m in Sources */,
  3109. 8810F5662BF5EBF400346FD4 /* ASOrderListSubController.m in Sources */,
  3110. 81AA11DC2B23FF71008EB5C7 /* ASCurrencyManager.m in Sources */,
  3111. 9AD346052A08D60F005CA070 /* ZFLandscapeViewController.m in Sources */,
  3112. 9ADA8A1E2B4E481E00BACDEA /* GoodsReviewsWriteC.m in Sources */,
  3113. 9A32A2212B4BEA5C005A5831 /* GoodsReviewsCell.m in Sources */,
  3114. 9A5F528D2B5F59D1007D3791 /* GoodsSizeSelectTableV.m in Sources */,
  3115. 81717D222A3C4AE000648139 /* KWSearchMainTypeCell.m in Sources */,
  3116. 81E195172C01664E005471A1 /* APPassForgetCodeV.m in Sources */,
  3117. 81DFA5672A46D60900DA708B /* ASPointDetailViewController.m in Sources */,
  3118. 81601FF62A2DC78300E4A8F1 /* WMZBannerFlowLayout.m in Sources */,
  3119. 814F5CF52A11B37E003847A9 /* ASUserAvaterView.m in Sources */,
  3120. 81C796342A551643003083B8 /* ASSettingViewController.m in Sources */,
  3121. 81354C0B2A289C350082C93A /* KWTimeEndView.m in Sources */,
  3122. 8131A28D2B3692F300A191BE /* APHomeActiveWindow.m in Sources */,
  3123. 9AD346032A08D60F005CA070 /* ZFPortraitViewController.m in Sources */,
  3124. 81354BED2A287AB50082C93A /* KWMineHomeOrderHeadView.m in Sources */,
  3125. 81717D102A3C4AE000648139 /* KWHisAndHotWordsViewModel.m in Sources */,
  3126. 9AD3460D2A08D60F005CA070 /* ZFLandScapeControlView.m in Sources */,
  3127. 8810F5122BEB685500346FD4 /* ASCheckoutPaymentCell.m in Sources */,
  3128. 9AD364C62A05E73E00452C7A /* AS_GoodsDetailsC.m in Sources */,
  3129. 8120211E2B15F2B30026B8B5 /* ASVipUrlTempModel.m in Sources */,
  3130. 8193D5CE2BEA2B8E00B9AB11 /* ASAddressViewModel.m in Sources */,
  3131. 8810F5A22BFF448C00346FD4 /* ASMyCartNoDataView.m in Sources */,
  3132. 9A35203A2B479BAA00D097CB /* YJLAttributesLabel.m in Sources */,
  3133. 816020102A2EE55F00E4A8F1 /* ASCategaryListCell.m in Sources */,
  3134. 8810F55E2BF5EBF400346FD4 /* ASOrderDetailsInfoCell.m in Sources */,
  3135. 9AD3460B2A08D60F005CA070 /* UIView+ZFFrame.m in Sources */,
  3136. 81E257FD2A12340E004EEF71 /* ASEnterItemV.m in Sources */,
  3137. 81C3B45529F66C1700D79294 /* UIView+PublicInit.m in Sources */,
  3138. 8134C1C52A145172006EB0EC /* ASProductItemView.m in Sources */,
  3139. 9A5C64582A12064300CBB185 /* AS_LoginC.m in Sources */,
  3140. 9AD345FD2A08D60F005CA070 /* ZFPersentInteractiveTransition.m in Sources */,
  3141. 8160200A2A2DD59E00E4A8F1 /* CTMediator+Home.m in Sources */,
  3142. 81717C9C2A3BF1F100648139 /* ASHomeAlertViewController.m in Sources */,
  3143. 8810F5092BEB159600346FD4 /* ASCheckoutTopView.m in Sources */,
  3144. 8810F5612BF5EBF400346FD4 /* ASOrderListCell.m in Sources */,
  3145. 8810F59F2BFC7D7600346FD4 /* ASGoodsReviewHeadCell.m in Sources */,
  3146. 9AD345FC2A08D60F005CA070 /* ZFPlayerLogManager.m in Sources */,
  3147. 8193D5C82BEA299F00B9AB11 /* ASAddressListViewController.m in Sources */,
  3148. 9A78E0142B6389FC00CA4E32 /* Cart_MyCartC.m in Sources */,
  3149. 815970BA2B54DC830073041D /* ASUserCenterViewModel.m in Sources */,
  3150. 816D0C9D2AF3988400395B5B /* ASGiftCardAvailabelCell.m in Sources */,
  3151. 8120211B2B15F03B0026B8B5 /* ASVipModel.m in Sources */,
  3152. 81354C0E2A297D6A0082C93A /* HomeFlashDealSubCollectCell.m in Sources */,
  3153. 81FC419C2BEB1E0200EB0A85 /* ASEditAddressViewController.m in Sources */,
  3154. 81354BFD2A28998B0082C93A /* KWMineMoreProductsCell.m in Sources */,
  3155. 9ACBEC252A14707400A8F97A /* AS_SignUpC.m in Sources */,
  3156. 81717D1F2A3C4AE000648139 /* KWMoneyTypeHeadView.m in Sources */,
  3157. 9A3520412B48000F00D097CB /* GoodsReviewsListM.m in Sources */,
  3158. 9AD4D39E2B48F5680086D6FB /* NSMutableAttributedString+RYText.m in Sources */,
  3159. 81EC47782A3426CE00516573 /* ASHomeLookingCollCell.m in Sources */,
  3160. 81DFA5782A47F28D00DA708B /* ASCouponListCell.m in Sources */,
  3161. 8160201C2A2F101C00E4A8F1 /* ASHomeTipCell.m in Sources */,
  3162. 9A8BED332B6B86A30080DA36 /* MyCartCouponCell.m in Sources */,
  3163. 819349352BF5A679009FDDB2 /* ASJumpModel.m in Sources */,
  3164. 81717D1E2A3C4AE000648139 /* KWSearchMainTypeTableView.m in Sources */,
  3165. 81EC47662A33035D00516573 /* ASHomeNewInCellTableViewCell.m in Sources */,
  3166. 8810F5602BF5EBF400346FD4 /* ASOrderDetailsPriceCell.m in Sources */,
  3167. 9AD346162A08D60F005CA070 /* UIImageView+ZFCache.m in Sources */,
  3168. 81717D1D2A3C4AE000648139 /* KWSearchSubTypeHeadView.m in Sources */,
  3169. 9AD345A92A08D571005CA070 /* TYCyclePagerTransformLayout.m in Sources */,
  3170. 8193D5D12BEA2F3100B9AB11 /* ASMineAddressCell.m in Sources */,
  3171. 815DA3D92A39575100616EF7 /* ASProductListImageCell.m in Sources */,
  3172. 815DA3DC2A39625200616EF7 /* ASProductListTypeDesCell.m in Sources */,
  3173. 8810F5652BF5EBF400346FD4 /* ASOrderDetailsViewController.m in Sources */,
  3174. 81932E2B29F7539B007C37AF /* UIColor+AS.m in Sources */,
  3175. 9A35203E2B47FF2300D097CB /* GoodsReviewsListTableV.m in Sources */,
  3176. 9ACBEC282A1472AF00A8F97A /* LoginSignUpV.m in Sources */,
  3177. 9AD346152A08D60F005CA070 /* ZFPortraitControlView.m in Sources */,
  3178. 8186564A2A5BE9790049D861 /* ASSearchViewController.m in Sources */,
  3179. );
  3180. runOnlyForDeploymentPostprocessing = 0;
  3181. };
  3182. 817244B629F3B81C005FA9C9 /* Sources */ = {
  3183. isa = PBXSourcesBuildPhase;
  3184. buildActionMask = 2147483647;
  3185. files = (
  3186. 817244BE29F3B81C005FA9C9 /* NotificationService.m in Sources */,
  3187. );
  3188. runOnlyForDeploymentPostprocessing = 0;
  3189. };
  3190. /* End PBXSourcesBuildPhase section */
  3191. /* Begin PBXTargetDependency section */
  3192. 817244C129F3B81C005FA9C9 /* PBXTargetDependency */ = {
  3193. isa = PBXTargetDependency;
  3194. target = 817244B929F3B81C005FA9C9 /* NotificationServiceExtension */;
  3195. targetProxy = 817244C029F3B81C005FA9C9 /* PBXContainerItemProxy */;
  3196. };
  3197. /* End PBXTargetDependency section */
  3198. /* Begin PBXVariantGroup section */
  3199. 817244AB29F3B2EE005FA9C9 /* LaunchScreen.storyboard */ = {
  3200. isa = PBXVariantGroup;
  3201. children = (
  3202. 817244AC29F3B2EE005FA9C9 /* Base */,
  3203. );
  3204. name = LaunchScreen.storyboard;
  3205. sourceTree = "<group>";
  3206. };
  3207. /* End PBXVariantGroup section */
  3208. /* Begin XCBuildConfiguration section */
  3209. 817244B129F3B2EE005FA9C9 /* Debug */ = {
  3210. isa = XCBuildConfiguration;
  3211. buildSettings = {
  3212. ALWAYS_SEARCH_USER_PATHS = NO;
  3213. CLANG_ANALYZER_NONNULL = YES;
  3214. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3215. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3216. CLANG_ENABLE_MODULES = YES;
  3217. CLANG_ENABLE_OBJC_ARC = YES;
  3218. CLANG_ENABLE_OBJC_WEAK = YES;
  3219. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3220. CLANG_WARN_BOOL_CONVERSION = YES;
  3221. CLANG_WARN_COMMA = YES;
  3222. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3223. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3224. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3225. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3226. CLANG_WARN_EMPTY_BODY = YES;
  3227. CLANG_WARN_ENUM_CONVERSION = YES;
  3228. CLANG_WARN_INFINITE_RECURSION = YES;
  3229. CLANG_WARN_INT_CONVERSION = YES;
  3230. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3231. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3232. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3233. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3234. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3235. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3236. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3237. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3238. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3239. CLANG_WARN_UNREACHABLE_CODE = YES;
  3240. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3241. COPY_PHASE_STRIP = NO;
  3242. DEBUG_INFORMATION_FORMAT = dwarf;
  3243. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3244. ENABLE_TESTABILITY = YES;
  3245. GCC_C_LANGUAGE_STANDARD = gnu11;
  3246. GCC_DYNAMIC_NO_PIC = NO;
  3247. GCC_NO_COMMON_BLOCKS = YES;
  3248. GCC_OPTIMIZATION_LEVEL = 0;
  3249. GCC_PREPROCESSOR_DEFINITIONS = (
  3250. "DEBUG=1",
  3251. "$(inherited)",
  3252. );
  3253. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3254. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3255. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3256. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3257. GCC_WARN_UNUSED_FUNCTION = YES;
  3258. GCC_WARN_UNUSED_VARIABLE = YES;
  3259. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3260. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3261. MTL_FAST_MATH = YES;
  3262. ONLY_ACTIVE_ARCH = YES;
  3263. SDKROOT = iphoneos;
  3264. };
  3265. name = Debug;
  3266. };
  3267. 817244B229F3B2EE005FA9C9 /* Release */ = {
  3268. isa = XCBuildConfiguration;
  3269. buildSettings = {
  3270. ALWAYS_SEARCH_USER_PATHS = NO;
  3271. CLANG_ANALYZER_NONNULL = YES;
  3272. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3273. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3274. CLANG_ENABLE_MODULES = YES;
  3275. CLANG_ENABLE_OBJC_ARC = YES;
  3276. CLANG_ENABLE_OBJC_WEAK = YES;
  3277. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3278. CLANG_WARN_BOOL_CONVERSION = YES;
  3279. CLANG_WARN_COMMA = YES;
  3280. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3281. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3282. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3283. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3284. CLANG_WARN_EMPTY_BODY = YES;
  3285. CLANG_WARN_ENUM_CONVERSION = YES;
  3286. CLANG_WARN_INFINITE_RECURSION = YES;
  3287. CLANG_WARN_INT_CONVERSION = YES;
  3288. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3289. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3290. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3291. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3292. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3293. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3294. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3295. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3296. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3297. CLANG_WARN_UNREACHABLE_CODE = YES;
  3298. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3299. COPY_PHASE_STRIP = NO;
  3300. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3301. ENABLE_NS_ASSERTIONS = NO;
  3302. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3303. GCC_C_LANGUAGE_STANDARD = gnu11;
  3304. GCC_NO_COMMON_BLOCKS = YES;
  3305. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3306. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3307. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3308. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3309. GCC_WARN_UNUSED_FUNCTION = YES;
  3310. GCC_WARN_UNUSED_VARIABLE = YES;
  3311. IPHONEOS_DEPLOYMENT_TARGET = 16.2;
  3312. MTL_ENABLE_DEBUG_INFO = NO;
  3313. MTL_FAST_MATH = YES;
  3314. SDKROOT = iphoneos;
  3315. VALIDATE_PRODUCT = YES;
  3316. };
  3317. name = Release;
  3318. };
  3319. 817244B429F3B2EE005FA9C9 /* Debug */ = {
  3320. isa = XCBuildConfiguration;
  3321. baseConfigurationReference = 3C97D3C0DD5DB3DCA3FF46B8 /* Pods-Asteria.debug.xcconfig */;
  3322. buildSettings = {
  3323. APPLICATION_EXTENSION_API_ONLY = NO;
  3324. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3325. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3326. CODE_SIGN_ENTITLEMENTS = Asteria/Asteria.entitlements;
  3327. CODE_SIGN_STYLE = Automatic;
  3328. CURRENT_PROJECT_VERSION = 1;
  3329. DEVELOPMENT_TEAM = BUGL3DWWB7;
  3330. GCC_PREFIX_HEADER = "$(SRCROOT)/Asteria/PreFixHeader.h";
  3331. GENERATE_INFOPLIST_FILE = YES;
  3332. INFOPLIST_FILE = Asteria/Info.plist;
  3333. INFOPLIST_KEY_CFBundleDisplayName = Asteria;
  3334. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3335. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  3336. INFOPLIST_KEY_UIMainStoryboardFile = "";
  3337. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  3338. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  3339. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3340. LD_RUNPATH_SEARCH_PATHS = (
  3341. "$(inherited)",
  3342. "@executable_path/Frameworks",
  3343. );
  3344. MARKETING_VERSION = 1.0;
  3345. ONLY_ACTIVE_ARCH = NO;
  3346. PRODUCT_BUNDLE_IDENTIFIER = com.info.LYAsteria.Asteria;
  3347. PRODUCT_NAME = "$(TARGET_NAME)";
  3348. SWIFT_EMIT_LOC_STRINGS = YES;
  3349. TARGETED_DEVICE_FAMILY = "1,2";
  3350. };
  3351. name = Debug;
  3352. };
  3353. 817244B529F3B2EE005FA9C9 /* Release */ = {
  3354. isa = XCBuildConfiguration;
  3355. baseConfigurationReference = 2A57FEE3AE67604607B5A6DE /* Pods-Asteria.release.xcconfig */;
  3356. buildSettings = {
  3357. APPLICATION_EXTENSION_API_ONLY = NO;
  3358. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3359. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3360. CODE_SIGN_ENTITLEMENTS = Asteria/Asteria.entitlements;
  3361. CODE_SIGN_STYLE = Automatic;
  3362. CURRENT_PROJECT_VERSION = 1;
  3363. DEVELOPMENT_TEAM = BUGL3DWWB7;
  3364. GCC_PREFIX_HEADER = "$(SRCROOT)/Asteria/PreFixHeader.h";
  3365. GENERATE_INFOPLIST_FILE = YES;
  3366. INFOPLIST_FILE = Asteria/Info.plist;
  3367. INFOPLIST_KEY_CFBundleDisplayName = Asteria;
  3368. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3369. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  3370. INFOPLIST_KEY_UIMainStoryboardFile = "";
  3371. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  3372. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  3373. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3374. LD_RUNPATH_SEARCH_PATHS = (
  3375. "$(inherited)",
  3376. "@executable_path/Frameworks",
  3377. );
  3378. MARKETING_VERSION = 1.0;
  3379. PRODUCT_BUNDLE_IDENTIFIER = com.info.LYAsteria.Asteria;
  3380. PRODUCT_NAME = "$(TARGET_NAME)";
  3381. SWIFT_EMIT_LOC_STRINGS = YES;
  3382. TARGETED_DEVICE_FAMILY = "1,2";
  3383. };
  3384. name = Release;
  3385. };
  3386. 817244C429F3B81C005FA9C9 /* Debug */ = {
  3387. isa = XCBuildConfiguration;
  3388. baseConfigurationReference = F28014612B0095476AA5BC1B /* Pods-Asteria-NotificationServiceExtension.debug.xcconfig */;
  3389. buildSettings = {
  3390. CODE_SIGN_STYLE = Automatic;
  3391. CURRENT_PROJECT_VERSION = 1;
  3392. DEVELOPMENT_TEAM = BUGL3DWWB7;
  3393. GENERATE_INFOPLIST_FILE = YES;
  3394. INFOPLIST_FILE = NotificationServiceExtension/Info.plist;
  3395. INFOPLIST_KEY_CFBundleDisplayName = NotificationServiceExtension;
  3396. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3397. LD_RUNPATH_SEARCH_PATHS = (
  3398. "$(inherited)",
  3399. "@executable_path/Frameworks",
  3400. "@executable_path/../../Frameworks",
  3401. );
  3402. MARKETING_VERSION = 1.0;
  3403. PRODUCT_BUNDLE_IDENTIFIER = com.info.LYAsteria.Asteria.NotificationServiceExtension;
  3404. PRODUCT_NAME = "$(TARGET_NAME)";
  3405. SKIP_INSTALL = YES;
  3406. SWIFT_EMIT_LOC_STRINGS = YES;
  3407. TARGETED_DEVICE_FAMILY = "1,2";
  3408. };
  3409. name = Debug;
  3410. };
  3411. 817244C529F3B81C005FA9C9 /* Release */ = {
  3412. isa = XCBuildConfiguration;
  3413. baseConfigurationReference = 3757F38E691966CC4F482D46 /* Pods-Asteria-NotificationServiceExtension.release.xcconfig */;
  3414. buildSettings = {
  3415. CODE_SIGN_STYLE = Automatic;
  3416. CURRENT_PROJECT_VERSION = 1;
  3417. DEVELOPMENT_TEAM = BUGL3DWWB7;
  3418. GENERATE_INFOPLIST_FILE = YES;
  3419. INFOPLIST_FILE = NotificationServiceExtension/Info.plist;
  3420. INFOPLIST_KEY_CFBundleDisplayName = NotificationServiceExtension;
  3421. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  3422. LD_RUNPATH_SEARCH_PATHS = (
  3423. "$(inherited)",
  3424. "@executable_path/Frameworks",
  3425. "@executable_path/../../Frameworks",
  3426. );
  3427. MARKETING_VERSION = 1.0;
  3428. PRODUCT_BUNDLE_IDENTIFIER = com.info.LYAsteria.Asteria.NotificationServiceExtension;
  3429. PRODUCT_NAME = "$(TARGET_NAME)";
  3430. SKIP_INSTALL = YES;
  3431. SWIFT_EMIT_LOC_STRINGS = YES;
  3432. TARGETED_DEVICE_FAMILY = "1,2";
  3433. };
  3434. name = Release;
  3435. };
  3436. /* End XCBuildConfiguration section */
  3437. /* Begin XCConfigurationList section */
  3438. 8172449529F3B2EC005FA9C9 /* Build configuration list for PBXProject "Asteria" */ = {
  3439. isa = XCConfigurationList;
  3440. buildConfigurations = (
  3441. 817244B129F3B2EE005FA9C9 /* Debug */,
  3442. 817244B229F3B2EE005FA9C9 /* Release */,
  3443. );
  3444. defaultConfigurationIsVisible = 0;
  3445. defaultConfigurationName = Release;
  3446. };
  3447. 817244B329F3B2EE005FA9C9 /* Build configuration list for PBXNativeTarget "Asteria" */ = {
  3448. isa = XCConfigurationList;
  3449. buildConfigurations = (
  3450. 817244B429F3B2EE005FA9C9 /* Debug */,
  3451. 817244B529F3B2EE005FA9C9 /* Release */,
  3452. );
  3453. defaultConfigurationIsVisible = 0;
  3454. defaultConfigurationName = Release;
  3455. };
  3456. 817244C629F3B81C005FA9C9 /* Build configuration list for PBXNativeTarget "NotificationServiceExtension" */ = {
  3457. isa = XCConfigurationList;
  3458. buildConfigurations = (
  3459. 817244C429F3B81C005FA9C9 /* Debug */,
  3460. 817244C529F3B81C005FA9C9 /* Release */,
  3461. );
  3462. defaultConfigurationIsVisible = 0;
  3463. defaultConfigurationName = Release;
  3464. };
  3465. /* End XCConfigurationList section */
  3466. };
  3467. rootObject = 8172449229F3B2EC005FA9C9 /* Project object */;
  3468. }