project.pbxproj 218 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 50;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 0A110C4CD931995B8E8BF7C5 /* Pods_RainbowPlanet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */; };
  10. A70B2C042283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C032283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift */; };
  11. A70B2C072284305400B2449F /* ProductModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C062284305400B2449F /* ProductModel.swift */; };
  12. A70B2C102286A3BC00B2449F /* ProductDetailModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C0F2286A3BC00B2449F /* ProductDetailModel.swift */; };
  13. A70B2C1D2286B52400B2449F /* ProductDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C1B2286B52400B2449F /* ProductDetailViewController.swift */; };
  14. A70B2C202286B54500B2449F /* ProductDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C1F2286B54500B2449F /* ProductDetailView.swift */; };
  15. A70B2C222286BF5900B2449F /* ProductDetailTableViewHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C212286BF5900B2449F /* ProductDetailTableViewHeaderView.swift */; };
  16. A70B2C252286C03800B2449F /* NXLPageControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C242286C03800B2449F /* NXLPageControl.swift */; };
  17. A70B2C272286C5D600B2449F /* ProductDetailFSPagerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C262286C5D600B2449F /* ProductDetailFSPagerViewCell.swift */; };
  18. A70B2C292286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C282286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift */; };
  19. A70B2C2D2286E29900B2449F /* Product.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A70B2C2C2286E29900B2449F /* Product.xcassets */; };
  20. A70B2C3322880BB700B2449F /* ProductDetailProductSkuTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C3222880BB700B2449F /* ProductDetailProductSkuTableViewCell.swift */; };
  21. A70B2C35228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C34228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift */; };
  22. A70B2C372288177300B2449F /* ProductDetailProductSkuIconCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C362288177300B2449F /* ProductDetailProductSkuIconCollectionViewCell.swift */; };
  23. A70B2C3E228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C3D228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift */; };
  24. A70B2C402288312900B2449F /* ProductDetailSectionHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C3F2288312900B2449F /* ProductDetailSectionHeader.swift */; };
  25. A70B2C4322883B4E00B2449F /* ProductDetailShopTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C4222883B4E00B2449F /* ProductDetailShopTableViewCell.swift */; };
  26. A70B2C46228840B100B2449F /* ProductDetailHotSellTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C45228840B100B2449F /* ProductDetailHotSellTableViewCell.swift */; };
  27. A70B2C492288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C482288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift */; };
  28. A70B2C4C228845E800B2449F /* ProductDetailParameterTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C4B228845E800B2449F /* ProductDetailParameterTableViewCell.swift */; };
  29. A70B2C4E22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C4D22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift */; };
  30. A70B2C532288584500B2449F /* ShareView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C522288584500B2449F /* ShareView.swift */; };
  31. A70B2C5522885AF500B2449F /* ShareCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5422885AF500B2449F /* ShareCollectionViewCell.swift */; };
  32. A70B2C5A22886ADF00B2449F /* ShopViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5922886ADF00B2449F /* ShopViewController.swift */; };
  33. A70B2C5C22886B0000B2449F /* ShopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5B22886B0000B2449F /* ShopView.swift */; };
  34. A70B2C5E22886F4D00B2449F /* ShopViewTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5D22886F4D00B2449F /* ShopViewTableViewCell.swift */; };
  35. A70B2C60228870CE00B2449F /* ShopSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C5F228870CE00B2449F /* ShopSectionHeaderView.swift */; };
  36. A70B2C64228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C63228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift */; };
  37. A70B2C6722887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C6622887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift */; };
  38. A70B2C6B2288815300B2449F /* PickHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C6A2288815300B2449F /* PickHeaderView.swift */; };
  39. A70B2C6D2288815E00B2449F /* PickViewOneComponentsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70B2C6C2288815E00B2449F /* PickViewOneComponentsView.swift */; };
  40. A70EBBC022561179000AD74F /* Extension+UITableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A70EBBBF22561179000AD74F /* Extension+UITableView.swift */; };
  41. A7190167227543DB00104A50 /* baidu_cityid_rel.json in Resources */ = {isa = PBXBuildFile; fileRef = A7190166227543DB00104A50 /* baidu_cityid_rel.json */; };
  42. A71901692275464000104A50 /* ProvinceCityAreaView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71901682275464000104A50 /* ProvinceCityAreaView.swift */; };
  43. A719016B22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A719016A22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift */; };
  44. A71901702275EF9900104A50 /* NXLRealm.swift in Sources */ = {isa = PBXBuildFile; fileRef = A719016F2275EF9900104A50 /* NXLRealm.swift */; };
  45. A71901752275F71F00104A50 /* BaiduToCityModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71901742275F71F00104A50 /* BaiduToCityModel.swift */; };
  46. A71AA50C2272126A008FF1A5 /* EditAddressFooterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA50B2272126A008FF1A5 /* EditAddressFooterView.swift */; };
  47. A71AA5102272156A008FF1A5 /* ExpressAddressListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA50F2272156A008FF1A5 /* ExpressAddressListViewController.swift */; };
  48. A71AA513227215B5008FF1A5 /* ExpressAddressListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA512227215B5008FF1A5 /* ExpressAddressListView.swift */; };
  49. A71AA5152272160A008FF1A5 /* ExpressAddressListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA5142272160A008FF1A5 /* ExpressAddressListTableViewCell.swift */; };
  50. A71AA519227219D7008FF1A5 /* EditExpressAddressViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA518227219D7008FF1A5 /* EditExpressAddressViewController.swift */; };
  51. A71AA51C227219EF008FF1A5 /* EditExpressAddressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA51B227219EF008FF1A5 /* EditExpressAddressView.swift */; };
  52. A71AA51F22729F35008FF1A5 /* AuthorizationSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA51E22729F35008FF1A5 /* AuthorizationSwift.swift */; };
  53. A71AA5212272E527008FF1A5 /* Extension+UINavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA5202272E527008FF1A5 /* Extension+UINavigationController.swift */; };
  54. A71AA52622732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA52522732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift */; };
  55. A71AA52822732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AA52722732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift */; };
  56. A71AF0A6226EDDC8001730FE /* SearchViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0A5226EDDC8001730FE /* SearchViewController.swift */; };
  57. A71AF0AA226EDDF5001730FE /* SearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0A9226EDDF5001730FE /* SearchView.swift */; };
  58. A71AF0AC226EDE37001730FE /* SearchNavigationbarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0AB226EDE37001730FE /* SearchNavigationbarView.swift */; };
  59. A71AF0AE226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0AD226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift */; };
  60. A71AF0B0226EF185001730FE /* SearchCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0AF226EF185001730FE /* SearchCollectionViewCell.swift */; };
  61. A71AF0B6226EF99A001730FE /* SearchResultViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0B5226EF99A001730FE /* SearchResultViewController.swift */; };
  62. A71AF0B8226EF9EC001730FE /* SearchResultNavigationbarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0B7226EF9EC001730FE /* SearchResultNavigationbarView.swift */; };
  63. A71AF0BA226F00F8001730FE /* SearchResultView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0B9226F00F8001730FE /* SearchResultView.swift */; };
  64. A71AF0BC226F099B001730FE /* ProductHBigTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71AF0BB226F099B001730FE /* ProductHBigTableViewCell.swift */; };
  65. A71AF0BE226F1792001730FE /* ShoppingMallModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A71AF0BD226F1792001730FE /* ShoppingMallModule.xcassets */; };
  66. A71D2A602265673A00A55D16 /* RegisterLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A71D2A5F2265673A00A55D16 /* RegisterLoginView.swift */; };
  67. A72843FC224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */; };
  68. A7284401224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */; };
  69. A7284404224DBFBD00F82F30 /* UserModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284403224DBFBD00F82F30 /* UserModel.swift */; };
  70. A7284440224DFACD00F82F30 /* InfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A728443F224DFACD00F82F30 /* InfoModel.swift */; };
  71. A7284A522252EE9A000BAEC4 /* RootModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A512252EE9A000BAEC4 /* RootModel.swift */; };
  72. A7284A542252FB5C000BAEC4 /* PaginationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A532252FB5C000BAEC4 /* PaginationModel.swift */; };
  73. A7284A7322546460000BAEC4 /* SwiftMoyaServicePayApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A7222546460000BAEC4 /* SwiftMoyaServicePayApi.swift */; };
  74. A7284A75225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A74225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift */; };
  75. A7284A7722547333000BAEC4 /* AlipayResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A7622547333000BAEC4 /* AlipayResultModel.swift */; };
  76. A729B5A82266F2E0004AE098 /* AlertSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5A72266F2E0004AE098 /* AlertSheetView.swift */; };
  77. A729B5AA2266F6FD004AE098 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A729B5A92266F6FD004AE098 /* Launch Screen.storyboard */; };
  78. A729B5AD2266FF45004AE098 /* BindPhoneNumberView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5AC2266FF45004AE098 /* BindPhoneNumberView.swift */; };
  79. A729B5B022671310004AE098 /* MobileLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5AF22671310004AE098 /* MobileLoginView.swift */; };
  80. A729B5B42267254B004AE098 /* PasswordLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5B32267254B004AE098 /* PasswordLoginViewController.swift */; };
  81. A729B5B72267270B004AE098 /* PasswordLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A729B5B62267270B004AE098 /* PasswordLoginView.swift */; };
  82. A72A726722321DBD00B21995 /* LocationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726322321DBD00B21995 /* LocationModel.swift */; };
  83. A72A726822321DBD00B21995 /* UMManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726522321DBD00B21995 /* UMManager.swift */; };
  84. A72A72A922321DE000B21995 /* NumberKeyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727222321DDE00B21995 /* NumberKeyboard.swift */; };
  85. A72A72AA22321DE000B21995 /* Log.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727422321DDE00B21995 /* Log.swift */; };
  86. A72A72AB22321DE000B21995 /* SwiftProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */; };
  87. A72A72AC22321DE000B21995 /* Regex.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727822321DDF00B21995 /* Regex.swift */; };
  88. A72A72AE22321DE000B21995 /* CountdownButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727C22321DDF00B21995 /* CountdownButton.swift */; };
  89. A72A72AF22321DE000B21995 /* AppInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727E22321DDF00B21995 /* AppInfo.swift */; };
  90. A72A72B022321DE000B21995 /* CGView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728022321DDF00B21995 /* CGView.swift */; };
  91. A72A72B422321DE000B21995 /* Extension+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728C22321DE000B21995 /* Extension+UIImage.swift */; };
  92. A72A72B522321DE000B21995 /* Extension+UITextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728D22321DE000B21995 /* Extension+UITextView.swift */; };
  93. A72A72B622321DE000B21995 /* Extension+NSRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728E22321DE000B21995 /* Extension+NSRange.swift */; };
  94. A72A72B722321DE000B21995 /* Extension+NSMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */; };
  95. A72A72B822321DE000B21995 /* Extension+UserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729022321DE000B21995 /* Extension+UserDefaults.swift */; };
  96. A72A72B922321DE000B21995 /* Extension+Array.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729122321DE000B21995 /* Extension+Array.swift */; };
  97. A72A72BA22321DE000B21995 /* Extension+String.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729222321DE000B21995 /* Extension+String.swift */; };
  98. A72A72BB22321DE000B21995 /* Extension+UILabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729322321DE000B21995 /* Extension+UILabel.swift */; };
  99. A72A72BC22321DE000B21995 /* Extension+UIAlertController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729422321DE000B21995 /* Extension+UIAlertController.swift */; };
  100. A72A72BD22321DE000B21995 /* Extension+UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729722321DE000B21995 /* Extension+UIColor.swift */; };
  101. A72A72BE22321DE000B21995 /* Extension+RxTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729822321DE000B21995 /* Extension+RxTimer.swift */; };
  102. A72A72BF22321DE000B21995 /* Extension+UIButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729922321DE000B21995 /* Extension+UIButton.swift */; };
  103. A72A72C022321DE000B21995 /* Extension+UIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729A22321DE000B21995 /* Extension+UIView.swift */; };
  104. A72A72C322321DE000B21995 /* Extension+Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729D22321DE000B21995 /* Extension+Date.swift */; };
  105. A72A72C422321DE000B21995 /* Extension+CAGradientLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */; };
  106. A72A72C522321DE000B21995 /* WKWebViewConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72A022321DE000B21995 /* WKWebViewConfig.swift */; };
  107. A72A72C622321DE000B21995 /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72A122321DE000B21995 /* WebView.swift */; };
  108. A72A72CF22321E2700B21995 /* NotificationCenterMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */; };
  109. A72A72D022321E2700B21995 /* FontMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C822321E2500B21995 /* FontMacro.swift */; };
  110. A72A72D122321E2700B21995 /* HTMLURLMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C922321E2600B21995 /* HTMLURLMacro.swift */; };
  111. A72A72D222321E2700B21995 /* Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CA22321E2600B21995 /* Common.swift */; };
  112. A72A72D322321E2700B21995 /* CacheMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CB22321E2600B21995 /* CacheMacro.swift */; };
  113. A72A72D422321E2700B21995 /* EnumMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CC22321E2600B21995 /* EnumMacro.swift */; };
  114. A72A72D522321E2700B21995 /* ColorMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CD22321E2600B21995 /* ColorMacro.swift */; };
  115. A72A72D622321E2700B21995 /* ThirdPartyMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CE22321E2700B21995 /* ThirdPartyMacro.swift */; };
  116. A72A72F022321E8800B21995 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72EF22321E8800B21995 /* CoreMotion.framework */; };
  117. A72A72F222321E9300B21995 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F122321E9300B21995 /* CFNetwork.framework */; };
  118. A72A72F422321E9A00B21995 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F322321E9A00B21995 /* Foundation.framework */; };
  119. A72A72F622321EA000B21995 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F522321EA000B21995 /* UIKit.framework */; };
  120. A72A72F822321EB600B21995 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F722321EB600B21995 /* CoreGraphics.framework */; };
  121. A72A72FA22321EBF00B21995 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F922321EBF00B21995 /* CoreText.framework */; };
  122. A72A72FC22321ECE00B21995 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FB22321ECD00B21995 /* CoreTelephony.framework */; };
  123. A72A72FE22321EE200B21995 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FD22321EE200B21995 /* QuartzCore.framework */; };
  124. A72A730022321EE900B21995 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FF22321EE900B21995 /* SystemConfiguration.framework */; };
  125. A72A730222321EEE00B21995 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A730122321EEE00B21995 /* libz.tbd */; };
  126. A72A730422321EFA00B21995 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A730322321EFA00B21995 /* libc++.tbd */; };
  127. A72A73142232475E00B21995 /* AlipayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73132232475E00B21995 /* AlipayManager.swift */; };
  128. A72A73162232481600B21995 /* WeChatpayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73152232481600B21995 /* WeChatpayManager.swift */; };
  129. A72A7333223256E100B21995 /* PayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7332223256E100B21995 /* PayManager.swift */; };
  130. A72A733522325A4B00B21995 /* AppDelegate+HandleOpen.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */; };
  131. A72A7386223396CB00B21995 /* SwiftMoyaNetWorkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */; };
  132. A72A7388223396CB00B21995 /* ApiMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7384223396CB00B21995 /* ApiMacro.swift */; };
  133. A72C01222275404A0065E0C3 /* ProvinceCityAreaModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72C01202275404A0065E0C3 /* ProvinceCityAreaModel.swift */; };
  134. A72C01232275404A0065E0C3 /* province_city_area.json in Resources */ = {isa = PBXBuildFile; fileRef = A72C01212275404A0065E0C3 /* province_city_area.json */; };
  135. A738D202225AD6AD00EEE860 /* Extension+UICollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A738D201225AD6AD00EEE860 /* Extension+UICollectionView.swift */; };
  136. A738D205225AF90D00EEE860 /* WeChatpayOrderModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A738D204225AF90D00EEE860 /* WeChatpayOrderModel.swift */; };
  137. A738D66F225D9BD900EEE860 /* UMLoginModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A738D66E225D9BD900EEE860 /* UMLoginModel.swift */; };
  138. A73D7C682268A032002A4CE3 /* SwiftyStarRatingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A73D7C672268A032002A4CE3 /* SwiftyStarRatingView.swift */; };
  139. A75414FD224B5F28002480B5 /* MobileLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A75414FB224B5F28002480B5 /* MobileLoginViewController.swift */; };
  140. A7541502224C5ECB002480B5 /* BaiduMapManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7541501224C5ECA002480B5 /* BaiduMapManager.swift */; };
  141. A754150F224CACF9002480B5 /* SwiftSign.swift in Sources */ = {isa = PBXBuildFile; fileRef = A754150B224CACF9002480B5 /* SwiftSign.swift */; };
  142. A757C92E22744ACE00226355 /* AddressManagerListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A757C92D22744ACE00226355 /* AddressManagerListModel.swift */; };
  143. A757C9302274839900226355 /* SelfMentionAddressListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A757C92F2274839900226355 /* SelfMentionAddressListModel.swift */; };
  144. A757C9342274882E00226355 /* UIScrollView+MJRefreshEX.m in Sources */ = {isa = PBXBuildFile; fileRef = A757C9322274882E00226355 /* UIScrollView+MJRefreshEX.m */; };
  145. A7636AC52268139C00374F9E /* LocationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7636AC42268139C00374F9E /* LocationViewController.swift */; };
  146. A7636AC822682BAF00374F9E /* LocationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7636AC722682BAF00374F9E /* LocationView.swift */; };
  147. A76390EB2248E27A0067EEE0 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A76390EA2248E27A0067EEE0 /* UserNotifications.framework */; };
  148. A771F07C226D4E1C007999DB /* AddressPOITableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A771F07B226D4E1C007999DB /* AddressPOITableViewCell.swift */; };
  149. A775CBFE2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */; };
  150. A775CC00223774A300EBDCF8 /* ShoppingMallView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */; };
  151. A775CC0322377C6500EBDCF8 /* EmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CC0222377C6500EBDCF8 /* EmptyView.swift */; };
  152. A7778C9722438F5D00C7C47A /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */; };
  153. A7778C9822438F5D00C7C47A /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7778C9022438F5C00C7C47A /* AlipaySDK.framework */; };
  154. A7778C9922438F5D00C7C47A /* README.txt in Resources */ = {isa = PBXBuildFile; fileRef = A7778C9422438F5D00C7C47A /* README.txt */; };
  155. A7778C9A22438F5D00C7C47A /* libWeChatSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A7778C9622438F5D00C7C47A /* libWeChatSDK.a */; };
  156. A7778CA72243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */; };
  157. A7778CA92244904500C7C47A /* Extension+Gifu.GIFImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */; };
  158. A7778CAB2244B12500C7C47A /* CountDownManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CAA2244B12500C7C47A /* CountDownManager.swift */; };
  159. A7778CB32244D73400C7C47A /* RegisterLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB12244D73400C7C47A /* RegisterLoginViewController.swift */; };
  160. A7778CB82244E97A00C7C47A /* BindPhoneNumberViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */; };
  161. A7778CBA2244F14B00C7C47A /* Extension+UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */; };
  162. A7778CC52246035700C7C47A /* PhoneCountryAreaViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */; };
  163. A7778CD522460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */; };
  164. A7778CDD2246121500C7C47A /* PhoneCountryAreaListMdoel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */; };
  165. A7778CDF22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */; };
  166. A77F2C612231FB49001BD3F6 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C602231FB49001BD3F6 /* AppDelegate.swift */; };
  167. A77F2C682231FB4A001BD3F6 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A77F2C672231FB4A001BD3F6 /* Assets.xcassets */; };
  168. A77F2C762231FB4A001BD3F6 /* RainbowPlanetTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */; };
  169. A77F2C812231FB4A001BD3F6 /* RainbowPlanetUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */; };
  170. A77F2C982231FD25001BD3F6 /* BaseNavigationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */; };
  171. A77F2C9C2231FDCF001BD3F6 /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */; };
  172. A77F2C9E2231FDDC001BD3F6 /* BaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */; };
  173. A77F2CA02231FE45001BD3F6 /* BaseWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */; };
  174. A77F2CB52232010F001BD3F6 /* ShoppingMallViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */; };
  175. A77F2CB72232010F001BD3F6 /* MineViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CAD2232010F001BD3F6 /* MineViewController.swift */; };
  176. A77F2CB92232010F001BD3F6 /* ShoppingCartViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */; };
  177. A77F2CC3223203BA001BD3F6 /* AppDelegate+Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */; };
  178. A77F2CC722320627001BD3F6 /* WRNavigationBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */; };
  179. A77F2CC822320627001BD3F6 /* WRCustomNavigationBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */; };
  180. A77F2CCA223209F2001BD3F6 /* BaseTabbarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */; };
  181. A7824AFB2271EA2600ABA381 /* SelfMentionContactsListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824AFA2271EA2600ABA381 /* SelfMentionContactsListView.swift */; };
  182. A7824AFD2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824AFC2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift */; };
  183. A7824B002271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824AFF2271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift */; };
  184. A7824B042271F10300ABA381 /* EditSelfMentionContactsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824B032271F10300ABA381 /* EditSelfMentionContactsView.swift */; };
  185. A7824B062271F25400ABA381 /* EditAddressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824B052271F25400ABA381 /* EditAddressTableViewCell.swift */; };
  186. A7824B082271F53A00ABA381 /* EditSetDefaultTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7824B072271F53A00ABA381 /* EditSetDefaultTableViewCell.swift */; };
  187. A79057022276C9770037F823 /* SetPasswordModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A79057012276C9770037F823 /* SetPasswordModel.swift */; };
  188. A79057062276EA3D0037F823 /* OpenCityListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A79057052276EA3D0037F823 /* OpenCityListModel.swift */; };
  189. A79057082276FEB00037F823 /* SelfMentionContactsModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A79057072276FEB00037F823 /* SelfMentionContactsModel.swift */; };
  190. A7A98DFD227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98DFC227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift */; };
  191. A7A98DFF227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98DFE227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift */; };
  192. A7A98E02227E8900005306E9 /* ProductSearchListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E01227E8900005306E9 /* ProductSearchListModel.swift */; };
  193. A7A98E05227EB891005306E9 /* CategoryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E04227EB891005306E9 /* CategoryViewController.swift */; };
  194. A7A98E09227EB8DD005306E9 /* CategoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E08227EB8DD005306E9 /* CategoryView.swift */; };
  195. A7A98E0B227EBD04005306E9 /* CategorySearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E0A227EBD04005306E9 /* CategorySearchView.swift */; };
  196. A7A98E0E227EC0C6005306E9 /* CategoryTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E0D227EC0C6005306E9 /* CategoryTableViewCell.swift */; };
  197. A7A98E10227EC531005306E9 /* ProductHSmallTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E0F227EC531005306E9 /* ProductHSmallTableViewCell.swift */; };
  198. A7A98E12227ECA11005306E9 /* ProductSearchModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E11227ECA11005306E9 /* ProductSearchModel.swift */; };
  199. A7A98E14227ED0E2005306E9 /* CategoryListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E13227ED0E2005306E9 /* CategoryListModel.swift */; };
  200. A7A98E17227EED76005306E9 /* SpecialViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E16227EED76005306E9 /* SpecialViewController.swift */; };
  201. A7A98E1B227EEE49005306E9 /* SpecialView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E1A227EEE49005306E9 /* SpecialView.swift */; };
  202. A7A98E1D227EF1CB005306E9 /* SpecialBannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E1C227EF1CB005306E9 /* SpecialBannerView.swift */; };
  203. A7A98E28227FD6C6005306E9 /* ShoppingMallListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E27227FD6C6005306E9 /* ShoppingMallListViewController.swift */; };
  204. A7A98E2D22801642005306E9 /* SwiftMoyaServiceCMSApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E2C22801642005306E9 /* SwiftMoyaServiceCMSApi.swift */; };
  205. A7A98E2F228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E2E228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift */; };
  206. A7A98E3122801B10005306E9 /* ShoppingMallListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E3022801B10005306E9 /* ShoppingMallListView.swift */; };
  207. A7A98E332280272A005306E9 /* ShoppingMallBannerTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E322280272A005306E9 /* ShoppingMallBannerTableViewCell.swift */; };
  208. A7A98E3622802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E3522802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift */; };
  209. A7A98E3A2280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E392280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift */; };
  210. A7A98E3C228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E3B228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift */; };
  211. A7A98E41228046C5005306E9 /* ShoppingMallSepcialTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E40228046C4005306E9 /* ShoppingMallSepcialTableViewCell.swift */; };
  212. A7A98E4322804851005306E9 /* ShoppingMallSepcialFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E4222804851005306E9 /* ShoppingMallSepcialFlowLayout.swift */; };
  213. A7A98E4522804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A98E4422804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift */; };
  214. A7B4E71F228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E71E228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift */; };
  215. A7B4E721228151F40012914A /* ProductFloorTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E720228151F40012914A /* ProductFloorTitleView.swift */; };
  216. A7B4E723228154750012914A /* ProductFloorBannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E722228154750012914A /* ProductFloorBannerView.swift */; };
  217. A7B4E728228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E727228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift */; };
  218. A7B4E72D228176060012914A /* ProductMallBarChartCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E72C228176060012914A /* ProductMallBarChartCollectionViewCell.swift */; };
  219. A7B4E72F2281773F0012914A /* ProductFloorCenterTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E72E2281773F0012914A /* ProductFloorCenterTitleView.swift */; };
  220. A7B4E7352281907A0012914A /* CMSModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E7342281907A0012914A /* CMSModel.swift */; };
  221. A7B4E738228191CC0012914A /* CommondModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E737228191CC0012914A /* CommondModel.swift */; };
  222. A7B4E73A228192D20012914A /* CMSTemplateModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E739228192D10012914A /* CMSTemplateModel.swift */; };
  223. A7B4E754228278320012914A /* ShoppingMallFloorTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E753228278320012914A /* ShoppingMallFloorTableViewCell.swift */; };
  224. A7B4E756228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E755228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift */; };
  225. A7B4E7582282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E7572282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift */; };
  226. A7B4E75A228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7B4E759228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift */; };
  227. A7BB684F2268DCEC00AB07A2 /* SelfRecommendationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB684D2268DCEC00AB07A2 /* SelfRecommendationViewController.swift */; };
  228. A7BB68552268DE8600AB07A2 /* SelfRecommendationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB68542268DE8600AB07A2 /* SelfRecommendationView.swift */; };
  229. A7BB6857226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB6856226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift */; };
  230. A7BB685922696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB685822696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift */; };
  231. A7BB68662269B1DD00AB07A2 /* AddressPOIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB68632269B1DD00AB07A2 /* AddressPOIView.swift */; };
  232. A7BB68672269B1DD00AB07A2 /* AddressPOIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7BB68652269B1DD00AB07A2 /* AddressPOIViewController.swift */; };
  233. A7C3DD1A226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C3DD19226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift */; };
  234. A7C3DD1C226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C3DD1B226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift */; };
  235. A7CC74D4226FF1AA003C4F38 /* MineView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D3226FF1AA003C4F38 /* MineView.swift */; };
  236. A7CC74D6226FF421003C4F38 /* MineNavigationBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D5226FF421003C4F38 /* MineNavigationBarView.swift */; };
  237. A7CC74D822700359003C4F38 /* MineTableViewHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D722700359003C4F38 /* MineTableViewHeaderView.swift */; };
  238. A7CC74DA22702E41003C4F38 /* MineOrderTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74D922702E41003C4F38 /* MineOrderTableViewCell.swift */; };
  239. A7CC74DC2270352F003C4F38 /* MineOrderCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74DB2270352F003C4F38 /* MineOrderCollectionViewCell.swift */; };
  240. A7CC74DE22703B4A003C4F38 /* MineModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7CC74DD22703B4A003C4F38 /* MineModule.xcassets */; };
  241. A7CC74E0227042A4003C4F38 /* MineServiceTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74DF227042A4003C4F38 /* MineServiceTableViewCell.swift */; };
  242. A7CC74E222704429003C4F38 /* MineServiceCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74E122704429003C4F38 /* MineServiceCollectionViewCell.swift */; };
  243. A7CC74E62270628B003C4F38 /* DeliveryMethodTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74E52270628B003C4F38 /* DeliveryMethodTypeModel.swift */; };
  244. A7CC74EA22706ACD003C4F38 /* MessageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74E922706ACD003C4F38 /* MessageViewController.swift */; };
  245. A7CC74EF22706CCA003C4F38 /* MessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74EE22706CCA003C4F38 /* MessageView.swift */; };
  246. A7CC74F122706FE3003C4F38 /* MessageOneCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74F022706FE3003C4F38 /* MessageOneCollectionViewCell.swift */; };
  247. A7CC74F3227070D2003C4F38 /* MessageTwoCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC74F2227070D2003C4F38 /* MessageTwoCollectionViewCell.swift */; };
  248. A7CC750622714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750522714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift */; };
  249. A7CC750A22715755003C4F38 /* MessageDetailesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750922715755003C4F38 /* MessageDetailesViewController.swift */; };
  250. A7CC750D227157DA003C4F38 /* MessageDetailesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750C227157DA003C4F38 /* MessageDetailesView.swift */; };
  251. A7CC750F22715AAC003C4F38 /* MessageDetailesTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC750E22715AAC003C4F38 /* MessageDetailesTableViewCell.swift */; };
  252. A7CC751122715AE3003C4F38 /* MessageDetailesTimeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751022715AE3003C4F38 /* MessageDetailesTimeView.swift */; };
  253. A7CC7516227161D5003C4F38 /* SetViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7515227161D5003C4F38 /* SetViewController.swift */; };
  254. A7CC751822716202003C4F38 /* SetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751722716202003C4F38 /* SetView.swift */; };
  255. A7CC751A22716254003C4F38 /* SetTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751922716254003C4F38 /* SetTableViewCell.swift */; };
  256. A7CC751C22716426003C4F38 /* SetLogoutTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751B22716426003C4F38 /* SetLogoutTableViewCell.swift */; };
  257. A7CC751F227190C5003C4F38 /* AccountSecurityViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC751E227190C5003C4F38 /* AccountSecurityViewController.swift */; };
  258. A7CC7524227190FB003C4F38 /* AccountSecurityView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7523227190FB003C4F38 /* AccountSecurityView.swift */; };
  259. A7CC7526227196A8003C4F38 /* AccountSecurityTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7525227196A8003C4F38 /* AccountSecurityTableViewCell.swift */; };
  260. A7CC7528227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC7527227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift */; };
  261. A7CC752C2271A1AE003C4F38 /* SetPasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC752B2271A1AE003C4F38 /* SetPasswordViewController.swift */; };
  262. A7CC752F2271A1F2003C4F38 /* SetPasswordView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC752E2271A1F2003C4F38 /* SetPasswordView.swift */; };
  263. A7CC75332271ABB0003C4F38 /* AddressManagerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75322271ABB0003C4F38 /* AddressManagerViewController.swift */; };
  264. A7CC75362271AC14003C4F38 /* AddressManagerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75352271AC14003C4F38 /* AddressManagerView.swift */; };
  265. A7CC75382271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75372271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift */; };
  266. A7CC753A2271B98B003C4F38 /* AddressManagerAddTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75392271B98B003C4F38 /* AddressManagerAddTableViewCell.swift */; };
  267. A7CC753C2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC753B2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift */; };
  268. A7CC753E2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC753D2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift */; };
  269. A7CC75432271E038003C4F38 /* SelfMentionContactsListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7CC75422271E038003C4F38 /* SelfMentionContactsListViewController.swift */; };
  270. A7D4608E227616F800A5A54E /* SQLiteManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D4608D227616F800A5A54E /* SQLiteManager.swift */; };
  271. A7D46090227617D200A5A54E /* SQLModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D4608F227617D200A5A54E /* SQLModel.swift */; };
  272. A7D46092227619CD00A5A54E /* BaiduToCityFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D46091227619CC00A5A54E /* BaiduToCityFactory.swift */; };
  273. A7D460942276854500A5A54E /* BaiduToCity2Model.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D460932276854500A5A54E /* BaiduToCity2Model.swift */; };
  274. A7DC467F22783A47001F3EFC /* EditExpressAddressTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7DC467E22783A47001F3EFC /* EditExpressAddressTableViewCell.swift */; };
  275. BD15CCD122895E1800EDCE93 /* ProductCartHotSaleCollectionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD15CCD022895E1800EDCE93 /* ProductCartHotSaleCollectionCell.swift */; };
  276. BD20F1CB2283C12000677D8E /* ShoppingCartListNoneItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1CA2283C12000677D8E /* ShoppingCartListNoneItemCell.swift */; };
  277. BD20F1CD2283C51300677D8E /* ShoppingCartFinishPayController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1CC2283C51300677D8E /* ShoppingCartFinishPayController.swift */; };
  278. BD20F1CF2283CE2300677D8E /* ShoppingCartFinishPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1CE2283CE2300677D8E /* ShoppingCartFinishPayView.swift */; };
  279. BD20F1D32283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1D22283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift */; };
  280. BD20F1D52283D15500677D8E /* ShoppingCartPayFailureCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD20F1D42283D15500677D8E /* ShoppingCartPayFailureCell.swift */; };
  281. BD20F1D82283D2AA00677D8E /* ShoppingCartModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = BD20F1D72283D2AA00677D8E /* ShoppingCartModule.xcassets */; };
  282. BD3474F522857B85000908C5 /* CommonPayHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD3474F422857B85000908C5 /* CommonPayHeader.swift */; };
  283. BD7AB83622841A8B0030646A /* ShoppingCartPayOrderItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB83522841A8B0030646A /* ShoppingCartPayOrderItemCell.swift */; };
  284. BD7AB838228420310030646A /* ShoppingCartPayOrderHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB837228420310030646A /* ShoppingCartPayOrderHeader.swift */; };
  285. BD7AB83A2284288D0030646A /* ShoppingCartPayOrderFooter.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB8392284288D0030646A /* ShoppingCartPayOrderFooter.swift */; };
  286. BD7AB83D228438020030646A /* OrderPayExpressInfoShowCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB83C228438020030646A /* OrderPayExpressInfoShowCell.swift */; };
  287. BD7AB83F228438290030646A /* OrderPayExpressAddInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB83E228438290030646A /* OrderPayExpressAddInfoCell.swift */; };
  288. BD7AB841228438C80030646A /* OrderPaySelfPickAddressCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB840228438C80030646A /* OrderPaySelfPickAddressCell.swift */; };
  289. BD7AB8432284390B0030646A /* OrderPaySelfPickInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB8422284390B0030646A /* OrderPaySelfPickInfoCell.swift */; };
  290. BD7AB8452284398A0030646A /* OrderPaySelfPickAddInfoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD7AB8442284398A0030646A /* OrderPaySelfPickAddInfoCell.swift */; };
  291. BDD4FB1222840597006FE833 /* ShoppingCartPayOrderController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD4FB1122840597006FE833 /* ShoppingCartPayOrderController.swift */; };
  292. BDD4FB1422840954006FE833 /* ShoppingCartOrderPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD4FB1322840954006FE833 /* ShoppingCartOrderPayView.swift */; };
  293. BDD4FB1722840DD3006FE833 /* OrderPayAcountView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD4FB1622840DD3006FE833 /* OrderPayAcountView.swift */; };
  294. BDE3045D22851E4F001D050F /* ProductCartListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDE3045C22851E4F001D050F /* ProductCartListModel.swift */; };
  295. BDE3045F228554CA001D050F /* ProductCartAmountModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDE3045E228554CA001D050F /* ProductCartAmountModel.swift */; };
  296. BDEF7791228571DC00ED0AC0 /* CommonPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDEF7790228571DC00ED0AC0 /* CommonPayView.swift */; };
  297. BDEF7793228575A800ED0AC0 /* CommonPayCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDEF7792228575A800ED0AC0 /* CommonPayCell.swift */; };
  298. BDF47D7A228271F600941AB9 /* ShoppingCartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D79228271F600941AB9 /* ShoppingCartView.swift */; };
  299. BDF47D7E22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D7D22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift */; };
  300. BDF47D80228288F900941AB9 /* ShoppingCartAccountView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D7F228288F900941AB9 /* ShoppingCartAccountView.swift */; };
  301. BDF47D822282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D812282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift */; };
  302. BDF47D852282C59F00941AB9 /* ShoppingCartListTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D842282C59F00941AB9 /* ShoppingCartListTableViewCell.swift */; };
  303. BDF47D872282C92200941AB9 /* ShoppingCartListTableViewHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDF47D862282C92200941AB9 /* ShoppingCartListTableViewHeader.swift */; };
  304. /* End PBXBuildFile section */
  305. /* Begin PBXContainerItemProxy section */
  306. A77F2C722231FB4A001BD3F6 /* PBXContainerItemProxy */ = {
  307. isa = PBXContainerItemProxy;
  308. containerPortal = A77F2C552231FB49001BD3F6 /* Project object */;
  309. proxyType = 1;
  310. remoteGlobalIDString = A77F2C5C2231FB49001BD3F6;
  311. remoteInfo = RainbowPlanet;
  312. };
  313. A77F2C7D2231FB4A001BD3F6 /* PBXContainerItemProxy */ = {
  314. isa = PBXContainerItemProxy;
  315. containerPortal = A77F2C552231FB49001BD3F6 /* Project object */;
  316. proxyType = 1;
  317. remoteGlobalIDString = A77F2C5C2231FB49001BD3F6;
  318. remoteInfo = RainbowPlanet;
  319. };
  320. /* End PBXContainerItemProxy section */
  321. /* Begin PBXFileReference section */
  322. 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RainbowPlanet.release.xcconfig"; path = "Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet.release.xcconfig"; sourceTree = "<group>"; };
  323. 88DF1EFD2E202DA7C627E8A7 /* Pods_RainbowPlanetUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanetUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  324. A70B2C032283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorFullLeftHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  325. A70B2C062284305400B2449F /* ProductModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductModel.swift; sourceTree = "<group>"; };
  326. A70B2C0F2286A3BC00B2449F /* ProductDetailModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductDetailModel.swift; sourceTree = "<group>"; };
  327. A70B2C1B2286B52400B2449F /* ProductDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailViewController.swift; sourceTree = "<group>"; };
  328. A70B2C1F2286B54500B2449F /* ProductDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailView.swift; sourceTree = "<group>"; };
  329. A70B2C212286BF5900B2449F /* ProductDetailTableViewHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailTableViewHeaderView.swift; sourceTree = "<group>"; };
  330. A70B2C242286C03800B2449F /* NXLPageControl.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NXLPageControl.swift; sourceTree = "<group>"; };
  331. A70B2C262286C5D600B2449F /* ProductDetailFSPagerViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailFSPagerViewCell.swift; sourceTree = "<group>"; };
  332. A70B2C282286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductInfoTableViewCell.swift; sourceTree = "<group>"; };
  333. A70B2C2C2286E29900B2449F /* Product.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Product.xcassets; sourceTree = "<group>"; };
  334. A70B2C3222880BB700B2449F /* ProductDetailProductSkuTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductSkuTableViewCell.swift; sourceTree = "<group>"; };
  335. A70B2C34228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductSkuLabelCollectionViewCell.swift; sourceTree = "<group>"; };
  336. A70B2C362288177300B2449F /* ProductDetailProductSkuIconCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailProductSkuIconCollectionViewCell.swift; sourceTree = "<group>"; };
  337. A70B2C3D228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailEvaluationTableViewCell.swift; sourceTree = "<group>"; };
  338. A70B2C3F2288312900B2449F /* ProductDetailSectionHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailSectionHeader.swift; sourceTree = "<group>"; };
  339. A70B2C4222883B4E00B2449F /* ProductDetailShopTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailShopTableViewCell.swift; sourceTree = "<group>"; };
  340. A70B2C45228840B100B2449F /* ProductDetailHotSellTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailHotSellTableViewCell.swift; sourceTree = "<group>"; };
  341. A70B2C482288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailHotSellCollectionViewCell.swift; sourceTree = "<group>"; };
  342. A70B2C4B228845E800B2449F /* ProductDetailParameterTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailParameterTableViewCell.swift; sourceTree = "<group>"; };
  343. A70B2C4D22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailDescriptionTableViewCell.swift; sourceTree = "<group>"; };
  344. A70B2C522288584500B2449F /* ShareView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareView.swift; sourceTree = "<group>"; };
  345. A70B2C5422885AF500B2449F /* ShareCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareCollectionViewCell.swift; sourceTree = "<group>"; };
  346. A70B2C5922886ADF00B2449F /* ShopViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopViewController.swift; sourceTree = "<group>"; };
  347. A70B2C5B22886B0000B2449F /* ShopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopView.swift; sourceTree = "<group>"; };
  348. A70B2C5D22886F4D00B2449F /* ShopViewTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopViewTableViewCell.swift; sourceTree = "<group>"; };
  349. A70B2C5F228870CE00B2449F /* ShopSectionHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopSectionHeaderView.swift; sourceTree = "<group>"; };
  350. A70B2C63228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopViewShopInfoTableViewCell.swift; sourceTree = "<group>"; };
  351. A70B2C6622887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductDetailEvaluationListTableViewCell.swift; sourceTree = "<group>"; };
  352. A70B2C6A2288815300B2449F /* PickHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PickHeaderView.swift; sourceTree = "<group>"; };
  353. A70B2C6C2288815E00B2449F /* PickViewOneComponentsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PickViewOneComponentsView.swift; sourceTree = "<group>"; };
  354. A70EBBBF22561179000AD74F /* Extension+UITableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UITableView.swift"; sourceTree = "<group>"; };
  355. A7190166227543DB00104A50 /* baidu_cityid_rel.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = baidu_cityid_rel.json; sourceTree = "<group>"; };
  356. A71901682275464000104A50 /* ProvinceCityAreaView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProvinceCityAreaView.swift; sourceTree = "<group>"; };
  357. A719016A22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProvinceCityAreaTableViewCell.swift; sourceTree = "<group>"; };
  358. A719016F2275EF9900104A50 /* NXLRealm.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NXLRealm.swift; sourceTree = "<group>"; };
  359. A71901742275F71F00104A50 /* BaiduToCityModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduToCityModel.swift; sourceTree = "<group>"; };
  360. A71AA50B2272126A008FF1A5 /* EditAddressFooterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditAddressFooterView.swift; sourceTree = "<group>"; };
  361. A71AA50F2272156A008FF1A5 /* ExpressAddressListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpressAddressListViewController.swift; sourceTree = "<group>"; };
  362. A71AA512227215B5008FF1A5 /* ExpressAddressListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpressAddressListView.swift; sourceTree = "<group>"; };
  363. A71AA5142272160A008FF1A5 /* ExpressAddressListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ExpressAddressListTableViewCell.swift; sourceTree = "<group>"; };
  364. A71AA518227219D7008FF1A5 /* EditExpressAddressViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditExpressAddressViewController.swift; sourceTree = "<group>"; };
  365. A71AA51B227219EF008FF1A5 /* EditExpressAddressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditExpressAddressView.swift; sourceTree = "<group>"; };
  366. A71AA51E22729F35008FF1A5 /* AuthorizationSwift.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthorizationSwift.swift; sourceTree = "<group>"; };
  367. A71AA5202272E527008FF1A5 /* Extension+UINavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UINavigationController.swift"; sourceTree = "<group>"; };
  368. A71AA52522732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceConfigApi.swift; sourceTree = "<group>"; };
  369. A71AA52722732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceConfig.swift; sourceTree = "<group>"; };
  370. A71AF0A5226EDDC8001730FE /* SearchViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchViewController.swift; sourceTree = "<group>"; };
  371. A71AF0A9226EDDF5001730FE /* SearchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchView.swift; sourceTree = "<group>"; };
  372. A71AF0AB226EDE37001730FE /* SearchNavigationbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchNavigationbarView.swift; sourceTree = "<group>"; };
  373. A71AF0AD226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  374. A71AF0AF226EF185001730FE /* SearchCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchCollectionViewCell.swift; sourceTree = "<group>"; };
  375. A71AF0B5226EF99A001730FE /* SearchResultViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultViewController.swift; sourceTree = "<group>"; };
  376. A71AF0B7226EF9EC001730FE /* SearchResultNavigationbarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultNavigationbarView.swift; sourceTree = "<group>"; };
  377. A71AF0B9226F00F8001730FE /* SearchResultView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultView.swift; sourceTree = "<group>"; };
  378. A71AF0BB226F099B001730FE /* ProductHBigTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductHBigTableViewCell.swift; sourceTree = "<group>"; };
  379. A71AF0BD226F1792001730FE /* ShoppingMallModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ShoppingMallModule.xcassets; sourceTree = "<group>"; };
  380. A71D2A5F2265673A00A55D16 /* RegisterLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterLoginView.swift; sourceTree = "<group>"; };
  381. A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceUserApi.swift; sourceTree = "<group>"; };
  382. A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceUser.swift; sourceTree = "<group>"; };
  383. A7284403224DBFBD00F82F30 /* UserModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserModel.swift; sourceTree = "<group>"; };
  384. A728443F224DFACD00F82F30 /* InfoModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InfoModel.swift; sourceTree = "<group>"; };
  385. A7284A512252EE9A000BAEC4 /* RootModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RootModel.swift; sourceTree = "<group>"; };
  386. A7284A532252FB5C000BAEC4 /* PaginationModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PaginationModel.swift; sourceTree = "<group>"; };
  387. A7284A7222546460000BAEC4 /* SwiftMoyaServicePayApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServicePayApi.swift; sourceTree = "<group>"; };
  388. A7284A74225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServicePay.swift; sourceTree = "<group>"; };
  389. A7284A7622547333000BAEC4 /* AlipayResultModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlipayResultModel.swift; sourceTree = "<group>"; };
  390. A729B5A72266F2E0004AE098 /* AlertSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlertSheetView.swift; sourceTree = "<group>"; };
  391. A729B5A92266F6FD004AE098 /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
  392. A729B5AC2266FF45004AE098 /* BindPhoneNumberView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BindPhoneNumberView.swift; sourceTree = "<group>"; };
  393. A729B5AF22671310004AE098 /* MobileLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MobileLoginView.swift; sourceTree = "<group>"; };
  394. A729B5B32267254B004AE098 /* PasswordLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PasswordLoginViewController.swift; sourceTree = "<group>"; };
  395. A729B5B62267270B004AE098 /* PasswordLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PasswordLoginView.swift; sourceTree = "<group>"; };
  396. A72A726022321D3400B21995 /* RainbowPlanet-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RainbowPlanet-Bridging-Header.h"; sourceTree = "<group>"; };
  397. A72A726322321DBD00B21995 /* LocationModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationModel.swift; sourceTree = "<group>"; };
  398. A72A726522321DBD00B21995 /* UMManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UMManager.swift; sourceTree = "<group>"; };
  399. A72A727222321DDE00B21995 /* NumberKeyboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NumberKeyboard.swift; sourceTree = "<group>"; };
  400. A72A727422321DDE00B21995 /* Log.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Log.swift; sourceTree = "<group>"; };
  401. A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftProgressHUD.swift; sourceTree = "<group>"; };
  402. A72A727822321DDF00B21995 /* Regex.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Regex.swift; sourceTree = "<group>"; };
  403. A72A727C22321DDF00B21995 /* CountdownButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CountdownButton.swift; sourceTree = "<group>"; };
  404. A72A727E22321DDF00B21995 /* AppInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppInfo.swift; sourceTree = "<group>"; };
  405. A72A728022321DDF00B21995 /* CGView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGView.swift; sourceTree = "<group>"; };
  406. A72A728C22321DE000B21995 /* Extension+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIImage.swift"; sourceTree = "<group>"; };
  407. A72A728D22321DE000B21995 /* Extension+UITextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UITextView.swift"; sourceTree = "<group>"; };
  408. A72A728E22321DE000B21995 /* Extension+NSRange.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+NSRange.swift"; sourceTree = "<group>"; };
  409. A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+NSMutableAttributedString.swift"; sourceTree = "<group>"; };
  410. A72A729022321DE000B21995 /* Extension+UserDefaults.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UserDefaults.swift"; sourceTree = "<group>"; };
  411. A72A729122321DE000B21995 /* Extension+Array.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+Array.swift"; sourceTree = "<group>"; };
  412. A72A729222321DE000B21995 /* Extension+String.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+String.swift"; sourceTree = "<group>"; };
  413. A72A729322321DE000B21995 /* Extension+UILabel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UILabel.swift"; sourceTree = "<group>"; };
  414. A72A729422321DE000B21995 /* Extension+UIAlertController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIAlertController.swift"; sourceTree = "<group>"; };
  415. A72A729722321DE000B21995 /* Extension+UIColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIColor.swift"; sourceTree = "<group>"; };
  416. A72A729822321DE000B21995 /* Extension+RxTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+RxTimer.swift"; sourceTree = "<group>"; };
  417. A72A729922321DE000B21995 /* Extension+UIButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIButton.swift"; sourceTree = "<group>"; };
  418. A72A729A22321DE000B21995 /* Extension+UIView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIView.swift"; sourceTree = "<group>"; };
  419. A72A729D22321DE000B21995 /* Extension+Date.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+Date.swift"; sourceTree = "<group>"; };
  420. A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+CAGradientLayer.swift"; sourceTree = "<group>"; };
  421. A72A72A022321DE000B21995 /* WKWebViewConfig.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WKWebViewConfig.swift; sourceTree = "<group>"; };
  422. A72A72A122321DE000B21995 /* WebView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WebView.swift; sourceTree = "<group>"; };
  423. A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenterMacro.swift; sourceTree = "<group>"; };
  424. A72A72C822321E2500B21995 /* FontMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontMacro.swift; sourceTree = "<group>"; };
  425. A72A72C922321E2600B21995 /* HTMLURLMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTMLURLMacro.swift; sourceTree = "<group>"; };
  426. A72A72CA22321E2600B21995 /* Common.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Common.swift; sourceTree = "<group>"; };
  427. A72A72CB22321E2600B21995 /* CacheMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CacheMacro.swift; sourceTree = "<group>"; };
  428. A72A72CC22321E2600B21995 /* EnumMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnumMacro.swift; sourceTree = "<group>"; };
  429. A72A72CD22321E2600B21995 /* ColorMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorMacro.swift; sourceTree = "<group>"; };
  430. A72A72CE22321E2700B21995 /* ThirdPartyMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ThirdPartyMacro.swift; sourceTree = "<group>"; };
  431. A72A72EF22321E8800B21995 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
  432. A72A72F122321E9300B21995 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  433. A72A72F322321E9A00B21995 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  434. A72A72F522321EA000B21995 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  435. A72A72F722321EB600B21995 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  436. A72A72F922321EBF00B21995 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  437. A72A72FB22321ECD00B21995 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  438. A72A72FD22321EE200B21995 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  439. A72A72FF22321EE900B21995 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  440. A72A730122321EEE00B21995 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  441. A72A730322321EFA00B21995 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  442. A72A73132232475E00B21995 /* AlipayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlipayManager.swift; sourceTree = "<group>"; };
  443. A72A73152232481600B21995 /* WeChatpayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WeChatpayManager.swift; sourceTree = "<group>"; };
  444. A72A7332223256E100B21995 /* PayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PayManager.swift; sourceTree = "<group>"; };
  445. A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+HandleOpen.swift"; sourceTree = "<group>"; };
  446. A72A73592233577000B21995 /* libc++.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.1.tbd"; path = "usr/lib/libc++.1.tbd"; sourceTree = SDKROOT; };
  447. A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkManager.swift; sourceTree = "<group>"; };
  448. A72A7384223396CB00B21995 /* ApiMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApiMacro.swift; sourceTree = "<group>"; };
  449. A72C01202275404A0065E0C3 /* ProvinceCityAreaModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProvinceCityAreaModel.swift; sourceTree = "<group>"; };
  450. A72C01212275404A0065E0C3 /* province_city_area.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = province_city_area.json; sourceTree = "<group>"; };
  451. A738D201225AD6AD00EEE860 /* Extension+UICollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UICollectionView.swift"; sourceTree = "<group>"; };
  452. A738D204225AF90D00EEE860 /* WeChatpayOrderModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WeChatpayOrderModel.swift; sourceTree = "<group>"; };
  453. A738D66E225D9BD900EEE860 /* UMLoginModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UMLoginModel.swift; sourceTree = "<group>"; };
  454. A73D7C672268A032002A4CE3 /* SwiftyStarRatingView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftyStarRatingView.swift; sourceTree = "<group>"; };
  455. A75414FB224B5F28002480B5 /* MobileLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MobileLoginViewController.swift; sourceTree = "<group>"; };
  456. A7541501224C5ECA002480B5 /* BaiduMapManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduMapManager.swift; sourceTree = "<group>"; };
  457. A754150B224CACF9002480B5 /* SwiftSign.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftSign.swift; sourceTree = "<group>"; };
  458. A757C92D22744ACE00226355 /* AddressManagerListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddressManagerListModel.swift; sourceTree = "<group>"; };
  459. A757C92F2274839900226355 /* SelfMentionAddressListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SelfMentionAddressListModel.swift; sourceTree = "<group>"; };
  460. A757C9322274882E00226355 /* UIScrollView+MJRefreshEX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefreshEX.m"; sourceTree = "<group>"; };
  461. A757C9332274882E00226355 /* UIScrollView+MJRefreshEX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefreshEX.h"; sourceTree = "<group>"; };
  462. A7636AC42268139C00374F9E /* LocationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationViewController.swift; sourceTree = "<group>"; };
  463. A7636AC722682BAF00374F9E /* LocationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationView.swift; sourceTree = "<group>"; };
  464. A76390EA2248E27A0067EEE0 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
  465. A771F07B226D4E1C007999DB /* AddressPOITableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressPOITableViewCell.swift; sourceTree = "<group>"; };
  466. A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallNavigationBarView.swift; sourceTree = "<group>"; };
  467. A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallView.swift; sourceTree = "<group>"; };
  468. A775CC0222377C6500EBDCF8 /* EmptyView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmptyView.swift; sourceTree = "<group>"; };
  469. A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; };
  470. A7778C9022438F5C00C7C47A /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AlipaySDK.framework; sourceTree = "<group>"; };
  471. A7778C9222438F5D00C7C47A /* WXApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApi.h; sourceTree = "<group>"; };
  472. A7778C9322438F5D00C7C47A /* WXApiObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApiObject.h; sourceTree = "<group>"; };
  473. A7778C9422438F5D00C7C47A /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
  474. A7778C9522438F5D00C7C47A /* WechatAuthSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WechatAuthSDK.h; sourceTree = "<group>"; };
  475. A7778C9622438F5D00C7C47A /* libWeChatSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libWeChatSDK.a; sourceTree = "<group>"; };
  476. A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQKeyboardManagerSwiftManager.swift; sourceTree = "<group>"; };
  477. A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+Gifu.GIFImageView.swift"; sourceTree = "<group>"; };
  478. A7778CAA2244B12500C7C47A /* CountDownManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CountDownManager.swift; sourceTree = "<group>"; };
  479. A7778CB12244D73400C7C47A /* RegisterLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisterLoginViewController.swift; sourceTree = "<group>"; };
  480. A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BindPhoneNumberViewController.swift; sourceTree = "<group>"; };
  481. A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UIViewController.swift"; sourceTree = "<group>"; };
  482. A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaViewController.swift; sourceTree = "<group>"; };
  483. A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaTableViewCell.swift; sourceTree = "<group>"; };
  484. A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaListMdoel.swift; sourceTree = "<group>"; };
  485. A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaSectionHeaderView.swift; sourceTree = "<group>"; };
  486. A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RainbowPlanet.app; sourceTree = BUILT_PRODUCTS_DIR; };
  487. A77F2C602231FB49001BD3F6 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  488. A77F2C672231FB4A001BD3F6 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  489. A77F2C6C2231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  490. A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RainbowPlanetTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  491. A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RainbowPlanetTests.swift; sourceTree = "<group>"; };
  492. A77F2C772231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  493. A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RainbowPlanetUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  494. A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RainbowPlanetUITests.swift; sourceTree = "<group>"; };
  495. A77F2C822231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  496. A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseNavigationViewController.swift; sourceTree = "<group>"; };
  497. A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  498. A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseViewController.swift; sourceTree = "<group>"; };
  499. A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseWebViewController.swift; sourceTree = "<group>"; };
  500. A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingMallViewController.swift; sourceTree = "<group>"; };
  501. A77F2CAD2232010F001BD3F6 /* MineViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MineViewController.swift; sourceTree = "<group>"; };
  502. A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingCartViewController.swift; sourceTree = "<group>"; };
  503. A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Window.swift"; sourceTree = "<group>"; };
  504. A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WRNavigationBar.swift; sourceTree = "<group>"; };
  505. A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WRCustomNavigationBar.swift; sourceTree = "<group>"; };
  506. A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseTabbarViewController.swift; sourceTree = "<group>"; };
  507. A7824AFA2271EA2600ABA381 /* SelfMentionContactsListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsListView.swift; sourceTree = "<group>"; };
  508. A7824AFC2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsListTableViewCell.swift; sourceTree = "<group>"; };
  509. A7824AFF2271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditSelfMentionContactsViewController.swift; sourceTree = "<group>"; };
  510. A7824B032271F10300ABA381 /* EditSelfMentionContactsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditSelfMentionContactsView.swift; sourceTree = "<group>"; };
  511. A7824B052271F25400ABA381 /* EditAddressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditAddressTableViewCell.swift; sourceTree = "<group>"; };
  512. A7824B072271F53A00ABA381 /* EditSetDefaultTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditSetDefaultTableViewCell.swift; sourceTree = "<group>"; };
  513. A79057012276C9770037F823 /* SetPasswordModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetPasswordModel.swift; sourceTree = "<group>"; };
  514. A79057052276EA3D0037F823 /* OpenCityListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OpenCityListModel.swift; sourceTree = "<group>"; };
  515. A79057072276FEB00037F823 /* SelfMentionContactsModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsModel.swift; sourceTree = "<group>"; };
  516. A7A59A7722363CCB00417FA4 /* RainbowPlanet.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RainbowPlanet.entitlements; sourceTree = "<group>"; };
  517. A7A98DFC227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceProductApi.swift; sourceTree = "<group>"; };
  518. A7A98DFE227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceProduct.swift; sourceTree = "<group>"; };
  519. A7A98E01227E8900005306E9 /* ProductSearchListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProductSearchListModel.swift; sourceTree = "<group>"; };
  520. A7A98E04227EB891005306E9 /* CategoryViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryViewController.swift; sourceTree = "<group>"; };
  521. A7A98E08227EB8DD005306E9 /* CategoryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryView.swift; sourceTree = "<group>"; };
  522. A7A98E0A227EBD04005306E9 /* CategorySearchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategorySearchView.swift; sourceTree = "<group>"; };
  523. A7A98E0D227EC0C6005306E9 /* CategoryTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CategoryTableViewCell.swift; sourceTree = "<group>"; };
  524. A7A98E0F227EC531005306E9 /* ProductHSmallTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductHSmallTableViewCell.swift; sourceTree = "<group>"; };
  525. A7A98E11227ECA11005306E9 /* ProductSearchModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductSearchModel.swift; sourceTree = "<group>"; };
  526. A7A98E13227ED0E2005306E9 /* CategoryListModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CategoryListModel.swift; sourceTree = "<group>"; };
  527. A7A98E16227EED76005306E9 /* SpecialViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialViewController.swift; sourceTree = "<group>"; };
  528. A7A98E1A227EEE49005306E9 /* SpecialView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialView.swift; sourceTree = "<group>"; };
  529. A7A98E1C227EF1CB005306E9 /* SpecialBannerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpecialBannerView.swift; sourceTree = "<group>"; };
  530. A7A98E27227FD6C6005306E9 /* ShoppingMallListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallListViewController.swift; sourceTree = "<group>"; };
  531. A7A98E2C22801642005306E9 /* SwiftMoyaServiceCMSApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceCMSApi.swift; sourceTree = "<group>"; };
  532. A7A98E2E228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceCMS.swift; sourceTree = "<group>"; };
  533. A7A98E3022801B10005306E9 /* ShoppingMallListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallListView.swift; sourceTree = "<group>"; };
  534. A7A98E322280272A005306E9 /* ShoppingMallBannerTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallBannerTableViewCell.swift; sourceTree = "<group>"; };
  535. A7A98E3522802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallBannerFSPagerViewCell.swift; sourceTree = "<group>"; };
  536. A7A98E392280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallCategoryTableViewCell.swift; sourceTree = "<group>"; };
  537. A7A98E3B228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallCategoryCollectionViewCell.swift; sourceTree = "<group>"; };
  538. A7A98E40228046C4005306E9 /* ShoppingMallSepcialTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSepcialTableViewCell.swift; sourceTree = "<group>"; };
  539. A7A98E4222804851005306E9 /* ShoppingMallSepcialFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSepcialFlowLayout.swift; sourceTree = "<group>"; };
  540. A7A98E4422804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSepcialCollectionViewCell.swift; sourceTree = "<group>"; };
  541. A7B4E71E228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductSlidingLeftRightCollectionViewCell.swift; sourceTree = "<group>"; };
  542. A7B4E720228151F40012914A /* ProductFloorTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorTitleView.swift; sourceTree = "<group>"; };
  543. A7B4E722228154750012914A /* ProductFloorBannerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorBannerView.swift; sourceTree = "<group>"; };
  544. A7B4E727228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductRightSideleftPictureCollectionViewCell.swift; sourceTree = "<group>"; };
  545. A7B4E72C228176060012914A /* ProductMallBarChartCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductMallBarChartCollectionViewCell.swift; sourceTree = "<group>"; };
  546. A7B4E72E2281773F0012914A /* ProductFloorCenterTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorCenterTitleView.swift; sourceTree = "<group>"; };
  547. A7B4E7342281907A0012914A /* CMSModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CMSModel.swift; sourceTree = "<group>"; };
  548. A7B4E737228191CC0012914A /* CommondModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommondModel.swift; sourceTree = "<group>"; };
  549. A7B4E739228192D10012914A /* CMSTemplateModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CMSTemplateModel.swift; sourceTree = "<group>"; };
  550. A7B4E753228278320012914A /* ShoppingMallFloorTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallFloorTableViewCell.swift; sourceTree = "<group>"; };
  551. A7B4E755228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallSlidingLeftRightBgCollectionViewCell.swift; sourceTree = "<group>"; };
  552. A7B4E7572282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorLeftHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  553. A7B4E759228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductFloorCenterHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  554. A7BB684D2268DCEC00AB07A2 /* SelfRecommendationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationViewController.swift; sourceTree = "<group>"; };
  555. A7BB68542268DE8600AB07A2 /* SelfRecommendationView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationView.swift; sourceTree = "<group>"; };
  556. A7BB6856226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  557. A7BB685822696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfRecommendationCollectionViewCell.swift; sourceTree = "<group>"; };
  558. A7BB68632269B1DD00AB07A2 /* AddressPOIView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddressPOIView.swift; sourceTree = "<group>"; };
  559. A7BB68652269B1DD00AB07A2 /* AddressPOIViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddressPOIViewController.swift; sourceTree = "<group>"; };
  560. A7C3DD19226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceSMSApi.swift; sourceTree = "<group>"; };
  561. A7C3DD1B226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceSMS.swift; sourceTree = "<group>"; };
  562. A7CC74D3226FF1AA003C4F38 /* MineView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineView.swift; sourceTree = "<group>"; };
  563. A7CC74D5226FF421003C4F38 /* MineNavigationBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineNavigationBarView.swift; sourceTree = "<group>"; };
  564. A7CC74D722700359003C4F38 /* MineTableViewHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineTableViewHeaderView.swift; sourceTree = "<group>"; };
  565. A7CC74D922702E41003C4F38 /* MineOrderTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineOrderTableViewCell.swift; sourceTree = "<group>"; };
  566. A7CC74DB2270352F003C4F38 /* MineOrderCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineOrderCollectionViewCell.swift; sourceTree = "<group>"; };
  567. A7CC74DD22703B4A003C4F38 /* MineModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = MineModule.xcassets; sourceTree = "<group>"; };
  568. A7CC74DF227042A4003C4F38 /* MineServiceTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineServiceTableViewCell.swift; sourceTree = "<group>"; };
  569. A7CC74E122704429003C4F38 /* MineServiceCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MineServiceCollectionViewCell.swift; sourceTree = "<group>"; };
  570. A7CC74E52270628B003C4F38 /* DeliveryMethodTypeModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeliveryMethodTypeModel.swift; sourceTree = "<group>"; };
  571. A7CC74E922706ACD003C4F38 /* MessageViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageViewController.swift; sourceTree = "<group>"; };
  572. A7CC74EE22706CCA003C4F38 /* MessageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageView.swift; sourceTree = "<group>"; };
  573. A7CC74F022706FE3003C4F38 /* MessageOneCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageOneCollectionViewCell.swift; sourceTree = "<group>"; };
  574. A7CC74F2227070D2003C4F38 /* MessageTwoCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageTwoCollectionViewCell.swift; sourceTree = "<group>"; };
  575. A7CC750522714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageNoticeHeaderCollectionReusableView.swift; sourceTree = "<group>"; };
  576. A7CC750922715755003C4F38 /* MessageDetailesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesViewController.swift; sourceTree = "<group>"; };
  577. A7CC750C227157DA003C4F38 /* MessageDetailesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesView.swift; sourceTree = "<group>"; };
  578. A7CC750E22715AAC003C4F38 /* MessageDetailesTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesTableViewCell.swift; sourceTree = "<group>"; };
  579. A7CC751022715AE3003C4F38 /* MessageDetailesTimeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDetailesTimeView.swift; sourceTree = "<group>"; };
  580. A7CC7515227161D5003C4F38 /* SetViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetViewController.swift; sourceTree = "<group>"; };
  581. A7CC751722716202003C4F38 /* SetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetView.swift; sourceTree = "<group>"; };
  582. A7CC751922716254003C4F38 /* SetTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetTableViewCell.swift; sourceTree = "<group>"; };
  583. A7CC751B22716426003C4F38 /* SetLogoutTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetLogoutTableViewCell.swift; sourceTree = "<group>"; };
  584. A7CC751E227190C5003C4F38 /* AccountSecurityViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecurityViewController.swift; sourceTree = "<group>"; };
  585. A7CC7523227190FB003C4F38 /* AccountSecurityView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecurityView.swift; sourceTree = "<group>"; };
  586. A7CC7525227196A8003C4F38 /* AccountSecurityTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecurityTableViewCell.swift; sourceTree = "<group>"; };
  587. A7CC7527227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountSecuritySetTableViewCell.swift; sourceTree = "<group>"; };
  588. A7CC752B2271A1AE003C4F38 /* SetPasswordViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetPasswordViewController.swift; sourceTree = "<group>"; };
  589. A7CC752E2271A1F2003C4F38 /* SetPasswordView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetPasswordView.swift; sourceTree = "<group>"; };
  590. A7CC75322271ABB0003C4F38 /* AddressManagerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerViewController.swift; sourceTree = "<group>"; };
  591. A7CC75352271AC14003C4F38 /* AddressManagerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerView.swift; sourceTree = "<group>"; };
  592. A7CC75372271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerSelfMentionExpressHeaderView.swift; sourceTree = "<group>"; };
  593. A7CC75392271B98B003C4F38 /* AddressManagerAddTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerAddTableViewCell.swift; sourceTree = "<group>"; };
  594. A7CC753B2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerSelfMentionTableViewCell.swift; sourceTree = "<group>"; };
  595. A7CC753D2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerExpressTableViewCell.swift; sourceTree = "<group>"; };
  596. A7CC75422271E038003C4F38 /* SelfMentionContactsListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SelfMentionContactsListViewController.swift; sourceTree = "<group>"; };
  597. A7D4608D227616F800A5A54E /* SQLiteManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SQLiteManager.swift; sourceTree = "<group>"; };
  598. A7D4608F227617D200A5A54E /* SQLModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SQLModel.swift; sourceTree = "<group>"; };
  599. A7D46091227619CC00A5A54E /* BaiduToCityFactory.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduToCityFactory.swift; sourceTree = "<group>"; };
  600. A7D460932276854500A5A54E /* BaiduToCity2Model.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduToCity2Model.swift; sourceTree = "<group>"; };
  601. A7DC467E22783A47001F3EFC /* EditExpressAddressTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditExpressAddressTableViewCell.swift; sourceTree = "<group>"; };
  602. A7E03A30F40582782EC5DA89 /* Pods_RainbowPlanetTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanetTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  603. BD15CCD022895E1800EDCE93 /* ProductCartHotSaleCollectionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCartHotSaleCollectionCell.swift; sourceTree = "<group>"; };
  604. BD20F1CA2283C12000677D8E /* ShoppingCartListNoneItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartListNoneItemCell.swift; sourceTree = "<group>"; };
  605. BD20F1CC2283C51300677D8E /* ShoppingCartFinishPayController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartFinishPayController.swift; sourceTree = "<group>"; };
  606. BD20F1CE2283CE2300677D8E /* ShoppingCartFinishPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartFinishPayView.swift; sourceTree = "<group>"; };
  607. BD20F1D22283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPaySuccessCell.swift; sourceTree = "<group>"; };
  608. BD20F1D42283D15500677D8E /* ShoppingCartPayFailureCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayFailureCell.swift; sourceTree = "<group>"; };
  609. BD20F1D72283D2AA00677D8E /* ShoppingCartModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ShoppingCartModule.xcassets; sourceTree = "<group>"; };
  610. BD3474F422857B85000908C5 /* CommonPayHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonPayHeader.swift; sourceTree = "<group>"; };
  611. BD7AB83522841A8B0030646A /* ShoppingCartPayOrderItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderItemCell.swift; sourceTree = "<group>"; };
  612. BD7AB837228420310030646A /* ShoppingCartPayOrderHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderHeader.swift; sourceTree = "<group>"; };
  613. BD7AB8392284288D0030646A /* ShoppingCartPayOrderFooter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderFooter.swift; sourceTree = "<group>"; };
  614. BD7AB83C228438020030646A /* OrderPayExpressInfoShowCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPayExpressInfoShowCell.swift; sourceTree = "<group>"; };
  615. BD7AB83E228438290030646A /* OrderPayExpressAddInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPayExpressAddInfoCell.swift; sourceTree = "<group>"; };
  616. BD7AB840228438C80030646A /* OrderPaySelfPickAddressCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPaySelfPickAddressCell.swift; sourceTree = "<group>"; };
  617. BD7AB8422284390B0030646A /* OrderPaySelfPickInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPaySelfPickInfoCell.swift; sourceTree = "<group>"; };
  618. BD7AB8442284398A0030646A /* OrderPaySelfPickAddInfoCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPaySelfPickAddInfoCell.swift; sourceTree = "<group>"; };
  619. BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RainbowPlanet.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet.debug.xcconfig"; sourceTree = "<group>"; };
  620. BDD4FB1122840597006FE833 /* ShoppingCartPayOrderController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartPayOrderController.swift; sourceTree = "<group>"; };
  621. BDD4FB1322840954006FE833 /* ShoppingCartOrderPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartOrderPayView.swift; sourceTree = "<group>"; };
  622. BDD4FB1622840DD3006FE833 /* OrderPayAcountView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderPayAcountView.swift; sourceTree = "<group>"; };
  623. BDE3045C22851E4F001D050F /* ProductCartListModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCartListModel.swift; sourceTree = "<group>"; };
  624. BDE3045E228554CA001D050F /* ProductCartAmountModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductCartAmountModel.swift; sourceTree = "<group>"; };
  625. BDEF7790228571DC00ED0AC0 /* CommonPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonPayView.swift; sourceTree = "<group>"; };
  626. BDEF7792228575A800ED0AC0 /* CommonPayCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonPayCell.swift; sourceTree = "<group>"; };
  627. BDF47D79228271F600941AB9 /* ShoppingCartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartView.swift; sourceTree = "<group>"; };
  628. BDF47D7D22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProductSlidingTopBottomCollectionViewCell.swift; sourceTree = "<group>"; };
  629. BDF47D7F228288F900941AB9 /* ShoppingCartAccountView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartAccountView.swift; sourceTree = "<group>"; };
  630. BDF47D812282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartHotSaleTableViewCell.swift; sourceTree = "<group>"; };
  631. BDF47D842282C59F00941AB9 /* ShoppingCartListTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartListTableViewCell.swift; sourceTree = "<group>"; };
  632. BDF47D862282C92200941AB9 /* ShoppingCartListTableViewHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCartListTableViewHeader.swift; sourceTree = "<group>"; };
  633. D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanet.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  634. /* End PBXFileReference section */
  635. /* Begin PBXFrameworksBuildPhase section */
  636. A77F2C5A2231FB49001BD3F6 /* Frameworks */ = {
  637. isa = PBXFrameworksBuildPhase;
  638. buildActionMask = 2147483647;
  639. files = (
  640. A76390EB2248E27A0067EEE0 /* UserNotifications.framework in Frameworks */,
  641. A7778C9A22438F5D00C7C47A /* libWeChatSDK.a in Frameworks */,
  642. A72A730422321EFA00B21995 /* libc++.tbd in Frameworks */,
  643. A72A730222321EEE00B21995 /* libz.tbd in Frameworks */,
  644. A72A730022321EE900B21995 /* SystemConfiguration.framework in Frameworks */,
  645. A72A72FE22321EE200B21995 /* QuartzCore.framework in Frameworks */,
  646. A72A72FC22321ECE00B21995 /* CoreTelephony.framework in Frameworks */,
  647. A72A72FA22321EBF00B21995 /* CoreText.framework in Frameworks */,
  648. A72A72F822321EB600B21995 /* CoreGraphics.framework in Frameworks */,
  649. A72A72F622321EA000B21995 /* UIKit.framework in Frameworks */,
  650. A72A72F422321E9A00B21995 /* Foundation.framework in Frameworks */,
  651. A72A72F222321E9300B21995 /* CFNetwork.framework in Frameworks */,
  652. A7778C9822438F5D00C7C47A /* AlipaySDK.framework in Frameworks */,
  653. A72A72F022321E8800B21995 /* CoreMotion.framework in Frameworks */,
  654. 0A110C4CD931995B8E8BF7C5 /* Pods_RainbowPlanet.framework in Frameworks */,
  655. );
  656. runOnlyForDeploymentPostprocessing = 0;
  657. };
  658. A77F2C6E2231FB4A001BD3F6 /* Frameworks */ = {
  659. isa = PBXFrameworksBuildPhase;
  660. buildActionMask = 2147483647;
  661. files = (
  662. );
  663. runOnlyForDeploymentPostprocessing = 0;
  664. };
  665. A77F2C792231FB4A001BD3F6 /* Frameworks */ = {
  666. isa = PBXFrameworksBuildPhase;
  667. buildActionMask = 2147483647;
  668. files = (
  669. );
  670. runOnlyForDeploymentPostprocessing = 0;
  671. };
  672. /* End PBXFrameworksBuildPhase section */
  673. /* Begin PBXGroup section */
  674. 618631008656829220117ED1 /* Pods */ = {
  675. isa = PBXGroup;
  676. children = (
  677. BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */,
  678. 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */,
  679. );
  680. name = Pods;
  681. sourceTree = "<group>";
  682. };
  683. A70B2C0522841F1B00B2449F /* FloorCell */ = {
  684. isa = PBXGroup;
  685. children = (
  686. A7B4E71B22812D390012914A /* ShoppingMallSlidingLeftRight */,
  687. );
  688. path = FloorCell;
  689. sourceTree = "<group>";
  690. };
  691. A70B2C112286B10000B2449F /* ProductDetail */ = {
  692. isa = PBXGroup;
  693. children = (
  694. A70B2C192286B4ED00B2449F /* View */,
  695. A70B2C1A2286B4F900B2449F /* ViewController */,
  696. );
  697. path = ProductDetail;
  698. sourceTree = "<group>";
  699. };
  700. A70B2C122286B14C00B2449F /* ProductView */ = {
  701. isa = PBXGroup;
  702. children = (
  703. A7B4E732228177BC0012914A /* ProductCollectionReusableView */,
  704. A70B2C182286B48600B2449F /* TableViewCell */,
  705. A70B2C132286B1C500B2449F /* CollectionViewCell */,
  706. );
  707. path = ProductView;
  708. sourceTree = "<group>";
  709. };
  710. A70B2C132286B1C500B2449F /* CollectionViewCell */ = {
  711. isa = PBXGroup;
  712. children = (
  713. BD15CCCF22895DBD00EDCE93 /* ProductCartHotSaleCollectionCell */,
  714. A70B2C472288413E00B2449F /* ProductDetailHotSell */,
  715. A70B2C172286B47B00B2449F /* ProductSlidingTopBottom */,
  716. A70B2C162286B44600B2449F /* ProductMallBarChart */,
  717. A70B2C152286B44600B2449F /* ProductMallRightSideleftPicture */,
  718. A70B2C142286B41000B2449F /* ProductMallSlidingLeftRight */,
  719. );
  720. path = CollectionViewCell;
  721. sourceTree = "<group>";
  722. };
  723. A70B2C142286B41000B2449F /* ProductMallSlidingLeftRight */ = {
  724. isa = PBXGroup;
  725. children = (
  726. A7B4E71E228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift */,
  727. );
  728. path = ProductMallSlidingLeftRight;
  729. sourceTree = "<group>";
  730. };
  731. A70B2C152286B44600B2449F /* ProductMallRightSideleftPicture */ = {
  732. isa = PBXGroup;
  733. children = (
  734. A7B4E727228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift */,
  735. );
  736. path = ProductMallRightSideleftPicture;
  737. sourceTree = "<group>";
  738. };
  739. A70B2C162286B44600B2449F /* ProductMallBarChart */ = {
  740. isa = PBXGroup;
  741. children = (
  742. A7B4E72C228176060012914A /* ProductMallBarChartCollectionViewCell.swift */,
  743. );
  744. path = ProductMallBarChart;
  745. sourceTree = "<group>";
  746. };
  747. A70B2C172286B47B00B2449F /* ProductSlidingTopBottom */ = {
  748. isa = PBXGroup;
  749. children = (
  750. BDF47D7D22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift */,
  751. );
  752. path = ProductSlidingTopBottom;
  753. sourceTree = "<group>";
  754. };
  755. A70B2C182286B48600B2449F /* TableViewCell */ = {
  756. isa = PBXGroup;
  757. children = (
  758. A71AF0BB226F099B001730FE /* ProductHBigTableViewCell.swift */,
  759. A7A98E0F227EC531005306E9 /* ProductHSmallTableViewCell.swift */,
  760. );
  761. path = TableViewCell;
  762. sourceTree = "<group>";
  763. };
  764. A70B2C192286B4ED00B2449F /* View */ = {
  765. isa = PBXGroup;
  766. children = (
  767. A70B2C3B228819E900B2449F /* ProductDetailHeader */,
  768. A70B2C39228819CA00B2449F /* Cell */,
  769. A70B2C1F2286B54500B2449F /* ProductDetailView.swift */,
  770. );
  771. path = View;
  772. sourceTree = "<group>";
  773. };
  774. A70B2C1A2286B4F900B2449F /* ViewController */ = {
  775. isa = PBXGroup;
  776. children = (
  777. A70B2C1B2286B52400B2449F /* ProductDetailViewController.swift */,
  778. );
  779. path = ViewController;
  780. sourceTree = "<group>";
  781. };
  782. A70B2C232286C03800B2449F /* NXLPageControl */ = {
  783. isa = PBXGroup;
  784. children = (
  785. A70B2C242286C03800B2449F /* NXLPageControl.swift */,
  786. );
  787. path = NXLPageControl;
  788. sourceTree = "<group>";
  789. };
  790. A70B2C38228819B500B2449F /* ProductDetailProductSku */ = {
  791. isa = PBXGroup;
  792. children = (
  793. A70B2C3222880BB700B2449F /* ProductDetailProductSkuTableViewCell.swift */,
  794. A70B2C34228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift */,
  795. A70B2C362288177300B2449F /* ProductDetailProductSkuIconCollectionViewCell.swift */,
  796. );
  797. path = ProductDetailProductSku;
  798. sourceTree = "<group>";
  799. };
  800. A70B2C39228819CA00B2449F /* Cell */ = {
  801. isa = PBXGroup;
  802. children = (
  803. A70B2C6522887B1600B2449F /* ProductDetailEvaluationList */,
  804. A70B2C4F22884EF100B2449F /* ProductDetailDescription */,
  805. A70B2C4A228845B200B2449F /* ProductDetailParameter */,
  806. A70B2C442288408E00B2449F /* ProductDetailHotSell */,
  807. A70B2C4122883B2F00B2449F /* ProductDetailShop */,
  808. A70B2C3C2288259200B2449F /* ProductDetailEvaluation */,
  809. A70B2C3A228819DC00B2449F /* ProductDetailProductInfo */,
  810. A70B2C38228819B500B2449F /* ProductDetailProductSku */,
  811. );
  812. path = Cell;
  813. sourceTree = "<group>";
  814. };
  815. A70B2C3A228819DC00B2449F /* ProductDetailProductInfo */ = {
  816. isa = PBXGroup;
  817. children = (
  818. A70B2C282286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift */,
  819. );
  820. path = ProductDetailProductInfo;
  821. sourceTree = "<group>";
  822. };
  823. A70B2C3B228819E900B2449F /* ProductDetailHeader */ = {
  824. isa = PBXGroup;
  825. children = (
  826. A70B2C212286BF5900B2449F /* ProductDetailTableViewHeaderView.swift */,
  827. A70B2C262286C5D600B2449F /* ProductDetailFSPagerViewCell.swift */,
  828. A70B2C3F2288312900B2449F /* ProductDetailSectionHeader.swift */,
  829. );
  830. path = ProductDetailHeader;
  831. sourceTree = "<group>";
  832. };
  833. A70B2C3C2288259200B2449F /* ProductDetailEvaluation */ = {
  834. isa = PBXGroup;
  835. children = (
  836. A70B2C3D228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift */,
  837. );
  838. path = ProductDetailEvaluation;
  839. sourceTree = "<group>";
  840. };
  841. A70B2C4122883B2F00B2449F /* ProductDetailShop */ = {
  842. isa = PBXGroup;
  843. children = (
  844. A70B2C4222883B4E00B2449F /* ProductDetailShopTableViewCell.swift */,
  845. );
  846. path = ProductDetailShop;
  847. sourceTree = "<group>";
  848. };
  849. A70B2C442288408E00B2449F /* ProductDetailHotSell */ = {
  850. isa = PBXGroup;
  851. children = (
  852. A70B2C45228840B100B2449F /* ProductDetailHotSellTableViewCell.swift */,
  853. );
  854. path = ProductDetailHotSell;
  855. sourceTree = "<group>";
  856. };
  857. A70B2C472288413E00B2449F /* ProductDetailHotSell */ = {
  858. isa = PBXGroup;
  859. children = (
  860. A70B2C482288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift */,
  861. );
  862. path = ProductDetailHotSell;
  863. sourceTree = "<group>";
  864. };
  865. A70B2C4A228845B200B2449F /* ProductDetailParameter */ = {
  866. isa = PBXGroup;
  867. children = (
  868. A70B2C4B228845E800B2449F /* ProductDetailParameterTableViewCell.swift */,
  869. );
  870. path = ProductDetailParameter;
  871. sourceTree = "<group>";
  872. };
  873. A70B2C4F22884EF100B2449F /* ProductDetailDescription */ = {
  874. isa = PBXGroup;
  875. children = (
  876. A70B2C4D22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift */,
  877. );
  878. path = ProductDetailDescription;
  879. sourceTree = "<group>";
  880. };
  881. A70B2C502288581600B2449F /* ShareModule */ = {
  882. isa = PBXGroup;
  883. children = (
  884. A70B2C512288582800B2449F /* View */,
  885. );
  886. path = ShareModule;
  887. sourceTree = "<group>";
  888. };
  889. A70B2C512288582800B2449F /* View */ = {
  890. isa = PBXGroup;
  891. children = (
  892. A70B2C522288584500B2449F /* ShareView.swift */,
  893. A70B2C5422885AF500B2449F /* ShareCollectionViewCell.swift */,
  894. );
  895. path = View;
  896. sourceTree = "<group>";
  897. };
  898. A70B2C5622886AAA00B2449F /* Shop */ = {
  899. isa = PBXGroup;
  900. children = (
  901. A70B2C5822886ACC00B2449F /* ViewController */,
  902. A70B2C5722886AC700B2449F /* View */,
  903. );
  904. path = Shop;
  905. sourceTree = "<group>";
  906. };
  907. A70B2C5722886AC700B2449F /* View */ = {
  908. isa = PBXGroup;
  909. children = (
  910. A70B2C5B22886B0000B2449F /* ShopView.swift */,
  911. A70B2C5D22886F4D00B2449F /* ShopViewTableViewCell.swift */,
  912. A70B2C63228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift */,
  913. A70B2C5F228870CE00B2449F /* ShopSectionHeaderView.swift */,
  914. );
  915. path = View;
  916. sourceTree = "<group>";
  917. };
  918. A70B2C5822886ACC00B2449F /* ViewController */ = {
  919. isa = PBXGroup;
  920. children = (
  921. A70B2C5922886ADF00B2449F /* ShopViewController.swift */,
  922. );
  923. path = ViewController;
  924. sourceTree = "<group>";
  925. };
  926. A70B2C6522887B1600B2449F /* ProductDetailEvaluationList */ = {
  927. isa = PBXGroup;
  928. children = (
  929. A70B2C6622887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift */,
  930. );
  931. path = ProductDetailEvaluationList;
  932. sourceTree = "<group>";
  933. };
  934. A70B2C692288810700B2449F /* PickView */ = {
  935. isa = PBXGroup;
  936. children = (
  937. A70B2C6A2288815300B2449F /* PickHeaderView.swift */,
  938. A70B2C6C2288815E00B2449F /* PickViewOneComponentsView.swift */,
  939. );
  940. path = PickView;
  941. sourceTree = "<group>";
  942. };
  943. A71901622275411C00104A50 /* ProvinceCityArea */ = {
  944. isa = PBXGroup;
  945. children = (
  946. A71901652275417400104A50 /* Model */,
  947. A71901632275413100104A50 /* View */,
  948. );
  949. path = ProvinceCityArea;
  950. sourceTree = "<group>";
  951. };
  952. A71901632275413100104A50 /* View */ = {
  953. isa = PBXGroup;
  954. children = (
  955. A71901682275464000104A50 /* ProvinceCityAreaView.swift */,
  956. A719016A22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift */,
  957. );
  958. path = View;
  959. sourceTree = "<group>";
  960. };
  961. A71901652275417400104A50 /* Model */ = {
  962. isa = PBXGroup;
  963. children = (
  964. A72C01202275404A0065E0C3 /* ProvinceCityAreaModel.swift */,
  965. );
  966. path = Model;
  967. sourceTree = "<group>";
  968. };
  969. A719016E2275EF7A00104A50 /* NXLRealm */ = {
  970. isa = PBXGroup;
  971. children = (
  972. A719016F2275EF9900104A50 /* NXLRealm.swift */,
  973. );
  974. path = NXLRealm;
  975. sourceTree = "<group>";
  976. };
  977. A71901712275F56C00104A50 /* BaiduToCityFactory */ = {
  978. isa = PBXGroup;
  979. children = (
  980. A7D460932276854500A5A54E /* BaiduToCity2Model.swift */,
  981. A7D46091227619CC00A5A54E /* BaiduToCityFactory.swift */,
  982. A71901742275F71F00104A50 /* BaiduToCityModel.swift */,
  983. );
  984. path = BaiduToCityFactory;
  985. sourceTree = "<group>";
  986. };
  987. A71AA50D22721537008FF1A5 /* ExpressAddressList */ = {
  988. isa = PBXGroup;
  989. children = (
  990. A71AA511227215A9008FF1A5 /* View */,
  991. A71AA50E22721559008FF1A5 /* ViewController */,
  992. );
  993. path = ExpressAddressList;
  994. sourceTree = "<group>";
  995. };
  996. A71AA50E22721559008FF1A5 /* ViewController */ = {
  997. isa = PBXGroup;
  998. children = (
  999. A71AA50F2272156A008FF1A5 /* ExpressAddressListViewController.swift */,
  1000. );
  1001. path = ViewController;
  1002. sourceTree = "<group>";
  1003. };
  1004. A71AA511227215A9008FF1A5 /* View */ = {
  1005. isa = PBXGroup;
  1006. children = (
  1007. A71AA512227215B5008FF1A5 /* ExpressAddressListView.swift */,
  1008. A71AA5142272160A008FF1A5 /* ExpressAddressListTableViewCell.swift */,
  1009. );
  1010. path = View;
  1011. sourceTree = "<group>";
  1012. };
  1013. A71AA51622721980008FF1A5 /* EditExpressAddress */ = {
  1014. isa = PBXGroup;
  1015. children = (
  1016. A71AA51A227219DA008FF1A5 /* View */,
  1017. A71AA517227219B7008FF1A5 /* ViewController */,
  1018. );
  1019. path = EditExpressAddress;
  1020. sourceTree = "<group>";
  1021. };
  1022. A71AA517227219B7008FF1A5 /* ViewController */ = {
  1023. isa = PBXGroup;
  1024. children = (
  1025. A71AA518227219D7008FF1A5 /* EditExpressAddressViewController.swift */,
  1026. );
  1027. path = ViewController;
  1028. sourceTree = "<group>";
  1029. };
  1030. A71AA51A227219DA008FF1A5 /* View */ = {
  1031. isa = PBXGroup;
  1032. children = (
  1033. A71AA51B227219EF008FF1A5 /* EditExpressAddressView.swift */,
  1034. A7DC467E22783A47001F3EFC /* EditExpressAddressTableViewCell.swift */,
  1035. );
  1036. path = View;
  1037. sourceTree = "<group>";
  1038. };
  1039. A71AA51D22729F0B008FF1A5 /* AuthorizationSwift */ = {
  1040. isa = PBXGroup;
  1041. children = (
  1042. A71AA51E22729F35008FF1A5 /* AuthorizationSwift.swift */,
  1043. );
  1044. path = AuthorizationSwift;
  1045. sourceTree = "<group>";
  1046. };
  1047. A71AA5242273202E008FF1A5 /* SwiftMoyaServiceConfig */ = {
  1048. isa = PBXGroup;
  1049. children = (
  1050. A71AA52522732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift */,
  1051. A71AA52722732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift */,
  1052. );
  1053. path = SwiftMoyaServiceConfig;
  1054. sourceTree = "<group>";
  1055. };
  1056. A71AF0A3226E9D8A001730FE /* SearchModule */ = {
  1057. isa = PBXGroup;
  1058. children = (
  1059. A71AF0B2226EF953001730FE /* SearchResult */,
  1060. A71AF0B1226EF947001730FE /* Search */,
  1061. );
  1062. path = SearchModule;
  1063. sourceTree = "<group>";
  1064. };
  1065. A71AF0A7226EDDCC001730FE /* ViewController */ = {
  1066. isa = PBXGroup;
  1067. children = (
  1068. A71AF0A5226EDDC8001730FE /* SearchViewController.swift */,
  1069. );
  1070. path = ViewController;
  1071. sourceTree = "<group>";
  1072. };
  1073. A71AF0A8226EDDE0001730FE /* View */ = {
  1074. isa = PBXGroup;
  1075. children = (
  1076. A71AF0AB226EDE37001730FE /* SearchNavigationbarView.swift */,
  1077. A71AF0A9226EDDF5001730FE /* SearchView.swift */,
  1078. A71AF0AD226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift */,
  1079. A71AF0AF226EF185001730FE /* SearchCollectionViewCell.swift */,
  1080. );
  1081. path = View;
  1082. sourceTree = "<group>";
  1083. };
  1084. A71AF0B1226EF947001730FE /* Search */ = {
  1085. isa = PBXGroup;
  1086. children = (
  1087. A71AF0A8226EDDE0001730FE /* View */,
  1088. A71AF0A7226EDDCC001730FE /* ViewController */,
  1089. );
  1090. path = Search;
  1091. sourceTree = "<group>";
  1092. };
  1093. A71AF0B2226EF953001730FE /* SearchResult */ = {
  1094. isa = PBXGroup;
  1095. children = (
  1096. A71AF0B3226EF983001730FE /* View */,
  1097. A71AF0B4226EF989001730FE /* ViewController */,
  1098. );
  1099. path = SearchResult;
  1100. sourceTree = "<group>";
  1101. };
  1102. A71AF0B3226EF983001730FE /* View */ = {
  1103. isa = PBXGroup;
  1104. children = (
  1105. A71AF0B7226EF9EC001730FE /* SearchResultNavigationbarView.swift */,
  1106. A71AF0B9226F00F8001730FE /* SearchResultView.swift */,
  1107. );
  1108. path = View;
  1109. sourceTree = "<group>";
  1110. };
  1111. A71AF0B4226EF989001730FE /* ViewController */ = {
  1112. isa = PBXGroup;
  1113. children = (
  1114. A71AF0B5226EF99A001730FE /* SearchResultViewController.swift */,
  1115. );
  1116. path = ViewController;
  1117. sourceTree = "<group>";
  1118. };
  1119. A71D2A5E2265671100A55D16 /* View */ = {
  1120. isa = PBXGroup;
  1121. children = (
  1122. A71D2A5F2265673A00A55D16 /* RegisterLoginView.swift */,
  1123. );
  1124. path = View;
  1125. sourceTree = "<group>";
  1126. };
  1127. A71D2A612265756E00A55D16 /* SwiftMoyaServiceApi */ = {
  1128. isa = PBXGroup;
  1129. children = (
  1130. A7A98E29228015BA005306E9 /* SwiftMoyaServiceCMS */,
  1131. A7A98DFB227E84D0005306E9 /* SwiftMoyaServiceProduct */,
  1132. A71AA5242273202E008FF1A5 /* SwiftMoyaServiceConfig */,
  1133. A72843FD224DB79400F82F30 /* SwiftMoyaServiceUser */,
  1134. A7C3DD182264229900FA262E /* SwiftMoyaServiceSMS */,
  1135. A7284A7122546441000BAEC4 /* SwiftMoyaServicePay */,
  1136. );
  1137. path = SwiftMoyaServiceApi;
  1138. sourceTree = "<group>";
  1139. };
  1140. A72843FD224DB79400F82F30 /* SwiftMoyaServiceUser */ = {
  1141. isa = PBXGroup;
  1142. children = (
  1143. A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */,
  1144. A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */,
  1145. );
  1146. path = SwiftMoyaServiceUser;
  1147. sourceTree = "<group>";
  1148. };
  1149. A7284402224DBE3500F82F30 /* UserModel */ = {
  1150. isa = PBXGroup;
  1151. children = (
  1152. A7284403224DBFBD00F82F30 /* UserModel.swift */,
  1153. A7CC74E52270628B003C4F38 /* DeliveryMethodTypeModel.swift */,
  1154. A757C92D22744ACE00226355 /* AddressManagerListModel.swift */,
  1155. A79057012276C9770037F823 /* SetPasswordModel.swift */,
  1156. A79057072276FEB00037F823 /* SelfMentionContactsModel.swift */,
  1157. );
  1158. path = UserModel;
  1159. sourceTree = "<group>";
  1160. };
  1161. A7284A502252EB28000BAEC4 /* SwiftMoyaNetWorkManager */ = {
  1162. isa = PBXGroup;
  1163. children = (
  1164. A72A7384223396CB00B21995 /* ApiMacro.swift */,
  1165. A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */,
  1166. );
  1167. path = SwiftMoyaNetWorkManager;
  1168. sourceTree = "<group>";
  1169. };
  1170. A7284A6B2253BE57000BAEC4 /* Reactor */ = {
  1171. isa = PBXGroup;
  1172. children = (
  1173. );
  1174. path = Reactor;
  1175. sourceTree = "<group>";
  1176. };
  1177. A7284A7122546441000BAEC4 /* SwiftMoyaServicePay */ = {
  1178. isa = PBXGroup;
  1179. children = (
  1180. A7284A7222546460000BAEC4 /* SwiftMoyaServicePayApi.swift */,
  1181. A7284A74225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift */,
  1182. );
  1183. path = SwiftMoyaServicePay;
  1184. sourceTree = "<group>";
  1185. };
  1186. A7284A782254A900000BAEC4 /* BaiduMapManager */ = {
  1187. isa = PBXGroup;
  1188. children = (
  1189. A7541501224C5ECA002480B5 /* BaiduMapManager.swift */,
  1190. A72A726322321DBD00B21995 /* LocationModel.swift */,
  1191. );
  1192. path = BaiduMapManager;
  1193. sourceTree = "<group>";
  1194. };
  1195. A729B5A52266DBC9004AE098 /* CommonModules */ = {
  1196. isa = PBXGroup;
  1197. children = (
  1198. A70B2C692288810700B2449F /* PickView */,
  1199. A70B2C502288581600B2449F /* ShareModule */,
  1200. A72C011F2275399D0065E0C3 /* ProvinceCityAreaModules */,
  1201. A7636ABD2268123B00374F9E /* LocationModule */,
  1202. A71AF0A3226E9D8A001730FE /* SearchModule */,
  1203. );
  1204. path = CommonModules;
  1205. sourceTree = "<group>";
  1206. };
  1207. A729B5A62266DBFA004AE098 /* AlertSheetView */ = {
  1208. isa = PBXGroup;
  1209. children = (
  1210. A729B5A72266F2E0004AE098 /* AlertSheetView.swift */,
  1211. );
  1212. path = AlertSheetView;
  1213. sourceTree = "<group>";
  1214. };
  1215. A729B5AB2266FF35004AE098 /* View */ = {
  1216. isa = PBXGroup;
  1217. children = (
  1218. A729B5AC2266FF45004AE098 /* BindPhoneNumberView.swift */,
  1219. );
  1220. path = View;
  1221. sourceTree = "<group>";
  1222. };
  1223. A729B5AE226712FF004AE098 /* View */ = {
  1224. isa = PBXGroup;
  1225. children = (
  1226. A729B5AF22671310004AE098 /* MobileLoginView.swift */,
  1227. );
  1228. path = View;
  1229. sourceTree = "<group>";
  1230. };
  1231. A729B5B122672401004AE098 /* PasswordLogin */ = {
  1232. isa = PBXGroup;
  1233. children = (
  1234. A729B5B52267269E004AE098 /* View */,
  1235. A729B5B222672523004AE098 /* ViewController */,
  1236. );
  1237. path = PasswordLogin;
  1238. sourceTree = "<group>";
  1239. };
  1240. A729B5B222672523004AE098 /* ViewController */ = {
  1241. isa = PBXGroup;
  1242. children = (
  1243. A729B5B32267254B004AE098 /* PasswordLoginViewController.swift */,
  1244. );
  1245. path = ViewController;
  1246. sourceTree = "<group>";
  1247. };
  1248. A729B5B52267269E004AE098 /* View */ = {
  1249. isa = PBXGroup;
  1250. children = (
  1251. A729B5B62267270B004AE098 /* PasswordLoginView.swift */,
  1252. );
  1253. path = View;
  1254. sourceTree = "<group>";
  1255. };
  1256. A72A7252223219BD00B21995 /* Service */ = {
  1257. isa = PBXGroup;
  1258. children = (
  1259. A738D203225AEAD000EEE860 /* Model */,
  1260. A72A7380223396CB00B21995 /* SwiftMoyaService */,
  1261. );
  1262. path = Service;
  1263. sourceTree = "<group>";
  1264. };
  1265. A72A725322321A6900B21995 /* Lib */ = {
  1266. isa = PBXGroup;
  1267. children = (
  1268. A7778C8E22438F5C00C7C47A /* AlipaySDK */,
  1269. A7778C9122438F5D00C7C47A /* WeChatSDK */,
  1270. );
  1271. path = Lib;
  1272. sourceTree = "<group>";
  1273. };
  1274. A72A725422321B9400B21995 /* Manager */ = {
  1275. isa = PBXGroup;
  1276. children = (
  1277. A7778CA52243A03400C7C47A /* IQKeyboardManagerSwiftManager */,
  1278. A72A730522321F1D00B21995 /* PayManager */,
  1279. A72A726122321DBD00B21995 /* MapManager */,
  1280. A72A726422321DBD00B21995 /* UMManager */,
  1281. );
  1282. path = Manager;
  1283. sourceTree = "<group>";
  1284. };
  1285. A72A725922321C5E00B21995 /* Macro */ = {
  1286. isa = PBXGroup;
  1287. children = (
  1288. A72A72CA22321E2600B21995 /* Common.swift */,
  1289. A72A72CB22321E2600B21995 /* CacheMacro.swift */,
  1290. A72A72CD22321E2600B21995 /* ColorMacro.swift */,
  1291. A72A72CC22321E2600B21995 /* EnumMacro.swift */,
  1292. A72A72C822321E2500B21995 /* FontMacro.swift */,
  1293. A72A72C922321E2600B21995 /* HTMLURLMacro.swift */,
  1294. A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */,
  1295. A72A72CE22321E2700B21995 /* ThirdPartyMacro.swift */,
  1296. A72A726022321D3400B21995 /* RainbowPlanet-Bridging-Header.h */,
  1297. );
  1298. path = Macro;
  1299. sourceTree = "<group>";
  1300. };
  1301. A72A726122321DBD00B21995 /* MapManager */ = {
  1302. isa = PBXGroup;
  1303. children = (
  1304. A7284A782254A900000BAEC4 /* BaiduMapManager */,
  1305. );
  1306. path = MapManager;
  1307. sourceTree = "<group>";
  1308. };
  1309. A72A726422321DBD00B21995 /* UMManager */ = {
  1310. isa = PBXGroup;
  1311. children = (
  1312. A72A726522321DBD00B21995 /* UMManager.swift */,
  1313. A738D66E225D9BD900EEE860 /* UMLoginModel.swift */,
  1314. );
  1315. path = UMManager;
  1316. sourceTree = "<group>";
  1317. };
  1318. A72A727122321DDE00B21995 /* NumberKeyboard */ = {
  1319. isa = PBXGroup;
  1320. children = (
  1321. A72A727222321DDE00B21995 /* NumberKeyboard.swift */,
  1322. );
  1323. path = NumberKeyboard;
  1324. sourceTree = "<group>";
  1325. };
  1326. A72A727322321DDE00B21995 /* Log */ = {
  1327. isa = PBXGroup;
  1328. children = (
  1329. A72A727422321DDE00B21995 /* Log.swift */,
  1330. );
  1331. path = Log;
  1332. sourceTree = "<group>";
  1333. };
  1334. A72A727522321DDE00B21995 /* SwiftProgressHUD */ = {
  1335. isa = PBXGroup;
  1336. children = (
  1337. A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */,
  1338. );
  1339. path = SwiftProgressHUD;
  1340. sourceTree = "<group>";
  1341. };
  1342. A72A727722321DDF00B21995 /* Regex */ = {
  1343. isa = PBXGroup;
  1344. children = (
  1345. A72A727822321DDF00B21995 /* Regex.swift */,
  1346. );
  1347. path = Regex;
  1348. sourceTree = "<group>";
  1349. };
  1350. A72A727B22321DDF00B21995 /* Countdown */ = {
  1351. isa = PBXGroup;
  1352. children = (
  1353. A72A727C22321DDF00B21995 /* CountdownButton.swift */,
  1354. A7778CAA2244B12500C7C47A /* CountDownManager.swift */,
  1355. );
  1356. path = Countdown;
  1357. sourceTree = "<group>";
  1358. };
  1359. A72A727D22321DDF00B21995 /* AppInfo */ = {
  1360. isa = PBXGroup;
  1361. children = (
  1362. A72A727E22321DDF00B21995 /* AppInfo.swift */,
  1363. );
  1364. path = AppInfo;
  1365. sourceTree = "<group>";
  1366. };
  1367. A72A727F22321DDF00B21995 /* CGView */ = {
  1368. isa = PBXGroup;
  1369. children = (
  1370. A72A728022321DDF00B21995 /* CGView.swift */,
  1371. );
  1372. path = CGView;
  1373. sourceTree = "<group>";
  1374. };
  1375. A72A728B22321DE000B21995 /* Extension */ = {
  1376. isa = PBXGroup;
  1377. children = (
  1378. A72A728C22321DE000B21995 /* Extension+UIImage.swift */,
  1379. A72A728D22321DE000B21995 /* Extension+UITextView.swift */,
  1380. A72A729322321DE000B21995 /* Extension+UILabel.swift */,
  1381. A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */,
  1382. A72A729422321DE000B21995 /* Extension+UIAlertController.swift */,
  1383. A70EBBBF22561179000AD74F /* Extension+UITableView.swift */,
  1384. A738D201225AD6AD00EEE860 /* Extension+UICollectionView.swift */,
  1385. A71AA5202272E527008FF1A5 /* Extension+UINavigationController.swift */,
  1386. A72A729922321DE000B21995 /* Extension+UIButton.swift */,
  1387. A72A729722321DE000B21995 /* Extension+UIColor.swift */,
  1388. A72A729A22321DE000B21995 /* Extension+UIView.swift */,
  1389. A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */,
  1390. A72A729222321DE000B21995 /* Extension+String.swift */,
  1391. A72A728E22321DE000B21995 /* Extension+NSRange.swift */,
  1392. A72A729122321DE000B21995 /* Extension+Array.swift */,
  1393. A72A729022321DE000B21995 /* Extension+UserDefaults.swift */,
  1394. A72A729D22321DE000B21995 /* Extension+Date.swift */,
  1395. A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */,
  1396. A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */,
  1397. A72A729822321DE000B21995 /* Extension+RxTimer.swift */,
  1398. );
  1399. path = Extension;
  1400. sourceTree = "<group>";
  1401. };
  1402. A72A729F22321DE000B21995 /* WKWebView */ = {
  1403. isa = PBXGroup;
  1404. children = (
  1405. A72A72A022321DE000B21995 /* WKWebViewConfig.swift */,
  1406. A72A72A122321DE000B21995 /* WebView.swift */,
  1407. );
  1408. path = WKWebView;
  1409. sourceTree = "<group>";
  1410. };
  1411. A72A730522321F1D00B21995 /* PayManager */ = {
  1412. isa = PBXGroup;
  1413. children = (
  1414. BDEF778F228571C200ED0AC0 /* PayManagerView */,
  1415. A72A7331223256D700B21995 /* PayManager */,
  1416. A72A730622321F2900B21995 /* AlipayManager */,
  1417. A72A730722321F3700B21995 /* WeChatpayManager */,
  1418. );
  1419. path = PayManager;
  1420. sourceTree = "<group>";
  1421. };
  1422. A72A730622321F2900B21995 /* AlipayManager */ = {
  1423. isa = PBXGroup;
  1424. children = (
  1425. A72A73132232475E00B21995 /* AlipayManager.swift */,
  1426. A7284A7622547333000BAEC4 /* AlipayResultModel.swift */,
  1427. );
  1428. path = AlipayManager;
  1429. sourceTree = "<group>";
  1430. };
  1431. A72A730722321F3700B21995 /* WeChatpayManager */ = {
  1432. isa = PBXGroup;
  1433. children = (
  1434. A72A73152232481600B21995 /* WeChatpayManager.swift */,
  1435. A738D204225AF90D00EEE860 /* WeChatpayOrderModel.swift */,
  1436. );
  1437. path = WeChatpayManager;
  1438. sourceTree = "<group>";
  1439. };
  1440. A72A7331223256D700B21995 /* PayManager */ = {
  1441. isa = PBXGroup;
  1442. children = (
  1443. A72A7332223256E100B21995 /* PayManager.swift */,
  1444. );
  1445. path = PayManager;
  1446. sourceTree = "<group>";
  1447. };
  1448. A72A73722233966800B21995 /* RootModel */ = {
  1449. isa = PBXGroup;
  1450. children = (
  1451. A7284A512252EE9A000BAEC4 /* RootModel.swift */,
  1452. A728443F224DFACD00F82F30 /* InfoModel.swift */,
  1453. A7284A532252FB5C000BAEC4 /* PaginationModel.swift */,
  1454. );
  1455. path = RootModel;
  1456. sourceTree = "<group>";
  1457. };
  1458. A72A7380223396CB00B21995 /* SwiftMoyaService */ = {
  1459. isa = PBXGroup;
  1460. children = (
  1461. A79057042276D6250037F823 /* SwiftMoyaServiceManger */,
  1462. A71D2A612265756E00A55D16 /* SwiftMoyaServiceApi */,
  1463. );
  1464. path = SwiftMoyaService;
  1465. sourceTree = "<group>";
  1466. };
  1467. A72C011E227539800065E0C3 /* Src */ = {
  1468. isa = PBXGroup;
  1469. children = (
  1470. A7190166227543DB00104A50 /* baidu_cityid_rel.json */,
  1471. A72C01212275404A0065E0C3 /* province_city_area.json */,
  1472. );
  1473. path = Src;
  1474. sourceTree = "<group>";
  1475. };
  1476. A72C011F2275399D0065E0C3 /* ProvinceCityAreaModules */ = {
  1477. isa = PBXGroup;
  1478. children = (
  1479. A71901622275411C00104A50 /* ProvinceCityArea */,
  1480. );
  1481. path = ProvinceCityAreaModules;
  1482. sourceTree = "<group>";
  1483. };
  1484. A738D203225AEAD000EEE860 /* Model */ = {
  1485. isa = PBXGroup;
  1486. children = (
  1487. A7B4E736228190810012914A /* CommonModel */,
  1488. A72A73722233966800B21995 /* RootModel */,
  1489. A7A98E00227E88E8005306E9 /* ProductModel */,
  1490. A79057032276D5FE0037F823 /* ConfigModel */,
  1491. A7284402224DBE3500F82F30 /* UserModel */,
  1492. A7B4E733228190630012914A /* CMSModel */,
  1493. );
  1494. path = Model;
  1495. sourceTree = "<group>";
  1496. };
  1497. A73D7C662268A032002A4CE3 /* SwiftyStarRatingView */ = {
  1498. isa = PBXGroup;
  1499. children = (
  1500. A73D7C672268A032002A4CE3 /* SwiftyStarRatingView.swift */,
  1501. );
  1502. path = SwiftyStarRatingView;
  1503. sourceTree = "<group>";
  1504. };
  1505. A75414F9224B5EFC002480B5 /* MobileLogin */ = {
  1506. isa = PBXGroup;
  1507. children = (
  1508. A729B5AE226712FF004AE098 /* View */,
  1509. A75414FA224B5F17002480B5 /* ViewController */,
  1510. );
  1511. path = MobileLogin;
  1512. sourceTree = "<group>";
  1513. };
  1514. A75414FA224B5F17002480B5 /* ViewController */ = {
  1515. isa = PBXGroup;
  1516. children = (
  1517. A75414FB224B5F28002480B5 /* MobileLoginViewController.swift */,
  1518. );
  1519. path = ViewController;
  1520. sourceTree = "<group>";
  1521. };
  1522. A7541507224CACF9002480B5 /* SwiftSign */ = {
  1523. isa = PBXGroup;
  1524. children = (
  1525. A754150B224CACF9002480B5 /* SwiftSign.swift */,
  1526. );
  1527. path = SwiftSign;
  1528. sourceTree = "<group>";
  1529. };
  1530. A757C9312274882E00226355 /* MJRefreshEX */ = {
  1531. isa = PBXGroup;
  1532. children = (
  1533. A757C9322274882E00226355 /* UIScrollView+MJRefreshEX.m */,
  1534. A757C9332274882E00226355 /* UIScrollView+MJRefreshEX.h */,
  1535. );
  1536. path = MJRefreshEX;
  1537. sourceTree = "<group>";
  1538. };
  1539. A7636ABD2268123B00374F9E /* LocationModule */ = {
  1540. isa = PBXGroup;
  1541. children = (
  1542. A7BB68612269B1DD00AB07A2 /* AddressPOI */,
  1543. A7BB68512268DCF800AB07A2 /* SelfRecommendation */,
  1544. A7636ABE2268125300374F9E /* Location */,
  1545. );
  1546. path = LocationModule;
  1547. sourceTree = "<group>";
  1548. };
  1549. A7636ABE2268125300374F9E /* Location */ = {
  1550. isa = PBXGroup;
  1551. children = (
  1552. A7636AC6226815BA00374F9E /* View */,
  1553. A7636ABF226812BD00374F9E /* ViewController */,
  1554. );
  1555. path = Location;
  1556. sourceTree = "<group>";
  1557. };
  1558. A7636ABF226812BD00374F9E /* ViewController */ = {
  1559. isa = PBXGroup;
  1560. children = (
  1561. A7636AC42268139C00374F9E /* LocationViewController.swift */,
  1562. );
  1563. path = ViewController;
  1564. sourceTree = "<group>";
  1565. };
  1566. A7636AC6226815BA00374F9E /* View */ = {
  1567. isa = PBXGroup;
  1568. children = (
  1569. A7636AC722682BAF00374F9E /* LocationView.swift */,
  1570. );
  1571. path = View;
  1572. sourceTree = "<group>";
  1573. };
  1574. A775CBFC2237483E00EBDCF8 /* View */ = {
  1575. isa = PBXGroup;
  1576. children = (
  1577. A7B4E730228177A90012914A /* ShoppingMallFloor */,
  1578. A7A98E3E22804647005306E9 /* ShoppingMallSepcial */,
  1579. A7A98E38228030F8005306E9 /* ShoppingMallCategory */,
  1580. A7A98E3422802A60005306E9 /* ShoppingMallBanner */,
  1581. A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */,
  1582. A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */,
  1583. A7A98E3022801B10005306E9 /* ShoppingMallListView.swift */,
  1584. );
  1585. path = View;
  1586. sourceTree = "<group>";
  1587. };
  1588. A775CC0122377AB700EBDCF8 /* EmptyView */ = {
  1589. isa = PBXGroup;
  1590. children = (
  1591. A775CC0222377C6500EBDCF8 /* EmptyView.swift */,
  1592. );
  1593. path = EmptyView;
  1594. sourceTree = "<group>";
  1595. };
  1596. A7778C8E22438F5C00C7C47A /* AlipaySDK */ = {
  1597. isa = PBXGroup;
  1598. children = (
  1599. A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */,
  1600. A7778C9022438F5C00C7C47A /* AlipaySDK.framework */,
  1601. );
  1602. path = AlipaySDK;
  1603. sourceTree = "<group>";
  1604. };
  1605. A7778C9122438F5D00C7C47A /* WeChatSDK */ = {
  1606. isa = PBXGroup;
  1607. children = (
  1608. A7778C9222438F5D00C7C47A /* WXApi.h */,
  1609. A7778C9322438F5D00C7C47A /* WXApiObject.h */,
  1610. A7778C9422438F5D00C7C47A /* README.txt */,
  1611. A7778C9522438F5D00C7C47A /* WechatAuthSDK.h */,
  1612. A7778C9622438F5D00C7C47A /* libWeChatSDK.a */,
  1613. );
  1614. path = WeChatSDK;
  1615. sourceTree = "<group>";
  1616. };
  1617. A7778CA52243A03400C7C47A /* IQKeyboardManagerSwiftManager */ = {
  1618. isa = PBXGroup;
  1619. children = (
  1620. A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */,
  1621. );
  1622. path = IQKeyboardManagerSwiftManager;
  1623. sourceTree = "<group>";
  1624. };
  1625. A7778CAC2244BC2600C7C47A /* RegisterLogin */ = {
  1626. isa = PBXGroup;
  1627. children = (
  1628. A71D2A5E2265671100A55D16 /* View */,
  1629. A7778CAD2244BEFF00C7C47A /* ViewController */,
  1630. );
  1631. path = RegisterLogin;
  1632. sourceTree = "<group>";
  1633. };
  1634. A7778CAD2244BEFF00C7C47A /* ViewController */ = {
  1635. isa = PBXGroup;
  1636. children = (
  1637. A7778CB12244D73400C7C47A /* RegisterLoginViewController.swift */,
  1638. );
  1639. path = ViewController;
  1640. sourceTree = "<group>";
  1641. };
  1642. A7778CB52244E93E00C7C47A /* BindPhoneNumber */ = {
  1643. isa = PBXGroup;
  1644. children = (
  1645. A729B5AB2266FF35004AE098 /* View */,
  1646. A7778CB62244E96700C7C47A /* ViewController */,
  1647. );
  1648. path = BindPhoneNumber;
  1649. sourceTree = "<group>";
  1650. };
  1651. A7778CB62244E96700C7C47A /* ViewController */ = {
  1652. isa = PBXGroup;
  1653. children = (
  1654. A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */,
  1655. );
  1656. path = ViewController;
  1657. sourceTree = "<group>";
  1658. };
  1659. A7778CC32246030200C7C47A /* PhoneCountryArea */ = {
  1660. isa = PBXGroup;
  1661. children = (
  1662. A7284A6B2253BE57000BAEC4 /* Reactor */,
  1663. A7778CE022461DA300C7C47A /* Model */,
  1664. A7778CD322460CED00C7C47A /* View */,
  1665. A7778CCC224608EA00C7C47A /* ViewController */,
  1666. );
  1667. path = PhoneCountryArea;
  1668. sourceTree = "<group>";
  1669. };
  1670. A7778CCC224608EA00C7C47A /* ViewController */ = {
  1671. isa = PBXGroup;
  1672. children = (
  1673. A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */,
  1674. );
  1675. path = ViewController;
  1676. sourceTree = "<group>";
  1677. };
  1678. A7778CD322460CED00C7C47A /* View */ = {
  1679. isa = PBXGroup;
  1680. children = (
  1681. A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */,
  1682. A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */,
  1683. );
  1684. path = View;
  1685. sourceTree = "<group>";
  1686. };
  1687. A7778CE022461DA300C7C47A /* Model */ = {
  1688. isa = PBXGroup;
  1689. children = (
  1690. A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */,
  1691. );
  1692. path = Model;
  1693. sourceTree = "<group>";
  1694. };
  1695. A77F2C542231FB49001BD3F6 = {
  1696. isa = PBXGroup;
  1697. children = (
  1698. A77F2C5F2231FB49001BD3F6 /* RainbowPlanet */,
  1699. A77F2C742231FB4A001BD3F6 /* RainbowPlanetTests */,
  1700. A77F2C7F2231FB4A001BD3F6 /* RainbowPlanetUITests */,
  1701. A77F2C5E2231FB49001BD3F6 /* Products */,
  1702. 618631008656829220117ED1 /* Pods */,
  1703. FA8AAFBADE8BD144A5C36FDB /* Frameworks */,
  1704. );
  1705. sourceTree = "<group>";
  1706. };
  1707. A77F2C5E2231FB49001BD3F6 /* Products */ = {
  1708. isa = PBXGroup;
  1709. children = (
  1710. A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */,
  1711. A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */,
  1712. A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */,
  1713. );
  1714. name = Products;
  1715. sourceTree = "<group>";
  1716. };
  1717. A77F2C5F2231FB49001BD3F6 /* RainbowPlanet */ = {
  1718. isa = PBXGroup;
  1719. children = (
  1720. A7A59A7722363CCB00417FA4 /* RainbowPlanet.entitlements */,
  1721. A77F2C8E2231FC5C001BD3F6 /* AppDelegate */,
  1722. A77F2C8F2231FC65001BD3F6 /* Base */,
  1723. A77F2CA22232010F001BD3F6 /* Modules */,
  1724. A72A725422321B9400B21995 /* Manager */,
  1725. A72A725922321C5E00B21995 /* Macro */,
  1726. A77F2CBC2232022A001BD3F6 /* Tools */,
  1727. A72A725322321A6900B21995 /* Lib */,
  1728. A72A7252223219BD00B21995 /* Service */,
  1729. A72C011E227539800065E0C3 /* Src */,
  1730. A77F2CBB223201DC001BD3F6 /* Supporting Files */,
  1731. );
  1732. path = RainbowPlanet;
  1733. sourceTree = "<group>";
  1734. };
  1735. A77F2C742231FB4A001BD3F6 /* RainbowPlanetTests */ = {
  1736. isa = PBXGroup;
  1737. children = (
  1738. A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */,
  1739. A77F2C772231FB4A001BD3F6 /* Info.plist */,
  1740. );
  1741. path = RainbowPlanetTests;
  1742. sourceTree = "<group>";
  1743. };
  1744. A77F2C7F2231FB4A001BD3F6 /* RainbowPlanetUITests */ = {
  1745. isa = PBXGroup;
  1746. children = (
  1747. A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */,
  1748. A77F2C822231FB4A001BD3F6 /* Info.plist */,
  1749. );
  1750. path = RainbowPlanetUITests;
  1751. sourceTree = "<group>";
  1752. };
  1753. A77F2C8E2231FC5C001BD3F6 /* AppDelegate */ = {
  1754. isa = PBXGroup;
  1755. children = (
  1756. A77F2C602231FB49001BD3F6 /* AppDelegate.swift */,
  1757. A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */,
  1758. A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */,
  1759. );
  1760. path = AppDelegate;
  1761. sourceTree = "<group>";
  1762. };
  1763. A77F2C8F2231FC65001BD3F6 /* Base */ = {
  1764. isa = PBXGroup;
  1765. children = (
  1766. A77F2C902231FC75001BD3F6 /* BaseTabbarViewController */,
  1767. A77F2C912231FC85001BD3F6 /* BaseNavigationController */,
  1768. A77F2C942231FCD2001BD3F6 /* BaseWebViewController */,
  1769. A77F2C922231FCA2001BD3F6 /* BaseViewController */,
  1770. A77F2C932231FCC5001BD3F6 /* BaseView */,
  1771. );
  1772. path = Base;
  1773. sourceTree = "<group>";
  1774. };
  1775. A77F2C902231FC75001BD3F6 /* BaseTabbarViewController */ = {
  1776. isa = PBXGroup;
  1777. children = (
  1778. A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */,
  1779. );
  1780. path = BaseTabbarViewController;
  1781. sourceTree = "<group>";
  1782. };
  1783. A77F2C912231FC85001BD3F6 /* BaseNavigationController */ = {
  1784. isa = PBXGroup;
  1785. children = (
  1786. A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */,
  1787. );
  1788. path = BaseNavigationController;
  1789. sourceTree = "<group>";
  1790. };
  1791. A77F2C922231FCA2001BD3F6 /* BaseViewController */ = {
  1792. isa = PBXGroup;
  1793. children = (
  1794. A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */,
  1795. );
  1796. path = BaseViewController;
  1797. sourceTree = "<group>";
  1798. };
  1799. A77F2C932231FCC5001BD3F6 /* BaseView */ = {
  1800. isa = PBXGroup;
  1801. children = (
  1802. A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */,
  1803. );
  1804. path = BaseView;
  1805. sourceTree = "<group>";
  1806. };
  1807. A77F2C942231FCD2001BD3F6 /* BaseWebViewController */ = {
  1808. isa = PBXGroup;
  1809. children = (
  1810. A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */,
  1811. );
  1812. path = BaseWebViewController;
  1813. sourceTree = "<group>";
  1814. };
  1815. A77F2CA22232010F001BD3F6 /* Modules */ = {
  1816. isa = PBXGroup;
  1817. children = (
  1818. A77F2CAE2232010F001BD3F6 /* RegisterLoginModule */,
  1819. A77F2CA32232010F001BD3F6 /* ShoppingMallModule */,
  1820. A77F2CAF2232010F001BD3F6 /* ShoppingCartModule */,
  1821. A77F2CA92232010F001BD3F6 /* MineModule */,
  1822. A729B5A52266DBC9004AE098 /* CommonModules */,
  1823. );
  1824. path = Modules;
  1825. sourceTree = "<group>";
  1826. };
  1827. A77F2CA32232010F001BD3F6 /* ShoppingMallModule */ = {
  1828. isa = PBXGroup;
  1829. children = (
  1830. A70B2C5622886AAA00B2449F /* Shop */,
  1831. A70B2C122286B14C00B2449F /* ProductView */,
  1832. A70B2C112286B10000B2449F /* ProductDetail */,
  1833. A77F2CA42232010F001BD3F6 /* ShoppingMall */,
  1834. A7A98E03227EB7FD005306E9 /* Category */,
  1835. A7A98E15227EECEA005306E9 /* Special */,
  1836. );
  1837. path = ShoppingMallModule;
  1838. sourceTree = "<group>";
  1839. };
  1840. A77F2CA42232010F001BD3F6 /* ShoppingMall */ = {
  1841. isa = PBXGroup;
  1842. children = (
  1843. A775CBFC2237483E00EBDCF8 /* View */,
  1844. A77F2CA52232010F001BD3F6 /* ViewController */,
  1845. );
  1846. path = ShoppingMall;
  1847. sourceTree = "<group>";
  1848. };
  1849. A77F2CA52232010F001BD3F6 /* ViewController */ = {
  1850. isa = PBXGroup;
  1851. children = (
  1852. A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */,
  1853. A7A98E27227FD6C6005306E9 /* ShoppingMallListViewController.swift */,
  1854. );
  1855. path = ViewController;
  1856. sourceTree = "<group>";
  1857. };
  1858. A77F2CA92232010F001BD3F6 /* MineModule */ = {
  1859. isa = PBXGroup;
  1860. children = (
  1861. A77F2CAA2232010F001BD3F6 /* Mine */,
  1862. A7CC75302271AB6C003C4F38 /* AddressManager */,
  1863. A71AA50D22721537008FF1A5 /* ExpressAddressList */,
  1864. A71AA51622721980008FF1A5 /* EditExpressAddress */,
  1865. A7CC753F2271DFF3003C4F38 /* SelfMentionContactsList */,
  1866. A7824AFE2271F0C500ABA381 /* EditSelfMentionContacts */,
  1867. A7CC75292271A169003C4F38 /* SetPassword */,
  1868. A7CC751D22719091003C4F38 /* AccountSecurity */,
  1869. A7CC751222716194003C4F38 /* Set */,
  1870. A7CC7507227151C7003C4F38 /* MessageDetailes */,
  1871. A7CC74E722706A06003C4F38 /* Message */,
  1872. );
  1873. path = MineModule;
  1874. sourceTree = "<group>";
  1875. };
  1876. A77F2CAA2232010F001BD3F6 /* Mine */ = {
  1877. isa = PBXGroup;
  1878. children = (
  1879. A7CC74D2226FF190003C4F38 /* View */,
  1880. A77F2CAB2232010F001BD3F6 /* ViewController */,
  1881. );
  1882. path = Mine;
  1883. sourceTree = "<group>";
  1884. };
  1885. A77F2CAB2232010F001BD3F6 /* ViewController */ = {
  1886. isa = PBXGroup;
  1887. children = (
  1888. A77F2CAD2232010F001BD3F6 /* MineViewController.swift */,
  1889. );
  1890. path = ViewController;
  1891. sourceTree = "<group>";
  1892. };
  1893. A77F2CAE2232010F001BD3F6 /* RegisterLoginModule */ = {
  1894. isa = PBXGroup;
  1895. children = (
  1896. A7778CAC2244BC2600C7C47A /* RegisterLogin */,
  1897. A7778CB52244E93E00C7C47A /* BindPhoneNumber */,
  1898. A75414F9224B5EFC002480B5 /* MobileLogin */,
  1899. A729B5B122672401004AE098 /* PasswordLogin */,
  1900. A7778CC32246030200C7C47A /* PhoneCountryArea */,
  1901. );
  1902. path = RegisterLoginModule;
  1903. sourceTree = "<group>";
  1904. };
  1905. A77F2CAF2232010F001BD3F6 /* ShoppingCartModule */ = {
  1906. isa = PBXGroup;
  1907. children = (
  1908. A77F2CB02232010F001BD3F6 /* ShoppingCart */,
  1909. BD3474F722859788000908C5 /* ShoppingCartPayOrder */,
  1910. BD3474FA228597E8000908C5 /* ShoppingCartFinishPay */,
  1911. );
  1912. path = ShoppingCartModule;
  1913. sourceTree = "<group>";
  1914. };
  1915. A77F2CB02232010F001BD3F6 /* ShoppingCart */ = {
  1916. isa = PBXGroup;
  1917. children = (
  1918. BDF47D782282645900941AB9 /* View */,
  1919. A77F2CB12232010F001BD3F6 /* ViewController */,
  1920. );
  1921. path = ShoppingCart;
  1922. sourceTree = "<group>";
  1923. };
  1924. A77F2CB12232010F001BD3F6 /* ViewController */ = {
  1925. isa = PBXGroup;
  1926. children = (
  1927. A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */,
  1928. );
  1929. path = ViewController;
  1930. sourceTree = "<group>";
  1931. };
  1932. A77F2CBB223201DC001BD3F6 /* Supporting Files */ = {
  1933. isa = PBXGroup;
  1934. children = (
  1935. A77F2C672231FB4A001BD3F6 /* Assets.xcassets */,
  1936. A71AF0BD226F1792001730FE /* ShoppingMallModule.xcassets */,
  1937. BD20F1D72283D2AA00677D8E /* ShoppingCartModule.xcassets */,
  1938. A7CC74DD22703B4A003C4F38 /* MineModule.xcassets */,
  1939. A70B2C2C2286E29900B2449F /* Product.xcassets */,
  1940. A729B5A92266F6FD004AE098 /* Launch Screen.storyboard */,
  1941. A77F2C6C2231FB4A001BD3F6 /* Info.plist */,
  1942. );
  1943. path = "Supporting Files";
  1944. sourceTree = "<group>";
  1945. };
  1946. A77F2CBC2232022A001BD3F6 /* Tools */ = {
  1947. isa = PBXGroup;
  1948. children = (
  1949. A70B2C232286C03800B2449F /* NXLPageControl */,
  1950. A7D4608C227616E600A5A54E /* FMDB */,
  1951. A71901712275F56C00104A50 /* BaiduToCityFactory */,
  1952. A719016E2275EF7A00104A50 /* NXLRealm */,
  1953. A757C9312274882E00226355 /* MJRefreshEX */,
  1954. A71AA51D22729F0B008FF1A5 /* AuthorizationSwift */,
  1955. A73D7C662268A032002A4CE3 /* SwiftyStarRatingView */,
  1956. A729B5A62266DBFA004AE098 /* AlertSheetView */,
  1957. A72A727322321DDE00B21995 /* Log */,
  1958. A72A727D22321DDF00B21995 /* AppInfo */,
  1959. A72A727B22321DDF00B21995 /* Countdown */,
  1960. A72A727522321DDE00B21995 /* SwiftProgressHUD */,
  1961. A775CC0122377AB700EBDCF8 /* EmptyView */,
  1962. A72A727F22321DDF00B21995 /* CGView */,
  1963. A72A728B22321DE000B21995 /* Extension */,
  1964. A72A727122321DDE00B21995 /* NumberKeyboard */,
  1965. A72A727722321DDF00B21995 /* Regex */,
  1966. A77F2CC422320627001BD3F6 /* WRNavigationBar */,
  1967. A72A729F22321DE000B21995 /* WKWebView */,
  1968. );
  1969. path = Tools;
  1970. sourceTree = "<group>";
  1971. };
  1972. A77F2CC422320627001BD3F6 /* WRNavigationBar */ = {
  1973. isa = PBXGroup;
  1974. children = (
  1975. A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */,
  1976. A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */,
  1977. );
  1978. path = WRNavigationBar;
  1979. sourceTree = "<group>";
  1980. };
  1981. A7824AFE2271F0C500ABA381 /* EditSelfMentionContacts */ = {
  1982. isa = PBXGroup;
  1983. children = (
  1984. A7824B022271F0E900ABA381 /* View */,
  1985. A7824B012271F0E000ABA381 /* ViewController */,
  1986. );
  1987. path = EditSelfMentionContacts;
  1988. sourceTree = "<group>";
  1989. };
  1990. A7824B012271F0E000ABA381 /* ViewController */ = {
  1991. isa = PBXGroup;
  1992. children = (
  1993. A7824AFF2271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift */,
  1994. );
  1995. path = ViewController;
  1996. sourceTree = "<group>";
  1997. };
  1998. A7824B022271F0E900ABA381 /* View */ = {
  1999. isa = PBXGroup;
  2000. children = (
  2001. A7824B032271F10300ABA381 /* EditSelfMentionContactsView.swift */,
  2002. A7824B052271F25400ABA381 /* EditAddressTableViewCell.swift */,
  2003. A7824B072271F53A00ABA381 /* EditSetDefaultTableViewCell.swift */,
  2004. A71AA50B2272126A008FF1A5 /* EditAddressFooterView.swift */,
  2005. );
  2006. path = View;
  2007. sourceTree = "<group>";
  2008. };
  2009. A79057032276D5FE0037F823 /* ConfigModel */ = {
  2010. isa = PBXGroup;
  2011. children = (
  2012. A79057052276EA3D0037F823 /* OpenCityListModel.swift */,
  2013. A757C92F2274839900226355 /* SelfMentionAddressListModel.swift */,
  2014. );
  2015. path = ConfigModel;
  2016. sourceTree = "<group>";
  2017. };
  2018. A79057042276D6250037F823 /* SwiftMoyaServiceManger */ = {
  2019. isa = PBXGroup;
  2020. children = (
  2021. A7541507224CACF9002480B5 /* SwiftSign */,
  2022. A7284A502252EB28000BAEC4 /* SwiftMoyaNetWorkManager */,
  2023. );
  2024. path = SwiftMoyaServiceManger;
  2025. sourceTree = "<group>";
  2026. };
  2027. A7A98DFB227E84D0005306E9 /* SwiftMoyaServiceProduct */ = {
  2028. isa = PBXGroup;
  2029. children = (
  2030. A7A98DFC227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift */,
  2031. A7A98DFE227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift */,
  2032. );
  2033. path = SwiftMoyaServiceProduct;
  2034. sourceTree = "<group>";
  2035. };
  2036. A7A98E00227E88E8005306E9 /* ProductModel */ = {
  2037. isa = PBXGroup;
  2038. children = (
  2039. A7A98E13227ED0E2005306E9 /* CategoryListModel.swift */,
  2040. A7A98E01227E8900005306E9 /* ProductSearchListModel.swift */,
  2041. A7A98E11227ECA11005306E9 /* ProductSearchModel.swift */,
  2042. A70B2C062284305400B2449F /* ProductModel.swift */,
  2043. A70B2C0F2286A3BC00B2449F /* ProductDetailModel.swift */,
  2044. BDE3045C22851E4F001D050F /* ProductCartListModel.swift */,
  2045. BDE3045E228554CA001D050F /* ProductCartAmountModel.swift */,
  2046. );
  2047. path = ProductModel;
  2048. sourceTree = "<group>";
  2049. };
  2050. A7A98E03227EB7FD005306E9 /* Category */ = {
  2051. isa = PBXGroup;
  2052. children = (
  2053. A7A98E07227EB8CC005306E9 /* View */,
  2054. A7A98E06227EB8C7005306E9 /* ViewController */,
  2055. );
  2056. path = Category;
  2057. sourceTree = "<group>";
  2058. };
  2059. A7A98E06227EB8C7005306E9 /* ViewController */ = {
  2060. isa = PBXGroup;
  2061. children = (
  2062. A7A98E04227EB891005306E9 /* CategoryViewController.swift */,
  2063. );
  2064. path = ViewController;
  2065. sourceTree = "<group>";
  2066. };
  2067. A7A98E07227EB8CC005306E9 /* View */ = {
  2068. isa = PBXGroup;
  2069. children = (
  2070. A7A98E08227EB8DD005306E9 /* CategoryView.swift */,
  2071. A7A98E0A227EBD04005306E9 /* CategorySearchView.swift */,
  2072. A7A98E0D227EC0C6005306E9 /* CategoryTableViewCell.swift */,
  2073. );
  2074. path = View;
  2075. sourceTree = "<group>";
  2076. };
  2077. A7A98E15227EECEA005306E9 /* Special */ = {
  2078. isa = PBXGroup;
  2079. children = (
  2080. A7A98E19227EEE30005306E9 /* View */,
  2081. A7A98E18227EEE06005306E9 /* ViewController */,
  2082. );
  2083. path = Special;
  2084. sourceTree = "<group>";
  2085. };
  2086. A7A98E18227EEE06005306E9 /* ViewController */ = {
  2087. isa = PBXGroup;
  2088. children = (
  2089. A7A98E16227EED76005306E9 /* SpecialViewController.swift */,
  2090. );
  2091. path = ViewController;
  2092. sourceTree = "<group>";
  2093. };
  2094. A7A98E19227EEE30005306E9 /* View */ = {
  2095. isa = PBXGroup;
  2096. children = (
  2097. A7A98E1A227EEE49005306E9 /* SpecialView.swift */,
  2098. A7A98E1C227EF1CB005306E9 /* SpecialBannerView.swift */,
  2099. );
  2100. path = View;
  2101. sourceTree = "<group>";
  2102. };
  2103. A7A98E29228015BA005306E9 /* SwiftMoyaServiceCMS */ = {
  2104. isa = PBXGroup;
  2105. children = (
  2106. A7A98E2C22801642005306E9 /* SwiftMoyaServiceCMSApi.swift */,
  2107. A7A98E2E228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift */,
  2108. );
  2109. path = SwiftMoyaServiceCMS;
  2110. sourceTree = "<group>";
  2111. };
  2112. A7A98E3422802A60005306E9 /* ShoppingMallBanner */ = {
  2113. isa = PBXGroup;
  2114. children = (
  2115. A7A98E322280272A005306E9 /* ShoppingMallBannerTableViewCell.swift */,
  2116. A7A98E3522802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift */,
  2117. );
  2118. path = ShoppingMallBanner;
  2119. sourceTree = "<group>";
  2120. };
  2121. A7A98E38228030F8005306E9 /* ShoppingMallCategory */ = {
  2122. isa = PBXGroup;
  2123. children = (
  2124. A7A98E392280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift */,
  2125. A7A98E3B228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift */,
  2126. );
  2127. path = ShoppingMallCategory;
  2128. sourceTree = "<group>";
  2129. };
  2130. A7A98E3E22804647005306E9 /* ShoppingMallSepcial */ = {
  2131. isa = PBXGroup;
  2132. children = (
  2133. A7A98E40228046C4005306E9 /* ShoppingMallSepcialTableViewCell.swift */,
  2134. A7A98E4222804851005306E9 /* ShoppingMallSepcialFlowLayout.swift */,
  2135. A7A98E4422804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift */,
  2136. );
  2137. path = ShoppingMallSepcial;
  2138. sourceTree = "<group>";
  2139. };
  2140. A7B4E71B22812D390012914A /* ShoppingMallSlidingLeftRight */ = {
  2141. isa = PBXGroup;
  2142. children = (
  2143. A7B4E755228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift */,
  2144. );
  2145. path = ShoppingMallSlidingLeftRight;
  2146. sourceTree = "<group>";
  2147. };
  2148. A7B4E730228177A90012914A /* ShoppingMallFloor */ = {
  2149. isa = PBXGroup;
  2150. children = (
  2151. A7B4E752228276270012914A /* Floor */,
  2152. A70B2C0522841F1B00B2449F /* FloorCell */,
  2153. );
  2154. path = ShoppingMallFloor;
  2155. sourceTree = "<group>";
  2156. };
  2157. A7B4E732228177BC0012914A /* ProductCollectionReusableView */ = {
  2158. isa = PBXGroup;
  2159. children = (
  2160. A7B4E720228151F40012914A /* ProductFloorTitleView.swift */,
  2161. A7B4E72E2281773F0012914A /* ProductFloorCenterTitleView.swift */,
  2162. A7B4E722228154750012914A /* ProductFloorBannerView.swift */,
  2163. A70B2C032283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift */,
  2164. A7B4E7572282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift */,
  2165. A7B4E759228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift */,
  2166. );
  2167. path = ProductCollectionReusableView;
  2168. sourceTree = "<group>";
  2169. };
  2170. A7B4E733228190630012914A /* CMSModel */ = {
  2171. isa = PBXGroup;
  2172. children = (
  2173. A7B4E739228192D10012914A /* CMSTemplateModel.swift */,
  2174. A7B4E7342281907A0012914A /* CMSModel.swift */,
  2175. );
  2176. path = CMSModel;
  2177. sourceTree = "<group>";
  2178. };
  2179. A7B4E736228190810012914A /* CommonModel */ = {
  2180. isa = PBXGroup;
  2181. children = (
  2182. A7B4E737228191CC0012914A /* CommondModel.swift */,
  2183. );
  2184. path = CommonModel;
  2185. sourceTree = "<group>";
  2186. };
  2187. A7B4E752228276270012914A /* Floor */ = {
  2188. isa = PBXGroup;
  2189. children = (
  2190. A7B4E753228278320012914A /* ShoppingMallFloorTableViewCell.swift */,
  2191. );
  2192. path = Floor;
  2193. sourceTree = "<group>";
  2194. };
  2195. A7BB68512268DCF800AB07A2 /* SelfRecommendation */ = {
  2196. isa = PBXGroup;
  2197. children = (
  2198. A7BB68522268DE6400AB07A2 /* View */,
  2199. A7BB68532268DE7100AB07A2 /* ViewController */,
  2200. );
  2201. path = SelfRecommendation;
  2202. sourceTree = "<group>";
  2203. };
  2204. A7BB68522268DE6400AB07A2 /* View */ = {
  2205. isa = PBXGroup;
  2206. children = (
  2207. A7BB68542268DE8600AB07A2 /* SelfRecommendationView.swift */,
  2208. A7BB6856226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift */,
  2209. A7BB685822696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift */,
  2210. );
  2211. path = View;
  2212. sourceTree = "<group>";
  2213. };
  2214. A7BB68532268DE7100AB07A2 /* ViewController */ = {
  2215. isa = PBXGroup;
  2216. children = (
  2217. A7BB684D2268DCEC00AB07A2 /* SelfRecommendationViewController.swift */,
  2218. );
  2219. path = ViewController;
  2220. sourceTree = "<group>";
  2221. };
  2222. A7BB68612269B1DD00AB07A2 /* AddressPOI */ = {
  2223. isa = PBXGroup;
  2224. children = (
  2225. A7BB68622269B1DD00AB07A2 /* View */,
  2226. A7BB68642269B1DD00AB07A2 /* ViewController */,
  2227. );
  2228. path = AddressPOI;
  2229. sourceTree = "<group>";
  2230. };
  2231. A7BB68622269B1DD00AB07A2 /* View */ = {
  2232. isa = PBXGroup;
  2233. children = (
  2234. A7BB68632269B1DD00AB07A2 /* AddressPOIView.swift */,
  2235. A771F07B226D4E1C007999DB /* AddressPOITableViewCell.swift */,
  2236. );
  2237. path = View;
  2238. sourceTree = "<group>";
  2239. };
  2240. A7BB68642269B1DD00AB07A2 /* ViewController */ = {
  2241. isa = PBXGroup;
  2242. children = (
  2243. A7BB68652269B1DD00AB07A2 /* AddressPOIViewController.swift */,
  2244. );
  2245. path = ViewController;
  2246. sourceTree = "<group>";
  2247. };
  2248. A7C3DD182264229900FA262E /* SwiftMoyaServiceSMS */ = {
  2249. isa = PBXGroup;
  2250. children = (
  2251. A7C3DD19226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift */,
  2252. A7C3DD1B226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift */,
  2253. );
  2254. path = SwiftMoyaServiceSMS;
  2255. sourceTree = "<group>";
  2256. };
  2257. A7CC74D2226FF190003C4F38 /* View */ = {
  2258. isa = PBXGroup;
  2259. children = (
  2260. A7CC74D5226FF421003C4F38 /* MineNavigationBarView.swift */,
  2261. A7CC74D3226FF1AA003C4F38 /* MineView.swift */,
  2262. A7CC74D722700359003C4F38 /* MineTableViewHeaderView.swift */,
  2263. A7CC74D922702E41003C4F38 /* MineOrderTableViewCell.swift */,
  2264. A7CC74DB2270352F003C4F38 /* MineOrderCollectionViewCell.swift */,
  2265. A7CC74DF227042A4003C4F38 /* MineServiceTableViewCell.swift */,
  2266. A7CC74E122704429003C4F38 /* MineServiceCollectionViewCell.swift */,
  2267. );
  2268. path = View;
  2269. sourceTree = "<group>";
  2270. };
  2271. A7CC74E722706A06003C4F38 /* Message */ = {
  2272. isa = PBXGroup;
  2273. children = (
  2274. A7CC74EB22706CA9003C4F38 /* View */,
  2275. A7CC74E822706AAC003C4F38 /* ViewController */,
  2276. );
  2277. path = Message;
  2278. sourceTree = "<group>";
  2279. };
  2280. A7CC74E822706AAC003C4F38 /* ViewController */ = {
  2281. isa = PBXGroup;
  2282. children = (
  2283. A7CC74E922706ACD003C4F38 /* MessageViewController.swift */,
  2284. );
  2285. path = ViewController;
  2286. sourceTree = "<group>";
  2287. };
  2288. A7CC74EB22706CA9003C4F38 /* View */ = {
  2289. isa = PBXGroup;
  2290. children = (
  2291. A7CC74EE22706CCA003C4F38 /* MessageView.swift */,
  2292. A7CC750522714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift */,
  2293. A7CC74F022706FE3003C4F38 /* MessageOneCollectionViewCell.swift */,
  2294. A7CC74F2227070D2003C4F38 /* MessageTwoCollectionViewCell.swift */,
  2295. );
  2296. path = View;
  2297. sourceTree = "<group>";
  2298. };
  2299. A7CC7507227151C7003C4F38 /* MessageDetailes */ = {
  2300. isa = PBXGroup;
  2301. children = (
  2302. A7CC750B2271578F003C4F38 /* View */,
  2303. A7CC7508227151D0003C4F38 /* ViewController */,
  2304. );
  2305. path = MessageDetailes;
  2306. sourceTree = "<group>";
  2307. };
  2308. A7CC7508227151D0003C4F38 /* ViewController */ = {
  2309. isa = PBXGroup;
  2310. children = (
  2311. A7CC750922715755003C4F38 /* MessageDetailesViewController.swift */,
  2312. );
  2313. path = ViewController;
  2314. sourceTree = "<group>";
  2315. };
  2316. A7CC750B2271578F003C4F38 /* View */ = {
  2317. isa = PBXGroup;
  2318. children = (
  2319. A7CC750C227157DA003C4F38 /* MessageDetailesView.swift */,
  2320. A7CC750E22715AAC003C4F38 /* MessageDetailesTableViewCell.swift */,
  2321. A7CC751022715AE3003C4F38 /* MessageDetailesTimeView.swift */,
  2322. );
  2323. path = View;
  2324. sourceTree = "<group>";
  2325. };
  2326. A7CC751222716194003C4F38 /* Set */ = {
  2327. isa = PBXGroup;
  2328. children = (
  2329. A7CC7513227161B1003C4F38 /* View */,
  2330. A7CC7514227161B8003C4F38 /* ViewController */,
  2331. );
  2332. path = Set;
  2333. sourceTree = "<group>";
  2334. };
  2335. A7CC7513227161B1003C4F38 /* View */ = {
  2336. isa = PBXGroup;
  2337. children = (
  2338. A7CC751722716202003C4F38 /* SetView.swift */,
  2339. A7CC751922716254003C4F38 /* SetTableViewCell.swift */,
  2340. A7CC751B22716426003C4F38 /* SetLogoutTableViewCell.swift */,
  2341. );
  2342. path = View;
  2343. sourceTree = "<group>";
  2344. };
  2345. A7CC7514227161B8003C4F38 /* ViewController */ = {
  2346. isa = PBXGroup;
  2347. children = (
  2348. A7CC7515227161D5003C4F38 /* SetViewController.swift */,
  2349. );
  2350. path = ViewController;
  2351. sourceTree = "<group>";
  2352. };
  2353. A7CC751D22719091003C4F38 /* AccountSecurity */ = {
  2354. isa = PBXGroup;
  2355. children = (
  2356. A7CC7522227190EF003C4F38 /* View */,
  2357. A7CC7521227190E8003C4F38 /* ViewController */,
  2358. );
  2359. path = AccountSecurity;
  2360. sourceTree = "<group>";
  2361. };
  2362. A7CC7521227190E8003C4F38 /* ViewController */ = {
  2363. isa = PBXGroup;
  2364. children = (
  2365. A7CC751E227190C5003C4F38 /* AccountSecurityViewController.swift */,
  2366. );
  2367. path = ViewController;
  2368. sourceTree = "<group>";
  2369. };
  2370. A7CC7522227190EF003C4F38 /* View */ = {
  2371. isa = PBXGroup;
  2372. children = (
  2373. A7CC7523227190FB003C4F38 /* AccountSecurityView.swift */,
  2374. A7CC7525227196A8003C4F38 /* AccountSecurityTableViewCell.swift */,
  2375. A7CC7527227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift */,
  2376. );
  2377. path = View;
  2378. sourceTree = "<group>";
  2379. };
  2380. A7CC75292271A169003C4F38 /* SetPassword */ = {
  2381. isa = PBXGroup;
  2382. children = (
  2383. A7CC752D2271A1E5003C4F38 /* View */,
  2384. A7CC752A2271A184003C4F38 /* ViewController */,
  2385. );
  2386. path = SetPassword;
  2387. sourceTree = "<group>";
  2388. };
  2389. A7CC752A2271A184003C4F38 /* ViewController */ = {
  2390. isa = PBXGroup;
  2391. children = (
  2392. A7CC752B2271A1AE003C4F38 /* SetPasswordViewController.swift */,
  2393. );
  2394. path = ViewController;
  2395. sourceTree = "<group>";
  2396. };
  2397. A7CC752D2271A1E5003C4F38 /* View */ = {
  2398. isa = PBXGroup;
  2399. children = (
  2400. A7CC752E2271A1F2003C4F38 /* SetPasswordView.swift */,
  2401. );
  2402. path = View;
  2403. sourceTree = "<group>";
  2404. };
  2405. A7CC75302271AB6C003C4F38 /* AddressManager */ = {
  2406. isa = PBXGroup;
  2407. children = (
  2408. A7CC75342271ABFB003C4F38 /* View */,
  2409. A7CC75312271AB83003C4F38 /* ViewController */,
  2410. );
  2411. path = AddressManager;
  2412. sourceTree = "<group>";
  2413. };
  2414. A7CC75312271AB83003C4F38 /* ViewController */ = {
  2415. isa = PBXGroup;
  2416. children = (
  2417. A7CC75322271ABB0003C4F38 /* AddressManagerViewController.swift */,
  2418. );
  2419. path = ViewController;
  2420. sourceTree = "<group>";
  2421. };
  2422. A7CC75342271ABFB003C4F38 /* View */ = {
  2423. isa = PBXGroup;
  2424. children = (
  2425. A7CC75352271AC14003C4F38 /* AddressManagerView.swift */,
  2426. A7CC75392271B98B003C4F38 /* AddressManagerAddTableViewCell.swift */,
  2427. A7CC753B2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift */,
  2428. A7CC753D2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift */,
  2429. A7CC75372271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift */,
  2430. );
  2431. path = View;
  2432. sourceTree = "<group>";
  2433. };
  2434. A7CC753F2271DFF3003C4F38 /* SelfMentionContactsList */ = {
  2435. isa = PBXGroup;
  2436. children = (
  2437. A7CC75412271E023003C4F38 /* View */,
  2438. A7CC75402271E01D003C4F38 /* ViewController */,
  2439. );
  2440. path = SelfMentionContactsList;
  2441. sourceTree = "<group>";
  2442. };
  2443. A7CC75402271E01D003C4F38 /* ViewController */ = {
  2444. isa = PBXGroup;
  2445. children = (
  2446. A7CC75422271E038003C4F38 /* SelfMentionContactsListViewController.swift */,
  2447. );
  2448. path = ViewController;
  2449. sourceTree = "<group>";
  2450. };
  2451. A7CC75412271E023003C4F38 /* View */ = {
  2452. isa = PBXGroup;
  2453. children = (
  2454. A7824AFA2271EA2600ABA381 /* SelfMentionContactsListView.swift */,
  2455. A7824AFC2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift */,
  2456. );
  2457. path = View;
  2458. sourceTree = "<group>";
  2459. };
  2460. A7D4608C227616E600A5A54E /* FMDB */ = {
  2461. isa = PBXGroup;
  2462. children = (
  2463. A7D4608D227616F800A5A54E /* SQLiteManager.swift */,
  2464. A7D4608F227617D200A5A54E /* SQLModel.swift */,
  2465. );
  2466. path = FMDB;
  2467. sourceTree = "<group>";
  2468. };
  2469. BD15CCCF22895DBD00EDCE93 /* ProductCartHotSaleCollectionCell */ = {
  2470. isa = PBXGroup;
  2471. children = (
  2472. BD15CCD022895E1800EDCE93 /* ProductCartHotSaleCollectionCell.swift */,
  2473. );
  2474. path = ProductCartHotSaleCollectionCell;
  2475. sourceTree = "<group>";
  2476. };
  2477. BD3474F722859788000908C5 /* ShoppingCartPayOrder */ = {
  2478. isa = PBXGroup;
  2479. children = (
  2480. BD3474F9228597B6000908C5 /* View */,
  2481. BD3474F8228597AC000908C5 /* ViewController */,
  2482. );
  2483. path = ShoppingCartPayOrder;
  2484. sourceTree = "<group>";
  2485. };
  2486. BD3474F8228597AC000908C5 /* ViewController */ = {
  2487. isa = PBXGroup;
  2488. children = (
  2489. BDD4FB1122840597006FE833 /* ShoppingCartPayOrderController.swift */,
  2490. );
  2491. path = ViewController;
  2492. sourceTree = "<group>";
  2493. };
  2494. BD3474F9228597B6000908C5 /* View */ = {
  2495. isa = PBXGroup;
  2496. children = (
  2497. BD7AB83B228437940030646A /* AdressCell */,
  2498. BDD4FB1322840954006FE833 /* ShoppingCartOrderPayView.swift */,
  2499. BDD4FB1622840DD3006FE833 /* OrderPayAcountView.swift */,
  2500. BD7AB837228420310030646A /* ShoppingCartPayOrderHeader.swift */,
  2501. BD7AB8392284288D0030646A /* ShoppingCartPayOrderFooter.swift */,
  2502. BD7AB83522841A8B0030646A /* ShoppingCartPayOrderItemCell.swift */,
  2503. );
  2504. path = View;
  2505. sourceTree = "<group>";
  2506. };
  2507. BD3474FA228597E8000908C5 /* ShoppingCartFinishPay */ = {
  2508. isa = PBXGroup;
  2509. children = (
  2510. BD3474FB2285980D000908C5 /* View */,
  2511. BD3474FC22859815000908C5 /* ViewController */,
  2512. );
  2513. path = ShoppingCartFinishPay;
  2514. sourceTree = "<group>";
  2515. };
  2516. BD3474FB2285980D000908C5 /* View */ = {
  2517. isa = PBXGroup;
  2518. children = (
  2519. BD20F1CE2283CE2300677D8E /* ShoppingCartFinishPayView.swift */,
  2520. BD20F1D22283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift */,
  2521. BD20F1D42283D15500677D8E /* ShoppingCartPayFailureCell.swift */,
  2522. );
  2523. path = View;
  2524. sourceTree = "<group>";
  2525. };
  2526. BD3474FC22859815000908C5 /* ViewController */ = {
  2527. isa = PBXGroup;
  2528. children = (
  2529. BD20F1CC2283C51300677D8E /* ShoppingCartFinishPayController.swift */,
  2530. );
  2531. path = ViewController;
  2532. sourceTree = "<group>";
  2533. };
  2534. BD7AB83B228437940030646A /* AdressCell */ = {
  2535. isa = PBXGroup;
  2536. children = (
  2537. BD7AB83C228438020030646A /* OrderPayExpressInfoShowCell.swift */,
  2538. BD7AB83E228438290030646A /* OrderPayExpressAddInfoCell.swift */,
  2539. BD7AB8442284398A0030646A /* OrderPaySelfPickAddInfoCell.swift */,
  2540. BD7AB840228438C80030646A /* OrderPaySelfPickAddressCell.swift */,
  2541. BD7AB8422284390B0030646A /* OrderPaySelfPickInfoCell.swift */,
  2542. );
  2543. path = AdressCell;
  2544. sourceTree = "<group>";
  2545. };
  2546. BDEF778F228571C200ED0AC0 /* PayManagerView */ = {
  2547. isa = PBXGroup;
  2548. children = (
  2549. BDEF7790228571DC00ED0AC0 /* CommonPayView.swift */,
  2550. BD3474F422857B85000908C5 /* CommonPayHeader.swift */,
  2551. BDEF7792228575A800ED0AC0 /* CommonPayCell.swift */,
  2552. );
  2553. path = PayManagerView;
  2554. sourceTree = "<group>";
  2555. };
  2556. BDF47D782282645900941AB9 /* View */ = {
  2557. isa = PBXGroup;
  2558. children = (
  2559. BDF47D882282D94D00941AB9 /* ShoppingCartList */,
  2560. BDF47D832282BF4300941AB9 /* ShoppingCartHotSale */,
  2561. BDF47D79228271F600941AB9 /* ShoppingCartView.swift */,
  2562. BDF47D7F228288F900941AB9 /* ShoppingCartAccountView.swift */,
  2563. );
  2564. path = View;
  2565. sourceTree = "<group>";
  2566. };
  2567. BDF47D832282BF4300941AB9 /* ShoppingCartHotSale */ = {
  2568. isa = PBXGroup;
  2569. children = (
  2570. BDF47D812282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift */,
  2571. );
  2572. path = ShoppingCartHotSale;
  2573. sourceTree = "<group>";
  2574. };
  2575. BDF47D882282D94D00941AB9 /* ShoppingCartList */ = {
  2576. isa = PBXGroup;
  2577. children = (
  2578. BDF47D862282C92200941AB9 /* ShoppingCartListTableViewHeader.swift */,
  2579. BDF47D842282C59F00941AB9 /* ShoppingCartListTableViewCell.swift */,
  2580. BD20F1CA2283C12000677D8E /* ShoppingCartListNoneItemCell.swift */,
  2581. );
  2582. path = ShoppingCartList;
  2583. sourceTree = "<group>";
  2584. };
  2585. FA8AAFBADE8BD144A5C36FDB /* Frameworks */ = {
  2586. isa = PBXGroup;
  2587. children = (
  2588. A76390EA2248E27A0067EEE0 /* UserNotifications.framework */,
  2589. A72A73592233577000B21995 /* libc++.1.tbd */,
  2590. A72A730322321EFA00B21995 /* libc++.tbd */,
  2591. A72A730122321EEE00B21995 /* libz.tbd */,
  2592. A72A72FF22321EE900B21995 /* SystemConfiguration.framework */,
  2593. A72A72FD22321EE200B21995 /* QuartzCore.framework */,
  2594. A72A72FB22321ECD00B21995 /* CoreTelephony.framework */,
  2595. A72A72F922321EBF00B21995 /* CoreText.framework */,
  2596. A72A72F722321EB600B21995 /* CoreGraphics.framework */,
  2597. A72A72F522321EA000B21995 /* UIKit.framework */,
  2598. A72A72F322321E9A00B21995 /* Foundation.framework */,
  2599. A72A72F122321E9300B21995 /* CFNetwork.framework */,
  2600. A72A72EF22321E8800B21995 /* CoreMotion.framework */,
  2601. D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */,
  2602. A7E03A30F40582782EC5DA89 /* Pods_RainbowPlanetTests.framework */,
  2603. 88DF1EFD2E202DA7C627E8A7 /* Pods_RainbowPlanetUITests.framework */,
  2604. );
  2605. name = Frameworks;
  2606. sourceTree = "<group>";
  2607. };
  2608. /* End PBXGroup section */
  2609. /* Begin PBXNativeTarget section */
  2610. A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */ = {
  2611. isa = PBXNativeTarget;
  2612. buildConfigurationList = A77F2C852231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanet" */;
  2613. buildPhases = (
  2614. D3A9893FB9EA18608E79E053 /* [CP] Check Pods Manifest.lock */,
  2615. A77F2C592231FB49001BD3F6 /* Sources */,
  2616. A77F2C5A2231FB49001BD3F6 /* Frameworks */,
  2617. A77F2C5B2231FB49001BD3F6 /* Resources */,
  2618. 696EB1DDE9DE019617B4DAD7 /* [CP] Embed Pods Frameworks */,
  2619. 59501F6F4334279DFBD164A0 /* [CP] Copy Pods Resources */,
  2620. );
  2621. buildRules = (
  2622. );
  2623. dependencies = (
  2624. );
  2625. name = RainbowPlanet;
  2626. productName = RainbowPlanet;
  2627. productReference = A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */;
  2628. productType = "com.apple.product-type.application";
  2629. };
  2630. A77F2C702231FB4A001BD3F6 /* RainbowPlanetTests */ = {
  2631. isa = PBXNativeTarget;
  2632. buildConfigurationList = A77F2C882231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetTests" */;
  2633. buildPhases = (
  2634. A77F2C6D2231FB4A001BD3F6 /* Sources */,
  2635. A77F2C6E2231FB4A001BD3F6 /* Frameworks */,
  2636. A77F2C6F2231FB4A001BD3F6 /* Resources */,
  2637. );
  2638. buildRules = (
  2639. );
  2640. dependencies = (
  2641. A77F2C732231FB4A001BD3F6 /* PBXTargetDependency */,
  2642. );
  2643. name = RainbowPlanetTests;
  2644. productName = RainbowPlanetTests;
  2645. productReference = A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */;
  2646. productType = "com.apple.product-type.bundle.unit-test";
  2647. };
  2648. A77F2C7B2231FB4A001BD3F6 /* RainbowPlanetUITests */ = {
  2649. isa = PBXNativeTarget;
  2650. buildConfigurationList = A77F2C8B2231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetUITests" */;
  2651. buildPhases = (
  2652. A77F2C782231FB4A001BD3F6 /* Sources */,
  2653. A77F2C792231FB4A001BD3F6 /* Frameworks */,
  2654. A77F2C7A2231FB4A001BD3F6 /* Resources */,
  2655. );
  2656. buildRules = (
  2657. );
  2658. dependencies = (
  2659. A77F2C7E2231FB4A001BD3F6 /* PBXTargetDependency */,
  2660. );
  2661. name = RainbowPlanetUITests;
  2662. productName = RainbowPlanetUITests;
  2663. productReference = A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */;
  2664. productType = "com.apple.product-type.bundle.ui-testing";
  2665. };
  2666. /* End PBXNativeTarget section */
  2667. /* Begin PBXProject section */
  2668. A77F2C552231FB49001BD3F6 /* Project object */ = {
  2669. isa = PBXProject;
  2670. attributes = {
  2671. LastSwiftUpdateCheck = 1010;
  2672. LastUpgradeCheck = 1010;
  2673. ORGANIZATIONNAME = RainbowPlanet;
  2674. TargetAttributes = {
  2675. A77F2C5C2231FB49001BD3F6 = {
  2676. CreatedOnToolsVersion = 10.1;
  2677. LastSwiftMigration = 1020;
  2678. SystemCapabilities = {
  2679. com.apple.BackgroundModes = {
  2680. enabled = 1;
  2681. };
  2682. com.apple.Push = {
  2683. enabled = 1;
  2684. };
  2685. };
  2686. };
  2687. A77F2C702231FB4A001BD3F6 = {
  2688. CreatedOnToolsVersion = 10.1;
  2689. LastSwiftMigration = 1020;
  2690. TestTargetID = A77F2C5C2231FB49001BD3F6;
  2691. };
  2692. A77F2C7B2231FB4A001BD3F6 = {
  2693. CreatedOnToolsVersion = 10.1;
  2694. LastSwiftMigration = 1020;
  2695. TestTargetID = A77F2C5C2231FB49001BD3F6;
  2696. };
  2697. };
  2698. };
  2699. buildConfigurationList = A77F2C582231FB49001BD3F6 /* Build configuration list for PBXProject "RainbowPlanet" */;
  2700. compatibilityVersion = "Xcode 9.3";
  2701. developmentRegion = en;
  2702. hasScannedForEncodings = 0;
  2703. knownRegions = (
  2704. en,
  2705. Base,
  2706. );
  2707. mainGroup = A77F2C542231FB49001BD3F6;
  2708. productRefGroup = A77F2C5E2231FB49001BD3F6 /* Products */;
  2709. projectDirPath = "";
  2710. projectRoot = "";
  2711. targets = (
  2712. A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */,
  2713. A77F2C702231FB4A001BD3F6 /* RainbowPlanetTests */,
  2714. A77F2C7B2231FB4A001BD3F6 /* RainbowPlanetUITests */,
  2715. );
  2716. };
  2717. /* End PBXProject section */
  2718. /* Begin PBXResourcesBuildPhase section */
  2719. A77F2C5B2231FB49001BD3F6 /* Resources */ = {
  2720. isa = PBXResourcesBuildPhase;
  2721. buildActionMask = 2147483647;
  2722. files = (
  2723. A7CC74DE22703B4A003C4F38 /* MineModule.xcassets in Resources */,
  2724. A70B2C2D2286E29900B2449F /* Product.xcassets in Resources */,
  2725. A71AF0BE226F1792001730FE /* ShoppingMallModule.xcassets in Resources */,
  2726. A7778C9722438F5D00C7C47A /* AlipaySDK.bundle in Resources */,
  2727. A7190167227543DB00104A50 /* baidu_cityid_rel.json in Resources */,
  2728. A77F2C682231FB4A001BD3F6 /* Assets.xcassets in Resources */,
  2729. A72C01232275404A0065E0C3 /* province_city_area.json in Resources */,
  2730. BD20F1D82283D2AA00677D8E /* ShoppingCartModule.xcassets in Resources */,
  2731. A7778C9922438F5D00C7C47A /* README.txt in Resources */,
  2732. A729B5AA2266F6FD004AE098 /* Launch Screen.storyboard in Resources */,
  2733. );
  2734. runOnlyForDeploymentPostprocessing = 0;
  2735. };
  2736. A77F2C6F2231FB4A001BD3F6 /* Resources */ = {
  2737. isa = PBXResourcesBuildPhase;
  2738. buildActionMask = 2147483647;
  2739. files = (
  2740. );
  2741. runOnlyForDeploymentPostprocessing = 0;
  2742. };
  2743. A77F2C7A2231FB4A001BD3F6 /* Resources */ = {
  2744. isa = PBXResourcesBuildPhase;
  2745. buildActionMask = 2147483647;
  2746. files = (
  2747. );
  2748. runOnlyForDeploymentPostprocessing = 0;
  2749. };
  2750. /* End PBXResourcesBuildPhase section */
  2751. /* Begin PBXShellScriptBuildPhase section */
  2752. 59501F6F4334279DFBD164A0 /* [CP] Copy Pods Resources */ = {
  2753. isa = PBXShellScriptBuildPhase;
  2754. buildActionMask = 2147483647;
  2755. files = (
  2756. );
  2757. inputFileListPaths = (
  2758. );
  2759. inputPaths = (
  2760. "${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-resources.sh",
  2761. "${PODS_ROOT}/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Map.framework/mapapi.bundle",
  2762. "${PODS_ROOT}/UMCCommonLog/UMCommonLog/UMCommonLog.bundle",
  2763. "${PODS_ROOT}/UMCShare/UMShare/UMSocialUI/UMSocialSDKResources.bundle",
  2764. );
  2765. name = "[CP] Copy Pods Resources";
  2766. outputFileListPaths = (
  2767. );
  2768. outputPaths = (
  2769. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/mapapi.bundle",
  2770. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/UMCommonLog.bundle",
  2771. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/UMSocialSDKResources.bundle",
  2772. );
  2773. runOnlyForDeploymentPostprocessing = 0;
  2774. shellPath = /bin/sh;
  2775. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-resources.sh\"\n";
  2776. showEnvVarsInLog = 0;
  2777. };
  2778. 696EB1DDE9DE019617B4DAD7 /* [CP] Embed Pods Frameworks */ = {
  2779. isa = PBXShellScriptBuildPhase;
  2780. buildActionMask = 2147483647;
  2781. files = (
  2782. );
  2783. inputFileListPaths = (
  2784. );
  2785. inputPaths = (
  2786. "${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-frameworks.sh",
  2787. "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework",
  2788. "${BUILT_PRODUCTS_DIR}/Cache/Cache.framework",
  2789. "${BUILT_PRODUCTS_DIR}/DeviceKit/DeviceKit.framework",
  2790. "${BUILT_PRODUCTS_DIR}/FMDB/FMDB.framework",
  2791. "${BUILT_PRODUCTS_DIR}/FSPagerView/FSPagerView.framework",
  2792. "${BUILT_PRODUCTS_DIR}/FWPopupView/FWPopupView.framework",
  2793. "${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework",
  2794. "${BUILT_PRODUCTS_DIR}/JXSegmentedView/JXSegmentedView.framework",
  2795. "${BUILT_PRODUCTS_DIR}/KeychainAccess/KeychainAccess.framework",
  2796. "${BUILT_PRODUCTS_DIR}/Kingfisher/Kingfisher.framework",
  2797. "${BUILT_PRODUCTS_DIR}/LYEmptyView/LYEmptyView.framework",
  2798. "${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework",
  2799. "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework",
  2800. "${BUILT_PRODUCTS_DIR}/Moya/Moya.framework",
  2801. "${BUILT_PRODUCTS_DIR}/ObjectMapper/ObjectMapper.framework",
  2802. "${BUILT_PRODUCTS_DIR}/PPBadgeViewSwift/PPBadgeViewSwift.framework",
  2803. "${BUILT_PRODUCTS_DIR}/Realm/Realm.framework",
  2804. "${BUILT_PRODUCTS_DIR}/RealmSwift/RealmSwift.framework",
  2805. "${BUILT_PRODUCTS_DIR}/Result/Result.framework",
  2806. "${BUILT_PRODUCTS_DIR}/RichEditorView/RichEditorView.framework",
  2807. "${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework",
  2808. "${BUILT_PRODUCTS_DIR}/RxSwift/RxSwift.framework",
  2809. "${BUILT_PRODUCTS_DIR}/SnapKit/SnapKit.framework",
  2810. "${BUILT_PRODUCTS_DIR}/SwiftyJSON/SwiftyJSON.framework",
  2811. "${BUILT_PRODUCTS_DIR}/TangramKit/TangramKit.framework",
  2812. );
  2813. name = "[CP] Embed Pods Frameworks";
  2814. outputFileListPaths = (
  2815. );
  2816. outputPaths = (
  2817. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework",
  2818. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Cache.framework",
  2819. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DeviceKit.framework",
  2820. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FMDB.framework",
  2821. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FSPagerView.framework",
  2822. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FWPopupView.framework",
  2823. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardManagerSwift.framework",
  2824. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXSegmentedView.framework",
  2825. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/KeychainAccess.framework",
  2826. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kingfisher.framework",
  2827. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LYEmptyView.framework",
  2828. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MBProgressHUD.framework",
  2829. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework",
  2830. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Moya.framework",
  2831. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ObjectMapper.framework",
  2832. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PPBadgeViewSwift.framework",
  2833. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework",
  2834. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RealmSwift.framework",
  2835. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Result.framework",
  2836. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RichEditorView.framework",
  2837. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxCocoa.framework",
  2838. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxSwift.framework",
  2839. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SnapKit.framework",
  2840. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftyJSON.framework",
  2841. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/TangramKit.framework",
  2842. );
  2843. runOnlyForDeploymentPostprocessing = 0;
  2844. shellPath = /bin/sh;
  2845. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-frameworks.sh\"\n";
  2846. showEnvVarsInLog = 0;
  2847. };
  2848. D3A9893FB9EA18608E79E053 /* [CP] Check Pods Manifest.lock */ = {
  2849. isa = PBXShellScriptBuildPhase;
  2850. buildActionMask = 2147483647;
  2851. files = (
  2852. );
  2853. inputFileListPaths = (
  2854. );
  2855. inputPaths = (
  2856. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2857. "${PODS_ROOT}/Manifest.lock",
  2858. );
  2859. name = "[CP] Check Pods Manifest.lock";
  2860. outputFileListPaths = (
  2861. );
  2862. outputPaths = (
  2863. "$(DERIVED_FILE_DIR)/Pods-RainbowPlanet-checkManifestLockResult.txt",
  2864. );
  2865. runOnlyForDeploymentPostprocessing = 0;
  2866. shellPath = /bin/sh;
  2867. 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";
  2868. showEnvVarsInLog = 0;
  2869. };
  2870. /* End PBXShellScriptBuildPhase section */
  2871. /* Begin PBXSourcesBuildPhase section */
  2872. A77F2C592231FB49001BD3F6 /* Sources */ = {
  2873. isa = PBXSourcesBuildPhase;
  2874. buildActionMask = 2147483647;
  2875. files = (
  2876. A70B2C3322880BB700B2449F /* ProductDetailProductSkuTableViewCell.swift in Sources */,
  2877. A72A72BA22321DE000B21995 /* Extension+String.swift in Sources */,
  2878. A77F2CA02231FE45001BD3F6 /* BaseWebViewController.swift in Sources */,
  2879. BD20F1D52283D15500677D8E /* ShoppingCartPayFailureCell.swift in Sources */,
  2880. A72A72C022321DE000B21995 /* Extension+UIView.swift in Sources */,
  2881. BD7AB83A2284288D0030646A /* ShoppingCartPayOrderFooter.swift in Sources */,
  2882. A72A72C522321DE000B21995 /* WKWebViewConfig.swift in Sources */,
  2883. A72A72BB22321DE000B21995 /* Extension+UILabel.swift in Sources */,
  2884. A70B2C372288177300B2449F /* ProductDetailProductSkuIconCollectionViewCell.swift in Sources */,
  2885. A77F2C9E2231FDDC001BD3F6 /* BaseViewController.swift in Sources */,
  2886. A7284A75225465DD000BAEC4 /* SwiftMoyaNetWorkServicePay.swift in Sources */,
  2887. A77F2CC722320627001BD3F6 /* WRNavigationBar.swift in Sources */,
  2888. A7D46092227619CD00A5A54E /* BaiduToCityFactory.swift in Sources */,
  2889. A71AA51C227219EF008FF1A5 /* EditExpressAddressView.swift in Sources */,
  2890. A7CC751122715AE3003C4F38 /* MessageDetailesTimeView.swift in Sources */,
  2891. A7BB684F2268DCEC00AB07A2 /* SelfRecommendationViewController.swift in Sources */,
  2892. A7B4E7352281907A0012914A /* CMSModel.swift in Sources */,
  2893. A72A72BE22321DE000B21995 /* Extension+RxTimer.swift in Sources */,
  2894. A7CC74EA22706ACD003C4F38 /* MessageViewController.swift in Sources */,
  2895. BDF47D7E22827C3F00941AB9 /* ProductSlidingTopBottomCollectionViewCell.swift in Sources */,
  2896. BD7AB83D228438020030646A /* OrderPayExpressInfoShowCell.swift in Sources */,
  2897. A72A72C422321DE000B21995 /* Extension+CAGradientLayer.swift in Sources */,
  2898. A7778CA72243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift in Sources */,
  2899. A7B4E738228191CC0012914A /* CommondModel.swift in Sources */,
  2900. BD7AB841228438C80030646A /* OrderPaySelfPickAddressCell.swift in Sources */,
  2901. A7CC74D4226FF1AA003C4F38 /* MineView.swift in Sources */,
  2902. A71AA5152272160A008FF1A5 /* ExpressAddressListTableViewCell.swift in Sources */,
  2903. A72A72B722321DE000B21995 /* Extension+NSMutableAttributedString.swift in Sources */,
  2904. A7BB6857226965C100AB07A2 /* SelfRecommendationHeaderCollectionReusableView.swift in Sources */,
  2905. BDE3045F228554CA001D050F /* ProductCartAmountModel.swift in Sources */,
  2906. A7BB68672269B1DD00AB07A2 /* AddressPOIViewController.swift in Sources */,
  2907. A7284A7322546460000BAEC4 /* SwiftMoyaServicePayApi.swift in Sources */,
  2908. BDE3045D22851E4F001D050F /* ProductCartListModel.swift in Sources */,
  2909. A7A98DFF227E8501005306E9 /* SwiftMoyaNetWorkServiceProduct.swift in Sources */,
  2910. A7CC74DC2270352F003C4F38 /* MineOrderCollectionViewCell.swift in Sources */,
  2911. BDD4FB1222840597006FE833 /* ShoppingCartPayOrderController.swift in Sources */,
  2912. A7284404224DBFBD00F82F30 /* UserModel.swift in Sources */,
  2913. A7CC74D822700359003C4F38 /* MineTableViewHeaderView.swift in Sources */,
  2914. A71D2A602265673A00A55D16 /* RegisterLoginView.swift in Sources */,
  2915. A73D7C682268A032002A4CE3 /* SwiftyStarRatingView.swift in Sources */,
  2916. A71AA5102272156A008FF1A5 /* ExpressAddressListViewController.swift in Sources */,
  2917. A7A98E14227ED0E2005306E9 /* CategoryListModel.swift in Sources */,
  2918. A70B2C532288584500B2449F /* ShareView.swift in Sources */,
  2919. A71AF0AE226EF0A3001730FE /* SearchHeaderCollectionReusableView.swift in Sources */,
  2920. A7636AC52268139C00374F9E /* LocationViewController.swift in Sources */,
  2921. A7D46090227617D200A5A54E /* SQLModel.swift in Sources */,
  2922. A72C01222275404A0065E0C3 /* ProvinceCityAreaModel.swift in Sources */,
  2923. A7C3DD1C226422D200FA262E /* SwiftMoyaNetWorkServiceSMS.swift in Sources */,
  2924. A72A7386223396CB00B21995 /* SwiftMoyaNetWorkManager.swift in Sources */,
  2925. A70B2C252286C03800B2449F /* NXLPageControl.swift in Sources */,
  2926. A7A98E12227ECA11005306E9 /* ProductSearchModel.swift in Sources */,
  2927. A71AF0B0226EF185001730FE /* SearchCollectionViewCell.swift in Sources */,
  2928. A7A98E1D227EF1CB005306E9 /* SpecialBannerView.swift in Sources */,
  2929. BDF47D852282C59F00941AB9 /* ShoppingCartListTableViewCell.swift in Sources */,
  2930. A77F2CCA223209F2001BD3F6 /* BaseTabbarViewController.swift in Sources */,
  2931. A70B2C1D2286B52400B2449F /* ProductDetailViewController.swift in Sources */,
  2932. A7CC75332271ABB0003C4F38 /* AddressManagerViewController.swift in Sources */,
  2933. A7CC750D227157DA003C4F38 /* MessageDetailesView.swift in Sources */,
  2934. BD7AB83622841A8B0030646A /* ShoppingCartPayOrderItemCell.swift in Sources */,
  2935. A71AA519227219D7008FF1A5 /* EditExpressAddressViewController.swift in Sources */,
  2936. BD20F1CD2283C51300677D8E /* ShoppingCartFinishPayController.swift in Sources */,
  2937. A729B5B022671310004AE098 /* MobileLoginView.swift in Sources */,
  2938. A71AA50C2272126A008FF1A5 /* EditAddressFooterView.swift in Sources */,
  2939. A70B2C35228815F700B2449F /* ProductDetailProductSkuLabelCollectionViewCell.swift in Sources */,
  2940. A70B2C60228870CE00B2449F /* ShopSectionHeaderView.swift in Sources */,
  2941. A7CC7528227196C4003C4F38 /* AccountSecuritySetTableViewCell.swift in Sources */,
  2942. A70B2C292286D77200B2449F /* ProductDetailProductInfoTableViewCell.swift in Sources */,
  2943. A72A726822321DBD00B21995 /* UMManager.swift in Sources */,
  2944. A70B2C042283D06B00B2449F /* ProductFloorFullLeftHeaderCollectionReusableView.swift in Sources */,
  2945. A7B4E721228151F40012914A /* ProductFloorTitleView.swift in Sources */,
  2946. A729B5AD2266FF45004AE098 /* BindPhoneNumberView.swift in Sources */,
  2947. A7CC74E62270628B003C4F38 /* DeliveryMethodTypeModel.swift in Sources */,
  2948. A71AA51F22729F35008FF1A5 /* AuthorizationSwift.swift in Sources */,
  2949. A7A98E3622802AD7005306E9 /* ShoppingMallBannerFSPagerViewCell.swift in Sources */,
  2950. A7824AFD2271EAC900ABA381 /* SelfMentionContactsListTableViewCell.swift in Sources */,
  2951. BD7AB83F228438290030646A /* OrderPayExpressAddInfoCell.swift in Sources */,
  2952. A7CC74DA22702E41003C4F38 /* MineOrderTableViewCell.swift in Sources */,
  2953. A77F2CB92232010F001BD3F6 /* ShoppingCartViewController.swift in Sources */,
  2954. A72A72B822321DE000B21995 /* Extension+UserDefaults.swift in Sources */,
  2955. A719016B22757A5A00104A50 /* ProvinceCityAreaTableViewCell.swift in Sources */,
  2956. A729B5B72267270B004AE098 /* PasswordLoginView.swift in Sources */,
  2957. A7778CB82244E97A00C7C47A /* BindPhoneNumberViewController.swift in Sources */,
  2958. A754150F224CACF9002480B5 /* SwiftSign.swift in Sources */,
  2959. A72A72D322321E2700B21995 /* CacheMacro.swift in Sources */,
  2960. A71AF0BA226F00F8001730FE /* SearchResultView.swift in Sources */,
  2961. A77F2CB52232010F001BD3F6 /* ShoppingMallViewController.swift in Sources */,
  2962. A71AA513227215B5008FF1A5 /* ExpressAddressListView.swift in Sources */,
  2963. A70B2C202286B54500B2449F /* ProductDetailView.swift in Sources */,
  2964. A7B4E723228154750012914A /* ProductFloorBannerView.swift in Sources */,
  2965. A7DC467F22783A47001F3EFC /* EditExpressAddressTableViewCell.swift in Sources */,
  2966. A7A98E4522804C63005306E9 /* ShoppingMallSepcialCollectionViewCell.swift in Sources */,
  2967. A7824B082271F53A00ABA381 /* EditSetDefaultTableViewCell.swift in Sources */,
  2968. A77F2CC3223203BA001BD3F6 /* AppDelegate+Window.swift in Sources */,
  2969. A7824B062271F25400ABA381 /* EditAddressTableViewCell.swift in Sources */,
  2970. A70B2C4C228845E800B2449F /* ProductDetailParameterTableViewCell.swift in Sources */,
  2971. A70EBBC022561179000AD74F /* Extension+UITableView.swift in Sources */,
  2972. A72A72B022321DE000B21995 /* CGView.swift in Sources */,
  2973. A7A98E0B227EBD04005306E9 /* CategorySearchView.swift in Sources */,
  2974. A72A73142232475E00B21995 /* AlipayManager.swift in Sources */,
  2975. A7824B042271F10300ABA381 /* EditSelfMentionContactsView.swift in Sources */,
  2976. A7A98E332280272A005306E9 /* ShoppingMallBannerTableViewCell.swift in Sources */,
  2977. A7B4E754228278320012914A /* ShoppingMallFloorTableViewCell.swift in Sources */,
  2978. BD3474F522857B85000908C5 /* CommonPayHeader.swift in Sources */,
  2979. A71AF0B6226EF99A001730FE /* SearchResultViewController.swift in Sources */,
  2980. A757C9302274839900226355 /* SelfMentionAddressListModel.swift in Sources */,
  2981. A72A72D522321E2700B21995 /* ColorMacro.swift in Sources */,
  2982. A72A7333223256E100B21995 /* PayManager.swift in Sources */,
  2983. A70B2C6722887B2B00B2449F /* ProductDetailEvaluationListTableViewCell.swift in Sources */,
  2984. A775CC00223774A300EBDCF8 /* ShoppingMallView.swift in Sources */,
  2985. A7CC7526227196A8003C4F38 /* AccountSecurityTableViewCell.swift in Sources */,
  2986. A7CC74F122706FE3003C4F38 /* MessageOneCollectionViewCell.swift in Sources */,
  2987. A72A72D622321E2700B21995 /* ThirdPartyMacro.swift in Sources */,
  2988. BD15CCD122895E1800EDCE93 /* ProductCartHotSaleCollectionCell.swift in Sources */,
  2989. BDF47D80228288F900941AB9 /* ShoppingCartAccountView.swift in Sources */,
  2990. A7284401224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift in Sources */,
  2991. A7B4E728228160BA0012914A /* ProductRightSideleftPictureCollectionViewCell.swift in Sources */,
  2992. BDEF7793228575A800ED0AC0 /* CommonPayCell.swift in Sources */,
  2993. A72843FC224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift in Sources */,
  2994. A7CC750622714306003C4F38 /* MessageNoticeHeaderCollectionReusableView.swift in Sources */,
  2995. A7C3DD1A226422BF00FA262E /* SwiftMoyaServiceSMSApi.swift in Sources */,
  2996. A7284A7722547333000BAEC4 /* AlipayResultModel.swift in Sources */,
  2997. A72A72B422321DE000B21995 /* Extension+UIImage.swift in Sources */,
  2998. A7BB68552268DE8600AB07A2 /* SelfRecommendationView.swift in Sources */,
  2999. A72A72AF22321DE000B21995 /* AppInfo.swift in Sources */,
  3000. A7D460942276854500A5A54E /* BaiduToCity2Model.swift in Sources */,
  3001. A72A72D422321E2700B21995 /* EnumMacro.swift in Sources */,
  3002. A7A98E41228046C5005306E9 /* ShoppingMallSepcialTableViewCell.swift in Sources */,
  3003. A70B2C5E22886F4D00B2449F /* ShopViewTableViewCell.swift in Sources */,
  3004. A7CC753A2271B98B003C4F38 /* AddressManagerAddTableViewCell.swift in Sources */,
  3005. A71AF0AC226EDE37001730FE /* SearchNavigationbarView.swift in Sources */,
  3006. A70B2C6D2288815E00B2449F /* PickViewOneComponentsView.swift in Sources */,
  3007. BDD4FB1422840954006FE833 /* ShoppingCartOrderPayView.swift in Sources */,
  3008. A70B2C222286BF5900B2449F /* ProductDetailTableViewHeaderView.swift in Sources */,
  3009. A7CC75432271E038003C4F38 /* SelfMentionContactsListViewController.swift in Sources */,
  3010. BDF47D872282C92200941AB9 /* ShoppingCartListTableViewHeader.swift in Sources */,
  3011. A70B2C46228840B100B2449F /* ProductDetailHotSellTableViewCell.swift in Sources */,
  3012. A7778CDF22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift in Sources */,
  3013. A7A98E2D22801642005306E9 /* SwiftMoyaServiceCMSApi.swift in Sources */,
  3014. A70B2C402288312900B2449F /* ProductDetailSectionHeader.swift in Sources */,
  3015. A7A98E3122801B10005306E9 /* ShoppingMallListView.swift in Sources */,
  3016. A7CC751A22716254003C4F38 /* SetTableViewCell.swift in Sources */,
  3017. BD20F1D32283D0ED00677D8E /* ShoppingCartPaySuccessCell.swift in Sources */,
  3018. A71AA52822732173008FF1A5 /* SwiftMoyaNetWorkServiceConfig.swift in Sources */,
  3019. A775CC0322377C6500EBDCF8 /* EmptyView.swift in Sources */,
  3020. A70B2C4322883B4E00B2449F /* ProductDetailShopTableViewCell.swift in Sources */,
  3021. A70B2C102286A3BC00B2449F /* ProductDetailModel.swift in Sources */,
  3022. A72A72A922321DE000B21995 /* NumberKeyboard.swift in Sources */,
  3023. A79057082276FEB00037F823 /* SelfMentionContactsModel.swift in Sources */,
  3024. A70B2C272286C5D600B2449F /* ProductDetailFSPagerViewCell.swift in Sources */,
  3025. A72A72AA22321DE000B21995 /* Log.swift in Sources */,
  3026. A72A72B622321DE000B21995 /* Extension+NSRange.swift in Sources */,
  3027. A75414FD224B5F28002480B5 /* MobileLoginViewController.swift in Sources */,
  3028. A771F07C226D4E1C007999DB /* AddressPOITableViewCell.swift in Sources */,
  3029. A72A72AE22321DE000B21995 /* CountdownButton.swift in Sources */,
  3030. A7A98E28227FD6C6005306E9 /* ShoppingMallListViewController.swift in Sources */,
  3031. A7B4E71F228131720012914A /* ProductSlidingLeftRightCollectionViewCell.swift in Sources */,
  3032. A77F2CB72232010F001BD3F6 /* MineViewController.swift in Sources */,
  3033. A7778CA92244904500C7C47A /* Extension+Gifu.GIFImageView.swift in Sources */,
  3034. A7A98E02227E8900005306E9 /* ProductSearchListModel.swift in Sources */,
  3035. A7A98E17227EED76005306E9 /* SpecialViewController.swift in Sources */,
  3036. A7778CB32244D73400C7C47A /* RegisterLoginViewController.swift in Sources */,
  3037. BD7AB8432284390B0030646A /* OrderPaySelfPickInfoCell.swift in Sources */,
  3038. A7CC752F2271A1F2003C4F38 /* SetPasswordView.swift in Sources */,
  3039. A7A98E09227EB8DD005306E9 /* CategoryView.swift in Sources */,
  3040. A7CC75362271AC14003C4F38 /* AddressManagerView.swift in Sources */,
  3041. A7B4E75A228289BB0012914A /* ProductFloorCenterHeaderCollectionReusableView.swift in Sources */,
  3042. A71901752275F71F00104A50 /* BaiduToCityModel.swift in Sources */,
  3043. A7BB685922696B9200AB07A2 /* SelfRecommendationCollectionViewCell.swift in Sources */,
  3044. A7636AC822682BAF00374F9E /* LocationView.swift in Sources */,
  3045. A738D205225AF90D00EEE860 /* WeChatpayOrderModel.swift in Sources */,
  3046. A7CC7524227190FB003C4F38 /* AccountSecurityView.swift in Sources */,
  3047. A72A72BD22321DE000B21995 /* Extension+UIColor.swift in Sources */,
  3048. A7A98E05227EB891005306E9 /* CategoryViewController.swift in Sources */,
  3049. A77F2CC822320627001BD3F6 /* WRCustomNavigationBar.swift in Sources */,
  3050. A7CC74EF22706CCA003C4F38 /* MessageView.swift in Sources */,
  3051. A70B2C072284305400B2449F /* ProductModel.swift in Sources */,
  3052. A7CC74E0227042A4003C4F38 /* MineServiceTableViewCell.swift in Sources */,
  3053. A72A72BC22321DE000B21995 /* Extension+UIAlertController.swift in Sources */,
  3054. A7BB68662269B1DD00AB07A2 /* AddressPOIView.swift in Sources */,
  3055. A72A72C322321DE000B21995 /* Extension+Date.swift in Sources */,
  3056. A70B2C5522885AF500B2449F /* ShareCollectionViewCell.swift in Sources */,
  3057. A7A98E3A2280312C005306E9 /* ShoppingMallCategoryTableViewCell.swift in Sources */,
  3058. A7778CAB2244B12500C7C47A /* CountDownManager.swift in Sources */,
  3059. A775CBFE2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift in Sources */,
  3060. A71AA5212272E527008FF1A5 /* Extension+UINavigationController.swift in Sources */,
  3061. A7CC751822716202003C4F38 /* SetView.swift in Sources */,
  3062. A7B4E73A228192D20012914A /* CMSTemplateModel.swift in Sources */,
  3063. A72A72C622321DE000B21995 /* WebView.swift in Sources */,
  3064. A72A72D122321E2700B21995 /* HTMLURLMacro.swift in Sources */,
  3065. A72A73162232481600B21995 /* WeChatpayManager.swift in Sources */,
  3066. A7CC750F22715AAC003C4F38 /* MessageDetailesTableViewCell.swift in Sources */,
  3067. A7B4E72D228176060012914A /* ProductMallBarChartCollectionViewCell.swift in Sources */,
  3068. A70B2C4E22884AE800B2449F /* ProductDetailDescriptionTableViewCell.swift in Sources */,
  3069. A7CC7516227161D5003C4F38 /* SetViewController.swift in Sources */,
  3070. A7778CBA2244F14B00C7C47A /* Extension+UIViewController.swift in Sources */,
  3071. A7CC752C2271A1AE003C4F38 /* SetPasswordViewController.swift in Sources */,
  3072. A7CC74E222704429003C4F38 /* MineServiceCollectionViewCell.swift in Sources */,
  3073. A738D202225AD6AD00EEE860 /* Extension+UICollectionView.swift in Sources */,
  3074. A7CC74D6226FF421003C4F38 /* MineNavigationBarView.swift in Sources */,
  3075. A71AF0BC226F099B001730FE /* ProductHBigTableViewCell.swift in Sources */,
  3076. A7A98E3C228036D7005306E9 /* ShoppingMallCategoryCollectionViewCell.swift in Sources */,
  3077. A71AF0AA226EDDF5001730FE /* SearchView.swift in Sources */,
  3078. A7A98E0E227EC0C6005306E9 /* CategoryTableViewCell.swift in Sources */,
  3079. A7B4E72F2281773F0012914A /* ProductFloorCenterTitleView.swift in Sources */,
  3080. A7284A542252FB5C000BAEC4 /* PaginationModel.swift in Sources */,
  3081. A72A72D022321E2700B21995 /* FontMacro.swift in Sources */,
  3082. A71AA52622732068008FF1A5 /* SwiftMoyaServiceConfigApi.swift in Sources */,
  3083. A77F2C982231FD25001BD3F6 /* BaseNavigationViewController.swift in Sources */,
  3084. A7A98E1B227EEE49005306E9 /* SpecialView.swift in Sources */,
  3085. BDF47D7A228271F600941AB9 /* ShoppingCartView.swift in Sources */,
  3086. A7824AFB2271EA2600ABA381 /* SelfMentionContactsListView.swift in Sources */,
  3087. A72A72AB22321DE000B21995 /* SwiftProgressHUD.swift in Sources */,
  3088. A7CC751C22716426003C4F38 /* SetLogoutTableViewCell.swift in Sources */,
  3089. A7CC74F3227070D2003C4F38 /* MessageTwoCollectionViewCell.swift in Sources */,
  3090. A7778CD522460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift in Sources */,
  3091. A70B2C5C22886B0000B2449F /* ShopView.swift in Sources */,
  3092. A7CC750A22715755003C4F38 /* MessageDetailesViewController.swift in Sources */,
  3093. A71AF0B8226EF9EC001730FE /* SearchResultNavigationbarView.swift in Sources */,
  3094. A70B2C5A22886ADF00B2449F /* ShopViewController.swift in Sources */,
  3095. A70B2C3E228825B100B2449F /* ProductDetailEvaluationTableViewCell.swift in Sources */,
  3096. A79057022276C9770037F823 /* SetPasswordModel.swift in Sources */,
  3097. A729B5B42267254B004AE098 /* PasswordLoginViewController.swift in Sources */,
  3098. A7B4E7582282897B0012914A /* ProductFloorLeftHeaderCollectionReusableView.swift in Sources */,
  3099. A7D4608E227616F800A5A54E /* SQLiteManager.swift in Sources */,
  3100. A70B2C6B2288815300B2449F /* PickHeaderView.swift in Sources */,
  3101. A77F2C612231FB49001BD3F6 /* AppDelegate.swift in Sources */,
  3102. A729B5A82266F2E0004AE098 /* AlertSheetView.swift in Sources */,
  3103. A7CC75382271ADD6003C4F38 /* AddressManagerSelfMentionExpressHeaderView.swift in Sources */,
  3104. A738D66F225D9BD900EEE860 /* UMLoginModel.swift in Sources */,
  3105. A72A726722321DBD00B21995 /* LocationModel.swift in Sources */,
  3106. A7A98E10227EC531005306E9 /* ProductHSmallTableViewCell.swift in Sources */,
  3107. A7A98DFD227E84F4005306E9 /* SwiftMoyaServiceProductApi.swift in Sources */,
  3108. BD7AB8452284398A0030646A /* OrderPaySelfPickAddInfoCell.swift in Sources */,
  3109. A72A72D222321E2700B21995 /* Common.swift in Sources */,
  3110. A70B2C64228875DE00B2449F /* ShopViewShopInfoTableViewCell.swift in Sources */,
  3111. BDEF7791228571DC00ED0AC0 /* CommonPayView.swift in Sources */,
  3112. A71AF0A6226EDDC8001730FE /* SearchViewController.swift in Sources */,
  3113. BD20F1CF2283CE2300677D8E /* ShoppingCartFinishPayView.swift in Sources */,
  3114. A7A98E4322804851005306E9 /* ShoppingMallSepcialFlowLayout.swift in Sources */,
  3115. A79057062276EA3D0037F823 /* OpenCityListModel.swift in Sources */,
  3116. BD7AB838228420310030646A /* ShoppingCartPayOrderHeader.swift in Sources */,
  3117. A7824B002271F0DD00ABA381 /* EditSelfMentionContactsViewController.swift in Sources */,
  3118. A7CC751F227190C5003C4F38 /* AccountSecurityViewController.swift in Sources */,
  3119. A7284440224DFACD00F82F30 /* InfoModel.swift in Sources */,
  3120. A72A72B522321DE000B21995 /* Extension+UITextView.swift in Sources */,
  3121. BDF47D822282B3D100941AB9 /* ShoppingCartHotSaleTableViewCell.swift in Sources */,
  3122. BD20F1CB2283C12000677D8E /* ShoppingCartListNoneItemCell.swift in Sources */,
  3123. A7B4E756228281620012914A /* ShoppingMallSlidingLeftRightBgCollectionViewCell.swift in Sources */,
  3124. A757C92E22744ACE00226355 /* AddressManagerListModel.swift in Sources */,
  3125. A7541502224C5ECB002480B5 /* BaiduMapManager.swift in Sources */,
  3126. A757C9342274882E00226355 /* UIScrollView+MJRefreshEX.m in Sources */,
  3127. A77F2C9C2231FDCF001BD3F6 /* BaseView.swift in Sources */,
  3128. A7A98E2F228017E2005306E9 /* SwiftMoyaNetWorkServiceCMS.swift in Sources */,
  3129. A7284A522252EE9A000BAEC4 /* RootModel.swift in Sources */,
  3130. A72A7388223396CB00B21995 /* ApiMacro.swift in Sources */,
  3131. A72A72B922321DE000B21995 /* Extension+Array.swift in Sources */,
  3132. A70B2C492288416F00B2449F /* ProductDetailHotSellCollectionViewCell.swift in Sources */,
  3133. A71901692275464000104A50 /* ProvinceCityAreaView.swift in Sources */,
  3134. A7CC753E2271C4C2003C4F38 /* AddressManagerExpressTableViewCell.swift in Sources */,
  3135. A7778CDD2246121500C7C47A /* PhoneCountryAreaListMdoel.swift in Sources */,
  3136. A72A733522325A4B00B21995 /* AppDelegate+HandleOpen.swift in Sources */,
  3137. A72A72AC22321DE000B21995 /* Regex.swift in Sources */,
  3138. A7778CC52246035700C7C47A /* PhoneCountryAreaViewController.swift in Sources */,
  3139. A72A72CF22321E2700B21995 /* NotificationCenterMacro.swift in Sources */,
  3140. A72A72BF22321DE000B21995 /* Extension+UIButton.swift in Sources */,
  3141. A71901702275EF9900104A50 /* NXLRealm.swift in Sources */,
  3142. BDD4FB1722840DD3006FE833 /* OrderPayAcountView.swift in Sources */,
  3143. A7CC753C2271C177003C4F38 /* AddressManagerSelfMentionTableViewCell.swift in Sources */,
  3144. );
  3145. runOnlyForDeploymentPostprocessing = 0;
  3146. };
  3147. A77F2C6D2231FB4A001BD3F6 /* Sources */ = {
  3148. isa = PBXSourcesBuildPhase;
  3149. buildActionMask = 2147483647;
  3150. files = (
  3151. A77F2C762231FB4A001BD3F6 /* RainbowPlanetTests.swift in Sources */,
  3152. );
  3153. runOnlyForDeploymentPostprocessing = 0;
  3154. };
  3155. A77F2C782231FB4A001BD3F6 /* Sources */ = {
  3156. isa = PBXSourcesBuildPhase;
  3157. buildActionMask = 2147483647;
  3158. files = (
  3159. A77F2C812231FB4A001BD3F6 /* RainbowPlanetUITests.swift in Sources */,
  3160. );
  3161. runOnlyForDeploymentPostprocessing = 0;
  3162. };
  3163. /* End PBXSourcesBuildPhase section */
  3164. /* Begin PBXTargetDependency section */
  3165. A77F2C732231FB4A001BD3F6 /* PBXTargetDependency */ = {
  3166. isa = PBXTargetDependency;
  3167. target = A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */;
  3168. targetProxy = A77F2C722231FB4A001BD3F6 /* PBXContainerItemProxy */;
  3169. };
  3170. A77F2C7E2231FB4A001BD3F6 /* PBXTargetDependency */ = {
  3171. isa = PBXTargetDependency;
  3172. target = A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */;
  3173. targetProxy = A77F2C7D2231FB4A001BD3F6 /* PBXContainerItemProxy */;
  3174. };
  3175. /* End PBXTargetDependency section */
  3176. /* Begin XCBuildConfiguration section */
  3177. A77F2C832231FB4A001BD3F6 /* Debug */ = {
  3178. isa = XCBuildConfiguration;
  3179. buildSettings = {
  3180. ALWAYS_SEARCH_USER_PATHS = NO;
  3181. CLANG_ANALYZER_NONNULL = YES;
  3182. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3183. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3184. CLANG_CXX_LIBRARY = "libc++";
  3185. CLANG_ENABLE_MODULES = YES;
  3186. CLANG_ENABLE_OBJC_ARC = YES;
  3187. CLANG_ENABLE_OBJC_WEAK = YES;
  3188. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3189. CLANG_WARN_BOOL_CONVERSION = YES;
  3190. CLANG_WARN_COMMA = YES;
  3191. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3192. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3193. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3194. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3195. CLANG_WARN_EMPTY_BODY = YES;
  3196. CLANG_WARN_ENUM_CONVERSION = YES;
  3197. CLANG_WARN_INFINITE_RECURSION = YES;
  3198. CLANG_WARN_INT_CONVERSION = YES;
  3199. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3200. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3201. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3202. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3203. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3204. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3205. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3206. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3207. CLANG_WARN_UNREACHABLE_CODE = YES;
  3208. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3209. CODE_SIGN_IDENTITY = "iPhone Developer";
  3210. COPY_PHASE_STRIP = NO;
  3211. DEBUG_INFORMATION_FORMAT = dwarf;
  3212. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3213. ENABLE_TESTABILITY = YES;
  3214. GCC_C_LANGUAGE_STANDARD = gnu11;
  3215. GCC_DYNAMIC_NO_PIC = NO;
  3216. GCC_NO_COMMON_BLOCKS = YES;
  3217. GCC_OPTIMIZATION_LEVEL = 0;
  3218. GCC_PREPROCESSOR_DEFINITIONS = (
  3219. "DEBUG=1",
  3220. "$(inherited)",
  3221. );
  3222. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3223. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3224. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3225. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3226. GCC_WARN_UNUSED_FUNCTION = YES;
  3227. GCC_WARN_UNUSED_VARIABLE = YES;
  3228. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3229. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3230. MTL_FAST_MATH = YES;
  3231. ONLY_ACTIVE_ARCH = YES;
  3232. SDKROOT = iphoneos;
  3233. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  3234. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3235. };
  3236. name = Debug;
  3237. };
  3238. A77F2C842231FB4A001BD3F6 /* Release */ = {
  3239. isa = XCBuildConfiguration;
  3240. buildSettings = {
  3241. ALWAYS_SEARCH_USER_PATHS = NO;
  3242. CLANG_ANALYZER_NONNULL = YES;
  3243. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3244. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3245. CLANG_CXX_LIBRARY = "libc++";
  3246. CLANG_ENABLE_MODULES = YES;
  3247. CLANG_ENABLE_OBJC_ARC = YES;
  3248. CLANG_ENABLE_OBJC_WEAK = YES;
  3249. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3250. CLANG_WARN_BOOL_CONVERSION = YES;
  3251. CLANG_WARN_COMMA = YES;
  3252. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3253. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3254. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3255. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3256. CLANG_WARN_EMPTY_BODY = YES;
  3257. CLANG_WARN_ENUM_CONVERSION = YES;
  3258. CLANG_WARN_INFINITE_RECURSION = YES;
  3259. CLANG_WARN_INT_CONVERSION = YES;
  3260. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3261. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3262. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3263. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3264. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3265. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3266. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3267. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3268. CLANG_WARN_UNREACHABLE_CODE = YES;
  3269. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3270. CODE_SIGN_IDENTITY = "iPhone Developer";
  3271. COPY_PHASE_STRIP = NO;
  3272. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3273. ENABLE_NS_ASSERTIONS = NO;
  3274. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3275. GCC_C_LANGUAGE_STANDARD = gnu11;
  3276. GCC_NO_COMMON_BLOCKS = YES;
  3277. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3278. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3279. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3280. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3281. GCC_WARN_UNUSED_FUNCTION = YES;
  3282. GCC_WARN_UNUSED_VARIABLE = YES;
  3283. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3284. MTL_ENABLE_DEBUG_INFO = NO;
  3285. MTL_FAST_MATH = YES;
  3286. SDKROOT = iphoneos;
  3287. SWIFT_COMPILATION_MODE = wholemodule;
  3288. SWIFT_OPTIMIZATION_LEVEL = "-O";
  3289. VALIDATE_PRODUCT = YES;
  3290. };
  3291. name = Release;
  3292. };
  3293. A77F2C862231FB4A001BD3F6 /* Debug */ = {
  3294. isa = XCBuildConfiguration;
  3295. baseConfigurationReference = BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */;
  3296. buildSettings = {
  3297. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3298. CLANG_ENABLE_MODULES = YES;
  3299. CODE_SIGN_ENTITLEMENTS = RainbowPlanet/RainbowPlanet.entitlements;
  3300. CODE_SIGN_STYLE = Automatic;
  3301. DEFINES_MODULE = YES;
  3302. DEVELOPMENT_TEAM = B4UG6NNMLL;
  3303. ENABLE_BITCODE = YES;
  3304. FRAMEWORK_SEARCH_PATHS = (
  3305. "$(inherited)",
  3306. "$(PROJECT_DIR)/RainbowPlanet/Lib/AlipaySDK",
  3307. );
  3308. HEADER_SEARCH_PATHS = (
  3309. "$(inherited)",
  3310. "\"${PODS_ROOT}/Headers/Public\"",
  3311. "\"${PODS_ROOT}/Headers/Public/UMCShare\"",
  3312. "\"$(SRCROOT)/RainbowPlanet/Lib/AlipaySDK\"",
  3313. );
  3314. INFOPLIST_FILE = "$(SRCROOT)/RainbowPlanet/Supporting Files/Info.plist";
  3315. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3316. LD_RUNPATH_SEARCH_PATHS = (
  3317. "$(inherited)",
  3318. "@executable_path/Frameworks",
  3319. );
  3320. LIBRARY_SEARCH_PATHS = (
  3321. "$(inherited)",
  3322. "$(PROJECT_DIR)/RainbowPlanet/Lib/WeChatSDK",
  3323. );
  3324. OTHER_LDFLAGS = (
  3325. "$(inherited)",
  3326. "-ObjC",
  3327. "-l\"SocialQQ\"",
  3328. "-l\"SocialSina\"",
  3329. "-l\"SocialWeChat\"",
  3330. "-l\"c++\"",
  3331. "-l\"sqlite3\"",
  3332. "-l\"sqlite3.0\"",
  3333. "-l\"z\"",
  3334. "-framework",
  3335. "\"AdSupport\"",
  3336. "-framework",
  3337. "\"Alamofire\"",
  3338. "-framework",
  3339. "\"BMKLocationKit\"",
  3340. "-framework",
  3341. "\"CoreGraphics\"",
  3342. "-framework",
  3343. "\"CoreLocation\"",
  3344. "-framework",
  3345. "\"CoreTelephony\"",
  3346. "-framework",
  3347. "\"DeviceKit\"",
  3348. "-framework",
  3349. "\"Foundation\"",
  3350. "-framework",
  3351. "\"IQKeyboardManagerSwift\"",
  3352. "-framework",
  3353. "\"Kingfisher\"",
  3354. "-framework",
  3355. "\"MBProgressHUD\"",
  3356. "-framework",
  3357. "\"MJRefresh\"",
  3358. "-framework",
  3359. "\"Moya\"",
  3360. "-framework",
  3361. "\"ObjectMapper\"",
  3362. "-framework",
  3363. "\"Photos\"",
  3364. "-framework",
  3365. "\"QuartzCore\"",
  3366. "-framework",
  3367. "\"Result\"",
  3368. "-framework",
  3369. "\"RxCocoa\"",
  3370. "-framework",
  3371. "\"RxSwift\"",
  3372. "-framework",
  3373. "\"Security\"",
  3374. "-framework",
  3375. "\"SecurityEnvSDK\"",
  3376. "-framework",
  3377. "\"SnapKit\"",
  3378. "-framework",
  3379. "\"SwiftyJSON\"",
  3380. "-framework",
  3381. "\"SystemConfiguration\"",
  3382. "-framework",
  3383. "\"UIKit\"",
  3384. "-framework",
  3385. "\"UMAnalytics\"",
  3386. "-framework",
  3387. "\"UMCommon\"",
  3388. "-framework",
  3389. "\"UMCommonLog\"",
  3390. "-framework",
  3391. "\"UMPush\"",
  3392. "-framework",
  3393. "\"UMShare\"",
  3394. "-framework",
  3395. "\"UShareUI\"",
  3396. "-framework",
  3397. "\"UTDID\"",
  3398. "-framework",
  3399. "\"UserNotifications\"",
  3400. );
  3401. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.rainbowplanet;
  3402. PRODUCT_MODULE_NAME = RainbowPlanet;
  3403. PRODUCT_NAME = "$(TARGET_NAME)";
  3404. SWIFT_OBJC_BRIDGING_HEADER = "RainbowPlanet/Macro/RainbowPlanet-Bridging-Header.h";
  3405. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3406. SWIFT_VERSION = 5.0;
  3407. TARGETED_DEVICE_FAMILY = 1;
  3408. };
  3409. name = Debug;
  3410. };
  3411. A77F2C872231FB4A001BD3F6 /* Release */ = {
  3412. isa = XCBuildConfiguration;
  3413. baseConfigurationReference = 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */;
  3414. buildSettings = {
  3415. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3416. CLANG_ENABLE_MODULES = YES;
  3417. CODE_SIGN_ENTITLEMENTS = RainbowPlanet/RainbowPlanet.entitlements;
  3418. CODE_SIGN_STYLE = Automatic;
  3419. DEFINES_MODULE = YES;
  3420. DEVELOPMENT_TEAM = B4UG6NNMLL;
  3421. ENABLE_BITCODE = YES;
  3422. FRAMEWORK_SEARCH_PATHS = (
  3423. "$(inherited)",
  3424. "$(PROJECT_DIR)/RainbowPlanet/Lib/AlipaySDK",
  3425. );
  3426. HEADER_SEARCH_PATHS = (
  3427. "$(inherited)",
  3428. "\"${PODS_ROOT}/Headers/Public\"",
  3429. "\"${PODS_ROOT}/Headers/Public/UMCShare\"",
  3430. "\"$(SRCROOT)/RainbowPlanet/Lib/AlipaySDK\"",
  3431. );
  3432. INFOPLIST_FILE = "$(SRCROOT)/RainbowPlanet/Supporting Files/Info.plist";
  3433. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3434. LD_RUNPATH_SEARCH_PATHS = (
  3435. "$(inherited)",
  3436. "@executable_path/Frameworks",
  3437. );
  3438. LIBRARY_SEARCH_PATHS = (
  3439. "$(inherited)",
  3440. "$(PROJECT_DIR)/RainbowPlanet/Lib/WeChatSDK",
  3441. );
  3442. OTHER_LDFLAGS = (
  3443. "$(inherited)",
  3444. "-ObjC",
  3445. "-l\"SocialQQ\"",
  3446. "-l\"SocialSina\"",
  3447. "-l\"SocialWeChat\"",
  3448. "-l\"c++\"",
  3449. "-l\"sqlite3\"",
  3450. "-l\"sqlite3.0\"",
  3451. "-l\"z\"",
  3452. "-framework",
  3453. "\"AdSupport\"",
  3454. "-framework",
  3455. "\"Alamofire\"",
  3456. "-framework",
  3457. "\"BMKLocationKit\"",
  3458. "-framework",
  3459. "\"CoreGraphics\"",
  3460. "-framework",
  3461. "\"CoreLocation\"",
  3462. "-framework",
  3463. "\"CoreTelephony\"",
  3464. "-framework",
  3465. "\"DeviceKit\"",
  3466. "-framework",
  3467. "\"Foundation\"",
  3468. "-framework",
  3469. "\"IQKeyboardManagerSwift\"",
  3470. "-framework",
  3471. "\"Kingfisher\"",
  3472. "-framework",
  3473. "\"MBProgressHUD\"",
  3474. "-framework",
  3475. "\"MJRefresh\"",
  3476. "-framework",
  3477. "\"Moya\"",
  3478. "-framework",
  3479. "\"ObjectMapper\"",
  3480. "-framework",
  3481. "\"Photos\"",
  3482. "-framework",
  3483. "\"QuartzCore\"",
  3484. "-framework",
  3485. "\"Result\"",
  3486. "-framework",
  3487. "\"RxCocoa\"",
  3488. "-framework",
  3489. "\"RxSwift\"",
  3490. "-framework",
  3491. "\"Security\"",
  3492. "-framework",
  3493. "\"SecurityEnvSDK\"",
  3494. "-framework",
  3495. "\"SnapKit\"",
  3496. "-framework",
  3497. "\"SwiftyJSON\"",
  3498. "-framework",
  3499. "\"SystemConfiguration\"",
  3500. "-framework",
  3501. "\"UIKit\"",
  3502. "-framework",
  3503. "\"UMAnalytics\"",
  3504. "-framework",
  3505. "\"UMCommon\"",
  3506. "-framework",
  3507. "\"UMCommonLog\"",
  3508. "-framework",
  3509. "\"UMPush\"",
  3510. "-framework",
  3511. "\"UMShare\"",
  3512. "-framework",
  3513. "\"UShareUI\"",
  3514. "-framework",
  3515. "\"UTDID\"",
  3516. "-framework",
  3517. "\"UserNotifications\"",
  3518. );
  3519. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.rainbowplanet;
  3520. PRODUCT_MODULE_NAME = RainbowPlanet;
  3521. PRODUCT_NAME = "$(TARGET_NAME)";
  3522. SWIFT_OBJC_BRIDGING_HEADER = "RainbowPlanet/Macro/RainbowPlanet-Bridging-Header.h";
  3523. SWIFT_VERSION = 5.0;
  3524. TARGETED_DEVICE_FAMILY = 1;
  3525. };
  3526. name = Release;
  3527. };
  3528. A77F2C892231FB4A001BD3F6 /* Debug */ = {
  3529. isa = XCBuildConfiguration;
  3530. buildSettings = {
  3531. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3532. BUNDLE_LOADER = "$(TEST_HOST)";
  3533. CODE_SIGN_STYLE = Automatic;
  3534. DEVELOPMENT_TEAM = B4UG6NNMLL;
  3535. INFOPLIST_FILE = RainbowPlanetTests/Info.plist;
  3536. LD_RUNPATH_SEARCH_PATHS = (
  3537. "$(inherited)",
  3538. "@executable_path/Frameworks",
  3539. "@loader_path/Frameworks",
  3540. );
  3541. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetTests;
  3542. PRODUCT_NAME = "$(TARGET_NAME)";
  3543. SWIFT_VERSION = 5.0;
  3544. TARGETED_DEVICE_FAMILY = "1,2";
  3545. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RainbowPlanet.app/RainbowPlanet";
  3546. };
  3547. name = Debug;
  3548. };
  3549. A77F2C8A2231FB4A001BD3F6 /* Release */ = {
  3550. isa = XCBuildConfiguration;
  3551. buildSettings = {
  3552. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3553. BUNDLE_LOADER = "$(TEST_HOST)";
  3554. CODE_SIGN_STYLE = Automatic;
  3555. DEVELOPMENT_TEAM = B4UG6NNMLL;
  3556. INFOPLIST_FILE = RainbowPlanetTests/Info.plist;
  3557. LD_RUNPATH_SEARCH_PATHS = (
  3558. "$(inherited)",
  3559. "@executable_path/Frameworks",
  3560. "@loader_path/Frameworks",
  3561. );
  3562. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetTests;
  3563. PRODUCT_NAME = "$(TARGET_NAME)";
  3564. SWIFT_VERSION = 5.0;
  3565. TARGETED_DEVICE_FAMILY = "1,2";
  3566. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RainbowPlanet.app/RainbowPlanet";
  3567. };
  3568. name = Release;
  3569. };
  3570. A77F2C8C2231FB4A001BD3F6 /* Debug */ = {
  3571. isa = XCBuildConfiguration;
  3572. buildSettings = {
  3573. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3574. CODE_SIGN_IDENTITY = "iPhone Developer";
  3575. CODE_SIGN_STYLE = Automatic;
  3576. DEVELOPMENT_TEAM = B4UG6NNMLL;
  3577. INFOPLIST_FILE = RainbowPlanetUITests/Info.plist;
  3578. LD_RUNPATH_SEARCH_PATHS = (
  3579. "$(inherited)",
  3580. "@executable_path/Frameworks",
  3581. "@loader_path/Frameworks",
  3582. );
  3583. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetUITests;
  3584. PRODUCT_NAME = "$(TARGET_NAME)";
  3585. PROVISIONING_PROFILE_SPECIFIER = "";
  3586. SWIFT_VERSION = 5.0;
  3587. TARGETED_DEVICE_FAMILY = "1,2";
  3588. TEST_TARGET_NAME = RainbowPlanet;
  3589. };
  3590. name = Debug;
  3591. };
  3592. A77F2C8D2231FB4A001BD3F6 /* Release */ = {
  3593. isa = XCBuildConfiguration;
  3594. buildSettings = {
  3595. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3596. CODE_SIGN_IDENTITY = "iPhone Developer";
  3597. CODE_SIGN_STYLE = Automatic;
  3598. DEVELOPMENT_TEAM = B4UG6NNMLL;
  3599. INFOPLIST_FILE = RainbowPlanetUITests/Info.plist;
  3600. LD_RUNPATH_SEARCH_PATHS = (
  3601. "$(inherited)",
  3602. "@executable_path/Frameworks",
  3603. "@loader_path/Frameworks",
  3604. );
  3605. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetUITests;
  3606. PRODUCT_NAME = "$(TARGET_NAME)";
  3607. PROVISIONING_PROFILE_SPECIFIER = "";
  3608. SWIFT_VERSION = 5.0;
  3609. TARGETED_DEVICE_FAMILY = "1,2";
  3610. TEST_TARGET_NAME = RainbowPlanet;
  3611. };
  3612. name = Release;
  3613. };
  3614. /* End XCBuildConfiguration section */
  3615. /* Begin XCConfigurationList section */
  3616. A77F2C582231FB49001BD3F6 /* Build configuration list for PBXProject "RainbowPlanet" */ = {
  3617. isa = XCConfigurationList;
  3618. buildConfigurations = (
  3619. A77F2C832231FB4A001BD3F6 /* Debug */,
  3620. A77F2C842231FB4A001BD3F6 /* Release */,
  3621. );
  3622. defaultConfigurationIsVisible = 0;
  3623. defaultConfigurationName = Release;
  3624. };
  3625. A77F2C852231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanet" */ = {
  3626. isa = XCConfigurationList;
  3627. buildConfigurations = (
  3628. A77F2C862231FB4A001BD3F6 /* Debug */,
  3629. A77F2C872231FB4A001BD3F6 /* Release */,
  3630. );
  3631. defaultConfigurationIsVisible = 0;
  3632. defaultConfigurationName = Release;
  3633. };
  3634. A77F2C882231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetTests" */ = {
  3635. isa = XCConfigurationList;
  3636. buildConfigurations = (
  3637. A77F2C892231FB4A001BD3F6 /* Debug */,
  3638. A77F2C8A2231FB4A001BD3F6 /* Release */,
  3639. );
  3640. defaultConfigurationIsVisible = 0;
  3641. defaultConfigurationName = Release;
  3642. };
  3643. A77F2C8B2231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetUITests" */ = {
  3644. isa = XCConfigurationList;
  3645. buildConfigurations = (
  3646. A77F2C8C2231FB4A001BD3F6 /* Debug */,
  3647. A77F2C8D2231FB4A001BD3F6 /* Release */,
  3648. );
  3649. defaultConfigurationIsVisible = 0;
  3650. defaultConfigurationName = Release;
  3651. };
  3652. /* End XCConfigurationList section */
  3653. };
  3654. rootObject = A77F2C552231FB49001BD3F6 /* Project object */;
  3655. }