project.pbxproj 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 3C0F4E9423BAE74F000A2FE7 /* CachedTileOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0F4E9323BAE74F000A2FE7 /* CachedTileOverlay.m */; };
  10. 3C0F4E9723BAF594000A2FE7 /* FileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0F4E9623BAF594000A2FE7 /* FileCache.m */; };
  11. 3C1DEC3D239F6C42006F7E2A /* MKMapView+ZoomLevel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1DEC3B239F6C42006F7E2A /* MKMapView+ZoomLevel.m */; };
  12. 3C2D99A2239B92F1007B759E /* ApexMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2D99A0239B92F1007B759E /* ApexMapView.m */; };
  13. 3C2D99A5239B93C8007B759E /* AMViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2D99A4239B93C8007B759E /* AMViewController.m */; };
  14. 3C57169D23D186A30002E9FC /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C57169A23D186A30002E9FC /* WebViewController.m */; };
  15. 3C57169E23D186A30002E9FC /* wkweb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C57169B23D186A30002E9FC /* wkweb.storyboard */; };
  16. 3CA1A2DE23A212E700639FCC /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3CA1A2DD23A212E700639FCC /* Launch Screen.storyboard */; };
  17. 420DEF2620A1898500720524 /* AMCommHeadCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 420DEF2420A1898500720524 /* AMCommHeadCell.m */; };
  18. 420DEF2720A1898500720524 /* AMCommHeadCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 420DEF2520A1898500720524 /* AMCommHeadCell.xib */; };
  19. 420DEF2B20A1899600720524 /* AMCommContentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 420DEF2920A1899600720524 /* AMCommContentCell.m */; };
  20. 420DEF2C20A1899600720524 /* AMCommContentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 420DEF2A20A1899600720524 /* AMCommContentCell.xib */; };
  21. 420DEF3020A189AA00720524 /* AMCommEditCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 420DEF2E20A189AA00720524 /* AMCommEditCell.m */; };
  22. 420DEF3120A189AA00720524 /* AMCommEditCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 420DEF2F20A189AA00720524 /* AMCommEditCell.xib */; };
  23. 420F0CA420901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 420F0CA320901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m */; };
  24. 42253C94209C007700879B09 /* AMMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42253C93209C007700879B09 /* AMMapView.m */; };
  25. 42253C98209C3C0F00879B09 /* AMShipMap.m in Sources */ = {isa = PBXBuildFile; fileRef = 42253C97209C3C0F00879B09 /* AMShipMap.m */; };
  26. 4225E42421E08502009D2364 /* ApexResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E42321E08502009D2364 /* ApexResultViewController.m */; };
  27. 4225E42621E08576009D2364 /* ApexResult.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4225E42521E08576009D2364 /* ApexResult.storyboard */; };
  28. 4225E42D21E08895009D2364 /* ApexResultViewController+TableDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E42C21E08895009D2364 /* ApexResultViewController+TableDelegate.m */; };
  29. 4225E43021E088AA009D2364 /* ApexResultViewController+TableDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E42F21E088AA009D2364 /* ApexResultViewController+TableDataSource.m */; };
  30. 4225E43321E08A54009D2364 /* ApexResultContainerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43221E08A54009D2364 /* ApexResultContainerCell.m */; };
  31. 4225E43921E08A8C009D2364 /* ApexResultDocumentCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43721E08A8C009D2364 /* ApexResultDocumentCell.m */; };
  32. 4225E43A21E08A8C009D2364 /* ApexResultDocumentCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4225E43821E08A8C009D2364 /* ApexResultDocumentCell.xib */; };
  33. 4225E43D21E08ACE009D2364 /* ApexResultContainerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43C21E08ACE009D2364 /* ApexResultContainerModel.m */; };
  34. 4225E44021E08AEF009D2364 /* ApexResultDocumentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E43F21E08AEF009D2364 /* ApexResultDocumentModel.m */; };
  35. 4225E44321E08B47009D2364 /* ApexResultBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44221E08B47009D2364 /* ApexResultBaseModel.m */; };
  36. 4225E44821E099CB009D2364 /* ApexResultPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44721E099CB009D2364 /* ApexResultPresenter.m */; };
  37. 4225E44F21E0A39A009D2364 /* RAProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44B21E0A39A009D2364 /* RAProgressHUD.m */; };
  38. 4225E45021E0A39A009D2364 /* UIView+RAConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 4225E44D21E0A39A009D2364 /* UIView+RAConstraint.m */; };
  39. 4235C30320229F7200A99D04 /* Result.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4235C30220229F7200A99D04 /* Result.xib */; };
  40. 4235C3052022A60A00A99D04 /* ResultCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4235C3042022A60A00A99D04 /* ResultCell.xib */; };
  41. 4253900E2079B7C700ECF982 /* KPIPieChartCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253900C2079B7C700ECF982 /* KPIPieChartCell.m */; };
  42. 4253900F2079B7C700ECF982 /* KPIPieChartCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4253900D2079B7C700ECF982 /* KPIPieChartCell.xib */; };
  43. 425390202079B99B00ECF982 /* XYCommon.m in Sources */ = {isa = PBXBuildFile; fileRef = 425390172079B99A00ECF982 /* XYCommon.m */; };
  44. 425390212079B99B00ECF982 /* PieChart.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 425390192079B99B00ECF982 /* PieChart.xcassets */; };
  45. 425390222079B99B00ECF982 /* XYRotatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253901B2079B99B00ECF982 /* XYRotatedView.m */; };
  46. 425390232079B99B00ECF982 /* XYPieChartView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253901C2079B99B00ECF982 /* XYPieChartView.m */; };
  47. 425390242079B99B00ECF982 /* XYRenderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4253901E2079B99B00ECF982 /* XYRenderView.m */; };
  48. 425390262079B9B500ECF982 /* KPI.json in Resources */ = {isa = PBXBuildFile; fileRef = 425390252079B9B400ECF982 /* KPI.json */; };
  49. 42539029207A159300ECF982 /* KPIButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 42539028207A159300ECF982 /* KPIButton.m */; };
  50. 42541ACF207C49610072BC5A /* fake_home.json in Resources */ = {isa = PBXBuildFile; fileRef = 42541ACE207C49610072BC5A /* fake_home.json */; };
  51. 425CF096201EB2B500750E32 /* JLRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF08C201EB2B500750E32 /* JLRefreshFooter.m */; };
  52. 425CF097201EB2B500750E32 /* JLRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF08F201EB2B500750E32 /* JLRefreshHeader.m */; };
  53. 425CF098201EB2B500750E32 /* JLRefreshBasis.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF091201EB2B500750E32 /* JLRefreshBasis.m */; };
  54. 425CF099201EB2B500750E32 /* UIScrollView+JLRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF093201EB2B500750E32 /* UIScrollView+JLRefresh.m */; };
  55. 425CF09A201EB2B500750E32 /* UIView+JLExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 425CF095201EB2B500750E32 /* UIView+JLExtension.m */; };
  56. 42604122201C4B41002374A8 /* ShipingStatusCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42604121201C4B41002374A8 /* ShipingStatusCell.m */; };
  57. 42604127201C578B002374A8 /* ShipSearchController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42604126201C578B002374A8 /* ShipSearchController.m */; };
  58. 42604129201C57A7002374A8 /* ShipSearch.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 42604128201C57A7002374A8 /* ShipSearch.storyboard */; };
  59. 426E8AB9202163EC0073BA5D /* JLCustomerAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E8AB6202163EC0073BA5D /* JLCustomerAlertController.m */; };
  60. 426E8ABA202163EC0073BA5D /* JLPresentationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E8AB8202163EC0073BA5D /* JLPresentationController.m */; };
  61. 426E8ABD2021AEC50073BA5D /* JLCustomerNavigationAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 426E8ABC2021AEC50073BA5D /* JLCustomerNavigationAlertController.m */; };
  62. 426F397F2033CEE80025C568 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 426F397E2033CEE80025C568 /* AudioToolbox.framework */; };
  63. 426F39822033D0930025C568 /* ResultCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 426F39812033D0930025C568 /* ResultCell.m */; };
  64. 427CF5D02023F5560041472A /* NewImages.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 427CF5CF2023F5560041472A /* NewImages.xcassets */; };
  65. 427CF5E0202452460041472A /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 427CF5DF202452450041472A /* Accelerate.framework */; };
  66. 42BB7402208431DA00B9B6E4 /* KPILegendCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BB7401208431DA00B9B6E4 /* KPILegendCell.m */; };
  67. 42BB740620846B4500B9B6E4 /* KPITableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BB740420846B4500B9B6E4 /* KPITableCell.m */; };
  68. 42BB740720846B4500B9B6E4 /* KPITableCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42BB740520846B4500B9B6E4 /* KPITableCell.xib */; };
  69. 42BB74092084732D00B9B6E4 /* KPICell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42BB74082084732D00B9B6E4 /* KPICell.xib */; };
  70. 42BB740B2084737800B9B6E4 /* KPILegendCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42BB740A2084737800B9B6E4 /* KPILegendCell.xib */; };
  71. 42BCACCA209AE243009DDA43 /* AMAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BCACC9209AE243009DDA43 /* AMAnnotationView.m */; };
  72. 42BCACCD209AE342009DDA43 /* AMMapAnnotaion.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BCACCC209AE342009DDA43 /* AMMapAnnotaion.m */; };
  73. 42BFD2D2207B697800DA9038 /* KPICell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BFD2D1207B697800DA9038 /* KPICell.m */; };
  74. 42C6754E21E2F1D4001E3FF4 /* ApexResultAdditionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42C6754D21E2F1D4001E3FF4 /* ApexResultAdditionView.m */; };
  75. 42C6755221E32654001E3FF4 /* ApexResultViewController+QuickLook.m in Sources */ = {isa = PBXBuildFile; fileRef = 42C6755121E32654001E3FF4 /* ApexResultViewController+QuickLook.m */; };
  76. 42DE626220A41907005FB582 /* AMTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 42DE626120A41907005FB582 /* AMTextField.m */; };
  77. 42E8212F21F6ED1800127705 /* ApexResultAdditionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42E8212E21F6ED1800127705 /* ApexResultAdditionView.xib */; };
  78. 42FB6EB921F2B9FE00F694AB /* ApexResultContainerCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42FB6EB821F2B9FE00F694AB /* ApexResultContainerCell.xib */; };
  79. 42FB6EBD21F2BAB800F694AB /* ApexResultBLInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EBB21F2BAB800F694AB /* ApexResultBLInfoCell.m */; };
  80. 42FB6EBE21F2BAB800F694AB /* ApexResultBLInfoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42FB6EBC21F2BAB800F694AB /* ApexResultBLInfoCell.xib */; };
  81. 42FB6EC221F2BB6400F694AB /* ApexResultBookingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EC021F2BB6400F694AB /* ApexResultBookingCell.m */; };
  82. 42FB6EC321F2BB6400F694AB /* ApexResultBookingCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 42FB6EC121F2BB6400F694AB /* ApexResultBookingCell.xib */; };
  83. 42FB6EC621F2BC5300F694AB /* ApexResultBookingModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EC521F2BC5300F694AB /* ApexResultBookingModel.m */; };
  84. 42FB6EC921F2BC8600F694AB /* ApexResultAddition.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6EC821F2BC8600F694AB /* ApexResultAddition.m */; };
  85. 42FB6ECC21F2C0E300F694AB /* ApexResultBLInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6ECB21F2C0E300F694AB /* ApexResultBLInfoModel.m */; };
  86. 42FB6ECF21F3136300F694AB /* ApexResultMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FB6ECE21F3136300F694AB /* ApexResultMenuItem.m */; };
  87. 7101BEC82031389A00CC6E3A /* DetailCellKVNew.m in Sources */ = {isa = PBXBuildFile; fileRef = 7101BEC72031389A00CC6E3A /* DetailCellKVNew.m */; };
  88. 7103C84B22549E7F00261926 /* CLLocation+Sino.m in Sources */ = {isa = PBXBuildFile; fileRef = 7103C84922549E7E00261926 /* CLLocation+Sino.m */; };
  89. 711BA6C1191E0525002EDE6F /* MessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 711BA6C0191E0525002EDE6F /* MessageViewController.m */; };
  90. 711BA6C4191E0553002EDE6F /* MessageItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 711BA6C3191E0553002EDE6F /* MessageItem.m */; };
  91. 711DC6B218C30A4800FB1749 /* TableCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 711DC6B118C30A4800FB1749 /* TableCellEdit.m */; };
  92. 7120DCEB18BE25CE00E7546F /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCEA18BE25CE00E7546F /* AVFoundation.framework */; };
  93. 7120DCED18BE25DA00E7546F /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCEC18BE25DA00E7546F /* CoreData.framework */; };
  94. 7120DCEF18BE25E500E7546F /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCEE18BE25E500E7546F /* CoreLocation.framework */; };
  95. 7120DCF118BE25F500E7546F /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF018BE25F500E7546F /* CoreText.framework */; };
  96. 7120DCF318BE260700E7546F /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF218BE260700E7546F /* GLKit.framework */; };
  97. 7120DCF518BE261500E7546F /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF418BE261500E7546F /* ImageIO.framework */; };
  98. 7120DCF718BE262300E7546F /* libc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF618BE262300E7546F /* libc++.dylib */; };
  99. 7120DCF918BE262E00E7546F /* libicucore.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCF818BE262E00E7546F /* libicucore.dylib */; };
  100. 7120DCFB18BE263800E7546F /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCFA18BE263800E7546F /* libz.dylib */; };
  101. 7120DCFD18BE264300E7546F /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCFC18BE264300E7546F /* OpenGLES.framework */; };
  102. 7120DCFF18BE265100E7546F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DCFE18BE265100E7546F /* QuartzCore.framework */; };
  103. 7120DD0118BE266000E7546F /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7120DD0018BE266000E7546F /* SystemConfiguration.framework */; };
  104. 7120DD0418BE273900E7546F /* LocationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7120DD0318BE273900E7546F /* LocationViewController.m */; };
  105. 712A301318CFEF550022E6E6 /* CustomizeFieldViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712A301218CFEF550022E6E6 /* CustomizeFieldViewController.m */; };
  106. 712CBA0318CF38DB00C61394 /* RTLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 712CBA0218CF38DB00C61394 /* RTLabel.m */; };
  107. 71308AF7191E7B0E0024B2B0 /* MessageDetailItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 71308AF6191E7B0E0024B2B0 /* MessageDetailItem.m */; };
  108. 71308AFA191E7B2A0024B2B0 /* MessageDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71308AF9191E7B2A0024B2B0 /* MessageDetailViewController.m */; };
  109. 7130B3F41900FB61000610D8 /* NewsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7130B3F31900FB61000610D8 /* NewsViewController.m */; };
  110. 71330C2018BCC4DA0048956C /* FunctionSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71330C1F18BCC4DA0048956C /* FunctionSelectViewController.m */; };
  111. 71375C8F18D96EDE00EBA026 /* TabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71375C8E18D96EDE00EBA026 /* TabBarController.m */; };
  112. 713AA7A1191736E600B44092 /* DocumentsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 713AA7A0191736E600B44092 /* DocumentsViewController.m */; };
  113. 713AA7A41917373600B44092 /* LocalDocumentsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 713AA7A31917373600B44092 /* LocalDocumentsViewController.m */; };
  114. 71406DCE18C36A52000914C4 /* TableCellBool.m in Sources */ = {isa = PBXBuildFile; fileRef = 71406DCD18C36A52000914C4 /* TableCellBool.m */; };
  115. 71406DD118C36A6E000914C4 /* TableCellDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 71406DD018C36A6E000914C4 /* TableCellDate.m */; };
  116. 714C39B81922FEE1004F045B /* NewsDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 714C39B71922FEE1004F045B /* NewsDetailViewController.m */; };
  117. 714C39BF19234065004F045B /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 714C39C119234065004F045B /* Localizable.strings */; };
  118. 71514ED2191B7E2500009C00 /* AddressBookUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71514ED1191B7E2500009C00 /* AddressBookUI.framework */; };
  119. 715643B720198A1400B04267 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 715643B620198A1400B04267 /* Main.storyboard */; };
  120. 715643BB20198A9900B04267 /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643BA20198A9900B04267 /* RootViewController.m */; };
  121. 715643BE2019AA9B00B04267 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643BD2019AA9B00B04267 /* LoginViewController.m */; };
  122. 715643C12019B27500B04267 /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C02019B27500B04267 /* HomeViewController.m */; };
  123. 715643C42019B58400B04267 /* OrderHistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C32019B58400B04267 /* OrderHistoryViewController.m */; };
  124. 715643C72019BB6700B04267 /* StaticModelistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C62019BB6700B04267 /* StaticModelistViewController.m */; };
  125. 715643CA2019BC4C00B04267 /* SearchlistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643C92019BC4C00B04267 /* SearchlistViewController.m */; };
  126. 715643CD2019BC6C00B04267 /* ToolslistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643CC2019BC6C00B04267 /* ToolslistViewController.m */; };
  127. 715643D02019BCCE00B04267 /* MylistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643CF2019BCCE00B04267 /* MylistViewController.m */; };
  128. 715643D3201ACB1700B04267 /* StaticModeTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 715643D2201ACB1700B04267 /* StaticModeTableViewCell.m */; };
  129. 715643D5201AD2AB00B04267 /* StaticModelistViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 715643D4201AD2AB00B04267 /* StaticModelistViewController.xib */; };
  130. 715643D7201AD99300B04267 /* StaticModeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 715643D6201AD99300B04267 /* StaticModeTableViewCell.xib */; };
  131. 715643DA201C079F00B04267 /* tools.json in Resources */ = {isa = PBXBuildFile; fileRef = 715643D9201C079F00B04267 /* tools.json */; };
  132. 715643DC201C117300B04267 /* search.json in Resources */ = {isa = PBXBuildFile; fileRef = 715643DB201C117300B04267 /* search.json */; };
  133. 715643DE201C1AE600B04267 /* my.json in Resources */ = {isa = PBXBuildFile; fileRef = 715643DD201C1AE600B04267 /* my.json */; };
  134. 7157098E2021572600EFE5C5 /* NetworkUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7157098C2021572600EFE5C5 /* NetworkUtils.m */; };
  135. 715709922021574D00EFE5C5 /* RAConvertor.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709912021574D00EFE5C5 /* RAConvertor.m */; };
  136. 71570996202157A600EFE5C5 /* RAUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71570995202157A600EFE5C5 /* RAUtils.m */; };
  137. 71570999202157BD00EFE5C5 /* RANetworkTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 71570997202157BC00EFE5C5 /* RANetworkTaskDelegate.m */; };
  138. 715709A520215B5100EFE5C5 /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 7157099C20215B5000EFE5C5 /* zip.c */; };
  139. 715709A620215B5100EFE5C5 /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 7157099E20215B5000EFE5C5 /* unzip.c */; };
  140. 715709A720215B5100EFE5C5 /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 715709A020215B5000EFE5C5 /* ioapi.c */; };
  141. 715709A820215B5100EFE5C5 /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = 715709A420215B5100EFE5C5 /* mztools.c */; };
  142. 715709AB20215B6200EFE5C5 /* ZipArchive.mm in Sources */ = {isa = PBXBuildFile; fileRef = 715709AA20215B6200EFE5C5 /* ZipArchive.mm */; };
  143. 715709AE20215CB000EFE5C5 /* RANetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709AD20215CB000EFE5C5 /* RANetwork.m */; };
  144. 715709B920215E0000EFE5C5 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B020215DFF00EFE5C5 /* NSData+CommonCrypto.m */; };
  145. 715709BA20215E0000EFE5C5 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B220215DFF00EFE5C5 /* NSString+Base64.m */; };
  146. 715709BB20215E0000EFE5C5 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B320215DFF00EFE5C5 /* NSData+Base64.m */; };
  147. 715709BC20215E0000EFE5C5 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 715709B620215DFF00EFE5C5 /* LICENSE */; };
  148. 715709BD20215E0000EFE5C5 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = 715709B820215DFF00EFE5C5 /* AESCrypt.m */; };
  149. 716027D1204D334A003CA085 /* DetailShareItemProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 716027D0204D334A003CA085 /* DetailShareItemProvider.m */; };
  150. 716027D4204D3D15003CA085 /* LPShareActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 716027D2204D3D15003CA085 /* LPShareActivity.m */; };
  151. 7162546B201C3AF1009E3A41 /* readme.txt in Resources */ = {isa = PBXBuildFile; fileRef = 7162546A201C3AF1009E3A41 /* readme.txt */; };
  152. 7162546D201C412E009E3A41 /* ShippingStatusCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7162546C201C412E009E3A41 /* ShippingStatusCell.xib */; };
  153. 71625470201C5205009E3A41 /* fake_container_list.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162546F201C5205009E3A41 /* fake_container_list.json */; };
  154. 716FF7921904ED2600ED6C3D /* NewsData.m in Sources */ = {isa = PBXBuildFile; fileRef = 716FF7911904ED2600ED6C3D /* NewsData.m */; };
  155. 716FF7951904FBC600ED6C3D /* NewsTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 716FF7941904FBC600ED6C3D /* NewsTableViewCell.m */; };
  156. 717D76EB18C7F8120070302D /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 717D76EA18C7F8120070302D /* Reachability.m */; };
  157. 717D772F18C84E3F0070302D /* PageData.m in Sources */ = {isa = PBXBuildFile; fileRef = 717D772E18C84E3F0070302D /* PageData.m */; };
  158. 71807B982021965B00E1F1DD /* fake_tracking.json in Resources */ = {isa = PBXBuildFile; fileRef = 71807B972021965B00E1F1DD /* fake_tracking.json */; };
  159. 71807B9C2021979A00E1F1DD /* DetailCellTracking.m in Sources */ = {isa = PBXBuildFile; fileRef = 71807B9B2021979A00E1F1DD /* DetailCellTracking.m */; };
  160. 71807B9E2021ACE500E1F1DD /* fake_search.json in Resources */ = {isa = PBXBuildFile; fileRef = 71807B9D2021ACE500E1F1DD /* fake_search.json */; };
  161. 718BE8B0190F9D970046EA6A /* MyAutocompleteView.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8A7190F9D970046EA6A /* MyAutocompleteView.m */; };
  162. 718BE8B2190F9D970046EA6A /* MyAutocompleteItemsSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8AB190F9D970046EA6A /* MyAutocompleteItemsSource.m */; };
  163. 718BE8B3190F9D970046EA6A /* MyAutocompletionCellFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8AD190F9D970046EA6A /* MyAutocompletionCellFactory.m */; };
  164. 718BE8B4190F9D970046EA6A /* MySuggestion.m in Sources */ = {isa = PBXBuildFile; fileRef = 718BE8AF190F9D970046EA6A /* MySuggestion.m */; };
  165. 71951E6F18C6A9A5005024BD /* TouchLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71951E6E18C6A9A5005024BD /* TouchLabel.m */; };
  166. 719A51A518C5A4AF0080C075 /* SimpleGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 719A51A418C5A4AF0080C075 /* SimpleGrid.m */; };
  167. 719A51A918C5A5D30080C075 /* SimpleGridDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 719A51A818C5A5D30080C075 /* SimpleGridDataSource.m */; };
  168. 719A51BA18C5AB7B0080C075 /* SimpleGridComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 719A51B918C5AB7B0080C075 /* SimpleGridComponent.m */; };
  169. 719BEC1718FFAB7B00DFE987 /* ToolsPanelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 719BEC1618FFAB7B00DFE987 /* ToolsPanelViewController.m */; };
  170. 719E7E3318C0368A003408FF /* ApexMobileDB.m in Sources */ = {isa = PBXBuildFile; fileRef = 719E7E3218C0368A003408FF /* ApexMobileDB.m */; };
  171. 719E7E3518C0395E003408FF /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 719E7E3418C0395E003408FF /* libsqlite3.dylib */; };
  172. 719EF8E118BB839F00EFFF5F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 719EF8E018BB839F00EFFF5F /* Foundation.framework */; };
  173. 719EF8E318BB839F00EFFF5F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 719EF8E218BB839F00EFFF5F /* CoreGraphics.framework */; };
  174. 719EF8E518BB839F00EFFF5F /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 719EF8E418BB839F00EFFF5F /* UIKit.framework */; };
  175. 719EF8EB18BB839F00EFFF5F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 719EF8E918BB839F00EFFF5F /* InfoPlist.strings */; };
  176. 719EF8ED18BB839F00EFFF5F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8EC18BB839F00EFFF5F /* main.m */; };
  177. 719EF8F118BB839F00EFFF5F /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8F018BB839F00EFFF5F /* AppDelegate.m */; };
  178. 719EF8FA18BB839F00EFFF5F /* ApexMobileFirstViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8F918BB839F00EFFF5F /* ApexMobileFirstViewController.m */; };
  179. 719EF8FD18BB839F00EFFF5F /* ApexMobileSecondViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 719EF8FC18BB839F00EFFF5F /* ApexMobileSecondViewController.m */; };
  180. 71A003FC18D680560057CDFD /* RetrievePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A003FB18D680560057CDFD /* RetrievePasswordViewController.m */; };
  181. 71A003FF18D6BFB40057CDFD /* ChangePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A003FE18D6BFB40057CDFD /* ChangePasswordViewController.m */; };
  182. 71A01D7918C9AE77003307A9 /* DetailCellKV.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D7818C9AE77003307A9 /* DetailCellKV.m */; };
  183. 71A01D7C18C9AE97003307A9 /* DetailCellList.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D7B18C9AE97003307A9 /* DetailCellList.m */; };
  184. 71A01D7F18C9AEC8003307A9 /* DetailCellWeb.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D7E18C9AEC8003307A9 /* DetailCellWeb.m */; };
  185. 71A01D8218C9BA67003307A9 /* DetailContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D8118C9BA67003307A9 /* DetailContent.m */; };
  186. 71A01D8518C9BDC8003307A9 /* DetailTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A01D8418C9BDC8003307A9 /* DetailTabBarController.m */; };
  187. 71A2D76218DC3895001C380A /* LineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A2D76118DC3895001C380A /* LineView.m */; };
  188. 71A565D918C20F5900CDAC07 /* SearchTableAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A565D818C20F5900CDAC07 /* SearchTableAdapter.m */; };
  189. 71A565DF18C212EA00CDAC07 /* Constant.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A565DE18C212EA00CDAC07 /* Constant.m */; };
  190. 71AE427318C47AF900B8EC3D /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AE427218C47AF900B8EC3D /* SearchViewController.m */; };
  191. 71B7998D2021AE7400F8685E /* MDHTMLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B7998C2021AE7400F8685E /* MDHTMLLabel.m */; };
  192. 71B7999B2021B22D00F8685E /* AMResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B7999A2021B22D00F8685E /* AMResultViewController.m */; };
  193. 71BA502E1908ED5700D0BD31 /* CellItemHistory.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA502D1908ED5700D0BD31 /* CellItemHistory.m */; };
  194. 71BA50311908ED9100D0BD31 /* HistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA50301908ED9100D0BD31 /* HistoryViewController.m */; };
  195. 71BA50341908EDCF00D0BD31 /* HistoryTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA50331908EDCF00D0BD31 /* HistoryTabBarController.m */; };
  196. 71BA50371908F21500D0BD31 /* HistoryData.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BA50361908F21500D0BD31 /* HistoryData.m */; };
  197. 71CEE38A18CB749E00052C63 /* DetailPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CEE38918CB749E00052C63 /* DetailPageViewController.m */; };
  198. 71CEE3D718CC559B00052C63 /* ApexMobileNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CEE3D618CC559B00052C63 /* ApexMobileNavigationController.m */; };
  199. 71DA6047190A00F600683003 /* FavoritesData.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DA6046190A00F600683003 /* FavoritesData.m */; };
  200. 71DA604A190A02CE00683003 /* FavoritesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DA6049190A02CE00683003 /* FavoritesViewController.m */; };
  201. 71DA74A618BDDD31003B46A6 /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DA74A518BDDD30003B46A6 /* AboutViewController.m */; };
  202. 71DA74A818BDDFB5003B46A6 /* about.htm in Resources */ = {isa = PBXBuildFile; fileRef = 71DA74A718BDDFB5003B46A6 /* about.htm */; };
  203. 71E0D1D72022AB7E009A08EB /* FullyShowViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E0D1D22022AB7E009A08EB /* FullyShowViewController.m */; };
  204. 71E0D1D82022AB7E009A08EB /* ResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E0D1D32022AB7E009A08EB /* ResultViewController.m */; };
  205. 71E0D1D92022AB7E009A08EB /* Result.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71E0D1D52022AB7E009A08EB /* Result.storyboard */; };
  206. 71F67CF619063612004E8462 /* ApexHistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F67CF519063612004E8462 /* ApexHistoryViewController.m */; };
  207. 71F67CF919065EA8004E8462 /* SimpleMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F67CF819065EA8004E8462 /* SimpleMenu.m */; };
  208. 71F67CFC19066375004E8462 /* PulldownMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F67CFB19066375004E8462 /* PulldownMenu.m */; };
  209. 71FCDE0720492B5E00B0746B /* MyQLPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FCDE0620492B5E00B0746B /* MyQLPreviewController.m */; };
  210. /* End PBXBuildFile section */
  211. /* Begin PBXFileReference section */
  212. 3C0F4E9223BAE74F000A2FE7 /* CachedTileOverlay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CachedTileOverlay.h; path = ../../common/ApexMap/CachedTileOverlay.h; sourceTree = "<group>"; };
  213. 3C0F4E9323BAE74F000A2FE7 /* CachedTileOverlay.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = CachedTileOverlay.m; path = ../../common/ApexMap/CachedTileOverlay.m; sourceTree = "<group>"; };
  214. 3C0F4E9523BAF594000A2FE7 /* FileCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FileCache.h; path = ../../common/FileCache.h; sourceTree = "<group>"; };
  215. 3C0F4E9623BAF594000A2FE7 /* FileCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FileCache.m; path = ../../common/FileCache.m; sourceTree = "<group>"; };
  216. 3C1DEC3B239F6C42006F7E2A /* MKMapView+ZoomLevel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "MKMapView+ZoomLevel.m"; path = "../../common/ApexMap/MKMapView+ZoomLevel.m"; sourceTree = "<group>"; };
  217. 3C1DEC3C239F6C42006F7E2A /* MKMapView+ZoomLevel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "MKMapView+ZoomLevel.h"; path = "../../common/ApexMap/MKMapView+ZoomLevel.h"; sourceTree = "<group>"; };
  218. 3C2D99A0239B92F1007B759E /* ApexMapView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ApexMapView.m; path = ../../common/ApexMap/ApexMapView.m; sourceTree = "<group>"; };
  219. 3C2D99A1239B92F1007B759E /* ApexMapView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ApexMapView.h; path = ../../common/ApexMap/ApexMapView.h; sourceTree = "<group>"; };
  220. 3C2D99A3239B93C8007B759E /* AMViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMViewController.h; sourceTree = "<group>"; };
  221. 3C2D99A4239B93C8007B759E /* AMViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMViewController.m; sourceTree = "<group>"; };
  222. 3C57169A23D186A30002E9FC /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebViewController.m; path = "../../common/WK PDF+Web/WebViewController.m"; sourceTree = "<group>"; };
  223. 3C57169B23D186A30002E9FC /* wkweb.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = wkweb.storyboard; path = "../../common/WK PDF+Web/wkweb.storyboard"; sourceTree = "<group>"; };
  224. 3C57169C23D186A30002E9FC /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebViewController.h; path = "../../common/WK PDF+Web/WebViewController.h"; sourceTree = "<group>"; };
  225. 3CA1A2DD23A212E700639FCC /* Launch Screen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = "<group>"; };
  226. 420DEF2320A1898500720524 /* AMCommHeadCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMCommHeadCell.h; sourceTree = "<group>"; };
  227. 420DEF2420A1898500720524 /* AMCommHeadCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMCommHeadCell.m; sourceTree = "<group>"; };
  228. 420DEF2520A1898500720524 /* AMCommHeadCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMCommHeadCell.xib; sourceTree = "<group>"; };
  229. 420DEF2820A1899600720524 /* AMCommContentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMCommContentCell.h; sourceTree = "<group>"; };
  230. 420DEF2920A1899600720524 /* AMCommContentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMCommContentCell.m; sourceTree = "<group>"; };
  231. 420DEF2A20A1899600720524 /* AMCommContentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMCommContentCell.xib; sourceTree = "<group>"; };
  232. 420DEF2D20A189AA00720524 /* AMCommEditCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMCommEditCell.h; sourceTree = "<group>"; };
  233. 420DEF2E20A189AA00720524 /* AMCommEditCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMCommEditCell.m; sourceTree = "<group>"; };
  234. 420DEF2F20A189AA00720524 /* AMCommEditCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = AMCommEditCell.xib; sourceTree = "<group>"; };
  235. 420F0CA220901C2E005C4690 /* KPIRepeatTapGestureRecognizer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPIRepeatTapGestureRecognizer.h; sourceTree = "<group>"; };
  236. 420F0CA320901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPIRepeatTapGestureRecognizer.m; sourceTree = "<group>"; };
  237. 42253C92209C007700879B09 /* AMMapView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMMapView.h; sourceTree = "<group>"; };
  238. 42253C93209C007700879B09 /* AMMapView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMMapView.m; sourceTree = "<group>"; };
  239. 42253C96209C3C0F00879B09 /* AMShipMap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMShipMap.h; sourceTree = "<group>"; };
  240. 42253C97209C3C0F00879B09 /* AMShipMap.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMShipMap.m; sourceTree = "<group>"; };
  241. 4225E42221E08502009D2364 /* ApexResultViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultViewController.h; sourceTree = "<group>"; };
  242. 4225E42321E08502009D2364 /* ApexResultViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultViewController.m; sourceTree = "<group>"; };
  243. 4225E42521E08576009D2364 /* ApexResult.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ApexResult.storyboard; sourceTree = "<group>"; };
  244. 4225E42B21E08895009D2364 /* ApexResultViewController+TableDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApexResultViewController+TableDelegate.h"; sourceTree = "<group>"; };
  245. 4225E42C21E08895009D2364 /* ApexResultViewController+TableDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "ApexResultViewController+TableDelegate.m"; sourceTree = "<group>"; };
  246. 4225E42E21E088AA009D2364 /* ApexResultViewController+TableDataSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApexResultViewController+TableDataSource.h"; sourceTree = "<group>"; };
  247. 4225E42F21E088AA009D2364 /* ApexResultViewController+TableDataSource.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "ApexResultViewController+TableDataSource.m"; sourceTree = "<group>"; };
  248. 4225E43121E08A54009D2364 /* ApexResultContainerCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultContainerCell.h; sourceTree = "<group>"; };
  249. 4225E43221E08A54009D2364 /* ApexResultContainerCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultContainerCell.m; sourceTree = "<group>"; };
  250. 4225E43621E08A8C009D2364 /* ApexResultDocumentCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultDocumentCell.h; sourceTree = "<group>"; };
  251. 4225E43721E08A8C009D2364 /* ApexResultDocumentCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultDocumentCell.m; sourceTree = "<group>"; };
  252. 4225E43821E08A8C009D2364 /* ApexResultDocumentCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ApexResultDocumentCell.xib; sourceTree = "<group>"; };
  253. 4225E43B21E08ACE009D2364 /* ApexResultContainerModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultContainerModel.h; sourceTree = "<group>"; };
  254. 4225E43C21E08ACE009D2364 /* ApexResultContainerModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultContainerModel.m; sourceTree = "<group>"; };
  255. 4225E43E21E08AEF009D2364 /* ApexResultDocumentModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultDocumentModel.h; sourceTree = "<group>"; };
  256. 4225E43F21E08AEF009D2364 /* ApexResultDocumentModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultDocumentModel.m; sourceTree = "<group>"; };
  257. 4225E44121E08B47009D2364 /* ApexResultBaseModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBaseModel.h; sourceTree = "<group>"; };
  258. 4225E44221E08B47009D2364 /* ApexResultBaseModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBaseModel.m; sourceTree = "<group>"; };
  259. 4225E44421E0989D009D2364 /* ApexResultProtocol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultProtocol.h; sourceTree = "<group>"; };
  260. 4225E44621E099CB009D2364 /* ApexResultPresenter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultPresenter.h; sourceTree = "<group>"; };
  261. 4225E44721E099CB009D2364 /* ApexResultPresenter.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultPresenter.m; sourceTree = "<group>"; };
  262. 4225E44A21E0A39A009D2364 /* RAProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAProgressHUD.h; sourceTree = "<group>"; };
  263. 4225E44B21E0A39A009D2364 /* RAProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAProgressHUD.m; sourceTree = "<group>"; };
  264. 4225E44D21E0A39A009D2364 /* UIView+RAConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+RAConstraint.m"; sourceTree = "<group>"; };
  265. 4225E44E21E0A39A009D2364 /* UIView+RAConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+RAConstraint.h"; sourceTree = "<group>"; };
  266. 4235C30220229F7200A99D04 /* Result.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Result.xib; path = ../../common/customUI/Result.xib; sourceTree = "<group>"; };
  267. 4235C3042022A60A00A99D04 /* ResultCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = ResultCell.xib; path = ../../common/customUI/ResultCell.xib; sourceTree = "<group>"; };
  268. 4253900B2079B7C700ECF982 /* KPIPieChartCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPIPieChartCell.h; sourceTree = "<group>"; };
  269. 4253900C2079B7C700ECF982 /* KPIPieChartCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPIPieChartCell.m; sourceTree = "<group>"; };
  270. 4253900D2079B7C700ECF982 /* KPIPieChartCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPIPieChartCell.xib; sourceTree = "<group>"; };
  271. 425390172079B99A00ECF982 /* XYCommon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYCommon.m; sourceTree = "<group>"; };
  272. 425390182079B99A00ECF982 /* XYRotatedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRotatedView.h; sourceTree = "<group>"; };
  273. 425390192079B99B00ECF982 /* PieChart.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = PieChart.xcassets; sourceTree = "<group>"; };
  274. 4253901A2079B99B00ECF982 /* XYPieChartView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYPieChartView.h; sourceTree = "<group>"; };
  275. 4253901B2079B99B00ECF982 /* XYRotatedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRotatedView.m; sourceTree = "<group>"; };
  276. 4253901C2079B99B00ECF982 /* XYPieChartView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYPieChartView.m; sourceTree = "<group>"; };
  277. 4253901D2079B99B00ECF982 /* XYRenderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYRenderView.h; sourceTree = "<group>"; };
  278. 4253901E2079B99B00ECF982 /* XYRenderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYRenderView.m; sourceTree = "<group>"; };
  279. 4253901F2079B99B00ECF982 /* XYCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYCommon.h; sourceTree = "<group>"; };
  280. 425390252079B9B400ECF982 /* KPI.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = KPI.json; sourceTree = "<group>"; };
  281. 42539027207A159300ECF982 /* KPIButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPIButton.h; sourceTree = "<group>"; };
  282. 42539028207A159300ECF982 /* KPIButton.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPIButton.m; sourceTree = "<group>"; };
  283. 42541ACE207C49610072BC5A /* fake_home.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = fake_home.json; sourceTree = "<group>"; };
  284. 425CF08B201EB2B500750E32 /* JLRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLRefreshFooter.h; sourceTree = "<group>"; };
  285. 425CF08C201EB2B500750E32 /* JLRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLRefreshFooter.m; sourceTree = "<group>"; };
  286. 425CF08E201EB2B500750E32 /* JLRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLRefreshHeader.h; sourceTree = "<group>"; };
  287. 425CF08F201EB2B500750E32 /* JLRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLRefreshHeader.m; sourceTree = "<group>"; };
  288. 425CF090201EB2B500750E32 /* JLRefreshBasis.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLRefreshBasis.h; sourceTree = "<group>"; };
  289. 425CF091201EB2B500750E32 /* JLRefreshBasis.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLRefreshBasis.m; sourceTree = "<group>"; };
  290. 425CF092201EB2B500750E32 /* UIScrollView+JLRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+JLRefresh.h"; sourceTree = "<group>"; };
  291. 425CF093201EB2B500750E32 /* UIScrollView+JLRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+JLRefresh.m"; sourceTree = "<group>"; };
  292. 425CF094201EB2B500750E32 /* UIView+JLExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+JLExtension.h"; sourceTree = "<group>"; };
  293. 425CF095201EB2B500750E32 /* UIView+JLExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+JLExtension.m"; sourceTree = "<group>"; };
  294. 42604120201C4B41002374A8 /* ShipingStatusCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShipingStatusCell.h; sourceTree = "<group>"; };
  295. 42604121201C4B41002374A8 /* ShipingStatusCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShipingStatusCell.m; sourceTree = "<group>"; };
  296. 42604125201C578B002374A8 /* ShipSearchController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShipSearchController.h; sourceTree = "<group>"; };
  297. 42604126201C578B002374A8 /* ShipSearchController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShipSearchController.m; sourceTree = "<group>"; };
  298. 42604128201C57A7002374A8 /* ShipSearch.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = ShipSearch.storyboard; sourceTree = "<group>"; };
  299. 426E8AB5202163EC0073BA5D /* JLCustomerAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLCustomerAlertController.h; sourceTree = "<group>"; };
  300. 426E8AB6202163EC0073BA5D /* JLCustomerAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLCustomerAlertController.m; sourceTree = "<group>"; };
  301. 426E8AB7202163EC0073BA5D /* JLPresentationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JLPresentationController.h; sourceTree = "<group>"; };
  302. 426E8AB8202163EC0073BA5D /* JLPresentationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JLPresentationController.m; sourceTree = "<group>"; };
  303. 426E8ABB2021AEC50073BA5D /* JLCustomerNavigationAlertController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = JLCustomerNavigationAlertController.h; sourceTree = "<group>"; };
  304. 426E8ABC2021AEC50073BA5D /* JLCustomerNavigationAlertController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JLCustomerNavigationAlertController.m; sourceTree = "<group>"; };
  305. 426F397E2033CEE80025C568 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  306. 426F39802033D0930025C568 /* ResultCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ResultCell.h; path = ../../common/customUI/ResultCell.h; sourceTree = "<group>"; };
  307. 426F39812033D0930025C568 /* ResultCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ResultCell.m; path = ../../common/customUI/ResultCell.m; sourceTree = "<group>"; };
  308. 427994B120300E7300746EDC /* Apex Mobile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = "Apex Mobile.entitlements"; path = "Apex Mobile/Apex Mobile.entitlements"; sourceTree = "<group>"; };
  309. 427CF5CF2023F5560041472A /* NewImages.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = NewImages.xcassets; sourceTree = "<group>"; };
  310. 427CF5DF202452450041472A /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  311. 42BB7400208431DA00B9B6E4 /* KPILegendCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPILegendCell.h; sourceTree = "<group>"; };
  312. 42BB7401208431DA00B9B6E4 /* KPILegendCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPILegendCell.m; sourceTree = "<group>"; };
  313. 42BB740320846B4500B9B6E4 /* KPITableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPITableCell.h; sourceTree = "<group>"; };
  314. 42BB740420846B4500B9B6E4 /* KPITableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPITableCell.m; sourceTree = "<group>"; };
  315. 42BB740520846B4500B9B6E4 /* KPITableCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPITableCell.xib; sourceTree = "<group>"; };
  316. 42BB74082084732D00B9B6E4 /* KPICell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPICell.xib; sourceTree = "<group>"; };
  317. 42BB740A2084737800B9B6E4 /* KPILegendCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KPILegendCell.xib; sourceTree = "<group>"; };
  318. 42BCACC8209AE243009DDA43 /* AMAnnotationView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMAnnotationView.h; sourceTree = "<group>"; };
  319. 42BCACC9209AE243009DDA43 /* AMAnnotationView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMAnnotationView.m; sourceTree = "<group>"; };
  320. 42BCACCB209AE342009DDA43 /* AMMapAnnotaion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMMapAnnotaion.h; sourceTree = "<group>"; };
  321. 42BCACCC209AE342009DDA43 /* AMMapAnnotaion.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMMapAnnotaion.m; sourceTree = "<group>"; };
  322. 42BFD2D0207B697800DA9038 /* KPICell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KPICell.h; sourceTree = "<group>"; };
  323. 42BFD2D1207B697800DA9038 /* KPICell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KPICell.m; sourceTree = "<group>"; };
  324. 42C6754C21E2F1D4001E3FF4 /* ApexResultAdditionView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultAdditionView.h; sourceTree = "<group>"; };
  325. 42C6754D21E2F1D4001E3FF4 /* ApexResultAdditionView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultAdditionView.m; sourceTree = "<group>"; };
  326. 42C6755021E32654001E3FF4 /* ApexResultViewController+QuickLook.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApexResultViewController+QuickLook.h"; sourceTree = "<group>"; };
  327. 42C6755121E32654001E3FF4 /* ApexResultViewController+QuickLook.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "ApexResultViewController+QuickLook.m"; sourceTree = "<group>"; };
  328. 42DE626020A41907005FB582 /* AMTextField.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMTextField.h; sourceTree = "<group>"; };
  329. 42DE626120A41907005FB582 /* AMTextField.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMTextField.m; sourceTree = "<group>"; };
  330. 42E8212E21F6ED1800127705 /* ApexResultAdditionView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApexResultAdditionView.xib; sourceTree = "<group>"; };
  331. 42FB6EB821F2B9FE00F694AB /* ApexResultContainerCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApexResultContainerCell.xib; sourceTree = "<group>"; };
  332. 42FB6EBA21F2BAB800F694AB /* ApexResultBLInfoCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBLInfoCell.h; sourceTree = "<group>"; };
  333. 42FB6EBB21F2BAB800F694AB /* ApexResultBLInfoCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBLInfoCell.m; sourceTree = "<group>"; };
  334. 42FB6EBC21F2BAB800F694AB /* ApexResultBLInfoCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ApexResultBLInfoCell.xib; sourceTree = "<group>"; };
  335. 42FB6EBF21F2BB6400F694AB /* ApexResultBookingCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBookingCell.h; sourceTree = "<group>"; };
  336. 42FB6EC021F2BB6400F694AB /* ApexResultBookingCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBookingCell.m; sourceTree = "<group>"; };
  337. 42FB6EC121F2BB6400F694AB /* ApexResultBookingCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ApexResultBookingCell.xib; sourceTree = "<group>"; };
  338. 42FB6EC421F2BC5300F694AB /* ApexResultBookingModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBookingModel.h; sourceTree = "<group>"; };
  339. 42FB6EC521F2BC5300F694AB /* ApexResultBookingModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBookingModel.m; sourceTree = "<group>"; };
  340. 42FB6EC721F2BC8600F694AB /* ApexResultAddition.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultAddition.h; sourceTree = "<group>"; };
  341. 42FB6EC821F2BC8600F694AB /* ApexResultAddition.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultAddition.m; sourceTree = "<group>"; };
  342. 42FB6ECA21F2C0E300F694AB /* ApexResultBLInfoModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultBLInfoModel.h; sourceTree = "<group>"; };
  343. 42FB6ECB21F2C0E300F694AB /* ApexResultBLInfoModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultBLInfoModel.m; sourceTree = "<group>"; };
  344. 42FB6ECD21F3136300F694AB /* ApexResultMenuItem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexResultMenuItem.h; sourceTree = "<group>"; };
  345. 42FB6ECE21F3136300F694AB /* ApexResultMenuItem.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexResultMenuItem.m; sourceTree = "<group>"; };
  346. 7101BEC62031389A00CC6E3A /* DetailCellKVNew.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailCellKVNew.h; sourceTree = "<group>"; };
  347. 7101BEC72031389A00CC6E3A /* DetailCellKVNew.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailCellKVNew.m; sourceTree = "<group>"; };
  348. 7103C84922549E7E00261926 /* CLLocation+Sino.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "CLLocation+Sino.m"; path = "../../common/MapNavigation/CLLocation+Sino.m"; sourceTree = "<group>"; };
  349. 7103C84A22549E7E00261926 /* CLLocation+Sino.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "CLLocation+Sino.h"; path = "../../common/MapNavigation/CLLocation+Sino.h"; sourceTree = "<group>"; };
  350. 711BA6BF191E0525002EDE6F /* MessageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageViewController.h; sourceTree = "<group>"; };
  351. 711BA6C0191E0525002EDE6F /* MessageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageViewController.m; sourceTree = "<group>"; };
  352. 711BA6C2191E0553002EDE6F /* MessageItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageItem.h; sourceTree = "<group>"; };
  353. 711BA6C3191E0553002EDE6F /* MessageItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageItem.m; sourceTree = "<group>"; };
  354. 711DC6B018C30A4800FB1749 /* TableCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellEdit.h; sourceTree = "<group>"; };
  355. 711DC6B118C30A4800FB1749 /* TableCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellEdit.m; sourceTree = "<group>"; };
  356. 7120DCEA18BE25CE00E7546F /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  357. 7120DCEC18BE25DA00E7546F /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  358. 7120DCEE18BE25E500E7546F /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
  359. 7120DCF018BE25F500E7546F /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  360. 7120DCF218BE260700E7546F /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
  361. 7120DCF418BE261500E7546F /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
  362. 7120DCF618BE262300E7546F /* libc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libc++.dylib"; path = "usr/lib/libc++.dylib"; sourceTree = SDKROOT; };
  363. 7120DCF818BE262E00E7546F /* libicucore.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.dylib; path = usr/lib/libicucore.dylib; sourceTree = SDKROOT; };
  364. 7120DCFA18BE263800E7546F /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
  365. 7120DCFC18BE264300E7546F /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  366. 7120DCFE18BE265100E7546F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  367. 7120DD0018BE266000E7546F /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  368. 7120DD0218BE273900E7546F /* LocationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocationViewController.h; sourceTree = "<group>"; };
  369. 7120DD0318BE273900E7546F /* LocationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocationViewController.m; sourceTree = "<group>"; };
  370. 712A301118CFEF550022E6E6 /* CustomizeFieldViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomizeFieldViewController.h; sourceTree = "<group>"; };
  371. 712A301218CFEF550022E6E6 /* CustomizeFieldViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomizeFieldViewController.m; sourceTree = "<group>"; };
  372. 712CBA0118CF38DB00C61394 /* RTLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTLabel.h; sourceTree = "<group>"; };
  373. 712CBA0218CF38DB00C61394 /* RTLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTLabel.m; sourceTree = "<group>"; };
  374. 71308AF5191E7B0E0024B2B0 /* MessageDetailItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageDetailItem.h; sourceTree = "<group>"; };
  375. 71308AF6191E7B0E0024B2B0 /* MessageDetailItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageDetailItem.m; sourceTree = "<group>"; };
  376. 71308AF8191E7B2A0024B2B0 /* MessageDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageDetailViewController.h; sourceTree = "<group>"; };
  377. 71308AF9191E7B2A0024B2B0 /* MessageDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageDetailViewController.m; sourceTree = "<group>"; };
  378. 7130B3F21900FB61000610D8 /* NewsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsViewController.h; sourceTree = "<group>"; };
  379. 7130B3F31900FB61000610D8 /* NewsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsViewController.m; sourceTree = "<group>"; };
  380. 71330C1E18BCC4DA0048956C /* FunctionSelectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FunctionSelectViewController.h; sourceTree = "<group>"; };
  381. 71330C1F18BCC4DA0048956C /* FunctionSelectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FunctionSelectViewController.m; sourceTree = "<group>"; };
  382. 71375C8D18D96EDE00EBA026 /* TabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TabBarController.h; sourceTree = "<group>"; };
  383. 71375C8E18D96EDE00EBA026 /* TabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TabBarController.m; sourceTree = "<group>"; };
  384. 713AA79F191736E600B44092 /* DocumentsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DocumentsViewController.h; sourceTree = "<group>"; };
  385. 713AA7A0191736E600B44092 /* DocumentsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DocumentsViewController.m; sourceTree = "<group>"; };
  386. 713AA7A21917373600B44092 /* LocalDocumentsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalDocumentsViewController.h; sourceTree = "<group>"; };
  387. 713AA7A31917373600B44092 /* LocalDocumentsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalDocumentsViewController.m; sourceTree = "<group>"; };
  388. 71406DCC18C36A52000914C4 /* TableCellBool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellBool.h; sourceTree = "<group>"; };
  389. 71406DCD18C36A52000914C4 /* TableCellBool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellBool.m; sourceTree = "<group>"; };
  390. 71406DCF18C36A6E000914C4 /* TableCellDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableCellDate.h; sourceTree = "<group>"; };
  391. 71406DD018C36A6E000914C4 /* TableCellDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableCellDate.m; sourceTree = "<group>"; };
  392. 714C39B61922FEE1004F045B /* NewsDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsDetailViewController.h; sourceTree = "<group>"; };
  393. 714C39B71922FEE1004F045B /* NewsDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsDetailViewController.m; sourceTree = "<group>"; };
  394. 714C39C019234065004F045B /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/Localizable.strings; sourceTree = "<group>"; };
  395. 71514ED1191B7E2500009C00 /* AddressBookUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBookUI.framework; path = System/Library/Frameworks/AddressBookUI.framework; sourceTree = SDKROOT; };
  396. 715643B620198A1400B04267 /* Main.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
  397. 715643B920198A9900B04267 /* RootViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RootViewController.h; sourceTree = "<group>"; };
  398. 715643BA20198A9900B04267 /* RootViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RootViewController.m; sourceTree = "<group>"; };
  399. 715643BC2019AA9B00B04267 /* LoginViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  400. 715643BD2019AA9B00B04267 /* LoginViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  401. 715643BF2019B27500B04267 /* HomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
  402. 715643C02019B27500B04267 /* HomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
  403. 715643C22019B58400B04267 /* OrderHistoryViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OrderHistoryViewController.h; sourceTree = "<group>"; };
  404. 715643C32019B58400B04267 /* OrderHistoryViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OrderHistoryViewController.m; sourceTree = "<group>"; };
  405. 715643C52019BB6700B04267 /* StaticModelistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StaticModelistViewController.h; sourceTree = "<group>"; };
  406. 715643C62019BB6700B04267 /* StaticModelistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StaticModelistViewController.m; sourceTree = "<group>"; };
  407. 715643C82019BC4C00B04267 /* SearchlistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SearchlistViewController.h; sourceTree = "<group>"; };
  408. 715643C92019BC4C00B04267 /* SearchlistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SearchlistViewController.m; sourceTree = "<group>"; };
  409. 715643CB2019BC6C00B04267 /* ToolslistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ToolslistViewController.h; sourceTree = "<group>"; };
  410. 715643CC2019BC6C00B04267 /* ToolslistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ToolslistViewController.m; sourceTree = "<group>"; };
  411. 715643CE2019BCCE00B04267 /* MylistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MylistViewController.h; sourceTree = "<group>"; };
  412. 715643CF2019BCCE00B04267 /* MylistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MylistViewController.m; sourceTree = "<group>"; };
  413. 715643D1201ACB1700B04267 /* StaticModeTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StaticModeTableViewCell.h; sourceTree = "<group>"; };
  414. 715643D2201ACB1700B04267 /* StaticModeTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StaticModeTableViewCell.m; sourceTree = "<group>"; };
  415. 715643D4201AD2AB00B04267 /* StaticModelistViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = StaticModelistViewController.xib; sourceTree = "<group>"; };
  416. 715643D6201AD99300B04267 /* StaticModeTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = StaticModeTableViewCell.xib; sourceTree = "<group>"; };
  417. 715643D9201C079F00B04267 /* tools.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = tools.json; sourceTree = "<group>"; };
  418. 715643DB201C117300B04267 /* search.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = search.json; sourceTree = "<group>"; };
  419. 715643DD201C1AE600B04267 /* my.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = my.json; sourceTree = "<group>"; };
  420. 7157098C2021572600EFE5C5 /* NetworkUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NetworkUtils.m; path = ../../common/NetworkUtils.m; sourceTree = "<group>"; };
  421. 7157098D2021572600EFE5C5 /* NetworkUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NetworkUtils.h; path = ../../common/NetworkUtils.h; sourceTree = "<group>"; };
  422. 715709902021574D00EFE5C5 /* RAConvertor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAConvertor.h; path = ../../common/RAConvertor.h; sourceTree = "<group>"; };
  423. 715709912021574D00EFE5C5 /* RAConvertor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAConvertor.m; path = ../../common/RAConvertor.m; sourceTree = "<group>"; };
  424. 715709932021576A00EFE5C5 /* const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = const.h; sourceTree = "<group>"; };
  425. 71570994202157A600EFE5C5 /* RAUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAUtils.h; path = "../../RedAnt ERP Mobile/common/RAUtils.h"; sourceTree = "<group>"; };
  426. 71570995202157A600EFE5C5 /* RAUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAUtils.m; path = "../../RedAnt ERP Mobile/common/RAUtils.m"; sourceTree = "<group>"; };
  427. 71570997202157BC00EFE5C5 /* RANetworkTaskDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RANetworkTaskDelegate.m; path = ../../common/upload/RANetworkTaskDelegate.m; sourceTree = "<group>"; };
  428. 71570998202157BC00EFE5C5 /* RANetworkTaskDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RANetworkTaskDelegate.h; path = ../../common/upload/RANetworkTaskDelegate.h; sourceTree = "<group>"; };
  429. 7157099A2021591F00EFE5C5 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
  430. 7157099C20215B5000EFE5C5 /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zip.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/zip.c"; sourceTree = "<group>"; };
  431. 7157099D20215B5000EFE5C5 /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crypt.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/crypt.h"; sourceTree = "<group>"; };
  432. 7157099E20215B5000EFE5C5 /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/unzip.c"; sourceTree = "<group>"; };
  433. 7157099F20215B5000EFE5C5 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zip.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/zip.h"; sourceTree = "<group>"; };
  434. 715709A020215B5000EFE5C5 /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/ioapi.c"; sourceTree = "<group>"; };
  435. 715709A120215B5000EFE5C5 /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ioapi.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/ioapi.h"; sourceTree = "<group>"; };
  436. 715709A220215B5100EFE5C5 /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mztools.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/mztools.h"; sourceTree = "<group>"; };
  437. 715709A320215B5100EFE5C5 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = "../../RedAnt ERP Mobile/common/zip/minizip/unzip.h"; sourceTree = "<group>"; };
  438. 715709A420215B5100EFE5C5 /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = "../../RedAnt ERP Mobile/common/zip/minizip/mztools.c"; sourceTree = "<group>"; };
  439. 715709A920215B6200EFE5C5 /* ZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = "../../RedAnt ERP Mobile/common/zip/ZipArchive.h"; sourceTree = "<group>"; };
  440. 715709AA20215B6200EFE5C5 /* ZipArchive.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ZipArchive.mm; path = "../../RedAnt ERP Mobile/common/zip/ZipArchive.mm"; sourceTree = "<group>"; };
  441. 715709AC20215CB000EFE5C5 /* RANetwork.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RANetwork.h; sourceTree = "<group>"; };
  442. 715709AD20215CB000EFE5C5 /* RANetwork.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RANetwork.m; sourceTree = "<group>"; };
  443. 715709B020215DFF00EFE5C5 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+CommonCrypto.m"; path = "../../RedAnt ERP Mobile/common/AES/NSData+CommonCrypto.m"; sourceTree = "<group>"; };
  444. 715709B120215DFF00EFE5C5 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+Base64.h"; path = "../../RedAnt ERP Mobile/common/AES/NSString+Base64.h"; sourceTree = "<group>"; };
  445. 715709B220215DFF00EFE5C5 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+Base64.m"; path = "../../RedAnt ERP Mobile/common/AES/NSString+Base64.m"; sourceTree = "<group>"; };
  446. 715709B320215DFF00EFE5C5 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+Base64.m"; path = "../../RedAnt ERP Mobile/common/AES/NSData+Base64.m"; sourceTree = "<group>"; };
  447. 715709B420215DFF00EFE5C5 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = "../../RedAnt ERP Mobile/common/AES/AESCrypt.h"; sourceTree = "<group>"; };
  448. 715709B520215DFF00EFE5C5 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+Base64.h"; path = "../../RedAnt ERP Mobile/common/AES/NSData+Base64.h"; sourceTree = "<group>"; };
  449. 715709B620215DFF00EFE5C5 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = "../../RedAnt ERP Mobile/common/AES/LICENSE"; sourceTree = "<group>"; };
  450. 715709B720215DFF00EFE5C5 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+CommonCrypto.h"; path = "../../RedAnt ERP Mobile/common/AES/NSData+CommonCrypto.h"; sourceTree = "<group>"; };
  451. 715709B820215DFF00EFE5C5 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AESCrypt.m; path = "../../RedAnt ERP Mobile/common/AES/AESCrypt.m"; sourceTree = "<group>"; };
  452. 716027CF204D334A003CA085 /* DetailShareItemProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailShareItemProvider.h; sourceTree = "<group>"; };
  453. 716027D0204D334A003CA085 /* DetailShareItemProvider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailShareItemProvider.m; sourceTree = "<group>"; };
  454. 716027D2204D3D15003CA085 /* LPShareActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LPShareActivity.m; sourceTree = "<group>"; };
  455. 716027D3204D3D15003CA085 /* LPShareActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LPShareActivity.h; sourceTree = "<group>"; };
  456. 7162546A201C3AF1009E3A41 /* readme.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = readme.txt; sourceTree = "<group>"; };
  457. 7162546C201C412E009E3A41 /* ShippingStatusCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShippingStatusCell.xib; sourceTree = "<group>"; };
  458. 7162546F201C5205009E3A41 /* fake_container_list.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = fake_container_list.json; sourceTree = "<group>"; };
  459. 716FF7901904ED2600ED6C3D /* NewsData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsData.h; sourceTree = "<group>"; };
  460. 716FF7911904ED2600ED6C3D /* NewsData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsData.m; sourceTree = "<group>"; };
  461. 716FF7931904FBC600ED6C3D /* NewsTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewsTableViewCell.h; sourceTree = "<group>"; };
  462. 716FF7941904FBC600ED6C3D /* NewsTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewsTableViewCell.m; sourceTree = "<group>"; };
  463. 717D76E918C7F8120070302D /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  464. 717D76EA18C7F8120070302D /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  465. 717D772D18C84E3F0070302D /* PageData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PageData.h; sourceTree = "<group>"; };
  466. 717D772E18C84E3F0070302D /* PageData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PageData.m; sourceTree = "<group>"; };
  467. 71807B972021965B00E1F1DD /* fake_tracking.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = fake_tracking.json; sourceTree = "<group>"; };
  468. 71807B9A2021979A00E1F1DD /* DetailCellTracking.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailCellTracking.h; sourceTree = "<group>"; };
  469. 71807B9B2021979A00E1F1DD /* DetailCellTracking.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailCellTracking.m; sourceTree = "<group>"; };
  470. 71807B9D2021ACE500E1F1DD /* fake_search.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = fake_search.json; sourceTree = "<group>"; };
  471. 718BE8A6190F9D970046EA6A /* MyAutocompleteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompleteView.h; sourceTree = "<group>"; };
  472. 718BE8A7190F9D970046EA6A /* MyAutocompleteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompleteView.m; sourceTree = "<group>"; };
  473. 718BE8AA190F9D970046EA6A /* MyAutocompleteItemsSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompleteItemsSource.h; sourceTree = "<group>"; };
  474. 718BE8AB190F9D970046EA6A /* MyAutocompleteItemsSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompleteItemsSource.m; sourceTree = "<group>"; };
  475. 718BE8AC190F9D970046EA6A /* MyAutocompletionCellFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyAutocompletionCellFactory.h; sourceTree = "<group>"; };
  476. 718BE8AD190F9D970046EA6A /* MyAutocompletionCellFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyAutocompletionCellFactory.m; sourceTree = "<group>"; };
  477. 718BE8AE190F9D970046EA6A /* MySuggestion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MySuggestion.h; sourceTree = "<group>"; };
  478. 718BE8AF190F9D970046EA6A /* MySuggestion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MySuggestion.m; sourceTree = "<group>"; };
  479. 71951E6D18C6A9A5005024BD /* TouchLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TouchLabel.h; sourceTree = "<group>"; };
  480. 71951E6E18C6A9A5005024BD /* TouchLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TouchLabel.m; sourceTree = "<group>"; };
  481. 719A51A318C5A4AF0080C075 /* SimpleGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimpleGrid.h; path = ../SimpleGrid.h; sourceTree = "<group>"; };
  482. 719A51A418C5A4AF0080C075 /* SimpleGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimpleGrid.m; path = ../SimpleGrid.m; sourceTree = "<group>"; };
  483. 719A51A718C5A5D30080C075 /* SimpleGridDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleGridDataSource.h; sourceTree = "<group>"; };
  484. 719A51A818C5A5D30080C075 /* SimpleGridDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleGridDataSource.m; sourceTree = "<group>"; };
  485. 719A51B818C5AB7B0080C075 /* SimpleGridComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleGridComponent.h; sourceTree = "<group>"; };
  486. 719A51B918C5AB7B0080C075 /* SimpleGridComponent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleGridComponent.m; sourceTree = "<group>"; };
  487. 719BEC1518FFAB7B00DFE987 /* ToolsPanelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ToolsPanelViewController.h; sourceTree = "<group>"; };
  488. 719BEC1618FFAB7B00DFE987 /* ToolsPanelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ToolsPanelViewController.m; sourceTree = "<group>"; };
  489. 719E7E3118C0368A003408FF /* ApexMobileDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexMobileDB.h; sourceTree = "<group>"; };
  490. 719E7E3218C0368A003408FF /* ApexMobileDB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexMobileDB.m; sourceTree = "<group>"; };
  491. 719E7E3418C0395E003408FF /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
  492. 719EF8DD18BB839F00EFFF5F /* Apex Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Apex Mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  493. 719EF8E018BB839F00EFFF5F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  494. 719EF8E218BB839F00EFFF5F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  495. 719EF8E418BB839F00EFFF5F /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  496. 719EF8E818BB839F00EFFF5F /* Apex Mobile-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Apex Mobile-Info.plist"; sourceTree = "<group>"; };
  497. 719EF8EA18BB839F00EFFF5F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  498. 719EF8EC18BB839F00EFFF5F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  499. 719EF8EE18BB839F00EFFF5F /* Apex Mobile-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Apex Mobile-Prefix.pch"; sourceTree = "<group>"; };
  500. 719EF8EF18BB839F00EFFF5F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  501. 719EF8F018BB839F00EFFF5F /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  502. 719EF8F818BB839F00EFFF5F /* ApexMobileFirstViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexMobileFirstViewController.h; sourceTree = "<group>"; };
  503. 719EF8F918BB839F00EFFF5F /* ApexMobileFirstViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexMobileFirstViewController.m; sourceTree = "<group>"; };
  504. 719EF8FB18BB839F00EFFF5F /* ApexMobileSecondViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApexMobileSecondViewController.h; sourceTree = "<group>"; };
  505. 719EF8FC18BB839F00EFFF5F /* ApexMobileSecondViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApexMobileSecondViewController.m; sourceTree = "<group>"; };
  506. 719EF90518BB839F00EFFF5F /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  507. 719EF90D18BB839F00EFFF5F /* Apex MobileTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Apex MobileTests-Info.plist"; sourceTree = "<group>"; };
  508. 719EF90F18BB839F00EFFF5F /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  509. 719EF91118BB839F00EFFF5F /* Apex_MobileTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Apex_MobileTests.m; sourceTree = "<group>"; };
  510. 71A003FA18D680560057CDFD /* RetrievePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RetrievePasswordViewController.h; sourceTree = "<group>"; };
  511. 71A003FB18D680560057CDFD /* RetrievePasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RetrievePasswordViewController.m; sourceTree = "<group>"; };
  512. 71A003FD18D6BFB40057CDFD /* ChangePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangePasswordViewController.h; sourceTree = "<group>"; };
  513. 71A003FE18D6BFB40057CDFD /* ChangePasswordViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangePasswordViewController.m; sourceTree = "<group>"; };
  514. 71A01D7718C9AE77003307A9 /* DetailCellKV.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellKV.h; sourceTree = "<group>"; };
  515. 71A01D7818C9AE77003307A9 /* DetailCellKV.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellKV.m; sourceTree = "<group>"; };
  516. 71A01D7A18C9AE97003307A9 /* DetailCellList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellList.h; sourceTree = "<group>"; };
  517. 71A01D7B18C9AE97003307A9 /* DetailCellList.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellList.m; sourceTree = "<group>"; };
  518. 71A01D7D18C9AEC8003307A9 /* DetailCellWeb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailCellWeb.h; sourceTree = "<group>"; };
  519. 71A01D7E18C9AEC8003307A9 /* DetailCellWeb.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailCellWeb.m; sourceTree = "<group>"; };
  520. 71A01D8018C9BA67003307A9 /* DetailContent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailContent.h; sourceTree = "<group>"; };
  521. 71A01D8118C9BA67003307A9 /* DetailContent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailContent.m; sourceTree = "<group>"; };
  522. 71A01D8318C9BDC8003307A9 /* DetailTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailTabBarController.h; sourceTree = "<group>"; };
  523. 71A01D8418C9BDC8003307A9 /* DetailTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailTabBarController.m; sourceTree = "<group>"; };
  524. 71A2D76018DC3895001C380A /* LineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LineView.h; sourceTree = "<group>"; };
  525. 71A2D76118DC3895001C380A /* LineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LineView.m; sourceTree = "<group>"; };
  526. 71A565D718C20F5900CDAC07 /* SearchTableAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchTableAdapter.h; sourceTree = "<group>"; };
  527. 71A565D818C20F5900CDAC07 /* SearchTableAdapter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchTableAdapter.m; sourceTree = "<group>"; };
  528. 71A565DD18C212EA00CDAC07 /* Constant.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Constant.h; sourceTree = "<group>"; };
  529. 71A565DE18C212EA00CDAC07 /* Constant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Constant.m; sourceTree = "<group>"; };
  530. 71AE427118C47AF900B8EC3D /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchViewController.h; sourceTree = "<group>"; };
  531. 71AE427218C47AF900B8EC3D /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchViewController.m; sourceTree = "<group>"; };
  532. 71B7998B2021AE7400F8685E /* MDHTMLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MDHTMLLabel.h; path = "../../RedAnt ERP Mobile/common/customUI/MDHTMLLabel.h"; sourceTree = "<group>"; };
  533. 71B7998C2021AE7400F8685E /* MDHTMLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MDHTMLLabel.m; path = "../../RedAnt ERP Mobile/common/customUI/MDHTMLLabel.m"; sourceTree = "<group>"; };
  534. 71B799992021B22D00F8685E /* AMResultViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AMResultViewController.h; sourceTree = "<group>"; };
  535. 71B7999A2021B22D00F8685E /* AMResultViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AMResultViewController.m; sourceTree = "<group>"; };
  536. 71BA502C1908ED5700D0BD31 /* CellItemHistory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CellItemHistory.h; sourceTree = "<group>"; };
  537. 71BA502D1908ED5700D0BD31 /* CellItemHistory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CellItemHistory.m; sourceTree = "<group>"; };
  538. 71BA502F1908ED9100D0BD31 /* HistoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HistoryViewController.h; sourceTree = "<group>"; };
  539. 71BA50301908ED9100D0BD31 /* HistoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HistoryViewController.m; sourceTree = "<group>"; };
  540. 71BA50321908EDCF00D0BD31 /* HistoryTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HistoryTabBarController.h; sourceTree = "<group>"; };
  541. 71BA50331908EDCF00D0BD31 /* HistoryTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HistoryTabBarController.m; sourceTree = "<group>"; };
  542. 71BA50351908F21500D0BD31 /* HistoryData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HistoryData.h; sourceTree = "<group>"; };
  543. 71BA50361908F21500D0BD31 /* HistoryData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HistoryData.m; sourceTree = "<group>"; };
  544. 71CEE38818CB749E00052C63 /* DetailPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailPageViewController.h; sourceTree = "<group>"; };
  545. 71CEE38918CB749E00052C63 /* DetailPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailPageViewController.m; sourceTree = "<group>"; };
  546. 71CEE3D518CC559B00052C63 /* ApexMobileNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexMobileNavigationController.h; sourceTree = "<group>"; };
  547. 71CEE3D618CC559B00052C63 /* ApexMobileNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexMobileNavigationController.m; sourceTree = "<group>"; };
  548. 71DA6045190A00F600683003 /* FavoritesData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FavoritesData.h; sourceTree = "<group>"; };
  549. 71DA6046190A00F600683003 /* FavoritesData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FavoritesData.m; sourceTree = "<group>"; };
  550. 71DA6048190A02CE00683003 /* FavoritesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FavoritesViewController.h; path = ../FavoritesViewController.h; sourceTree = "<group>"; };
  551. 71DA6049190A02CE00683003 /* FavoritesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FavoritesViewController.m; path = ../FavoritesViewController.m; sourceTree = "<group>"; };
  552. 71DA74A418BDDD30003B46A6 /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutViewController.h; path = ../AboutViewController.h; sourceTree = "<group>"; };
  553. 71DA74A518BDDD30003B46A6 /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutViewController.m; path = ../AboutViewController.m; sourceTree = "<group>"; };
  554. 71DA74A718BDDFB5003B46A6 /* about.htm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = about.htm; sourceTree = "<group>"; };
  555. 71E0D1D22022AB7E009A08EB /* FullyShowViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FullyShowViewController.m; path = ../../common/customUI/FullyShowViewController.m; sourceTree = "<group>"; };
  556. 71E0D1D32022AB7E009A08EB /* ResultViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ResultViewController.m; path = ../../common/customUI/ResultViewController.m; sourceTree = "<group>"; };
  557. 71E0D1D42022AB7E009A08EB /* ResultViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ResultViewController.h; path = ../../common/customUI/ResultViewController.h; sourceTree = "<group>"; };
  558. 71E0D1D52022AB7E009A08EB /* Result.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Result.storyboard; path = ../../common/customUI/Result.storyboard; sourceTree = "<group>"; };
  559. 71E0D1D62022AB7E009A08EB /* FullyShowViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FullyShowViewController.h; path = ../../common/customUI/FullyShowViewController.h; sourceTree = "<group>"; };
  560. 71F67CF419063612004E8462 /* ApexHistoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApexHistoryViewController.h; sourceTree = "<group>"; };
  561. 71F67CF519063612004E8462 /* ApexHistoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApexHistoryViewController.m; sourceTree = "<group>"; };
  562. 71F67CF719065EA8004E8462 /* SimpleMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SimpleMenu.h; sourceTree = "<group>"; };
  563. 71F67CF819065EA8004E8462 /* SimpleMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SimpleMenu.m; sourceTree = "<group>"; };
  564. 71F67CFA19066375004E8462 /* PulldownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PulldownMenu.h; sourceTree = "<group>"; };
  565. 71F67CFB19066375004E8462 /* PulldownMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PulldownMenu.m; sourceTree = "<group>"; };
  566. 71FCDE0520492B5E00B0746B /* MyQLPreviewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MyQLPreviewController.h; path = ../../common/customUI/MyQLPreviewController.h; sourceTree = "<group>"; };
  567. 71FCDE0620492B5E00B0746B /* MyQLPreviewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = MyQLPreviewController.m; path = ../../common/customUI/MyQLPreviewController.m; sourceTree = "<group>"; };
  568. /* End PBXFileReference section */
  569. /* Begin PBXFrameworksBuildPhase section */
  570. 719EF8DA18BB839F00EFFF5F /* Frameworks */ = {
  571. isa = PBXFrameworksBuildPhase;
  572. buildActionMask = 2147483647;
  573. files = (
  574. 426F397F2033CEE80025C568 /* AudioToolbox.framework in Frameworks */,
  575. 427CF5E0202452460041472A /* Accelerate.framework in Frameworks */,
  576. 71514ED2191B7E2500009C00 /* AddressBookUI.framework in Frameworks */,
  577. 719E7E3518C0395E003408FF /* libsqlite3.dylib in Frameworks */,
  578. 7120DD0118BE266000E7546F /* SystemConfiguration.framework in Frameworks */,
  579. 7120DCFF18BE265100E7546F /* QuartzCore.framework in Frameworks */,
  580. 7120DCFD18BE264300E7546F /* OpenGLES.framework in Frameworks */,
  581. 7120DCFB18BE263800E7546F /* libz.dylib in Frameworks */,
  582. 7120DCF918BE262E00E7546F /* libicucore.dylib in Frameworks */,
  583. 7120DCF718BE262300E7546F /* libc++.dylib in Frameworks */,
  584. 7120DCF518BE261500E7546F /* ImageIO.framework in Frameworks */,
  585. 7120DCF318BE260700E7546F /* GLKit.framework in Frameworks */,
  586. 7120DCF118BE25F500E7546F /* CoreText.framework in Frameworks */,
  587. 7120DCEF18BE25E500E7546F /* CoreLocation.framework in Frameworks */,
  588. 7120DCED18BE25DA00E7546F /* CoreData.framework in Frameworks */,
  589. 7120DCEB18BE25CE00E7546F /* AVFoundation.framework in Frameworks */,
  590. 719EF8E318BB839F00EFFF5F /* CoreGraphics.framework in Frameworks */,
  591. 719EF8E518BB839F00EFFF5F /* UIKit.framework in Frameworks */,
  592. 719EF8E118BB839F00EFFF5F /* Foundation.framework in Frameworks */,
  593. );
  594. runOnlyForDeploymentPostprocessing = 0;
  595. };
  596. /* End PBXFrameworksBuildPhase section */
  597. /* Begin PBXGroup section */
  598. 420DEF1C20A1889F00720524 /* Communication */ = {
  599. isa = PBXGroup;
  600. children = (
  601. 420DEF2320A1898500720524 /* AMCommHeadCell.h */,
  602. 420DEF2420A1898500720524 /* AMCommHeadCell.m */,
  603. 420DEF2520A1898500720524 /* AMCommHeadCell.xib */,
  604. 420DEF2820A1899600720524 /* AMCommContentCell.h */,
  605. 420DEF2920A1899600720524 /* AMCommContentCell.m */,
  606. 420DEF2A20A1899600720524 /* AMCommContentCell.xib */,
  607. 420DEF2D20A189AA00720524 /* AMCommEditCell.h */,
  608. 420DEF2E20A189AA00720524 /* AMCommEditCell.m */,
  609. 420DEF2F20A189AA00720524 /* AMCommEditCell.xib */,
  610. 42DE626020A41907005FB582 /* AMTextField.h */,
  611. 42DE626120A41907005FB582 /* AMTextField.m */,
  612. );
  613. name = Communication;
  614. sourceTree = "<group>";
  615. };
  616. 42253C95209C3BF300879B09 /* ShipMap */ = {
  617. isa = PBXGroup;
  618. children = (
  619. 42253C96209C3C0F00879B09 /* AMShipMap.h */,
  620. 42253C97209C3C0F00879B09 /* AMShipMap.m */,
  621. );
  622. path = ShipMap;
  623. sourceTree = "<group>";
  624. };
  625. 4225E42121E084A4009D2364 /* Result */ = {
  626. isa = PBXGroup;
  627. children = (
  628. 4225E44421E0989D009D2364 /* ApexResultProtocol.h */,
  629. 42FB6ECD21F3136300F694AB /* ApexResultMenuItem.h */,
  630. 42FB6ECE21F3136300F694AB /* ApexResultMenuItem.m */,
  631. 4225E42221E08502009D2364 /* ApexResultViewController.h */,
  632. 4225E42321E08502009D2364 /* ApexResultViewController.m */,
  633. 4225E42521E08576009D2364 /* ApexResult.storyboard */,
  634. 4225E44521E099B7009D2364 /* Presenter */,
  635. 42C6754F21E3262D001E3FF4 /* QuickLook */,
  636. 4225E42A21E08858009D2364 /* TableDelegate */,
  637. 4225E42921E0884E009D2364 /* TableDataSource */,
  638. 4225E42821E085E3009D2364 /* Model */,
  639. 4225E42721E085CE009D2364 /* Cell */,
  640. );
  641. path = Result;
  642. sourceTree = "<group>";
  643. };
  644. 4225E42721E085CE009D2364 /* Cell */ = {
  645. isa = PBXGroup;
  646. children = (
  647. 4225E43121E08A54009D2364 /* ApexResultContainerCell.h */,
  648. 4225E43221E08A54009D2364 /* ApexResultContainerCell.m */,
  649. 42FB6EB821F2B9FE00F694AB /* ApexResultContainerCell.xib */,
  650. 4225E43621E08A8C009D2364 /* ApexResultDocumentCell.h */,
  651. 4225E43721E08A8C009D2364 /* ApexResultDocumentCell.m */,
  652. 4225E43821E08A8C009D2364 /* ApexResultDocumentCell.xib */,
  653. 42FB6EBA21F2BAB800F694AB /* ApexResultBLInfoCell.h */,
  654. 42FB6EBB21F2BAB800F694AB /* ApexResultBLInfoCell.m */,
  655. 42FB6EBC21F2BAB800F694AB /* ApexResultBLInfoCell.xib */,
  656. 42FB6EBF21F2BB6400F694AB /* ApexResultBookingCell.h */,
  657. 42FB6EC021F2BB6400F694AB /* ApexResultBookingCell.m */,
  658. 42FB6EC121F2BB6400F694AB /* ApexResultBookingCell.xib */,
  659. 42C6754C21E2F1D4001E3FF4 /* ApexResultAdditionView.h */,
  660. 42C6754D21E2F1D4001E3FF4 /* ApexResultAdditionView.m */,
  661. 42E8212E21F6ED1800127705 /* ApexResultAdditionView.xib */,
  662. );
  663. path = Cell;
  664. sourceTree = "<group>";
  665. };
  666. 4225E42821E085E3009D2364 /* Model */ = {
  667. isa = PBXGroup;
  668. children = (
  669. 4225E44121E08B47009D2364 /* ApexResultBaseModel.h */,
  670. 4225E44221E08B47009D2364 /* ApexResultBaseModel.m */,
  671. 42FB6EC721F2BC8600F694AB /* ApexResultAddition.h */,
  672. 42FB6EC821F2BC8600F694AB /* ApexResultAddition.m */,
  673. 4225E43B21E08ACE009D2364 /* ApexResultContainerModel.h */,
  674. 4225E43C21E08ACE009D2364 /* ApexResultContainerModel.m */,
  675. 4225E43E21E08AEF009D2364 /* ApexResultDocumentModel.h */,
  676. 4225E43F21E08AEF009D2364 /* ApexResultDocumentModel.m */,
  677. 42FB6EC421F2BC5300F694AB /* ApexResultBookingModel.h */,
  678. 42FB6EC521F2BC5300F694AB /* ApexResultBookingModel.m */,
  679. 42FB6ECA21F2C0E300F694AB /* ApexResultBLInfoModel.h */,
  680. 42FB6ECB21F2C0E300F694AB /* ApexResultBLInfoModel.m */,
  681. );
  682. path = Model;
  683. sourceTree = "<group>";
  684. };
  685. 4225E42921E0884E009D2364 /* TableDataSource */ = {
  686. isa = PBXGroup;
  687. children = (
  688. 4225E42E21E088AA009D2364 /* ApexResultViewController+TableDataSource.h */,
  689. 4225E42F21E088AA009D2364 /* ApexResultViewController+TableDataSource.m */,
  690. );
  691. path = TableDataSource;
  692. sourceTree = "<group>";
  693. };
  694. 4225E42A21E08858009D2364 /* TableDelegate */ = {
  695. isa = PBXGroup;
  696. children = (
  697. 4225E42B21E08895009D2364 /* ApexResultViewController+TableDelegate.h */,
  698. 4225E42C21E08895009D2364 /* ApexResultViewController+TableDelegate.m */,
  699. );
  700. path = TableDelegate;
  701. sourceTree = "<group>";
  702. };
  703. 4225E44521E099B7009D2364 /* Presenter */ = {
  704. isa = PBXGroup;
  705. children = (
  706. 4225E44621E099CB009D2364 /* ApexResultPresenter.h */,
  707. 4225E44721E099CB009D2364 /* ApexResultPresenter.m */,
  708. );
  709. path = Presenter;
  710. sourceTree = "<group>";
  711. };
  712. 4225E44921E0A39A009D2364 /* HUD */ = {
  713. isa = PBXGroup;
  714. children = (
  715. 4225E44A21E0A39A009D2364 /* RAProgressHUD.h */,
  716. 4225E44B21E0A39A009D2364 /* RAProgressHUD.m */,
  717. );
  718. name = HUD;
  719. path = ../../common/HUD;
  720. sourceTree = "<group>";
  721. };
  722. 4225E44C21E0A39A009D2364 /* LayoutConstraint */ = {
  723. isa = PBXGroup;
  724. children = (
  725. 4225E44E21E0A39A009D2364 /* UIView+RAConstraint.h */,
  726. 4225E44D21E0A39A009D2364 /* UIView+RAConstraint.m */,
  727. );
  728. name = LayoutConstraint;
  729. path = ../../common/LayoutConstraint;
  730. sourceTree = "<group>";
  731. };
  732. 425390072079B73800ECF982 /* KPI */ = {
  733. isa = PBXGroup;
  734. children = (
  735. 425390152079B7EA00ECF982 /* Cell */,
  736. 420F0CA220901C2E005C4690 /* KPIRepeatTapGestureRecognizer.h */,
  737. 420F0CA320901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m */,
  738. );
  739. name = KPI;
  740. sourceTree = "<group>";
  741. };
  742. 425390152079B7EA00ECF982 /* Cell */ = {
  743. isa = PBXGroup;
  744. children = (
  745. 4253900B2079B7C700ECF982 /* KPIPieChartCell.h */,
  746. 4253900C2079B7C700ECF982 /* KPIPieChartCell.m */,
  747. 4253900D2079B7C700ECF982 /* KPIPieChartCell.xib */,
  748. 42539027207A159300ECF982 /* KPIButton.h */,
  749. 42539028207A159300ECF982 /* KPIButton.m */,
  750. 42BFD2D0207B697800DA9038 /* KPICell.h */,
  751. 42BFD2D1207B697800DA9038 /* KPICell.m */,
  752. 42BB74082084732D00B9B6E4 /* KPICell.xib */,
  753. 42BB7400208431DA00B9B6E4 /* KPILegendCell.h */,
  754. 42BB7401208431DA00B9B6E4 /* KPILegendCell.m */,
  755. 42BB740A2084737800B9B6E4 /* KPILegendCell.xib */,
  756. 42BB740320846B4500B9B6E4 /* KPITableCell.h */,
  757. 42BB740420846B4500B9B6E4 /* KPITableCell.m */,
  758. 42BB740520846B4500B9B6E4 /* KPITableCell.xib */,
  759. );
  760. name = Cell;
  761. sourceTree = "<group>";
  762. };
  763. 425390162079B94300ECF982 /* PieChart */ = {
  764. isa = PBXGroup;
  765. children = (
  766. 425390192079B99B00ECF982 /* PieChart.xcassets */,
  767. 4253901F2079B99B00ECF982 /* XYCommon.h */,
  768. 425390172079B99A00ECF982 /* XYCommon.m */,
  769. 4253901A2079B99B00ECF982 /* XYPieChartView.h */,
  770. 4253901C2079B99B00ECF982 /* XYPieChartView.m */,
  771. 4253901D2079B99B00ECF982 /* XYRenderView.h */,
  772. 4253901E2079B99B00ECF982 /* XYRenderView.m */,
  773. 425390182079B99A00ECF982 /* XYRotatedView.h */,
  774. 4253901B2079B99B00ECF982 /* XYRotatedView.m */,
  775. );
  776. path = PieChart;
  777. sourceTree = "<group>";
  778. };
  779. 425CF088201EAF8800750E32 /* History */ = {
  780. isa = PBXGroup;
  781. children = (
  782. 715643C22019B58400B04267 /* OrderHistoryViewController.h */,
  783. 715643C32019B58400B04267 /* OrderHistoryViewController.m */,
  784. );
  785. name = History;
  786. sourceTree = "<group>";
  787. };
  788. 425CF089201EB2B500750E32 /* Refresh */ = {
  789. isa = PBXGroup;
  790. children = (
  791. 425CF08A201EB2B500750E32 /* Footer */,
  792. 425CF08D201EB2B500750E32 /* Header */,
  793. 425CF090201EB2B500750E32 /* JLRefreshBasis.h */,
  794. 425CF091201EB2B500750E32 /* JLRefreshBasis.m */,
  795. 425CF092201EB2B500750E32 /* UIScrollView+JLRefresh.h */,
  796. 425CF093201EB2B500750E32 /* UIScrollView+JLRefresh.m */,
  797. 425CF094201EB2B500750E32 /* UIView+JLExtension.h */,
  798. 425CF095201EB2B500750E32 /* UIView+JLExtension.m */,
  799. );
  800. name = Refresh;
  801. path = ../../common/customUI/Refresh;
  802. sourceTree = "<group>";
  803. };
  804. 425CF08A201EB2B500750E32 /* Footer */ = {
  805. isa = PBXGroup;
  806. children = (
  807. 425CF08B201EB2B500750E32 /* JLRefreshFooter.h */,
  808. 425CF08C201EB2B500750E32 /* JLRefreshFooter.m */,
  809. );
  810. path = Footer;
  811. sourceTree = "<group>";
  812. };
  813. 425CF08D201EB2B500750E32 /* Header */ = {
  814. isa = PBXGroup;
  815. children = (
  816. 425CF08E201EB2B500750E32 /* JLRefreshHeader.h */,
  817. 425CF08F201EB2B500750E32 /* JLRefreshHeader.m */,
  818. );
  819. path = Header;
  820. sourceTree = "<group>";
  821. };
  822. 42604123201C53DB002374A8 /* Home */ = {
  823. isa = PBXGroup;
  824. children = (
  825. 715643BF2019B27500B04267 /* HomeViewController.h */,
  826. 715643C02019B27500B04267 /* HomeViewController.m */,
  827. 42604125201C578B002374A8 /* ShipSearchController.h */,
  828. 42604126201C578B002374A8 /* ShipSearchController.m */,
  829. 42604128201C57A7002374A8 /* ShipSearch.storyboard */,
  830. );
  831. name = Home;
  832. sourceTree = "<group>";
  833. };
  834. 42604124201C53ED002374A8 /* ShipStatusCell */ = {
  835. isa = PBXGroup;
  836. children = (
  837. 7162546C201C412E009E3A41 /* ShippingStatusCell.xib */,
  838. 42604120201C4B41002374A8 /* ShipingStatusCell.h */,
  839. 42604121201C4B41002374A8 /* ShipingStatusCell.m */,
  840. );
  841. name = ShipStatusCell;
  842. sourceTree = "<group>";
  843. };
  844. 426E8AB4202163EB0073BA5D /* Alert */ = {
  845. isa = PBXGroup;
  846. children = (
  847. 426E8AB5202163EC0073BA5D /* JLCustomerAlertController.h */,
  848. 426E8AB6202163EC0073BA5D /* JLCustomerAlertController.m */,
  849. 426E8AB7202163EC0073BA5D /* JLPresentationController.h */,
  850. 426E8AB8202163EC0073BA5D /* JLPresentationController.m */,
  851. 426E8ABB2021AEC50073BA5D /* JLCustomerNavigationAlertController.h */,
  852. 426E8ABC2021AEC50073BA5D /* JLCustomerNavigationAlertController.m */,
  853. );
  854. name = Alert;
  855. path = ../../common/customUI/Alert;
  856. sourceTree = "<group>";
  857. };
  858. 42C6754F21E3262D001E3FF4 /* QuickLook */ = {
  859. isa = PBXGroup;
  860. children = (
  861. 42C6755021E32654001E3FF4 /* ApexResultViewController+QuickLook.h */,
  862. 42C6755121E32654001E3FF4 /* ApexResultViewController+QuickLook.m */,
  863. );
  864. path = QuickLook;
  865. sourceTree = "<group>";
  866. };
  867. 713AA79E1917366A00B44092 /* documents */ = {
  868. isa = PBXGroup;
  869. children = (
  870. 713AA79F191736E600B44092 /* DocumentsViewController.h */,
  871. 713AA7A0191736E600B44092 /* DocumentsViewController.m */,
  872. 713AA7A21917373600B44092 /* LocalDocumentsViewController.h */,
  873. 713AA7A31917373600B44092 /* LocalDocumentsViewController.m */,
  874. );
  875. name = documents;
  876. sourceTree = "<group>";
  877. };
  878. 715643B820198A6000B04267 /* new */ = {
  879. isa = PBXGroup;
  880. children = (
  881. 42253C95209C3BF300879B09 /* ShipMap */,
  882. 425390162079B94300ECF982 /* PieChart */,
  883. 425390072079B73800ECF982 /* KPI */,
  884. 716027CE204D3302003CA085 /* share */,
  885. 7162546A201C3AF1009E3A41 /* readme.txt */,
  886. 7157099A2021591F00EFE5C5 /* config.h */,
  887. 715709932021576A00EFE5C5 /* const.h */,
  888. 7157098F2021573600EFE5C5 /* utils */,
  889. 71B7998E2021AE7F00F8685E /* customUI */,
  890. 7157098B202156EC00EFE5C5 /* network */,
  891. 71B799822021AE3200F8685E /* result */,
  892. 71807B992021976000E1F1DD /* detail */,
  893. 42604124201C53ED002374A8 /* ShipStatusCell */,
  894. 425CF088201EAF8800750E32 /* History */,
  895. 42604123201C53DB002374A8 /* Home */,
  896. 7162546E201C51DC009E3A41 /* fake data */,
  897. 715643D8201C057E00B04267 /* ModeList */,
  898. 715643B920198A9900B04267 /* RootViewController.h */,
  899. 715643BA20198A9900B04267 /* RootViewController.m */,
  900. 715643BC2019AA9B00B04267 /* LoginViewController.h */,
  901. 715643BD2019AA9B00B04267 /* LoginViewController.m */,
  902. 715643C52019BB6700B04267 /* StaticModelistViewController.h */,
  903. 715643C62019BB6700B04267 /* StaticModelistViewController.m */,
  904. 715643D4201AD2AB00B04267 /* StaticModelistViewController.xib */,
  905. 715643D1201ACB1700B04267 /* StaticModeTableViewCell.h */,
  906. 715643D2201ACB1700B04267 /* StaticModeTableViewCell.m */,
  907. 715643D6201AD99300B04267 /* StaticModeTableViewCell.xib */,
  908. 715643C82019BC4C00B04267 /* SearchlistViewController.h */,
  909. 715643C92019BC4C00B04267 /* SearchlistViewController.m */,
  910. 715643CB2019BC6C00B04267 /* ToolslistViewController.h */,
  911. 715643CC2019BC6C00B04267 /* ToolslistViewController.m */,
  912. 715643CE2019BCCE00B04267 /* MylistViewController.h */,
  913. 715643CF2019BCCE00B04267 /* MylistViewController.m */,
  914. );
  915. name = new;
  916. sourceTree = "<group>";
  917. };
  918. 715643D8201C057E00B04267 /* ModeList */ = {
  919. isa = PBXGroup;
  920. children = (
  921. 715643D9201C079F00B04267 /* tools.json */,
  922. 715643DB201C117300B04267 /* search.json */,
  923. 715643DD201C1AE600B04267 /* my.json */,
  924. );
  925. name = ModeList;
  926. sourceTree = "<group>";
  927. };
  928. 7157098B202156EC00EFE5C5 /* network */ = {
  929. isa = PBXGroup;
  930. children = (
  931. 71570998202157BC00EFE5C5 /* RANetworkTaskDelegate.h */,
  932. 71570997202157BC00EFE5C5 /* RANetworkTaskDelegate.m */,
  933. 7157098D2021572600EFE5C5 /* NetworkUtils.h */,
  934. 7157098C2021572600EFE5C5 /* NetworkUtils.m */,
  935. 715709AC20215CB000EFE5C5 /* RANetwork.h */,
  936. 715709AD20215CB000EFE5C5 /* RANetwork.m */,
  937. 717D76E918C7F8120070302D /* Reachability.h */,
  938. 717D76EA18C7F8120070302D /* Reachability.m */,
  939. );
  940. name = network;
  941. sourceTree = "<group>";
  942. };
  943. 7157098F2021573600EFE5C5 /* utils */ = {
  944. isa = PBXGroup;
  945. children = (
  946. 715709AF20215DEC00EFE5C5 /* AES */,
  947. 7157099B20215B4100EFE5C5 /* zip */,
  948. 71570994202157A600EFE5C5 /* RAUtils.h */,
  949. 71570995202157A600EFE5C5 /* RAUtils.m */,
  950. 715709902021574D00EFE5C5 /* RAConvertor.h */,
  951. 715709912021574D00EFE5C5 /* RAConvertor.m */,
  952. );
  953. name = utils;
  954. sourceTree = "<group>";
  955. };
  956. 7157099B20215B4100EFE5C5 /* zip */ = {
  957. isa = PBXGroup;
  958. children = (
  959. 715709A920215B6200EFE5C5 /* ZipArchive.h */,
  960. 715709AA20215B6200EFE5C5 /* ZipArchive.mm */,
  961. 7157099D20215B5000EFE5C5 /* crypt.h */,
  962. 715709A020215B5000EFE5C5 /* ioapi.c */,
  963. 715709A120215B5000EFE5C5 /* ioapi.h */,
  964. 715709A420215B5100EFE5C5 /* mztools.c */,
  965. 715709A220215B5100EFE5C5 /* mztools.h */,
  966. 7157099E20215B5000EFE5C5 /* unzip.c */,
  967. 715709A320215B5100EFE5C5 /* unzip.h */,
  968. 7157099C20215B5000EFE5C5 /* zip.c */,
  969. 7157099F20215B5000EFE5C5 /* zip.h */,
  970. );
  971. name = zip;
  972. sourceTree = "<group>";
  973. };
  974. 715709AF20215DEC00EFE5C5 /* AES */ = {
  975. isa = PBXGroup;
  976. children = (
  977. 715709B420215DFF00EFE5C5 /* AESCrypt.h */,
  978. 715709B820215DFF00EFE5C5 /* AESCrypt.m */,
  979. 715709B620215DFF00EFE5C5 /* LICENSE */,
  980. 715709B520215DFF00EFE5C5 /* NSData+Base64.h */,
  981. 715709B320215DFF00EFE5C5 /* NSData+Base64.m */,
  982. 715709B720215DFF00EFE5C5 /* NSData+CommonCrypto.h */,
  983. 715709B020215DFF00EFE5C5 /* NSData+CommonCrypto.m */,
  984. 715709B120215DFF00EFE5C5 /* NSString+Base64.h */,
  985. 715709B220215DFF00EFE5C5 /* NSString+Base64.m */,
  986. );
  987. name = AES;
  988. sourceTree = "<group>";
  989. };
  990. 716027CE204D3302003CA085 /* share */ = {
  991. isa = PBXGroup;
  992. children = (
  993. 716027D3204D3D15003CA085 /* LPShareActivity.h */,
  994. 716027D2204D3D15003CA085 /* LPShareActivity.m */,
  995. 716027CF204D334A003CA085 /* DetailShareItemProvider.h */,
  996. 716027D0204D334A003CA085 /* DetailShareItemProvider.m */,
  997. );
  998. name = share;
  999. sourceTree = "<group>";
  1000. };
  1001. 7162546E201C51DC009E3A41 /* fake data */ = {
  1002. isa = PBXGroup;
  1003. children = (
  1004. 42541ACE207C49610072BC5A /* fake_home.json */,
  1005. 425390252079B9B400ECF982 /* KPI.json */,
  1006. 7162546F201C5205009E3A41 /* fake_container_list.json */,
  1007. 71807B972021965B00E1F1DD /* fake_tracking.json */,
  1008. 71807B9D2021ACE500E1F1DD /* fake_search.json */,
  1009. );
  1010. name = "fake data";
  1011. sourceTree = "<group>";
  1012. };
  1013. 71807B992021976000E1F1DD /* detail */ = {
  1014. isa = PBXGroup;
  1015. children = (
  1016. 71807B9A2021979A00E1F1DD /* DetailCellTracking.h */,
  1017. 71807B9B2021979A00E1F1DD /* DetailCellTracking.m */,
  1018. 7101BEC62031389A00CC6E3A /* DetailCellKVNew.h */,
  1019. 7101BEC72031389A00CC6E3A /* DetailCellKVNew.m */,
  1020. );
  1021. name = detail;
  1022. sourceTree = "<group>";
  1023. };
  1024. 719A51A618C5A4E40080C075 /* CustomUI */ = {
  1025. isa = PBXGroup;
  1026. children = (
  1027. 718BE8A6190F9D970046EA6A /* MyAutocompleteView.h */,
  1028. 718BE8A7190F9D970046EA6A /* MyAutocompleteView.m */,
  1029. 718BE8AA190F9D970046EA6A /* MyAutocompleteItemsSource.h */,
  1030. 718BE8AB190F9D970046EA6A /* MyAutocompleteItemsSource.m */,
  1031. 718BE8AC190F9D970046EA6A /* MyAutocompletionCellFactory.h */,
  1032. 718BE8AD190F9D970046EA6A /* MyAutocompletionCellFactory.m */,
  1033. 718BE8AE190F9D970046EA6A /* MySuggestion.h */,
  1034. 718BE8AF190F9D970046EA6A /* MySuggestion.m */,
  1035. 71F67CFA19066375004E8462 /* PulldownMenu.h */,
  1036. 71F67CFB19066375004E8462 /* PulldownMenu.m */,
  1037. 712CBA0118CF38DB00C61394 /* RTLabel.h */,
  1038. 712CBA0218CF38DB00C61394 /* RTLabel.m */,
  1039. 719A51A318C5A4AF0080C075 /* SimpleGrid.h */,
  1040. 719A51A418C5A4AF0080C075 /* SimpleGrid.m */,
  1041. 71951E6D18C6A9A5005024BD /* TouchLabel.h */,
  1042. 71951E6E18C6A9A5005024BD /* TouchLabel.m */,
  1043. 71F67CF719065EA8004E8462 /* SimpleMenu.h */,
  1044. 71F67CF819065EA8004E8462 /* SimpleMenu.m */,
  1045. );
  1046. name = CustomUI;
  1047. sourceTree = "<group>";
  1048. };
  1049. 719A51AA18C5A60C0080C075 /* unused */ = {
  1050. isa = PBXGroup;
  1051. children = (
  1052. 719A51A718C5A5D30080C075 /* SimpleGridDataSource.h */,
  1053. 719A51A818C5A5D30080C075 /* SimpleGridDataSource.m */,
  1054. 719A51B818C5AB7B0080C075 /* SimpleGridComponent.h */,
  1055. 719A51B918C5AB7B0080C075 /* SimpleGridComponent.m */,
  1056. );
  1057. name = unused;
  1058. sourceTree = "<group>";
  1059. };
  1060. 719A51AB18C5A66A0080C075 /* Search */ = {
  1061. isa = PBXGroup;
  1062. children = (
  1063. 71AE427118C47AF900B8EC3D /* SearchViewController.h */,
  1064. 71AE427218C47AF900B8EC3D /* SearchViewController.m */,
  1065. 71A565D718C20F5900CDAC07 /* SearchTableAdapter.h */,
  1066. 71A565D818C20F5900CDAC07 /* SearchTableAdapter.m */,
  1067. 711DC6B018C30A4800FB1749 /* TableCellEdit.h */,
  1068. 711DC6B118C30A4800FB1749 /* TableCellEdit.m */,
  1069. 71406DCC18C36A52000914C4 /* TableCellBool.h */,
  1070. 71406DCD18C36A52000914C4 /* TableCellBool.m */,
  1071. 71406DCF18C36A6E000914C4 /* TableCellDate.h */,
  1072. 71406DD018C36A6E000914C4 /* TableCellDate.m */,
  1073. );
  1074. name = Search;
  1075. sourceTree = "<group>";
  1076. };
  1077. 719A51AC18C5A6A80080C075 /* Location */ = {
  1078. isa = PBXGroup;
  1079. children = (
  1080. 3C0F4E9223BAE74F000A2FE7 /* CachedTileOverlay.h */,
  1081. 3C0F4E9323BAE74F000A2FE7 /* CachedTileOverlay.m */,
  1082. 3C2D99A1239B92F1007B759E /* ApexMapView.h */,
  1083. 3C2D99A0239B92F1007B759E /* ApexMapView.m */,
  1084. 3C1DEC3C239F6C42006F7E2A /* MKMapView+ZoomLevel.h */,
  1085. 3C1DEC3B239F6C42006F7E2A /* MKMapView+ZoomLevel.m */,
  1086. 7103C84A22549E7E00261926 /* CLLocation+Sino.h */,
  1087. 7103C84922549E7E00261926 /* CLLocation+Sino.m */,
  1088. 7120DD0218BE273900E7546F /* LocationViewController.h */,
  1089. 7120DD0318BE273900E7546F /* LocationViewController.m */,
  1090. 42BCACC8209AE243009DDA43 /* AMAnnotationView.h */,
  1091. 42BCACC9209AE243009DDA43 /* AMAnnotationView.m */,
  1092. 42BCACCB209AE342009DDA43 /* AMMapAnnotaion.h */,
  1093. 42BCACCC209AE342009DDA43 /* AMMapAnnotaion.m */,
  1094. 42253C92209C007700879B09 /* AMMapView.h */,
  1095. 42253C93209C007700879B09 /* AMMapView.m */,
  1096. 3C2D99A3239B93C8007B759E /* AMViewController.h */,
  1097. 3C2D99A4239B93C8007B759E /* AMViewController.m */,
  1098. );
  1099. name = Location;
  1100. sourceTree = "<group>";
  1101. };
  1102. 719A51AD18C5A6D00080C075 /* About */ = {
  1103. isa = PBXGroup;
  1104. children = (
  1105. 71DA74A418BDDD30003B46A6 /* AboutViewController.h */,
  1106. 71DA74A518BDDD30003B46A6 /* AboutViewController.m */,
  1107. );
  1108. name = About;
  1109. sourceTree = "<group>";
  1110. };
  1111. 719A51AE18C5A7230080C075 /* FunctionSelect */ = {
  1112. isa = PBXGroup;
  1113. children = (
  1114. 71330C1E18BCC4DA0048956C /* FunctionSelectViewController.h */,
  1115. 71330C1F18BCC4DA0048956C /* FunctionSelectViewController.m */,
  1116. );
  1117. name = FunctionSelect;
  1118. sourceTree = "<group>";
  1119. };
  1120. 719A51AF18C5A75A0080C075 /* Result */ = {
  1121. isa = PBXGroup;
  1122. children = (
  1123. 717D772D18C84E3F0070302D /* PageData.h */,
  1124. 717D772E18C84E3F0070302D /* PageData.m */,
  1125. );
  1126. name = Result;
  1127. sourceTree = "<group>";
  1128. };
  1129. 719A51B018C5A7680080C075 /* Detail */ = {
  1130. isa = PBXGroup;
  1131. children = (
  1132. 71A01D7718C9AE77003307A9 /* DetailCellKV.h */,
  1133. 71A01D7818C9AE77003307A9 /* DetailCellKV.m */,
  1134. 71A01D7A18C9AE97003307A9 /* DetailCellList.h */,
  1135. 71A01D7B18C9AE97003307A9 /* DetailCellList.m */,
  1136. 71A01D7D18C9AEC8003307A9 /* DetailCellWeb.h */,
  1137. 71A01D7E18C9AEC8003307A9 /* DetailCellWeb.m */,
  1138. 71A01D8018C9BA67003307A9 /* DetailContent.h */,
  1139. 71A01D8118C9BA67003307A9 /* DetailContent.m */,
  1140. 71A01D8318C9BDC8003307A9 /* DetailTabBarController.h */,
  1141. 71A01D8418C9BDC8003307A9 /* DetailTabBarController.m */,
  1142. 71CEE38818CB749E00052C63 /* DetailPageViewController.h */,
  1143. 71CEE38918CB749E00052C63 /* DetailPageViewController.m */,
  1144. 71A2D76018DC3895001C380A /* LineView.h */,
  1145. 71A2D76118DC3895001C380A /* LineView.m */,
  1146. 420DEF1C20A1889F00720524 /* Communication */,
  1147. );
  1148. name = Detail;
  1149. sourceTree = "<group>";
  1150. };
  1151. 719A51B118C5A7740080C075 /* FieldsSetting */ = {
  1152. isa = PBXGroup;
  1153. children = (
  1154. 712A301118CFEF550022E6E6 /* CustomizeFieldViewController.h */,
  1155. 712A301218CFEF550022E6E6 /* CustomizeFieldViewController.m */,
  1156. );
  1157. name = FieldsSetting;
  1158. sourceTree = "<group>";
  1159. };
  1160. 719BEC1418FFA60800DFE987 /* tools */ = {
  1161. isa = PBXGroup;
  1162. children = (
  1163. 719BEC1518FFAB7B00DFE987 /* ToolsPanelViewController.h */,
  1164. 719BEC1618FFAB7B00DFE987 /* ToolsPanelViewController.m */,
  1165. 7130B3F21900FB61000610D8 /* NewsViewController.h */,
  1166. 7130B3F31900FB61000610D8 /* NewsViewController.m */,
  1167. 716FF7901904ED2600ED6C3D /* NewsData.h */,
  1168. 716FF7911904ED2600ED6C3D /* NewsData.m */,
  1169. 716FF7931904FBC600ED6C3D /* NewsTableViewCell.h */,
  1170. 716FF7941904FBC600ED6C3D /* NewsTableViewCell.m */,
  1171. 71F67CF419063612004E8462 /* ApexHistoryViewController.h */,
  1172. 71F67CF519063612004E8462 /* ApexHistoryViewController.m */,
  1173. 71BA50321908EDCF00D0BD31 /* HistoryTabBarController.h */,
  1174. 71BA50331908EDCF00D0BD31 /* HistoryTabBarController.m */,
  1175. 71BA502F1908ED9100D0BD31 /* HistoryViewController.h */,
  1176. 71BA50301908ED9100D0BD31 /* HistoryViewController.m */,
  1177. 71BA50351908F21500D0BD31 /* HistoryData.h */,
  1178. 71BA50361908F21500D0BD31 /* HistoryData.m */,
  1179. 71DA6048190A02CE00683003 /* FavoritesViewController.h */,
  1180. 71DA6049190A02CE00683003 /* FavoritesViewController.m */,
  1181. 71DA6045190A00F600683003 /* FavoritesData.h */,
  1182. 71DA6046190A00F600683003 /* FavoritesData.m */,
  1183. 71BA502C1908ED5700D0BD31 /* CellItemHistory.h */,
  1184. 71BA502D1908ED5700D0BD31 /* CellItemHistory.m */,
  1185. 714C39B61922FEE1004F045B /* NewsDetailViewController.h */,
  1186. 714C39B71922FEE1004F045B /* NewsDetailViewController.m */,
  1187. );
  1188. name = tools;
  1189. sourceTree = "<group>";
  1190. };
  1191. 719E7E2D18C01555003408FF /* utils */ = {
  1192. isa = PBXGroup;
  1193. children = (
  1194. 3C57169C23D186A30002E9FC /* WebViewController.h */,
  1195. 3C57169A23D186A30002E9FC /* WebViewController.m */,
  1196. 3C57169B23D186A30002E9FC /* wkweb.storyboard */,
  1197. 3C0F4E9523BAF594000A2FE7 /* FileCache.h */,
  1198. 3C0F4E9623BAF594000A2FE7 /* FileCache.m */,
  1199. 719E7E3118C0368A003408FF /* ApexMobileDB.h */,
  1200. 719E7E3218C0368A003408FF /* ApexMobileDB.m */,
  1201. 71A565DD18C212EA00CDAC07 /* Constant.h */,
  1202. 71A565DE18C212EA00CDAC07 /* Constant.m */,
  1203. );
  1204. name = utils;
  1205. sourceTree = "<group>";
  1206. };
  1207. 719EF8D418BB839F00EFFF5F = {
  1208. isa = PBXGroup;
  1209. children = (
  1210. 3CA1A2DD23A212E700639FCC /* Launch Screen.storyboard */,
  1211. 427994B120300E7300746EDC /* Apex Mobile.entitlements */,
  1212. 719EF8E618BB839F00EFFF5F /* Apex Mobile */,
  1213. 719EF90B18BB839F00EFFF5F /* Apex MobileTests */,
  1214. 719EF8DF18BB839F00EFFF5F /* Frameworks */,
  1215. 719EF8DE18BB839F00EFFF5F /* Products */,
  1216. );
  1217. sourceTree = "<group>";
  1218. };
  1219. 719EF8DE18BB839F00EFFF5F /* Products */ = {
  1220. isa = PBXGroup;
  1221. children = (
  1222. 719EF8DD18BB839F00EFFF5F /* Apex Mobile.app */,
  1223. );
  1224. name = Products;
  1225. sourceTree = "<group>";
  1226. };
  1227. 719EF8DF18BB839F00EFFF5F /* Frameworks */ = {
  1228. isa = PBXGroup;
  1229. children = (
  1230. 426F397E2033CEE80025C568 /* AudioToolbox.framework */,
  1231. 427CF5DF202452450041472A /* Accelerate.framework */,
  1232. 71514ED1191B7E2500009C00 /* AddressBookUI.framework */,
  1233. 719E7E3418C0395E003408FF /* libsqlite3.dylib */,
  1234. 7120DD0018BE266000E7546F /* SystemConfiguration.framework */,
  1235. 7120DCFE18BE265100E7546F /* QuartzCore.framework */,
  1236. 7120DCFC18BE264300E7546F /* OpenGLES.framework */,
  1237. 7120DCFA18BE263800E7546F /* libz.dylib */,
  1238. 7120DCF818BE262E00E7546F /* libicucore.dylib */,
  1239. 7120DCF618BE262300E7546F /* libc++.dylib */,
  1240. 7120DCF418BE261500E7546F /* ImageIO.framework */,
  1241. 7120DCF218BE260700E7546F /* GLKit.framework */,
  1242. 7120DCF018BE25F500E7546F /* CoreText.framework */,
  1243. 7120DCEE18BE25E500E7546F /* CoreLocation.framework */,
  1244. 7120DCEC18BE25DA00E7546F /* CoreData.framework */,
  1245. 7120DCEA18BE25CE00E7546F /* AVFoundation.framework */,
  1246. 719EF8E018BB839F00EFFF5F /* Foundation.framework */,
  1247. 719EF8E218BB839F00EFFF5F /* CoreGraphics.framework */,
  1248. 719EF8E418BB839F00EFFF5F /* UIKit.framework */,
  1249. 719EF90518BB839F00EFFF5F /* XCTest.framework */,
  1250. );
  1251. name = Frameworks;
  1252. sourceTree = "<group>";
  1253. };
  1254. 719EF8E618BB839F00EFFF5F /* Apex Mobile */ = {
  1255. isa = PBXGroup;
  1256. children = (
  1257. 4225E44921E0A39A009D2364 /* HUD */,
  1258. 4225E44C21E0A39A009D2364 /* LayoutConstraint */,
  1259. 4225E42121E084A4009D2364 /* Result */,
  1260. 426E8AB4202163EB0073BA5D /* Alert */,
  1261. 425CF089201EB2B500750E32 /* Refresh */,
  1262. 715643B820198A6000B04267 /* new */,
  1263. 71C72714191CFF11001127E0 /* message */,
  1264. 713AA79E1917366A00B44092 /* documents */,
  1265. 719BEC1418FFA60800DFE987 /* tools */,
  1266. 71A003F918D680250057CDFD /* password */,
  1267. 719A51B118C5A7740080C075 /* FieldsSetting */,
  1268. 719A51B018C5A7680080C075 /* Detail */,
  1269. 719A51AF18C5A75A0080C075 /* Result */,
  1270. 719A51AE18C5A7230080C075 /* FunctionSelect */,
  1271. 719A51AD18C5A6D00080C075 /* About */,
  1272. 719A51AC18C5A6A80080C075 /* Location */,
  1273. 719A51AB18C5A66A0080C075 /* Search */,
  1274. 719A51AA18C5A60C0080C075 /* unused */,
  1275. 719A51A618C5A4E40080C075 /* CustomUI */,
  1276. 71A565E018C2141C00CDAC07 /* resource */,
  1277. 719E7E2D18C01555003408FF /* utils */,
  1278. 719EF8EF18BB839F00EFFF5F /* AppDelegate.h */,
  1279. 719EF8F018BB839F00EFFF5F /* AppDelegate.m */,
  1280. 715643B620198A1400B04267 /* Main.storyboard */,
  1281. 719EF8F818BB839F00EFFF5F /* ApexMobileFirstViewController.h */,
  1282. 719EF8F918BB839F00EFFF5F /* ApexMobileFirstViewController.m */,
  1283. 71CEE3D518CC559B00052C63 /* ApexMobileNavigationController.h */,
  1284. 71CEE3D618CC559B00052C63 /* ApexMobileNavigationController.m */,
  1285. 719EF8FB18BB839F00EFFF5F /* ApexMobileSecondViewController.h */,
  1286. 719EF8FC18BB839F00EFFF5F /* ApexMobileSecondViewController.m */,
  1287. 427CF5CF2023F5560041472A /* NewImages.xcassets */,
  1288. 719EF8E718BB839F00EFFF5F /* Supporting Files */,
  1289. 71375C8D18D96EDE00EBA026 /* TabBarController.h */,
  1290. 71375C8E18D96EDE00EBA026 /* TabBarController.m */,
  1291. );
  1292. path = "Apex Mobile";
  1293. sourceTree = "<group>";
  1294. };
  1295. 719EF8E718BB839F00EFFF5F /* Supporting Files */ = {
  1296. isa = PBXGroup;
  1297. children = (
  1298. 719EF8E818BB839F00EFFF5F /* Apex Mobile-Info.plist */,
  1299. 719EF8E918BB839F00EFFF5F /* InfoPlist.strings */,
  1300. 719EF8EC18BB839F00EFFF5F /* main.m */,
  1301. 719EF8EE18BB839F00EFFF5F /* Apex Mobile-Prefix.pch */,
  1302. );
  1303. name = "Supporting Files";
  1304. sourceTree = "<group>";
  1305. };
  1306. 719EF90B18BB839F00EFFF5F /* Apex MobileTests */ = {
  1307. isa = PBXGroup;
  1308. children = (
  1309. 719EF91118BB839F00EFFF5F /* Apex_MobileTests.m */,
  1310. 719EF90C18BB839F00EFFF5F /* Supporting Files */,
  1311. );
  1312. path = "Apex MobileTests";
  1313. sourceTree = "<group>";
  1314. };
  1315. 719EF90C18BB839F00EFFF5F /* Supporting Files */ = {
  1316. isa = PBXGroup;
  1317. children = (
  1318. 719EF90D18BB839F00EFFF5F /* Apex MobileTests-Info.plist */,
  1319. 719EF90E18BB839F00EFFF5F /* InfoPlist.strings */,
  1320. );
  1321. name = "Supporting Files";
  1322. sourceTree = "<group>";
  1323. };
  1324. 71A003F918D680250057CDFD /* password */ = {
  1325. isa = PBXGroup;
  1326. children = (
  1327. 71A003FA18D680560057CDFD /* RetrievePasswordViewController.h */,
  1328. 71A003FB18D680560057CDFD /* RetrievePasswordViewController.m */,
  1329. 71A003FD18D6BFB40057CDFD /* ChangePasswordViewController.h */,
  1330. 71A003FE18D6BFB40057CDFD /* ChangePasswordViewController.m */,
  1331. );
  1332. name = password;
  1333. sourceTree = "<group>";
  1334. };
  1335. 71A565E018C2141C00CDAC07 /* resource */ = {
  1336. isa = PBXGroup;
  1337. children = (
  1338. 71DA74A718BDDFB5003B46A6 /* about.htm */,
  1339. 714C39C119234065004F045B /* Localizable.strings */,
  1340. );
  1341. name = resource;
  1342. sourceTree = "<group>";
  1343. };
  1344. 71B799822021AE3200F8685E /* result */ = {
  1345. isa = PBXGroup;
  1346. children = (
  1347. 71E0D1D62022AB7E009A08EB /* FullyShowViewController.h */,
  1348. 71E0D1D22022AB7E009A08EB /* FullyShowViewController.m */,
  1349. 71E0D1D52022AB7E009A08EB /* Result.storyboard */,
  1350. 426F39802033D0930025C568 /* ResultCell.h */,
  1351. 426F39812033D0930025C568 /* ResultCell.m */,
  1352. 71E0D1D42022AB7E009A08EB /* ResultViewController.h */,
  1353. 71E0D1D32022AB7E009A08EB /* ResultViewController.m */,
  1354. 71B799992021B22D00F8685E /* AMResultViewController.h */,
  1355. 71B7999A2021B22D00F8685E /* AMResultViewController.m */,
  1356. 4235C30220229F7200A99D04 /* Result.xib */,
  1357. 4235C3042022A60A00A99D04 /* ResultCell.xib */,
  1358. 71FCDE0520492B5E00B0746B /* MyQLPreviewController.h */,
  1359. 71FCDE0620492B5E00B0746B /* MyQLPreviewController.m */,
  1360. );
  1361. name = result;
  1362. sourceTree = "<group>";
  1363. };
  1364. 71B7998E2021AE7F00F8685E /* customUI */ = {
  1365. isa = PBXGroup;
  1366. children = (
  1367. 71B7998B2021AE7400F8685E /* MDHTMLLabel.h */,
  1368. 71B7998C2021AE7400F8685E /* MDHTMLLabel.m */,
  1369. );
  1370. name = customUI;
  1371. sourceTree = "<group>";
  1372. };
  1373. 71C72714191CFF11001127E0 /* message */ = {
  1374. isa = PBXGroup;
  1375. children = (
  1376. 711BA6BF191E0525002EDE6F /* MessageViewController.h */,
  1377. 711BA6C0191E0525002EDE6F /* MessageViewController.m */,
  1378. 711BA6C2191E0553002EDE6F /* MessageItem.h */,
  1379. 711BA6C3191E0553002EDE6F /* MessageItem.m */,
  1380. 71308AF5191E7B0E0024B2B0 /* MessageDetailItem.h */,
  1381. 71308AF6191E7B0E0024B2B0 /* MessageDetailItem.m */,
  1382. 71308AF8191E7B2A0024B2B0 /* MessageDetailViewController.h */,
  1383. 71308AF9191E7B2A0024B2B0 /* MessageDetailViewController.m */,
  1384. );
  1385. name = message;
  1386. sourceTree = "<group>";
  1387. };
  1388. /* End PBXGroup section */
  1389. /* Begin PBXNativeTarget section */
  1390. 719EF8DC18BB839F00EFFF5F /* Apex Mobile */ = {
  1391. isa = PBXNativeTarget;
  1392. buildConfigurationList = 719EF91518BB839F00EFFF5F /* Build configuration list for PBXNativeTarget "Apex Mobile" */;
  1393. buildPhases = (
  1394. 719EF8D918BB839F00EFFF5F /* Sources */,
  1395. 719EF8DA18BB839F00EFFF5F /* Frameworks */,
  1396. 719EF8DB18BB839F00EFFF5F /* Resources */,
  1397. );
  1398. buildRules = (
  1399. );
  1400. dependencies = (
  1401. );
  1402. name = "Apex Mobile";
  1403. productName = "Apex Mobile";
  1404. productReference = 719EF8DD18BB839F00EFFF5F /* Apex Mobile.app */;
  1405. productType = "com.apple.product-type.application";
  1406. };
  1407. /* End PBXNativeTarget section */
  1408. /* Begin PBXProject section */
  1409. 719EF8D518BB839F00EFFF5F /* Project object */ = {
  1410. isa = PBXProject;
  1411. attributes = {
  1412. CLASSPREFIX = ApexMobile;
  1413. LastUpgradeCheck = 0930;
  1414. ORGANIZATIONNAME = "United Software Applications, Inc";
  1415. TargetAttributes = {
  1416. 719EF8DC18BB839F00EFFF5F = {
  1417. DevelopmentTeam = HXWLAA5YN5;
  1418. ProvisioningStyle = Automatic;
  1419. SystemCapabilities = {
  1420. com.apple.Push = {
  1421. enabled = 1;
  1422. };
  1423. };
  1424. };
  1425. };
  1426. };
  1427. buildConfigurationList = 719EF8D818BB839F00EFFF5F /* Build configuration list for PBXProject "Apex Mobile" */;
  1428. compatibilityVersion = "Xcode 3.2";
  1429. developmentRegion = en;
  1430. hasScannedForEncodings = 0;
  1431. knownRegions = (
  1432. en,
  1433. Base,
  1434. "zh-Hans",
  1435. );
  1436. mainGroup = 719EF8D418BB839F00EFFF5F;
  1437. productRefGroup = 719EF8DE18BB839F00EFFF5F /* Products */;
  1438. projectDirPath = "";
  1439. projectRoot = "";
  1440. targets = (
  1441. 719EF8DC18BB839F00EFFF5F /* Apex Mobile */,
  1442. );
  1443. };
  1444. /* End PBXProject section */
  1445. /* Begin PBXResourcesBuildPhase section */
  1446. 719EF8DB18BB839F00EFFF5F /* Resources */ = {
  1447. isa = PBXResourcesBuildPhase;
  1448. buildActionMask = 2147483647;
  1449. files = (
  1450. 42541ACF207C49610072BC5A /* fake_home.json in Resources */,
  1451. 71625470201C5205009E3A41 /* fake_container_list.json in Resources */,
  1452. 7162546B201C3AF1009E3A41 /* readme.txt in Resources */,
  1453. 42604129201C57A7002374A8 /* ShipSearch.storyboard in Resources */,
  1454. 715643DC201C117300B04267 /* search.json in Resources */,
  1455. 420DEF3120A189AA00720524 /* AMCommEditCell.xib in Resources */,
  1456. 4235C30320229F7200A99D04 /* Result.xib in Resources */,
  1457. 425390212079B99B00ECF982 /* PieChart.xcassets in Resources */,
  1458. 3CA1A2DE23A212E700639FCC /* Launch Screen.storyboard in Resources */,
  1459. 715709BC20215E0000EFE5C5 /* LICENSE in Resources */,
  1460. 4225E43A21E08A8C009D2364 /* ApexResultDocumentCell.xib in Resources */,
  1461. 4253900F2079B7C700ECF982 /* KPIPieChartCell.xib in Resources */,
  1462. 42FB6EBE21F2BAB800F694AB /* ApexResultBLInfoCell.xib in Resources */,
  1463. 71E0D1D92022AB7E009A08EB /* Result.storyboard in Resources */,
  1464. 715643DE201C1AE600B04267 /* my.json in Resources */,
  1465. 71807B982021965B00E1F1DD /* fake_tracking.json in Resources */,
  1466. 715643D7201AD99300B04267 /* StaticModeTableViewCell.xib in Resources */,
  1467. 71DA74A818BDDFB5003B46A6 /* about.htm in Resources */,
  1468. 42FB6EB921F2B9FE00F694AB /* ApexResultContainerCell.xib in Resources */,
  1469. 714C39BF19234065004F045B /* Localizable.strings in Resources */,
  1470. 427CF5D02023F5560041472A /* NewImages.xcassets in Resources */,
  1471. 4225E42621E08576009D2364 /* ApexResult.storyboard in Resources */,
  1472. 42E8212F21F6ED1800127705 /* ApexResultAdditionView.xib in Resources */,
  1473. 420DEF2720A1898500720524 /* AMCommHeadCell.xib in Resources */,
  1474. 42BB740B2084737800B9B6E4 /* KPILegendCell.xib in Resources */,
  1475. 3C57169E23D186A30002E9FC /* wkweb.storyboard in Resources */,
  1476. 425390262079B9B500ECF982 /* KPI.json in Resources */,
  1477. 715643DA201C079F00B04267 /* tools.json in Resources */,
  1478. 715643D5201AD2AB00B04267 /* StaticModelistViewController.xib in Resources */,
  1479. 71807B9E2021ACE500E1F1DD /* fake_search.json in Resources */,
  1480. 715643B720198A1400B04267 /* Main.storyboard in Resources */,
  1481. 7162546D201C412E009E3A41 /* ShippingStatusCell.xib in Resources */,
  1482. 420DEF2C20A1899600720524 /* AMCommContentCell.xib in Resources */,
  1483. 42FB6EC321F2BB6400F694AB /* ApexResultBookingCell.xib in Resources */,
  1484. 42BB74092084732D00B9B6E4 /* KPICell.xib in Resources */,
  1485. 42BB740720846B4500B9B6E4 /* KPITableCell.xib in Resources */,
  1486. 719EF8EB18BB839F00EFFF5F /* InfoPlist.strings in Resources */,
  1487. 4235C3052022A60A00A99D04 /* ResultCell.xib in Resources */,
  1488. );
  1489. runOnlyForDeploymentPostprocessing = 0;
  1490. };
  1491. /* End PBXResourcesBuildPhase section */
  1492. /* Begin PBXSourcesBuildPhase section */
  1493. 719EF8D918BB839F00EFFF5F /* Sources */ = {
  1494. isa = PBXSourcesBuildPhase;
  1495. buildActionMask = 2147483647;
  1496. files = (
  1497. 715709A620215B5100EFE5C5 /* unzip.c in Sources */,
  1498. 4225E44821E099CB009D2364 /* ApexResultPresenter.m in Sources */,
  1499. 715643D3201ACB1700B04267 /* StaticModeTableViewCell.m in Sources */,
  1500. 718BE8B2190F9D970046EA6A /* MyAutocompleteItemsSource.m in Sources */,
  1501. 71406DCE18C36A52000914C4 /* TableCellBool.m in Sources */,
  1502. 426E8ABD2021AEC50073BA5D /* JLCustomerNavigationAlertController.m in Sources */,
  1503. 3C0F4E9423BAE74F000A2FE7 /* CachedTileOverlay.m in Sources */,
  1504. 71A01D7F18C9AEC8003307A9 /* DetailCellWeb.m in Sources */,
  1505. 3C0F4E9723BAF594000A2FE7 /* FileCache.m in Sources */,
  1506. 71A01D8518C9BDC8003307A9 /* DetailTabBarController.m in Sources */,
  1507. 71F67CFC19066375004E8462 /* PulldownMenu.m in Sources */,
  1508. 71406DD118C36A6E000914C4 /* TableCellDate.m in Sources */,
  1509. 717D772F18C84E3F0070302D /* PageData.m in Sources */,
  1510. 425390202079B99B00ECF982 /* XYCommon.m in Sources */,
  1511. 715709BB20215E0000EFE5C5 /* NSData+Base64.m in Sources */,
  1512. 71375C8F18D96EDE00EBA026 /* TabBarController.m in Sources */,
  1513. 42BB7402208431DA00B9B6E4 /* KPILegendCell.m in Sources */,
  1514. 42FB6EC921F2BC8600F694AB /* ApexResultAddition.m in Sources */,
  1515. 42253C98209C3C0F00879B09 /* AMShipMap.m in Sources */,
  1516. 71951E6F18C6A9A5005024BD /* TouchLabel.m in Sources */,
  1517. 71DA6047190A00F600683003 /* FavoritesData.m in Sources */,
  1518. 425CF099201EB2B500750E32 /* UIScrollView+JLRefresh.m in Sources */,
  1519. 4225E44F21E0A39A009D2364 /* RAProgressHUD.m in Sources */,
  1520. 71A01D7C18C9AE97003307A9 /* DetailCellList.m in Sources */,
  1521. 4225E44021E08AEF009D2364 /* ApexResultDocumentModel.m in Sources */,
  1522. 4225E45021E0A39A009D2364 /* UIView+RAConstraint.m in Sources */,
  1523. 71807B9C2021979A00E1F1DD /* DetailCellTracking.m in Sources */,
  1524. 42539029207A159300ECF982 /* KPIButton.m in Sources */,
  1525. 71DA74A618BDDD31003B46A6 /* AboutViewController.m in Sources */,
  1526. 420DEF2620A1898500720524 /* AMCommHeadCell.m in Sources */,
  1527. 715643C42019B58400B04267 /* OrderHistoryViewController.m in Sources */,
  1528. 712CBA0318CF38DB00C61394 /* RTLabel.m in Sources */,
  1529. 425390242079B99B00ECF982 /* XYRenderView.m in Sources */,
  1530. 3C2D99A2239B92F1007B759E /* ApexMapView.m in Sources */,
  1531. 71CEE3D718CC559B00052C63 /* ApexMobileNavigationController.m in Sources */,
  1532. 426F39822033D0930025C568 /* ResultCell.m in Sources */,
  1533. 715709922021574D00EFE5C5 /* RAConvertor.m in Sources */,
  1534. 71BA50371908F21500D0BD31 /* HistoryData.m in Sources */,
  1535. 71330C2018BCC4DA0048956C /* FunctionSelectViewController.m in Sources */,
  1536. 716027D4204D3D15003CA085 /* LPShareActivity.m in Sources */,
  1537. 715643D02019BCCE00B04267 /* MylistViewController.m in Sources */,
  1538. 715709B920215E0000EFE5C5 /* NSData+CommonCrypto.m in Sources */,
  1539. 718BE8B4190F9D970046EA6A /* MySuggestion.m in Sources */,
  1540. 715709A520215B5100EFE5C5 /* zip.c in Sources */,
  1541. 715709AE20215CB000EFE5C5 /* RANetwork.m in Sources */,
  1542. 42FB6ECF21F3136300F694AB /* ApexResultMenuItem.m in Sources */,
  1543. 425390222079B99B00ECF982 /* XYRotatedView.m in Sources */,
  1544. 719EF8FD18BB839F00EFFF5F /* ApexMobileSecondViewController.m in Sources */,
  1545. 4225E44321E08B47009D2364 /* ApexResultBaseModel.m in Sources */,
  1546. 42253C94209C007700879B09 /* AMMapView.m in Sources */,
  1547. 715709BA20215E0000EFE5C5 /* NSString+Base64.m in Sources */,
  1548. 71AE427318C47AF900B8EC3D /* SearchViewController.m in Sources */,
  1549. 715643BE2019AA9B00B04267 /* LoginViewController.m in Sources */,
  1550. 4225E43321E08A54009D2364 /* ApexResultContainerCell.m in Sources */,
  1551. 7103C84B22549E7F00261926 /* CLLocation+Sino.m in Sources */,
  1552. 71308AF7191E7B0E0024B2B0 /* MessageDetailItem.m in Sources */,
  1553. 71A565D918C20F5900CDAC07 /* SearchTableAdapter.m in Sources */,
  1554. 719EF8FA18BB839F00EFFF5F /* ApexMobileFirstViewController.m in Sources */,
  1555. 4225E42421E08502009D2364 /* ApexResultViewController.m in Sources */,
  1556. 719BEC1718FFAB7B00DFE987 /* ToolsPanelViewController.m in Sources */,
  1557. 71BA502E1908ED5700D0BD31 /* CellItemHistory.m in Sources */,
  1558. 719A51A518C5A4AF0080C075 /* SimpleGrid.m in Sources */,
  1559. 426E8AB9202163EC0073BA5D /* JLCustomerAlertController.m in Sources */,
  1560. 71A003FF18D6BFB40057CDFD /* ChangePasswordViewController.m in Sources */,
  1561. 42604122201C4B41002374A8 /* ShipingStatusCell.m in Sources */,
  1562. 71CEE38A18CB749E00052C63 /* DetailPageViewController.m in Sources */,
  1563. 719E7E3318C0368A003408FF /* ApexMobileDB.m in Sources */,
  1564. 425CF096201EB2B500750E32 /* JLRefreshFooter.m in Sources */,
  1565. 715643C12019B27500B04267 /* HomeViewController.m in Sources */,
  1566. 420DEF2B20A1899600720524 /* AMCommContentCell.m in Sources */,
  1567. 715643C72019BB6700B04267 /* StaticModelistViewController.m in Sources */,
  1568. 7101BEC82031389A00CC6E3A /* DetailCellKVNew.m in Sources */,
  1569. 71E0D1D82022AB7E009A08EB /* ResultViewController.m in Sources */,
  1570. 42BFD2D2207B697800DA9038 /* KPICell.m in Sources */,
  1571. 7157098E2021572600EFE5C5 /* NetworkUtils.m in Sources */,
  1572. 420F0CA420901C2E005C4690 /* KPIRepeatTapGestureRecognizer.m in Sources */,
  1573. 719EF8F118BB839F00EFFF5F /* AppDelegate.m in Sources */,
  1574. 714C39B81922FEE1004F045B /* NewsDetailViewController.m in Sources */,
  1575. 4225E43921E08A8C009D2364 /* ApexResultDocumentCell.m in Sources */,
  1576. 425CF098201EB2B500750E32 /* JLRefreshBasis.m in Sources */,
  1577. 715643CD2019BC6C00B04267 /* ToolslistViewController.m in Sources */,
  1578. 3C2D99A5239B93C8007B759E /* AMViewController.m in Sources */,
  1579. 712A301318CFEF550022E6E6 /* CustomizeFieldViewController.m in Sources */,
  1580. 715709BD20215E0000EFE5C5 /* AESCrypt.m in Sources */,
  1581. 716FF7921904ED2600ED6C3D /* NewsData.m in Sources */,
  1582. 42DE626220A41907005FB582 /* AMTextField.m in Sources */,
  1583. 71F67CF619063612004E8462 /* ApexHistoryViewController.m in Sources */,
  1584. 7130B3F41900FB61000610D8 /* NewsViewController.m in Sources */,
  1585. 711BA6C1191E0525002EDE6F /* MessageViewController.m in Sources */,
  1586. 711BA6C4191E0553002EDE6F /* MessageItem.m in Sources */,
  1587. 71BA50311908ED9100D0BD31 /* HistoryViewController.m in Sources */,
  1588. 71A2D76218DC3895001C380A /* LineView.m in Sources */,
  1589. 71B7999B2021B22D00F8685E /* AMResultViewController.m in Sources */,
  1590. 425CF097201EB2B500750E32 /* JLRefreshHeader.m in Sources */,
  1591. 42BCACCD209AE342009DDA43 /* AMMapAnnotaion.m in Sources */,
  1592. 42FB6EC221F2BB6400F694AB /* ApexResultBookingCell.m in Sources */,
  1593. 3C1DEC3D239F6C42006F7E2A /* MKMapView+ZoomLevel.m in Sources */,
  1594. 711DC6B218C30A4800FB1749 /* TableCellEdit.m in Sources */,
  1595. 716027D1204D334A003CA085 /* DetailShareItemProvider.m in Sources */,
  1596. 4225E43021E088AA009D2364 /* ApexResultViewController+TableDataSource.m in Sources */,
  1597. 420DEF3020A189AA00720524 /* AMCommEditCell.m in Sources */,
  1598. 71A01D8218C9BA67003307A9 /* DetailContent.m in Sources */,
  1599. 71A003FC18D680560057CDFD /* RetrievePasswordViewController.m in Sources */,
  1600. 71FCDE0720492B5E00B0746B /* MyQLPreviewController.m in Sources */,
  1601. 42FB6EC621F2BC5300F694AB /* ApexResultBookingModel.m in Sources */,
  1602. 71F67CF919065EA8004E8462 /* SimpleMenu.m in Sources */,
  1603. 719A51BA18C5AB7B0080C075 /* SimpleGridComponent.m in Sources */,
  1604. 42C6754E21E2F1D4001E3FF4 /* ApexResultAdditionView.m in Sources */,
  1605. 71570996202157A600EFE5C5 /* RAUtils.m in Sources */,
  1606. 715643BB20198A9900B04267 /* RootViewController.m in Sources */,
  1607. 4225E42D21E08895009D2364 /* ApexResultViewController+TableDelegate.m in Sources */,
  1608. 426E8ABA202163EC0073BA5D /* JLPresentationController.m in Sources */,
  1609. 71B7998D2021AE7400F8685E /* MDHTMLLabel.m in Sources */,
  1610. 71E0D1D72022AB7E009A08EB /* FullyShowViewController.m in Sources */,
  1611. 719EF8ED18BB839F00EFFF5F /* main.m in Sources */,
  1612. 42FB6ECC21F2C0E300F694AB /* ApexResultBLInfoModel.m in Sources */,
  1613. 717D76EB18C7F8120070302D /* Reachability.m in Sources */,
  1614. 42FB6EBD21F2BAB800F694AB /* ApexResultBLInfoCell.m in Sources */,
  1615. 715709A720215B5100EFE5C5 /* ioapi.c in Sources */,
  1616. 4253900E2079B7C700ECF982 /* KPIPieChartCell.m in Sources */,
  1617. 42BB740620846B4500B9B6E4 /* KPITableCell.m in Sources */,
  1618. 715643CA2019BC4C00B04267 /* SearchlistViewController.m in Sources */,
  1619. 7120DD0418BE273900E7546F /* LocationViewController.m in Sources */,
  1620. 71308AFA191E7B2A0024B2B0 /* MessageDetailViewController.m in Sources */,
  1621. 713AA7A1191736E600B44092 /* DocumentsViewController.m in Sources */,
  1622. 716FF7951904FBC600ED6C3D /* NewsTableViewCell.m in Sources */,
  1623. 715709AB20215B6200EFE5C5 /* ZipArchive.mm in Sources */,
  1624. 42BCACCA209AE243009DDA43 /* AMAnnotationView.m in Sources */,
  1625. 425CF09A201EB2B500750E32 /* UIView+JLExtension.m in Sources */,
  1626. 42C6755221E32654001E3FF4 /* ApexResultViewController+QuickLook.m in Sources */,
  1627. 71A01D7918C9AE77003307A9 /* DetailCellKV.m in Sources */,
  1628. 42604127201C578B002374A8 /* ShipSearchController.m in Sources */,
  1629. 713AA7A41917373600B44092 /* LocalDocumentsViewController.m in Sources */,
  1630. 71DA604A190A02CE00683003 /* FavoritesViewController.m in Sources */,
  1631. 71BA50341908EDCF00D0BD31 /* HistoryTabBarController.m in Sources */,
  1632. 715709A820215B5100EFE5C5 /* mztools.c in Sources */,
  1633. 719A51A918C5A5D30080C075 /* SimpleGridDataSource.m in Sources */,
  1634. 718BE8B3190F9D970046EA6A /* MyAutocompletionCellFactory.m in Sources */,
  1635. 425390232079B99B00ECF982 /* XYPieChartView.m in Sources */,
  1636. 3C57169D23D186A30002E9FC /* WebViewController.m in Sources */,
  1637. 71570999202157BD00EFE5C5 /* RANetworkTaskDelegate.m in Sources */,
  1638. 71A565DF18C212EA00CDAC07 /* Constant.m in Sources */,
  1639. 4225E43D21E08ACE009D2364 /* ApexResultContainerModel.m in Sources */,
  1640. 718BE8B0190F9D970046EA6A /* MyAutocompleteView.m in Sources */,
  1641. );
  1642. runOnlyForDeploymentPostprocessing = 0;
  1643. };
  1644. /* End PBXSourcesBuildPhase section */
  1645. /* Begin PBXVariantGroup section */
  1646. 714C39C119234065004F045B /* Localizable.strings */ = {
  1647. isa = PBXVariantGroup;
  1648. children = (
  1649. 714C39C019234065004F045B /* Base */,
  1650. );
  1651. name = Localizable.strings;
  1652. sourceTree = "<group>";
  1653. };
  1654. 719EF8E918BB839F00EFFF5F /* InfoPlist.strings */ = {
  1655. isa = PBXVariantGroup;
  1656. children = (
  1657. 719EF8EA18BB839F00EFFF5F /* en */,
  1658. );
  1659. name = InfoPlist.strings;
  1660. sourceTree = "<group>";
  1661. };
  1662. 719EF90E18BB839F00EFFF5F /* InfoPlist.strings */ = {
  1663. isa = PBXVariantGroup;
  1664. children = (
  1665. 719EF90F18BB839F00EFFF5F /* en */,
  1666. );
  1667. name = InfoPlist.strings;
  1668. sourceTree = "<group>";
  1669. };
  1670. /* End PBXVariantGroup section */
  1671. /* Begin XCBuildConfiguration section */
  1672. 719EF91318BB839F00EFFF5F /* Debug */ = {
  1673. isa = XCBuildConfiguration;
  1674. buildSettings = {
  1675. ALWAYS_SEARCH_USER_PATHS = NO;
  1676. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1677. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1678. CLANG_CXX_LIBRARY = "libc++";
  1679. CLANG_ENABLE_MODULES = YES;
  1680. CLANG_ENABLE_OBJC_ARC = YES;
  1681. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1682. CLANG_WARN_BOOL_CONVERSION = YES;
  1683. CLANG_WARN_COMMA = YES;
  1684. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1685. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1686. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1687. CLANG_WARN_EMPTY_BODY = YES;
  1688. CLANG_WARN_ENUM_CONVERSION = YES;
  1689. CLANG_WARN_INFINITE_RECURSION = YES;
  1690. CLANG_WARN_INT_CONVERSION = YES;
  1691. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1692. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1693. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1694. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1695. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1696. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1697. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1698. CLANG_WARN_UNREACHABLE_CODE = YES;
  1699. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1700. CODE_SIGN_IDENTITY = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
  1701. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
  1702. COPY_PHASE_STRIP = NO;
  1703. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1704. ENABLE_TESTABILITY = YES;
  1705. GCC_C_LANGUAGE_STANDARD = gnu99;
  1706. GCC_DYNAMIC_NO_PIC = NO;
  1707. GCC_NO_COMMON_BLOCKS = YES;
  1708. GCC_OPTIMIZATION_LEVEL = 0;
  1709. GCC_PREPROCESSOR_DEFINITIONS = (
  1710. "DEBUG=1",
  1711. "$(inherited)",
  1712. );
  1713. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  1714. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1715. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1716. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1717. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  1718. GCC_WARN_UNUSED_FUNCTION = YES;
  1719. GCC_WARN_UNUSED_VARIABLE = YES;
  1720. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  1721. ONLY_ACTIVE_ARCH = YES;
  1722. SDKROOT = iphoneos;
  1723. TARGETED_DEVICE_FAMILY = 1;
  1724. };
  1725. name = Debug;
  1726. };
  1727. 719EF91418BB839F00EFFF5F /* Release */ = {
  1728. isa = XCBuildConfiguration;
  1729. buildSettings = {
  1730. ALWAYS_SEARCH_USER_PATHS = NO;
  1731. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1732. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1733. CLANG_CXX_LIBRARY = "libc++";
  1734. CLANG_ENABLE_MODULES = YES;
  1735. CLANG_ENABLE_OBJC_ARC = YES;
  1736. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1737. CLANG_WARN_BOOL_CONVERSION = YES;
  1738. CLANG_WARN_COMMA = YES;
  1739. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1740. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1741. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1742. CLANG_WARN_EMPTY_BODY = YES;
  1743. CLANG_WARN_ENUM_CONVERSION = YES;
  1744. CLANG_WARN_INFINITE_RECURSION = YES;
  1745. CLANG_WARN_INT_CONVERSION = YES;
  1746. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1747. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1748. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1749. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1750. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1751. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1752. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1753. CLANG_WARN_UNREACHABLE_CODE = YES;
  1754. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1755. CODE_SIGN_IDENTITY = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
  1756. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: United Software Applications, Inc (HXWLAA5YN5)";
  1757. COPY_PHASE_STRIP = YES;
  1758. ENABLE_NS_ASSERTIONS = NO;
  1759. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1760. GCC_C_LANGUAGE_STANDARD = gnu99;
  1761. GCC_NO_COMMON_BLOCKS = YES;
  1762. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1763. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1764. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1765. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  1766. GCC_WARN_UNUSED_FUNCTION = YES;
  1767. GCC_WARN_UNUSED_VARIABLE = YES;
  1768. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  1769. SDKROOT = iphoneos;
  1770. TARGETED_DEVICE_FAMILY = 1;
  1771. VALIDATE_PRODUCT = YES;
  1772. };
  1773. name = Release;
  1774. };
  1775. 719EF91618BB839F00EFFF5F /* Debug */ = {
  1776. isa = XCBuildConfiguration;
  1777. buildSettings = {
  1778. ALWAYS_SEARCH_USER_PATHS = NO;
  1779. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1780. CODE_SIGN_ENTITLEMENTS = "Apex Mobile/Apex Mobile.entitlements";
  1781. CODE_SIGN_IDENTITY = "iPhone Developer";
  1782. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1783. CODE_SIGN_STYLE = Automatic;
  1784. CURRENT_PROJECT_VERSION = 200117;
  1785. DEVELOPMENT_TEAM = "";
  1786. ENABLE_BITCODE = YES;
  1787. FRAMEWORK_SEARCH_PATHS = (
  1788. "$(inherited)",
  1789. "$(PROJECT_DIR)",
  1790. );
  1791. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1792. GCC_PREFIX_HEADER = "Apex Mobile/Apex Mobile-Prefix.pch";
  1793. GCC_PREPROCESSOR_DEFINITIONS = (
  1794. "DEBUG=1",
  1795. "$(inherited)",
  1796. );
  1797. HEADER_SEARCH_PATHS = "";
  1798. INFOPLIST_FILE = "Apex Mobile/Apex Mobile-Info.plist";
  1799. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  1800. MARKETING_VERSION = 2.80;
  1801. OTHER_LDFLAGS = "-ObjC";
  1802. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.$(PRODUCT_NAME:rfc1034identifier)";
  1803. PRODUCT_NAME = "$(TARGET_NAME)";
  1804. PROVISIONING_PROFILE = "";
  1805. "PROVISIONING_PROFILE[sdk=*]" = "";
  1806. PROVISIONING_PROFILE_SPECIFIER = "";
  1807. TARGETED_DEVICE_FAMILY = 1;
  1808. USER_HEADER_SEARCH_PATHS = "";
  1809. "VALID_ARCHS[sdk=*]" = "arm64 armv7 armv7s";
  1810. WRAPPER_EXTENSION = app;
  1811. };
  1812. name = Debug;
  1813. };
  1814. 719EF91718BB839F00EFFF5F /* Release */ = {
  1815. isa = XCBuildConfiguration;
  1816. buildSettings = {
  1817. ALWAYS_SEARCH_USER_PATHS = NO;
  1818. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1819. CODE_SIGN_ENTITLEMENTS = "Apex Mobile/Apex Mobile.entitlements";
  1820. CODE_SIGN_IDENTITY = "iPhone Distribution";
  1821. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1822. CODE_SIGN_STYLE = Automatic;
  1823. CURRENT_PROJECT_VERSION = 200117;
  1824. DEVELOPMENT_TEAM = "";
  1825. ENABLE_BITCODE = YES;
  1826. FRAMEWORK_SEARCH_PATHS = (
  1827. "$(inherited)",
  1828. "$(PROJECT_DIR)",
  1829. );
  1830. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1831. GCC_PREFIX_HEADER = "Apex Mobile/Apex Mobile-Prefix.pch";
  1832. HEADER_SEARCH_PATHS = "";
  1833. INFOPLIST_FILE = "Apex Mobile/Apex Mobile-Info.plist";
  1834. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  1835. MARKETING_VERSION = 2.80;
  1836. OTHER_LDFLAGS = "-ObjC";
  1837. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.$(PRODUCT_NAME:rfc1034identifier)";
  1838. PRODUCT_NAME = "$(TARGET_NAME)";
  1839. PROVISIONING_PROFILE = "";
  1840. PROVISIONING_PROFILE_SPECIFIER = "";
  1841. TARGETED_DEVICE_FAMILY = 1;
  1842. USER_HEADER_SEARCH_PATHS = "";
  1843. WRAPPER_EXTENSION = app;
  1844. };
  1845. name = Release;
  1846. };
  1847. /* End XCBuildConfiguration section */
  1848. /* Begin XCConfigurationList section */
  1849. 719EF8D818BB839F00EFFF5F /* Build configuration list for PBXProject "Apex Mobile" */ = {
  1850. isa = XCConfigurationList;
  1851. buildConfigurations = (
  1852. 719EF91318BB839F00EFFF5F /* Debug */,
  1853. 719EF91418BB839F00EFFF5F /* Release */,
  1854. );
  1855. defaultConfigurationIsVisible = 0;
  1856. defaultConfigurationName = Debug;
  1857. };
  1858. 719EF91518BB839F00EFFF5F /* Build configuration list for PBXNativeTarget "Apex Mobile" */ = {
  1859. isa = XCConfigurationList;
  1860. buildConfigurations = (
  1861. 719EF91618BB839F00EFFF5F /* Debug */,
  1862. 719EF91718BB839F00EFFF5F /* Release */,
  1863. );
  1864. defaultConfigurationIsVisible = 0;
  1865. defaultConfigurationName = Debug;
  1866. };
  1867. /* End XCConfigurationList section */
  1868. };
  1869. rootObject = 719EF8D518BB839F00EFFF5F /* Project object */;
  1870. }