project.pbxproj 274 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 56;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. C40690DC2B0714EE002688FD /* CheckOrderFootView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40690DA2B0714EE002688FD /* CheckOrderFootView.xib */; };
  10. C40690DD2B0714EE002688FD /* CheckOrderFootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40690DB2B0714EE002688FD /* CheckOrderFootView.swift */; };
  11. C40690F02B07A2FE002688FD /* DayCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C40690E82B07A2FE002688FD /* DayCollectionViewCell.m */; };
  12. C40690F12B07A2FE002688FD /* MonthTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C40690E92B07A2FE002688FD /* MonthTableViewCell.m */; };
  13. C40690F22B07A2FE002688FD /* MonthModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C40690EA2B07A2FE002688FD /* MonthModel.m */; };
  14. C40690F52B07AAF9002688FD /* RectCornerUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40690F42B07AAF9002688FD /* RectCornerUtil.swift */; };
  15. C40691402B08BC92002688FD /* TCLogingViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40691422B08BC92002688FD /* TCLogingViewController.xib */; };
  16. C40691452B08BD4F002688FD /* EditPayPSWViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40691472B08BD4F002688FD /* EditPayPSWViewController.xib */; };
  17. C40691512B08BE3F002688FD /* RegisteViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40691532B08BE3F002688FD /* RegisteViewController.xib */; };
  18. C40691582B08BEB7002688FD /* CodeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C406915A2B08BEB7002688FD /* CodeViewController.xib */; };
  19. C406915F2B08BEF6002688FD /* PhoneLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40691612B08BEF6002688FD /* PhoneLoginViewController.xib */; };
  20. C40691662B08BFE9002688FD /* EditLoginPSWViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40691682B08BFE9002688FD /* EditLoginPSWViewController.xib */; };
  21. C406A07E2B9191D6005A6423 /* TwoSeparateMealsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C406A0802B9191D6005A6423 /* TwoSeparateMealsView.xib */; };
  22. C406A0862B91D3E9005A6423 /* WMFloatButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C406A0852B91D3E9005A6423 /* WMFloatButton.swift */; };
  23. C406A0882B91F4C5005A6423 /* AddMembersCheckView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C406A0872B91F4C5005A6423 /* AddMembersCheckView.swift */; };
  24. C406A0902B91FBBD005A6423 /* TeamMembersCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C406A0912B91FBBD005A6423 /* TeamMembersCell.xib */; };
  25. C406A0922B91FBC5005A6423 /* AddMembersCheckView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C406A0942B91FBC5005A6423 /* AddMembersCheckView.xib */; };
  26. C40AE3A82B95CB5A007469C0 /* RechargeAmountViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40AE3AA2B95CB5A007469C0 /* RechargeAmountViewController.xib */; };
  27. C40AE3B22B95E6A7007469C0 /* LanguageSetVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40AE3B02B95E6A7007469C0 /* LanguageSetVC.swift */; };
  28. C40AE3B32B95E6A7007469C0 /* LanguageSetVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40AE3B12B95E6A7007469C0 /* LanguageSetVC.xib */; };
  29. C4110B482B47F9FC00B23195 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C4110B472B47F9FC00B23195 /* Launch Screen.storyboard */; };
  30. C4144CD52AF91DCB00B5F73C /* OrderDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4144CD32AF91DCB00B5F73C /* OrderDetailViewController.swift */; };
  31. C4144CD62AF91DCB00B5F73C /* OrderDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4144CD42AF91DCB00B5F73C /* OrderDetailViewController.xib */; };
  32. C4194E7C2B565DAC00B60D41 /* PaySuccessView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4194E7B2B565DAC00B60D41 /* PaySuccessView.swift */; };
  33. C4194E882B566AC300B60D41 /* PaySuccessView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4194E8A2B566AC300B60D41 /* PaySuccessView.xib */; };
  34. C41DA49E2AFEF9D500707C5D /* MealEvaluateListVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA49C2AFEF9D500707C5D /* MealEvaluateListVC.swift */; };
  35. C41DA49F2AFEF9D500707C5D /* MealEvaluateListVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA49D2AFEF9D500707C5D /* MealEvaluateListVC.xib */; };
  36. C41DA4A22AFEFC4F00707C5D /* MealEcaluateCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4A02AFEFC4F00707C5D /* MealEcaluateCell.swift */; };
  37. C41DA4A32AFEFC4F00707C5D /* MealEcaluateCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4A12AFEFC4F00707C5D /* MealEcaluateCell.xib */; };
  38. C41DA4A72AFF176000707C5D /* IntegralListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4A52AFF176000707C5D /* IntegralListViewController.swift */; };
  39. C41DA4A82AFF176000707C5D /* IntegralListViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4A62AFF176000707C5D /* IntegralListViewController.xib */; };
  40. C41DA4AA2AFF17B000707C5D /* IntegralHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4A92AFF17B000707C5D /* IntegralHeadView.swift */; };
  41. C41DA4AF2AFF19E000707C5D /* IntegralViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4AD2AFF19E000707C5D /* IntegralViewCell.swift */; };
  42. C41DA4B02AFF19E000707C5D /* IntegralViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4AE2AFF19E000707C5D /* IntegralViewCell.xib */; };
  43. C41DA4B22AFF1E6500707C5D /* IntegralSectiionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4B12AFF1E6500707C5D /* IntegralSectiionView.swift */; };
  44. C41DA4B52AFF22DD00707C5D /* IntegralHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4B72AFF22DD00707C5D /* IntegralHeadView.xib */; };
  45. C41DA4C32AFF232800707C5D /* IntegralSectiionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4C42AFF232800707C5D /* IntegralSectiionView.xib */; };
  46. C41DA4C52AFF39BE00707C5D /* ReplaceFoodView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4C72AFF39BE00707C5D /* ReplaceFoodView.xib */; };
  47. C41DA4CF2AFF44FF00707C5D /* DiscountsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4CD2AFF44FF00707C5D /* DiscountsViewController.swift */; };
  48. C41DA4D02AFF44FF00707C5D /* DiscountsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4CE2AFF44FF00707C5D /* DiscountsViewController.xib */; };
  49. C41DA4D52AFFAB2400707C5D /* DiscountsListViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4D32AFFAB2400707C5D /* DiscountsListViewCell.swift */; };
  50. C41DA4D72AFFB02700707C5D /* DiscountsListViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4D92AFFB02700707C5D /* DiscountsListViewCell.xib */; };
  51. C41DA4DF2AFFC03B00707C5D /* DiscountsSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4DE2AFFC03B00707C5D /* DiscountsSectionView.swift */; };
  52. C41DA4E12AFFC04900707C5D /* DiscountsSectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4E02AFFC04900707C5D /* DiscountsSectionView.xib */; };
  53. C41DA4E32AFFC58000707C5D /* DiscountsFootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4E22AFFC58000707C5D /* DiscountsFootView.swift */; };
  54. C41DA4E52AFFC59100707C5D /* DiscountsFootView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4E42AFFC59100707C5D /* DiscountsFootView.xib */; };
  55. C41DA4E92AFFD2DF00707C5D /* RuleDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4E72AFFD2DF00707C5D /* RuleDetailViewController.swift */; };
  56. C41DA4EA2AFFD2DF00707C5D /* RuleDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4E82AFFD2DF00707C5D /* RuleDetailViewController.xib */; };
  57. C41DA4ED2AFFDDDE00707C5D /* PromotionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4EB2AFFDDDE00707C5D /* PromotionCell.swift */; };
  58. C41DA4EE2AFFDDDE00707C5D /* PromotionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4EC2AFFDDDE00707C5D /* PromotionCell.xib */; };
  59. C41DA4EF2AFFE1C400707C5D /* PromotionSheetView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4F12AFFE1C400707C5D /* PromotionSheetView.xib */; };
  60. C42AEDD02B0312070045EF66 /* SalesmanFirstShowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDCF2B0312070045EF66 /* SalesmanFirstShowView.swift */; };
  61. C42AEDDB2B035A9D0045EF66 /* MCDatePikerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD42B035A9D0045EF66 /* MCDatePikerView.swift */; };
  62. C42AEDDC2B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD52B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift */; };
  63. C42AEDDD2B035A9D0045EF66 /* MCDatePikerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD62B035A9D0045EF66 /* MCDatePikerDelegate.swift */; };
  64. C42AEDDE2B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD82B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift */; };
  65. C42AEDDF2B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD92B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift */; };
  66. C42AEDE02B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDDA2B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift */; };
  67. C42AEDE12B03717F0045EF66 /* ChangeMealCollectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEDE32B03717F0045EF66 /* ChangeMealCollectionView.xib */; };
  68. C42AEDE82B03727E0045EF66 /* HomeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEDEA2B03727E0045EF66 /* HomeViewController.xib */; };
  69. C42AEDEF2B0372D70045EF66 /* HomeSecondViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEDF12B0372D70045EF66 /* HomeSecondViewController.xib */; };
  70. C42AEDF82B03731E0045EF66 /* HomeFoodItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEDFA2B03731E0045EF66 /* HomeFoodItem.xib */; };
  71. C42AEDFF2B03737D0045EF66 /* EverybodyLoveItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE012B03737D0045EF66 /* EverybodyLoveItem.xib */; };
  72. C42AEE0D2B0376F70045EF66 /* AddresViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE0F2B0376F70045EF66 /* AddresViewCell.xib */; };
  73. C42AEE142B03786A0045EF66 /* PersonalInformationVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE162B03786A0045EF66 /* PersonalInformationVC.xib */; };
  74. C42AEE1B2B037AED0045EF66 /* UnsubscribeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE1D2B037AED0045EF66 /* UnsubscribeViewController.xib */; };
  75. C42AEE222B037BD40045EF66 /* AddEvaluateCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE242B037BD40045EF66 /* AddEvaluateCell.xib */; };
  76. C42AEE2B2B04D9CA0045EF66 /* RechargeAmountViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEE292B04D9CA0045EF66 /* RechargeAmountViewController.swift */; };
  77. C42BB5552ADD457B003FF663 /* RegisteViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5532ADD457B003FF663 /* RegisteViewController.swift */; };
  78. C42BB55C2ADD4C50003FF663 /* CodeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB55A2ADD4C50003FF663 /* CodeViewController.swift */; };
  79. C42BB5612ADD5045003FF663 /* MCProxyTextViewRx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB55F2ADD5045003FF663 /* MCProxyTextViewRx.swift */; };
  80. C42BB5622ADD5045003FF663 /* MCProxyTextFieldRx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5602ADD5045003FF663 /* MCProxyTextFieldRx.swift */; };
  81. C42BB5642ADD56D7003FF663 /* ElementUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5632ADD56D7003FF663 /* ElementUtil.swift */; };
  82. C42BB5722ADD69C1003FF663 /* LoginModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5712ADD69C1003FF663 /* LoginModel.swift */; };
  83. C42BB5752ADD6F27003FF663 /* LoginViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5742ADD6F27003FF663 /* LoginViewModel.swift */; };
  84. C42FF7992B15DDA200B591F4 /* SingleMealDetailController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42FF79B2B15DDA200B591F4 /* SingleMealDetailController.xib */; };
  85. C42FF7A02B15DED500B591F4 /* SetMealDetailVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42FF7A22B15DED500B591F4 /* SetMealDetailVC.xib */; };
  86. C42FF7A72B15DF4700B591F4 /* CheckOrderViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42FF7A92B15DF4700B591F4 /* CheckOrderViewController.xib */; };
  87. C42FF7AE2B15DF7A00B591F4 /* ShoppingCarDetailView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42FF7B02B15DF7A00B591F4 /* ShoppingCarDetailView.xib */; };
  88. C438E3C82AF795A700F671AE /* OrderTypeEnum.swift in Sources */ = {isa = PBXBuildFile; fileRef = C438E3C72AF795A700F671AE /* OrderTypeEnum.swift */; };
  89. C438E3CA2AF7B4F300F671AE /* OrderViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C438E3C92AF7B4F300F671AE /* OrderViewModel.swift */; };
  90. C44301F52AF5DC830098C854 /* selectAddressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44301F42AF5DC830098C854 /* selectAddressView.swift */; };
  91. C44301FA2AF5DEBA0098C854 /* OrderAddressCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44301F82AF5DEBA0098C854 /* OrderAddressCell.swift */; };
  92. C44301FC2AF5E1860098C854 /* OrderAddressCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44301FE2AF5E1860098C854 /* OrderAddressCell.xib */; };
  93. C44302152AF5F5370098C854 /* selectAddressView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44302172AF5F5370098C854 /* selectAddressView.xib */; };
  94. C443021F2AF5FA330098C854 /* OrderDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C443021E2AF5FA330098C854 /* OrderDataModel.swift */; };
  95. C44302212AF6043B0098C854 /* PayMentSelectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44302202AF6043B0098C854 /* PayMentSelectView.swift */; };
  96. C44302242AF6073A0098C854 /* PayMentSelectView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44302262AF6073A0098C854 /* PayMentSelectView.xib */; };
  97. C443022E2AF615780098C854 /* UserPayMentSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = C443022D2AF615780098C854 /* UserPayMentSheet.swift */; };
  98. C443023A2AF61A2A0098C854 /* UserPayMentSheet.xib in Resources */ = {isa = PBXBuildFile; fileRef = C443023C2AF61A2A0098C854 /* UserPayMentSheet.xib */; };
  99. C44302442AF6835B0098C854 /* OderDetailHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44302432AF6835B0098C854 /* OderDetailHeadView.swift */; };
  100. C448CCF72AFE37CE00B3B068 /* AddEvaluateViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CCF52AFE37CE00B3B068 /* AddEvaluateViewController.swift */; };
  101. C448CCFD2AFE3B3F00B3B068 /* EvaluateViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CCFC2AFE3B3F00B3B068 /* EvaluateViewModel.swift */; };
  102. C448CCFF2AFE3B5E00B3B068 /* EvaluateRequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CCFE2AFE3B5E00B3B068 /* EvaluateRequestModel.swift */; };
  103. C448CD022AFE3DE200B3B068 /* AddEvaluateCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CD002AFE3DE200B3B068 /* AddEvaluateCell.swift */; };
  104. C448CD0B2AFE4E8700B3B068 /* AddEvaluateViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C448CD0D2AFE4E8700B3B068 /* AddEvaluateViewController.xib */; };
  105. C448CD122AFE4FA900B3B068 /* textView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CD112AFE4FA900B3B068 /* textView.swift */; };
  106. C448CD1C2AFE8AAF00B3B068 /* MealHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C448CD1E2AFE8AAF00B3B068 /* MealHeadView.xib */; };
  107. C4498ED52B294D57005E43D0 /* ApplyCompanySuccess.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4498ED72B294D57005E43D0 /* ApplyCompanySuccess.xib */; };
  108. C44CFA412AFB1AD1000D592D /* OrderDetailFootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA402AFB1AD1000D592D /* OrderDetailFootView.swift */; };
  109. C44CFA452AFB2940000D592D /* OrderDetailSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA442AFB2940000D592D /* OrderDetailSectionView.swift */; };
  110. C44CFA472AFB2948000D592D /* OrderDetailSectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA462AFB2948000D592D /* OrderDetailSectionView.xib */; };
  111. C44CFA4A2AFB3247000D592D /* payMentItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA482AFB3247000D592D /* payMentItemCell.swift */; };
  112. C44CFA4B2AFB3247000D592D /* payMentItemCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA492AFB3247000D592D /* payMentItemCell.xib */; };
  113. C44CFA552AFB5308000D592D /* OrderDetailFootView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA572AFB5308000D592D /* OrderDetailFootView.xib */; };
  114. C44CFA602AFB5CAD000D592D /* MyViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA5F2AFB5CAD000D592D /* MyViewModel.swift */; };
  115. C44CFA622AFB5CCF000D592D /* MyRequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA612AFB5CCF000D592D /* MyRequestModel.swift */; };
  116. C44CFA652AFB8084000D592D /* BrokerageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA632AFB8084000D592D /* BrokerageCell.swift */; };
  117. C44CFA672AFB81FF000D592D /* BrokerageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA692AFB81FF000D592D /* BrokerageCell.xib */; };
  118. C44CFA6F2AFB8255000D592D /* BrokerageSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA6E2AFB8255000D592D /* BrokerageSheetView.swift */; };
  119. C44CFA722AFB8AB7000D592D /* BrokerageSheetView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA742AFB8AB7000D592D /* BrokerageSheetView.xib */; };
  120. C44CFA7A2AFB8B89000D592D /* PromotionSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA792AFB8B89000D592D /* PromotionSheetView.swift */; };
  121. C450016F2AD67CF000F96CFA /* OrderReadyCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C450016D2AD67CF000F96CFA /* OrderReadyCell.swift */; };
  122. C45001702AD67CF000F96CFA /* OrderReadyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C450016E2AD67CF000F96CFA /* OrderReadyCell.xib */; };
  123. C4522D032B0DF21700808F76 /* ImagePreviewViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4522D022B0DF21700808F76 /* ImagePreviewViewController.swift */; };
  124. C4522D102B0E21A600808F76 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = C4522D122B0E21A600808F76 /* InfoPlist.strings */; };
  125. C45411752B00DB740096F60E /* BalanceViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411732B00DB740096F60E /* BalanceViewCell.swift */; };
  126. C45411762B00DB740096F60E /* BalanceViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45411742B00DB740096F60E /* BalanceViewCell.xib */; };
  127. C45411782B00DF200096F60E /* BalanceTabHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411772B00DF200096F60E /* BalanceTabHeadView.swift */; };
  128. C454117B2B00DF780096F60E /* BalanceTabHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C454117D2B00DF780096F60E /* BalanceTabHeadView.xib */; };
  129. C45411852B00E38D0096F60E /* HomeSecondViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411832B00E38D0096F60E /* HomeSecondViewController.swift */; };
  130. C454118A2B012CB70096F60E /* PhoneLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411882B012CB70096F60E /* PhoneLoginViewController.swift */; };
  131. C454118E2B0130970096F60E /* sortedNameEN.plist in Resources */ = {isa = PBXBuildFile; fileRef = C454118C2B0130970096F60E /* sortedNameEN.plist */; };
  132. C454118F2B0130970096F60E /* sortedNameCH.plist in Resources */ = {isa = PBXBuildFile; fileRef = C454118D2B0130970096F60E /* sortedNameCH.plist */; };
  133. C45411912B0130C40096F60E /* EWCountryCodeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411902B0130C40096F60E /* EWCountryCodeViewController.swift */; };
  134. C45654452B0A628800F3E628 /* WriteOffResonCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45654432B0A628800F3E628 /* WriteOffResonCell.swift */; };
  135. C45654462B0A628800F3E628 /* WriteOffResonCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45654442B0A628800F3E628 /* WriteOffResonCell.xib */; };
  136. C456544A2B0B834200F3E628 /* TeamMembersViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45654482B0B834200F3E628 /* TeamMembersViewController.swift */; };
  137. C456544F2B0B845F00F3E628 /* TeamMembersCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C456544D2B0B845F00F3E628 /* TeamMembersCell.swift */; };
  138. C45654522B0BA4DD00F3E628 /* TeamMembersAddView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45654512B0BA4DD00F3E628 /* TeamMembersAddView.swift */; };
  139. C45654572B0C9BB900F3E628 /* EditPersonSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45654562B0C9BB900F3E628 /* EditPersonSheetView.swift */; };
  140. C456545A2B0CA94E00F3E628 /* EditPersonSheetView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C456545C2B0CA94E00F3E628 /* EditPersonSheetView.xib */; };
  141. C4577CA82AEA7B88004D9439 /* SetMealDetailVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CA62AEA7B88004D9439 /* SetMealDetailVC.swift */; };
  142. C4577CAC2AEA7BE8004D9439 /* MealHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CAB2AEA7BE8004D9439 /* MealHeadView.swift */; };
  143. C4577CB02AEA8BBC004D9439 /* MealCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CAF2AEA8BBC004D9439 /* MealCollectionView.swift */; };
  144. C4577CB32AEA8E5C004D9439 /* MealCollectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CB52AEA8E5C004D9439 /* MealCollectionView.xib */; };
  145. C4577CBC2AEA8FFD004D9439 /* SetMealCollectionItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CBA2AEA8FFD004D9439 /* SetMealCollectionItem.swift */; };
  146. C4577CBD2AEA8FFD004D9439 /* SetMealCollectionItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CBB2AEA8FFD004D9439 /* SetMealCollectionItem.xib */; };
  147. C4577CBF2AEA9A9B004D9439 /* DeliveryTimeSetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CBE2AEA9A9B004D9439 /* DeliveryTimeSetView.swift */; };
  148. C4577CC42AEA9DC7004D9439 /* SetMealViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CC32AEA9DC7004D9439 /* SetMealViewModel.swift */; };
  149. C4577CC72AEA9E02004D9439 /* SetMealModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CC62AEA9E02004D9439 /* SetMealModel.swift */; };
  150. C4577CCA2AEABA09004D9439 /* DeliveryTimeItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CC82AEABA09004D9439 /* DeliveryTimeItem.swift */; };
  151. C4577CCB2AEABA09004D9439 /* DeliveryTimeItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CC92AEABA09004D9439 /* DeliveryTimeItem.xib */; };
  152. C4577CCE2AEBBB2A004D9439 /* NeedKonwView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CCD2AEBBB2A004D9439 /* NeedKonwView.swift */; };
  153. C4577CD42AEBC168004D9439 /* MealDescribeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CD32AEBC168004D9439 /* MealDescribeView.swift */; };
  154. C4577CD62AEBC173004D9439 /* MealDescribeView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CD52AEBC173004D9439 /* MealDescribeView.xib */; };
  155. C4577CD72AEBC19F004D9439 /* NeedKonwView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CD92AEBC19F004D9439 /* NeedKonwView.xib */; };
  156. C4577CE12AEBC5C4004D9439 /* ChangeMealCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CE02AEBC5C4004D9439 /* ChangeMealCollectionView.swift */; };
  157. C4577CE62AEBC8A7004D9439 /* ChangeMealCollectItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CE42AEBC8A7004D9439 /* ChangeMealCollectItem.swift */; };
  158. C4577CE72AEBC8A7004D9439 /* ChangeMealCollectItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CE52AEBC8A7004D9439 /* ChangeMealCollectItem.xib */; };
  159. C4577D042AEBCEE9004D9439 /* NSObject+Hint.m in Sources */ = {isa = PBXBuildFile; fileRef = C4577CFB2AEBCEE9004D9439 /* NSObject+Hint.m */; };
  160. C459CE172B2AC917000D16DC /* ApplyWhiteManagerController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C459CE192B2AC917000D16DC /* ApplyWhiteManagerController.xib */; };
  161. C45B67D32B19DBE200EA1725 /* TeamMembersViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45B67D52B19DBE200EA1725 /* TeamMembersViewController.xib */; };
  162. C45B67DA2B19DC1A00EA1725 /* TeamMembersAddView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45B67DC2B19DC1A00EA1725 /* TeamMembersAddView.xib */; };
  163. C45B67E12B19DCE400EA1725 /* ADHAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45B67E32B19DCE400EA1725 /* ADHAlertView.xib */; };
  164. C45B67E82B19DD4600EA1725 /* MenuTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45B67EA2B19DD4600EA1725 /* MenuTableViewCell.xib */; };
  165. C45B67EF2B19DDBB00EA1725 /* BalanceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45B67F12B19DDBB00EA1725 /* BalanceViewController.xib */; };
  166. C45C1A6E2B282E3500221FBD /* ApplyCompanySuccess.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C1A6D2B282E3500221FBD /* ApplyCompanySuccess.swift */; };
  167. C45C1A722B284CAE00221FBD /* ApplyAlertView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C1A712B284CAE00221FBD /* ApplyAlertView.swift */; };
  168. C45C1A752B284E0000221FBD /* ApplyAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45C1A772B284E0000221FBD /* ApplyAlertView.xib */; };
  169. C45C66922B01CEE7005E13CE /* EditLoginPSWViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C66902B01CEE7005E13CE /* EditLoginPSWViewController.swift */; };
  170. C45C66972B01E42E005E13CE /* EditPayPSWViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C66952B01E42E005E13CE /* EditPayPSWViewController.swift */; };
  171. C45C8A162AD182ED009D6C3A /* timeManageSheetView.m in Sources */ = {isa = PBXBuildFile; fileRef = C45C8A152AD182ED009D6C3A /* timeManageSheetView.m */; };
  172. C45C8A192AD18D41009D6C3A /* timeManageSheetView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45C8A1B2AD18D41009D6C3A /* timeManageSheetView.xib */; };
  173. C45C8A292AD240B9009D6C3A /* OrderManagerVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C8A272AD240B9009D6C3A /* OrderManagerVC.swift */; };
  174. C45C8A362AD24932009D6C3A /* OrderListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C8A342AD24932009D6C3A /* OrderListCell.swift */; };
  175. C45CE0762BC4748C0087A769 /* OrderManagerVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45CE0782BC4748C0087A769 /* OrderManagerVC.xib */; };
  176. C45CE07F2BC476440087A769 /* ShareQRcodeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45CE07E2BC476440087A769 /* ShareQRcodeView.swift */; };
  177. C45CE0812BC4764F0087A769 /* ShareQRcodeView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45CE0802BC4764F0087A769 /* ShareQRcodeView.xib */; };
  178. C45DC1202AE90D230066BD93 /* LanguagesUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45DC11F2AE90D230066BD93 /* LanguagesUtil.swift */; };
  179. C45DC1222AE91AB70066BD93 /* ImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45DC1212AE91AB70066BD93 /* ImageView.swift */; };
  180. C45E1EC62AF9DC91005C9210 /* MyViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45E1EC42AF9DC91005C9210 /* MyViewController.swift */; };
  181. C45E1EC82AF9E412005C9210 /* MyViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45E1ECA2AF9E412005C9210 /* MyViewController.xib */; };
  182. C45F2B802B0E7D9A0099D40E /* OderDetailHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45F2B822B0E7D9A0099D40E /* OderDetailHeadView.xib */; };
  183. C45F2B892B0E7F640099D40E /* OrderListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45F2B8B2B0E7F640099D40E /* OrderListCell.xib */; };
  184. C45F7AEE2B34641C004D944F /* SaleDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45F7AED2B34641C004D944F /* SaleDetailView.swift */; };
  185. C45F7AF32B346544004D944F /* SaleDetailViewCellTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45F7AF12B346544004D944F /* SaleDetailViewCellTableViewCell.swift */; };
  186. C45F7AF42B346544004D944F /* SaleDetailViewCellTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45F7AF22B346544004D944F /* SaleDetailViewCellTableViewCell.xib */; };
  187. C45F7AF52B347532004D944F /* SaleDetailView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45F7AF72B347532004D944F /* SaleDetailView.xib */; };
  188. C461C4932B272F130010ABC6 /* ApplyWhiteManagerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C461C4912B272F130010ABC6 /* ApplyWhiteManagerController.swift */; };
  189. C46731532AF9F6E400658C58 /* PersonalInformationVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C46731512AF9F6E400658C58 /* PersonalInformationVC.swift */; };
  190. C46731572AFA085500658C58 /* UnsubscribeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C46731552AFA085500658C58 /* UnsubscribeViewController.swift */; };
  191. C467315C2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C467315A2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift */; };
  192. C467315E2AFA13FF00658C58 /* UnsubscribeDetailVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C46731602AFA13FF00658C58 /* UnsubscribeDetailVC.xib */; };
  193. C470B5722AEE5BE3009046B4 /* SingleMealDetailController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5702AEE5BE3009046B4 /* SingleMealDetailController.swift */; };
  194. C470B5752AEFBACB009046B4 /* AddRemarkView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5742AEFBACB009046B4 /* AddRemarkView.swift */; };
  195. C470B5782AEFBD07009046B4 /* AddRemarkView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C470B57A2AEFBD07009046B4 /* AddRemarkView.xib */; };
  196. C470B5802AEFC3C1009046B4 /* ReplaceFoodView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B57F2AEFC3C1009046B4 /* ReplaceFoodView.swift */; };
  197. C470B58B2AEFEF39009046B4 /* ShoppingCarViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B58A2AEFEF39009046B4 /* ShoppingCarViewModel.swift */; };
  198. C470B58D2AEFF1E2009046B4 /* ShopCarModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B58C2AEFF1E2009046B4 /* ShopCarModel.swift */; };
  199. C470B5932AF0B05B009046B4 /* DeliveryTimeSetView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C470B5952AF0B05B009046B4 /* DeliveryTimeSetView.xib */; };
  200. C470B59B2AF0BDB5009046B4 /* CheckOrderHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B59A2AF0BDB5009046B4 /* CheckOrderHeadView.swift */; };
  201. C470B5A72AF0C719009046B4 /* CheckOrderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5A52AF0C719009046B4 /* CheckOrderViewController.swift */; };
  202. C470B5AC2AF0D8C8009046B4 /* AddressManagerVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5AA2AF0D8C8009046B4 /* AddressManagerVC.swift */; };
  203. C470B5B32AF0DCBA009046B4 /* AddresViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5B12AF0DCBA009046B4 /* AddresViewCell.swift */; };
  204. C47F82772BF1A989006C4B6E /* OrderNeedToKnow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C47F82762BF1A989006C4B6E /* OrderNeedToKnow.swift */; };
  205. C47F82812BF1B305006C4B6E /* OrderNeedToKnow.xib in Resources */ = {isa = PBXBuildFile; fileRef = C47F82832BF1B305006C4B6E /* OrderNeedToKnow.xib */; };
  206. C48363AF2AC3D96400E3FA1B /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48363AE2AC3D96400E3FA1B /* AppDelegate.swift */; };
  207. C48363B62AC3D96400E3FA1B /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C48363B42AC3D96400E3FA1B /* Main.storyboard */; };
  208. C48363B92AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = C48363B72AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld */; };
  209. C48363BB2AC3D96500E3FA1B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C48363BA2AC3D96500E3FA1B /* Assets.xcassets */; };
  210. C48363C92AC3D96500E3FA1B /* ADHTuanCanTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48363C82AC3D96500E3FA1B /* ADHTuanCanTests.swift */; };
  211. C48363D32AC3D96500E3FA1B /* ADHTuanCanUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48363D22AC3D96500E3FA1B /* ADHTuanCanUITests.swift */; };
  212. C48363D52AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48363D42AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift */; };
  213. C4836A252AC3F6D500E3FA1B /* ADHcolor.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A242AC3F6D500E3FA1B /* ADHcolor.swift */; };
  214. C4836A282AC3FBD900E3FA1B /* MacroDefinition.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A272AC3FBD900E3FA1B /* MacroDefinition.swift */; };
  215. C4836A452AC41C1100E3FA1B /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = C4836A472AC41C1100E3FA1B /* Localizable.strings */; };
  216. C4836A6F2AC516FC00E3FA1B /* MCResponseModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A682AC516FC00E3FA1B /* MCResponseModel.swift */; };
  217. C4836A702AC516FC00E3FA1B /* MCHttpUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A692AC516FC00E3FA1B /* MCHttpUtil.swift */; };
  218. C4836A732AC516FC00E3FA1B /* MCHttpRxExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A6C2AC516FC00E3FA1B /* MCHttpRxExtension.swift */; };
  219. C4836A782AC517AA00E3FA1B /* MCBaseModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A752AC517AA00E3FA1B /* MCBaseModel.swift */; };
  220. C4836A792AC517AA00E3FA1B /* MCBaseRequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A762AC517AA00E3FA1B /* MCBaseRequestModel.swift */; };
  221. C4836A7A2AC517AA00E3FA1B /* MCBaseViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A772AC517AA00E3FA1B /* MCBaseViewModel.swift */; };
  222. C4836A852AC5180A00E3FA1B /* NotificationUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A7C2AC5180A00E3FA1B /* NotificationUtil.swift */; };
  223. C4836A862AC5180A00E3FA1B /* Convert.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A7D2AC5180A00E3FA1B /* Convert.swift */; };
  224. C4836A872AC5180A00E3FA1B /* OptionalUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A7E2AC5180A00E3FA1B /* OptionalUtil.swift */; };
  225. C4836A892AC5180A00E3FA1B /* OtherGeneralMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A802AC5180A00E3FA1B /* OtherGeneralMethod.swift */; };
  226. C4836A8A2AC5180A00E3FA1B /* ArrayUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A812AC5180A00E3FA1B /* ArrayUtil.swift */; };
  227. C4836A8B2AC5180A00E3FA1B /* GCDUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A822AC5180A00E3FA1B /* GCDUtil.swift */; };
  228. C4836A8D2AC5180B00E3FA1B /* StringUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A842AC5180A00E3FA1B /* StringUtil.swift */; };
  229. C4836AC92AC51FBB00E3FA1B /* TCLogingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836AC72AC51FBB00E3FA1B /* TCLogingViewController.swift */; };
  230. C4836ADC2AC53FF200E3FA1B /* ContractView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836ADA2AC53FF200E3FA1B /* ContractView.swift */; };
  231. C4836B172AC5597B00E3FA1B /* ButtonUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B162AC5597B00E3FA1B /* ButtonUtil.swift */; };
  232. C4836B202AC5601900E3FA1B /* ContractView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836B222AC5601900E3FA1B /* ContractView.xib */; };
  233. C4836B3D2AC5784900E3FA1B /* HomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B3B2AC5784900E3FA1B /* HomeViewController.swift */; };
  234. C4836B412AC57AA400E3FA1B /* UIView+Visualization.m in Sources */ = {isa = PBXBuildFile; fileRef = C4836B3F2AC57AA400E3FA1B /* UIView+Visualization.m */; };
  235. C4836B4C2AC58BE200E3FA1B /* HomeFoodItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B4A2AC58BE200E3FA1B /* HomeFoodItem.swift */; };
  236. C4836B562AC5910E00E3FA1B /* CollectionViewUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B552AC5910E00E3FA1B /* CollectionViewUtil.swift */; };
  237. C4836B582AC5912300E3FA1B /* NibUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B572AC5912300E3FA1B /* NibUtil.swift */; };
  238. C4836B5A2AC6ED0600E3FA1B /* HomeDateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B592AC6ED0600E3FA1B /* HomeDateView.swift */; };
  239. C4836B622AC7035D00E3FA1B /* dateItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B612AC7035D00E3FA1B /* dateItem.swift */; };
  240. C4836B662AC7037600E3FA1B /* dateItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836B652AC7037600E3FA1B /* dateItem.xib */; };
  241. C4836B6C2AC7271800E3FA1B /* EverybodyLoveView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B6B2AC7271800E3FA1B /* EverybodyLoveView.swift */; };
  242. C4836B6F2AC72B0F00E3FA1B /* EverybodyLoveView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836B712AC72B0F00E3FA1B /* EverybodyLoveView.xib */; };
  243. C4836B772AC72C0900E3FA1B /* EverybodyLoveItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B762AC72C0900E3FA1B /* EverybodyLoveItem.swift */; };
  244. C4836B7A2AC7308400E3FA1B /* HomeDateView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836B7C2AC7308400E3FA1B /* HomeDateView.xib */; };
  245. C4836B852AC7F79600E3FA1B /* BaseTabbarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B842AC7F79600E3FA1B /* BaseTabbarController.swift */; };
  246. C4836B872AC8039500E3FA1B /* ADHBaseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B862AC8039500E3FA1B /* ADHBaseVC.swift */; };
  247. C4836C2B2AC87B5F00E3FA1B /* HomeRecommendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836C2A2AC87B5F00E3FA1B /* HomeRecommendView.swift */; };
  248. C4836C2D2AC87B6900E3FA1B /* HomeRecommendView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836C2C2AC87B6900E3FA1B /* HomeRecommendView.xib */; };
  249. C4836C302AC89C1800E3FA1B /* SearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836C2F2AC89C1800E3FA1B /* SearchView.swift */; };
  250. C4836C332AC8A26A00E3FA1B /* SearchView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836C352AC8A26A00E3FA1B /* SearchView.xib */; };
  251. C4A604582BF1BDC0005074A0 /* RemarkOderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4A604572BF1BDC0005074A0 /* RemarkOderView.swift */; };
  252. C4A6045B2BF1CA08005074A0 /* RemarkOderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4A6045D2BF1CA08005074A0 /* RemarkOderView.xib */; };
  253. C4A73B502B18E4D200A1595A /* SalesmanFirstShowView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4A73B522B18E4D200A1595A /* SalesmanFirstShowView.xib */; };
  254. C4A73B572B18E6C300A1595A /* AddressEditorVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4A73B592B18E6C300A1595A /* AddressEditorVC.xib */; };
  255. C4B082B82AF54CA500CD146E /* CheckOrderHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4B082BA2AF54CA500CD146E /* CheckOrderHeadView.xib */; };
  256. C4BFF79B2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4BFF79A2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift */; };
  257. C4BFF7F72AFD2D3500CCA462 /* Http+UploadImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4BFF7F62AFD2D3500CCA462 /* Http+UploadImage.swift */; };
  258. C4C51C6C2AF0E57E00F4636E /* AddresViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C6B2AF0E57E00F4636E /* AddresViewModel.swift */; };
  259. C4C51C6E2AF0E5A500F4636E /* AddresBaseModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C6D2AF0E5A400F4636E /* AddresBaseModel.swift */; };
  260. C4C51C712AF0EB0C00F4636E /* AddressEditorVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C6F2AF0EB0C00F4636E /* AddressEditorVC.swift */; };
  261. C4C51C732AF0FF4100F4636E /* AddressManagerVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C51C752AF0FF4100F4636E /* AddressManagerVC.xib */; };
  262. C4C51C822AF122A900F4636E /* EditorDeliveryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C812AF122A900F4636E /* EditorDeliveryView.swift */; };
  263. C4C51C842AF122B800F4636E /* EditorDeliveryView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C51C832AF122B800F4636E /* EditorDeliveryView.xib */; };
  264. C4C51C862AF1413100F4636E /* EditPersonNumView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C852AF1413100F4636E /* EditPersonNumView.swift */; };
  265. C4C51C882AF1413B00F4636E /* EditPersonNumView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C51C872AF1413B00F4636E /* EditPersonNumView.xib */; };
  266. C4C51C8A2AF1488E00F4636E /* ADHAlertView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C892AF1488E00F4636E /* ADHAlertView.swift */; };
  267. C4C6D8372AFC0D4900E1AFB5 /* phoneCallView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C6D8362AFC0D4900E1AFB5 /* phoneCallView.swift */; };
  268. C4C6D83A2AFC100400E1AFB5 /* phoneCallView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C6D83C2AFC100400E1AFB5 /* phoneCallView.xib */; };
  269. C4C6D8452AFCCB3900E1AFB5 /* BalanceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C6D8432AFCCB3900E1AFB5 /* BalanceViewController.swift */; };
  270. C4C6D8492AFCD21F00E1AFB5 /* PswPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C6D8482AFCD21F00E1AFB5 /* PswPayView.swift */; };
  271. C4C6D84B2AFCD22800E1AFB5 /* PswPayView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C6D84A2AFCD22800E1AFB5 /* PswPayView.xib */; };
  272. C4C9B85C2AF3C5FE00C13A61 /* YDRectCorner.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C9B85B2AF3C5FE00C13A61 /* YDRectCorner.swift */; };
  273. C4C9B8652AF3C7F900C13A61 /* UIView+rounded.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C9B8642AF3C7F900C13A61 /* UIView+rounded.swift */; };
  274. C4CF5F052AC97D6800B6B2D9 /* HomeViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F042AC97D6800B6B2D9 /* HomeViewModel.swift */; };
  275. C4CF5F092AC97DB500B6B2D9 /* TCHomeGetDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F082AC97DB500B6B2D9 /* TCHomeGetDataModel.swift */; };
  276. C4CF5F0D2AC9801300B6B2D9 /* MCHud.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F0C2AC9801300B6B2D9 /* MCHud.swift */; };
  277. C4CF5F132AC9813B00B6B2D9 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F102AC9813B00B6B2D9 /* MBProgressHUD.m */; };
  278. C4CF5F142AC9813B00B6B2D9 /* UIViewController+HUB.m in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F122AC9813B00B6B2D9 /* UIViewController+HUB.m */; };
  279. C4CF5F3E2ACD3B8000B6B2D9 /* UserDefaultUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F3D2ACD3B8000B6B2D9 /* UserDefaultUtil.swift */; };
  280. C4CF5F422ACD3EDA00B6B2D9 /* StartupPageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F412ACD3EDA00B6B2D9 /* StartupPageViewController.swift */; };
  281. C4CF5F452ACD436600B6B2D9 /* StartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F442ACD436600B6B2D9 /* StartView.swift */; };
  282. C4CF5F4A2ACD468000B6B2D9 /* StartView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4CF5F4C2ACD468000B6B2D9 /* StartView.xib */; };
  283. C4CF5F5A2ACD509600B6B2D9 /* MenuTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F582ACD509600B6B2D9 /* MenuTableViewCell.swift */; };
  284. C4CF5F5D2ACD632600B6B2D9 /* TableViewUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F5C2ACD632600B6B2D9 /* TableViewUtil.swift */; };
  285. C4CF5F5F2ACD640000B6B2D9 /* MenuHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F5E2ACD640000B6B2D9 /* MenuHeadView.swift */; };
  286. C4CF5F612ACD640E00B6B2D9 /* MenuHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4CF5F602ACD640E00B6B2D9 /* MenuHeadView.xib */; };
  287. C4E333142B91891C004DD994 /* TwoSeparateMealsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4E333132B91891C004DD994 /* TwoSeparateMealsView.swift */; };
  288. C4EDD90D2AF2618A00BE8EFF /* ADHBaseNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD90C2AF2618A00BE8EFF /* ADHBaseNavigationController.swift */; };
  289. C4EDD9152AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD90F2AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift */; };
  290. C4EDD9162AF27C4800BE8EFF /* MCNavBarDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9102AF27C4800BE8EFF /* MCNavBarDelegate.swift */; };
  291. C4EDD9172AF27C4800BE8EFF /* MCNavBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9112AF27C4800BE8EFF /* MCNavBarView.swift */; };
  292. C4EDD9182AF27C4800BE8EFF /* MCNavBarSearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9122AF27C4800BE8EFF /* MCNavBarSearchView.swift */; };
  293. C4EDD9192AF27C4800BE8EFF /* MCNavBarSegmentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9132AF27C4800BE8EFF /* MCNavBarSegmentView.swift */; };
  294. C4EDD91A2AF27C4800BE8EFF /* MCNavBarCustomView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9142AF27C4800BE8EFF /* MCNavBarCustomView.swift */; };
  295. C4EDD9212AF27CD400BE8EFF /* UIFont+Fonts.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD91F2AF27CD400BE8EFF /* UIFont+Fonts.m */; };
  296. C4EDD9512AF27DDC00BE8EFF /* UIView+Segment.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9232AF27DDC00BE8EFF /* UIView+Segment.m */; };
  297. C4EDD9522AF27DDC00BE8EFF /* UIView+XIB.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9242AF27DDC00BE8EFF /* UIView+XIB.m */; };
  298. C4EDD9532AF27DDC00BE8EFF /* UIView+Nib.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9252AF27DDC00BE8EFF /* UIView+Nib.m */; };
  299. C4EDD9542AF27DDC00BE8EFF /* UIView+GestureCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9282AF27DDC00BE8EFF /* UIView+GestureCallback.m */; };
  300. C4EDD9552AF27DDC00BE8EFF /* UIView+ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD92B2AF27DDC00BE8EFF /* UIView+ViewController.m */; };
  301. C4EDD9562AF27DDC00BE8EFF /* succeed.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD92F2AF27DDC00BE8EFF /* succeed.png */; };
  302. C4EDD9572AF27DDC00BE8EFF /* UIView+MAC.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9312AF27DDC00BE8EFF /* UIView+MAC.m */; };
  303. C4EDD9582AF27DDC00BE8EFF /* UIView+BlockGesture.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9322AF27DDC00BE8EFF /* UIView+BlockGesture.m */; };
  304. C4EDD9592AF27DDC00BE8EFF /* UIView+Visualization.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9332AF27DDC00BE8EFF /* UIView+Visualization.m */; };
  305. C4EDD95B2AF27DDC00BE8EFF /* EAFeatureItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9392AF27DDC00BE8EFF /* EAFeatureItem.m */; };
  306. C4EDD95C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD93C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m */; };
  307. C4EDD95D2AF27DDC00BE8EFF /* UIView+Shake.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD93D2AF27DDC00BE8EFF /* UIView+Shake.m */; };
  308. C4EDD95E2AF27DDC00BE8EFF /* UIView+XMGExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD93E2AF27DDC00BE8EFF /* UIView+XMGExtension.m */; };
  309. C4EDD95F2AF27DDC00BE8EFF /* error.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9412AF27DDC00BE8EFF /* error.png */; };
  310. C4EDD9602AF27DDC00BE8EFF /* UIView+AnimationProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9432AF27DDC00BE8EFF /* UIView+AnimationProperty.m */; };
  311. C4EDD9612AF27DDC00BE8EFF /* UIView+Hint.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9442AF27DDC00BE8EFF /* UIView+Hint.m */; };
  312. C4EDD9622AF27DDC00BE8EFF /* UIView+Blur.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9462AF27DDC00BE8EFF /* UIView+Blur.m */; };
  313. C4EDD9632AF27DDC00BE8EFF /* UIView+GlowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9472AF27DDC00BE8EFF /* UIView+GlowView.m */; };
  314. C4EDD9642AF27DDC00BE8EFF /* UIView+JYPBadgeView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD94C2AF27DDC00BE8EFF /* UIView+JYPBadgeView.m */; };
  315. C4EDD9652AF27DDC00BE8EFF /* UIView+Find.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD94D2AF27DDC00BE8EFF /* UIView+Find.m */; };
  316. C4EDD9662AF27DDC00BE8EFF /* UIView+RecursiveDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD94E2AF27DDC00BE8EFF /* UIView+RecursiveDescription.m */; };
  317. C4EDD9672AF27DDC00BE8EFF /* UIView+Screenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9502AF27DDC00BE8EFF /* UIView+Screenshot.m */; };
  318. C4EDD9712AF27EF400BE8EFF /* QFTSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD96A2AF27EF400BE8EFF /* QFTSearchBar.m */; };
  319. C4EDD9722AF27EF400BE8EFF /* QFTMoreSearchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD96C2AF27EF400BE8EFF /* QFTMoreSearchCell.m */; };
  320. C4EDD9732AF27EF400BE8EFF /* QFTMoreSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD96D2AF27EF400BE8EFF /* QFTMoreSearchCell.xib */; };
  321. C4EDD9742AF27EF400BE8EFF /* QFTSearchContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9702AF27EF400BE8EFF /* QFTSearchContentView.m */; };
  322. C4EDD97A2AF2849300BE8EFF /* MCDZNEmptyDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9782AF2849300BE8EFF /* MCDZNEmptyDelegate.swift */; };
  323. C4EDD97C2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD97B2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift */; };
  324. C4EDD9D52AF2879100BE8EFF /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9A72AF2879100BE8EFF /* UIScrollView+MJRefresh.m */; };
  325. C4EDD9D62AF2879100BE8EFF /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9A82AF2879100BE8EFF /* MJRefreshConst.m */; };
  326. C4EDD9D72AF2879100BE8EFF /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9AC2AF2879100BE8EFF /* MJRefresh.bundle */; };
  327. C4EDD9D82AF2879100BE8EFF /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9AE2AF2879100BE8EFF /* UIScrollView+MJExtension.m */; };
  328. C4EDD9D92AF2879100BE8EFF /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9B12AF2879100BE8EFF /* NSBundle+MJRefresh.m */; };
  329. C4EDD9DA2AF2879100BE8EFF /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9B22AF2879100BE8EFF /* UIView+MJExtension.m */; };
  330. C4EDD9DB2AF2879100BE8EFF /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9B92AF2879100BE8EFF /* MJRefreshBackGifFooter.m */; };
  331. C4EDD9DC2AF2879100BE8EFF /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9BA2AF2879100BE8EFF /* MJRefreshBackStateFooter.m */; };
  332. C4EDD9DD2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9BB2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m */; };
  333. C4EDD9DE2AF2879100BE8EFF /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C02AF2879100BE8EFF /* MJRefreshAutoStateFooter.m */; };
  334. C4EDD9DF2AF2879100BE8EFF /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C12AF2879100BE8EFF /* MJRefreshAutoGifFooter.m */; };
  335. C4EDD9E02AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C22AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m */; };
  336. C4EDD9E12AF2879100BE8EFF /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C42AF2879100BE8EFF /* MJRefreshNormalHeader.m */; };
  337. C4EDD9E22AF2879100BE8EFF /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C82AF2879100BE8EFF /* MJRefreshStateHeader.m */; };
  338. C4EDD9E32AF2879100BE8EFF /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C92AF2879100BE8EFF /* MJRefreshGifHeader.m */; };
  339. C4EDD9E42AF2879100BE8EFF /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9CB2AF2879100BE8EFF /* MJRefreshFooter.m */; };
  340. C4EDD9E52AF2879100BE8EFF /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9CD2AF2879100BE8EFF /* MJRefreshHeader.m */; };
  341. C4EDD9E62AF2879100BE8EFF /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9CF2AF2879100BE8EFF /* MJRefreshBackFooter.m */; };
  342. C4EDD9E72AF2879100BE8EFF /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9D02AF2879100BE8EFF /* MJRefreshAutoFooter.m */; };
  343. C4EDD9E82AF2879100BE8EFF /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9D22AF2879100BE8EFF /* MJRefreshComponent.m */; };
  344. C4EDDA022AF28B0D00BE8EFF /* UITableView+CellClass.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9EA2AF28B0D00BE8EFF /* UITableView+CellClass.m */; };
  345. C4EDDA032AF28B0D00BE8EFF /* MACTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9EB2AF28B0D00BE8EFF /* MACTableView.m */; };
  346. C4EDDA042AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9EE2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m */; };
  347. C4EDDA052AF28B0D00BE8EFF /* DZNEmptyDataView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9F32AF28B0D00BE8EFF /* DZNEmptyDataView.xib */; };
  348. C4EDDA062AF28B0D00BE8EFF /* DZNEmptyLoadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9F42AF28B0D00BE8EFF /* DZNEmptyLoadView.xib */; };
  349. C4EDDA072AF28B0D00BE8EFF /* DZNEmptyDataView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9F52AF28B0D00BE8EFF /* DZNEmptyDataView.swift */; };
  350. C4EDDA082AF28B0D00BE8EFF /* DZNEmptyLoadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9F62AF28B0D00BE8EFF /* DZNEmptyLoadView.swift */; };
  351. C4EDDA092AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9F72AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m */; };
  352. C4EDDA0A2AF28B0D00BE8EFF /* icon_refresh_1@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FA2AF28B0D00BE8EFF /* icon_refresh_1@2x.png */; };
  353. C4EDDA0B2AF28B0D00BE8EFF /* icon_refresh_3@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FB2AF28B0D00BE8EFF /* icon_refresh_3@3x.png */; };
  354. C4EDDA0C2AF28B0D00BE8EFF /* icon_refresh_3@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FC2AF28B0D00BE8EFF /* icon_refresh_3@2x.png */; };
  355. C4EDDA0D2AF28B0D00BE8EFF /* icon_refresh_1@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FD2AF28B0D00BE8EFF /* icon_refresh_1@3x.png */; };
  356. C4EDDA0E2AF28B0D00BE8EFF /* icon_refresh_2@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FF2AF28B0D00BE8EFF /* icon_refresh_2@3x.png */; };
  357. C4EDDA0F2AF28B0D00BE8EFF /* icon_refresh_2@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDDA002AF28B0D00BE8EFF /* icon_refresh_2@2x.png */; };
  358. C4EDDA102AF28B0D00BE8EFF /* MACRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA012AF28B0D00BE8EFF /* MACRefreshHeader.m */; };
  359. C4EDDA1D2AF28B7400BE8EFF /* MACBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA122AF28B7400BE8EFF /* MACBaseCell.m */; };
  360. C4EDDA1E2AF28B7400BE8EFF /* CellDataAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA152AF28B7400BE8EFF /* CellDataAdapter.m */; };
  361. C4EDDA1F2AF28B7400BE8EFF /* MGSwipeTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA172AF28B7400BE8EFF /* MGSwipeTableCell.m */; };
  362. C4EDDA202AF28B7400BE8EFF /* MGSwipeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA1A2AF28B7400BE8EFF /* MGSwipeButton.m */; };
  363. C4EDDA212AF28B7400BE8EFF /* UITableViewCell+MAC.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA1B2AF28B7400BE8EFF /* UITableViewCell+MAC.m */; };
  364. C4EDDA252AF28BAC00BE8EFF /* Aspects.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA242AF28BAC00BE8EFF /* Aspects.m */; };
  365. C4EDDA502AF2969A00BE8EFF /* ShoppingCarDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA4F2AF2969A00BE8EFF /* ShoppingCarDetailView.swift */; };
  366. FF801E958CDC9F69594019BD /* Pods_ADHTuanCan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18DFFEA52857E4C78299BDB0 /* Pods_ADHTuanCan.framework */; };
  367. /* End PBXBuildFile section */
  368. /* Begin PBXContainerItemProxy section */
  369. C48363C52AC3D96500E3FA1B /* PBXContainerItemProxy */ = {
  370. isa = PBXContainerItemProxy;
  371. containerPortal = C48363A32AC3D96400E3FA1B /* Project object */;
  372. proxyType = 1;
  373. remoteGlobalIDString = C48363AA2AC3D96400E3FA1B;
  374. remoteInfo = ADHTuanCan;
  375. };
  376. C48363CF2AC3D96500E3FA1B /* PBXContainerItemProxy */ = {
  377. isa = PBXContainerItemProxy;
  378. containerPortal = C48363A32AC3D96400E3FA1B /* Project object */;
  379. proxyType = 1;
  380. remoteGlobalIDString = C48363AA2AC3D96400E3FA1B;
  381. remoteInfo = ADHTuanCan;
  382. };
  383. /* End PBXContainerItemProxy section */
  384. /* Begin PBXFileReference section */
  385. 18DFFEA52857E4C78299BDB0 /* Pods_ADHTuanCan.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ADHTuanCan.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  386. A392503CF9C8A459BF93B985 /* Pods-ADHTuanCan.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ADHTuanCan.release.xcconfig"; path = "Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan.release.xcconfig"; sourceTree = "<group>"; };
  387. C40690DA2B0714EE002688FD /* CheckOrderFootView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CheckOrderFootView.xib; sourceTree = "<group>"; };
  388. C40690DB2B0714EE002688FD /* CheckOrderFootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CheckOrderFootView.swift; sourceTree = "<group>"; };
  389. C40690E82B07A2FE002688FD /* DayCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DayCollectionViewCell.m; sourceTree = "<group>"; };
  390. C40690E92B07A2FE002688FD /* MonthTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MonthTableViewCell.m; sourceTree = "<group>"; };
  391. C40690EA2B07A2FE002688FD /* MonthModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MonthModel.m; sourceTree = "<group>"; };
  392. C40690EC2B07A2FE002688FD /* DayCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DayCollectionViewCell.h; sourceTree = "<group>"; };
  393. C40690ED2B07A2FE002688FD /* MonthTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonthTableViewCell.h; sourceTree = "<group>"; };
  394. C40690EF2B07A2FE002688FD /* MonthModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonthModel.h; sourceTree = "<group>"; };
  395. C40690F42B07AAF9002688FD /* RectCornerUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RectCornerUtil.swift; sourceTree = "<group>"; };
  396. C40691412B08BC92002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/TCLogingViewController.xib; sourceTree = "<group>"; };
  397. C40691462B08BD4F002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/EditPayPSWViewController.xib; sourceTree = "<group>"; };
  398. C40691492B08BD51002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/EditPayPSWViewController.strings; sourceTree = "<group>"; };
  399. C406914B2B08BD54002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/EditPayPSWViewController.strings"; sourceTree = "<group>"; };
  400. C406914E2B08BD72002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/TCLogingViewController.strings; sourceTree = "<group>"; };
  401. C40691502B08BD75002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/TCLogingViewController.strings"; sourceTree = "<group>"; };
  402. C40691522B08BE3F002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/RegisteViewController.xib; sourceTree = "<group>"; };
  403. C40691552B08BE41002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/RegisteViewController.strings; sourceTree = "<group>"; };
  404. C40691572B08BE44002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/RegisteViewController.strings"; sourceTree = "<group>"; };
  405. C40691592B08BEB7002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/CodeViewController.xib; sourceTree = "<group>"; };
  406. C406915C2B08BEB8002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CodeViewController.strings; sourceTree = "<group>"; };
  407. C406915E2B08BEBA002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/CodeViewController.strings"; sourceTree = "<group>"; };
  408. C40691602B08BEF6002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PhoneLoginViewController.xib; sourceTree = "<group>"; };
  409. C40691632B08BEF8002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PhoneLoginViewController.strings; sourceTree = "<group>"; };
  410. C40691652B08BEFA002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PhoneLoginViewController.strings"; sourceTree = "<group>"; };
  411. C40691672B08BFE9002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/EditLoginPSWViewController.xib; sourceTree = "<group>"; };
  412. C406916A2B08BFEB002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/EditLoginPSWViewController.strings; sourceTree = "<group>"; };
  413. C406916C2B08BFED002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/EditLoginPSWViewController.strings"; sourceTree = "<group>"; };
  414. C406A07F2B9191D6005A6423 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/TwoSeparateMealsView.xib; sourceTree = "<group>"; };
  415. C406A0822B9191D8005A6423 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/TwoSeparateMealsView.strings; sourceTree = "<group>"; };
  416. C406A0842B9191D9005A6423 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/TwoSeparateMealsView.strings"; sourceTree = "<group>"; };
  417. C406A0852B91D3E9005A6423 /* WMFloatButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WMFloatButton.swift; sourceTree = "<group>"; };
  418. C406A0872B91F4C5005A6423 /* AddMembersCheckView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddMembersCheckView.swift; sourceTree = "<group>"; };
  419. C406A0912B91FBBD005A6423 /* TeamMembersCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TeamMembersCell.xib; sourceTree = "<group>"; };
  420. C406A0932B91FBC5005A6423 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddMembersCheckView.xib; sourceTree = "<group>"; };
  421. C406A0962B91FBC9005A6423 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddMembersCheckView.strings; sourceTree = "<group>"; };
  422. C406A0982B91FBCD005A6423 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddMembersCheckView.strings"; sourceTree = "<group>"; };
  423. C40AE3A92B95CB5A007469C0 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/RechargeAmountViewController.xib; sourceTree = "<group>"; };
  424. C40AE3AC2B95CB5D007469C0 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/RechargeAmountViewController.strings; sourceTree = "<group>"; };
  425. C40AE3AE2B95CB5F007469C0 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/RechargeAmountViewController.strings"; sourceTree = "<group>"; };
  426. C40AE3B02B95E6A7007469C0 /* LanguageSetVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LanguageSetVC.swift; sourceTree = "<group>"; };
  427. C40AE3B12B95E6A7007469C0 /* LanguageSetVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LanguageSetVC.xib; sourceTree = "<group>"; };
  428. C4110B012B47F53B00B23195 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Main.strings; sourceTree = "<group>"; };
  429. C4110B472B47F9FC00B23195 /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
  430. C4144CD32AF91DCB00B5F73C /* OrderDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailViewController.swift; sourceTree = "<group>"; };
  431. C4144CD42AF91DCB00B5F73C /* OrderDetailViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = OrderDetailViewController.xib; sourceTree = "<group>"; };
  432. C4194E7B2B565DAC00B60D41 /* PaySuccessView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PaySuccessView.swift; sourceTree = "<group>"; };
  433. C4194E892B566AC300B60D41 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PaySuccessView.xib; sourceTree = "<group>"; };
  434. C4194E8C2B566AC500B60D41 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PaySuccessView.strings; sourceTree = "<group>"; };
  435. C4194E8E2B566AC900B60D41 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PaySuccessView.strings"; sourceTree = "<group>"; };
  436. C41DA49C2AFEF9D500707C5D /* MealEvaluateListVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealEvaluateListVC.swift; sourceTree = "<group>"; };
  437. C41DA49D2AFEF9D500707C5D /* MealEvaluateListVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MealEvaluateListVC.xib; sourceTree = "<group>"; };
  438. C41DA4A02AFEFC4F00707C5D /* MealEcaluateCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealEcaluateCell.swift; sourceTree = "<group>"; };
  439. C41DA4A12AFEFC4F00707C5D /* MealEcaluateCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MealEcaluateCell.xib; sourceTree = "<group>"; };
  440. C41DA4A52AFF176000707C5D /* IntegralListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegralListViewController.swift; sourceTree = "<group>"; };
  441. C41DA4A62AFF176000707C5D /* IntegralListViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = IntegralListViewController.xib; sourceTree = "<group>"; };
  442. C41DA4A92AFF17B000707C5D /* IntegralHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegralHeadView.swift; sourceTree = "<group>"; };
  443. C41DA4AD2AFF19E000707C5D /* IntegralViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegralViewCell.swift; sourceTree = "<group>"; };
  444. C41DA4AE2AFF19E000707C5D /* IntegralViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = IntegralViewCell.xib; sourceTree = "<group>"; };
  445. C41DA4B12AFF1E6500707C5D /* IntegralSectiionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegralSectiionView.swift; sourceTree = "<group>"; };
  446. C41DA4B62AFF22DD00707C5D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/IntegralHeadView.xib; sourceTree = "<group>"; };
  447. C41DA4B92AFF22DE00707C5D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/IntegralHeadView.strings; sourceTree = "<group>"; };
  448. C41DA4BB2AFF22E000707C5D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/IntegralHeadView.strings"; sourceTree = "<group>"; };
  449. C41DA4C42AFF232800707C5D /* IntegralSectiionView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = IntegralSectiionView.xib; sourceTree = "<group>"; };
  450. C41DA4C62AFF39BE00707C5D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ReplaceFoodView.xib; sourceTree = "<group>"; };
  451. C41DA4C92AFF39BF00707C5D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ReplaceFoodView.strings; sourceTree = "<group>"; };
  452. C41DA4CB2AFF39C100707C5D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ReplaceFoodView.strings"; sourceTree = "<group>"; };
  453. C41DA4CD2AFF44FF00707C5D /* DiscountsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscountsViewController.swift; sourceTree = "<group>"; };
  454. C41DA4CE2AFF44FF00707C5D /* DiscountsViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DiscountsViewController.xib; sourceTree = "<group>"; };
  455. C41DA4D32AFFAB2400707C5D /* DiscountsListViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscountsListViewCell.swift; sourceTree = "<group>"; };
  456. C41DA4D82AFFB02700707C5D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/DiscountsListViewCell.xib; sourceTree = "<group>"; };
  457. C41DA4DB2AFFB02900707C5D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/DiscountsListViewCell.strings; sourceTree = "<group>"; };
  458. C41DA4DD2AFFB02D00707C5D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/DiscountsListViewCell.strings"; sourceTree = "<group>"; };
  459. C41DA4DE2AFFC03B00707C5D /* DiscountsSectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscountsSectionView.swift; sourceTree = "<group>"; };
  460. C41DA4E02AFFC04900707C5D /* DiscountsSectionView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DiscountsSectionView.xib; sourceTree = "<group>"; };
  461. C41DA4E22AFFC58000707C5D /* DiscountsFootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscountsFootView.swift; sourceTree = "<group>"; };
  462. C41DA4E42AFFC59100707C5D /* DiscountsFootView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DiscountsFootView.xib; sourceTree = "<group>"; };
  463. C41DA4E72AFFD2DF00707C5D /* RuleDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RuleDetailViewController.swift; sourceTree = "<group>"; };
  464. C41DA4E82AFFD2DF00707C5D /* RuleDetailViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RuleDetailViewController.xib; sourceTree = "<group>"; };
  465. C41DA4EB2AFFDDDE00707C5D /* PromotionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PromotionCell.swift; sourceTree = "<group>"; };
  466. C41DA4EC2AFFDDDE00707C5D /* PromotionCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PromotionCell.xib; sourceTree = "<group>"; };
  467. C41DA4F02AFFE1C400707C5D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PromotionSheetView.xib; sourceTree = "<group>"; };
  468. C41DA4F32AFFE1C600707C5D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PromotionSheetView.strings; sourceTree = "<group>"; };
  469. C41DA4F52AFFE1C700707C5D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PromotionSheetView.strings"; sourceTree = "<group>"; };
  470. C42AEDCF2B0312070045EF66 /* SalesmanFirstShowView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SalesmanFirstShowView.swift; sourceTree = "<group>"; };
  471. C42AEDD42B035A9D0045EF66 /* MCDatePikerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerView.swift; sourceTree = "<group>"; };
  472. C42AEDD52B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerStyleDelegate.swift; sourceTree = "<group>"; };
  473. C42AEDD62B035A9D0045EF66 /* MCDatePikerDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerDelegate.swift; sourceTree = "<group>"; };
  474. C42AEDD82B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerStyleDelegateImp.swift; sourceTree = "<group>"; };
  475. C42AEDD92B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerDelegateImp_yyyyMM.swift; sourceTree = "<group>"; };
  476. C42AEDDA2B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerDelegateImp_HHmm.swift; sourceTree = "<group>"; };
  477. C42AEDE22B03717F0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ChangeMealCollectionView.xib; sourceTree = "<group>"; };
  478. C42AEDE52B0371810045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ChangeMealCollectionView.strings; sourceTree = "<group>"; };
  479. C42AEDE72B0371820045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ChangeMealCollectionView.strings"; sourceTree = "<group>"; };
  480. C42AEDE92B03727E0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HomeViewController.xib; sourceTree = "<group>"; };
  481. C42AEDEC2B0372830045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/HomeViewController.strings; sourceTree = "<group>"; };
  482. C42AEDEE2B0372860045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/HomeViewController.strings"; sourceTree = "<group>"; };
  483. C42AEDF02B0372D70045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HomeSecondViewController.xib; sourceTree = "<group>"; };
  484. C42AEDF32B0372D80045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/HomeSecondViewController.strings; sourceTree = "<group>"; };
  485. C42AEDF52B0372D90045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/HomeSecondViewController.strings"; sourceTree = "<group>"; };
  486. C42AEDF92B03731E0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HomeFoodItem.xib; sourceTree = "<group>"; };
  487. C42AEDFC2B0373200045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/HomeFoodItem.strings; sourceTree = "<group>"; };
  488. C42AEDFE2B0373210045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/HomeFoodItem.strings"; sourceTree = "<group>"; };
  489. C42AEE002B03737D0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/EverybodyLoveItem.xib; sourceTree = "<group>"; };
  490. C42AEE032B03737E0045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/EverybodyLoveItem.strings; sourceTree = "<group>"; };
  491. C42AEE052B0373800045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/EverybodyLoveItem.strings"; sourceTree = "<group>"; };
  492. C42AEE0E2B0376F70045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddresViewCell.xib; sourceTree = "<group>"; };
  493. C42AEE112B0376F90045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddresViewCell.strings; sourceTree = "<group>"; };
  494. C42AEE132B0376FB0045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddresViewCell.strings"; sourceTree = "<group>"; };
  495. C42AEE152B03786A0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PersonalInformationVC.xib; sourceTree = "<group>"; };
  496. C42AEE182B03786B0045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PersonalInformationVC.strings; sourceTree = "<group>"; };
  497. C42AEE1A2B03786C0045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PersonalInformationVC.strings"; sourceTree = "<group>"; };
  498. C42AEE1C2B037AED0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/UnsubscribeViewController.xib; sourceTree = "<group>"; };
  499. C42AEE1F2B037AEE0045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/UnsubscribeViewController.strings; sourceTree = "<group>"; };
  500. C42AEE212B037AEF0045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/UnsubscribeViewController.strings"; sourceTree = "<group>"; };
  501. C42AEE232B037BD40045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddEvaluateCell.xib; sourceTree = "<group>"; };
  502. C42AEE262B037BD50045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddEvaluateCell.strings; sourceTree = "<group>"; };
  503. C42AEE282B037BD60045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddEvaluateCell.strings"; sourceTree = "<group>"; };
  504. C42AEE292B04D9CA0045EF66 /* RechargeAmountViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RechargeAmountViewController.swift; sourceTree = "<group>"; };
  505. C42BB5532ADD457B003FF663 /* RegisteViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisteViewController.swift; sourceTree = "<group>"; };
  506. C42BB55A2ADD4C50003FF663 /* CodeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CodeViewController.swift; sourceTree = "<group>"; };
  507. C42BB55F2ADD5045003FF663 /* MCProxyTextViewRx.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCProxyTextViewRx.swift; sourceTree = "<group>"; };
  508. C42BB5602ADD5045003FF663 /* MCProxyTextFieldRx.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCProxyTextFieldRx.swift; sourceTree = "<group>"; };
  509. C42BB5632ADD56D7003FF663 /* ElementUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ElementUtil.swift; sourceTree = "<group>"; };
  510. C42BB5712ADD69C1003FF663 /* LoginModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginModel.swift; sourceTree = "<group>"; };
  511. C42BB5742ADD6F27003FF663 /* LoginViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginViewModel.swift; sourceTree = "<group>"; };
  512. C42FF79A2B15DDA200B591F4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/SingleMealDetailController.xib; sourceTree = "<group>"; };
  513. C42FF79D2B15DDA400B591F4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SingleMealDetailController.strings; sourceTree = "<group>"; };
  514. C42FF79F2B15DDA500B591F4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SingleMealDetailController.strings"; sourceTree = "<group>"; };
  515. C42FF7A12B15DED500B591F4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/SetMealDetailVC.xib; sourceTree = "<group>"; };
  516. C42FF7A42B15DED900B591F4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SetMealDetailVC.strings; sourceTree = "<group>"; };
  517. C42FF7A62B15DEDA00B591F4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SetMealDetailVC.strings"; sourceTree = "<group>"; };
  518. C42FF7A82B15DF4700B591F4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/CheckOrderViewController.xib; sourceTree = "<group>"; };
  519. C42FF7AB2B15DF4900B591F4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CheckOrderViewController.strings; sourceTree = "<group>"; };
  520. C42FF7AD2B15DF4A00B591F4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/CheckOrderViewController.strings"; sourceTree = "<group>"; };
  521. C42FF7AF2B15DF7A00B591F4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ShoppingCarDetailView.xib; sourceTree = "<group>"; };
  522. C42FF7B22B15DF7B00B591F4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ShoppingCarDetailView.strings; sourceTree = "<group>"; };
  523. C42FF7B42B15DF7C00B591F4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ShoppingCarDetailView.strings"; sourceTree = "<group>"; };
  524. C438E3C72AF795A700F671AE /* OrderTypeEnum.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderTypeEnum.swift; sourceTree = "<group>"; };
  525. C438E3C92AF7B4F300F671AE /* OrderViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderViewModel.swift; sourceTree = "<group>"; };
  526. C44301F42AF5DC830098C854 /* selectAddressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = selectAddressView.swift; sourceTree = "<group>"; };
  527. C44301F82AF5DEBA0098C854 /* OrderAddressCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderAddressCell.swift; sourceTree = "<group>"; };
  528. C44301FD2AF5E1860098C854 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OrderAddressCell.xib; sourceTree = "<group>"; };
  529. C44302002AF5E1880098C854 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OrderAddressCell.strings; sourceTree = "<group>"; };
  530. C44302022AF5E1880098C854 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OrderAddressCell.strings"; sourceTree = "<group>"; };
  531. C44302162AF5F5370098C854 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/selectAddressView.xib; sourceTree = "<group>"; };
  532. C44302192AF5F5460098C854 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/selectAddressView.strings; sourceTree = "<group>"; };
  533. C443021B2AF5F5480098C854 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/selectAddressView.strings"; sourceTree = "<group>"; };
  534. C443021E2AF5FA330098C854 /* OrderDataModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDataModel.swift; sourceTree = "<group>"; };
  535. C44302202AF6043B0098C854 /* PayMentSelectView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PayMentSelectView.swift; sourceTree = "<group>"; };
  536. C44302252AF6073A0098C854 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PayMentSelectView.xib; sourceTree = "<group>"; };
  537. C44302282AF6073C0098C854 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PayMentSelectView.strings; sourceTree = "<group>"; };
  538. C443022A2AF6073C0098C854 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PayMentSelectView.strings"; sourceTree = "<group>"; };
  539. C443022D2AF615780098C854 /* UserPayMentSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserPayMentSheet.swift; sourceTree = "<group>"; };
  540. C443023B2AF61A2A0098C854 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/UserPayMentSheet.xib; sourceTree = "<group>"; };
  541. C443023E2AF61A2D0098C854 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/UserPayMentSheet.strings; sourceTree = "<group>"; };
  542. C44302402AF61A300098C854 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/UserPayMentSheet.strings"; sourceTree = "<group>"; };
  543. C44302432AF6835B0098C854 /* OderDetailHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OderDetailHeadView.swift; sourceTree = "<group>"; };
  544. C448CCF52AFE37CE00B3B068 /* AddEvaluateViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddEvaluateViewController.swift; sourceTree = "<group>"; };
  545. C448CCFC2AFE3B3F00B3B068 /* EvaluateViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EvaluateViewModel.swift; sourceTree = "<group>"; };
  546. C448CCFE2AFE3B5E00B3B068 /* EvaluateRequestModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EvaluateRequestModel.swift; sourceTree = "<group>"; };
  547. C448CD002AFE3DE200B3B068 /* AddEvaluateCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddEvaluateCell.swift; sourceTree = "<group>"; };
  548. C448CD0C2AFE4E8700B3B068 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddEvaluateViewController.xib; sourceTree = "<group>"; };
  549. C448CD0F2AFE4E9500B3B068 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddEvaluateViewController.strings"; sourceTree = "<group>"; };
  550. C448CD102AFE4E9800B3B068 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddEvaluateViewController.strings; sourceTree = "<group>"; };
  551. C448CD112AFE4FA900B3B068 /* textView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = textView.swift; sourceTree = "<group>"; };
  552. C448CD1D2AFE8AAF00B3B068 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MealHeadView.xib; sourceTree = "<group>"; };
  553. C448CD202AFE8AB000B3B068 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/MealHeadView.strings; sourceTree = "<group>"; };
  554. C448CD222AFE8AB200B3B068 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/MealHeadView.strings"; sourceTree = "<group>"; };
  555. C4498ED62B294D57005E43D0 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ApplyCompanySuccess.xib; sourceTree = "<group>"; };
  556. C4498ED92B294D5A005E43D0 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ApplyCompanySuccess.strings; sourceTree = "<group>"; };
  557. C4498EDB2B294D62005E43D0 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ApplyCompanySuccess.strings"; sourceTree = "<group>"; };
  558. C44CFA402AFB1AD1000D592D /* OrderDetailFootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailFootView.swift; sourceTree = "<group>"; };
  559. C44CFA442AFB2940000D592D /* OrderDetailSectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailSectionView.swift; sourceTree = "<group>"; };
  560. C44CFA462AFB2948000D592D /* OrderDetailSectionView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = OrderDetailSectionView.xib; sourceTree = "<group>"; };
  561. C44CFA482AFB3247000D592D /* payMentItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = payMentItemCell.swift; sourceTree = "<group>"; };
  562. C44CFA492AFB3247000D592D /* payMentItemCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = payMentItemCell.xib; sourceTree = "<group>"; };
  563. C44CFA562AFB5308000D592D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OrderDetailFootView.xib; sourceTree = "<group>"; };
  564. C44CFA592AFB530F000D592D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OrderDetailFootView.strings; sourceTree = "<group>"; };
  565. C44CFA5B2AFB530F000D592D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OrderDetailFootView.strings"; sourceTree = "<group>"; };
  566. C44CFA5F2AFB5CAD000D592D /* MyViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyViewModel.swift; sourceTree = "<group>"; };
  567. C44CFA612AFB5CCF000D592D /* MyRequestModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyRequestModel.swift; sourceTree = "<group>"; };
  568. C44CFA632AFB8084000D592D /* BrokerageCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BrokerageCell.swift; sourceTree = "<group>"; };
  569. C44CFA682AFB81FF000D592D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/BrokerageCell.xib; sourceTree = "<group>"; };
  570. C44CFA6B2AFB8204000D592D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BrokerageCell.strings; sourceTree = "<group>"; };
  571. C44CFA6D2AFB8205000D592D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BrokerageCell.strings"; sourceTree = "<group>"; };
  572. C44CFA6E2AFB8255000D592D /* BrokerageSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BrokerageSheetView.swift; sourceTree = "<group>"; };
  573. C44CFA732AFB8AB7000D592D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/BrokerageSheetView.xib; sourceTree = "<group>"; };
  574. C44CFA762AFB8ABA000D592D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BrokerageSheetView.strings; sourceTree = "<group>"; };
  575. C44CFA782AFB8ABB000D592D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BrokerageSheetView.strings"; sourceTree = "<group>"; };
  576. C44CFA792AFB8B89000D592D /* PromotionSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PromotionSheetView.swift; sourceTree = "<group>"; };
  577. C450016D2AD67CF000F96CFA /* OrderReadyCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderReadyCell.swift; sourceTree = "<group>"; };
  578. C450016E2AD67CF000F96CFA /* OrderReadyCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = OrderReadyCell.xib; sourceTree = "<group>"; };
  579. C4522D022B0DF21700808F76 /* ImagePreviewViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImagePreviewViewController.swift; sourceTree = "<group>"; };
  580. C4522D0D2B0E212500808F76 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  581. C4522D112B0E21A600808F76 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  582. C4522D132B0E21AA00808F76 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  583. C45411732B00DB740096F60E /* BalanceViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BalanceViewCell.swift; sourceTree = "<group>"; };
  584. C45411742B00DB740096F60E /* BalanceViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BalanceViewCell.xib; sourceTree = "<group>"; };
  585. C45411772B00DF200096F60E /* BalanceTabHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BalanceTabHeadView.swift; sourceTree = "<group>"; };
  586. C454117C2B00DF780096F60E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/BalanceTabHeadView.xib; sourceTree = "<group>"; };
  587. C454117F2B00DF790096F60E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BalanceTabHeadView.strings; sourceTree = "<group>"; };
  588. C45411812B00DF7B0096F60E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BalanceTabHeadView.strings"; sourceTree = "<group>"; };
  589. C45411832B00E38D0096F60E /* HomeSecondViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeSecondViewController.swift; sourceTree = "<group>"; };
  590. C45411882B012CB70096F60E /* PhoneLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneLoginViewController.swift; sourceTree = "<group>"; };
  591. C454118C2B0130970096F60E /* sortedNameEN.plist */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; path = sortedNameEN.plist; sourceTree = "<group>"; };
  592. C454118D2B0130970096F60E /* sortedNameCH.plist */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; path = sortedNameCH.plist; sourceTree = "<group>"; };
  593. C45411902B0130C40096F60E /* EWCountryCodeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EWCountryCodeViewController.swift; sourceTree = "<group>"; };
  594. C45654432B0A628800F3E628 /* WriteOffResonCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WriteOffResonCell.swift; sourceTree = "<group>"; };
  595. C45654442B0A628800F3E628 /* WriteOffResonCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WriteOffResonCell.xib; sourceTree = "<group>"; };
  596. C45654482B0B834200F3E628 /* TeamMembersViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TeamMembersViewController.swift; sourceTree = "<group>"; };
  597. C456544D2B0B845F00F3E628 /* TeamMembersCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TeamMembersCell.swift; sourceTree = "<group>"; };
  598. C45654512B0BA4DD00F3E628 /* TeamMembersAddView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TeamMembersAddView.swift; sourceTree = "<group>"; };
  599. C45654562B0C9BB900F3E628 /* EditPersonSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditPersonSheetView.swift; sourceTree = "<group>"; };
  600. C456545B2B0CA94E00F3E628 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/EditPersonSheetView.xib; sourceTree = "<group>"; };
  601. C456545E2B0CA95100F3E628 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/EditPersonSheetView.strings; sourceTree = "<group>"; };
  602. C45654602B0CA95200F3E628 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/EditPersonSheetView.strings"; sourceTree = "<group>"; };
  603. C4577CA62AEA7B88004D9439 /* SetMealDetailVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetMealDetailVC.swift; sourceTree = "<group>"; };
  604. C4577CAB2AEA7BE8004D9439 /* MealHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealHeadView.swift; sourceTree = "<group>"; };
  605. C4577CAF2AEA8BBC004D9439 /* MealCollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealCollectionView.swift; sourceTree = "<group>"; };
  606. C4577CB42AEA8E5C004D9439 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MealCollectionView.xib; sourceTree = "<group>"; };
  607. C4577CB72AEA8E5E004D9439 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/MealCollectionView.strings; sourceTree = "<group>"; };
  608. C4577CB92AEA8E5E004D9439 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/MealCollectionView.strings"; sourceTree = "<group>"; };
  609. C4577CBA2AEA8FFD004D9439 /* SetMealCollectionItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetMealCollectionItem.swift; sourceTree = "<group>"; };
  610. C4577CBB2AEA8FFD004D9439 /* SetMealCollectionItem.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SetMealCollectionItem.xib; sourceTree = "<group>"; };
  611. C4577CBE2AEA9A9B004D9439 /* DeliveryTimeSetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeliveryTimeSetView.swift; sourceTree = "<group>"; };
  612. C4577CC32AEA9DC7004D9439 /* SetMealViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetMealViewModel.swift; sourceTree = "<group>"; };
  613. C4577CC62AEA9E02004D9439 /* SetMealModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetMealModel.swift; sourceTree = "<group>"; };
  614. C4577CC82AEABA09004D9439 /* DeliveryTimeItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeliveryTimeItem.swift; sourceTree = "<group>"; };
  615. C4577CC92AEABA09004D9439 /* DeliveryTimeItem.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DeliveryTimeItem.xib; sourceTree = "<group>"; };
  616. C4577CCD2AEBBB2A004D9439 /* NeedKonwView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NeedKonwView.swift; sourceTree = "<group>"; };
  617. C4577CD32AEBC168004D9439 /* MealDescribeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealDescribeView.swift; sourceTree = "<group>"; };
  618. C4577CD52AEBC173004D9439 /* MealDescribeView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MealDescribeView.xib; sourceTree = "<group>"; };
  619. C4577CD82AEBC19F004D9439 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/NeedKonwView.xib; sourceTree = "<group>"; };
  620. C4577CDB2AEBC1A1004D9439 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/NeedKonwView.strings; sourceTree = "<group>"; };
  621. C4577CDD2AEBC1A1004D9439 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/NeedKonwView.strings"; sourceTree = "<group>"; };
  622. C4577CE02AEBC5C4004D9439 /* ChangeMealCollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangeMealCollectionView.swift; sourceTree = "<group>"; };
  623. C4577CE42AEBC8A7004D9439 /* ChangeMealCollectItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangeMealCollectItem.swift; sourceTree = "<group>"; };
  624. C4577CE52AEBC8A7004D9439 /* ChangeMealCollectItem.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChangeMealCollectItem.xib; sourceTree = "<group>"; };
  625. C4577CEE2AEBCEE9004D9439 /* NSObject+Hint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Hint.h"; sourceTree = "<group>"; };
  626. C4577CFB2AEBCEE9004D9439 /* NSObject+Hint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Hint.m"; sourceTree = "<group>"; };
  627. C459CE182B2AC917000D16DC /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ApplyWhiteManagerController.xib; sourceTree = "<group>"; };
  628. C459CE1B2B2AC919000D16DC /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ApplyWhiteManagerController.strings; sourceTree = "<group>"; };
  629. C459CE1D2B2AC91A000D16DC /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ApplyWhiteManagerController.strings"; sourceTree = "<group>"; };
  630. C45B67D42B19DBE200EA1725 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/TeamMembersViewController.xib; sourceTree = "<group>"; };
  631. C45B67D72B19DBE300EA1725 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/TeamMembersViewController.strings; sourceTree = "<group>"; };
  632. C45B67D92B19DBE500EA1725 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/TeamMembersViewController.strings"; sourceTree = "<group>"; };
  633. C45B67DB2B19DC1A00EA1725 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/TeamMembersAddView.xib; sourceTree = "<group>"; };
  634. C45B67DE2B19DC1C00EA1725 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/TeamMembersAddView.strings; sourceTree = "<group>"; };
  635. C45B67E02B19DC1D00EA1725 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/TeamMembersAddView.strings"; sourceTree = "<group>"; };
  636. C45B67E22B19DCE400EA1725 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ADHAlertView.xib; sourceTree = "<group>"; };
  637. C45B67E52B19DCE600EA1725 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ADHAlertView.strings; sourceTree = "<group>"; };
  638. C45B67E72B19DCE700EA1725 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ADHAlertView.strings"; sourceTree = "<group>"; };
  639. C45B67E92B19DD4600EA1725 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MenuTableViewCell.xib; sourceTree = "<group>"; };
  640. C45B67EC2B19DD4800EA1725 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/MenuTableViewCell.strings; sourceTree = "<group>"; };
  641. C45B67EE2B19DD4900EA1725 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/MenuTableViewCell.strings"; sourceTree = "<group>"; };
  642. C45B67F02B19DDBB00EA1725 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/BalanceViewController.xib; sourceTree = "<group>"; };
  643. C45B67F32B19DDBD00EA1725 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BalanceViewController.strings; sourceTree = "<group>"; };
  644. C45B67F52B19DDBD00EA1725 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BalanceViewController.strings"; sourceTree = "<group>"; };
  645. C45C1A6D2B282E3500221FBD /* ApplyCompanySuccess.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApplyCompanySuccess.swift; sourceTree = "<group>"; };
  646. C45C1A712B284CAE00221FBD /* ApplyAlertView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApplyAlertView.swift; sourceTree = "<group>"; };
  647. C45C1A762B284E0000221FBD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ApplyAlertView.xib; sourceTree = "<group>"; };
  648. C45C1A792B284E0200221FBD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ApplyAlertView.strings; sourceTree = "<group>"; };
  649. C45C1A7B2B284E0300221FBD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ApplyAlertView.strings"; sourceTree = "<group>"; };
  650. C45C66902B01CEE7005E13CE /* EditLoginPSWViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditLoginPSWViewController.swift; sourceTree = "<group>"; };
  651. C45C66952B01E42E005E13CE /* EditPayPSWViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditPayPSWViewController.swift; sourceTree = "<group>"; };
  652. C45C8A142AD182ED009D6C3A /* timeManageSheetView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = timeManageSheetView.h; sourceTree = "<group>"; };
  653. C45C8A152AD182ED009D6C3A /* timeManageSheetView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = timeManageSheetView.m; sourceTree = "<group>"; };
  654. C45C8A1A2AD18D41009D6C3A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/timeManageSheetView.xib; sourceTree = "<group>"; };
  655. C45C8A1D2AD18D45009D6C3A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/timeManageSheetView.strings; sourceTree = "<group>"; };
  656. C45C8A1F2AD18D45009D6C3A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/timeManageSheetView.strings"; sourceTree = "<group>"; };
  657. C45C8A272AD240B9009D6C3A /* OrderManagerVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderManagerVC.swift; sourceTree = "<group>"; };
  658. C45C8A342AD24932009D6C3A /* OrderListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderListCell.swift; sourceTree = "<group>"; };
  659. C45CE0772BC4748C0087A769 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OrderManagerVC.xib; sourceTree = "<group>"; };
  660. C45CE07A2BC474900087A769 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OrderManagerVC.strings; sourceTree = "<group>"; };
  661. C45CE07C2BC474910087A769 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OrderManagerVC.strings"; sourceTree = "<group>"; };
  662. C45CE07E2BC476440087A769 /* ShareQRcodeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareQRcodeView.swift; sourceTree = "<group>"; };
  663. C45CE0802BC4764F0087A769 /* ShareQRcodeView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShareQRcodeView.xib; sourceTree = "<group>"; };
  664. C45DC11F2AE90D230066BD93 /* LanguagesUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LanguagesUtil.swift; sourceTree = "<group>"; };
  665. C45DC1212AE91AB70066BD93 /* ImageView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageView.swift; sourceTree = "<group>"; };
  666. C45E1EC42AF9DC91005C9210 /* MyViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyViewController.swift; sourceTree = "<group>"; };
  667. C45E1EC92AF9E412005C9210 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MyViewController.xib; sourceTree = "<group>"; };
  668. C45E1ECC2AF9E415005C9210 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/MyViewController.strings; sourceTree = "<group>"; };
  669. C45E1ECE2AF9E415005C9210 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/MyViewController.strings"; sourceTree = "<group>"; };
  670. C45F2B812B0E7D9A0099D40E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OderDetailHeadView.xib; sourceTree = "<group>"; };
  671. C45F2B842B0E7D9D0099D40E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OderDetailHeadView.strings; sourceTree = "<group>"; };
  672. C45F2B862B0E7D9E0099D40E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OderDetailHeadView.strings"; sourceTree = "<group>"; };
  673. C45F2B8A2B0E7F640099D40E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OrderListCell.xib; sourceTree = "<group>"; };
  674. C45F2B8D2B0E7F660099D40E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OrderListCell.strings; sourceTree = "<group>"; };
  675. C45F2B912B0E7F6E0099D40E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OrderListCell.strings"; sourceTree = "<group>"; };
  676. C45F7AED2B34641C004D944F /* SaleDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SaleDetailView.swift; sourceTree = "<group>"; };
  677. C45F7AF12B346544004D944F /* SaleDetailViewCellTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SaleDetailViewCellTableViewCell.swift; sourceTree = "<group>"; };
  678. C45F7AF22B346544004D944F /* SaleDetailViewCellTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SaleDetailViewCellTableViewCell.xib; sourceTree = "<group>"; };
  679. C45F7AF62B347532004D944F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/SaleDetailView.xib; sourceTree = "<group>"; };
  680. C45F7AF92B347533004D944F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SaleDetailView.strings; sourceTree = "<group>"; };
  681. C45F7AFB2B347534004D944F /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SaleDetailView.strings"; sourceTree = "<group>"; };
  682. C461C4912B272F130010ABC6 /* ApplyWhiteManagerController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ApplyWhiteManagerController.swift; sourceTree = "<group>"; };
  683. C46731512AF9F6E400658C58 /* PersonalInformationVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PersonalInformationVC.swift; sourceTree = "<group>"; };
  684. C46731552AFA085500658C58 /* UnsubscribeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnsubscribeViewController.swift; sourceTree = "<group>"; };
  685. C467315A2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnsubscribeDetailVC.swift; sourceTree = "<group>"; };
  686. C467315F2AFA13FF00658C58 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/UnsubscribeDetailVC.xib; sourceTree = "<group>"; };
  687. C46731622AFA140000658C58 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/UnsubscribeDetailVC.strings; sourceTree = "<group>"; };
  688. C46731642AFA140100658C58 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/UnsubscribeDetailVC.strings"; sourceTree = "<group>"; };
  689. C470B5702AEE5BE3009046B4 /* SingleMealDetailController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SingleMealDetailController.swift; sourceTree = "<group>"; };
  690. C470B5742AEFBACB009046B4 /* AddRemarkView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddRemarkView.swift; sourceTree = "<group>"; };
  691. C470B5792AEFBD07009046B4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddRemarkView.xib; sourceTree = "<group>"; };
  692. C470B57C2AEFBD09009046B4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddRemarkView.strings; sourceTree = "<group>"; };
  693. C470B57E2AEFBD0A009046B4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddRemarkView.strings"; sourceTree = "<group>"; };
  694. C470B57F2AEFC3C1009046B4 /* ReplaceFoodView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReplaceFoodView.swift; sourceTree = "<group>"; };
  695. C470B58A2AEFEF39009046B4 /* ShoppingCarViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCarViewModel.swift; sourceTree = "<group>"; };
  696. C470B58C2AEFF1E2009046B4 /* ShopCarModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopCarModel.swift; sourceTree = "<group>"; };
  697. C470B5942AF0B05B009046B4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/DeliveryTimeSetView.xib; sourceTree = "<group>"; };
  698. C470B5972AF0B05D009046B4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/DeliveryTimeSetView.strings; sourceTree = "<group>"; };
  699. C470B5992AF0B05D009046B4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/DeliveryTimeSetView.strings"; sourceTree = "<group>"; };
  700. C470B59A2AF0BDB5009046B4 /* CheckOrderHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckOrderHeadView.swift; sourceTree = "<group>"; };
  701. C470B5A52AF0C719009046B4 /* CheckOrderViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckOrderViewController.swift; sourceTree = "<group>"; };
  702. C470B5AA2AF0D8C8009046B4 /* AddressManagerVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerVC.swift; sourceTree = "<group>"; };
  703. C470B5B12AF0DCBA009046B4 /* AddresViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddresViewCell.swift; sourceTree = "<group>"; };
  704. C47F82762BF1A989006C4B6E /* OrderNeedToKnow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderNeedToKnow.swift; sourceTree = "<group>"; };
  705. C47F82822BF1B305006C4B6E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OrderNeedToKnow.xib; sourceTree = "<group>"; };
  706. C47F82852BF1B307006C4B6E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OrderNeedToKnow.strings; sourceTree = "<group>"; };
  707. C47F82872BF1B308006C4B6E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OrderNeedToKnow.strings"; sourceTree = "<group>"; };
  708. C48363AB2AC3D96400E3FA1B /* ADHTuanCan.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ADHTuanCan.app; sourceTree = BUILT_PRODUCTS_DIR; };
  709. C48363AE2AC3D96400E3FA1B /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  710. C48363B52AC3D96400E3FA1B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  711. C48363B82AC3D96400E3FA1B /* ADHTuanCan.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = ADHTuanCan.xcdatamodel; sourceTree = "<group>"; };
  712. C48363BA2AC3D96500E3FA1B /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  713. C48363C42AC3D96500E3FA1B /* ADHTuanCanTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ADHTuanCanTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  714. C48363C82AC3D96500E3FA1B /* ADHTuanCanTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHTuanCanTests.swift; sourceTree = "<group>"; };
  715. C48363CE2AC3D96500E3FA1B /* ADHTuanCanUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ADHTuanCanUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  716. C48363D22AC3D96500E3FA1B /* ADHTuanCanUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHTuanCanUITests.swift; sourceTree = "<group>"; };
  717. C48363D42AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHTuanCanUITestsLaunchTests.swift; sourceTree = "<group>"; };
  718. C48368622AC3F00500E3FA1B /* ADHTuanCan-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ADHTuanCan-Bridging-Header.h"; sourceTree = "<group>"; };
  719. C4836A242AC3F6D500E3FA1B /* ADHcolor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHcolor.swift; sourceTree = "<group>"; };
  720. C4836A272AC3FBD900E3FA1B /* MacroDefinition.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MacroDefinition.swift; sourceTree = "<group>"; };
  721. C4836A362AC417BB00E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
  722. C4836A462AC41C1100E3FA1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  723. C4836A482AC41C1200E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  724. C4836A682AC516FC00E3FA1B /* MCResponseModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCResponseModel.swift; sourceTree = "<group>"; };
  725. C4836A692AC516FC00E3FA1B /* MCHttpUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCHttpUtil.swift; sourceTree = "<group>"; };
  726. C4836A6C2AC516FC00E3FA1B /* MCHttpRxExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCHttpRxExtension.swift; sourceTree = "<group>"; };
  727. C4836A752AC517AA00E3FA1B /* MCBaseModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCBaseModel.swift; sourceTree = "<group>"; };
  728. C4836A762AC517AA00E3FA1B /* MCBaseRequestModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCBaseRequestModel.swift; sourceTree = "<group>"; };
  729. C4836A772AC517AA00E3FA1B /* MCBaseViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCBaseViewModel.swift; sourceTree = "<group>"; };
  730. C4836A7C2AC5180A00E3FA1B /* NotificationUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationUtil.swift; sourceTree = "<group>"; };
  731. C4836A7D2AC5180A00E3FA1B /* Convert.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Convert.swift; sourceTree = "<group>"; };
  732. C4836A7E2AC5180A00E3FA1B /* OptionalUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OptionalUtil.swift; sourceTree = "<group>"; };
  733. C4836A802AC5180A00E3FA1B /* OtherGeneralMethod.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OtherGeneralMethod.swift; sourceTree = "<group>"; };
  734. C4836A812AC5180A00E3FA1B /* ArrayUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ArrayUtil.swift; sourceTree = "<group>"; };
  735. C4836A822AC5180A00E3FA1B /* GCDUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GCDUtil.swift; sourceTree = "<group>"; };
  736. C4836A842AC5180A00E3FA1B /* StringUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StringUtil.swift; sourceTree = "<group>"; };
  737. C4836AC72AC51FBB00E3FA1B /* TCLogingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TCLogingViewController.swift; sourceTree = "<group>"; };
  738. C4836AD32AC52D6300E3FA1B /* ADHTuanCan-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ADHTuanCan-Bridging-Header.h"; sourceTree = "<group>"; };
  739. C4836ADA2AC53FF200E3FA1B /* ContractView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContractView.swift; sourceTree = "<group>"; };
  740. C4836B162AC5597B00E3FA1B /* ButtonUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ButtonUtil.swift; sourceTree = "<group>"; };
  741. C4836B212AC5601900E3FA1B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ContractView.xib; sourceTree = "<group>"; };
  742. C4836B242AC5602900E3FA1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ContractView.strings; sourceTree = "<group>"; };
  743. C4836B252AC5602B00E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ContractView.strings"; sourceTree = "<group>"; };
  744. C4836B3B2AC5784900E3FA1B /* HomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewController.swift; sourceTree = "<group>"; };
  745. C4836B3F2AC57AA400E3FA1B /* UIView+Visualization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Visualization.m"; sourceTree = "<group>"; };
  746. C4836B402AC57AA400E3FA1B /* UIView+Visualization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Visualization.h"; sourceTree = "<group>"; };
  747. C4836B4A2AC58BE200E3FA1B /* HomeFoodItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeFoodItem.swift; sourceTree = "<group>"; };
  748. C4836B552AC5910E00E3FA1B /* CollectionViewUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionViewUtil.swift; sourceTree = "<group>"; };
  749. C4836B572AC5912300E3FA1B /* NibUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NibUtil.swift; sourceTree = "<group>"; };
  750. C4836B592AC6ED0600E3FA1B /* HomeDateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeDateView.swift; sourceTree = "<group>"; };
  751. C4836B612AC7035D00E3FA1B /* dateItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = dateItem.swift; sourceTree = "<group>"; };
  752. C4836B652AC7037600E3FA1B /* dateItem.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = dateItem.xib; sourceTree = "<group>"; };
  753. C4836B6B2AC7271800E3FA1B /* EverybodyLoveView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EverybodyLoveView.swift; sourceTree = "<group>"; };
  754. C4836B702AC72B0F00E3FA1B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/EverybodyLoveView.xib; sourceTree = "<group>"; };
  755. C4836B732AC72B1400E3FA1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/EverybodyLoveView.strings; sourceTree = "<group>"; };
  756. C4836B752AC72B1400E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/EverybodyLoveView.strings"; sourceTree = "<group>"; };
  757. C4836B762AC72C0900E3FA1B /* EverybodyLoveItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EverybodyLoveItem.swift; sourceTree = "<group>"; };
  758. C4836B7B2AC7308400E3FA1B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HomeDateView.xib; sourceTree = "<group>"; };
  759. C4836B7E2AC7308800E3FA1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/HomeDateView.strings; sourceTree = "<group>"; };
  760. C4836B802AC7308800E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/HomeDateView.strings"; sourceTree = "<group>"; };
  761. C4836B842AC7F79600E3FA1B /* BaseTabbarController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseTabbarController.swift; sourceTree = "<group>"; };
  762. C4836B862AC8039500E3FA1B /* ADHBaseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHBaseVC.swift; sourceTree = "<group>"; };
  763. C4836C2A2AC87B5F00E3FA1B /* HomeRecommendView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeRecommendView.swift; sourceTree = "<group>"; };
  764. C4836C2C2AC87B6900E3FA1B /* HomeRecommendView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeRecommendView.xib; sourceTree = "<group>"; };
  765. C4836C2F2AC89C1800E3FA1B /* SearchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchView.swift; sourceTree = "<group>"; };
  766. C4836C342AC8A26A00E3FA1B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/SearchView.xib; sourceTree = "<group>"; };
  767. C4836C372AC8A26D00E3FA1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SearchView.strings; sourceTree = "<group>"; };
  768. C4836C392AC8A26D00E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SearchView.strings"; sourceTree = "<group>"; };
  769. C4A604572BF1BDC0005074A0 /* RemarkOderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemarkOderView.swift; sourceTree = "<group>"; };
  770. C4A6045C2BF1CA08005074A0 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/RemarkOderView.xib; sourceTree = "<group>"; };
  771. C4A6045F2BF1CA0A005074A0 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/RemarkOderView.strings; sourceTree = "<group>"; };
  772. C4A604612BF1CA12005074A0 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/RemarkOderView.strings"; sourceTree = "<group>"; };
  773. C4A73B512B18E4D200A1595A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/SalesmanFirstShowView.xib; sourceTree = "<group>"; };
  774. C4A73B542B18E4D400A1595A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SalesmanFirstShowView.strings; sourceTree = "<group>"; };
  775. C4A73B562B18E4D600A1595A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SalesmanFirstShowView.strings"; sourceTree = "<group>"; };
  776. C4A73B582B18E6C300A1595A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddressEditorVC.xib; sourceTree = "<group>"; };
  777. C4A73B5B2B18E6C400A1595A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddressEditorVC.strings; sourceTree = "<group>"; };
  778. C4A73B5D2B18E6C600A1595A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddressEditorVC.strings"; sourceTree = "<group>"; };
  779. C4B082B92AF54CA500CD146E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/CheckOrderHeadView.xib; sourceTree = "<group>"; };
  780. C4B082BC2AF54CAC00CD146E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CheckOrderHeadView.strings; sourceTree = "<group>"; };
  781. C4B082BE2AF54CB300CD146E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/CheckOrderHeadView.strings"; sourceTree = "<group>"; };
  782. C4BFF79A2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "MCHttpUtil+UploadImage.swift"; sourceTree = "<group>"; };
  783. C4BFF7F62AFD2D3500CCA462 /* Http+UploadImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Http+UploadImage.swift"; sourceTree = "<group>"; };
  784. C4C51C6B2AF0E57E00F4636E /* AddresViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddresViewModel.swift; sourceTree = "<group>"; };
  785. C4C51C6D2AF0E5A400F4636E /* AddresBaseModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddresBaseModel.swift; sourceTree = "<group>"; };
  786. C4C51C6F2AF0EB0C00F4636E /* AddressEditorVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressEditorVC.swift; sourceTree = "<group>"; };
  787. C4C51C742AF0FF4100F4636E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddressManagerVC.xib; sourceTree = "<group>"; };
  788. C4C51C772AF0FF4200F4636E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddressManagerVC.strings; sourceTree = "<group>"; };
  789. C4C51C792AF0FF4300F4636E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddressManagerVC.strings"; sourceTree = "<group>"; };
  790. C4C51C812AF122A900F4636E /* EditorDeliveryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditorDeliveryView.swift; sourceTree = "<group>"; };
  791. C4C51C832AF122B800F4636E /* EditorDeliveryView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = EditorDeliveryView.xib; sourceTree = "<group>"; };
  792. C4C51C852AF1413100F4636E /* EditPersonNumView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditPersonNumView.swift; sourceTree = "<group>"; };
  793. C4C51C872AF1413B00F4636E /* EditPersonNumView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = EditPersonNumView.xib; sourceTree = "<group>"; };
  794. C4C51C892AF1488E00F4636E /* ADHAlertView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHAlertView.swift; sourceTree = "<group>"; };
  795. C4C6D8362AFC0D4900E1AFB5 /* phoneCallView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = phoneCallView.swift; sourceTree = "<group>"; };
  796. C4C6D83B2AFC100400E1AFB5 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/phoneCallView.xib; sourceTree = "<group>"; };
  797. C4C6D83E2AFC100600E1AFB5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/phoneCallView.strings; sourceTree = "<group>"; };
  798. C4C6D8402AFC100600E1AFB5 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/phoneCallView.strings"; sourceTree = "<group>"; };
  799. C4C6D8432AFCCB3900E1AFB5 /* BalanceViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BalanceViewController.swift; sourceTree = "<group>"; };
  800. C4C6D8482AFCD21F00E1AFB5 /* PswPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PswPayView.swift; sourceTree = "<group>"; };
  801. C4C6D84A2AFCD22800E1AFB5 /* PswPayView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PswPayView.xib; sourceTree = "<group>"; };
  802. C4C9B85B2AF3C5FE00C13A61 /* YDRectCorner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YDRectCorner.swift; sourceTree = "<group>"; };
  803. C4C9B8642AF3C7F900C13A61 /* UIView+rounded.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIView+rounded.swift"; sourceTree = "<group>"; };
  804. C4CF5F042AC97D6800B6B2D9 /* HomeViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewModel.swift; sourceTree = "<group>"; };
  805. C4CF5F082AC97DB500B6B2D9 /* TCHomeGetDataModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TCHomeGetDataModel.swift; sourceTree = "<group>"; };
  806. C4CF5F0C2AC9801300B6B2D9 /* MCHud.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCHud.swift; sourceTree = "<group>"; };
  807. C4CF5F0F2AC9813B00B6B2D9 /* UIViewController+HUB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+HUB.h"; sourceTree = "<group>"; };
  808. C4CF5F102AC9813B00B6B2D9 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
  809. C4CF5F112AC9813B00B6B2D9 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
  810. C4CF5F122AC9813B00B6B2D9 /* UIViewController+HUB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+HUB.m"; sourceTree = "<group>"; };
  811. C4CF5F3D2ACD3B8000B6B2D9 /* UserDefaultUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultUtil.swift; sourceTree = "<group>"; };
  812. C4CF5F412ACD3EDA00B6B2D9 /* StartupPageViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StartupPageViewController.swift; sourceTree = "<group>"; };
  813. C4CF5F442ACD436600B6B2D9 /* StartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StartView.swift; sourceTree = "<group>"; };
  814. C4CF5F4B2ACD468000B6B2D9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/StartView.xib; sourceTree = "<group>"; };
  815. C4CF5F4E2ACD468400B6B2D9 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/StartView.strings; sourceTree = "<group>"; };
  816. C4CF5F502ACD468500B6B2D9 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/StartView.strings"; sourceTree = "<group>"; };
  817. C4CF5F582ACD509600B6B2D9 /* MenuTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuTableViewCell.swift; sourceTree = "<group>"; };
  818. C4CF5F5C2ACD632600B6B2D9 /* TableViewUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TableViewUtil.swift; sourceTree = "<group>"; };
  819. C4CF5F5E2ACD640000B6B2D9 /* MenuHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuHeadView.swift; sourceTree = "<group>"; };
  820. C4CF5F602ACD640E00B6B2D9 /* MenuHeadView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MenuHeadView.xib; sourceTree = "<group>"; };
  821. C4E333132B91891C004DD994 /* TwoSeparateMealsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TwoSeparateMealsView.swift; sourceTree = "<group>"; };
  822. C4EDD90C2AF2618A00BE8EFF /* ADHBaseNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHBaseNavigationController.swift; sourceTree = "<group>"; };
  823. C4EDD90F2AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarSegmentValue1View.swift; sourceTree = "<group>"; };
  824. C4EDD9102AF27C4800BE8EFF /* MCNavBarDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarDelegate.swift; sourceTree = "<group>"; };
  825. C4EDD9112AF27C4800BE8EFF /* MCNavBarView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarView.swift; sourceTree = "<group>"; };
  826. C4EDD9122AF27C4800BE8EFF /* MCNavBarSearchView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarSearchView.swift; sourceTree = "<group>"; };
  827. C4EDD9132AF27C4800BE8EFF /* MCNavBarSegmentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarSegmentView.swift; sourceTree = "<group>"; };
  828. C4EDD9142AF27C4800BE8EFF /* MCNavBarCustomView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarCustomView.swift; sourceTree = "<group>"; };
  829. C4EDD91C2AF27CD400BE8EFF /* UIFont+Fonts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIFont+Fonts.h"; sourceTree = "<group>"; };
  830. C4EDD91F2AF27CD400BE8EFF /* UIFont+Fonts.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIFont+Fonts.m"; sourceTree = "<group>"; };
  831. C4EDD9232AF27DDC00BE8EFF /* UIView+Segment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Segment.m"; sourceTree = "<group>"; };
  832. C4EDD9242AF27DDC00BE8EFF /* UIView+XIB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XIB.m"; sourceTree = "<group>"; };
  833. C4EDD9252AF27DDC00BE8EFF /* UIView+Nib.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Nib.m"; sourceTree = "<group>"; };
  834. C4EDD9262AF27DDC00BE8EFF /* UIView+XMGExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XMGExtension.h"; sourceTree = "<group>"; };
  835. C4EDD9272AF27DDC00BE8EFF /* UIView+Shake.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Shake.h"; sourceTree = "<group>"; };
  836. C4EDD9282AF27DDC00BE8EFF /* UIView+GestureCallback.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+GestureCallback.m"; sourceTree = "<group>"; };
  837. C4EDD9292AF27DDC00BE8EFF /* UIView+GlowView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+GlowView.h"; sourceTree = "<group>"; };
  838. C4EDD92A2AF27DDC00BE8EFF /* UIView+Blur.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Blur.h"; sourceTree = "<group>"; };
  839. C4EDD92B2AF27DDC00BE8EFF /* UIView+ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ViewController.m"; sourceTree = "<group>"; };
  840. C4EDD92C2AF27DDC00BE8EFF /* UIView+Hint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hint.h"; sourceTree = "<group>"; };
  841. C4EDD92D2AF27DDC00BE8EFF /* UIView+AnimationProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AnimationProperty.h"; sourceTree = "<group>"; };
  842. C4EDD92E2AF27DDC00BE8EFF /* UIView+Find.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Find.h"; sourceTree = "<group>"; };
  843. C4EDD92F2AF27DDC00BE8EFF /* succeed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = succeed.png; sourceTree = "<group>"; };
  844. C4EDD9302AF27DDC00BE8EFF /* UIView+JYPBadgeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+JYPBadgeView.h"; sourceTree = "<group>"; };
  845. C4EDD9312AF27DDC00BE8EFF /* UIView+MAC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MAC.m"; sourceTree = "<group>"; };
  846. C4EDD9322AF27DDC00BE8EFF /* UIView+BlockGesture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+BlockGesture.m"; sourceTree = "<group>"; };
  847. C4EDD9332AF27DDC00BE8EFF /* UIView+Visualization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Visualization.m"; sourceTree = "<group>"; };
  848. C4EDD9352AF27DDC00BE8EFF /* UIView+Screenshot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Screenshot.h"; sourceTree = "<group>"; };
  849. C4EDD9362AF27DDC00BE8EFF /* UIViewHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIViewHeader.h; sourceTree = "<group>"; };
  850. C4EDD9372AF27DDC00BE8EFF /* UIView+RecursiveDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+RecursiveDescription.h"; sourceTree = "<group>"; };
  851. C4EDD9392AF27DDC00BE8EFF /* EAFeatureItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAFeatureItem.m; sourceTree = "<group>"; };
  852. C4EDD93A2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+EAFeatureGuideView.h"; sourceTree = "<group>"; };
  853. C4EDD93B2AF27DDC00BE8EFF /* EAFeatureItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAFeatureItem.h; sourceTree = "<group>"; };
  854. C4EDD93C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+EAFeatureGuideView.m"; sourceTree = "<group>"; };
  855. C4EDD93D2AF27DDC00BE8EFF /* UIView+Shake.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Shake.m"; sourceTree = "<group>"; };
  856. C4EDD93E2AF27DDC00BE8EFF /* UIView+XMGExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XMGExtension.m"; sourceTree = "<group>"; };
  857. C4EDD93F2AF27DDC00BE8EFF /* UIView+Nib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Nib.h"; sourceTree = "<group>"; };
  858. C4EDD9402AF27DDC00BE8EFF /* UIView+XIB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XIB.h"; sourceTree = "<group>"; };
  859. C4EDD9412AF27DDC00BE8EFF /* error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = error.png; sourceTree = "<group>"; };
  860. C4EDD9422AF27DDC00BE8EFF /* UIView+Segment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Segment.h"; sourceTree = "<group>"; };
  861. C4EDD9432AF27DDC00BE8EFF /* UIView+AnimationProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AnimationProperty.m"; sourceTree = "<group>"; };
  862. C4EDD9442AF27DDC00BE8EFF /* UIView+Hint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hint.m"; sourceTree = "<group>"; };
  863. C4EDD9452AF27DDC00BE8EFF /* UIView+ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ViewController.h"; sourceTree = "<group>"; };
  864. C4EDD9462AF27DDC00BE8EFF /* UIView+Blur.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Blur.m"; sourceTree = "<group>"; };
  865. C4EDD9472AF27DDC00BE8EFF /* UIView+GlowView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+GlowView.m"; sourceTree = "<group>"; };
  866. C4EDD9482AF27DDC00BE8EFF /* UIView+GestureCallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+GestureCallback.h"; sourceTree = "<group>"; };
  867. C4EDD9492AF27DDC00BE8EFF /* UIView+MAC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MAC.h"; sourceTree = "<group>"; };
  868. C4EDD94A2AF27DDC00BE8EFF /* UIView+BlockGesture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+BlockGesture.h"; sourceTree = "<group>"; };
  869. C4EDD94B2AF27DDC00BE8EFF /* UIView+Visualization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Visualization.h"; sourceTree = "<group>"; };
  870. C4EDD94C2AF27DDC00BE8EFF /* UIView+JYPBadgeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+JYPBadgeView.m"; sourceTree = "<group>"; };
  871. C4EDD94D2AF27DDC00BE8EFF /* UIView+Find.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Find.m"; sourceTree = "<group>"; };
  872. C4EDD94E2AF27DDC00BE8EFF /* UIView+RecursiveDescription.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+RecursiveDescription.m"; sourceTree = "<group>"; };
  873. C4EDD9502AF27DDC00BE8EFF /* UIView+Screenshot.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Screenshot.m"; sourceTree = "<group>"; };
  874. C4EDD9692AF27EF400BE8EFF /* QFTSearchContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QFTSearchContentView.h; sourceTree = "<group>"; };
  875. C4EDD96A2AF27EF400BE8EFF /* QFTSearchBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QFTSearchBar.m; sourceTree = "<group>"; };
  876. C4EDD96C2AF27EF400BE8EFF /* QFTMoreSearchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QFTMoreSearchCell.m; sourceTree = "<group>"; };
  877. C4EDD96D2AF27EF400BE8EFF /* QFTMoreSearchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = QFTMoreSearchCell.xib; sourceTree = "<group>"; };
  878. C4EDD96E2AF27EF400BE8EFF /* QFTMoreSearchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QFTMoreSearchCell.h; sourceTree = "<group>"; };
  879. C4EDD96F2AF27EF400BE8EFF /* QFTSearchBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QFTSearchBar.h; sourceTree = "<group>"; };
  880. C4EDD9702AF27EF400BE8EFF /* QFTSearchContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QFTSearchContentView.m; sourceTree = "<group>"; };
  881. C4EDD9752AF2813B00BE8EFF /* ACMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ACMacros.h; sourceTree = "<group>"; };
  882. C4EDD9782AF2849300BE8EFF /* MCDZNEmptyDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDZNEmptyDelegate.swift; sourceTree = "<group>"; };
  883. C4EDD97B2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ADHBaseVC+DZNEmpty.swift"; sourceTree = "<group>"; };
  884. C4EDD9A72AF2879100BE8EFF /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
  885. C4EDD9A82AF2879100BE8EFF /* MJRefreshConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshConst.m; sourceTree = "<group>"; };
  886. C4EDD9A92AF2879100BE8EFF /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
  887. C4EDD9AA2AF2879100BE8EFF /* MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefresh.h; sourceTree = "<group>"; };
  888. C4EDD9AB2AF2879100BE8EFF /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+MJRefresh.h"; sourceTree = "<group>"; };
  889. C4EDD9AC2AF2879100BE8EFF /* MJRefresh.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MJRefresh.bundle; sourceTree = "<group>"; };
  890. C4EDD9AD2AF2879100BE8EFF /* UIView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MJExtension.h"; sourceTree = "<group>"; };
  891. C4EDD9AE2AF2879100BE8EFF /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
  892. C4EDD9AF2AF2879100BE8EFF /* MJRefreshConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshConst.h; sourceTree = "<group>"; };
  893. C4EDD9B02AF2879100BE8EFF /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
  894. C4EDD9B12AF2879100BE8EFF /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+MJRefresh.m"; sourceTree = "<group>"; };
  895. C4EDD9B22AF2879100BE8EFF /* UIView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MJExtension.m"; sourceTree = "<group>"; };
  896. C4EDD9B62AF2879100BE8EFF /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
  897. C4EDD9B72AF2879100BE8EFF /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
  898. C4EDD9B82AF2879100BE8EFF /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
  899. C4EDD9B92AF2879100BE8EFF /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
  900. C4EDD9BA2AF2879100BE8EFF /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
  901. C4EDD9BB2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
  902. C4EDD9BD2AF2879100BE8EFF /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
  903. C4EDD9BE2AF2879100BE8EFF /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
  904. C4EDD9BF2AF2879100BE8EFF /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
  905. C4EDD9C02AF2879100BE8EFF /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
  906. C4EDD9C12AF2879100BE8EFF /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
  907. C4EDD9C22AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
  908. C4EDD9C42AF2879100BE8EFF /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshNormalHeader.m; sourceTree = "<group>"; };
  909. C4EDD9C52AF2879100BE8EFF /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshStateHeader.h; sourceTree = "<group>"; };
  910. C4EDD9C62AF2879100BE8EFF /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshGifHeader.h; sourceTree = "<group>"; };
  911. C4EDD9C72AF2879100BE8EFF /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshNormalHeader.h; sourceTree = "<group>"; };
  912. C4EDD9C82AF2879100BE8EFF /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshStateHeader.m; sourceTree = "<group>"; };
  913. C4EDD9C92AF2879100BE8EFF /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshGifHeader.m; sourceTree = "<group>"; };
  914. C4EDD9CB2AF2879100BE8EFF /* MJRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshFooter.m; sourceTree = "<group>"; };
  915. C4EDD9CC2AF2879100BE8EFF /* MJRefreshComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshComponent.h; sourceTree = "<group>"; };
  916. C4EDD9CD2AF2879100BE8EFF /* MJRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshHeader.m; sourceTree = "<group>"; };
  917. C4EDD9CE2AF2879100BE8EFF /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoFooter.h; sourceTree = "<group>"; };
  918. C4EDD9CF2AF2879100BE8EFF /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackFooter.m; sourceTree = "<group>"; };
  919. C4EDD9D02AF2879100BE8EFF /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoFooter.m; sourceTree = "<group>"; };
  920. C4EDD9D12AF2879100BE8EFF /* MJRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshHeader.h; sourceTree = "<group>"; };
  921. C4EDD9D22AF2879100BE8EFF /* MJRefreshComponent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshComponent.m; sourceTree = "<group>"; };
  922. C4EDD9D32AF2879100BE8EFF /* MJRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshFooter.h; sourceTree = "<group>"; };
  923. C4EDD9D42AF2879100BE8EFF /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackFooter.h; sourceTree = "<group>"; };
  924. C4EDD9EA2AF28B0D00BE8EFF /* UITableView+CellClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+CellClass.m"; sourceTree = "<group>"; };
  925. C4EDD9EB2AF28B0D00BE8EFF /* MACTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MACTableView.m; sourceTree = "<group>"; };
  926. C4EDD9EC2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+LoadPageIndex.h"; sourceTree = "<group>"; };
  927. C4EDD9ED2AF28B0D00BE8EFF /* UITableViewHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITableViewHeader.h; sourceTree = "<group>"; };
  928. C4EDD9EE2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+LoadPageIndex.m"; sourceTree = "<group>"; };
  929. C4EDD9EF2AF28B0D00BE8EFF /* MACTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MACTableView.h; sourceTree = "<group>"; };
  930. C4EDD9F02AF28B0D00BE8EFF /* UITableView+CellClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+CellClass.h"; sourceTree = "<group>"; };
  931. C4EDD9F32AF28B0D00BE8EFF /* DZNEmptyDataView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DZNEmptyDataView.xib; sourceTree = "<group>"; };
  932. C4EDD9F42AF28B0D00BE8EFF /* DZNEmptyLoadView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DZNEmptyLoadView.xib; sourceTree = "<group>"; };
  933. C4EDD9F52AF28B0D00BE8EFF /* DZNEmptyDataView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DZNEmptyDataView.swift; sourceTree = "<group>"; };
  934. C4EDD9F62AF28B0D00BE8EFF /* DZNEmptyLoadView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DZNEmptyLoadView.swift; sourceTree = "<group>"; };
  935. C4EDD9F72AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+EmptyDataSet.m"; sourceTree = "<group>"; };
  936. C4EDD9F82AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+EmptyDataSet.h"; sourceTree = "<group>"; };
  937. C4EDD9FA2AF28B0D00BE8EFF /* icon_refresh_1@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_1@2x.png"; sourceTree = "<group>"; };
  938. C4EDD9FB2AF28B0D00BE8EFF /* icon_refresh_3@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_3@3x.png"; sourceTree = "<group>"; };
  939. C4EDD9FC2AF28B0D00BE8EFF /* icon_refresh_3@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_3@2x.png"; sourceTree = "<group>"; };
  940. C4EDD9FD2AF28B0D00BE8EFF /* icon_refresh_1@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_1@3x.png"; sourceTree = "<group>"; };
  941. C4EDD9FE2AF28B0D00BE8EFF /* MACRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MACRefreshHeader.h; sourceTree = "<group>"; };
  942. C4EDD9FF2AF28B0D00BE8EFF /* icon_refresh_2@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_2@3x.png"; sourceTree = "<group>"; };
  943. C4EDDA002AF28B0D00BE8EFF /* icon_refresh_2@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_2@2x.png"; sourceTree = "<group>"; };
  944. C4EDDA012AF28B0D00BE8EFF /* MACRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MACRefreshHeader.m; sourceTree = "<group>"; };
  945. C4EDDA122AF28B7400BE8EFF /* MACBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MACBaseCell.m; sourceTree = "<group>"; };
  946. C4EDDA132AF28B7400BE8EFF /* CellDataAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CellDataAdapter.h; sourceTree = "<group>"; };
  947. C4EDDA142AF28B7400BE8EFF /* UITableViewCell+MAC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableViewCell+MAC.h"; sourceTree = "<group>"; };
  948. C4EDDA152AF28B7400BE8EFF /* CellDataAdapter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CellDataAdapter.m; sourceTree = "<group>"; };
  949. C4EDDA172AF28B7400BE8EFF /* MGSwipeTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeTableCell.m; sourceTree = "<group>"; };
  950. C4EDDA182AF28B7400BE8EFF /* MGSwipeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeButton.h; sourceTree = "<group>"; };
  951. C4EDDA192AF28B7400BE8EFF /* MGSwipeTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeTableCell.h; sourceTree = "<group>"; };
  952. C4EDDA1A2AF28B7400BE8EFF /* MGSwipeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeButton.m; sourceTree = "<group>"; };
  953. C4EDDA1B2AF28B7400BE8EFF /* UITableViewCell+MAC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableViewCell+MAC.m"; sourceTree = "<group>"; };
  954. C4EDDA1C2AF28B7400BE8EFF /* MACBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MACBaseCell.h; sourceTree = "<group>"; };
  955. C4EDDA232AF28BAC00BE8EFF /* Aspects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Aspects.h; sourceTree = "<group>"; };
  956. C4EDDA242AF28BAC00BE8EFF /* Aspects.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Aspects.m; sourceTree = "<group>"; };
  957. C4EDDA4F2AF2969A00BE8EFF /* ShoppingCarDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCarDetailView.swift; sourceTree = "<group>"; };
  958. D5A42DEC0153678020E581CB /* Pods-ADHTuanCan.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ADHTuanCan.debug.xcconfig"; path = "Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan.debug.xcconfig"; sourceTree = "<group>"; };
  959. /* End PBXFileReference section */
  960. /* Begin PBXFrameworksBuildPhase section */
  961. C48363A82AC3D96400E3FA1B /* Frameworks */ = {
  962. isa = PBXFrameworksBuildPhase;
  963. buildActionMask = 2147483647;
  964. files = (
  965. FF801E958CDC9F69594019BD /* Pods_ADHTuanCan.framework in Frameworks */,
  966. );
  967. runOnlyForDeploymentPostprocessing = 0;
  968. };
  969. C48363C12AC3D96500E3FA1B /* Frameworks */ = {
  970. isa = PBXFrameworksBuildPhase;
  971. buildActionMask = 2147483647;
  972. files = (
  973. );
  974. runOnlyForDeploymentPostprocessing = 0;
  975. };
  976. C48363CB2AC3D96500E3FA1B /* Frameworks */ = {
  977. isa = PBXFrameworksBuildPhase;
  978. buildActionMask = 2147483647;
  979. files = (
  980. );
  981. runOnlyForDeploymentPostprocessing = 0;
  982. };
  983. /* End PBXFrameworksBuildPhase section */
  984. /* Begin PBXGroup section */
  985. 0141F2528F4ED7ECFC47D713 /* Pods */ = {
  986. isa = PBXGroup;
  987. children = (
  988. D5A42DEC0153678020E581CB /* Pods-ADHTuanCan.debug.xcconfig */,
  989. A392503CF9C8A459BF93B985 /* Pods-ADHTuanCan.release.xcconfig */,
  990. );
  991. path = Pods;
  992. sourceTree = "<group>";
  993. };
  994. 2DEE585807330C5CE73589E5 /* Frameworks */ = {
  995. isa = PBXGroup;
  996. children = (
  997. 18DFFEA52857E4C78299BDB0 /* Pods_ADHTuanCan.framework */,
  998. );
  999. name = Frameworks;
  1000. sourceTree = "<group>";
  1001. };
  1002. C40690E72B07A2FE002688FD /* 仿酒店入住 */ = {
  1003. isa = PBXGroup;
  1004. children = (
  1005. );
  1006. path = "仿酒店入住";
  1007. sourceTree = "<group>";
  1008. };
  1009. C40AE3AF2B95E642007469C0 /* 语言切换 */ = {
  1010. isa = PBXGroup;
  1011. children = (
  1012. C40AE3B02B95E6A7007469C0 /* LanguageSetVC.swift */,
  1013. C40AE3B12B95E6A7007469C0 /* LanguageSetVC.xib */,
  1014. );
  1015. path = "语言切换";
  1016. sourceTree = "<group>";
  1017. };
  1018. C41DA4A42AFF172B00707C5D /* 积分 */ = {
  1019. isa = PBXGroup;
  1020. children = (
  1021. C41DA4D12AFFAAEB00707C5D /* view */,
  1022. C41DA4A52AFF176000707C5D /* IntegralListViewController.swift */,
  1023. C41DA4A62AFF176000707C5D /* IntegralListViewController.xib */,
  1024. );
  1025. path = "积分";
  1026. sourceTree = "<group>";
  1027. };
  1028. C41DA4CC2AFF44DF00707C5D /* 优惠卷 */ = {
  1029. isa = PBXGroup;
  1030. children = (
  1031. C41DA4D22AFFAB0700707C5D /* view */,
  1032. C41DA4CD2AFF44FF00707C5D /* DiscountsViewController.swift */,
  1033. C41DA4CE2AFF44FF00707C5D /* DiscountsViewController.xib */,
  1034. );
  1035. path = "优惠卷";
  1036. sourceTree = "<group>";
  1037. };
  1038. C41DA4D12AFFAAEB00707C5D /* view */ = {
  1039. isa = PBXGroup;
  1040. children = (
  1041. C41DA4A92AFF17B000707C5D /* IntegralHeadView.swift */,
  1042. C41DA4B72AFF22DD00707C5D /* IntegralHeadView.xib */,
  1043. C41DA4B12AFF1E6500707C5D /* IntegralSectiionView.swift */,
  1044. C41DA4C42AFF232800707C5D /* IntegralSectiionView.xib */,
  1045. C41DA4AD2AFF19E000707C5D /* IntegralViewCell.swift */,
  1046. C41DA4AE2AFF19E000707C5D /* IntegralViewCell.xib */,
  1047. );
  1048. path = view;
  1049. sourceTree = "<group>";
  1050. };
  1051. C41DA4D22AFFAB0700707C5D /* view */ = {
  1052. isa = PBXGroup;
  1053. children = (
  1054. C41DA4D32AFFAB2400707C5D /* DiscountsListViewCell.swift */,
  1055. C41DA4D92AFFB02700707C5D /* DiscountsListViewCell.xib */,
  1056. C41DA4DE2AFFC03B00707C5D /* DiscountsSectionView.swift */,
  1057. C41DA4E02AFFC04900707C5D /* DiscountsSectionView.xib */,
  1058. C41DA4E22AFFC58000707C5D /* DiscountsFootView.swift */,
  1059. C41DA4E42AFFC59100707C5D /* DiscountsFootView.xib */,
  1060. );
  1061. path = view;
  1062. sourceTree = "<group>";
  1063. };
  1064. C41DA4E62AFFD2B400707C5D /* 规则说明 */ = {
  1065. isa = PBXGroup;
  1066. children = (
  1067. C41DA4E72AFFD2DF00707C5D /* RuleDetailViewController.swift */,
  1068. C41DA4E82AFFD2DF00707C5D /* RuleDetailViewController.xib */,
  1069. );
  1070. path = "规则说明";
  1071. sourceTree = "<group>";
  1072. };
  1073. C42AEDD32B035A9D0045EF66 /* 日期选择 */ = {
  1074. isa = PBXGroup;
  1075. children = (
  1076. C42AEDD42B035A9D0045EF66 /* MCDatePikerView.swift */,
  1077. C42AEDD52B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift */,
  1078. C42AEDD62B035A9D0045EF66 /* MCDatePikerDelegate.swift */,
  1079. C42AEDD72B035A9D0045EF66 /* 实现 */,
  1080. );
  1081. path = "日期选择";
  1082. sourceTree = "<group>";
  1083. };
  1084. C42AEDD72B035A9D0045EF66 /* 实现 */ = {
  1085. isa = PBXGroup;
  1086. children = (
  1087. C42AEDD82B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift */,
  1088. C42AEDD92B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift */,
  1089. C42AEDDA2B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift */,
  1090. );
  1091. path = "实现";
  1092. sourceTree = "<group>";
  1093. };
  1094. C42BB5522ADD4551003FF663 /* 注册 */ = {
  1095. isa = PBXGroup;
  1096. children = (
  1097. C42BB5532ADD457B003FF663 /* RegisteViewController.swift */,
  1098. C40691532B08BE3F002688FD /* RegisteViewController.xib */,
  1099. );
  1100. path = "注册";
  1101. sourceTree = "<group>";
  1102. };
  1103. C42BB5592ADD4C3C003FF663 /* 验证码 */ = {
  1104. isa = PBXGroup;
  1105. children = (
  1106. C42BB55A2ADD4C50003FF663 /* CodeViewController.swift */,
  1107. C406915A2B08BEB7002688FD /* CodeViewController.xib */,
  1108. );
  1109. path = "验证码";
  1110. sourceTree = "<group>";
  1111. };
  1112. C42BB55E2ADD5045003FF663 /* Proxy多重代理 */ = {
  1113. isa = PBXGroup;
  1114. children = (
  1115. C42BB5632ADD56D7003FF663 /* ElementUtil.swift */,
  1116. C42BB55F2ADD5045003FF663 /* MCProxyTextViewRx.swift */,
  1117. C42BB5602ADD5045003FF663 /* MCProxyTextFieldRx.swift */,
  1118. );
  1119. path = "Proxy多重代理";
  1120. sourceTree = "<group>";
  1121. };
  1122. C42BB56E2ADD6931003FF663 /* model */ = {
  1123. isa = PBXGroup;
  1124. children = (
  1125. C42BB5712ADD69C1003FF663 /* LoginModel.swift */,
  1126. );
  1127. path = model;
  1128. sourceTree = "<group>";
  1129. };
  1130. C42BB5732ADD6F04003FF663 /* viewModel */ = {
  1131. isa = PBXGroup;
  1132. children = (
  1133. C42BB5742ADD6F27003FF663 /* LoginViewModel.swift */,
  1134. );
  1135. path = viewModel;
  1136. sourceTree = "<group>";
  1137. };
  1138. C443021C2AF5F9FB0098C854 /* model */ = {
  1139. isa = PBXGroup;
  1140. children = (
  1141. C443021E2AF5FA330098C854 /* OrderDataModel.swift */,
  1142. );
  1143. path = model;
  1144. sourceTree = "<group>";
  1145. };
  1146. C443021D2AF5FA010098C854 /* viewModel */ = {
  1147. isa = PBXGroup;
  1148. children = (
  1149. C438E3C92AF7B4F300F671AE /* OrderViewModel.swift */,
  1150. );
  1151. path = viewModel;
  1152. sourceTree = "<group>";
  1153. };
  1154. C448CCF92AFE3B1200B3B068 /* model */ = {
  1155. isa = PBXGroup;
  1156. children = (
  1157. C448CCFE2AFE3B5E00B3B068 /* EvaluateRequestModel.swift */,
  1158. );
  1159. path = model;
  1160. sourceTree = "<group>";
  1161. };
  1162. C448CCFA2AFE3B1600B3B068 /* viewModel */ = {
  1163. isa = PBXGroup;
  1164. children = (
  1165. C448CCFC2AFE3B3F00B3B068 /* EvaluateViewModel.swift */,
  1166. );
  1167. path = viewModel;
  1168. sourceTree = "<group>";
  1169. };
  1170. C448CCFB2AFE3B1C00B3B068 /* view */ = {
  1171. isa = PBXGroup;
  1172. children = (
  1173. C448CD002AFE3DE200B3B068 /* AddEvaluateCell.swift */,
  1174. C42AEE242B037BD40045EF66 /* AddEvaluateCell.xib */,
  1175. C41DA4A02AFEFC4F00707C5D /* MealEcaluateCell.swift */,
  1176. C41DA4A12AFEFC4F00707C5D /* MealEcaluateCell.xib */,
  1177. );
  1178. path = view;
  1179. sourceTree = "<group>";
  1180. };
  1181. C44CFA5C2AFB5C82000D592D /* view */ = {
  1182. isa = PBXGroup;
  1183. children = (
  1184. C44CFA632AFB8084000D592D /* BrokerageCell.swift */,
  1185. C44CFA692AFB81FF000D592D /* BrokerageCell.xib */,
  1186. C44CFA6E2AFB8255000D592D /* BrokerageSheetView.swift */,
  1187. C44CFA742AFB8AB7000D592D /* BrokerageSheetView.xib */,
  1188. C44CFA792AFB8B89000D592D /* PromotionSheetView.swift */,
  1189. C41DA4F12AFFE1C400707C5D /* PromotionSheetView.xib */,
  1190. C41DA4EB2AFFDDDE00707C5D /* PromotionCell.swift */,
  1191. C41DA4EC2AFFDDDE00707C5D /* PromotionCell.xib */,
  1192. C4C6D8362AFC0D4900E1AFB5 /* phoneCallView.swift */,
  1193. C4C6D83C2AFC100400E1AFB5 /* phoneCallView.xib */,
  1194. );
  1195. path = view;
  1196. sourceTree = "<group>";
  1197. };
  1198. C44CFA5D2AFB5C87000D592D /* viewModel */ = {
  1199. isa = PBXGroup;
  1200. children = (
  1201. C44CFA5F2AFB5CAD000D592D /* MyViewModel.swift */,
  1202. );
  1203. path = viewModel;
  1204. sourceTree = "<group>";
  1205. };
  1206. C44CFA5E2AFB5C8E000D592D /* model */ = {
  1207. isa = PBXGroup;
  1208. children = (
  1209. C44CFA612AFB5CCF000D592D /* MyRequestModel.swift */,
  1210. );
  1211. path = model;
  1212. sourceTree = "<group>";
  1213. };
  1214. C45001672AD677DB00F96CFA /* 订单详情 */ = {
  1215. isa = PBXGroup;
  1216. children = (
  1217. C45001712AD6852800F96CFA /* view */,
  1218. C4144CD32AF91DCB00B5F73C /* OrderDetailViewController.swift */,
  1219. C4144CD42AF91DCB00B5F73C /* OrderDetailViewController.xib */,
  1220. );
  1221. path = "订单详情";
  1222. sourceTree = "<group>";
  1223. };
  1224. C45001682AD677FC00F96CFA /* view */ = {
  1225. isa = PBXGroup;
  1226. children = (
  1227. C45C8A342AD24932009D6C3A /* OrderListCell.swift */,
  1228. C45F2B8B2B0E7F640099D40E /* OrderListCell.xib */,
  1229. );
  1230. path = view;
  1231. sourceTree = "<group>";
  1232. };
  1233. C45001712AD6852800F96CFA /* view */ = {
  1234. isa = PBXGroup;
  1235. children = (
  1236. C44302432AF6835B0098C854 /* OderDetailHeadView.swift */,
  1237. C45F2B822B0E7D9A0099D40E /* OderDetailHeadView.xib */,
  1238. C44CFA402AFB1AD1000D592D /* OrderDetailFootView.swift */,
  1239. C44CFA572AFB5308000D592D /* OrderDetailFootView.xib */,
  1240. C44CFA442AFB2940000D592D /* OrderDetailSectionView.swift */,
  1241. C44CFA462AFB2948000D592D /* OrderDetailSectionView.xib */,
  1242. );
  1243. path = view;
  1244. sourceTree = "<group>";
  1245. };
  1246. C45411722B00DB620096F60E /* view */ = {
  1247. isa = PBXGroup;
  1248. children = (
  1249. C45411732B00DB740096F60E /* BalanceViewCell.swift */,
  1250. C45411742B00DB740096F60E /* BalanceViewCell.xib */,
  1251. C45411772B00DF200096F60E /* BalanceTabHeadView.swift */,
  1252. C454117D2B00DF780096F60E /* BalanceTabHeadView.xib */,
  1253. );
  1254. path = view;
  1255. sourceTree = "<group>";
  1256. };
  1257. C45411822B00E35D0096F60E /* 普团首页 */ = {
  1258. isa = PBXGroup;
  1259. children = (
  1260. C45411832B00E38D0096F60E /* HomeSecondViewController.swift */,
  1261. C42AEDF12B0372D70045EF66 /* HomeSecondViewController.xib */,
  1262. );
  1263. path = "普团首页";
  1264. sourceTree = "<group>";
  1265. };
  1266. C45411872B012C960096F60E /* 手机快捷登录 */ = {
  1267. isa = PBXGroup;
  1268. children = (
  1269. C45411882B012CB70096F60E /* PhoneLoginViewController.swift */,
  1270. C40691612B08BEF6002688FD /* PhoneLoginViewController.xib */,
  1271. );
  1272. path = "手机快捷登录";
  1273. sourceTree = "<group>";
  1274. };
  1275. C45654472B0B831900F3E628 /* 成员 */ = {
  1276. isa = PBXGroup;
  1277. children = (
  1278. C456544C2B0B843E00F3E628 /* view */,
  1279. C45654482B0B834200F3E628 /* TeamMembersViewController.swift */,
  1280. C45B67D52B19DBE200EA1725 /* TeamMembersViewController.xib */,
  1281. );
  1282. path = "成员";
  1283. sourceTree = "<group>";
  1284. };
  1285. C456544C2B0B843E00F3E628 /* view */ = {
  1286. isa = PBXGroup;
  1287. children = (
  1288. C456544D2B0B845F00F3E628 /* TeamMembersCell.swift */,
  1289. C406A0912B91FBBD005A6423 /* TeamMembersCell.xib */,
  1290. C45654512B0BA4DD00F3E628 /* TeamMembersAddView.swift */,
  1291. C45B67DC2B19DC1A00EA1725 /* TeamMembersAddView.xib */,
  1292. C406A0872B91F4C5005A6423 /* AddMembersCheckView.swift */,
  1293. C406A0942B91FBC5005A6423 /* AddMembersCheckView.xib */,
  1294. );
  1295. path = view;
  1296. sourceTree = "<group>";
  1297. };
  1298. C45654552B0C9B8F00F3E628 /* 修改信息View */ = {
  1299. isa = PBXGroup;
  1300. children = (
  1301. C45654562B0C9BB900F3E628 /* EditPersonSheetView.swift */,
  1302. C456545C2B0CA94E00F3E628 /* EditPersonSheetView.xib */,
  1303. );
  1304. path = "修改信息View";
  1305. sourceTree = "<group>";
  1306. };
  1307. C45654612B0CC17600F3E628 /* 会员中心 */ = {
  1308. isa = PBXGroup;
  1309. children = (
  1310. );
  1311. path = "会员中心";
  1312. sourceTree = "<group>";
  1313. };
  1314. C45654622B0CFF8700F3E628 /* 图片管理 */ = {
  1315. isa = PBXGroup;
  1316. children = (
  1317. C45654632B0CFF8700F3E628 /* controller */,
  1318. );
  1319. path = "图片管理";
  1320. sourceTree = "<group>";
  1321. };
  1322. C45654632B0CFF8700F3E628 /* controller */ = {
  1323. isa = PBXGroup;
  1324. children = (
  1325. C4522D022B0DF21700808F76 /* ImagePreviewViewController.swift */,
  1326. );
  1327. path = controller;
  1328. sourceTree = "<group>";
  1329. };
  1330. C4577CA52AEA77F9004D9439 /* 餐品详情 */ = {
  1331. isa = PBXGroup;
  1332. children = (
  1333. C4577CD12AEBC110004D9439 /* 评价 */,
  1334. C4577CCC2AEBBAE6004D9439 /* 下单需知 */,
  1335. C4577CC52AEA9DCB004D9439 /* model */,
  1336. C4577CC22AEA9DAA004D9439 /* viewModel */,
  1337. C4577CAA2AEA7B8B004D9439 /* view */,
  1338. C4577CA62AEA7B88004D9439 /* SetMealDetailVC.swift */,
  1339. C42FF7A22B15DED500B591F4 /* SetMealDetailVC.xib */,
  1340. C470B5702AEE5BE3009046B4 /* SingleMealDetailController.swift */,
  1341. C42FF79B2B15DDA200B591F4 /* SingleMealDetailController.xib */,
  1342. );
  1343. path = "餐品详情";
  1344. sourceTree = "<group>";
  1345. };
  1346. C4577CAA2AEA7B8B004D9439 /* view */ = {
  1347. isa = PBXGroup;
  1348. children = (
  1349. C4577CDF2AEBC576004D9439 /* 固定套餐view */,
  1350. C4577CDE2AEBC55B004D9439 /* 非固定套餐View */,
  1351. C4577CAB2AEA7BE8004D9439 /* MealHeadView.swift */,
  1352. C448CD1E2AFE8AAF00B3B068 /* MealHeadView.xib */,
  1353. C4577CBE2AEA9A9B004D9439 /* DeliveryTimeSetView.swift */,
  1354. C470B5952AF0B05B009046B4 /* DeliveryTimeSetView.xib */,
  1355. C4577CC82AEABA09004D9439 /* DeliveryTimeItem.swift */,
  1356. C4577CC92AEABA09004D9439 /* DeliveryTimeItem.xib */,
  1357. C470B5742AEFBACB009046B4 /* AddRemarkView.swift */,
  1358. C470B57A2AEFBD07009046B4 /* AddRemarkView.xib */,
  1359. C4E333132B91891C004DD994 /* TwoSeparateMealsView.swift */,
  1360. C406A0802B9191D6005A6423 /* TwoSeparateMealsView.xib */,
  1361. C4A604572BF1BDC0005074A0 /* RemarkOderView.swift */,
  1362. C4A6045D2BF1CA08005074A0 /* RemarkOderView.xib */,
  1363. );
  1364. path = view;
  1365. sourceTree = "<group>";
  1366. };
  1367. C4577CC22AEA9DAA004D9439 /* viewModel */ = {
  1368. isa = PBXGroup;
  1369. children = (
  1370. C4577CC32AEA9DC7004D9439 /* SetMealViewModel.swift */,
  1371. );
  1372. path = viewModel;
  1373. sourceTree = "<group>";
  1374. };
  1375. C4577CC52AEA9DCB004D9439 /* model */ = {
  1376. isa = PBXGroup;
  1377. children = (
  1378. C4577CC62AEA9E02004D9439 /* SetMealModel.swift */,
  1379. );
  1380. path = model;
  1381. sourceTree = "<group>";
  1382. };
  1383. C4577CCC2AEBBAE6004D9439 /* 下单需知 */ = {
  1384. isa = PBXGroup;
  1385. children = (
  1386. C4577CCD2AEBBB2A004D9439 /* NeedKonwView.swift */,
  1387. C4577CD92AEBC19F004D9439 /* NeedKonwView.xib */,
  1388. );
  1389. path = "下单需知";
  1390. sourceTree = "<group>";
  1391. };
  1392. C4577CD12AEBC110004D9439 /* 评价 */ = {
  1393. isa = PBXGroup;
  1394. children = (
  1395. C4577CD22AEBC121004D9439 /* view */,
  1396. );
  1397. path = "评价";
  1398. sourceTree = "<group>";
  1399. };
  1400. C4577CD22AEBC121004D9439 /* view */ = {
  1401. isa = PBXGroup;
  1402. children = (
  1403. C4577CD32AEBC168004D9439 /* MealDescribeView.swift */,
  1404. C4577CD52AEBC173004D9439 /* MealDescribeView.xib */,
  1405. );
  1406. path = view;
  1407. sourceTree = "<group>";
  1408. };
  1409. C4577CDE2AEBC55B004D9439 /* 非固定套餐View */ = {
  1410. isa = PBXGroup;
  1411. children = (
  1412. C4577CAF2AEA8BBC004D9439 /* MealCollectionView.swift */,
  1413. C4577CB52AEA8E5C004D9439 /* MealCollectionView.xib */,
  1414. C4577CBA2AEA8FFD004D9439 /* SetMealCollectionItem.swift */,
  1415. C4577CBB2AEA8FFD004D9439 /* SetMealCollectionItem.xib */,
  1416. );
  1417. path = "非固定套餐View";
  1418. sourceTree = "<group>";
  1419. };
  1420. C4577CDF2AEBC576004D9439 /* 固定套餐view */ = {
  1421. isa = PBXGroup;
  1422. children = (
  1423. C4577CE02AEBC5C4004D9439 /* ChangeMealCollectionView.swift */,
  1424. C42AEDE32B03717F0045EF66 /* ChangeMealCollectionView.xib */,
  1425. C4577CE42AEBC8A7004D9439 /* ChangeMealCollectItem.swift */,
  1426. C4577CE52AEBC8A7004D9439 /* ChangeMealCollectItem.xib */,
  1427. C470B57F2AEFC3C1009046B4 /* ReplaceFoodView.swift */,
  1428. C41DA4C72AFF39BE00707C5D /* ReplaceFoodView.xib */,
  1429. );
  1430. path = "固定套餐view";
  1431. sourceTree = "<group>";
  1432. };
  1433. C4577CE82AEBCEE9004D9439 /* NSObject */ = {
  1434. isa = PBXGroup;
  1435. children = (
  1436. C4577CEE2AEBCEE9004D9439 /* NSObject+Hint.h */,
  1437. C4577CFB2AEBCEE9004D9439 /* NSObject+Hint.m */,
  1438. );
  1439. path = NSObject;
  1440. sourceTree = "<group>";
  1441. };
  1442. C45C1A6C2B282E0100221FBD /* view */ = {
  1443. isa = PBXGroup;
  1444. children = (
  1445. C45C1A6D2B282E3500221FBD /* ApplyCompanySuccess.swift */,
  1446. C4498ED72B294D57005E43D0 /* ApplyCompanySuccess.xib */,
  1447. C45C1A712B284CAE00221FBD /* ApplyAlertView.swift */,
  1448. C45C1A772B284E0000221FBD /* ApplyAlertView.xib */,
  1449. );
  1450. path = view;
  1451. sourceTree = "<group>";
  1452. };
  1453. C45C668F2B01CEB5005E13CE /* 修改登录密码 */ = {
  1454. isa = PBXGroup;
  1455. children = (
  1456. C45C66902B01CEE7005E13CE /* EditLoginPSWViewController.swift */,
  1457. C40691682B08BFE9002688FD /* EditLoginPSWViewController.xib */,
  1458. );
  1459. path = "修改登录密码";
  1460. sourceTree = "<group>";
  1461. };
  1462. C45C66942B01E2B9005E13CE /* 修改支付密码 */ = {
  1463. isa = PBXGroup;
  1464. children = (
  1465. C45C66952B01E42E005E13CE /* EditPayPSWViewController.swift */,
  1466. C40691472B08BD4F002688FD /* EditPayPSWViewController.xib */,
  1467. );
  1468. path = "修改支付密码";
  1469. sourceTree = "<group>";
  1470. };
  1471. C45C66992B01EE9D005E13CE /* 业务员信息 */ = {
  1472. isa = PBXGroup;
  1473. children = (
  1474. C42AEDCF2B0312070045EF66 /* SalesmanFirstShowView.swift */,
  1475. C4A73B522B18E4D200A1595A /* SalesmanFirstShowView.xib */,
  1476. );
  1477. path = "业务员信息";
  1478. sourceTree = "<group>";
  1479. };
  1480. C45C8A202AD18DE6009D6C3A /* 日期区间 */ = {
  1481. isa = PBXGroup;
  1482. children = (
  1483. C40690EC2B07A2FE002688FD /* DayCollectionViewCell.h */,
  1484. C40690E82B07A2FE002688FD /* DayCollectionViewCell.m */,
  1485. C40690EF2B07A2FE002688FD /* MonthModel.h */,
  1486. C40690EA2B07A2FE002688FD /* MonthModel.m */,
  1487. C40690ED2B07A2FE002688FD /* MonthTableViewCell.h */,
  1488. C40690E92B07A2FE002688FD /* MonthTableViewCell.m */,
  1489. C45C8A142AD182ED009D6C3A /* timeManageSheetView.h */,
  1490. C45C8A152AD182ED009D6C3A /* timeManageSheetView.m */,
  1491. C45C8A1B2AD18D41009D6C3A /* timeManageSheetView.xib */,
  1492. );
  1493. path = "日期区间";
  1494. sourceTree = "<group>";
  1495. };
  1496. C45C8A212AD18E0B009D6C3A /* 购物车 */ = {
  1497. isa = PBXGroup;
  1498. children = (
  1499. C45C8A322AD24895009D6C3A /* 确认订单 */,
  1500. C470B58E2AF0A5B0009046B4 /* view */,
  1501. C470B5892AEFEF04009046B4 /* viewmodel */,
  1502. C470B5882AEFEEFF009046B4 /* model */,
  1503. C4EDDA4F2AF2969A00BE8EFF /* ShoppingCarDetailView.swift */,
  1504. C42FF7B02B15DF7A00B591F4 /* ShoppingCarDetailView.xib */,
  1505. );
  1506. path = "购物车";
  1507. sourceTree = "<group>";
  1508. };
  1509. C45C8A322AD24895009D6C3A /* 确认订单 */ = {
  1510. isa = PBXGroup;
  1511. children = (
  1512. C4B082B12AF546A700CD146E /* view */,
  1513. C470B5A52AF0C719009046B4 /* CheckOrderViewController.swift */,
  1514. C42FF7A92B15DF4700B591F4 /* CheckOrderViewController.xib */,
  1515. );
  1516. path = "确认订单";
  1517. sourceTree = "<group>";
  1518. };
  1519. C45CE07D2BC475FB0087A769 /* 分享View */ = {
  1520. isa = PBXGroup;
  1521. children = (
  1522. C45CE07E2BC476440087A769 /* ShareQRcodeView.swift */,
  1523. C45CE0802BC4764F0087A769 /* ShareQRcodeView.xib */,
  1524. );
  1525. path = "分享View";
  1526. sourceTree = "<group>";
  1527. };
  1528. C45F7AEC2B3463F1004D944F /* 优惠 */ = {
  1529. isa = PBXGroup;
  1530. children = (
  1531. C45F7AED2B34641C004D944F /* SaleDetailView.swift */,
  1532. C45F7AF72B347532004D944F /* SaleDetailView.xib */,
  1533. C45F7AF12B346544004D944F /* SaleDetailViewCellTableViewCell.swift */,
  1534. C45F7AF22B346544004D944F /* SaleDetailViewCellTableViewCell.xib */,
  1535. );
  1536. path = "优惠";
  1537. sourceTree = "<group>";
  1538. };
  1539. C461C4902B272EE60010ABC6 /* 白团权限申请 */ = {
  1540. isa = PBXGroup;
  1541. children = (
  1542. C45C1A6C2B282E0100221FBD /* view */,
  1543. C461C4912B272F130010ABC6 /* ApplyWhiteManagerController.swift */,
  1544. C459CE192B2AC917000D16DC /* ApplyWhiteManagerController.xib */,
  1545. );
  1546. path = "白团权限申请";
  1547. sourceTree = "<group>";
  1548. };
  1549. C46731502AF9F6BB00658C58 /* 设置 */ = {
  1550. isa = PBXGroup;
  1551. children = (
  1552. C40AE3AF2B95E642007469C0 /* 语言切换 */,
  1553. C45654552B0C9B8F00F3E628 /* 修改信息View */,
  1554. C46731592AFA0ED100658C58 /* 注销 */,
  1555. C46731512AF9F6E400658C58 /* PersonalInformationVC.swift */,
  1556. C42AEE162B03786A0045EF66 /* PersonalInformationVC.xib */,
  1557. );
  1558. path = "设置";
  1559. sourceTree = "<group>";
  1560. };
  1561. C46731592AFA0ED100658C58 /* 注销 */ = {
  1562. isa = PBXGroup;
  1563. children = (
  1564. C46731552AFA085500658C58 /* UnsubscribeViewController.swift */,
  1565. C42AEE1D2B037AED0045EF66 /* UnsubscribeViewController.xib */,
  1566. C467315A2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift */,
  1567. C46731602AFA13FF00658C58 /* UnsubscribeDetailVC.xib */,
  1568. C45654432B0A628800F3E628 /* WriteOffResonCell.swift */,
  1569. C45654442B0A628800F3E628 /* WriteOffResonCell.xib */,
  1570. );
  1571. path = "注销";
  1572. sourceTree = "<group>";
  1573. };
  1574. C470B5882AEFEEFF009046B4 /* model */ = {
  1575. isa = PBXGroup;
  1576. children = (
  1577. C470B58C2AEFF1E2009046B4 /* ShopCarModel.swift */,
  1578. );
  1579. path = model;
  1580. sourceTree = "<group>";
  1581. };
  1582. C470B5892AEFEF04009046B4 /* viewmodel */ = {
  1583. isa = PBXGroup;
  1584. children = (
  1585. C470B58A2AEFEF39009046B4 /* ShoppingCarViewModel.swift */,
  1586. );
  1587. path = viewmodel;
  1588. sourceTree = "<group>";
  1589. };
  1590. C470B58E2AF0A5B0009046B4 /* view */ = {
  1591. isa = PBXGroup;
  1592. children = (
  1593. C4CF5F582ACD509600B6B2D9 /* MenuTableViewCell.swift */,
  1594. C45B67EA2B19DD4600EA1725 /* MenuTableViewCell.xib */,
  1595. C4CF5F5E2ACD640000B6B2D9 /* MenuHeadView.swift */,
  1596. C4CF5F602ACD640E00B6B2D9 /* MenuHeadView.xib */,
  1597. C4C51C812AF122A900F4636E /* EditorDeliveryView.swift */,
  1598. C4C51C832AF122B800F4636E /* EditorDeliveryView.xib */,
  1599. C4C51C852AF1413100F4636E /* EditPersonNumView.swift */,
  1600. C4C51C872AF1413B00F4636E /* EditPersonNumView.xib */,
  1601. C4C51C892AF1488E00F4636E /* ADHAlertView.swift */,
  1602. C45B67E32B19DCE400EA1725 /* ADHAlertView.xib */,
  1603. );
  1604. path = view;
  1605. sourceTree = "<group>";
  1606. };
  1607. C470B5A92AF0D896009046B4 /* 地址 */ = {
  1608. isa = PBXGroup;
  1609. children = (
  1610. C470B5B02AF0DC8C009046B4 /* view */,
  1611. C470B5AF2AF0DC86009046B4 /* viewModel */,
  1612. C470B5AE2AF0DC81009046B4 /* model */,
  1613. C470B5AA2AF0D8C8009046B4 /* AddressManagerVC.swift */,
  1614. C4C51C752AF0FF4100F4636E /* AddressManagerVC.xib */,
  1615. C4C51C6F2AF0EB0C00F4636E /* AddressEditorVC.swift */,
  1616. C4A73B592B18E6C300A1595A /* AddressEditorVC.xib */,
  1617. );
  1618. path = "地址";
  1619. sourceTree = "<group>";
  1620. };
  1621. C470B5AE2AF0DC81009046B4 /* model */ = {
  1622. isa = PBXGroup;
  1623. children = (
  1624. C4C51C6D2AF0E5A400F4636E /* AddresBaseModel.swift */,
  1625. );
  1626. path = model;
  1627. sourceTree = "<group>";
  1628. };
  1629. C470B5AF2AF0DC86009046B4 /* viewModel */ = {
  1630. isa = PBXGroup;
  1631. children = (
  1632. C4C51C6B2AF0E57E00F4636E /* AddresViewModel.swift */,
  1633. );
  1634. path = viewModel;
  1635. sourceTree = "<group>";
  1636. };
  1637. C470B5B02AF0DC8C009046B4 /* view */ = {
  1638. isa = PBXGroup;
  1639. children = (
  1640. C470B5B12AF0DCBA009046B4 /* AddresViewCell.swift */,
  1641. C42AEE0F2B0376F70045EF66 /* AddresViewCell.xib */,
  1642. );
  1643. path = view;
  1644. sourceTree = "<group>";
  1645. };
  1646. C48363A22AC3D96400E3FA1B = {
  1647. isa = PBXGroup;
  1648. children = (
  1649. C48363AD2AC3D96400E3FA1B /* ADHTuanCan */,
  1650. C48363C72AC3D96500E3FA1B /* ADHTuanCanTests */,
  1651. C48363D12AC3D96500E3FA1B /* ADHTuanCanUITests */,
  1652. C48363AC2AC3D96400E3FA1B /* Products */,
  1653. 0141F2528F4ED7ECFC47D713 /* Pods */,
  1654. 2DEE585807330C5CE73589E5 /* Frameworks */,
  1655. );
  1656. sourceTree = "<group>";
  1657. };
  1658. C48363AC2AC3D96400E3FA1B /* Products */ = {
  1659. isa = PBXGroup;
  1660. children = (
  1661. C48363AB2AC3D96400E3FA1B /* ADHTuanCan.app */,
  1662. C48363C42AC3D96500E3FA1B /* ADHTuanCanTests.xctest */,
  1663. C48363CE2AC3D96500E3FA1B /* ADHTuanCanUITests.xctest */,
  1664. );
  1665. name = Products;
  1666. sourceTree = "<group>";
  1667. };
  1668. C48363AD2AC3D96400E3FA1B /* ADHTuanCan */ = {
  1669. isa = PBXGroup;
  1670. children = (
  1671. C4836A262AC3F80E00E3FA1B /* Class */,
  1672. C48363AE2AC3D96400E3FA1B /* AppDelegate.swift */,
  1673. C48363B42AC3D96400E3FA1B /* Main.storyboard */,
  1674. C4110B472B47F9FC00B23195 /* Launch Screen.storyboard */,
  1675. C48363BA2AC3D96500E3FA1B /* Assets.xcassets */,
  1676. C4522D0D2B0E212500808F76 /* Info.plist */,
  1677. C4522D122B0E21A600808F76 /* InfoPlist.strings */,
  1678. C454118D2B0130970096F60E /* sortedNameCH.plist */,
  1679. C454118C2B0130970096F60E /* sortedNameEN.plist */,
  1680. C48363B72AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld */,
  1681. );
  1682. path = ADHTuanCan;
  1683. sourceTree = "<group>";
  1684. };
  1685. C48363C72AC3D96500E3FA1B /* ADHTuanCanTests */ = {
  1686. isa = PBXGroup;
  1687. children = (
  1688. C48363C82AC3D96500E3FA1B /* ADHTuanCanTests.swift */,
  1689. );
  1690. path = ADHTuanCanTests;
  1691. sourceTree = "<group>";
  1692. };
  1693. C48363D12AC3D96500E3FA1B /* ADHTuanCanUITests */ = {
  1694. isa = PBXGroup;
  1695. children = (
  1696. C48363D22AC3D96500E3FA1B /* ADHTuanCanUITests.swift */,
  1697. C48363D42AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift */,
  1698. );
  1699. path = ADHTuanCanUITests;
  1700. sourceTree = "<group>";
  1701. };
  1702. C48368612AC3EF6700E3FA1B /* Config */ = {
  1703. isa = PBXGroup;
  1704. children = (
  1705. C4836A242AC3F6D500E3FA1B /* ADHcolor.swift */,
  1706. C4836A272AC3FBD900E3FA1B /* MacroDefinition.swift */,
  1707. C45DC11F2AE90D230066BD93 /* LanguagesUtil.swift */,
  1708. C4836A472AC41C1100E3FA1B /* Localizable.strings */,
  1709. C4CF5F3D2ACD3B8000B6B2D9 /* UserDefaultUtil.swift */,
  1710. C4EDD9752AF2813B00BE8EFF /* ACMacros.h */,
  1711. C48368622AC3F00500E3FA1B /* ADHTuanCan-Bridging-Header.h */,
  1712. C4836AD32AC52D6300E3FA1B /* ADHTuanCan-Bridging-Header.h */,
  1713. );
  1714. path = Config;
  1715. sourceTree = "<group>";
  1716. };
  1717. C48369EF2AC3F38400E3FA1B /* VC */ = {
  1718. isa = PBXGroup;
  1719. children = (
  1720. C4EDD9762AF2849300BE8EFF /* 空数据 */,
  1721. C4EDD90E2AF27C4800BE8EFF /* 导航栏 */,
  1722. C4EDD90B2AF2614E00BE8EFF /* NavController */,
  1723. C4836B812AC7F74D00E3FA1B /* TabBar */,
  1724. C4836B862AC8039500E3FA1B /* ADHBaseVC.swift */,
  1725. );
  1726. path = VC;
  1727. sourceTree = "<group>";
  1728. };
  1729. C4836A232AC3F57F00E3FA1B /* Category */ = {
  1730. isa = PBXGroup;
  1731. children = (
  1732. C42AEDD32B035A9D0045EF66 /* 日期选择 */,
  1733. C4C9B85A2AF3C5ED00C13A61 /* 圆角 */,
  1734. C4EDDA222AF28BAC00BE8EFF /* Aspect */,
  1735. C4EDDA112AF28B7400BE8EFF /* UITableViewCell */,
  1736. C4EDD9E92AF28B0D00BE8EFF /* UITableView */,
  1737. C4EDD9222AF27DDC00BE8EFF /* UIView */,
  1738. C4EDD91B2AF27CD400BE8EFF /* UIFont */,
  1739. C4577CE82AEBCEE9004D9439 /* NSObject */,
  1740. C42BB55E2ADD5045003FF663 /* Proxy多重代理 */,
  1741. C4CF5F0B2AC9801300B6B2D9 /* Hud */,
  1742. C4836A742AC517AA00E3FA1B /* Model */,
  1743. C4836A642AC516FC00E3FA1B /* HTTP */,
  1744. C48369EF2AC3F38400E3FA1B /* VC */,
  1745. );
  1746. path = Category;
  1747. sourceTree = "<group>";
  1748. };
  1749. C4836A262AC3F80E00E3FA1B /* Class */ = {
  1750. isa = PBXGroup;
  1751. children = (
  1752. C45CE07D2BC475FB0087A769 /* 分享View */,
  1753. C45F7AEC2B3463F1004D944F /* 优惠 */,
  1754. C45654622B0CFF8700F3E628 /* 图片管理 */,
  1755. C4836AA12AC51BDC00E3FA1B /* Libs */,
  1756. C4836A232AC3F57F00E3FA1B /* Category */,
  1757. C48368612AC3EF6700E3FA1B /* Config */,
  1758. C4836A292AC3FCFA00E3FA1B /* 登录 */,
  1759. C40690E72B07A2FE002688FD /* 仿酒店入住 */,
  1760. C4836B2C2AC56AFE00E3FA1B /* 首页 */,
  1761. C4577CA52AEA77F9004D9439 /* 餐品详情 */,
  1762. C4C6D8472AFCD1E000E1AFB5 /* 支付类 */,
  1763. C45C8A212AD18E0B009D6C3A /* 购物车 */,
  1764. C4CF5F512ACD4BD100B6B2D9 /* 订单 */,
  1765. C4BFF7992AFD129500CCA462 /* 评价 */,
  1766. C4CF5F152ACA81A400B6B2D9 /* 我的 */,
  1767. C470B5A92AF0D896009046B4 /* 地址 */,
  1768. );
  1769. path = Class;
  1770. sourceTree = "<group>";
  1771. };
  1772. C4836A292AC3FCFA00E3FA1B /* 登录 */ = {
  1773. isa = PBXGroup;
  1774. children = (
  1775. C45411902B0130C40096F60E /* EWCountryCodeViewController.swift */,
  1776. C45411872B012C960096F60E /* 手机快捷登录 */,
  1777. C42BB5732ADD6F04003FF663 /* viewModel */,
  1778. C42BB56E2ADD6931003FF663 /* model */,
  1779. C42BB5592ADD4C3C003FF663 /* 验证码 */,
  1780. C42BB5522ADD4551003FF663 /* 注册 */,
  1781. C45C66942B01E2B9005E13CE /* 修改支付密码 */,
  1782. C45C668F2B01CEB5005E13CE /* 修改登录密码 */,
  1783. C4836B2B2AC56AF700E3FA1B /* 启动页 */,
  1784. C4836AC72AC51FBB00E3FA1B /* TCLogingViewController.swift */,
  1785. C40691422B08BC92002688FD /* TCLogingViewController.xib */,
  1786. C4836ADA2AC53FF200E3FA1B /* ContractView.swift */,
  1787. C4836B222AC5601900E3FA1B /* ContractView.xib */,
  1788. );
  1789. path = "登录";
  1790. sourceTree = "<group>";
  1791. };
  1792. C4836A642AC516FC00E3FA1B /* HTTP */ = {
  1793. isa = PBXGroup;
  1794. children = (
  1795. C4BFF79A2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift */,
  1796. C4836A682AC516FC00E3FA1B /* MCResponseModel.swift */,
  1797. C4836A692AC516FC00E3FA1B /* MCHttpUtil.swift */,
  1798. C4836A6C2AC516FC00E3FA1B /* MCHttpRxExtension.swift */,
  1799. C4BFF7F62AFD2D3500CCA462 /* Http+UploadImage.swift */,
  1800. );
  1801. path = HTTP;
  1802. sourceTree = "<group>";
  1803. };
  1804. C4836A742AC517AA00E3FA1B /* Model */ = {
  1805. isa = PBXGroup;
  1806. children = (
  1807. C4836A752AC517AA00E3FA1B /* MCBaseModel.swift */,
  1808. C4836A762AC517AA00E3FA1B /* MCBaseRequestModel.swift */,
  1809. C4836A772AC517AA00E3FA1B /* MCBaseViewModel.swift */,
  1810. );
  1811. path = Model;
  1812. sourceTree = "<group>";
  1813. };
  1814. C4836A7B2AC5180A00E3FA1B /* OtherClassUtil */ = {
  1815. isa = PBXGroup;
  1816. children = (
  1817. C4836B032AC5581F00E3FA1B /* UIKit */,
  1818. );
  1819. path = OtherClassUtil;
  1820. sourceTree = "<group>";
  1821. };
  1822. C4836AA12AC51BDC00E3FA1B /* Libs */ = {
  1823. isa = PBXGroup;
  1824. children = (
  1825. C4EDD9A62AF2879100BE8EFF /* MJRefresh */,
  1826. C4CF5F0E2AC9813B00B6B2D9 /* MBProgressHUD */,
  1827. C4836B402AC57AA400E3FA1B /* UIView+Visualization.h */,
  1828. C4836B3F2AC57AA400E3FA1B /* UIView+Visualization.m */,
  1829. C4836A7B2AC5180A00E3FA1B /* OtherClassUtil */,
  1830. );
  1831. path = Libs;
  1832. sourceTree = "<group>";
  1833. };
  1834. C4836B032AC5581F00E3FA1B /* UIKit */ = {
  1835. isa = PBXGroup;
  1836. children = (
  1837. C45DC1212AE91AB70066BD93 /* ImageView.swift */,
  1838. C4CF5F5C2ACD632600B6B2D9 /* TableViewUtil.swift */,
  1839. C4836B572AC5912300E3FA1B /* NibUtil.swift */,
  1840. C4836B552AC5910E00E3FA1B /* CollectionViewUtil.swift */,
  1841. C4836B162AC5597B00E3FA1B /* ButtonUtil.swift */,
  1842. C4836A7C2AC5180A00E3FA1B /* NotificationUtil.swift */,
  1843. C4836A7D2AC5180A00E3FA1B /* Convert.swift */,
  1844. C4836A7E2AC5180A00E3FA1B /* OptionalUtil.swift */,
  1845. C4836A802AC5180A00E3FA1B /* OtherGeneralMethod.swift */,
  1846. C4836A812AC5180A00E3FA1B /* ArrayUtil.swift */,
  1847. C4836A822AC5180A00E3FA1B /* GCDUtil.swift */,
  1848. C4836A842AC5180A00E3FA1B /* StringUtil.swift */,
  1849. C448CD112AFE4FA900B3B068 /* textView.swift */,
  1850. );
  1851. path = UIKit;
  1852. sourceTree = "<group>";
  1853. };
  1854. C4836B2B2AC56AF700E3FA1B /* 启动页 */ = {
  1855. isa = PBXGroup;
  1856. children = (
  1857. C4CF5F432ACD434E00B6B2D9 /* view */,
  1858. C4CF5F412ACD3EDA00B6B2D9 /* StartupPageViewController.swift */,
  1859. );
  1860. path = "启动页";
  1861. sourceTree = "<group>";
  1862. };
  1863. C4836B2C2AC56AFE00E3FA1B /* 首页 */ = {
  1864. isa = PBXGroup;
  1865. children = (
  1866. C45C66992B01EE9D005E13CE /* 业务员信息 */,
  1867. C45411822B00E35D0096F60E /* 普团首页 */,
  1868. C4CF5F062AC97D7C00B6B2D9 /* model */,
  1869. C4CF5F032AC97D2300B6B2D9 /* viewModel */,
  1870. C4836B492AC58B8400E3FA1B /* view */,
  1871. C4836B3B2AC5784900E3FA1B /* HomeViewController.swift */,
  1872. C42AEDEA2B03727E0045EF66 /* HomeViewController.xib */,
  1873. );
  1874. path = "首页";
  1875. sourceTree = "<group>";
  1876. };
  1877. C4836B492AC58B8400E3FA1B /* view */ = {
  1878. isa = PBXGroup;
  1879. children = (
  1880. C406A0852B91D3E9005A6423 /* WMFloatButton.swift */,
  1881. C4836B4A2AC58BE200E3FA1B /* HomeFoodItem.swift */,
  1882. C42AEDFA2B03731E0045EF66 /* HomeFoodItem.xib */,
  1883. C4836C2E2AC89C0000E3FA1B /* 搜索 */,
  1884. C4836C292AC87B0400E3FA1B /* 首页推荐分类 */,
  1885. C4836B6A2AC726C100E3FA1B /* 大家都爱点 */,
  1886. C4836B692AC726AF00E3FA1B /* 预定期间 */,
  1887. );
  1888. path = view;
  1889. sourceTree = "<group>";
  1890. };
  1891. C4836B692AC726AF00E3FA1B /* 预定期间 */ = {
  1892. isa = PBXGroup;
  1893. children = (
  1894. C45C8A202AD18DE6009D6C3A /* 日期区间 */,
  1895. C4836B592AC6ED0600E3FA1B /* HomeDateView.swift */,
  1896. C4836B7C2AC7308400E3FA1B /* HomeDateView.xib */,
  1897. C4836B612AC7035D00E3FA1B /* dateItem.swift */,
  1898. C4836B652AC7037600E3FA1B /* dateItem.xib */,
  1899. );
  1900. path = "预定期间";
  1901. sourceTree = "<group>";
  1902. };
  1903. C4836B6A2AC726C100E3FA1B /* 大家都爱点 */ = {
  1904. isa = PBXGroup;
  1905. children = (
  1906. C4836B6B2AC7271800E3FA1B /* EverybodyLoveView.swift */,
  1907. C4836B712AC72B0F00E3FA1B /* EverybodyLoveView.xib */,
  1908. C4836B762AC72C0900E3FA1B /* EverybodyLoveItem.swift */,
  1909. C42AEE012B03737D0045EF66 /* EverybodyLoveItem.xib */,
  1910. );
  1911. path = "大家都爱点";
  1912. sourceTree = "<group>";
  1913. };
  1914. C4836B812AC7F74D00E3FA1B /* TabBar */ = {
  1915. isa = PBXGroup;
  1916. children = (
  1917. C4836B842AC7F79600E3FA1B /* BaseTabbarController.swift */,
  1918. );
  1919. path = TabBar;
  1920. sourceTree = "<group>";
  1921. };
  1922. C4836C292AC87B0400E3FA1B /* 首页推荐分类 */ = {
  1923. isa = PBXGroup;
  1924. children = (
  1925. C4836C2A2AC87B5F00E3FA1B /* HomeRecommendView.swift */,
  1926. C4836C2C2AC87B6900E3FA1B /* HomeRecommendView.xib */,
  1927. );
  1928. path = "首页推荐分类";
  1929. sourceTree = "<group>";
  1930. };
  1931. C4836C2E2AC89C0000E3FA1B /* 搜索 */ = {
  1932. isa = PBXGroup;
  1933. children = (
  1934. C4836C2F2AC89C1800E3FA1B /* SearchView.swift */,
  1935. C4836C352AC8A26A00E3FA1B /* SearchView.xib */,
  1936. );
  1937. path = "搜索";
  1938. sourceTree = "<group>";
  1939. };
  1940. C4B082B12AF546A700CD146E /* view */ = {
  1941. isa = PBXGroup;
  1942. children = (
  1943. C40690DB2B0714EE002688FD /* CheckOrderFootView.swift */,
  1944. C40690DA2B0714EE002688FD /* CheckOrderFootView.xib */,
  1945. C470B59A2AF0BDB5009046B4 /* CheckOrderHeadView.swift */,
  1946. C4B082BA2AF54CA500CD146E /* CheckOrderHeadView.xib */,
  1947. C44301F82AF5DEBA0098C854 /* OrderAddressCell.swift */,
  1948. C44301FE2AF5E1860098C854 /* OrderAddressCell.xib */,
  1949. C450016D2AD67CF000F96CFA /* OrderReadyCell.swift */,
  1950. C450016E2AD67CF000F96CFA /* OrderReadyCell.xib */,
  1951. C44301F42AF5DC830098C854 /* selectAddressView.swift */,
  1952. C44302172AF5F5370098C854 /* selectAddressView.xib */,
  1953. C47F82762BF1A989006C4B6E /* OrderNeedToKnow.swift */,
  1954. C47F82832BF1B305006C4B6E /* OrderNeedToKnow.xib */,
  1955. );
  1956. path = view;
  1957. sourceTree = "<group>";
  1958. };
  1959. C4BFF7992AFD129500CCA462 /* 评价 */ = {
  1960. isa = PBXGroup;
  1961. children = (
  1962. C448CCFB2AFE3B1C00B3B068 /* view */,
  1963. C448CCFA2AFE3B1600B3B068 /* viewModel */,
  1964. C448CCF92AFE3B1200B3B068 /* model */,
  1965. C448CCF52AFE37CE00B3B068 /* AddEvaluateViewController.swift */,
  1966. C448CD0D2AFE4E8700B3B068 /* AddEvaluateViewController.xib */,
  1967. C41DA49C2AFEF9D500707C5D /* MealEvaluateListVC.swift */,
  1968. C41DA49D2AFEF9D500707C5D /* MealEvaluateListVC.xib */,
  1969. );
  1970. path = "评价";
  1971. sourceTree = "<group>";
  1972. };
  1973. C4C6D8422AFCCB2400E1AFB5 /* 余额 */ = {
  1974. isa = PBXGroup;
  1975. children = (
  1976. C45411722B00DB620096F60E /* view */,
  1977. C4C6D8432AFCCB3900E1AFB5 /* BalanceViewController.swift */,
  1978. C45B67F12B19DDBB00EA1725 /* BalanceViewController.xib */,
  1979. C42AEE292B04D9CA0045EF66 /* RechargeAmountViewController.swift */,
  1980. C40AE3AA2B95CB5A007469C0 /* RechargeAmountViewController.xib */,
  1981. );
  1982. path = "余额";
  1983. sourceTree = "<group>";
  1984. };
  1985. C4C6D8472AFCD1E000E1AFB5 /* 支付类 */ = {
  1986. isa = PBXGroup;
  1987. children = (
  1988. C44302202AF6043B0098C854 /* PayMentSelectView.swift */,
  1989. C44302262AF6073A0098C854 /* PayMentSelectView.xib */,
  1990. C443022D2AF615780098C854 /* UserPayMentSheet.swift */,
  1991. C443023C2AF61A2A0098C854 /* UserPayMentSheet.xib */,
  1992. C44CFA482AFB3247000D592D /* payMentItemCell.swift */,
  1993. C44CFA492AFB3247000D592D /* payMentItemCell.xib */,
  1994. C4C6D8482AFCD21F00E1AFB5 /* PswPayView.swift */,
  1995. C4C6D84A2AFCD22800E1AFB5 /* PswPayView.xib */,
  1996. C4194E7B2B565DAC00B60D41 /* PaySuccessView.swift */,
  1997. C4194E8A2B566AC300B60D41 /* PaySuccessView.xib */,
  1998. );
  1999. path = "支付类";
  2000. sourceTree = "<group>";
  2001. };
  2002. C4C9B85A2AF3C5ED00C13A61 /* 圆角 */ = {
  2003. isa = PBXGroup;
  2004. children = (
  2005. C4C9B85B2AF3C5FE00C13A61 /* YDRectCorner.swift */,
  2006. C4C9B8642AF3C7F900C13A61 /* UIView+rounded.swift */,
  2007. C40690F42B07AAF9002688FD /* RectCornerUtil.swift */,
  2008. );
  2009. path = "圆角";
  2010. sourceTree = "<group>";
  2011. };
  2012. C4CF5F032AC97D2300B6B2D9 /* viewModel */ = {
  2013. isa = PBXGroup;
  2014. children = (
  2015. C4CF5F042AC97D6800B6B2D9 /* HomeViewModel.swift */,
  2016. );
  2017. path = viewModel;
  2018. sourceTree = "<group>";
  2019. };
  2020. C4CF5F062AC97D7C00B6B2D9 /* model */ = {
  2021. isa = PBXGroup;
  2022. children = (
  2023. C4CF5F082AC97DB500B6B2D9 /* TCHomeGetDataModel.swift */,
  2024. );
  2025. path = model;
  2026. sourceTree = "<group>";
  2027. };
  2028. C4CF5F0B2AC9801300B6B2D9 /* Hud */ = {
  2029. isa = PBXGroup;
  2030. children = (
  2031. C4CF5F0C2AC9801300B6B2D9 /* MCHud.swift */,
  2032. );
  2033. path = Hud;
  2034. sourceTree = "<group>";
  2035. };
  2036. C4CF5F0E2AC9813B00B6B2D9 /* MBProgressHUD */ = {
  2037. isa = PBXGroup;
  2038. children = (
  2039. C4CF5F0F2AC9813B00B6B2D9 /* UIViewController+HUB.h */,
  2040. C4CF5F122AC9813B00B6B2D9 /* UIViewController+HUB.m */,
  2041. C4CF5F112AC9813B00B6B2D9 /* MBProgressHUD.h */,
  2042. C4CF5F102AC9813B00B6B2D9 /* MBProgressHUD.m */,
  2043. );
  2044. path = MBProgressHUD;
  2045. sourceTree = "<group>";
  2046. };
  2047. C4CF5F152ACA81A400B6B2D9 /* 我的 */ = {
  2048. isa = PBXGroup;
  2049. children = (
  2050. C461C4902B272EE60010ABC6 /* 白团权限申请 */,
  2051. C45654612B0CC17600F3E628 /* 会员中心 */,
  2052. C45654472B0B831900F3E628 /* 成员 */,
  2053. C41DA4E62AFFD2B400707C5D /* 规则说明 */,
  2054. C41DA4A42AFF172B00707C5D /* 积分 */,
  2055. C4C6D8422AFCCB2400E1AFB5 /* 余额 */,
  2056. C41DA4CC2AFF44DF00707C5D /* 优惠卷 */,
  2057. C44CFA5E2AFB5C8E000D592D /* model */,
  2058. C44CFA5D2AFB5C87000D592D /* viewModel */,
  2059. C44CFA5C2AFB5C82000D592D /* view */,
  2060. C46731502AF9F6BB00658C58 /* 设置 */,
  2061. C45E1EC42AF9DC91005C9210 /* MyViewController.swift */,
  2062. C45E1ECA2AF9E412005C9210 /* MyViewController.xib */,
  2063. );
  2064. path = "我的";
  2065. sourceTree = "<group>";
  2066. };
  2067. C4CF5F432ACD434E00B6B2D9 /* view */ = {
  2068. isa = PBXGroup;
  2069. children = (
  2070. C4CF5F442ACD436600B6B2D9 /* StartView.swift */,
  2071. C4CF5F4C2ACD468000B6B2D9 /* StartView.xib */,
  2072. );
  2073. path = view;
  2074. sourceTree = "<group>";
  2075. };
  2076. C4CF5F512ACD4BD100B6B2D9 /* 订单 */ = {
  2077. isa = PBXGroup;
  2078. children = (
  2079. C438E3C72AF795A700F671AE /* OrderTypeEnum.swift */,
  2080. C45001672AD677DB00F96CFA /* 订单详情 */,
  2081. C443021D2AF5FA010098C854 /* viewModel */,
  2082. C443021C2AF5F9FB0098C854 /* model */,
  2083. C45001682AD677FC00F96CFA /* view */,
  2084. C4CF5F562ACD502200B6B2D9 /* 已选菜品 */,
  2085. C45C8A272AD240B9009D6C3A /* OrderManagerVC.swift */,
  2086. C45CE0782BC4748C0087A769 /* OrderManagerVC.xib */,
  2087. );
  2088. path = "订单";
  2089. sourceTree = "<group>";
  2090. };
  2091. C4CF5F562ACD502200B6B2D9 /* 已选菜品 */ = {
  2092. isa = PBXGroup;
  2093. children = (
  2094. );
  2095. path = "已选菜品";
  2096. sourceTree = "<group>";
  2097. };
  2098. C4EDD90B2AF2614E00BE8EFF /* NavController */ = {
  2099. isa = PBXGroup;
  2100. children = (
  2101. C4EDD90C2AF2618A00BE8EFF /* ADHBaseNavigationController.swift */,
  2102. );
  2103. path = NavController;
  2104. sourceTree = "<group>";
  2105. };
  2106. C4EDD90E2AF27C4800BE8EFF /* 导航栏 */ = {
  2107. isa = PBXGroup;
  2108. children = (
  2109. C4EDD90F2AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift */,
  2110. C4EDD9102AF27C4800BE8EFF /* MCNavBarDelegate.swift */,
  2111. C4EDD9112AF27C4800BE8EFF /* MCNavBarView.swift */,
  2112. C4EDD9122AF27C4800BE8EFF /* MCNavBarSearchView.swift */,
  2113. C4EDD9132AF27C4800BE8EFF /* MCNavBarSegmentView.swift */,
  2114. C4EDD9142AF27C4800BE8EFF /* MCNavBarCustomView.swift */,
  2115. );
  2116. path = "导航栏";
  2117. sourceTree = "<group>";
  2118. };
  2119. C4EDD91B2AF27CD400BE8EFF /* UIFont */ = {
  2120. isa = PBXGroup;
  2121. children = (
  2122. C4EDD91C2AF27CD400BE8EFF /* UIFont+Fonts.h */,
  2123. C4EDD91F2AF27CD400BE8EFF /* UIFont+Fonts.m */,
  2124. );
  2125. path = UIFont;
  2126. sourceTree = "<group>";
  2127. };
  2128. C4EDD9222AF27DDC00BE8EFF /* UIView */ = {
  2129. isa = PBXGroup;
  2130. children = (
  2131. C4EDD9682AF27EF400BE8EFF /* View */,
  2132. C4EDD9232AF27DDC00BE8EFF /* UIView+Segment.m */,
  2133. C4EDD9242AF27DDC00BE8EFF /* UIView+XIB.m */,
  2134. C4EDD9252AF27DDC00BE8EFF /* UIView+Nib.m */,
  2135. C4EDD9262AF27DDC00BE8EFF /* UIView+XMGExtension.h */,
  2136. C4EDD9272AF27DDC00BE8EFF /* UIView+Shake.h */,
  2137. C4EDD9282AF27DDC00BE8EFF /* UIView+GestureCallback.m */,
  2138. C4EDD9292AF27DDC00BE8EFF /* UIView+GlowView.h */,
  2139. C4EDD92A2AF27DDC00BE8EFF /* UIView+Blur.h */,
  2140. C4EDD92B2AF27DDC00BE8EFF /* UIView+ViewController.m */,
  2141. C4EDD92C2AF27DDC00BE8EFF /* UIView+Hint.h */,
  2142. C4EDD92D2AF27DDC00BE8EFF /* UIView+AnimationProperty.h */,
  2143. C4EDD92E2AF27DDC00BE8EFF /* UIView+Find.h */,
  2144. C4EDD92F2AF27DDC00BE8EFF /* succeed.png */,
  2145. C4EDD9302AF27DDC00BE8EFF /* UIView+JYPBadgeView.h */,
  2146. C4EDD9312AF27DDC00BE8EFF /* UIView+MAC.m */,
  2147. C4EDD9322AF27DDC00BE8EFF /* UIView+BlockGesture.m */,
  2148. C4EDD9332AF27DDC00BE8EFF /* UIView+Visualization.m */,
  2149. C4EDD9352AF27DDC00BE8EFF /* UIView+Screenshot.h */,
  2150. C4EDD9362AF27DDC00BE8EFF /* UIViewHeader.h */,
  2151. C4EDD9372AF27DDC00BE8EFF /* UIView+RecursiveDescription.h */,
  2152. C4EDD9382AF27DDC00BE8EFF /* EAFeatureGuideView */,
  2153. C4EDD93D2AF27DDC00BE8EFF /* UIView+Shake.m */,
  2154. C4EDD93E2AF27DDC00BE8EFF /* UIView+XMGExtension.m */,
  2155. C4EDD93F2AF27DDC00BE8EFF /* UIView+Nib.h */,
  2156. C4EDD9402AF27DDC00BE8EFF /* UIView+XIB.h */,
  2157. C4EDD9412AF27DDC00BE8EFF /* error.png */,
  2158. C4EDD9422AF27DDC00BE8EFF /* UIView+Segment.h */,
  2159. C4EDD9432AF27DDC00BE8EFF /* UIView+AnimationProperty.m */,
  2160. C4EDD9442AF27DDC00BE8EFF /* UIView+Hint.m */,
  2161. C4EDD9452AF27DDC00BE8EFF /* UIView+ViewController.h */,
  2162. C4EDD9462AF27DDC00BE8EFF /* UIView+Blur.m */,
  2163. C4EDD9472AF27DDC00BE8EFF /* UIView+GlowView.m */,
  2164. C4EDD9482AF27DDC00BE8EFF /* UIView+GestureCallback.h */,
  2165. C4EDD9492AF27DDC00BE8EFF /* UIView+MAC.h */,
  2166. C4EDD94A2AF27DDC00BE8EFF /* UIView+BlockGesture.h */,
  2167. C4EDD94B2AF27DDC00BE8EFF /* UIView+Visualization.h */,
  2168. C4EDD94C2AF27DDC00BE8EFF /* UIView+JYPBadgeView.m */,
  2169. C4EDD94D2AF27DDC00BE8EFF /* UIView+Find.m */,
  2170. C4EDD94E2AF27DDC00BE8EFF /* UIView+RecursiveDescription.m */,
  2171. C4EDD9502AF27DDC00BE8EFF /* UIView+Screenshot.m */,
  2172. );
  2173. path = UIView;
  2174. sourceTree = "<group>";
  2175. };
  2176. C4EDD9382AF27DDC00BE8EFF /* EAFeatureGuideView */ = {
  2177. isa = PBXGroup;
  2178. children = (
  2179. C4EDD9392AF27DDC00BE8EFF /* EAFeatureItem.m */,
  2180. C4EDD93A2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.h */,
  2181. C4EDD93B2AF27DDC00BE8EFF /* EAFeatureItem.h */,
  2182. C4EDD93C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m */,
  2183. );
  2184. path = EAFeatureGuideView;
  2185. sourceTree = "<group>";
  2186. };
  2187. C4EDD9682AF27EF400BE8EFF /* View */ = {
  2188. isa = PBXGroup;
  2189. children = (
  2190. C4EDD96B2AF27EF400BE8EFF /* Cell */,
  2191. C4EDD96F2AF27EF400BE8EFF /* QFTSearchBar.h */,
  2192. C4EDD96A2AF27EF400BE8EFF /* QFTSearchBar.m */,
  2193. C4EDD9692AF27EF400BE8EFF /* QFTSearchContentView.h */,
  2194. C4EDD9702AF27EF400BE8EFF /* QFTSearchContentView.m */,
  2195. );
  2196. path = View;
  2197. sourceTree = "<group>";
  2198. };
  2199. C4EDD96B2AF27EF400BE8EFF /* Cell */ = {
  2200. isa = PBXGroup;
  2201. children = (
  2202. C4EDD96C2AF27EF400BE8EFF /* QFTMoreSearchCell.m */,
  2203. C4EDD96D2AF27EF400BE8EFF /* QFTMoreSearchCell.xib */,
  2204. C4EDD96E2AF27EF400BE8EFF /* QFTMoreSearchCell.h */,
  2205. );
  2206. path = Cell;
  2207. sourceTree = "<group>";
  2208. };
  2209. C4EDD9762AF2849300BE8EFF /* 空数据 */ = {
  2210. isa = PBXGroup;
  2211. children = (
  2212. C4EDD9782AF2849300BE8EFF /* MCDZNEmptyDelegate.swift */,
  2213. C4EDD97B2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift */,
  2214. );
  2215. path = "空数据";
  2216. sourceTree = "<group>";
  2217. };
  2218. C4EDD9A62AF2879100BE8EFF /* MJRefresh */ = {
  2219. isa = PBXGroup;
  2220. children = (
  2221. C4EDD9A72AF2879100BE8EFF /* UIScrollView+MJRefresh.m */,
  2222. C4EDD9A82AF2879100BE8EFF /* MJRefreshConst.m */,
  2223. C4EDD9A92AF2879100BE8EFF /* UIScrollView+MJExtension.h */,
  2224. C4EDD9AA2AF2879100BE8EFF /* MJRefresh.h */,
  2225. C4EDD9AB2AF2879100BE8EFF /* NSBundle+MJRefresh.h */,
  2226. C4EDD9AC2AF2879100BE8EFF /* MJRefresh.bundle */,
  2227. C4EDD9AD2AF2879100BE8EFF /* UIView+MJExtension.h */,
  2228. C4EDD9AE2AF2879100BE8EFF /* UIScrollView+MJExtension.m */,
  2229. C4EDD9AF2AF2879100BE8EFF /* MJRefreshConst.h */,
  2230. C4EDD9B02AF2879100BE8EFF /* UIScrollView+MJRefresh.h */,
  2231. C4EDD9B12AF2879100BE8EFF /* NSBundle+MJRefresh.m */,
  2232. C4EDD9B22AF2879100BE8EFF /* UIView+MJExtension.m */,
  2233. C4EDD9B32AF2879100BE8EFF /* Custom */,
  2234. C4EDD9CA2AF2879100BE8EFF /* Base */,
  2235. );
  2236. path = MJRefresh;
  2237. sourceTree = "<group>";
  2238. };
  2239. C4EDD9B32AF2879100BE8EFF /* Custom */ = {
  2240. isa = PBXGroup;
  2241. children = (
  2242. C4EDD9B42AF2879100BE8EFF /* Footer */,
  2243. C4EDD9C32AF2879100BE8EFF /* Header */,
  2244. );
  2245. path = Custom;
  2246. sourceTree = "<group>";
  2247. };
  2248. C4EDD9B42AF2879100BE8EFF /* Footer */ = {
  2249. isa = PBXGroup;
  2250. children = (
  2251. C4EDD9B52AF2879100BE8EFF /* Back */,
  2252. C4EDD9BC2AF2879100BE8EFF /* Auto */,
  2253. );
  2254. path = Footer;
  2255. sourceTree = "<group>";
  2256. };
  2257. C4EDD9B52AF2879100BE8EFF /* Back */ = {
  2258. isa = PBXGroup;
  2259. children = (
  2260. C4EDD9B62AF2879100BE8EFF /* MJRefreshBackGifFooter.h */,
  2261. C4EDD9B72AF2879100BE8EFF /* MJRefreshBackStateFooter.h */,
  2262. C4EDD9B82AF2879100BE8EFF /* MJRefreshBackNormalFooter.h */,
  2263. C4EDD9B92AF2879100BE8EFF /* MJRefreshBackGifFooter.m */,
  2264. C4EDD9BA2AF2879100BE8EFF /* MJRefreshBackStateFooter.m */,
  2265. C4EDD9BB2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m */,
  2266. );
  2267. path = Back;
  2268. sourceTree = "<group>";
  2269. };
  2270. C4EDD9BC2AF2879100BE8EFF /* Auto */ = {
  2271. isa = PBXGroup;
  2272. children = (
  2273. C4EDD9BD2AF2879100BE8EFF /* MJRefreshAutoStateFooter.h */,
  2274. C4EDD9BE2AF2879100BE8EFF /* MJRefreshAutoNormalFooter.h */,
  2275. C4EDD9BF2AF2879100BE8EFF /* MJRefreshAutoGifFooter.h */,
  2276. C4EDD9C02AF2879100BE8EFF /* MJRefreshAutoStateFooter.m */,
  2277. C4EDD9C12AF2879100BE8EFF /* MJRefreshAutoGifFooter.m */,
  2278. C4EDD9C22AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m */,
  2279. );
  2280. path = Auto;
  2281. sourceTree = "<group>";
  2282. };
  2283. C4EDD9C32AF2879100BE8EFF /* Header */ = {
  2284. isa = PBXGroup;
  2285. children = (
  2286. C4EDD9C42AF2879100BE8EFF /* MJRefreshNormalHeader.m */,
  2287. C4EDD9C52AF2879100BE8EFF /* MJRefreshStateHeader.h */,
  2288. C4EDD9C62AF2879100BE8EFF /* MJRefreshGifHeader.h */,
  2289. C4EDD9C72AF2879100BE8EFF /* MJRefreshNormalHeader.h */,
  2290. C4EDD9C82AF2879100BE8EFF /* MJRefreshStateHeader.m */,
  2291. C4EDD9C92AF2879100BE8EFF /* MJRefreshGifHeader.m */,
  2292. );
  2293. path = Header;
  2294. sourceTree = "<group>";
  2295. };
  2296. C4EDD9CA2AF2879100BE8EFF /* Base */ = {
  2297. isa = PBXGroup;
  2298. children = (
  2299. C4EDD9CB2AF2879100BE8EFF /* MJRefreshFooter.m */,
  2300. C4EDD9CC2AF2879100BE8EFF /* MJRefreshComponent.h */,
  2301. C4EDD9CD2AF2879100BE8EFF /* MJRefreshHeader.m */,
  2302. C4EDD9CE2AF2879100BE8EFF /* MJRefreshAutoFooter.h */,
  2303. C4EDD9CF2AF2879100BE8EFF /* MJRefreshBackFooter.m */,
  2304. C4EDD9D02AF2879100BE8EFF /* MJRefreshAutoFooter.m */,
  2305. C4EDD9D12AF2879100BE8EFF /* MJRefreshHeader.h */,
  2306. C4EDD9D22AF2879100BE8EFF /* MJRefreshComponent.m */,
  2307. C4EDD9D32AF2879100BE8EFF /* MJRefreshFooter.h */,
  2308. C4EDD9D42AF2879100BE8EFF /* MJRefreshBackFooter.h */,
  2309. );
  2310. path = Base;
  2311. sourceTree = "<group>";
  2312. };
  2313. C4EDD9E92AF28B0D00BE8EFF /* UITableView */ = {
  2314. isa = PBXGroup;
  2315. children = (
  2316. C4EDD9EA2AF28B0D00BE8EFF /* UITableView+CellClass.m */,
  2317. C4EDD9EB2AF28B0D00BE8EFF /* MACTableView.m */,
  2318. C4EDD9EC2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.h */,
  2319. C4EDD9ED2AF28B0D00BE8EFF /* UITableViewHeader.h */,
  2320. C4EDD9EE2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m */,
  2321. C4EDD9EF2AF28B0D00BE8EFF /* MACTableView.h */,
  2322. C4EDD9F02AF28B0D00BE8EFF /* UITableView+CellClass.h */,
  2323. C4EDD9F12AF28B0D00BE8EFF /* DZNEmptyDataSet */,
  2324. C4EDD9F92AF28B0D00BE8EFF /* MACRefresh(刷新) */,
  2325. );
  2326. path = UITableView;
  2327. sourceTree = "<group>";
  2328. };
  2329. C4EDD9F12AF28B0D00BE8EFF /* DZNEmptyDataSet */ = {
  2330. isa = PBXGroup;
  2331. children = (
  2332. C4EDD9F22AF28B0D00BE8EFF /* DZEmptyDataCustomView */,
  2333. C4EDD9F72AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m */,
  2334. C4EDD9F82AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.h */,
  2335. );
  2336. path = DZNEmptyDataSet;
  2337. sourceTree = "<group>";
  2338. };
  2339. C4EDD9F22AF28B0D00BE8EFF /* DZEmptyDataCustomView */ = {
  2340. isa = PBXGroup;
  2341. children = (
  2342. C4EDD9F32AF28B0D00BE8EFF /* DZNEmptyDataView.xib */,
  2343. C4EDD9F42AF28B0D00BE8EFF /* DZNEmptyLoadView.xib */,
  2344. C4EDD9F52AF28B0D00BE8EFF /* DZNEmptyDataView.swift */,
  2345. C4EDD9F62AF28B0D00BE8EFF /* DZNEmptyLoadView.swift */,
  2346. );
  2347. path = DZEmptyDataCustomView;
  2348. sourceTree = "<group>";
  2349. };
  2350. C4EDD9F92AF28B0D00BE8EFF /* MACRefresh(刷新) */ = {
  2351. isa = PBXGroup;
  2352. children = (
  2353. C4EDD9FA2AF28B0D00BE8EFF /* icon_refresh_1@2x.png */,
  2354. C4EDD9FB2AF28B0D00BE8EFF /* icon_refresh_3@3x.png */,
  2355. C4EDD9FC2AF28B0D00BE8EFF /* icon_refresh_3@2x.png */,
  2356. C4EDD9FD2AF28B0D00BE8EFF /* icon_refresh_1@3x.png */,
  2357. C4EDD9FE2AF28B0D00BE8EFF /* MACRefreshHeader.h */,
  2358. C4EDD9FF2AF28B0D00BE8EFF /* icon_refresh_2@3x.png */,
  2359. C4EDDA002AF28B0D00BE8EFF /* icon_refresh_2@2x.png */,
  2360. C4EDDA012AF28B0D00BE8EFF /* MACRefreshHeader.m */,
  2361. );
  2362. path = "MACRefresh(刷新)";
  2363. sourceTree = "<group>";
  2364. };
  2365. C4EDDA112AF28B7400BE8EFF /* UITableViewCell */ = {
  2366. isa = PBXGroup;
  2367. children = (
  2368. C4EDDA122AF28B7400BE8EFF /* MACBaseCell.m */,
  2369. C4EDDA132AF28B7400BE8EFF /* CellDataAdapter.h */,
  2370. C4EDDA142AF28B7400BE8EFF /* UITableViewCell+MAC.h */,
  2371. C4EDDA152AF28B7400BE8EFF /* CellDataAdapter.m */,
  2372. C4EDDA162AF28B7400BE8EFF /* MGSwipeCell */,
  2373. C4EDDA1B2AF28B7400BE8EFF /* UITableViewCell+MAC.m */,
  2374. C4EDDA1C2AF28B7400BE8EFF /* MACBaseCell.h */,
  2375. );
  2376. path = UITableViewCell;
  2377. sourceTree = "<group>";
  2378. };
  2379. C4EDDA162AF28B7400BE8EFF /* MGSwipeCell */ = {
  2380. isa = PBXGroup;
  2381. children = (
  2382. C4EDDA172AF28B7400BE8EFF /* MGSwipeTableCell.m */,
  2383. C4EDDA182AF28B7400BE8EFF /* MGSwipeButton.h */,
  2384. C4EDDA192AF28B7400BE8EFF /* MGSwipeTableCell.h */,
  2385. C4EDDA1A2AF28B7400BE8EFF /* MGSwipeButton.m */,
  2386. );
  2387. path = MGSwipeCell;
  2388. sourceTree = "<group>";
  2389. };
  2390. C4EDDA222AF28BAC00BE8EFF /* Aspect */ = {
  2391. isa = PBXGroup;
  2392. children = (
  2393. C4EDDA232AF28BAC00BE8EFF /* Aspects.h */,
  2394. C4EDDA242AF28BAC00BE8EFF /* Aspects.m */,
  2395. );
  2396. path = Aspect;
  2397. sourceTree = "<group>";
  2398. };
  2399. /* End PBXGroup section */
  2400. /* Begin PBXNativeTarget section */
  2401. C48363AA2AC3D96400E3FA1B /* ADHTuanCan */ = {
  2402. isa = PBXNativeTarget;
  2403. buildConfigurationList = C48363D82AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCan" */;
  2404. buildPhases = (
  2405. 4806FAC5F7810EFBFFA344E5 /* [CP] Check Pods Manifest.lock */,
  2406. C48363A72AC3D96400E3FA1B /* Sources */,
  2407. C48363A82AC3D96400E3FA1B /* Frameworks */,
  2408. C48363A92AC3D96400E3FA1B /* Resources */,
  2409. C9DB7B5874414994DDCA100B /* [CP] Embed Pods Frameworks */,
  2410. );
  2411. buildRules = (
  2412. );
  2413. dependencies = (
  2414. );
  2415. name = ADHTuanCan;
  2416. productName = ADHTuanCan;
  2417. productReference = C48363AB2AC3D96400E3FA1B /* ADHTuanCan.app */;
  2418. productType = "com.apple.product-type.application";
  2419. };
  2420. C48363C32AC3D96500E3FA1B /* ADHTuanCanTests */ = {
  2421. isa = PBXNativeTarget;
  2422. buildConfigurationList = C48363DB2AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCanTests" */;
  2423. buildPhases = (
  2424. C48363C02AC3D96500E3FA1B /* Sources */,
  2425. C48363C12AC3D96500E3FA1B /* Frameworks */,
  2426. C48363C22AC3D96500E3FA1B /* Resources */,
  2427. );
  2428. buildRules = (
  2429. );
  2430. dependencies = (
  2431. C48363C62AC3D96500E3FA1B /* PBXTargetDependency */,
  2432. );
  2433. name = ADHTuanCanTests;
  2434. productName = ADHTuanCanTests;
  2435. productReference = C48363C42AC3D96500E3FA1B /* ADHTuanCanTests.xctest */;
  2436. productType = "com.apple.product-type.bundle.unit-test";
  2437. };
  2438. C48363CD2AC3D96500E3FA1B /* ADHTuanCanUITests */ = {
  2439. isa = PBXNativeTarget;
  2440. buildConfigurationList = C48363DE2AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCanUITests" */;
  2441. buildPhases = (
  2442. C48363CA2AC3D96500E3FA1B /* Sources */,
  2443. C48363CB2AC3D96500E3FA1B /* Frameworks */,
  2444. C48363CC2AC3D96500E3FA1B /* Resources */,
  2445. );
  2446. buildRules = (
  2447. );
  2448. dependencies = (
  2449. C48363D02AC3D96500E3FA1B /* PBXTargetDependency */,
  2450. );
  2451. name = ADHTuanCanUITests;
  2452. productName = ADHTuanCanUITests;
  2453. productReference = C48363CE2AC3D96500E3FA1B /* ADHTuanCanUITests.xctest */;
  2454. productType = "com.apple.product-type.bundle.ui-testing";
  2455. };
  2456. /* End PBXNativeTarget section */
  2457. /* Begin PBXProject section */
  2458. C48363A32AC3D96400E3FA1B /* Project object */ = {
  2459. isa = PBXProject;
  2460. attributes = {
  2461. BuildIndependentTargetsInParallel = 1;
  2462. LastSwiftUpdateCheck = 1500;
  2463. LastUpgradeCheck = 1500;
  2464. TargetAttributes = {
  2465. C48363AA2AC3D96400E3FA1B = {
  2466. CreatedOnToolsVersion = 15.0;
  2467. LastSwiftMigration = 1500;
  2468. };
  2469. C48363C32AC3D96500E3FA1B = {
  2470. CreatedOnToolsVersion = 15.0;
  2471. TestTargetID = C48363AA2AC3D96400E3FA1B;
  2472. };
  2473. C48363CD2AC3D96500E3FA1B = {
  2474. CreatedOnToolsVersion = 15.0;
  2475. TestTargetID = C48363AA2AC3D96400E3FA1B;
  2476. };
  2477. };
  2478. };
  2479. buildConfigurationList = C48363A62AC3D96400E3FA1B /* Build configuration list for PBXProject "ADHTuanCan" */;
  2480. compatibilityVersion = "Xcode 14.0";
  2481. developmentRegion = en;
  2482. hasScannedForEncodings = 0;
  2483. knownRegions = (
  2484. en,
  2485. Base,
  2486. "zh-Hans",
  2487. );
  2488. mainGroup = C48363A22AC3D96400E3FA1B;
  2489. productRefGroup = C48363AC2AC3D96400E3FA1B /* Products */;
  2490. projectDirPath = "";
  2491. projectRoot = "";
  2492. targets = (
  2493. C48363AA2AC3D96400E3FA1B /* ADHTuanCan */,
  2494. C48363C32AC3D96500E3FA1B /* ADHTuanCanTests */,
  2495. C48363CD2AC3D96500E3FA1B /* ADHTuanCanUITests */,
  2496. );
  2497. };
  2498. /* End PBXProject section */
  2499. /* Begin PBXResourcesBuildPhase section */
  2500. C48363A92AC3D96400E3FA1B /* Resources */ = {
  2501. isa = PBXResourcesBuildPhase;
  2502. buildActionMask = 2147483647;
  2503. files = (
  2504. C41DA4A82AFF176000707C5D /* IntegralListViewController.xib in Resources */,
  2505. C45B67E82B19DD4600EA1725 /* MenuTableViewCell.xib in Resources */,
  2506. C4577CCB2AEABA09004D9439 /* DeliveryTimeItem.xib in Resources */,
  2507. C448CD1C2AFE8AAF00B3B068 /* MealHeadView.xib in Resources */,
  2508. C42AEDFF2B03737D0045EF66 /* EverybodyLoveItem.xib in Resources */,
  2509. C45411762B00DB740096F60E /* BalanceViewCell.xib in Resources */,
  2510. C406A0922B91FBC5005A6423 /* AddMembersCheckView.xib in Resources */,
  2511. C4836B202AC5601900E3FA1B /* ContractView.xib in Resources */,
  2512. C467315E2AFA13FF00658C58 /* UnsubscribeDetailVC.xib in Resources */,
  2513. C470B5932AF0B05B009046B4 /* DeliveryTimeSetView.xib in Resources */,
  2514. C4A6045B2BF1CA08005074A0 /* RemarkOderView.xib in Resources */,
  2515. C48363BB2AC3D96500E3FA1B /* Assets.xcassets in Resources */,
  2516. C45C8A192AD18D41009D6C3A /* timeManageSheetView.xib in Resources */,
  2517. C4577CE72AEBC8A7004D9439 /* ChangeMealCollectItem.xib in Resources */,
  2518. C4836B6F2AC72B0F00E3FA1B /* EverybodyLoveView.xib in Resources */,
  2519. C4EDD9562AF27DDC00BE8EFF /* succeed.png in Resources */,
  2520. C42FF7AE2B15DF7A00B591F4 /* ShoppingCarDetailView.xib in Resources */,
  2521. C41DA4B02AFF19E000707C5D /* IntegralViewCell.xib in Resources */,
  2522. C41DA4C52AFF39BE00707C5D /* ReplaceFoodView.xib in Resources */,
  2523. C454118E2B0130970096F60E /* sortedNameEN.plist in Resources */,
  2524. C41DA4D72AFFB02700707C5D /* DiscountsListViewCell.xib in Resources */,
  2525. C45B67DA2B19DC1A00EA1725 /* TeamMembersAddView.xib in Resources */,
  2526. C42FF7A02B15DED500B591F4 /* SetMealDetailVC.xib in Resources */,
  2527. C44CFA722AFB8AB7000D592D /* BrokerageSheetView.xib in Resources */,
  2528. C45F2B892B0E7F640099D40E /* OrderListCell.xib in Resources */,
  2529. C41DA4EE2AFFDDDE00707C5D /* PromotionCell.xib in Resources */,
  2530. C45F7AF42B346544004D944F /* SaleDetailViewCellTableViewCell.xib in Resources */,
  2531. C4B082B82AF54CA500CD146E /* CheckOrderHeadView.xib in Resources */,
  2532. C41DA4A32AFEFC4F00707C5D /* MealEcaluateCell.xib in Resources */,
  2533. C41DA49F2AFEF9D500707C5D /* MealEvaluateListVC.xib in Resources */,
  2534. C44CFA4B2AFB3247000D592D /* payMentItemCell.xib in Resources */,
  2535. C4C51C882AF1413B00F4636E /* EditPersonNumView.xib in Resources */,
  2536. C470B5782AEFBD07009046B4 /* AddRemarkView.xib in Resources */,
  2537. C4EDD95F2AF27DDC00BE8EFF /* error.png in Resources */,
  2538. C41DA4EF2AFFE1C400707C5D /* PromotionSheetView.xib in Resources */,
  2539. C44CFA472AFB2948000D592D /* OrderDetailSectionView.xib in Resources */,
  2540. C4577CD62AEBC173004D9439 /* MealDescribeView.xib in Resources */,
  2541. C448CD0B2AFE4E8700B3B068 /* AddEvaluateViewController.xib in Resources */,
  2542. C4EDDA0E2AF28B0D00BE8EFF /* icon_refresh_2@3x.png in Resources */,
  2543. C42AEE142B03786A0045EF66 /* PersonalInformationVC.xib in Resources */,
  2544. C454117B2B00DF780096F60E /* BalanceTabHeadView.xib in Resources */,
  2545. C443023A2AF61A2A0098C854 /* UserPayMentSheet.xib in Resources */,
  2546. C4EDDA0A2AF28B0D00BE8EFF /* icon_refresh_1@2x.png in Resources */,
  2547. C4CF5F612ACD640E00B6B2D9 /* MenuHeadView.xib in Resources */,
  2548. C42FF7992B15DDA200B591F4 /* SingleMealDetailController.xib in Resources */,
  2549. C41DA4EA2AFFD2DF00707C5D /* RuleDetailViewController.xib in Resources */,
  2550. C4EDD9732AF27EF400BE8EFF /* QFTMoreSearchCell.xib in Resources */,
  2551. C42AEE0D2B0376F70045EF66 /* AddresViewCell.xib in Resources */,
  2552. C40691512B08BE3F002688FD /* RegisteViewController.xib in Resources */,
  2553. C45B67EF2B19DDBB00EA1725 /* BalanceViewController.xib in Resources */,
  2554. C4577CB32AEA8E5C004D9439 /* MealCollectionView.xib in Resources */,
  2555. C42FF7A72B15DF4700B591F4 /* CheckOrderViewController.xib in Resources */,
  2556. C4194E882B566AC300B60D41 /* PaySuccessView.xib in Resources */,
  2557. C42AEE1B2B037AED0045EF66 /* UnsubscribeViewController.xib in Resources */,
  2558. C41DA4E12AFFC04900707C5D /* DiscountsSectionView.xib in Resources */,
  2559. C4A73B572B18E6C300A1595A /* AddressEditorVC.xib in Resources */,
  2560. C40691452B08BD4F002688FD /* EditPayPSWViewController.xib in Resources */,
  2561. C4836C2D2AC87B6900E3FA1B /* HomeRecommendView.xib in Resources */,
  2562. C45E1EC82AF9E412005C9210 /* MyViewController.xib in Resources */,
  2563. C42AEDF82B03731E0045EF66 /* HomeFoodItem.xib in Resources */,
  2564. C4144CD62AF91DCB00B5F73C /* OrderDetailViewController.xib in Resources */,
  2565. C4577CD72AEBC19F004D9439 /* NeedKonwView.xib in Resources */,
  2566. C45B67D32B19DBE200EA1725 /* TeamMembersViewController.xib in Resources */,
  2567. C41DA4D02AFF44FF00707C5D /* DiscountsViewController.xib in Resources */,
  2568. C41DA4E52AFFC59100707C5D /* DiscountsFootView.xib in Resources */,
  2569. C44CFA552AFB5308000D592D /* OrderDetailFootView.xib in Resources */,
  2570. C4A73B502B18E4D200A1595A /* SalesmanFirstShowView.xib in Resources */,
  2571. C4C6D83A2AFC100400E1AFB5 /* phoneCallView.xib in Resources */,
  2572. C40AE3B32B95E6A7007469C0 /* LanguageSetVC.xib in Resources */,
  2573. C45C1A752B284E0000221FBD /* ApplyAlertView.xib in Resources */,
  2574. C40AE3A82B95CB5A007469C0 /* RechargeAmountViewController.xib in Resources */,
  2575. C41DA4C32AFF232800707C5D /* IntegralSectiionView.xib in Resources */,
  2576. C4498ED52B294D57005E43D0 /* ApplyCompanySuccess.xib in Resources */,
  2577. C4836B662AC7037600E3FA1B /* dateItem.xib in Resources */,
  2578. C4EDDA062AF28B0D00BE8EFF /* DZNEmptyLoadView.xib in Resources */,
  2579. C44302152AF5F5370098C854 /* selectAddressView.xib in Resources */,
  2580. C45001702AD67CF000F96CFA /* OrderReadyCell.xib in Resources */,
  2581. C47F82812BF1B305006C4B6E /* OrderNeedToKnow.xib in Resources */,
  2582. C406915F2B08BEF6002688FD /* PhoneLoginViewController.xib in Resources */,
  2583. C40691582B08BEB7002688FD /* CodeViewController.xib in Resources */,
  2584. C45B67E12B19DCE400EA1725 /* ADHAlertView.xib in Resources */,
  2585. C4EDDA0D2AF28B0D00BE8EFF /* icon_refresh_1@3x.png in Resources */,
  2586. C4CF5F4A2ACD468000B6B2D9 /* StartView.xib in Resources */,
  2587. C44CFA672AFB81FF000D592D /* BrokerageCell.xib in Resources */,
  2588. C456545A2B0CA94E00F3E628 /* EditPersonSheetView.xib in Resources */,
  2589. C45CE0812BC4764F0087A769 /* ShareQRcodeView.xib in Resources */,
  2590. C45654462B0A628800F3E628 /* WriteOffResonCell.xib in Resources */,
  2591. C45F7AF52B347532004D944F /* SaleDetailView.xib in Resources */,
  2592. C4EDDA0C2AF28B0D00BE8EFF /* icon_refresh_3@2x.png in Resources */,
  2593. C4522D102B0E21A600808F76 /* InfoPlist.strings in Resources */,
  2594. C454118F2B0130970096F60E /* sortedNameCH.plist in Resources */,
  2595. C40691662B08BFE9002688FD /* EditLoginPSWViewController.xib in Resources */,
  2596. C4C51C842AF122B800F4636E /* EditorDeliveryView.xib in Resources */,
  2597. C40690DC2B0714EE002688FD /* CheckOrderFootView.xib in Resources */,
  2598. C4EDD9D72AF2879100BE8EFF /* MJRefresh.bundle in Resources */,
  2599. C44302242AF6073A0098C854 /* PayMentSelectView.xib in Resources */,
  2600. C4110B482B47F9FC00B23195 /* Launch Screen.storyboard in Resources */,
  2601. C4C51C732AF0FF4100F4636E /* AddressManagerVC.xib in Resources */,
  2602. C40691402B08BC92002688FD /* TCLogingViewController.xib in Resources */,
  2603. C406A0902B91FBBD005A6423 /* TeamMembersCell.xib in Resources */,
  2604. C4836C332AC8A26A00E3FA1B /* SearchView.xib in Resources */,
  2605. C4EDDA0B2AF28B0D00BE8EFF /* icon_refresh_3@3x.png in Resources */,
  2606. C4EDDA052AF28B0D00BE8EFF /* DZNEmptyDataView.xib in Resources */,
  2607. C4836A452AC41C1100E3FA1B /* Localizable.strings in Resources */,
  2608. C459CE172B2AC917000D16DC /* ApplyWhiteManagerController.xib in Resources */,
  2609. C48363B62AC3D96400E3FA1B /* Main.storyboard in Resources */,
  2610. C45F2B802B0E7D9A0099D40E /* OderDetailHeadView.xib in Resources */,
  2611. C4836B7A2AC7308400E3FA1B /* HomeDateView.xib in Resources */,
  2612. C406A07E2B9191D6005A6423 /* TwoSeparateMealsView.xib in Resources */,
  2613. C4577CBD2AEA8FFD004D9439 /* SetMealCollectionItem.xib in Resources */,
  2614. C42AEE222B037BD40045EF66 /* AddEvaluateCell.xib in Resources */,
  2615. C42AEDE82B03727E0045EF66 /* HomeViewController.xib in Resources */,
  2616. C45CE0762BC4748C0087A769 /* OrderManagerVC.xib in Resources */,
  2617. C41DA4B52AFF22DD00707C5D /* IntegralHeadView.xib in Resources */,
  2618. C42AEDEF2B0372D70045EF66 /* HomeSecondViewController.xib in Resources */,
  2619. C4C6D84B2AFCD22800E1AFB5 /* PswPayView.xib in Resources */,
  2620. C4EDDA0F2AF28B0D00BE8EFF /* icon_refresh_2@2x.png in Resources */,
  2621. C42AEDE12B03717F0045EF66 /* ChangeMealCollectionView.xib in Resources */,
  2622. C44301FC2AF5E1860098C854 /* OrderAddressCell.xib in Resources */,
  2623. );
  2624. runOnlyForDeploymentPostprocessing = 0;
  2625. };
  2626. C48363C22AC3D96500E3FA1B /* Resources */ = {
  2627. isa = PBXResourcesBuildPhase;
  2628. buildActionMask = 2147483647;
  2629. files = (
  2630. );
  2631. runOnlyForDeploymentPostprocessing = 0;
  2632. };
  2633. C48363CC2AC3D96500E3FA1B /* Resources */ = {
  2634. isa = PBXResourcesBuildPhase;
  2635. buildActionMask = 2147483647;
  2636. files = (
  2637. );
  2638. runOnlyForDeploymentPostprocessing = 0;
  2639. };
  2640. /* End PBXResourcesBuildPhase section */
  2641. /* Begin PBXShellScriptBuildPhase section */
  2642. 4806FAC5F7810EFBFFA344E5 /* [CP] Check Pods Manifest.lock */ = {
  2643. isa = PBXShellScriptBuildPhase;
  2644. buildActionMask = 12;
  2645. files = (
  2646. );
  2647. inputFileListPaths = (
  2648. );
  2649. inputPaths = (
  2650. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2651. "${PODS_ROOT}/Manifest.lock",
  2652. );
  2653. name = "[CP] Check Pods Manifest.lock";
  2654. outputFileListPaths = (
  2655. );
  2656. outputPaths = (
  2657. "$(DERIVED_FILE_DIR)/Pods-ADHTuanCan-checkManifestLockResult.txt",
  2658. );
  2659. runOnlyForDeploymentPostprocessing = 0;
  2660. shellPath = /bin/sh;
  2661. 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";
  2662. showEnvVarsInLog = 0;
  2663. };
  2664. C9DB7B5874414994DDCA100B /* [CP] Embed Pods Frameworks */ = {
  2665. isa = PBXShellScriptBuildPhase;
  2666. buildActionMask = 2147483647;
  2667. files = (
  2668. );
  2669. inputFileListPaths = (
  2670. "${PODS_ROOT}/Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  2671. );
  2672. name = "[CP] Embed Pods Frameworks";
  2673. outputFileListPaths = (
  2674. "${PODS_ROOT}/Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  2675. );
  2676. runOnlyForDeploymentPostprocessing = 0;
  2677. shellPath = /bin/sh;
  2678. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan-frameworks.sh\"\n";
  2679. showEnvVarsInLog = 0;
  2680. };
  2681. /* End PBXShellScriptBuildPhase section */
  2682. /* Begin PBXSourcesBuildPhase section */
  2683. C48363A72AC3D96400E3FA1B /* Sources */ = {
  2684. isa = PBXSourcesBuildPhase;
  2685. buildActionMask = 2147483647;
  2686. files = (
  2687. C4577CC72AEA9E02004D9439 /* SetMealModel.swift in Sources */,
  2688. C4EDDA032AF28B0D00BE8EFF /* MACTableView.m in Sources */,
  2689. C4EDDA102AF28B0D00BE8EFF /* MACRefreshHeader.m in Sources */,
  2690. C4A604582BF1BDC0005074A0 /* RemarkOderView.swift in Sources */,
  2691. C4EDDA1F2AF28B7400BE8EFF /* MGSwipeTableCell.m in Sources */,
  2692. C4836B852AC7F79600E3FA1B /* BaseTabbarController.swift in Sources */,
  2693. C48363AF2AC3D96400E3FA1B /* AppDelegate.swift in Sources */,
  2694. C448CCFF2AFE3B5E00B3B068 /* EvaluateRequestModel.swift in Sources */,
  2695. C4EDDA092AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m in Sources */,
  2696. C4836B582AC5912300E3FA1B /* NibUtil.swift in Sources */,
  2697. C4CF5F5F2ACD640000B6B2D9 /* MenuHeadView.swift in Sources */,
  2698. C45C1A6E2B282E3500221FBD /* ApplyCompanySuccess.swift in Sources */,
  2699. C42BB5622ADD5045003FF663 /* MCProxyTextFieldRx.swift in Sources */,
  2700. C45411852B00E38D0096F60E /* HomeSecondViewController.swift in Sources */,
  2701. C4EDD9522AF27DDC00BE8EFF /* UIView+XIB.m in Sources */,
  2702. C4C51C862AF1413100F4636E /* EditPersonNumView.swift in Sources */,
  2703. C41DA4ED2AFFDDDE00707C5D /* PromotionCell.swift in Sources */,
  2704. C4EDD9572AF27DDC00BE8EFF /* UIView+MAC.m in Sources */,
  2705. C4577CE62AEBC8A7004D9439 /* ChangeMealCollectItem.swift in Sources */,
  2706. C4C6D8492AFCD21F00E1AFB5 /* PswPayView.swift in Sources */,
  2707. C4EDD90D2AF2618A00BE8EFF /* ADHBaseNavigationController.swift in Sources */,
  2708. C4836B5A2AC6ED0600E3FA1B /* HomeDateView.swift in Sources */,
  2709. C4EDD9612AF27DDC00BE8EFF /* UIView+Hint.m in Sources */,
  2710. C42BB5552ADD457B003FF663 /* RegisteViewController.swift in Sources */,
  2711. C4EDDA042AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m in Sources */,
  2712. C41DA49E2AFEF9D500707C5D /* MealEvaluateListVC.swift in Sources */,
  2713. C42AEDE02B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift in Sources */,
  2714. C4836B872AC8039500E3FA1B /* ADHBaseVC.swift in Sources */,
  2715. C406A0882B91F4C5005A6423 /* AddMembersCheckView.swift in Sources */,
  2716. C4EDD9602AF27DDC00BE8EFF /* UIView+AnimationProperty.m in Sources */,
  2717. C41DA4B22AFF1E6500707C5D /* IntegralSectiionView.swift in Sources */,
  2718. C45654522B0BA4DD00F3E628 /* TeamMembersAddView.swift in Sources */,
  2719. C4EDD9E42AF2879100BE8EFF /* MJRefreshFooter.m in Sources */,
  2720. C4EDD9E62AF2879100BE8EFF /* MJRefreshBackFooter.m in Sources */,
  2721. C41DA4CF2AFF44FF00707C5D /* DiscountsViewController.swift in Sources */,
  2722. C40690F12B07A2FE002688FD /* MonthTableViewCell.m in Sources */,
  2723. C4C6D8372AFC0D4900E1AFB5 /* phoneCallView.swift in Sources */,
  2724. C4836C302AC89C1800E3FA1B /* SearchView.swift in Sources */,
  2725. C4577CCE2AEBBB2A004D9439 /* NeedKonwView.swift in Sources */,
  2726. C45654572B0C9BB900F3E628 /* EditPersonSheetView.swift in Sources */,
  2727. C41DA4E32AFFC58000707C5D /* DiscountsFootView.swift in Sources */,
  2728. C4EDD9D82AF2879100BE8EFF /* UIScrollView+MJExtension.m in Sources */,
  2729. C4C6D8452AFCCB3900E1AFB5 /* BalanceViewController.swift in Sources */,
  2730. C4CF5F132AC9813B00B6B2D9 /* MBProgressHUD.m in Sources */,
  2731. C42AEDDB2B035A9D0045EF66 /* MCDatePikerView.swift in Sources */,
  2732. C4EDD9E82AF2879100BE8EFF /* MJRefreshComponent.m in Sources */,
  2733. C470B5B32AF0DCBA009046B4 /* AddresViewCell.swift in Sources */,
  2734. C4EDD9642AF27DDC00BE8EFF /* UIView+JYPBadgeView.m in Sources */,
  2735. C4EDD9212AF27CD400BE8EFF /* UIFont+Fonts.m in Sources */,
  2736. C470B58D2AEFF1E2009046B4 /* ShopCarModel.swift in Sources */,
  2737. C45C66972B01E42E005E13CE /* EditPayPSWViewController.swift in Sources */,
  2738. C4836B412AC57AA400E3FA1B /* UIView+Visualization.m in Sources */,
  2739. C42AEDDF2B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift in Sources */,
  2740. C4BFF7F72AFD2D3500CCA462 /* Http+UploadImage.swift in Sources */,
  2741. C4EDD9672AF27DDC00BE8EFF /* UIView+Screenshot.m in Sources */,
  2742. C45C8A162AD182ED009D6C3A /* timeManageSheetView.m in Sources */,
  2743. C4EDD9182AF27C4800BE8EFF /* MCNavBarSearchView.swift in Sources */,
  2744. C48363B92AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld in Sources */,
  2745. C40690F52B07AAF9002688FD /* RectCornerUtil.swift in Sources */,
  2746. C44301FA2AF5DEBA0098C854 /* OrderAddressCell.swift in Sources */,
  2747. C4836A7A2AC517AA00E3FA1B /* MCBaseViewModel.swift in Sources */,
  2748. C41DA4DF2AFFC03B00707C5D /* DiscountsSectionView.swift in Sources */,
  2749. C4577CA82AEA7B88004D9439 /* SetMealDetailVC.swift in Sources */,
  2750. C470B5802AEFC3C1009046B4 /* ReplaceFoodView.swift in Sources */,
  2751. C42AEDDE2B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift in Sources */,
  2752. C4836A8A2AC5180A00E3FA1B /* ArrayUtil.swift in Sources */,
  2753. C461C4932B272F130010ABC6 /* ApplyWhiteManagerController.swift in Sources */,
  2754. C45411912B0130C40096F60E /* EWCountryCodeViewController.swift in Sources */,
  2755. C406A0862B91D3E9005A6423 /* WMFloatButton.swift in Sources */,
  2756. C4EDD9622AF27DDC00BE8EFF /* UIView+Blur.m in Sources */,
  2757. C4EDD9742AF27EF400BE8EFF /* QFTSearchContentView.m in Sources */,
  2758. C4EDD9D52AF2879100BE8EFF /* UIScrollView+MJRefresh.m in Sources */,
  2759. C4EDDA1E2AF28B7400BE8EFF /* CellDataAdapter.m in Sources */,
  2760. C4EDD95E2AF27DDC00BE8EFF /* UIView+XMGExtension.m in Sources */,
  2761. C4836A282AC3FBD900E3FA1B /* MacroDefinition.swift in Sources */,
  2762. C443021F2AF5FA330098C854 /* OrderDataModel.swift in Sources */,
  2763. C42BB5722ADD69C1003FF663 /* LoginModel.swift in Sources */,
  2764. C42BB5642ADD56D7003FF663 /* ElementUtil.swift in Sources */,
  2765. C470B5A72AF0C719009046B4 /* CheckOrderViewController.swift in Sources */,
  2766. C40690DD2B0714EE002688FD /* CheckOrderFootView.swift in Sources */,
  2767. C4CF5F5A2ACD509600B6B2D9 /* MenuTableViewCell.swift in Sources */,
  2768. C4EDDA072AF28B0D00BE8EFF /* DZNEmptyDataView.swift in Sources */,
  2769. C44301F52AF5DC830098C854 /* selectAddressView.swift in Sources */,
  2770. C40690F22B07A2FE002688FD /* MonthModel.m in Sources */,
  2771. C448CD122AFE4FA900B3B068 /* textView.swift in Sources */,
  2772. C45CE07F2BC476440087A769 /* ShareQRcodeView.swift in Sources */,
  2773. C4836A8D2AC5180B00E3FA1B /* StringUtil.swift in Sources */,
  2774. C4CF5F0D2AC9801300B6B2D9 /* MCHud.swift in Sources */,
  2775. C4836B3D2AC5784900E3FA1B /* HomeViewController.swift in Sources */,
  2776. C4EDD9DA2AF2879100BE8EFF /* UIView+MJExtension.m in Sources */,
  2777. C46731532AF9F6E400658C58 /* PersonalInformationVC.swift in Sources */,
  2778. C4836A852AC5180A00E3FA1B /* NotificationUtil.swift in Sources */,
  2779. C4EDD9DB2AF2879100BE8EFF /* MJRefreshBackGifFooter.m in Sources */,
  2780. C4EDDA502AF2969A00BE8EFF /* ShoppingCarDetailView.swift in Sources */,
  2781. C4577CBC2AEA8FFD004D9439 /* SetMealCollectionItem.swift in Sources */,
  2782. C470B59B2AF0BDB5009046B4 /* CheckOrderHeadView.swift in Sources */,
  2783. C4EDD9172AF27C4800BE8EFF /* MCNavBarView.swift in Sources */,
  2784. C438E3CA2AF7B4F300F671AE /* OrderViewModel.swift in Sources */,
  2785. C4EDD91A2AF27C4800BE8EFF /* MCNavBarCustomView.swift in Sources */,
  2786. C4EDD9DF2AF2879100BE8EFF /* MJRefreshAutoGifFooter.m in Sources */,
  2787. C4836B562AC5910E00E3FA1B /* CollectionViewUtil.swift in Sources */,
  2788. C4836A892AC5180A00E3FA1B /* OtherGeneralMethod.swift in Sources */,
  2789. C41DA4D52AFFAB2400707C5D /* DiscountsListViewCell.swift in Sources */,
  2790. C4577CE12AEBC5C4004D9439 /* ChangeMealCollectionView.swift in Sources */,
  2791. C4EDDA022AF28B0D00BE8EFF /* UITableView+CellClass.m in Sources */,
  2792. C4EDD95C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m in Sources */,
  2793. C42AEDDD2B035A9D0045EF66 /* MCDatePikerDelegate.swift in Sources */,
  2794. C4836A8B2AC5180A00E3FA1B /* GCDUtil.swift in Sources */,
  2795. C4EDD9D62AF2879100BE8EFF /* MJRefreshConst.m in Sources */,
  2796. C4EDD9552AF27DDC00BE8EFF /* UIView+ViewController.m in Sources */,
  2797. C4EDD9582AF27DDC00BE8EFF /* UIView+BlockGesture.m in Sources */,
  2798. C4EDD9E32AF2879100BE8EFF /* MJRefreshGifHeader.m in Sources */,
  2799. C4EDD9E12AF2879100BE8EFF /* MJRefreshNormalHeader.m in Sources */,
  2800. C4EDD9542AF27DDC00BE8EFF /* UIView+GestureCallback.m in Sources */,
  2801. C45654452B0A628800F3E628 /* WriteOffResonCell.swift in Sources */,
  2802. C41DA4E92AFFD2DF00707C5D /* RuleDetailViewController.swift in Sources */,
  2803. C4C51C6E2AF0E5A500F4636E /* AddresBaseModel.swift in Sources */,
  2804. C470B5752AEFBACB009046B4 /* AddRemarkView.swift in Sources */,
  2805. C4CF5F092AC97DB500B6B2D9 /* TCHomeGetDataModel.swift in Sources */,
  2806. C4836A862AC5180A00E3FA1B /* Convert.swift in Sources */,
  2807. C470B5722AEE5BE3009046B4 /* SingleMealDetailController.swift in Sources */,
  2808. C4836B6C2AC7271800E3FA1B /* EverybodyLoveView.swift in Sources */,
  2809. C41DA4A72AFF176000707C5D /* IntegralListViewController.swift in Sources */,
  2810. C4577CB02AEA8BBC004D9439 /* MealCollectionView.swift in Sources */,
  2811. C45C1A722B284CAE00221FBD /* ApplyAlertView.swift in Sources */,
  2812. C42BB55C2ADD4C50003FF663 /* CodeViewController.swift in Sources */,
  2813. C4EDD95B2AF27DDC00BE8EFF /* EAFeatureItem.m in Sources */,
  2814. C4EDD9E52AF2879100BE8EFF /* MJRefreshHeader.m in Sources */,
  2815. C46731572AFA085500658C58 /* UnsubscribeViewController.swift in Sources */,
  2816. C4EDDA202AF28B7400BE8EFF /* MGSwipeButton.m in Sources */,
  2817. C44CFA452AFB2940000D592D /* OrderDetailSectionView.swift in Sources */,
  2818. C4EDDA252AF28BAC00BE8EFF /* Aspects.m in Sources */,
  2819. C4EDD9662AF27DDC00BE8EFF /* UIView+RecursiveDescription.m in Sources */,
  2820. C4EDD9E02AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m in Sources */,
  2821. C42AEDDC2B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift in Sources */,
  2822. C41DA4AF2AFF19E000707C5D /* IntegralViewCell.swift in Sources */,
  2823. C44CFA602AFB5CAD000D592D /* MyViewModel.swift in Sources */,
  2824. C4EDD9DC2AF2879100BE8EFF /* MJRefreshBackStateFooter.m in Sources */,
  2825. C4836A702AC516FC00E3FA1B /* MCHttpUtil.swift in Sources */,
  2826. C47F82772BF1A989006C4B6E /* OrderNeedToKnow.swift in Sources */,
  2827. C4E333142B91891C004DD994 /* TwoSeparateMealsView.swift in Sources */,
  2828. C448CD022AFE3DE200B3B068 /* AddEvaluateCell.swift in Sources */,
  2829. C4EDD97A2AF2849300BE8EFF /* MCDZNEmptyDelegate.swift in Sources */,
  2830. C44CFA412AFB1AD1000D592D /* OrderDetailFootView.swift in Sources */,
  2831. C44CFA6F2AFB8255000D592D /* BrokerageSheetView.swift in Sources */,
  2832. C4EDD97C2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift in Sources */,
  2833. C443022E2AF615780098C854 /* UserPayMentSheet.swift in Sources */,
  2834. C41DA4AA2AFF17B000707C5D /* IntegralHeadView.swift in Sources */,
  2835. C4BFF79B2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift in Sources */,
  2836. C45E1EC62AF9DC91005C9210 /* MyViewController.swift in Sources */,
  2837. C448CCF72AFE37CE00B3B068 /* AddEvaluateViewController.swift in Sources */,
  2838. C4C51C822AF122A900F4636E /* EditorDeliveryView.swift in Sources */,
  2839. C4EDD9592AF27DDC00BE8EFF /* UIView+Visualization.m in Sources */,
  2840. C438E3C82AF795A700F671AE /* OrderTypeEnum.swift in Sources */,
  2841. C40AE3B22B95E6A7007469C0 /* LanguageSetVC.swift in Sources */,
  2842. C4577D042AEBCEE9004D9439 /* NSObject+Hint.m in Sources */,
  2843. C4EDD9632AF27DDC00BE8EFF /* UIView+GlowView.m in Sources */,
  2844. C45C8A362AD24932009D6C3A /* OrderListCell.swift in Sources */,
  2845. C4EDD9192AF27C4800BE8EFF /* MCNavBarSegmentView.swift in Sources */,
  2846. C41DA4A22AFEFC4F00707C5D /* MealEcaluateCell.swift in Sources */,
  2847. C44CFA7A2AFB8B89000D592D /* PromotionSheetView.swift in Sources */,
  2848. C4EDD9D92AF2879100BE8EFF /* NSBundle+MJRefresh.m in Sources */,
  2849. C42AEDD02B0312070045EF66 /* SalesmanFirstShowView.swift in Sources */,
  2850. C4EDD9DE2AF2879100BE8EFF /* MJRefreshAutoStateFooter.m in Sources */,
  2851. C45C66922B01CEE7005E13CE /* EditLoginPSWViewController.swift in Sources */,
  2852. C4EDD95D2AF27DDC00BE8EFF /* UIView+Shake.m in Sources */,
  2853. C4836C2B2AC87B5F00E3FA1B /* HomeRecommendView.swift in Sources */,
  2854. C456544A2B0B834200F3E628 /* TeamMembersViewController.swift in Sources */,
  2855. C42BB5612ADD5045003FF663 /* MCProxyTextViewRx.swift in Sources */,
  2856. C4836A872AC5180A00E3FA1B /* OptionalUtil.swift in Sources */,
  2857. C4577CAC2AEA7BE8004D9439 /* MealHeadView.swift in Sources */,
  2858. C4CF5F052AC97D6800B6B2D9 /* HomeViewModel.swift in Sources */,
  2859. C45DC1222AE91AB70066BD93 /* ImageView.swift in Sources */,
  2860. C45F7AF32B346544004D944F /* SaleDetailViewCellTableViewCell.swift in Sources */,
  2861. C4EDDA1D2AF28B7400BE8EFF /* MACBaseCell.m in Sources */,
  2862. C4CF5F422ACD3EDA00B6B2D9 /* StartupPageViewController.swift in Sources */,
  2863. C4EDDA082AF28B0D00BE8EFF /* DZNEmptyLoadView.swift in Sources */,
  2864. C44CFA652AFB8084000D592D /* BrokerageCell.swift in Sources */,
  2865. C45C8A292AD240B9009D6C3A /* OrderManagerVC.swift in Sources */,
  2866. C4EDD9DD2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m in Sources */,
  2867. C4194E7C2B565DAC00B60D41 /* PaySuccessView.swift in Sources */,
  2868. C4144CD52AF91DCB00B5F73C /* OrderDetailViewController.swift in Sources */,
  2869. C42AEE2B2B04D9CA0045EF66 /* RechargeAmountViewController.swift in Sources */,
  2870. C4836B172AC5597B00E3FA1B /* ButtonUtil.swift in Sources */,
  2871. C470B58B2AEFEF39009046B4 /* ShoppingCarViewModel.swift in Sources */,
  2872. C45F7AEE2B34641C004D944F /* SaleDetailView.swift in Sources */,
  2873. C4577CCA2AEABA09004D9439 /* DeliveryTimeItem.swift in Sources */,
  2874. C4CF5F5D2ACD632600B6B2D9 /* TableViewUtil.swift in Sources */,
  2875. C44CFA4A2AFB3247000D592D /* payMentItemCell.swift in Sources */,
  2876. C4836B772AC72C0900E3FA1B /* EverybodyLoveItem.swift in Sources */,
  2877. C4EDD9152AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift in Sources */,
  2878. C450016F2AD67CF000F96CFA /* OrderReadyCell.swift in Sources */,
  2879. C4EDD9712AF27EF400BE8EFF /* QFTSearchBar.m in Sources */,
  2880. C467315C2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift in Sources */,
  2881. C4836A792AC517AA00E3FA1B /* MCBaseRequestModel.swift in Sources */,
  2882. C40690F02B07A2FE002688FD /* DayCollectionViewCell.m in Sources */,
  2883. C4C9B8652AF3C7F900C13A61 /* UIView+rounded.swift in Sources */,
  2884. C4C51C8A2AF1488E00F4636E /* ADHAlertView.swift in Sources */,
  2885. C45411752B00DB740096F60E /* BalanceViewCell.swift in Sources */,
  2886. C45411782B00DF200096F60E /* BalanceTabHeadView.swift in Sources */,
  2887. C454118A2B012CB70096F60E /* PhoneLoginViewController.swift in Sources */,
  2888. C4836ADC2AC53FF200E3FA1B /* ContractView.swift in Sources */,
  2889. C42BB5752ADD6F27003FF663 /* LoginViewModel.swift in Sources */,
  2890. C4577CC42AEA9DC7004D9439 /* SetMealViewModel.swift in Sources */,
  2891. C4EDD9652AF27DDC00BE8EFF /* UIView+Find.m in Sources */,
  2892. C448CCFD2AFE3B3F00B3B068 /* EvaluateViewModel.swift in Sources */,
  2893. C4577CD42AEBC168004D9439 /* MealDescribeView.swift in Sources */,
  2894. C4C51C6C2AF0E57E00F4636E /* AddresViewModel.swift in Sources */,
  2895. C4EDD9512AF27DDC00BE8EFF /* UIView+Segment.m in Sources */,
  2896. C4836A6F2AC516FC00E3FA1B /* MCResponseModel.swift in Sources */,
  2897. C4EDD9E72AF2879100BE8EFF /* MJRefreshAutoFooter.m in Sources */,
  2898. C4CF5F142AC9813B00B6B2D9 /* UIViewController+HUB.m in Sources */,
  2899. C45DC1202AE90D230066BD93 /* LanguagesUtil.swift in Sources */,
  2900. C4522D032B0DF21700808F76 /* ImagePreviewViewController.swift in Sources */,
  2901. C4C51C712AF0EB0C00F4636E /* AddressEditorVC.swift in Sources */,
  2902. C470B5AC2AF0D8C8009046B4 /* AddressManagerVC.swift in Sources */,
  2903. C4CF5F452ACD436600B6B2D9 /* StartView.swift in Sources */,
  2904. C4EDD9532AF27DDC00BE8EFF /* UIView+Nib.m in Sources */,
  2905. C44CFA622AFB5CCF000D592D /* MyRequestModel.swift in Sources */,
  2906. C4836A732AC516FC00E3FA1B /* MCHttpRxExtension.swift in Sources */,
  2907. C4577CBF2AEA9A9B004D9439 /* DeliveryTimeSetView.swift in Sources */,
  2908. C456544F2B0B845F00F3E628 /* TeamMembersCell.swift in Sources */,
  2909. C4EDD9162AF27C4800BE8EFF /* MCNavBarDelegate.swift in Sources */,
  2910. C4836A782AC517AA00E3FA1B /* MCBaseModel.swift in Sources */,
  2911. C4836B622AC7035D00E3FA1B /* dateItem.swift in Sources */,
  2912. C4836B4C2AC58BE200E3FA1B /* HomeFoodItem.swift in Sources */,
  2913. C4CF5F3E2ACD3B8000B6B2D9 /* UserDefaultUtil.swift in Sources */,
  2914. C4836A252AC3F6D500E3FA1B /* ADHcolor.swift in Sources */,
  2915. C4EDD9E22AF2879100BE8EFF /* MJRefreshStateHeader.m in Sources */,
  2916. C4C9B85C2AF3C5FE00C13A61 /* YDRectCorner.swift in Sources */,
  2917. C4EDDA212AF28B7400BE8EFF /* UITableViewCell+MAC.m in Sources */,
  2918. C4836AC92AC51FBB00E3FA1B /* TCLogingViewController.swift in Sources */,
  2919. C44302442AF6835B0098C854 /* OderDetailHeadView.swift in Sources */,
  2920. C4EDD9722AF27EF400BE8EFF /* QFTMoreSearchCell.m in Sources */,
  2921. C44302212AF6043B0098C854 /* PayMentSelectView.swift in Sources */,
  2922. );
  2923. runOnlyForDeploymentPostprocessing = 0;
  2924. };
  2925. C48363C02AC3D96500E3FA1B /* Sources */ = {
  2926. isa = PBXSourcesBuildPhase;
  2927. buildActionMask = 2147483647;
  2928. files = (
  2929. C48363C92AC3D96500E3FA1B /* ADHTuanCanTests.swift in Sources */,
  2930. );
  2931. runOnlyForDeploymentPostprocessing = 0;
  2932. };
  2933. C48363CA2AC3D96500E3FA1B /* Sources */ = {
  2934. isa = PBXSourcesBuildPhase;
  2935. buildActionMask = 2147483647;
  2936. files = (
  2937. C48363D32AC3D96500E3FA1B /* ADHTuanCanUITests.swift in Sources */,
  2938. C48363D52AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift in Sources */,
  2939. );
  2940. runOnlyForDeploymentPostprocessing = 0;
  2941. };
  2942. /* End PBXSourcesBuildPhase section */
  2943. /* Begin PBXTargetDependency section */
  2944. C48363C62AC3D96500E3FA1B /* PBXTargetDependency */ = {
  2945. isa = PBXTargetDependency;
  2946. target = C48363AA2AC3D96400E3FA1B /* ADHTuanCan */;
  2947. targetProxy = C48363C52AC3D96500E3FA1B /* PBXContainerItemProxy */;
  2948. };
  2949. C48363D02AC3D96500E3FA1B /* PBXTargetDependency */ = {
  2950. isa = PBXTargetDependency;
  2951. target = C48363AA2AC3D96400E3FA1B /* ADHTuanCan */;
  2952. targetProxy = C48363CF2AC3D96500E3FA1B /* PBXContainerItemProxy */;
  2953. };
  2954. /* End PBXTargetDependency section */
  2955. /* Begin PBXVariantGroup section */
  2956. C40691422B08BC92002688FD /* TCLogingViewController.xib */ = {
  2957. isa = PBXVariantGroup;
  2958. children = (
  2959. C40691412B08BC92002688FD /* Base */,
  2960. C406914E2B08BD72002688FD /* en */,
  2961. C40691502B08BD75002688FD /* zh-Hans */,
  2962. );
  2963. name = TCLogingViewController.xib;
  2964. sourceTree = "<group>";
  2965. };
  2966. C40691472B08BD4F002688FD /* EditPayPSWViewController.xib */ = {
  2967. isa = PBXVariantGroup;
  2968. children = (
  2969. C40691462B08BD4F002688FD /* Base */,
  2970. C40691492B08BD51002688FD /* en */,
  2971. C406914B2B08BD54002688FD /* zh-Hans */,
  2972. );
  2973. name = EditPayPSWViewController.xib;
  2974. sourceTree = "<group>";
  2975. };
  2976. C40691532B08BE3F002688FD /* RegisteViewController.xib */ = {
  2977. isa = PBXVariantGroup;
  2978. children = (
  2979. C40691522B08BE3F002688FD /* Base */,
  2980. C40691552B08BE41002688FD /* en */,
  2981. C40691572B08BE44002688FD /* zh-Hans */,
  2982. );
  2983. name = RegisteViewController.xib;
  2984. sourceTree = "<group>";
  2985. };
  2986. C406915A2B08BEB7002688FD /* CodeViewController.xib */ = {
  2987. isa = PBXVariantGroup;
  2988. children = (
  2989. C40691592B08BEB7002688FD /* Base */,
  2990. C406915C2B08BEB8002688FD /* en */,
  2991. C406915E2B08BEBA002688FD /* zh-Hans */,
  2992. );
  2993. name = CodeViewController.xib;
  2994. sourceTree = "<group>";
  2995. };
  2996. C40691612B08BEF6002688FD /* PhoneLoginViewController.xib */ = {
  2997. isa = PBXVariantGroup;
  2998. children = (
  2999. C40691602B08BEF6002688FD /* Base */,
  3000. C40691632B08BEF8002688FD /* en */,
  3001. C40691652B08BEFA002688FD /* zh-Hans */,
  3002. );
  3003. name = PhoneLoginViewController.xib;
  3004. sourceTree = "<group>";
  3005. };
  3006. C40691682B08BFE9002688FD /* EditLoginPSWViewController.xib */ = {
  3007. isa = PBXVariantGroup;
  3008. children = (
  3009. C40691672B08BFE9002688FD /* Base */,
  3010. C406916A2B08BFEB002688FD /* en */,
  3011. C406916C2B08BFED002688FD /* zh-Hans */,
  3012. );
  3013. name = EditLoginPSWViewController.xib;
  3014. sourceTree = "<group>";
  3015. };
  3016. C406A0802B9191D6005A6423 /* TwoSeparateMealsView.xib */ = {
  3017. isa = PBXVariantGroup;
  3018. children = (
  3019. C406A07F2B9191D6005A6423 /* Base */,
  3020. C406A0822B9191D8005A6423 /* en */,
  3021. C406A0842B9191D9005A6423 /* zh-Hans */,
  3022. );
  3023. name = TwoSeparateMealsView.xib;
  3024. sourceTree = "<group>";
  3025. };
  3026. C406A0942B91FBC5005A6423 /* AddMembersCheckView.xib */ = {
  3027. isa = PBXVariantGroup;
  3028. children = (
  3029. C406A0932B91FBC5005A6423 /* Base */,
  3030. C406A0962B91FBC9005A6423 /* en */,
  3031. C406A0982B91FBCD005A6423 /* zh-Hans */,
  3032. );
  3033. name = AddMembersCheckView.xib;
  3034. sourceTree = "<group>";
  3035. };
  3036. C40AE3AA2B95CB5A007469C0 /* RechargeAmountViewController.xib */ = {
  3037. isa = PBXVariantGroup;
  3038. children = (
  3039. C40AE3A92B95CB5A007469C0 /* Base */,
  3040. C40AE3AC2B95CB5D007469C0 /* en */,
  3041. C40AE3AE2B95CB5F007469C0 /* zh-Hans */,
  3042. );
  3043. name = RechargeAmountViewController.xib;
  3044. sourceTree = "<group>";
  3045. };
  3046. C4194E8A2B566AC300B60D41 /* PaySuccessView.xib */ = {
  3047. isa = PBXVariantGroup;
  3048. children = (
  3049. C4194E892B566AC300B60D41 /* Base */,
  3050. C4194E8C2B566AC500B60D41 /* en */,
  3051. C4194E8E2B566AC900B60D41 /* zh-Hans */,
  3052. );
  3053. name = PaySuccessView.xib;
  3054. sourceTree = "<group>";
  3055. };
  3056. C41DA4B72AFF22DD00707C5D /* IntegralHeadView.xib */ = {
  3057. isa = PBXVariantGroup;
  3058. children = (
  3059. C41DA4B62AFF22DD00707C5D /* Base */,
  3060. C41DA4B92AFF22DE00707C5D /* en */,
  3061. C41DA4BB2AFF22E000707C5D /* zh-Hans */,
  3062. );
  3063. name = IntegralHeadView.xib;
  3064. sourceTree = "<group>";
  3065. };
  3066. C41DA4C72AFF39BE00707C5D /* ReplaceFoodView.xib */ = {
  3067. isa = PBXVariantGroup;
  3068. children = (
  3069. C41DA4C62AFF39BE00707C5D /* Base */,
  3070. C41DA4C92AFF39BF00707C5D /* en */,
  3071. C41DA4CB2AFF39C100707C5D /* zh-Hans */,
  3072. );
  3073. name = ReplaceFoodView.xib;
  3074. sourceTree = "<group>";
  3075. };
  3076. C41DA4D92AFFB02700707C5D /* DiscountsListViewCell.xib */ = {
  3077. isa = PBXVariantGroup;
  3078. children = (
  3079. C41DA4D82AFFB02700707C5D /* Base */,
  3080. C41DA4DB2AFFB02900707C5D /* en */,
  3081. C41DA4DD2AFFB02D00707C5D /* zh-Hans */,
  3082. );
  3083. name = DiscountsListViewCell.xib;
  3084. sourceTree = "<group>";
  3085. };
  3086. C41DA4F12AFFE1C400707C5D /* PromotionSheetView.xib */ = {
  3087. isa = PBXVariantGroup;
  3088. children = (
  3089. C41DA4F02AFFE1C400707C5D /* Base */,
  3090. C41DA4F32AFFE1C600707C5D /* en */,
  3091. C41DA4F52AFFE1C700707C5D /* zh-Hans */,
  3092. );
  3093. name = PromotionSheetView.xib;
  3094. sourceTree = "<group>";
  3095. };
  3096. C42AEDE32B03717F0045EF66 /* ChangeMealCollectionView.xib */ = {
  3097. isa = PBXVariantGroup;
  3098. children = (
  3099. C42AEDE22B03717F0045EF66 /* Base */,
  3100. C42AEDE52B0371810045EF66 /* en */,
  3101. C42AEDE72B0371820045EF66 /* zh-Hans */,
  3102. );
  3103. name = ChangeMealCollectionView.xib;
  3104. sourceTree = "<group>";
  3105. };
  3106. C42AEDEA2B03727E0045EF66 /* HomeViewController.xib */ = {
  3107. isa = PBXVariantGroup;
  3108. children = (
  3109. C42AEDE92B03727E0045EF66 /* Base */,
  3110. C42AEDEC2B0372830045EF66 /* en */,
  3111. C42AEDEE2B0372860045EF66 /* zh-Hans */,
  3112. );
  3113. name = HomeViewController.xib;
  3114. sourceTree = "<group>";
  3115. };
  3116. C42AEDF12B0372D70045EF66 /* HomeSecondViewController.xib */ = {
  3117. isa = PBXVariantGroup;
  3118. children = (
  3119. C42AEDF02B0372D70045EF66 /* Base */,
  3120. C42AEDF32B0372D80045EF66 /* en */,
  3121. C42AEDF52B0372D90045EF66 /* zh-Hans */,
  3122. );
  3123. name = HomeSecondViewController.xib;
  3124. sourceTree = "<group>";
  3125. };
  3126. C42AEDFA2B03731E0045EF66 /* HomeFoodItem.xib */ = {
  3127. isa = PBXVariantGroup;
  3128. children = (
  3129. C42AEDF92B03731E0045EF66 /* Base */,
  3130. C42AEDFC2B0373200045EF66 /* en */,
  3131. C42AEDFE2B0373210045EF66 /* zh-Hans */,
  3132. );
  3133. name = HomeFoodItem.xib;
  3134. sourceTree = "<group>";
  3135. };
  3136. C42AEE012B03737D0045EF66 /* EverybodyLoveItem.xib */ = {
  3137. isa = PBXVariantGroup;
  3138. children = (
  3139. C42AEE002B03737D0045EF66 /* Base */,
  3140. C42AEE032B03737E0045EF66 /* en */,
  3141. C42AEE052B0373800045EF66 /* zh-Hans */,
  3142. );
  3143. name = EverybodyLoveItem.xib;
  3144. sourceTree = "<group>";
  3145. };
  3146. C42AEE0F2B0376F70045EF66 /* AddresViewCell.xib */ = {
  3147. isa = PBXVariantGroup;
  3148. children = (
  3149. C42AEE0E2B0376F70045EF66 /* Base */,
  3150. C42AEE112B0376F90045EF66 /* en */,
  3151. C42AEE132B0376FB0045EF66 /* zh-Hans */,
  3152. );
  3153. name = AddresViewCell.xib;
  3154. sourceTree = "<group>";
  3155. };
  3156. C42AEE162B03786A0045EF66 /* PersonalInformationVC.xib */ = {
  3157. isa = PBXVariantGroup;
  3158. children = (
  3159. C42AEE152B03786A0045EF66 /* Base */,
  3160. C42AEE182B03786B0045EF66 /* en */,
  3161. C42AEE1A2B03786C0045EF66 /* zh-Hans */,
  3162. );
  3163. name = PersonalInformationVC.xib;
  3164. sourceTree = "<group>";
  3165. };
  3166. C42AEE1D2B037AED0045EF66 /* UnsubscribeViewController.xib */ = {
  3167. isa = PBXVariantGroup;
  3168. children = (
  3169. C42AEE1C2B037AED0045EF66 /* Base */,
  3170. C42AEE1F2B037AEE0045EF66 /* en */,
  3171. C42AEE212B037AEF0045EF66 /* zh-Hans */,
  3172. );
  3173. name = UnsubscribeViewController.xib;
  3174. sourceTree = "<group>";
  3175. };
  3176. C42AEE242B037BD40045EF66 /* AddEvaluateCell.xib */ = {
  3177. isa = PBXVariantGroup;
  3178. children = (
  3179. C42AEE232B037BD40045EF66 /* Base */,
  3180. C42AEE262B037BD50045EF66 /* en */,
  3181. C42AEE282B037BD60045EF66 /* zh-Hans */,
  3182. );
  3183. name = AddEvaluateCell.xib;
  3184. sourceTree = "<group>";
  3185. };
  3186. C42FF79B2B15DDA200B591F4 /* SingleMealDetailController.xib */ = {
  3187. isa = PBXVariantGroup;
  3188. children = (
  3189. C42FF79A2B15DDA200B591F4 /* Base */,
  3190. C42FF79D2B15DDA400B591F4 /* en */,
  3191. C42FF79F2B15DDA500B591F4 /* zh-Hans */,
  3192. );
  3193. name = SingleMealDetailController.xib;
  3194. sourceTree = "<group>";
  3195. };
  3196. C42FF7A22B15DED500B591F4 /* SetMealDetailVC.xib */ = {
  3197. isa = PBXVariantGroup;
  3198. children = (
  3199. C42FF7A12B15DED500B591F4 /* Base */,
  3200. C42FF7A42B15DED900B591F4 /* en */,
  3201. C42FF7A62B15DEDA00B591F4 /* zh-Hans */,
  3202. );
  3203. name = SetMealDetailVC.xib;
  3204. sourceTree = "<group>";
  3205. };
  3206. C42FF7A92B15DF4700B591F4 /* CheckOrderViewController.xib */ = {
  3207. isa = PBXVariantGroup;
  3208. children = (
  3209. C42FF7A82B15DF4700B591F4 /* Base */,
  3210. C42FF7AB2B15DF4900B591F4 /* en */,
  3211. C42FF7AD2B15DF4A00B591F4 /* zh-Hans */,
  3212. );
  3213. name = CheckOrderViewController.xib;
  3214. sourceTree = "<group>";
  3215. };
  3216. C42FF7B02B15DF7A00B591F4 /* ShoppingCarDetailView.xib */ = {
  3217. isa = PBXVariantGroup;
  3218. children = (
  3219. C42FF7AF2B15DF7A00B591F4 /* Base */,
  3220. C42FF7B22B15DF7B00B591F4 /* en */,
  3221. C42FF7B42B15DF7C00B591F4 /* zh-Hans */,
  3222. );
  3223. name = ShoppingCarDetailView.xib;
  3224. sourceTree = "<group>";
  3225. };
  3226. C44301FE2AF5E1860098C854 /* OrderAddressCell.xib */ = {
  3227. isa = PBXVariantGroup;
  3228. children = (
  3229. C44301FD2AF5E1860098C854 /* Base */,
  3230. C44302002AF5E1880098C854 /* en */,
  3231. C44302022AF5E1880098C854 /* zh-Hans */,
  3232. );
  3233. name = OrderAddressCell.xib;
  3234. sourceTree = "<group>";
  3235. };
  3236. C44302172AF5F5370098C854 /* selectAddressView.xib */ = {
  3237. isa = PBXVariantGroup;
  3238. children = (
  3239. C44302162AF5F5370098C854 /* Base */,
  3240. C44302192AF5F5460098C854 /* en */,
  3241. C443021B2AF5F5480098C854 /* zh-Hans */,
  3242. );
  3243. name = selectAddressView.xib;
  3244. sourceTree = "<group>";
  3245. };
  3246. C44302262AF6073A0098C854 /* PayMentSelectView.xib */ = {
  3247. isa = PBXVariantGroup;
  3248. children = (
  3249. C44302252AF6073A0098C854 /* Base */,
  3250. C44302282AF6073C0098C854 /* en */,
  3251. C443022A2AF6073C0098C854 /* zh-Hans */,
  3252. );
  3253. name = PayMentSelectView.xib;
  3254. sourceTree = "<group>";
  3255. };
  3256. C443023C2AF61A2A0098C854 /* UserPayMentSheet.xib */ = {
  3257. isa = PBXVariantGroup;
  3258. children = (
  3259. C443023B2AF61A2A0098C854 /* Base */,
  3260. C443023E2AF61A2D0098C854 /* en */,
  3261. C44302402AF61A300098C854 /* zh-Hans */,
  3262. );
  3263. name = UserPayMentSheet.xib;
  3264. sourceTree = "<group>";
  3265. };
  3266. C448CD0D2AFE4E8700B3B068 /* AddEvaluateViewController.xib */ = {
  3267. isa = PBXVariantGroup;
  3268. children = (
  3269. C448CD0C2AFE4E8700B3B068 /* Base */,
  3270. C448CD0F2AFE4E9500B3B068 /* zh-Hans */,
  3271. C448CD102AFE4E9800B3B068 /* en */,
  3272. );
  3273. name = AddEvaluateViewController.xib;
  3274. sourceTree = "<group>";
  3275. };
  3276. C448CD1E2AFE8AAF00B3B068 /* MealHeadView.xib */ = {
  3277. isa = PBXVariantGroup;
  3278. children = (
  3279. C448CD1D2AFE8AAF00B3B068 /* Base */,
  3280. C448CD202AFE8AB000B3B068 /* en */,
  3281. C448CD222AFE8AB200B3B068 /* zh-Hans */,
  3282. );
  3283. name = MealHeadView.xib;
  3284. sourceTree = "<group>";
  3285. };
  3286. C4498ED72B294D57005E43D0 /* ApplyCompanySuccess.xib */ = {
  3287. isa = PBXVariantGroup;
  3288. children = (
  3289. C4498ED62B294D57005E43D0 /* Base */,
  3290. C4498ED92B294D5A005E43D0 /* en */,
  3291. C4498EDB2B294D62005E43D0 /* zh-Hans */,
  3292. );
  3293. name = ApplyCompanySuccess.xib;
  3294. sourceTree = "<group>";
  3295. };
  3296. C44CFA572AFB5308000D592D /* OrderDetailFootView.xib */ = {
  3297. isa = PBXVariantGroup;
  3298. children = (
  3299. C44CFA562AFB5308000D592D /* Base */,
  3300. C44CFA592AFB530F000D592D /* en */,
  3301. C44CFA5B2AFB530F000D592D /* zh-Hans */,
  3302. );
  3303. name = OrderDetailFootView.xib;
  3304. sourceTree = "<group>";
  3305. };
  3306. C44CFA692AFB81FF000D592D /* BrokerageCell.xib */ = {
  3307. isa = PBXVariantGroup;
  3308. children = (
  3309. C44CFA682AFB81FF000D592D /* Base */,
  3310. C44CFA6B2AFB8204000D592D /* en */,
  3311. C44CFA6D2AFB8205000D592D /* zh-Hans */,
  3312. );
  3313. name = BrokerageCell.xib;
  3314. sourceTree = "<group>";
  3315. };
  3316. C44CFA742AFB8AB7000D592D /* BrokerageSheetView.xib */ = {
  3317. isa = PBXVariantGroup;
  3318. children = (
  3319. C44CFA732AFB8AB7000D592D /* Base */,
  3320. C44CFA762AFB8ABA000D592D /* en */,
  3321. C44CFA782AFB8ABB000D592D /* zh-Hans */,
  3322. );
  3323. name = BrokerageSheetView.xib;
  3324. sourceTree = "<group>";
  3325. };
  3326. C4522D122B0E21A600808F76 /* InfoPlist.strings */ = {
  3327. isa = PBXVariantGroup;
  3328. children = (
  3329. C4522D112B0E21A600808F76 /* en */,
  3330. C4522D132B0E21AA00808F76 /* zh-Hans */,
  3331. );
  3332. name = InfoPlist.strings;
  3333. sourceTree = "<group>";
  3334. };
  3335. C454117D2B00DF780096F60E /* BalanceTabHeadView.xib */ = {
  3336. isa = PBXVariantGroup;
  3337. children = (
  3338. C454117C2B00DF780096F60E /* Base */,
  3339. C454117F2B00DF790096F60E /* en */,
  3340. C45411812B00DF7B0096F60E /* zh-Hans */,
  3341. );
  3342. name = BalanceTabHeadView.xib;
  3343. sourceTree = "<group>";
  3344. };
  3345. C456545C2B0CA94E00F3E628 /* EditPersonSheetView.xib */ = {
  3346. isa = PBXVariantGroup;
  3347. children = (
  3348. C456545B2B0CA94E00F3E628 /* Base */,
  3349. C456545E2B0CA95100F3E628 /* en */,
  3350. C45654602B0CA95200F3E628 /* zh-Hans */,
  3351. );
  3352. name = EditPersonSheetView.xib;
  3353. sourceTree = "<group>";
  3354. };
  3355. C4577CB52AEA8E5C004D9439 /* MealCollectionView.xib */ = {
  3356. isa = PBXVariantGroup;
  3357. children = (
  3358. C4577CB42AEA8E5C004D9439 /* Base */,
  3359. C4577CB72AEA8E5E004D9439 /* en */,
  3360. C4577CB92AEA8E5E004D9439 /* zh-Hans */,
  3361. );
  3362. name = MealCollectionView.xib;
  3363. sourceTree = "<group>";
  3364. };
  3365. C4577CD92AEBC19F004D9439 /* NeedKonwView.xib */ = {
  3366. isa = PBXVariantGroup;
  3367. children = (
  3368. C4577CD82AEBC19F004D9439 /* Base */,
  3369. C4577CDB2AEBC1A1004D9439 /* en */,
  3370. C4577CDD2AEBC1A1004D9439 /* zh-Hans */,
  3371. );
  3372. name = NeedKonwView.xib;
  3373. sourceTree = "<group>";
  3374. };
  3375. C459CE192B2AC917000D16DC /* ApplyWhiteManagerController.xib */ = {
  3376. isa = PBXVariantGroup;
  3377. children = (
  3378. C459CE182B2AC917000D16DC /* Base */,
  3379. C459CE1B2B2AC919000D16DC /* en */,
  3380. C459CE1D2B2AC91A000D16DC /* zh-Hans */,
  3381. );
  3382. name = ApplyWhiteManagerController.xib;
  3383. sourceTree = "<group>";
  3384. };
  3385. C45B67D52B19DBE200EA1725 /* TeamMembersViewController.xib */ = {
  3386. isa = PBXVariantGroup;
  3387. children = (
  3388. C45B67D42B19DBE200EA1725 /* Base */,
  3389. C45B67D72B19DBE300EA1725 /* en */,
  3390. C45B67D92B19DBE500EA1725 /* zh-Hans */,
  3391. );
  3392. name = TeamMembersViewController.xib;
  3393. sourceTree = "<group>";
  3394. };
  3395. C45B67DC2B19DC1A00EA1725 /* TeamMembersAddView.xib */ = {
  3396. isa = PBXVariantGroup;
  3397. children = (
  3398. C45B67DB2B19DC1A00EA1725 /* Base */,
  3399. C45B67DE2B19DC1C00EA1725 /* en */,
  3400. C45B67E02B19DC1D00EA1725 /* zh-Hans */,
  3401. );
  3402. name = TeamMembersAddView.xib;
  3403. sourceTree = "<group>";
  3404. };
  3405. C45B67E32B19DCE400EA1725 /* ADHAlertView.xib */ = {
  3406. isa = PBXVariantGroup;
  3407. children = (
  3408. C45B67E22B19DCE400EA1725 /* Base */,
  3409. C45B67E52B19DCE600EA1725 /* en */,
  3410. C45B67E72B19DCE700EA1725 /* zh-Hans */,
  3411. );
  3412. name = ADHAlertView.xib;
  3413. sourceTree = "<group>";
  3414. };
  3415. C45B67EA2B19DD4600EA1725 /* MenuTableViewCell.xib */ = {
  3416. isa = PBXVariantGroup;
  3417. children = (
  3418. C45B67E92B19DD4600EA1725 /* Base */,
  3419. C45B67EC2B19DD4800EA1725 /* en */,
  3420. C45B67EE2B19DD4900EA1725 /* zh-Hans */,
  3421. );
  3422. name = MenuTableViewCell.xib;
  3423. sourceTree = "<group>";
  3424. };
  3425. C45B67F12B19DDBB00EA1725 /* BalanceViewController.xib */ = {
  3426. isa = PBXVariantGroup;
  3427. children = (
  3428. C45B67F02B19DDBB00EA1725 /* Base */,
  3429. C45B67F32B19DDBD00EA1725 /* en */,
  3430. C45B67F52B19DDBD00EA1725 /* zh-Hans */,
  3431. );
  3432. name = BalanceViewController.xib;
  3433. sourceTree = "<group>";
  3434. };
  3435. C45C1A772B284E0000221FBD /* ApplyAlertView.xib */ = {
  3436. isa = PBXVariantGroup;
  3437. children = (
  3438. C45C1A762B284E0000221FBD /* Base */,
  3439. C45C1A792B284E0200221FBD /* en */,
  3440. C45C1A7B2B284E0300221FBD /* zh-Hans */,
  3441. );
  3442. name = ApplyAlertView.xib;
  3443. sourceTree = "<group>";
  3444. };
  3445. C45C8A1B2AD18D41009D6C3A /* timeManageSheetView.xib */ = {
  3446. isa = PBXVariantGroup;
  3447. children = (
  3448. C45C8A1A2AD18D41009D6C3A /* Base */,
  3449. C45C8A1D2AD18D45009D6C3A /* en */,
  3450. C45C8A1F2AD18D45009D6C3A /* zh-Hans */,
  3451. );
  3452. name = timeManageSheetView.xib;
  3453. sourceTree = "<group>";
  3454. };
  3455. C45CE0782BC4748C0087A769 /* OrderManagerVC.xib */ = {
  3456. isa = PBXVariantGroup;
  3457. children = (
  3458. C45CE0772BC4748C0087A769 /* Base */,
  3459. C45CE07A2BC474900087A769 /* en */,
  3460. C45CE07C2BC474910087A769 /* zh-Hans */,
  3461. );
  3462. name = OrderManagerVC.xib;
  3463. sourceTree = "<group>";
  3464. };
  3465. C45E1ECA2AF9E412005C9210 /* MyViewController.xib */ = {
  3466. isa = PBXVariantGroup;
  3467. children = (
  3468. C45E1EC92AF9E412005C9210 /* Base */,
  3469. C45E1ECC2AF9E415005C9210 /* en */,
  3470. C45E1ECE2AF9E415005C9210 /* zh-Hans */,
  3471. );
  3472. name = MyViewController.xib;
  3473. sourceTree = "<group>";
  3474. };
  3475. C45F2B822B0E7D9A0099D40E /* OderDetailHeadView.xib */ = {
  3476. isa = PBXVariantGroup;
  3477. children = (
  3478. C45F2B812B0E7D9A0099D40E /* Base */,
  3479. C45F2B842B0E7D9D0099D40E /* en */,
  3480. C45F2B862B0E7D9E0099D40E /* zh-Hans */,
  3481. );
  3482. name = OderDetailHeadView.xib;
  3483. sourceTree = "<group>";
  3484. };
  3485. C45F2B8B2B0E7F640099D40E /* OrderListCell.xib */ = {
  3486. isa = PBXVariantGroup;
  3487. children = (
  3488. C45F2B8A2B0E7F640099D40E /* Base */,
  3489. C45F2B8D2B0E7F660099D40E /* en */,
  3490. C45F2B912B0E7F6E0099D40E /* zh-Hans */,
  3491. );
  3492. name = OrderListCell.xib;
  3493. sourceTree = "<group>";
  3494. };
  3495. C45F7AF72B347532004D944F /* SaleDetailView.xib */ = {
  3496. isa = PBXVariantGroup;
  3497. children = (
  3498. C45F7AF62B347532004D944F /* Base */,
  3499. C45F7AF92B347533004D944F /* en */,
  3500. C45F7AFB2B347534004D944F /* zh-Hans */,
  3501. );
  3502. name = SaleDetailView.xib;
  3503. sourceTree = "<group>";
  3504. };
  3505. C46731602AFA13FF00658C58 /* UnsubscribeDetailVC.xib */ = {
  3506. isa = PBXVariantGroup;
  3507. children = (
  3508. C467315F2AFA13FF00658C58 /* Base */,
  3509. C46731622AFA140000658C58 /* en */,
  3510. C46731642AFA140100658C58 /* zh-Hans */,
  3511. );
  3512. name = UnsubscribeDetailVC.xib;
  3513. sourceTree = "<group>";
  3514. };
  3515. C470B57A2AEFBD07009046B4 /* AddRemarkView.xib */ = {
  3516. isa = PBXVariantGroup;
  3517. children = (
  3518. C470B5792AEFBD07009046B4 /* Base */,
  3519. C470B57C2AEFBD09009046B4 /* en */,
  3520. C470B57E2AEFBD0A009046B4 /* zh-Hans */,
  3521. );
  3522. name = AddRemarkView.xib;
  3523. sourceTree = "<group>";
  3524. };
  3525. C470B5952AF0B05B009046B4 /* DeliveryTimeSetView.xib */ = {
  3526. isa = PBXVariantGroup;
  3527. children = (
  3528. C470B5942AF0B05B009046B4 /* Base */,
  3529. C470B5972AF0B05D009046B4 /* en */,
  3530. C470B5992AF0B05D009046B4 /* zh-Hans */,
  3531. );
  3532. name = DeliveryTimeSetView.xib;
  3533. sourceTree = "<group>";
  3534. };
  3535. C47F82832BF1B305006C4B6E /* OrderNeedToKnow.xib */ = {
  3536. isa = PBXVariantGroup;
  3537. children = (
  3538. C47F82822BF1B305006C4B6E /* Base */,
  3539. C47F82852BF1B307006C4B6E /* en */,
  3540. C47F82872BF1B308006C4B6E /* zh-Hans */,
  3541. );
  3542. name = OrderNeedToKnow.xib;
  3543. sourceTree = "<group>";
  3544. };
  3545. C48363B42AC3D96400E3FA1B /* Main.storyboard */ = {
  3546. isa = PBXVariantGroup;
  3547. children = (
  3548. C48363B52AC3D96400E3FA1B /* Base */,
  3549. C4836A362AC417BB00E3FA1B /* zh-Hans */,
  3550. C4110B012B47F53B00B23195 /* en */,
  3551. );
  3552. name = Main.storyboard;
  3553. sourceTree = "<group>";
  3554. };
  3555. C4836A472AC41C1100E3FA1B /* Localizable.strings */ = {
  3556. isa = PBXVariantGroup;
  3557. children = (
  3558. C4836A462AC41C1100E3FA1B /* en */,
  3559. C4836A482AC41C1200E3FA1B /* zh-Hans */,
  3560. );
  3561. name = Localizable.strings;
  3562. sourceTree = "<group>";
  3563. };
  3564. C4836B222AC5601900E3FA1B /* ContractView.xib */ = {
  3565. isa = PBXVariantGroup;
  3566. children = (
  3567. C4836B212AC5601900E3FA1B /* Base */,
  3568. C4836B242AC5602900E3FA1B /* en */,
  3569. C4836B252AC5602B00E3FA1B /* zh-Hans */,
  3570. );
  3571. name = ContractView.xib;
  3572. sourceTree = "<group>";
  3573. };
  3574. C4836B712AC72B0F00E3FA1B /* EverybodyLoveView.xib */ = {
  3575. isa = PBXVariantGroup;
  3576. children = (
  3577. C4836B702AC72B0F00E3FA1B /* Base */,
  3578. C4836B732AC72B1400E3FA1B /* en */,
  3579. C4836B752AC72B1400E3FA1B /* zh-Hans */,
  3580. );
  3581. name = EverybodyLoveView.xib;
  3582. sourceTree = "<group>";
  3583. };
  3584. C4836B7C2AC7308400E3FA1B /* HomeDateView.xib */ = {
  3585. isa = PBXVariantGroup;
  3586. children = (
  3587. C4836B7B2AC7308400E3FA1B /* Base */,
  3588. C4836B7E2AC7308800E3FA1B /* en */,
  3589. C4836B802AC7308800E3FA1B /* zh-Hans */,
  3590. );
  3591. name = HomeDateView.xib;
  3592. sourceTree = "<group>";
  3593. };
  3594. C4836C352AC8A26A00E3FA1B /* SearchView.xib */ = {
  3595. isa = PBXVariantGroup;
  3596. children = (
  3597. C4836C342AC8A26A00E3FA1B /* Base */,
  3598. C4836C372AC8A26D00E3FA1B /* en */,
  3599. C4836C392AC8A26D00E3FA1B /* zh-Hans */,
  3600. );
  3601. name = SearchView.xib;
  3602. sourceTree = "<group>";
  3603. };
  3604. C4A6045D2BF1CA08005074A0 /* RemarkOderView.xib */ = {
  3605. isa = PBXVariantGroup;
  3606. children = (
  3607. C4A6045C2BF1CA08005074A0 /* Base */,
  3608. C4A6045F2BF1CA0A005074A0 /* en */,
  3609. C4A604612BF1CA12005074A0 /* zh-Hans */,
  3610. );
  3611. name = RemarkOderView.xib;
  3612. sourceTree = "<group>";
  3613. };
  3614. C4A73B522B18E4D200A1595A /* SalesmanFirstShowView.xib */ = {
  3615. isa = PBXVariantGroup;
  3616. children = (
  3617. C4A73B512B18E4D200A1595A /* Base */,
  3618. C4A73B542B18E4D400A1595A /* en */,
  3619. C4A73B562B18E4D600A1595A /* zh-Hans */,
  3620. );
  3621. name = SalesmanFirstShowView.xib;
  3622. sourceTree = "<group>";
  3623. };
  3624. C4A73B592B18E6C300A1595A /* AddressEditorVC.xib */ = {
  3625. isa = PBXVariantGroup;
  3626. children = (
  3627. C4A73B582B18E6C300A1595A /* Base */,
  3628. C4A73B5B2B18E6C400A1595A /* en */,
  3629. C4A73B5D2B18E6C600A1595A /* zh-Hans */,
  3630. );
  3631. name = AddressEditorVC.xib;
  3632. sourceTree = "<group>";
  3633. };
  3634. C4B082BA2AF54CA500CD146E /* CheckOrderHeadView.xib */ = {
  3635. isa = PBXVariantGroup;
  3636. children = (
  3637. C4B082B92AF54CA500CD146E /* Base */,
  3638. C4B082BC2AF54CAC00CD146E /* en */,
  3639. C4B082BE2AF54CB300CD146E /* zh-Hans */,
  3640. );
  3641. name = CheckOrderHeadView.xib;
  3642. sourceTree = "<group>";
  3643. };
  3644. C4C51C752AF0FF4100F4636E /* AddressManagerVC.xib */ = {
  3645. isa = PBXVariantGroup;
  3646. children = (
  3647. C4C51C742AF0FF4100F4636E /* Base */,
  3648. C4C51C772AF0FF4200F4636E /* en */,
  3649. C4C51C792AF0FF4300F4636E /* zh-Hans */,
  3650. );
  3651. name = AddressManagerVC.xib;
  3652. sourceTree = "<group>";
  3653. };
  3654. C4C6D83C2AFC100400E1AFB5 /* phoneCallView.xib */ = {
  3655. isa = PBXVariantGroup;
  3656. children = (
  3657. C4C6D83B2AFC100400E1AFB5 /* Base */,
  3658. C4C6D83E2AFC100600E1AFB5 /* en */,
  3659. C4C6D8402AFC100600E1AFB5 /* zh-Hans */,
  3660. );
  3661. name = phoneCallView.xib;
  3662. sourceTree = "<group>";
  3663. };
  3664. C4CF5F4C2ACD468000B6B2D9 /* StartView.xib */ = {
  3665. isa = PBXVariantGroup;
  3666. children = (
  3667. C4CF5F4B2ACD468000B6B2D9 /* Base */,
  3668. C4CF5F4E2ACD468400B6B2D9 /* en */,
  3669. C4CF5F502ACD468500B6B2D9 /* zh-Hans */,
  3670. );
  3671. name = StartView.xib;
  3672. sourceTree = "<group>";
  3673. };
  3674. /* End PBXVariantGroup section */
  3675. /* Begin XCBuildConfiguration section */
  3676. C48363D62AC3D96500E3FA1B /* Debug */ = {
  3677. isa = XCBuildConfiguration;
  3678. buildSettings = {
  3679. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3680. ALWAYS_SEARCH_USER_PATHS = NO;
  3681. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3682. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3683. CLANG_ANALYZER_NONNULL = YES;
  3684. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3685. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3686. CLANG_ENABLE_MODULES = YES;
  3687. CLANG_ENABLE_OBJC_ARC = YES;
  3688. CLANG_ENABLE_OBJC_WEAK = YES;
  3689. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3690. CLANG_WARN_BOOL_CONVERSION = YES;
  3691. CLANG_WARN_COMMA = YES;
  3692. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3693. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3694. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3695. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3696. CLANG_WARN_EMPTY_BODY = YES;
  3697. CLANG_WARN_ENUM_CONVERSION = YES;
  3698. CLANG_WARN_INFINITE_RECURSION = YES;
  3699. CLANG_WARN_INT_CONVERSION = YES;
  3700. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3701. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3702. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3703. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3704. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3705. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3706. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3707. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3708. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3709. CLANG_WARN_UNREACHABLE_CODE = YES;
  3710. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3711. COPY_PHASE_STRIP = NO;
  3712. DEBUG_INFORMATION_FORMAT = dwarf;
  3713. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3714. ENABLE_TESTABILITY = YES;
  3715. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  3716. GCC_C_LANGUAGE_STANDARD = gnu17;
  3717. GCC_DYNAMIC_NO_PIC = NO;
  3718. GCC_NO_COMMON_BLOCKS = YES;
  3719. GCC_OPTIMIZATION_LEVEL = 0;
  3720. GCC_PREPROCESSOR_DEFINITIONS = (
  3721. "DEBUG=1",
  3722. "$(inherited)",
  3723. );
  3724. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3725. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3726. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3727. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3728. GCC_WARN_UNUSED_FUNCTION = YES;
  3729. GCC_WARN_UNUSED_VARIABLE = YES;
  3730. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  3731. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3732. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3733. MTL_FAST_MATH = YES;
  3734. ONLY_ACTIVE_ARCH = YES;
  3735. SDKROOT = iphoneos;
  3736. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  3737. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3738. };
  3739. name = Debug;
  3740. };
  3741. C48363D72AC3D96500E3FA1B /* Release */ = {
  3742. isa = XCBuildConfiguration;
  3743. buildSettings = {
  3744. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3745. ALWAYS_SEARCH_USER_PATHS = NO;
  3746. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3747. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3748. CLANG_ANALYZER_NONNULL = YES;
  3749. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3750. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3751. CLANG_ENABLE_MODULES = YES;
  3752. CLANG_ENABLE_OBJC_ARC = YES;
  3753. CLANG_ENABLE_OBJC_WEAK = YES;
  3754. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3755. CLANG_WARN_BOOL_CONVERSION = YES;
  3756. CLANG_WARN_COMMA = YES;
  3757. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3758. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3759. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3760. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3761. CLANG_WARN_EMPTY_BODY = YES;
  3762. CLANG_WARN_ENUM_CONVERSION = YES;
  3763. CLANG_WARN_INFINITE_RECURSION = YES;
  3764. CLANG_WARN_INT_CONVERSION = YES;
  3765. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3766. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3767. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3768. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3769. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3770. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3771. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3772. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3773. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3774. CLANG_WARN_UNREACHABLE_CODE = YES;
  3775. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3776. COPY_PHASE_STRIP = NO;
  3777. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3778. ENABLE_NS_ASSERTIONS = NO;
  3779. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3780. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  3781. GCC_C_LANGUAGE_STANDARD = gnu17;
  3782. GCC_NO_COMMON_BLOCKS = YES;
  3783. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3784. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3785. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3786. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3787. GCC_WARN_UNUSED_FUNCTION = YES;
  3788. GCC_WARN_UNUSED_VARIABLE = YES;
  3789. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  3790. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3791. MTL_ENABLE_DEBUG_INFO = NO;
  3792. MTL_FAST_MATH = YES;
  3793. SDKROOT = iphoneos;
  3794. SWIFT_COMPILATION_MODE = wholemodule;
  3795. VALIDATE_PRODUCT = YES;
  3796. };
  3797. name = Release;
  3798. };
  3799. C48363D92AC3D96500E3FA1B /* Debug */ = {
  3800. isa = XCBuildConfiguration;
  3801. baseConfigurationReference = D5A42DEC0153678020E581CB /* Pods-ADHTuanCan.debug.xcconfig */;
  3802. buildSettings = {
  3803. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3804. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3805. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
  3806. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  3807. CLANG_ENABLE_MODULES = YES;
  3808. CODE_SIGN_STYLE = Automatic;
  3809. CURRENT_PROJECT_VERSION = 1;
  3810. DEVELOPMENT_TEAM = VUHRW5BP4S;
  3811. GENERATE_INFOPLIST_FILE = YES;
  3812. INFOPLIST_FILE = ADHTuanCan/Info.plist;
  3813. INFOPLIST_KEY_CFBundleDisplayName = "KS Culinary";
  3814. INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.food-and-drink";
  3815. INFOPLIST_KEY_NSCameraUsageDescription = "The app needs to get your camera in order to set up information such as avatars, listing pictures";
  3816. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "The APP gets your album so it can set up avatars to add comments and other information";
  3817. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3818. INFOPLIST_KEY_UILaunchStoryboardName = "Launch Screen";
  3819. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  3820. INFOPLIST_KEY_UIStatusBarHidden = NO;
  3821. INFOPLIST_KEY_UIStatusBarStyle = "";
  3822. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  3823. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  3824. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  3825. LD_RUNPATH_SEARCH_PATHS = (
  3826. "$(inherited)",
  3827. "@executable_path/Frameworks",
  3828. );
  3829. MARKETING_VERSION = 1.0.4;
  3830. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCan;
  3831. PRODUCT_NAME = "$(TARGET_NAME)";
  3832. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  3833. SUPPORTS_MACCATALYST = NO;
  3834. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  3835. SWIFT_EMIT_LOC_STRINGS = YES;
  3836. SWIFT_OBJC_BRIDGING_HEADER = "ADHTuanCan/Class/Config/ADHTuanCan-Bridging-Header.h";
  3837. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3838. SWIFT_VERSION = 5.0;
  3839. TARGETED_DEVICE_FAMILY = 1;
  3840. };
  3841. name = Debug;
  3842. };
  3843. C48363DA2AC3D96500E3FA1B /* Release */ = {
  3844. isa = XCBuildConfiguration;
  3845. baseConfigurationReference = A392503CF9C8A459BF93B985 /* Pods-ADHTuanCan.release.xcconfig */;
  3846. buildSettings = {
  3847. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3848. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3849. ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
  3850. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  3851. CLANG_ENABLE_MODULES = YES;
  3852. CODE_SIGN_STYLE = Automatic;
  3853. CURRENT_PROJECT_VERSION = 1;
  3854. DEVELOPMENT_TEAM = VUHRW5BP4S;
  3855. GENERATE_INFOPLIST_FILE = YES;
  3856. INFOPLIST_FILE = ADHTuanCan/Info.plist;
  3857. INFOPLIST_KEY_CFBundleDisplayName = "KS Culinary";
  3858. INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.food-and-drink";
  3859. INFOPLIST_KEY_NSCameraUsageDescription = "The app needs to get your camera in order to set up information such as avatars, listing pictures";
  3860. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "The APP gets your album so it can set up avatars to add comments and other information";
  3861. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3862. INFOPLIST_KEY_UILaunchStoryboardName = "Launch Screen";
  3863. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  3864. INFOPLIST_KEY_UIStatusBarHidden = NO;
  3865. INFOPLIST_KEY_UIStatusBarStyle = "";
  3866. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  3867. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  3868. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  3869. LD_RUNPATH_SEARCH_PATHS = (
  3870. "$(inherited)",
  3871. "@executable_path/Frameworks",
  3872. );
  3873. MARKETING_VERSION = 1.0.4;
  3874. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCan;
  3875. PRODUCT_NAME = "$(TARGET_NAME)";
  3876. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  3877. SUPPORTS_MACCATALYST = NO;
  3878. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  3879. SWIFT_EMIT_LOC_STRINGS = YES;
  3880. SWIFT_OBJC_BRIDGING_HEADER = "ADHTuanCan/Class/Config/ADHTuanCan-Bridging-Header.h";
  3881. SWIFT_VERSION = 5.0;
  3882. TARGETED_DEVICE_FAMILY = 1;
  3883. };
  3884. name = Release;
  3885. };
  3886. C48363DC2AC3D96500E3FA1B /* Debug */ = {
  3887. isa = XCBuildConfiguration;
  3888. buildSettings = {
  3889. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3890. BUNDLE_LOADER = "$(TEST_HOST)";
  3891. CODE_SIGN_STYLE = Automatic;
  3892. CURRENT_PROJECT_VERSION = 1;
  3893. GENERATE_INFOPLIST_FILE = YES;
  3894. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  3895. MARKETING_VERSION = 1.0;
  3896. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCanTests;
  3897. PRODUCT_NAME = "$(TARGET_NAME)";
  3898. SWIFT_EMIT_LOC_STRINGS = NO;
  3899. SWIFT_VERSION = 5.0;
  3900. TARGETED_DEVICE_FAMILY = "1,2";
  3901. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ADHTuanCan.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ADHTuanCan";
  3902. };
  3903. name = Debug;
  3904. };
  3905. C48363DD2AC3D96500E3FA1B /* Release */ = {
  3906. isa = XCBuildConfiguration;
  3907. buildSettings = {
  3908. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3909. BUNDLE_LOADER = "$(TEST_HOST)";
  3910. CODE_SIGN_STYLE = Automatic;
  3911. CURRENT_PROJECT_VERSION = 1;
  3912. GENERATE_INFOPLIST_FILE = YES;
  3913. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  3914. MARKETING_VERSION = 1.0;
  3915. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCanTests;
  3916. PRODUCT_NAME = "$(TARGET_NAME)";
  3917. SWIFT_EMIT_LOC_STRINGS = NO;
  3918. SWIFT_VERSION = 5.0;
  3919. TARGETED_DEVICE_FAMILY = "1,2";
  3920. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ADHTuanCan.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ADHTuanCan";
  3921. };
  3922. name = Release;
  3923. };
  3924. C48363DF2AC3D96500E3FA1B /* Debug */ = {
  3925. isa = XCBuildConfiguration;
  3926. buildSettings = {
  3927. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3928. CODE_SIGN_STYLE = Automatic;
  3929. CURRENT_PROJECT_VERSION = 1;
  3930. GENERATE_INFOPLIST_FILE = YES;
  3931. MARKETING_VERSION = 1.0;
  3932. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCanUITests;
  3933. PRODUCT_NAME = "$(TARGET_NAME)";
  3934. SWIFT_EMIT_LOC_STRINGS = NO;
  3935. SWIFT_VERSION = 5.0;
  3936. TARGETED_DEVICE_FAMILY = "1,2";
  3937. TEST_TARGET_NAME = ADHTuanCan;
  3938. };
  3939. name = Debug;
  3940. };
  3941. C48363E02AC3D96500E3FA1B /* Release */ = {
  3942. isa = XCBuildConfiguration;
  3943. buildSettings = {
  3944. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3945. CODE_SIGN_STYLE = Automatic;
  3946. CURRENT_PROJECT_VERSION = 1;
  3947. GENERATE_INFOPLIST_FILE = YES;
  3948. MARKETING_VERSION = 1.0;
  3949. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCanUITests;
  3950. PRODUCT_NAME = "$(TARGET_NAME)";
  3951. SWIFT_EMIT_LOC_STRINGS = NO;
  3952. SWIFT_VERSION = 5.0;
  3953. TARGETED_DEVICE_FAMILY = "1,2";
  3954. TEST_TARGET_NAME = ADHTuanCan;
  3955. };
  3956. name = Release;
  3957. };
  3958. /* End XCBuildConfiguration section */
  3959. /* Begin XCConfigurationList section */
  3960. C48363A62AC3D96400E3FA1B /* Build configuration list for PBXProject "ADHTuanCan" */ = {
  3961. isa = XCConfigurationList;
  3962. buildConfigurations = (
  3963. C48363D62AC3D96500E3FA1B /* Debug */,
  3964. C48363D72AC3D96500E3FA1B /* Release */,
  3965. );
  3966. defaultConfigurationIsVisible = 0;
  3967. defaultConfigurationName = Release;
  3968. };
  3969. C48363D82AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCan" */ = {
  3970. isa = XCConfigurationList;
  3971. buildConfigurations = (
  3972. C48363D92AC3D96500E3FA1B /* Debug */,
  3973. C48363DA2AC3D96500E3FA1B /* Release */,
  3974. );
  3975. defaultConfigurationIsVisible = 0;
  3976. defaultConfigurationName = Release;
  3977. };
  3978. C48363DB2AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCanTests" */ = {
  3979. isa = XCConfigurationList;
  3980. buildConfigurations = (
  3981. C48363DC2AC3D96500E3FA1B /* Debug */,
  3982. C48363DD2AC3D96500E3FA1B /* Release */,
  3983. );
  3984. defaultConfigurationIsVisible = 0;
  3985. defaultConfigurationName = Release;
  3986. };
  3987. C48363DE2AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCanUITests" */ = {
  3988. isa = XCConfigurationList;
  3989. buildConfigurations = (
  3990. C48363DF2AC3D96500E3FA1B /* Debug */,
  3991. C48363E02AC3D96500E3FA1B /* Release */,
  3992. );
  3993. defaultConfigurationIsVisible = 0;
  3994. defaultConfigurationName = Release;
  3995. };
  3996. /* End XCConfigurationList section */
  3997. /* Begin XCVersionGroup section */
  3998. C48363B72AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld */ = {
  3999. isa = XCVersionGroup;
  4000. children = (
  4001. C48363B82AC3D96400E3FA1B /* ADHTuanCan.xcdatamodel */,
  4002. );
  4003. currentVersion = C48363B82AC3D96400E3FA1B /* ADHTuanCan.xcdatamodel */;
  4004. path = ADHTuanCan.xcdatamodeld;
  4005. sourceTree = "<group>";
  4006. versionGroupType = wrapper.xcdatamodel;
  4007. };
  4008. /* End XCVersionGroup section */
  4009. };
  4010. rootObject = C48363A32AC3D96400E3FA1B /* Project object */;
  4011. }