project.pbxproj 223 KB

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