project.pbxproj 202 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 428980011E24902E005F1BD8 /* JKTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980001E24902E005F1BD8 /* JKTimerManager.m */; };
  10. 428980071E2490E3005F1BD8 /* NotificationNameCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980061E2490E3005F1BD8 /* NotificationNameCenter.m */; };
  11. 4289800D1E2491A6005F1BD8 /* CartUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289800C1E2491A6005F1BD8 /* CartUtils.m */; };
  12. 4289801F1E24925A005F1BD8 /* SortButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289801A1E24925A005F1BD8 /* SortButton.m */; };
  13. 428980201E24925A005F1BD8 /* SortItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289801C1E24925A005F1BD8 /* SortItemCell.m */; };
  14. 428980211E24925A005F1BD8 /* SortItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289801E1E24925A005F1BD8 /* SortItemViewController.m */; };
  15. 428980381E2492E0005F1BD8 /* CategoryPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980311E2492E0005F1BD8 /* CategoryPriceCell.m */; };
  16. 428980391E2492E0005F1BD8 /* CategoryPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980331E2492E0005F1BD8 /* CategoryPriceViewController.m */; };
  17. 4289803A1E2492E0005F1BD8 /* PriceSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980351E2492E0005F1BD8 /* PriceSettingViewController.m */; };
  18. 4289803B1E2492E0005F1BD8 /* SetCategoryPriceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980371E2492E0005F1BD8 /* SetCategoryPriceController.m */; };
  19. 428980521E249340005F1BD8 /* JKDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289804B1E249340005F1BD8 /* JKDotView.m */; };
  20. 428980531E249340005F1BD8 /* JKLockButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289804D1E249340005F1BD8 /* JKLockButton.m */; };
  21. 428980541E249340005F1BD8 /* JKLockController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289804F1E249340005F1BD8 /* JKLockController.m */; };
  22. 428980551E249340005F1BD8 /* JKMessageBoxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980511E249340005F1BD8 /* JKMessageBoxController.m */; };
  23. 428980591E24935E005F1BD8 /* UIColor+JK_HEX.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980581E24935E005F1BD8 /* UIColor+JK_HEX.m */; };
  24. 4289806A1E24A9DE005F1BD8 /* OfflineUnlockViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980651E24A9DE005F1BD8 /* OfflineUnlockViewController.m */; };
  25. 4289806B1E24A9DE005F1BD8 /* SelectOrderTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980671E24A9DE005F1BD8 /* SelectOrderTableViewCell.m */; };
  26. 4289806C1E24A9DE005F1BD8 /* SelectUploadOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980691E24A9DE005F1BD8 /* SelectUploadOrderViewController.m */; };
  27. 4289806F1E24AEA6005F1BD8 /* Singleton.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289806E1E24AEA6005F1BD8 /* Singleton.m */; };
  28. 4289808A1E24B2C2005F1BD8 /* BasicDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980751E24B2C2005F1BD8 /* BasicDrawable.m */; };
  29. 4289808B1E24B2C2005F1BD8 /* GridDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980771E24B2C2005F1BD8 /* GridDrawable.m */; };
  30. 4289808C1E24B2C2005F1BD8 /* GroupDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980791E24B2C2005F1BD8 /* GroupDrawable.m */; };
  31. 4289808D1E24B2C2005F1BD8 /* ImageDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289807B1E24B2C2005F1BD8 /* ImageDrawable.m */; };
  32. 4289808E1E24B2C2005F1BD8 /* LineDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289807D1E24B2C2005F1BD8 /* LineDrawable.m */; };
  33. 4289808F1E24B2C2005F1BD8 /* pdfCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289807F1E24B2C2005F1BD8 /* pdfCreator.m */; };
  34. 428980901E24B2C2005F1BD8 /* PDFDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980811E24B2C2005F1BD8 /* PDFDrawable.m */; };
  35. 428980911E24B2C2005F1BD8 /* PDFPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980831E24B2C2005F1BD8 /* PDFPage.m */; };
  36. 428980921E24B2C2005F1BD8 /* RectDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980851E24B2C2005F1BD8 /* RectDrawable.m */; };
  37. 428980931E24B2C2005F1BD8 /* TableDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980871E24B2C2005F1BD8 /* TableDrawable.m */; };
  38. 428980941E24B2C2005F1BD8 /* TextDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980891E24B2C2005F1BD8 /* TextDrawable.m */; };
  39. 428980971E24B2E7005F1BD8 /* ImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980961E24B2E7005F1BD8 /* ImageUtils.m */; };
  40. 4289809A1E24B304005F1BD8 /* TextUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980991E24B304005F1BD8 /* TextUtils.m */; };
  41. 42A85BF31E60039A0058A9CE /* HWWeakTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A85BF21E60039A0058A9CE /* HWWeakTimer.m */; };
  42. 42A85BFB1E6004180058A9CE /* ERPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A85BF61E6004180058A9CE /* ERPUtils.m */; };
  43. 42A85BFD1E6004180058A9CE /* PDFUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A85BFA1E6004180058A9CE /* PDFUtils.m */; };
  44. 42BB2F081E28986B0025C6CE /* signature.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 42BB2F071E28986B0025C6CE /* signature.storyboard */; };
  45. 42BEF3931E8A4C7D00632AB6 /* FirebaseAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3661E8A4C7D00632AB6 /* FirebaseAnalytics.framework */; };
  46. 42BEF3941E8A4C7D00632AB6 /* FirebaseCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3691E8A4C7D00632AB6 /* FirebaseCore.framework */; };
  47. 42BEF3951E8A4C7D00632AB6 /* CHANGELOG.md in Sources */ = {isa = PBXBuildFile; fileRef = 42BEF36B1E8A4C7D00632AB6 /* CHANGELOG.md */; };
  48. 42BEF3961E8A4C7D00632AB6 /* FirebaseInstanceID.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF36D1E8A4C7D00632AB6 /* FirebaseInstanceID.framework */; };
  49. 42BEF3971E8A4C7D00632AB6 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 42BEF36E1E8A4C7D00632AB6 /* README.md */; };
  50. 42BEF3981E8A4C7D00632AB6 /* GGLAnalytics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3711E8A4C7D00632AB6 /* GGLAnalytics.framework */; };
  51. 42BEF3991E8A4C7D00632AB6 /* GGLCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3721E8A4C7D00632AB6 /* GGLCore.framework */; };
  52. 42BEF39A1E8A4C7D00632AB6 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 42BEF37B1E8A4C7D00632AB6 /* README.md */; };
  53. 42BEF39B1E8A4C7D00632AB6 /* GoogleAnalyst.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BEF37D1E8A4C7D00632AB6 /* GoogleAnalyst.m */; };
  54. 42BEF39C1E8A4C7D00632AB6 /* libGoogleAnalytics.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3801E8A4C7D00632AB6 /* libGoogleAnalytics.a */; };
  55. 42BEF39D1E8A4C7D00632AB6 /* GTMNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BEF38F1E8A4C7D00632AB6 /* GTMNSData+zlib.m */; };
  56. 42BEF39E1E8A4C7D00632AB6 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 42BEF3911E8A4C7D00632AB6 /* LICENSE */; };
  57. 42BEF39F1E8A4C7D00632AB6 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = 42BEF3921E8A4C7D00632AB6 /* README.md */; };
  58. 42BEF3A21E8A4D0000632AB6 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3A11E8A4D0000632AB6 /* SystemConfiguration.framework */; };
  59. 42BEF3A41E8A4D0700632AB6 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF3A31E8A4D0700632AB6 /* CoreData.framework */; };
  60. 715002021D13CDBE00F5927F /* BundleDetailButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 715002011D13CDBE00F5927F /* BundleDetailButton.m */; };
  61. 715850431CF6F0C400856B20 /* DefaultAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 715850421CF6F0C400856B20 /* DefaultAppearance.m */; };
  62. 716AF8DE1D792157001188E0 /* offline_status_filter_cadedate.json in Resources */ = {isa = PBXBuildFile; fileRef = 716AF8DD1D792157001188E0 /* offline_status_filter_cadedate.json */; };
  63. 7183E8491CF2913E00524787 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8481CF2913E00524787 /* main.m */; };
  64. 7183E8541CF2913E00524787 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 7183E8531CF2913E00524787 /* Assets.xcassets */; };
  65. 7183E8571CF2913E00524787 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7183E8551CF2913E00524787 /* LaunchScreen.storyboard */; };
  66. 7183E8941CF29F3900524787 /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8621CF29F3900524787 /* ioapi.c */; };
  67. 7183E8951CF29F3900524787 /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8641CF29F3900524787 /* mztools.c */; };
  68. 7183E8961CF29F3900524787 /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8661CF29F3900524787 /* unzip.c */; };
  69. 7183E8971CF29F3900524787 /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8681CF29F3900524787 /* zip.c */; };
  70. 7183E8981CF29F3900524787 /* ZipArchive.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7183E86B1CF29F3900524787 /* ZipArchive.mm */; };
  71. 7183E8991CF29F3900524787 /* bitstream.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E86D1CF29F3900524787 /* bitstream.c */; };
  72. 7183E89A1CF29F3900524787 /* mask.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E86F1CF29F3900524787 /* mask.c */; };
  73. 7183E89B1CF29F3900524787 /* QRCodeGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8721CF29F3900524787 /* QRCodeGenerator.m */; };
  74. 7183E89C1CF29F3900524787 /* qrencode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8731CF29F3900524787 /* qrencode.c */; };
  75. 7183E89D1CF29F3900524787 /* qrinput.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8751CF29F3900524787 /* qrinput.c */; };
  76. 7183E89E1CF29F3900524787 /* qrspec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8771CF29F3900524787 /* qrspec.c */; };
  77. 7183E89F1CF29F3900524787 /* rscode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8791CF29F3900524787 /* rscode.c */; };
  78. 7183E8A01CF29F3900524787 /* split.c in Sources */ = {isa = PBXBuildFile; fileRef = 7183E87B1CF29F3900524787 /* split.c */; };
  79. 7183E8A11CF29F3900524787 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E87F1CF29F3900524787 /* AESCrypt.m */; };
  80. 7183E8A21CF29F3900524787 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 7183E8801CF29F3900524787 /* LICENSE */; };
  81. 7183E8A61CF29F3900524787 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8891CF29F3900524787 /* Reachability.m */; };
  82. 7183E8A71CF29F3900524787 /* RAUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E88C1CF29F3900524787 /* RAUtils.m */; };
  83. 7183E8A81CF29F3900524787 /* iSalesDB.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E88E1CF29F3900524787 /* iSalesDB.m */; };
  84. 7183E8A91CF29F3900524787 /* iSalesNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8901CF29F3900524787 /* iSalesNetwork.m */; };
  85. 7183E8FD1CF29F4500524787 /* PhotoBorder.png in Resources */ = {isa = PBXBuildFile; fileRef = 7183E8AB1CF29F4500524787 /* PhotoBorder.png */; };
  86. 7183E8FE1CF29F4500524787 /* PhotoBorder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7183E8AC1CF29F4500524787 /* PhotoBorder@2x.png */; };
  87. 7183E8FF1CF29F4500524787 /* PhotoStackView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8AE1CF29F4500524787 /* PhotoStackView.m */; };
  88. 7183E9001CF29F4500524787 /* PhotoStackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8B01CF29F4500524787 /* PhotoStackViewController.m */; };
  89. 7183E9011CF29F4500524787 /* CustomIOSAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8B31CF29F4500524787 /* CustomIOSAlertView.m */; };
  90. 7183E9021CF29F4500524787 /* ImageScrollerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8B51CF29F4500524787 /* ImageScrollerView.m */; };
  91. 7183E9031CF29F4500524787 /* ImageScrollerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8B71CF29F4500524787 /* ImageScrollerViewController.m */; };
  92. 7183E9041CF29F4500524787 /* ImageUploadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8B91CF29F4500524787 /* ImageUploadViewController.m */; };
  93. 7183E9051CF29F4500524787 /* ImageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8BB1CF29F4500524787 /* ImageViewController.m */; };
  94. 7183E9061CF29F4500524787 /* NIDropDown.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8BD1CF29F4500524787 /* NIDropDown.m */; };
  95. 7183E9071CF29F4500524787 /* PulldownMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8BF1CF29F4500524787 /* PulldownMenu.m */; };
  96. 7183E9081CF29F4500524787 /* RadioButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8C11CF29F4500524787 /* RadioButton.m */; };
  97. 7183E9091CF29F4500524787 /* RTLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8C31CF29F4500524787 /* RTLabel.m */; };
  98. 7183E90A1CF29F4500524787 /* SimpleGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8C51CF29F4500524787 /* SimpleGrid.m */; };
  99. 7183E90B1CF29F4500524787 /* StrikethroughLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8C71CF29F4500524787 /* StrikethroughLabel.m */; };
  100. 7183E90C1CF29F4500524787 /* TouchLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8C91CF29F4500524787 /* TouchLabel.m */; };
  101. 7183E90D1CF29F4500524787 /* TouchImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8CB1CF29F4500524787 /* TouchImageView.m */; };
  102. 7183E90E1CF29F4500524787 /* UILabel+FontAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8CD1CF29F4500524787 /* UILabel+FontAppearance.m */; };
  103. 7183E90F1CF29F4500524787 /* CommonEditorCellAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8D01CF29F4500524787 /* CommonEditorCellAction.m */; };
  104. 7183E9101CF29F4500524787 /* CommonEditorCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8D21CF29F4500524787 /* CommonEditorCellEdit.m */; };
  105. 7183E9111CF29F4500524787 /* CommonEditorCellEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8D41CF29F4500524787 /* CommonEditorCellEnum.m */; };
  106. 7183E9121CF29F4500524787 /* CommonEditorCellImg.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8D61CF29F4500524787 /* CommonEditorCellImg.m */; };
  107. 7183E9131CF29F4500524787 /* CommonEditorCellLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8D81CF29F4500524787 /* CommonEditorCellLabel.m */; };
  108. 7183E9141CF29F4500524787 /* CommonEditorCellMAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8DA1CF29F4500524787 /* CommonEditorCellMAction.m */; };
  109. 7183E9151CF29F4500524787 /* CommonEditorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8DC1CF29F4500524787 /* CommonEditorCellModel.m */; };
  110. 7183E9161CF29F4500524787 /* CommonEditorCellSignature.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8DE1CF29F4500524787 /* CommonEditorCellSignature.m */; };
  111. 7183E9171CF29F4500524787 /* CommonEditorCellSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8E01CF29F4500524787 /* CommonEditorCellSwitch.m */; };
  112. 7183E9181CF29F4500524787 /* CommonEditorCellTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8E21CF29F4500524787 /* CommonEditorCellTextView.m */; };
  113. 7183E9191CF29F4500524787 /* CommonEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8E41CF29F4500524787 /* CommonEditorViewController.m */; };
  114. 7183E91A1CF29F4500524787 /* DatePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8E61CF29F4500524787 /* DatePickerViewController.m */; };
  115. 7183E91B1CF29F4500524787 /* EnumSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8E81CF29F4500524787 /* EnumSelectorCell.m */; };
  116. 7183E91C1CF29F4500524787 /* EnumSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8EA1CF29F4500524787 /* EnumSelectViewController.m */; };
  117. 7183E91D1CF29F4500524787 /* MonthPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8EC1CF29F4500524787 /* MonthPickerViewController.m */; };
  118. 7183E91E1CF29F4500524787 /* SRMonthPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8EE1CF29F4500524787 /* SRMonthPicker.m */; };
  119. 7183E91F1CF29F4500524787 /* ActiveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8F11CF29F4500524787 /* ActiveViewController.m */; };
  120. 7183E9201CF29F4500524787 /* CommonGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8F31CF29F4500524787 /* CommonGridViewController.m */; };
  121. 7183E9211CF29F4500524787 /* DeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8F61CF29F4500524787 /* DeviceInfo.m */; };
  122. 7183E9221CF29F4500524787 /* ScanApiHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7183E8F81CF29F4500524787 /* ScanApiHelper.mm */; };
  123. 7183E9231CF29F4500524787 /* softScanBeep.wav in Resources */ = {isa = PBXBuildFile; fileRef = 7183E8FA1CF29F4500524787 /* softScanBeep.wav */; };
  124. 7183E9241CF29F4500524787 /* include in Resources */ = {isa = PBXBuildFile; fileRef = 7183E8FB1CF29F4500524787 /* include */; };
  125. 7183E9E21CF29FCB00524787 /* PDFViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9291CF29FCB00524787 /* PDFViewController.m */; };
  126. 7183E9E31CF29FCB00524787 /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E92B1CF29FCB00524787 /* WebViewController.m */; };
  127. 7183E9E41CF29FCB00524787 /* AddressEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E92E1CF29FCB00524787 /* AddressEditorViewController.m */; };
  128. 7183E9E51CF29FCB00524787 /* CycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9311CF29FCB00524787 /* CycleScrollView.m */; };
  129. 7183E9E61CF29FCB00524787 /* NSTimer+Addition.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9331CF29FCB00524787 /* NSTimer+Addition.m */; };
  130. 7183E9E71CF29FCB00524787 /* SliderPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9351CF29FCB00524787 /* SliderPage.m */; };
  131. 7183E9E81CF29FCB00524787 /* BundleModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9381CF29FCB00524787 /* BundleModelCell.m */; };
  132. 7183E9E91CF29FCB00524787 /* BundleModelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E93A1CF29FCB00524787 /* BundleModelViewController.m */; };
  133. 7183E9EA1CF29FCB00524787 /* CartViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E93C1CF29FCB00524787 /* CartViewController.m */; };
  134. 7183E9EB1CF29FCB00524787 /* EditModelPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E93E1CF29FCB00524787 /* EditModelPriceViewController.m */; };
  135. 7183E9EC1CF29FCB00524787 /* ModelItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9401CF29FCB00524787 /* ModelItemCell.m */; };
  136. 7183E9ED1CF29FCB00524787 /* ItemNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9421CF29FCB00524787 /* ItemNotesViewController.m */; };
  137. 7183E9EE1CF29FCB00524787 /* CartGeneralNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9441CF29FCB00524787 /* CartGeneralNotesViewController.m */; };
  138. 7183E9EF1CF29FCB00524787 /* CategoryCellNPD.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9471CF29FCB00524787 /* CategoryCellNPD.m */; };
  139. 7183E9F01CF29FCB00524787 /* CategoryCellSmall.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E94A1CF29FCB00524787 /* CategoryCellSmall.m */; };
  140. 7183E9F11CF29FCB00524787 /* CategorySearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E94C1CF29FCB00524787 /* CategorySearchFilterViewController.m */; };
  141. 7183E9F21CF29FCB00524787 /* CategoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E94E1CF29FCB00524787 /* CategoryViewController.m */; };
  142. 7183E9F31CF29FCB00524787 /* debug_category_filter.json in Resources */ = {isa = PBXBuildFile; fileRef = 7183E94F1CF29FCB00524787 /* debug_category_filter.json */; };
  143. 7183E9F41CF29FCB00524787 /* RATreeNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9521CF29FCB00524787 /* RATreeNode.m */; };
  144. 7183E9F51CF29FCB00524787 /* RATreeNodeCollectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9541CF29FCB00524787 /* RATreeNodeCollectionController.m */; };
  145. 7183E9F61CF29FCB00524787 /* RATreeNodeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9561CF29FCB00524787 /* RATreeNodeInfo.m */; };
  146. 7183E9F71CF29FCB00524787 /* RATreeNodeInfo+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9581CF29FCB00524787 /* RATreeNodeInfo+Private.m */; };
  147. 7183E9F81CF29FCB00524787 /* RATreeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E95A1CF29FCB00524787 /* RATreeView.m */; };
  148. 7183E9F91CF29FCB00524787 /* RATreeView+Enums.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E95C1CF29FCB00524787 /* RATreeView+Enums.m */; };
  149. 7183E9FA1CF29FCB00524787 /* RATreeView+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E95E1CF29FCB00524787 /* RATreeView+Private.m */; };
  150. 7183E9FB1CF29FCB00524787 /* RATreeView+TableViewDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9601CF29FCB00524787 /* RATreeView+TableViewDataSource.m */; };
  151. 7183E9FC1CF29FCB00524787 /* RATreeView+TableViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9621CF29FCB00524787 /* RATreeView+TableViewDelegate.m */; };
  152. 7183E9FD1CF29FCB00524787 /* RATreeView+UIScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9641CF29FCB00524787 /* RATreeView+UIScrollView.m */; };
  153. 7183E9FE1CF29FCB00524787 /* RAViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9661CF29FCB00524787 /* RAViewController.m */; };
  154. 7183E9FF1CF29FCB00524787 /* CreditCardEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9691CF29FCB00524787 /* CreditCardEditorViewController.m */; };
  155. 7183EA001CF29FCB00524787 /* ContactAdvanceSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E96C1CF29FCB00524787 /* ContactAdvanceSearchViewController.m */; };
  156. 7183EA011CF29FCB00524787 /* ContactListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E96E1CF29FCB00524787 /* ContactListTableViewCell.m */; };
  157. 7183EA021CF29FCB00524787 /* ContactListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9701CF29FCB00524787 /* ContactListViewController.m */; };
  158. 7183EA031CF29FCB00524787 /* customer_advanced_search.json in Resources */ = {isa = PBXBuildFile; fileRef = 7183E9711CF29FCB00524787 /* customer_advanced_search.json */; };
  159. 7183EA041CF29FCB00524787 /* customer_info_template.json in Resources */ = {isa = PBXBuildFile; fileRef = 7183E9721CF29FCB00524787 /* customer_info_template.json */; };
  160. 7183EA051CF29FCB00524787 /* customer_info_template_edit.json in Resources */ = {isa = PBXBuildFile; fileRef = 7183E9731CF29FCB00524787 /* customer_info_template_edit.json */; };
  161. 7183EA061CF29FCB00524787 /* CustomerEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9751CF29FCB00524787 /* CustomerEditViewController.m */; };
  162. 7183EA071CF29FCB00524787 /* CustomerInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9771CF29FCB00524787 /* CustomerInfoViewController.m */; };
  163. 7183EA081CF29FCB00524787 /* DetailHeaderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E97A1CF29FCB00524787 /* DetailHeaderCell.m */; };
  164. 7183EA091CF29FCB00524787 /* DetailImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E97C1CF29FCB00524787 /* DetailImageCell.m */; };
  165. 7183EA0A1CF29FCB00524787 /* DetailKVCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E97E1CF29FCB00524787 /* DetailKVCell.m */; };
  166. 7183EA0B1CF29FCB00524787 /* DetailTopicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9801CF29FCB00524787 /* DetailTopicCell.m */; };
  167. 7183EA0C1CF29FCB00524787 /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9821CF29FCB00524787 /* DetailViewController.m */; };
  168. 7183EA0D1CF29FCB00524787 /* LineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9841CF29FCB00524787 /* LineView.m */; };
  169. 7183EA0E1CF29FCB00524787 /* HomeTableViewCellBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9871CF29FCB00524787 /* HomeTableViewCellBanner.m */; };
  170. 7183EA0F1CF29FCB00524787 /* HomeTableViewCellButtonBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9891CF29FCB00524787 /* HomeTableViewCellButtonBanner.m */; };
  171. 7183EA101CF29FCB00524787 /* HomeTableViewCellSlide.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E98B1CF29FCB00524787 /* HomeTableViewCellSlide.m */; };
  172. 7183EA111CF29FCB00524787 /* HomeTableViewCellTopic.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E98D1CF29FCB00524787 /* HomeTableViewCellTopic.m */; };
  173. 7183EA121CF29FCB00524787 /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E98F1CF29FCB00524787 /* HomeViewController.m */; };
  174. 7183EA131CF29FCB00524787 /* CreateOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9921CF29FCB00524787 /* CreateOrderViewController.m */; };
  175. 7183EA141CF29FCB00524787 /* OrderDetailHtmlCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9941CF29FCB00524787 /* OrderDetailHtmlCell.m */; };
  176. 7183EA151CF29FCB00524787 /* OrderDetailInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9961CF29FCB00524787 /* OrderDetailInfoCell.m */; };
  177. 7183EA161CF29FCB00524787 /* OrderDetailModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9981CF29FCB00524787 /* OrderDetailModelCell.m */; };
  178. 7183EA171CF29FCB00524787 /* OrderDetailPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E99A1CF29FCB00524787 /* OrderDetailPriceCell.m */; };
  179. 7183EA181CF29FCB00524787 /* OrderDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E99C1CF29FCB00524787 /* OrderDetailViewController.m */; };
  180. 7183EA191CF29FCB00524787 /* OrderListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E99E1CF29FCB00524787 /* OrderListTableViewCell.m */; };
  181. 7183EA1A1CF29FCB00524787 /* OrderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9A01CF29FCB00524787 /* OrderListViewController.m */; };
  182. 7183EA1B1CF29FCB00524787 /* status_filter_cadedate_open.json in Resources */ = {isa = PBXBuildFile; fileRef = 7183E9A11CF29FCB00524787 /* status_filter_cadedate_open.json */; };
  183. 7183EA1D1CF29FCB00524787 /* OrderDetailSignatureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9A41CF29FCB00524787 /* OrderDetailSignatureCell.m */; };
  184. 7183EA1E1CF29FCB00524787 /* PDFListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9A71CF29FCB00524787 /* PDFListTableViewCell.m */; };
  185. 7183EA1F1CF29FCB00524787 /* PDFListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9A91CF29FCB00524787 /* PDFListViewController.m */; };
  186. 7183EA201CF29FCB00524787 /* PortfolioViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9AB1CF29FCB00524787 /* PortfolioViewController.m */; };
  187. 7183EA211CF29FCB00524787 /* TearSheetParamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9AD1CF29FCB00524787 /* TearSheetParamViewController.m */; };
  188. 7183EA221CF29FCB00524787 /* PortfolioEditQTYViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9AF1CF29FCB00524787 /* PortfolioEditQTYViewController.m */; };
  189. 7183EA231CF29FCB00524787 /* ScannerControllerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9B21CF29FCB00524787 /* ScannerControllerView.m */; };
  190. 7183EA241CF29FCB00524787 /* ScannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9B41CF29FCB00524787 /* ScannerViewController.m */; };
  191. 7183EA251CF29FCB00524787 /* SCShapeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9B61CF29FCB00524787 /* SCShapeView.m */; };
  192. 7183EA261CF29FCB00524787 /* FilterCellCadedate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9B91CF29FCB00524787 /* FilterCellCadedate.m */; };
  193. 7183EA271CF29FCB00524787 /* FilterCellValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9BB1CF29FCB00524787 /* FilterCellValue.m */; };
  194. 7183EA281CF29FCB00524787 /* ItemSearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9BD1CF29FCB00524787 /* ItemSearchFilterViewController.m */; };
  195. 7183EA291CF29FCB00524787 /* ItemSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9BF1CF29FCB00524787 /* ItemSearchViewController.m */; };
  196. 7183EA2A1CF29FCB00524787 /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9C11CF29FCB00524787 /* SearchViewController.m */; };
  197. 7183EA2B1CF29FCB00524787 /* SignatureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9C41CF29FCB00524787 /* SignatureView.m */; };
  198. 7183EA2C1CF29FCB00524787 /* SignatureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9C61CF29FCB00524787 /* SignatureViewController.m */; };
  199. 7183EA2D1CF29FCB00524787 /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9C91CF29FCB00524787 /* AboutViewController.m */; };
  200. 7183EA2E1CF29FCB00524787 /* CacheViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9CB1CF29FCB00524787 /* CacheViewController.m */; };
  201. 7183EA2F1CF29FCB00524787 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9CD1CF29FCB00524787 /* LoginViewController.m */; };
  202. 7183EA301CF29FCB00524787 /* PopupNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9CF1CF29FCB00524787 /* PopupNavigationController.m */; };
  203. 7183EA311CF29FCB00524787 /* RetrievePassViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9D11CF29FCB00524787 /* RetrievePassViewController.m */; };
  204. 7183EA321CF29FCB00524787 /* ScannerSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9D31CF29FCB00524787 /* ScannerSettingViewController.m */; };
  205. 7183EA331CF29FCB00524787 /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9D51CF29FCB00524787 /* SettingViewController.m */; };
  206. 7183EA341CF29FCB00524787 /* FunctionTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9D71CF29FCB00524787 /* FunctionTestViewController.m */; };
  207. 7183EA351CF29FCB00524787 /* SimplifiedBuyingProgramViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9D91CF29FCB00524787 /* SimplifiedBuyingProgramViewController.m */; };
  208. 7183EA361CF29FCB00524787 /* UserListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9DB1CF29FCB00524787 /* UserListViewController.m */; };
  209. 7183EA381CF29FCB00524787 /* WatchListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183E9E01CF29FCB00524787 /* WatchListViewController.m */; };
  210. 7183EA3D1CF2A04000524787 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183EA3A1CF2A04000524787 /* AppDelegate.m */; };
  211. 7183EA3E1CF2A04000524787 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183EA3C1CF2A04000524787 /* MainViewController.m */; };
  212. 7183EA411CF2A04D00524787 /* OLM.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7183EA401CF2A04D00524787 /* OLM.storyboard */; };
  213. 7183EA441CF2A06600524787 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7183EA431CF2A06600524787 /* Main.storyboard */; };
  214. 7183EA471CF2A06E00524787 /* iSalesNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183EA461CF2A06E00524787 /* iSalesNavigationController.m */; };
  215. 7183EA4E1CF2A6DF00524787 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA4D1CF2A6DF00524787 /* libz.tbd */; };
  216. 7183EA501CF2A70800524787 /* libScanApiCore.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA4F1CF2A70800524787 /* libScanApiCore.a */; };
  217. 7183EA521CF2A71A00524787 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA511CF2A71A00524787 /* AVFoundation.framework */; };
  218. 7183EA541CF2A72300524787 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA531CF2A72300524787 /* AudioToolbox.framework */; };
  219. 7183EA561CF2A72D00524787 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA551CF2A72D00524787 /* ExternalAccessory.framework */; };
  220. 7183EA581CF2A74500524787 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA571CF2A74500524787 /* libsqlite3.tbd */; };
  221. 7183EA5A1CF2A75600524787 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA591CF2A75500524787 /* Accelerate.framework */; };
  222. 7183EA5C1CF2A76000524787 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA5B1CF2A76000524787 /* QuartzCore.framework */; };
  223. 7183EA5E1CF2A77000524787 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA5D1CF2A77000524787 /* CoreGraphics.framework */; };
  224. 7183EA601CF2A77B00524787 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA5F1CF2A77A00524787 /* UIKit.framework */; };
  225. 7183EA621CF2A78700524787 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA611CF2A78700524787 /* Foundation.framework */; };
  226. 7183EA641CF2A7B500524787 /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7183EA631CF2A7B500524787 /* libPods.a */; };
  227. 7183EA6D1CF2B05C00524787 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183EA681CF2B05C00524787 /* NSData+Base64.m */; };
  228. 7183EA6E1CF2B05C00524787 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183EA6A1CF2B05C00524787 /* NSData+CommonCrypto.m */; };
  229. 7183EA6F1CF2B05C00524787 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7183EA6C1CF2B05C00524787 /* NSString+Base64.m */; };
  230. 719562391CF57BFC00C74A49 /* CategoryHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 719562381CF57BFC00C74A49 /* CategoryHeaderView.m */; };
  231. 7195623F1CF580E800C74A49 /* DefaultTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7195623E1CF580E800C74A49 /* DefaultTableHeaderView.m */; };
  232. 719562441CF6937F00C74A49 /* default_appearance.json in Resources */ = {isa = PBXBuildFile; fileRef = 719562431CF6937F00C74A49 /* default_appearance.json */; };
  233. 71AD1E0A1D3E039E008B7685 /* SyncControlPanelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AD1E091D3E039E008B7685 /* SyncControlPanelViewController.m */; };
  234. 71BF07011D2F3CCC00981938 /* OLDataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF07001D2F3CCC00981938 /* OLDataProvider.m */; };
  235. 71BF07051D2F3CF300981938 /* OfflineSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF07041D2F3CF300981938 /* OfflineSettingViewController.m */; };
  236. 71C1D8111F45556200CEA1C9 /* Assets.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 71C1D80B1F45556200CEA1C9 /* Assets.bundle */; };
  237. 71C1D8121F45556200CEA1C9 /* YTPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D80E1F45556200CEA1C9 /* YTPlayerView.m */; };
  238. 71C1D8131F45556200CEA1C9 /* YTViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D8101F45556200CEA1C9 /* YTViewController.m */; };
  239. 71C1D8181F45564000CEA1C9 /* ContentPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D8171F45564000CEA1C9 /* ContentPreviewController.m */; };
  240. 71C1D8201F45574200CEA1C9 /* PhotoList.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71C1D81F1F45574200CEA1C9 /* PhotoList.storyboard */; };
  241. 71C1D8251F45574B00CEA1C9 /* PhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D8221F45574B00CEA1C9 /* PhotoPreviewCell.m */; };
  242. 71C1D8261F45574B00CEA1C9 /* VideoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D8241F45574B00CEA1C9 /* VideoPreviewCell.m */; };
  243. 71C1D8291F45586700CEA1C9 /* ModelDescriptionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D8281F45586700CEA1C9 /* ModelDescriptionController.m */; };
  244. 71D30A2A1CFC0EDD006F9477 /* DefaultImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D30A291CFC0EDD006F9477 /* DefaultImageButton.m */; };
  245. /* End PBXBuildFile section */
  246. /* Begin PBXFileReference section */
  247. 42897FFF1E24902E005F1BD8 /* JKTimerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKTimerManager.h; sourceTree = "<group>"; };
  248. 428980001E24902E005F1BD8 /* JKTimerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKTimerManager.m; sourceTree = "<group>"; };
  249. 428980051E2490E3005F1BD8 /* NotificationNameCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NotificationNameCenter.h; path = common/NotificationNameCenter.h; sourceTree = SOURCE_ROOT; };
  250. 428980061E2490E3005F1BD8 /* NotificationNameCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NotificationNameCenter.m; path = common/NotificationNameCenter.m; sourceTree = SOURCE_ROOT; };
  251. 4289800B1E2491A6005F1BD8 /* CartUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartUtils.h; path = common/CartUtils.h; sourceTree = SOURCE_ROOT; };
  252. 4289800C1E2491A6005F1BD8 /* CartUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartUtils.m; path = common/CartUtils.m; sourceTree = SOURCE_ROOT; };
  253. 428980191E24925A005F1BD8 /* SortButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortButton.h; sourceTree = "<group>"; };
  254. 4289801A1E24925A005F1BD8 /* SortButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortButton.m; sourceTree = "<group>"; };
  255. 4289801B1E24925A005F1BD8 /* SortItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemCell.h; sourceTree = "<group>"; };
  256. 4289801C1E24925A005F1BD8 /* SortItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemCell.m; sourceTree = "<group>"; };
  257. 4289801D1E24925A005F1BD8 /* SortItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemViewController.h; sourceTree = "<group>"; };
  258. 4289801E1E24925A005F1BD8 /* SortItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemViewController.m; sourceTree = "<group>"; };
  259. 428980301E2492E0005F1BD8 /* CategoryPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceCell.h; sourceTree = "<group>"; };
  260. 428980311E2492E0005F1BD8 /* CategoryPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceCell.m; sourceTree = "<group>"; };
  261. 428980321E2492E0005F1BD8 /* CategoryPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceViewController.h; sourceTree = "<group>"; };
  262. 428980331E2492E0005F1BD8 /* CategoryPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceViewController.m; sourceTree = "<group>"; };
  263. 428980341E2492E0005F1BD8 /* PriceSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PriceSettingViewController.h; sourceTree = "<group>"; };
  264. 428980351E2492E0005F1BD8 /* PriceSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PriceSettingViewController.m; sourceTree = "<group>"; };
  265. 428980361E2492E0005F1BD8 /* SetCategoryPriceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SetCategoryPriceController.h; sourceTree = "<group>"; };
  266. 428980371E2492E0005F1BD8 /* SetCategoryPriceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SetCategoryPriceController.m; sourceTree = "<group>"; };
  267. 4289804A1E249340005F1BD8 /* JKDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKDotView.h; sourceTree = "<group>"; };
  268. 4289804B1E249340005F1BD8 /* JKDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKDotView.m; sourceTree = "<group>"; };
  269. 4289804C1E249340005F1BD8 /* JKLockButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockButton.h; sourceTree = "<group>"; };
  270. 4289804D1E249340005F1BD8 /* JKLockButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockButton.m; sourceTree = "<group>"; };
  271. 4289804E1E249340005F1BD8 /* JKLockController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockController.h; sourceTree = "<group>"; };
  272. 4289804F1E249340005F1BD8 /* JKLockController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockController.m; sourceTree = "<group>"; };
  273. 428980501E249340005F1BD8 /* JKMessageBoxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKMessageBoxController.h; sourceTree = "<group>"; };
  274. 428980511E249340005F1BD8 /* JKMessageBoxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKMessageBoxController.m; sourceTree = "<group>"; };
  275. 428980571E24935E005F1BD8 /* UIColor+JK_HEX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JK_HEX.h"; sourceTree = "<group>"; };
  276. 428980581E24935E005F1BD8 /* UIColor+JK_HEX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JK_HEX.m"; sourceTree = "<group>"; };
  277. 428980641E24A9DE005F1BD8 /* OfflineUnlockViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineUnlockViewController.h; path = common/Functions/offline/OfflineUnlockViewController.h; sourceTree = SOURCE_ROOT; };
  278. 428980651E24A9DE005F1BD8 /* OfflineUnlockViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineUnlockViewController.m; path = common/Functions/offline/OfflineUnlockViewController.m; sourceTree = SOURCE_ROOT; };
  279. 428980661E24A9DE005F1BD8 /* SelectOrderTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectOrderTableViewCell.h; path = common/Functions/offline/SelectOrderTableViewCell.h; sourceTree = SOURCE_ROOT; };
  280. 428980671E24A9DE005F1BD8 /* SelectOrderTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectOrderTableViewCell.m; path = common/Functions/offline/SelectOrderTableViewCell.m; sourceTree = SOURCE_ROOT; };
  281. 428980681E24A9DE005F1BD8 /* SelectUploadOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectUploadOrderViewController.h; path = common/Functions/offline/SelectUploadOrderViewController.h; sourceTree = SOURCE_ROOT; };
  282. 428980691E24A9DE005F1BD8 /* SelectUploadOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectUploadOrderViewController.m; path = common/Functions/offline/SelectUploadOrderViewController.m; sourceTree = SOURCE_ROOT; };
  283. 4289806D1E24AEA6005F1BD8 /* Singleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Singleton.h; path = common/Singleton.h; sourceTree = SOURCE_ROOT; };
  284. 4289806E1E24AEA6005F1BD8 /* Singleton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Singleton.m; path = common/Singleton.m; sourceTree = SOURCE_ROOT; };
  285. 428980741E24B2C2005F1BD8 /* BasicDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicDrawable.h; sourceTree = "<group>"; };
  286. 428980751E24B2C2005F1BD8 /* BasicDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BasicDrawable.m; sourceTree = "<group>"; };
  287. 428980761E24B2C2005F1BD8 /* GridDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GridDrawable.h; sourceTree = "<group>"; };
  288. 428980771E24B2C2005F1BD8 /* GridDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GridDrawable.m; sourceTree = "<group>"; };
  289. 428980781E24B2C2005F1BD8 /* GroupDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupDrawable.h; sourceTree = "<group>"; };
  290. 428980791E24B2C2005F1BD8 /* GroupDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupDrawable.m; sourceTree = "<group>"; };
  291. 4289807A1E24B2C2005F1BD8 /* ImageDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageDrawable.h; sourceTree = "<group>"; };
  292. 4289807B1E24B2C2005F1BD8 /* ImageDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImageDrawable.m; sourceTree = "<group>"; };
  293. 4289807C1E24B2C2005F1BD8 /* LineDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LineDrawable.h; sourceTree = "<group>"; };
  294. 4289807D1E24B2C2005F1BD8 /* LineDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LineDrawable.m; sourceTree = "<group>"; };
  295. 4289807E1E24B2C2005F1BD8 /* pdfCreator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pdfCreator.h; sourceTree = "<group>"; };
  296. 4289807F1E24B2C2005F1BD8 /* pdfCreator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = pdfCreator.m; sourceTree = "<group>"; };
  297. 428980801E24B2C2005F1BD8 /* PDFDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDFDrawable.h; sourceTree = "<group>"; };
  298. 428980811E24B2C2005F1BD8 /* PDFDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PDFDrawable.m; sourceTree = "<group>"; };
  299. 428980821E24B2C2005F1BD8 /* PDFPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PDFPage.h; sourceTree = "<group>"; };
  300. 428980831E24B2C2005F1BD8 /* PDFPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PDFPage.m; sourceTree = "<group>"; };
  301. 428980841E24B2C2005F1BD8 /* RectDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RectDrawable.h; sourceTree = "<group>"; };
  302. 428980851E24B2C2005F1BD8 /* RectDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RectDrawable.m; sourceTree = "<group>"; };
  303. 428980861E24B2C2005F1BD8 /* TableDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableDrawable.h; sourceTree = "<group>"; };
  304. 428980871E24B2C2005F1BD8 /* TableDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableDrawable.m; sourceTree = "<group>"; };
  305. 428980881E24B2C2005F1BD8 /* TextDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TextDrawable.h; sourceTree = "<group>"; };
  306. 428980891E24B2C2005F1BD8 /* TextDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TextDrawable.m; sourceTree = "<group>"; };
  307. 428980951E24B2E7005F1BD8 /* ImageUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageUtils.h; path = common/ImageUtils.h; sourceTree = SOURCE_ROOT; };
  308. 428980961E24B2E7005F1BD8 /* ImageUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageUtils.m; path = common/ImageUtils.m; sourceTree = SOURCE_ROOT; };
  309. 428980981E24B304005F1BD8 /* TextUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextUtils.h; path = common/TextUtils.h; sourceTree = SOURCE_ROOT; };
  310. 428980991E24B304005F1BD8 /* TextUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TextUtils.m; path = common/TextUtils.m; sourceTree = SOURCE_ROOT; };
  311. 42A85BF11E60039A0058A9CE /* HWWeakTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HWWeakTimer.h; sourceTree = "<group>"; };
  312. 42A85BF21E60039A0058A9CE /* HWWeakTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HWWeakTimer.m; sourceTree = "<group>"; };
  313. 42A85BF51E6004180058A9CE /* ERPUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ERPUtils.h; path = common/ERPUtils.h; sourceTree = SOURCE_ROOT; };
  314. 42A85BF61E6004180058A9CE /* ERPUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ERPUtils.m; path = common/ERPUtils.m; sourceTree = SOURCE_ROOT; };
  315. 42A85BF91E6004180058A9CE /* PDFUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFUtils.h; path = common/PDFUtils.h; sourceTree = SOURCE_ROOT; };
  316. 42A85BFA1E6004180058A9CE /* PDFUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFUtils.m; path = common/PDFUtils.m; sourceTree = SOURCE_ROOT; };
  317. 42BB2F071E28986B0025C6CE /* signature.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = signature.storyboard; path = common/Functions/signature/signature.storyboard; sourceTree = SOURCE_ROOT; };
  318. 42BEF3661E8A4C7D00632AB6 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseAnalytics.framework; sourceTree = "<group>"; };
  319. 42BEF3691E8A4C7D00632AB6 /* FirebaseCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseCore.framework; sourceTree = "<group>"; };
  320. 42BEF36B1E8A4C7D00632AB6 /* CHANGELOG.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = "<group>"; };
  321. 42BEF36D1E8A4C7D00632AB6 /* FirebaseInstanceID.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FirebaseInstanceID.framework; sourceTree = "<group>"; };
  322. 42BEF36E1E8A4C7D00632AB6 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
  323. 42BEF3711E8A4C7D00632AB6 /* GGLAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GGLAnalytics.framework; sourceTree = "<group>"; };
  324. 42BEF3721E8A4C7D00632AB6 /* GGLCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = GGLCore.framework; sourceTree = "<group>"; };
  325. 42BEF3741E8A4C7D00632AB6 /* Analytics.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Analytics.h; sourceTree = "<group>"; };
  326. 42BEF3751E8A4C7D00632AB6 /* Core.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Core.h; sourceTree = "<group>"; };
  327. 42BEF3761E8A4C7D00632AB6 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = "<group>"; };
  328. 42BEF3781E8A4C7D00632AB6 /* Analytics-Module.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Analytics-Module.h"; sourceTree = "<group>"; };
  329. 42BEF3791E8A4C7D00632AB6 /* Core-Module.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Core-Module.h"; sourceTree = "<group>"; };
  330. 42BEF37A1E8A4C7D00632AB6 /* SignIn-Module.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SignIn-Module.h"; sourceTree = "<group>"; };
  331. 42BEF37B1E8A4C7D00632AB6 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
  332. 42BEF37C1E8A4C7D00632AB6 /* GoogleAnalyst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoogleAnalyst.h; sourceTree = "<group>"; };
  333. 42BEF37D1E8A4C7D00632AB6 /* GoogleAnalyst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoogleAnalyst.m; sourceTree = "<group>"; };
  334. 42BEF3801E8A4C7D00632AB6 /* libGoogleAnalytics.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libGoogleAnalytics.a; sourceTree = "<group>"; };
  335. 42BEF3821E8A4C7D00632AB6 /* GAI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAI.h; sourceTree = "<group>"; };
  336. 42BEF3831E8A4C7D00632AB6 /* GAIDictionaryBuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIDictionaryBuilder.h; sourceTree = "<group>"; };
  337. 42BEF3841E8A4C7D00632AB6 /* GAIEcommerceFields.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIEcommerceFields.h; sourceTree = "<group>"; };
  338. 42BEF3851E8A4C7D00632AB6 /* GAIEcommerceProduct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIEcommerceProduct.h; sourceTree = "<group>"; };
  339. 42BEF3861E8A4C7D00632AB6 /* GAIEcommerceProductAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIEcommerceProductAction.h; sourceTree = "<group>"; };
  340. 42BEF3871E8A4C7D00632AB6 /* GAIEcommercePromotion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIEcommercePromotion.h; sourceTree = "<group>"; };
  341. 42BEF3881E8A4C7D00632AB6 /* GAIFields.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAIFields.h; sourceTree = "<group>"; };
  342. 42BEF3891E8A4C7D00632AB6 /* GAILogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAILogger.h; sourceTree = "<group>"; };
  343. 42BEF38A1E8A4C7D00632AB6 /* GAITrackedViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAITrackedViewController.h; sourceTree = "<group>"; };
  344. 42BEF38B1E8A4C7D00632AB6 /* GAITracker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GAITracker.h; sourceTree = "<group>"; };
  345. 42BEF38E1E8A4C7D00632AB6 /* GTMNSData+zlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GTMNSData+zlib.h"; sourceTree = "<group>"; };
  346. 42BEF38F1E8A4C7D00632AB6 /* GTMNSData+zlib.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GTMNSData+zlib.m"; sourceTree = "<group>"; };
  347. 42BEF3901E8A4C7D00632AB6 /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
  348. 42BEF3911E8A4C7D00632AB6 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
  349. 42BEF3921E8A4C7D00632AB6 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
  350. 42BEF3A11E8A4D0000632AB6 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  351. 42BEF3A31E8A4D0700632AB6 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  352. 715002001D13CDBE00F5927F /* BundleDetailButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleDetailButton.h; path = common/Functions/BundleDetailButton.h; sourceTree = SOURCE_ROOT; };
  353. 715002011D13CDBE00F5927F /* BundleDetailButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleDetailButton.m; path = common/Functions/BundleDetailButton.m; sourceTree = SOURCE_ROOT; };
  354. 715850411CF6F0C400856B20 /* DefaultAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultAppearance.h; path = common/Functions/DefaultAppearance.h; sourceTree = SOURCE_ROOT; };
  355. 715850421CF6F0C400856B20 /* DefaultAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultAppearance.m; path = common/Functions/DefaultAppearance.m; sourceTree = SOURCE_ROOT; };
  356. 716AF8DD1D792157001188E0 /* offline_status_filter_cadedate.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = offline_status_filter_cadedate.json; path = common/Functions/order/offline_status_filter_cadedate.json; sourceTree = SOURCE_ROOT; };
  357. 7183E8441CF2913E00524787 /* HMLG Mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "HMLG Mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  358. 7183E8481CF2913E00524787 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  359. 7183E8531CF2913E00524787 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  360. 7183E8561CF2913E00524787 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  361. 7183E8581CF2913E00524787 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  362. 7183E8611CF29F3900524787 /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crypt.h; path = ../common/zip/minizip/crypt.h; sourceTree = "<group>"; };
  363. 7183E8621CF29F3900524787 /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = ../common/zip/minizip/ioapi.c; sourceTree = "<group>"; };
  364. 7183E8631CF29F3900524787 /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ioapi.h; path = ../common/zip/minizip/ioapi.h; sourceTree = "<group>"; };
  365. 7183E8641CF29F3900524787 /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = ../common/zip/minizip/mztools.c; sourceTree = "<group>"; };
  366. 7183E8651CF29F3900524787 /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mztools.h; path = ../common/zip/minizip/mztools.h; sourceTree = "<group>"; };
  367. 7183E8661CF29F3900524787 /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = ../common/zip/minizip/unzip.c; sourceTree = "<group>"; };
  368. 7183E8671CF29F3900524787 /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = ../common/zip/minizip/unzip.h; sourceTree = "<group>"; };
  369. 7183E8681CF29F3900524787 /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zip.c; path = ../common/zip/minizip/zip.c; sourceTree = "<group>"; };
  370. 7183E8691CF29F3900524787 /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zip.h; path = ../common/zip/minizip/zip.h; sourceTree = "<group>"; };
  371. 7183E86A1CF29F3900524787 /* ZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = ../common/zip/ZipArchive.h; sourceTree = "<group>"; };
  372. 7183E86B1CF29F3900524787 /* ZipArchive.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ZipArchive.mm; path = ../common/zip/ZipArchive.mm; sourceTree = "<group>"; };
  373. 7183E86D1CF29F3900524787 /* bitstream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = bitstream.c; path = ../common/qrcode/bitstream.c; sourceTree = "<group>"; };
  374. 7183E86E1CF29F3900524787 /* bitstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bitstream.h; path = ../common/qrcode/bitstream.h; sourceTree = "<group>"; };
  375. 7183E86F1CF29F3900524787 /* mask.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mask.c; path = ../common/qrcode/mask.c; sourceTree = "<group>"; };
  376. 7183E8701CF29F3900524787 /* mask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mask.h; path = ../common/qrcode/mask.h; sourceTree = "<group>"; };
  377. 7183E8711CF29F3900524787 /* QRCodeGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QRCodeGenerator.h; path = ../common/qrcode/QRCodeGenerator.h; sourceTree = "<group>"; };
  378. 7183E8721CF29F3900524787 /* QRCodeGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = QRCodeGenerator.m; path = ../common/qrcode/QRCodeGenerator.m; sourceTree = "<group>"; };
  379. 7183E8731CF29F3900524787 /* qrencode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrencode.c; path = ../common/qrcode/qrencode.c; sourceTree = "<group>"; };
  380. 7183E8741CF29F3900524787 /* qrencode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrencode.h; path = ../common/qrcode/qrencode.h; sourceTree = "<group>"; };
  381. 7183E8751CF29F3900524787 /* qrinput.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrinput.c; path = ../common/qrcode/qrinput.c; sourceTree = "<group>"; };
  382. 7183E8761CF29F3900524787 /* qrinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrinput.h; path = ../common/qrcode/qrinput.h; sourceTree = "<group>"; };
  383. 7183E8771CF29F3900524787 /* qrspec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrspec.c; path = ../common/qrcode/qrspec.c; sourceTree = "<group>"; };
  384. 7183E8781CF29F3900524787 /* qrspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrspec.h; path = ../common/qrcode/qrspec.h; sourceTree = "<group>"; };
  385. 7183E8791CF29F3900524787 /* rscode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rscode.c; path = ../common/qrcode/rscode.c; sourceTree = "<group>"; };
  386. 7183E87A1CF29F3900524787 /* rscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rscode.h; path = ../common/qrcode/rscode.h; sourceTree = "<group>"; };
  387. 7183E87B1CF29F3900524787 /* split.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = split.c; path = ../common/qrcode/split.c; sourceTree = "<group>"; };
  388. 7183E87C1CF29F3900524787 /* split.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = split.h; path = ../common/qrcode/split.h; sourceTree = "<group>"; };
  389. 7183E87E1CF29F3900524787 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = ../common/AES/AESCrypt.h; sourceTree = "<group>"; };
  390. 7183E87F1CF29F3900524787 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AESCrypt.m; path = ../common/AES/AESCrypt.m; sourceTree = "<group>"; };
  391. 7183E8801CF29F3900524787 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = ../common/AES/LICENSE; sourceTree = "<group>"; };
  392. 7183E8881CF29F3900524787 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = ../common/Reachability.h; sourceTree = "<group>"; };
  393. 7183E8891CF29F3900524787 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = ../common/Reachability.m; sourceTree = "<group>"; };
  394. 7183E88A1CF29F3900524787 /* const.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = const.h; path = ../common/const.h; sourceTree = "<group>"; };
  395. 7183E88B1CF29F3900524787 /* RAUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAUtils.h; path = ../common/RAUtils.h; sourceTree = "<group>"; };
  396. 7183E88C1CF29F3900524787 /* RAUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAUtils.m; path = ../common/RAUtils.m; sourceTree = "<group>"; };
  397. 7183E88D1CF29F3900524787 /* iSalesDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesDB.h; path = ../common/data_provider/iSalesDB.h; sourceTree = "<group>"; };
  398. 7183E88E1CF29F3900524787 /* iSalesDB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesDB.m; path = ../common/data_provider/iSalesDB.m; sourceTree = "<group>"; };
  399. 7183E88F1CF29F3900524787 /* iSalesNetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesNetwork.h; path = ../common/data_provider/iSalesNetwork.h; sourceTree = "<group>"; };
  400. 7183E8901CF29F3900524787 /* iSalesNetwork.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesNetwork.m; path = ../common/data_provider/iSalesNetwork.m; sourceTree = "<group>"; };
  401. 7183E8AB1CF29F4500524787 /* PhotoBorder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = PhotoBorder.png; path = ../common/photoStack/PhotoBorder.png; sourceTree = "<group>"; };
  402. 7183E8AC1CF29F4500524787 /* PhotoBorder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "PhotoBorder@2x.png"; path = "../common/photoStack/PhotoBorder@2x.png"; sourceTree = "<group>"; };
  403. 7183E8AD1CF29F4500524787 /* PhotoStackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackView.h; path = ../common/photoStack/PhotoStackView.h; sourceTree = "<group>"; };
  404. 7183E8AE1CF29F4500524787 /* PhotoStackView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackView.m; path = ../common/photoStack/PhotoStackView.m; sourceTree = "<group>"; };
  405. 7183E8AF1CF29F4500524787 /* PhotoStackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackViewController.h; path = ../common/photoStack/PhotoStackViewController.h; sourceTree = "<group>"; };
  406. 7183E8B01CF29F4500524787 /* PhotoStackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackViewController.m; path = ../common/photoStack/PhotoStackViewController.m; sourceTree = "<group>"; };
  407. 7183E8B21CF29F4500524787 /* CustomIOSAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomIOSAlertView.h; path = ../common/customUI/CustomIOSAlertView.h; sourceTree = "<group>"; };
  408. 7183E8B31CF29F4500524787 /* CustomIOSAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomIOSAlertView.m; path = ../common/customUI/CustomIOSAlertView.m; sourceTree = "<group>"; };
  409. 7183E8B41CF29F4500524787 /* ImageScrollerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerView.h; path = ../common/customUI/ImageScrollerView.h; sourceTree = "<group>"; };
  410. 7183E8B51CF29F4500524787 /* ImageScrollerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerView.m; path = ../common/customUI/ImageScrollerView.m; sourceTree = "<group>"; };
  411. 7183E8B61CF29F4500524787 /* ImageScrollerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerViewController.h; path = ../common/customUI/ImageScrollerViewController.h; sourceTree = "<group>"; };
  412. 7183E8B71CF29F4500524787 /* ImageScrollerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerViewController.m; path = ../common/customUI/ImageScrollerViewController.m; sourceTree = "<group>"; };
  413. 7183E8B81CF29F4500524787 /* ImageUploadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageUploadViewController.h; path = ../common/customUI/ImageUploadViewController.h; sourceTree = "<group>"; };
  414. 7183E8B91CF29F4500524787 /* ImageUploadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageUploadViewController.m; path = ../common/customUI/ImageUploadViewController.m; sourceTree = "<group>"; };
  415. 7183E8BA1CF29F4500524787 /* ImageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageViewController.h; path = ../common/customUI/ImageViewController.h; sourceTree = "<group>"; };
  416. 7183E8BB1CF29F4500524787 /* ImageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageViewController.m; path = ../common/customUI/ImageViewController.m; sourceTree = "<group>"; };
  417. 7183E8BC1CF29F4500524787 /* NIDropDown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NIDropDown.h; path = ../common/customUI/NIDropDown.h; sourceTree = "<group>"; };
  418. 7183E8BD1CF29F4500524787 /* NIDropDown.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NIDropDown.m; path = ../common/customUI/NIDropDown.m; sourceTree = "<group>"; };
  419. 7183E8BE1CF29F4500524787 /* PulldownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PulldownMenu.h; path = ../common/customUI/PulldownMenu.h; sourceTree = "<group>"; };
  420. 7183E8BF1CF29F4500524787 /* PulldownMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PulldownMenu.m; path = ../common/customUI/PulldownMenu.m; sourceTree = "<group>"; };
  421. 7183E8C01CF29F4500524787 /* RadioButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RadioButton.h; path = ../common/customUI/RadioButton.h; sourceTree = "<group>"; };
  422. 7183E8C11CF29F4500524787 /* RadioButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RadioButton.m; path = ../common/customUI/RadioButton.m; sourceTree = "<group>"; };
  423. 7183E8C21CF29F4500524787 /* RTLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RTLabel.h; path = ../common/customUI/RTLabel.h; sourceTree = "<group>"; };
  424. 7183E8C31CF29F4500524787 /* RTLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RTLabel.m; path = ../common/customUI/RTLabel.m; sourceTree = "<group>"; };
  425. 7183E8C41CF29F4500524787 /* SimpleGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimpleGrid.h; path = ../common/customUI/SimpleGrid.h; sourceTree = "<group>"; };
  426. 7183E8C51CF29F4500524787 /* SimpleGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimpleGrid.m; path = ../common/customUI/SimpleGrid.m; sourceTree = "<group>"; };
  427. 7183E8C61CF29F4500524787 /* StrikethroughLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StrikethroughLabel.h; path = ../common/customUI/StrikethroughLabel.h; sourceTree = "<group>"; };
  428. 7183E8C71CF29F4500524787 /* StrikethroughLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = StrikethroughLabel.m; path = ../common/customUI/StrikethroughLabel.m; sourceTree = "<group>"; };
  429. 7183E8C81CF29F4500524787 /* TouchLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchLabel.h; path = ../common/customUI/TouchLabel.h; sourceTree = "<group>"; };
  430. 7183E8C91CF29F4500524787 /* TouchLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchLabel.m; path = ../common/customUI/TouchLabel.m; sourceTree = "<group>"; };
  431. 7183E8CA1CF29F4500524787 /* TouchImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchImageView.h; path = ../common/customUI/TouchImageView.h; sourceTree = "<group>"; };
  432. 7183E8CB1CF29F4500524787 /* TouchImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchImageView.m; path = ../common/customUI/TouchImageView.m; sourceTree = "<group>"; };
  433. 7183E8CC1CF29F4500524787 /* UILabel+FontAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UILabel+FontAppearance.h"; path = "../common/customUI/UILabel+FontAppearance.h"; sourceTree = "<group>"; };
  434. 7183E8CD1CF29F4500524787 /* UILabel+FontAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UILabel+FontAppearance.m"; path = "../common/customUI/UILabel+FontAppearance.m"; sourceTree = "<group>"; };
  435. 7183E8CF1CF29F4500524787 /* CommonEditorCellAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellAction.h; path = ../common/CommonEditor/CommonEditorCellAction.h; sourceTree = "<group>"; };
  436. 7183E8D01CF29F4500524787 /* CommonEditorCellAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellAction.m; path = ../common/CommonEditor/CommonEditorCellAction.m; sourceTree = "<group>"; };
  437. 7183E8D11CF29F4500524787 /* CommonEditorCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEdit.h; path = ../common/CommonEditor/CommonEditorCellEdit.h; sourceTree = "<group>"; };
  438. 7183E8D21CF29F4500524787 /* CommonEditorCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEdit.m; path = ../common/CommonEditor/CommonEditorCellEdit.m; sourceTree = "<group>"; };
  439. 7183E8D31CF29F4500524787 /* CommonEditorCellEnum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEnum.h; path = ../common/CommonEditor/CommonEditorCellEnum.h; sourceTree = "<group>"; };
  440. 7183E8D41CF29F4500524787 /* CommonEditorCellEnum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEnum.m; path = ../common/CommonEditor/CommonEditorCellEnum.m; sourceTree = "<group>"; };
  441. 7183E8D51CF29F4500524787 /* CommonEditorCellImg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellImg.h; path = ../common/CommonEditor/CommonEditorCellImg.h; sourceTree = "<group>"; };
  442. 7183E8D61CF29F4500524787 /* CommonEditorCellImg.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellImg.m; path = ../common/CommonEditor/CommonEditorCellImg.m; sourceTree = "<group>"; };
  443. 7183E8D71CF29F4500524787 /* CommonEditorCellLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellLabel.h; path = ../common/CommonEditor/CommonEditorCellLabel.h; sourceTree = "<group>"; };
  444. 7183E8D81CF29F4500524787 /* CommonEditorCellLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellLabel.m; path = ../common/CommonEditor/CommonEditorCellLabel.m; sourceTree = "<group>"; };
  445. 7183E8D91CF29F4500524787 /* CommonEditorCellMAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellMAction.h; path = ../common/CommonEditor/CommonEditorCellMAction.h; sourceTree = "<group>"; };
  446. 7183E8DA1CF29F4500524787 /* CommonEditorCellMAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellMAction.m; path = ../common/CommonEditor/CommonEditorCellMAction.m; sourceTree = "<group>"; };
  447. 7183E8DB1CF29F4500524787 /* CommonEditorCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellModel.h; path = ../common/CommonEditor/CommonEditorCellModel.h; sourceTree = "<group>"; };
  448. 7183E8DC1CF29F4500524787 /* CommonEditorCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellModel.m; path = ../common/CommonEditor/CommonEditorCellModel.m; sourceTree = "<group>"; };
  449. 7183E8DD1CF29F4500524787 /* CommonEditorCellSignature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSignature.h; path = ../common/CommonEditor/CommonEditorCellSignature.h; sourceTree = "<group>"; };
  450. 7183E8DE1CF29F4500524787 /* CommonEditorCellSignature.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSignature.m; path = ../common/CommonEditor/CommonEditorCellSignature.m; sourceTree = "<group>"; };
  451. 7183E8DF1CF29F4500524787 /* CommonEditorCellSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSwitch.h; path = ../common/CommonEditor/CommonEditorCellSwitch.h; sourceTree = "<group>"; };
  452. 7183E8E01CF29F4500524787 /* CommonEditorCellSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSwitch.m; path = ../common/CommonEditor/CommonEditorCellSwitch.m; sourceTree = "<group>"; };
  453. 7183E8E11CF29F4500524787 /* CommonEditorCellTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellTextView.h; path = ../common/CommonEditor/CommonEditorCellTextView.h; sourceTree = "<group>"; };
  454. 7183E8E21CF29F4500524787 /* CommonEditorCellTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellTextView.m; path = ../common/CommonEditor/CommonEditorCellTextView.m; sourceTree = "<group>"; };
  455. 7183E8E31CF29F4500524787 /* CommonEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorViewController.h; path = ../common/CommonEditor/CommonEditorViewController.h; sourceTree = "<group>"; };
  456. 7183E8E41CF29F4500524787 /* CommonEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorViewController.m; path = ../common/CommonEditor/CommonEditorViewController.m; sourceTree = "<group>"; };
  457. 7183E8E51CF29F4500524787 /* DatePickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DatePickerViewController.h; path = ../common/CommonEditor/DatePickerViewController.h; sourceTree = "<group>"; };
  458. 7183E8E61CF29F4500524787 /* DatePickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DatePickerViewController.m; path = ../common/CommonEditor/DatePickerViewController.m; sourceTree = "<group>"; };
  459. 7183E8E71CF29F4500524787 /* EnumSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectorCell.h; path = ../common/CommonEditor/EnumSelectorCell.h; sourceTree = "<group>"; };
  460. 7183E8E81CF29F4500524787 /* EnumSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectorCell.m; path = ../common/CommonEditor/EnumSelectorCell.m; sourceTree = "<group>"; };
  461. 7183E8E91CF29F4500524787 /* EnumSelectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectViewController.h; path = ../common/CommonEditor/EnumSelectViewController.h; sourceTree = "<group>"; };
  462. 7183E8EA1CF29F4500524787 /* EnumSelectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectViewController.m; path = ../common/CommonEditor/EnumSelectViewController.m; sourceTree = "<group>"; };
  463. 7183E8EB1CF29F4500524787 /* MonthPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MonthPickerViewController.h; path = ../common/CommonEditor/MonthPickerViewController.h; sourceTree = "<group>"; };
  464. 7183E8EC1CF29F4500524787 /* MonthPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MonthPickerViewController.m; path = ../common/CommonEditor/MonthPickerViewController.m; sourceTree = "<group>"; };
  465. 7183E8ED1CF29F4500524787 /* SRMonthPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SRMonthPicker.h; path = ../common/CommonEditor/SRMonthPicker.h; sourceTree = "<group>"; };
  466. 7183E8EE1CF29F4500524787 /* SRMonthPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SRMonthPicker.m; path = ../common/CommonEditor/SRMonthPicker.m; sourceTree = "<group>"; };
  467. 7183E8F01CF29F4500524787 /* ActiveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ActiveViewController.h; path = ../common/ActiveViewController.h; sourceTree = "<group>"; };
  468. 7183E8F11CF29F4500524787 /* ActiveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ActiveViewController.m; path = ../common/ActiveViewController.m; sourceTree = "<group>"; };
  469. 7183E8F21CF29F4500524787 /* CommonGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonGridViewController.h; path = ../common/CommonGridViewController.h; sourceTree = "<group>"; };
  470. 7183E8F31CF29F4500524787 /* CommonGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonGridViewController.m; path = ../common/CommonGridViewController.m; sourceTree = "<group>"; };
  471. 7183E8F51CF29F4500524787 /* DeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DeviceInfo.h; path = "../ScanApiSDK-10.2.227-2/DeviceInfo.h"; sourceTree = "<group>"; };
  472. 7183E8F61CF29F4500524787 /* DeviceInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DeviceInfo.m; path = "../ScanApiSDK-10.2.227-2/DeviceInfo.m"; sourceTree = "<group>"; };
  473. 7183E8F71CF29F4500524787 /* ScanApiHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanApiHelper.h; path = "../ScanApiSDK-10.2.227-2/ScanApiHelper.h"; sourceTree = "<group>"; };
  474. 7183E8F81CF29F4500524787 /* ScanApiHelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ScanApiHelper.mm; path = "../ScanApiSDK-10.2.227-2/ScanApiHelper.mm"; sourceTree = "<group>"; };
  475. 7183E8F91CF29F4500524787 /* ScanApiIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanApiIncludes.h; path = "../ScanApiSDK-10.2.227-2/ScanApiIncludes.h"; sourceTree = "<group>"; };
  476. 7183E8FA1CF29F4500524787 /* softScanBeep.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = softScanBeep.wav; path = "../ScanApiSDK-10.2.227-2/softScanBeep.wav"; sourceTree = "<group>"; };
  477. 7183E8FB1CF29F4500524787 /* include */ = {isa = PBXFileReference; lastKnownFileType = folder; name = include; path = "../ScanApiSDK-10.2.227-2/include"; sourceTree = "<group>"; };
  478. 7183E9271CF29FA600524787 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
  479. 7183E9281CF29FCB00524787 /* PDFViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFViewController.h; path = "../common/Functions/PDF+Web/PDFViewController.h"; sourceTree = "<group>"; };
  480. 7183E9291CF29FCB00524787 /* PDFViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFViewController.m; path = "../common/Functions/PDF+Web/PDFViewController.m"; sourceTree = "<group>"; };
  481. 7183E92A1CF29FCB00524787 /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebViewController.h; path = "../common/Functions/PDF+Web/WebViewController.h"; sourceTree = "<group>"; };
  482. 7183E92B1CF29FCB00524787 /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebViewController.m; path = "../common/Functions/PDF+Web/WebViewController.m"; sourceTree = "<group>"; };
  483. 7183E92D1CF29FCB00524787 /* AddressEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AddressEditorViewController.h; path = ../common/Functions/address/AddressEditorViewController.h; sourceTree = "<group>"; };
  484. 7183E92E1CF29FCB00524787 /* AddressEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AddressEditorViewController.m; path = ../common/Functions/address/AddressEditorViewController.m; sourceTree = "<group>"; };
  485. 7183E9301CF29FCB00524787 /* CycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CycleScrollView.h; path = ../common/AutoScrollImage/CycleScrollView.h; sourceTree = "<group>"; };
  486. 7183E9311CF29FCB00524787 /* CycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CycleScrollView.m; path = ../common/AutoScrollImage/CycleScrollView.m; sourceTree = "<group>"; };
  487. 7183E9321CF29FCB00524787 /* NSTimer+Addition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSTimer+Addition.h"; path = "../common/AutoScrollImage/NSTimer+Addition.h"; sourceTree = "<group>"; };
  488. 7183E9331CF29FCB00524787 /* NSTimer+Addition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSTimer+Addition.m"; path = "../common/AutoScrollImage/NSTimer+Addition.m"; sourceTree = "<group>"; };
  489. 7183E9341CF29FCB00524787 /* SliderPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SliderPage.h; path = ../common/AutoScrollImage/SliderPage.h; sourceTree = "<group>"; };
  490. 7183E9351CF29FCB00524787 /* SliderPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SliderPage.m; path = ../common/AutoScrollImage/SliderPage.m; sourceTree = "<group>"; };
  491. 7183E9371CF29FCB00524787 /* BundleModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelCell.h; path = ../common/Functions/cart/BundleModelCell.h; sourceTree = "<group>"; };
  492. 7183E9381CF29FCB00524787 /* BundleModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelCell.m; path = ../common/Functions/cart/BundleModelCell.m; sourceTree = "<group>"; };
  493. 7183E9391CF29FCB00524787 /* BundleModelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelViewController.h; path = ../common/Functions/cart/BundleModelViewController.h; sourceTree = "<group>"; };
  494. 7183E93A1CF29FCB00524787 /* BundleModelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelViewController.m; path = ../common/Functions/cart/BundleModelViewController.m; sourceTree = "<group>"; };
  495. 7183E93B1CF29FCB00524787 /* CartViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartViewController.h; path = ../common/Functions/cart/CartViewController.h; sourceTree = "<group>"; };
  496. 7183E93C1CF29FCB00524787 /* CartViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartViewController.m; path = ../common/Functions/cart/CartViewController.m; sourceTree = "<group>"; };
  497. 7183E93D1CF29FCB00524787 /* EditModelPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EditModelPriceViewController.h; path = ../common/Functions/cart/EditModelPriceViewController.h; sourceTree = "<group>"; };
  498. 7183E93E1CF29FCB00524787 /* EditModelPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EditModelPriceViewController.m; path = ../common/Functions/cart/EditModelPriceViewController.m; sourceTree = "<group>"; };
  499. 7183E93F1CF29FCB00524787 /* ModelItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModelItemCell.h; path = ../common/Functions/cart/ModelItemCell.h; sourceTree = "<group>"; };
  500. 7183E9401CF29FCB00524787 /* ModelItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModelItemCell.m; path = ../common/Functions/cart/ModelItemCell.m; sourceTree = "<group>"; };
  501. 7183E9411CF29FCB00524787 /* ItemNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemNotesViewController.h; path = ../common/Functions/cart/ItemNotesViewController.h; sourceTree = "<group>"; };
  502. 7183E9421CF29FCB00524787 /* ItemNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemNotesViewController.m; path = ../common/Functions/cart/ItemNotesViewController.m; sourceTree = "<group>"; };
  503. 7183E9431CF29FCB00524787 /* CartGeneralNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartGeneralNotesViewController.h; path = ../common/Functions/cart/CartGeneralNotesViewController.h; sourceTree = "<group>"; };
  504. 7183E9441CF29FCB00524787 /* CartGeneralNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartGeneralNotesViewController.m; path = ../common/Functions/cart/CartGeneralNotesViewController.m; sourceTree = "<group>"; };
  505. 7183E9461CF29FCB00524787 /* CategoryCellNPD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryCellNPD.h; sourceTree = "<group>"; };
  506. 7183E9471CF29FCB00524787 /* CategoryCellNPD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryCellNPD.m; sourceTree = "<group>"; };
  507. 7183E9491CF29FCB00524787 /* CategoryCellSmall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryCellSmall.h; path = ../common/Functions/category/CategoryCellSmall.h; sourceTree = "<group>"; };
  508. 7183E94A1CF29FCB00524787 /* CategoryCellSmall.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryCellSmall.m; path = ../common/Functions/category/CategoryCellSmall.m; sourceTree = "<group>"; };
  509. 7183E94B1CF29FCB00524787 /* CategorySearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategorySearchFilterViewController.h; path = ../common/Functions/category/CategorySearchFilterViewController.h; sourceTree = "<group>"; };
  510. 7183E94C1CF29FCB00524787 /* CategorySearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategorySearchFilterViewController.m; path = ../common/Functions/category/CategorySearchFilterViewController.m; sourceTree = "<group>"; };
  511. 7183E94D1CF29FCB00524787 /* CategoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryViewController.h; path = ../common/Functions/category/CategoryViewController.h; sourceTree = "<group>"; };
  512. 7183E94E1CF29FCB00524787 /* CategoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryViewController.m; path = ../common/Functions/category/CategoryViewController.m; sourceTree = "<group>"; };
  513. 7183E94F1CF29FCB00524787 /* debug_category_filter.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = debug_category_filter.json; sourceTree = "<group>"; };
  514. 7183E9511CF29FCB00524787 /* RATreeNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNode.h; path = ../common/categoryMenu_RATree/RATreeNode.h; sourceTree = "<group>"; };
  515. 7183E9521CF29FCB00524787 /* RATreeNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNode.m; path = ../common/categoryMenu_RATree/RATreeNode.m; sourceTree = "<group>"; };
  516. 7183E9531CF29FCB00524787 /* RATreeNodeCollectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeCollectionController.h; path = ../common/categoryMenu_RATree/RATreeNodeCollectionController.h; sourceTree = "<group>"; };
  517. 7183E9541CF29FCB00524787 /* RATreeNodeCollectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeCollectionController.m; path = ../common/categoryMenu_RATree/RATreeNodeCollectionController.m; sourceTree = "<group>"; };
  518. 7183E9551CF29FCB00524787 /* RATreeNodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeInfo.h; path = ../common/categoryMenu_RATree/RATreeNodeInfo.h; sourceTree = "<group>"; };
  519. 7183E9561CF29FCB00524787 /* RATreeNodeInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeInfo.m; path = ../common/categoryMenu_RATree/RATreeNodeInfo.m; sourceTree = "<group>"; };
  520. 7183E9571CF29FCB00524787 /* RATreeNodeInfo+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeNodeInfo+Private.h"; path = "../common/categoryMenu_RATree/RATreeNodeInfo+Private.h"; sourceTree = "<group>"; };
  521. 7183E9581CF29FCB00524787 /* RATreeNodeInfo+Private.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeNodeInfo+Private.m"; path = "../common/categoryMenu_RATree/RATreeNodeInfo+Private.m"; sourceTree = "<group>"; };
  522. 7183E9591CF29FCB00524787 /* RATreeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeView.h; path = ../common/categoryMenu_RATree/RATreeView.h; sourceTree = "<group>"; };
  523. 7183E95A1CF29FCB00524787 /* RATreeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeView.m; path = ../common/categoryMenu_RATree/RATreeView.m; sourceTree = "<group>"; };
  524. 7183E95B1CF29FCB00524787 /* RATreeView+Enums.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+Enums.h"; path = "../common/categoryMenu_RATree/RATreeView+Enums.h"; sourceTree = "<group>"; };
  525. 7183E95C1CF29FCB00524787 /* RATreeView+Enums.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+Enums.m"; path = "../common/categoryMenu_RATree/RATreeView+Enums.m"; sourceTree = "<group>"; };
  526. 7183E95D1CF29FCB00524787 /* RATreeView+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+Private.h"; path = "../common/categoryMenu_RATree/RATreeView+Private.h"; sourceTree = "<group>"; };
  527. 7183E95E1CF29FCB00524787 /* RATreeView+Private.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+Private.m"; path = "../common/categoryMenu_RATree/RATreeView+Private.m"; sourceTree = "<group>"; };
  528. 7183E95F1CF29FCB00524787 /* RATreeView+TableViewDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+TableViewDataSource.h"; path = "../common/categoryMenu_RATree/RATreeView+TableViewDataSource.h"; sourceTree = "<group>"; };
  529. 7183E9601CF29FCB00524787 /* RATreeView+TableViewDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+TableViewDataSource.m"; path = "../common/categoryMenu_RATree/RATreeView+TableViewDataSource.m"; sourceTree = "<group>"; };
  530. 7183E9611CF29FCB00524787 /* RATreeView+TableViewDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+TableViewDelegate.h"; path = "../common/categoryMenu_RATree/RATreeView+TableViewDelegate.h"; sourceTree = "<group>"; };
  531. 7183E9621CF29FCB00524787 /* RATreeView+TableViewDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+TableViewDelegate.m"; path = "../common/categoryMenu_RATree/RATreeView+TableViewDelegate.m"; sourceTree = "<group>"; };
  532. 7183E9631CF29FCB00524787 /* RATreeView+UIScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+UIScrollView.h"; path = "../common/categoryMenu_RATree/RATreeView+UIScrollView.h"; sourceTree = "<group>"; };
  533. 7183E9641CF29FCB00524787 /* RATreeView+UIScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+UIScrollView.m"; path = "../common/categoryMenu_RATree/RATreeView+UIScrollView.m"; sourceTree = "<group>"; };
  534. 7183E9651CF29FCB00524787 /* RAViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAViewController.h; path = ../common/categoryMenu_RATree/RAViewController.h; sourceTree = "<group>"; };
  535. 7183E9661CF29FCB00524787 /* RAViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAViewController.m; path = ../common/categoryMenu_RATree/RAViewController.m; sourceTree = "<group>"; };
  536. 7183E9681CF29FCB00524787 /* CreditCardEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreditCardEditorViewController.h; path = ../common/Functions/creditcard/CreditCardEditorViewController.h; sourceTree = "<group>"; };
  537. 7183E9691CF29FCB00524787 /* CreditCardEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreditCardEditorViewController.m; path = ../common/Functions/creditcard/CreditCardEditorViewController.m; sourceTree = "<group>"; };
  538. 7183E96B1CF29FCB00524787 /* ContactAdvanceSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactAdvanceSearchViewController.h; path = ../common/Functions/contact/ContactAdvanceSearchViewController.h; sourceTree = "<group>"; };
  539. 7183E96C1CF29FCB00524787 /* ContactAdvanceSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactAdvanceSearchViewController.m; path = ../common/Functions/contact/ContactAdvanceSearchViewController.m; sourceTree = "<group>"; };
  540. 7183E96D1CF29FCB00524787 /* ContactListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListTableViewCell.h; path = ../common/Functions/contact/ContactListTableViewCell.h; sourceTree = "<group>"; };
  541. 7183E96E1CF29FCB00524787 /* ContactListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListTableViewCell.m; path = ../common/Functions/contact/ContactListTableViewCell.m; sourceTree = "<group>"; };
  542. 7183E96F1CF29FCB00524787 /* ContactListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListViewController.h; path = ../common/Functions/contact/ContactListViewController.h; sourceTree = "<group>"; };
  543. 7183E9701CF29FCB00524787 /* ContactListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListViewController.m; path = ../common/Functions/contact/ContactListViewController.m; sourceTree = "<group>"; };
  544. 7183E9711CF29FCB00524787 /* customer_advanced_search.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = customer_advanced_search.json; path = ../common/Functions/contact/customer_advanced_search.json; sourceTree = "<group>"; };
  545. 7183E9721CF29FCB00524787 /* customer_info_template.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = customer_info_template.json; path = ../common/Functions/contact/customer_info_template.json; sourceTree = "<group>"; };
  546. 7183E9731CF29FCB00524787 /* customer_info_template_edit.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = customer_info_template_edit.json; path = ../common/Functions/contact/customer_info_template_edit.json; sourceTree = "<group>"; };
  547. 7183E9741CF29FCB00524787 /* CustomerEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerEditViewController.h; path = ../common/Functions/contact/CustomerEditViewController.h; sourceTree = "<group>"; };
  548. 7183E9751CF29FCB00524787 /* CustomerEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerEditViewController.m; path = ../common/Functions/contact/CustomerEditViewController.m; sourceTree = "<group>"; };
  549. 7183E9761CF29FCB00524787 /* CustomerInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerInfoViewController.h; path = ../common/Functions/contact/CustomerInfoViewController.h; sourceTree = "<group>"; };
  550. 7183E9771CF29FCB00524787 /* CustomerInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerInfoViewController.m; path = ../common/Functions/contact/CustomerInfoViewController.m; sourceTree = "<group>"; };
  551. 7183E9791CF29FCB00524787 /* DetailHeaderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailHeaderCell.h; path = ../common/Functions/modelDetail/DetailHeaderCell.h; sourceTree = "<group>"; };
  552. 7183E97A1CF29FCB00524787 /* DetailHeaderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailHeaderCell.m; path = ../common/Functions/modelDetail/DetailHeaderCell.m; sourceTree = "<group>"; };
  553. 7183E97B1CF29FCB00524787 /* DetailImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailImageCell.h; path = ../common/Functions/modelDetail/DetailImageCell.h; sourceTree = "<group>"; };
  554. 7183E97C1CF29FCB00524787 /* DetailImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailImageCell.m; path = ../common/Functions/modelDetail/DetailImageCell.m; sourceTree = "<group>"; };
  555. 7183E97D1CF29FCB00524787 /* DetailKVCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailKVCell.h; path = ../common/Functions/modelDetail/DetailKVCell.h; sourceTree = "<group>"; };
  556. 7183E97E1CF29FCB00524787 /* DetailKVCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailKVCell.m; path = ../common/Functions/modelDetail/DetailKVCell.m; sourceTree = "<group>"; };
  557. 7183E97F1CF29FCB00524787 /* DetailTopicCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailTopicCell.h; path = ../common/Functions/modelDetail/DetailTopicCell.h; sourceTree = "<group>"; };
  558. 7183E9801CF29FCB00524787 /* DetailTopicCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailTopicCell.m; path = ../common/Functions/modelDetail/DetailTopicCell.m; sourceTree = "<group>"; };
  559. 7183E9811CF29FCB00524787 /* DetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailViewController.h; path = ../common/Functions/modelDetail/DetailViewController.h; sourceTree = "<group>"; };
  560. 7183E9821CF29FCB00524787 /* DetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailViewController.m; path = ../common/Functions/modelDetail/DetailViewController.m; sourceTree = "<group>"; };
  561. 7183E9831CF29FCB00524787 /* LineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineView.h; path = ../common/Functions/modelDetail/LineView.h; sourceTree = "<group>"; };
  562. 7183E9841CF29FCB00524787 /* LineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineView.m; path = ../common/Functions/modelDetail/LineView.m; sourceTree = "<group>"; };
  563. 7183E9861CF29FCB00524787 /* HomeTableViewCellBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellBanner.h; path = ../common/Functions/home/HomeTableViewCellBanner.h; sourceTree = "<group>"; };
  564. 7183E9871CF29FCB00524787 /* HomeTableViewCellBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellBanner.m; path = ../common/Functions/home/HomeTableViewCellBanner.m; sourceTree = "<group>"; };
  565. 7183E9881CF29FCB00524787 /* HomeTableViewCellButtonBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellButtonBanner.h; path = ../common/Functions/home/HomeTableViewCellButtonBanner.h; sourceTree = "<group>"; };
  566. 7183E9891CF29FCB00524787 /* HomeTableViewCellButtonBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellButtonBanner.m; path = ../common/Functions/home/HomeTableViewCellButtonBanner.m; sourceTree = "<group>"; };
  567. 7183E98A1CF29FCB00524787 /* HomeTableViewCellSlide.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellSlide.h; path = ../common/Functions/home/HomeTableViewCellSlide.h; sourceTree = "<group>"; };
  568. 7183E98B1CF29FCB00524787 /* HomeTableViewCellSlide.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellSlide.m; path = ../common/Functions/home/HomeTableViewCellSlide.m; sourceTree = "<group>"; };
  569. 7183E98C1CF29FCB00524787 /* HomeTableViewCellTopic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellTopic.h; path = ../common/Functions/home/HomeTableViewCellTopic.h; sourceTree = "<group>"; };
  570. 7183E98D1CF29FCB00524787 /* HomeTableViewCellTopic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellTopic.m; path = ../common/Functions/home/HomeTableViewCellTopic.m; sourceTree = "<group>"; };
  571. 7183E98E1CF29FCB00524787 /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeViewController.h; path = ../common/Functions/home/HomeViewController.h; sourceTree = "<group>"; };
  572. 7183E98F1CF29FCB00524787 /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeViewController.m; path = ../common/Functions/home/HomeViewController.m; sourceTree = "<group>"; };
  573. 7183E9911CF29FCB00524787 /* CreateOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreateOrderViewController.h; path = ../common/Functions/order/CreateOrderViewController.h; sourceTree = "<group>"; };
  574. 7183E9921CF29FCB00524787 /* CreateOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreateOrderViewController.m; path = ../common/Functions/order/CreateOrderViewController.m; sourceTree = "<group>"; };
  575. 7183E9931CF29FCB00524787 /* OrderDetailHtmlCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailHtmlCell.h; path = ../common/Functions/order/OrderDetailHtmlCell.h; sourceTree = "<group>"; };
  576. 7183E9941CF29FCB00524787 /* OrderDetailHtmlCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailHtmlCell.m; path = ../common/Functions/order/OrderDetailHtmlCell.m; sourceTree = "<group>"; };
  577. 7183E9951CF29FCB00524787 /* OrderDetailInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailInfoCell.h; path = ../common/Functions/order/OrderDetailInfoCell.h; sourceTree = "<group>"; };
  578. 7183E9961CF29FCB00524787 /* OrderDetailInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailInfoCell.m; path = ../common/Functions/order/OrderDetailInfoCell.m; sourceTree = "<group>"; };
  579. 7183E9971CF29FCB00524787 /* OrderDetailModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailModelCell.h; path = ../common/Functions/order/OrderDetailModelCell.h; sourceTree = "<group>"; };
  580. 7183E9981CF29FCB00524787 /* OrderDetailModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailModelCell.m; path = ../common/Functions/order/OrderDetailModelCell.m; sourceTree = "<group>"; };
  581. 7183E9991CF29FCB00524787 /* OrderDetailPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailPriceCell.h; path = ../common/Functions/order/OrderDetailPriceCell.h; sourceTree = "<group>"; };
  582. 7183E99A1CF29FCB00524787 /* OrderDetailPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailPriceCell.m; path = ../common/Functions/order/OrderDetailPriceCell.m; sourceTree = "<group>"; };
  583. 7183E99B1CF29FCB00524787 /* OrderDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailViewController.h; path = ../common/Functions/order/OrderDetailViewController.h; sourceTree = "<group>"; };
  584. 7183E99C1CF29FCB00524787 /* OrderDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailViewController.m; path = ../common/Functions/order/OrderDetailViewController.m; sourceTree = "<group>"; };
  585. 7183E99D1CF29FCB00524787 /* OrderListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListTableViewCell.h; path = ../common/Functions/order/OrderListTableViewCell.h; sourceTree = "<group>"; };
  586. 7183E99E1CF29FCB00524787 /* OrderListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListTableViewCell.m; path = ../common/Functions/order/OrderListTableViewCell.m; sourceTree = "<group>"; };
  587. 7183E99F1CF29FCB00524787 /* OrderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListViewController.h; path = ../common/Functions/order/OrderListViewController.h; sourceTree = "<group>"; };
  588. 7183E9A01CF29FCB00524787 /* OrderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListViewController.m; path = ../common/Functions/order/OrderListViewController.m; sourceTree = "<group>"; };
  589. 7183E9A11CF29FCB00524787 /* status_filter_cadedate_open.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = status_filter_cadedate_open.json; path = ../common/Functions/order/status_filter_cadedate_open.json; sourceTree = "<group>"; };
  590. 7183E9A31CF29FCB00524787 /* OrderDetailSignatureCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailSignatureCell.h; path = ../common/Functions/order/OrderDetailSignatureCell.h; sourceTree = "<group>"; };
  591. 7183E9A41CF29FCB00524787 /* OrderDetailSignatureCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailSignatureCell.m; path = ../common/Functions/order/OrderDetailSignatureCell.m; sourceTree = "<group>"; };
  592. 7183E9A61CF29FCB00524787 /* PDFListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFListTableViewCell.h; path = ../common/Functions/portfolio/PDFListTableViewCell.h; sourceTree = "<group>"; };
  593. 7183E9A71CF29FCB00524787 /* PDFListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFListTableViewCell.m; path = ../common/Functions/portfolio/PDFListTableViewCell.m; sourceTree = "<group>"; };
  594. 7183E9A81CF29FCB00524787 /* PDFListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFListViewController.h; path = ../common/Functions/portfolio/PDFListViewController.h; sourceTree = "<group>"; };
  595. 7183E9A91CF29FCB00524787 /* PDFListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFListViewController.m; path = ../common/Functions/portfolio/PDFListViewController.m; sourceTree = "<group>"; };
  596. 7183E9AA1CF29FCB00524787 /* PortfolioViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioViewController.h; path = ../common/Functions/portfolio/PortfolioViewController.h; sourceTree = "<group>"; };
  597. 7183E9AB1CF29FCB00524787 /* PortfolioViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioViewController.m; path = ../common/Functions/portfolio/PortfolioViewController.m; sourceTree = "<group>"; };
  598. 7183E9AC1CF29FCB00524787 /* TearSheetParamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TearSheetParamViewController.h; path = ../common/Functions/portfolio/TearSheetParamViewController.h; sourceTree = "<group>"; };
  599. 7183E9AD1CF29FCB00524787 /* TearSheetParamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TearSheetParamViewController.m; path = ../common/Functions/portfolio/TearSheetParamViewController.m; sourceTree = "<group>"; };
  600. 7183E9AE1CF29FCB00524787 /* PortfolioEditQTYViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioEditQTYViewController.h; path = ../common/Functions/portfolio/PortfolioEditQTYViewController.h; sourceTree = "<group>"; };
  601. 7183E9AF1CF29FCB00524787 /* PortfolioEditQTYViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioEditQTYViewController.m; path = ../common/Functions/portfolio/PortfolioEditQTYViewController.m; sourceTree = "<group>"; };
  602. 7183E9B11CF29FCB00524787 /* ScannerControllerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerControllerView.h; path = ../common/Functions/camscan/ScannerControllerView.h; sourceTree = "<group>"; };
  603. 7183E9B21CF29FCB00524787 /* ScannerControllerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerControllerView.m; path = ../common/Functions/camscan/ScannerControllerView.m; sourceTree = "<group>"; };
  604. 7183E9B31CF29FCB00524787 /* ScannerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerViewController.h; path = ../common/Functions/camscan/ScannerViewController.h; sourceTree = "<group>"; };
  605. 7183E9B41CF29FCB00524787 /* ScannerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerViewController.m; path = ../common/Functions/camscan/ScannerViewController.m; sourceTree = "<group>"; };
  606. 7183E9B51CF29FCB00524787 /* SCShapeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SCShapeView.h; path = ../common/Functions/camscan/SCShapeView.h; sourceTree = "<group>"; };
  607. 7183E9B61CF29FCB00524787 /* SCShapeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SCShapeView.m; path = ../common/Functions/camscan/SCShapeView.m; sourceTree = "<group>"; };
  608. 7183E9B81CF29FCB00524787 /* FilterCellCadedate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellCadedate.h; path = "../common/Functions/search+itemsearch/FilterCellCadedate.h"; sourceTree = "<group>"; };
  609. 7183E9B91CF29FCB00524787 /* FilterCellCadedate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellCadedate.m; path = "../common/Functions/search+itemsearch/FilterCellCadedate.m"; sourceTree = "<group>"; };
  610. 7183E9BA1CF29FCB00524787 /* FilterCellValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellValue.h; path = "../common/Functions/search+itemsearch/FilterCellValue.h"; sourceTree = "<group>"; };
  611. 7183E9BB1CF29FCB00524787 /* FilterCellValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellValue.m; path = "../common/Functions/search+itemsearch/FilterCellValue.m"; sourceTree = "<group>"; };
  612. 7183E9BC1CF29FCB00524787 /* ItemSearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchFilterViewController.h; path = "../common/Functions/search+itemsearch/ItemSearchFilterViewController.h"; sourceTree = "<group>"; };
  613. 7183E9BD1CF29FCB00524787 /* ItemSearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchFilterViewController.m; path = "../common/Functions/search+itemsearch/ItemSearchFilterViewController.m"; sourceTree = "<group>"; };
  614. 7183E9BE1CF29FCB00524787 /* ItemSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchViewController.h; path = "../common/Functions/search+itemsearch/ItemSearchViewController.h"; sourceTree = "<group>"; };
  615. 7183E9BF1CF29FCB00524787 /* ItemSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchViewController.m; path = "../common/Functions/search+itemsearch/ItemSearchViewController.m"; sourceTree = "<group>"; };
  616. 7183E9C01CF29FCB00524787 /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SearchViewController.h; path = "../common/Functions/search+itemsearch/SearchViewController.h"; sourceTree = "<group>"; };
  617. 7183E9C11CF29FCB00524787 /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SearchViewController.m; path = "../common/Functions/search+itemsearch/SearchViewController.m"; sourceTree = "<group>"; };
  618. 7183E9C31CF29FCB00524787 /* SignatureView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureView.h; path = ../common/Functions/signature/SignatureView.h; sourceTree = "<group>"; };
  619. 7183E9C41CF29FCB00524787 /* SignatureView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureView.m; path = ../common/Functions/signature/SignatureView.m; sourceTree = "<group>"; };
  620. 7183E9C51CF29FCB00524787 /* SignatureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureViewController.h; path = ../common/Functions/signature/SignatureViewController.h; sourceTree = "<group>"; };
  621. 7183E9C61CF29FCB00524787 /* SignatureViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureViewController.m; path = ../common/Functions/signature/SignatureViewController.m; sourceTree = "<group>"; };
  622. 7183E9C81CF29FCB00524787 /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutViewController.h; path = ../common/Functions/sidemenu/AboutViewController.h; sourceTree = "<group>"; };
  623. 7183E9C91CF29FCB00524787 /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutViewController.m; path = ../common/Functions/sidemenu/AboutViewController.m; sourceTree = "<group>"; };
  624. 7183E9CA1CF29FCB00524787 /* CacheViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CacheViewController.h; path = ../common/Functions/sidemenu/CacheViewController.h; sourceTree = "<group>"; };
  625. 7183E9CB1CF29FCB00524787 /* CacheViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CacheViewController.m; path = ../common/Functions/sidemenu/CacheViewController.m; sourceTree = "<group>"; };
  626. 7183E9CC1CF29FCB00524787 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LoginViewController.h; path = ../common/Functions/sidemenu/LoginViewController.h; sourceTree = "<group>"; };
  627. 7183E9CD1CF29FCB00524787 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LoginViewController.m; path = ../common/Functions/sidemenu/LoginViewController.m; sourceTree = "<group>"; };
  628. 7183E9CE1CF29FCB00524787 /* PopupNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PopupNavigationController.h; path = ../common/Functions/sidemenu/PopupNavigationController.h; sourceTree = "<group>"; };
  629. 7183E9CF1CF29FCB00524787 /* PopupNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PopupNavigationController.m; path = ../common/Functions/sidemenu/PopupNavigationController.m; sourceTree = "<group>"; };
  630. 7183E9D01CF29FCB00524787 /* RetrievePassViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RetrievePassViewController.h; path = ../common/Functions/sidemenu/RetrievePassViewController.h; sourceTree = "<group>"; };
  631. 7183E9D11CF29FCB00524787 /* RetrievePassViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RetrievePassViewController.m; path = ../common/Functions/sidemenu/RetrievePassViewController.m; sourceTree = "<group>"; };
  632. 7183E9D21CF29FCB00524787 /* ScannerSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerSettingViewController.h; path = ../common/Functions/sidemenu/ScannerSettingViewController.h; sourceTree = "<group>"; };
  633. 7183E9D31CF29FCB00524787 /* ScannerSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerSettingViewController.m; path = ../common/Functions/sidemenu/ScannerSettingViewController.m; sourceTree = "<group>"; };
  634. 7183E9D41CF29FCB00524787 /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingViewController.h; path = ../common/Functions/sidemenu/SettingViewController.h; sourceTree = "<group>"; };
  635. 7183E9D51CF29FCB00524787 /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingViewController.m; path = ../common/Functions/sidemenu/SettingViewController.m; sourceTree = "<group>"; };
  636. 7183E9D61CF29FCB00524787 /* FunctionTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FunctionTestViewController.h; path = ../common/Functions/sidemenu/FunctionTestViewController.h; sourceTree = "<group>"; };
  637. 7183E9D71CF29FCB00524787 /* FunctionTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FunctionTestViewController.m; path = ../common/Functions/sidemenu/FunctionTestViewController.m; sourceTree = "<group>"; };
  638. 7183E9D81CF29FCB00524787 /* SimplifiedBuyingProgramViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimplifiedBuyingProgramViewController.h; path = ../common/Functions/sidemenu/SimplifiedBuyingProgramViewController.h; sourceTree = "<group>"; };
  639. 7183E9D91CF29FCB00524787 /* SimplifiedBuyingProgramViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimplifiedBuyingProgramViewController.m; path = ../common/Functions/sidemenu/SimplifiedBuyingProgramViewController.m; sourceTree = "<group>"; };
  640. 7183E9DA1CF29FCB00524787 /* UserListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UserListViewController.h; path = ../common/Functions/sidemenu/UserListViewController.h; sourceTree = "<group>"; };
  641. 7183E9DB1CF29FCB00524787 /* UserListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UserListViewController.m; path = ../common/Functions/sidemenu/UserListViewController.m; sourceTree = "<group>"; };
  642. 7183E9DF1CF29FCB00524787 /* WatchListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WatchListViewController.h; path = ../common/Functions/watchlist/WatchListViewController.h; sourceTree = "<group>"; };
  643. 7183E9E01CF29FCB00524787 /* WatchListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WatchListViewController.m; path = ../common/Functions/watchlist/WatchListViewController.m; sourceTree = "<group>"; };
  644. 7183EA391CF2A04000524787 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = "../iSales-NPD/AppDelegate.h"; sourceTree = "<group>"; };
  645. 7183EA3A1CF2A04000524787 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = "../iSales-NPD/AppDelegate.m"; sourceTree = "<group>"; };
  646. 7183EA3B1CF2A04000524787 /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainViewController.h; path = ../common/Functions/MainViewController.h; sourceTree = "<group>"; };
  647. 7183EA3C1CF2A04000524787 /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainViewController.m; path = ../common/Functions/MainViewController.m; sourceTree = "<group>"; };
  648. 7183EA3F1CF2A04D00524787 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/OLM.storyboard; sourceTree = "<group>"; };
  649. 7183EA421CF2A06600524787 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  650. 7183EA451CF2A06E00524787 /* iSalesNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesNavigationController.h; path = ../common/iSalesNavigationController.h; sourceTree = "<group>"; };
  651. 7183EA461CF2A06E00524787 /* iSalesNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesNavigationController.m; path = ../common/iSalesNavigationController.m; sourceTree = "<group>"; };
  652. 7183EA481CF2A1F300524787 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
  653. 7183EA491CF2A1F300524787 /* Pods.release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
  654. 7183EA4D1CF2A6DF00524787 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  655. 7183EA4F1CF2A70800524787 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = "ScanApiSDK-10.2.227-2/lib/libScanApiCore.a"; sourceTree = "<group>"; };
  656. 7183EA511CF2A71A00524787 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  657. 7183EA531CF2A72300524787 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  658. 7183EA551CF2A72D00524787 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
  659. 7183EA571CF2A74500524787 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  660. 7183EA591CF2A75500524787 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  661. 7183EA5B1CF2A76000524787 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  662. 7183EA5D1CF2A77000524787 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  663. 7183EA5F1CF2A77A00524787 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  664. 7183EA611CF2A78700524787 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  665. 7183EA631CF2A7B500524787 /* libPods.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libPods.a; path = "/Users/Ray/Library/Developer/Xcode/DerivedData/RedAnt_ERP_Mobile-auxyofixkfceivgarvzdscolhdtm/Build/Products/Debug-iphonesimulator/libPods.a"; sourceTree = "<absolute>"; };
  666. 7183EA661CF2AEE400524787 /* PrefixHeader.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
  667. 7183EA671CF2B05C00524787 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+Base64.h"; path = "../common/AES/NSData+Base64.h"; sourceTree = "<group>"; };
  668. 7183EA681CF2B05C00524787 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+Base64.m"; path = "../common/AES/NSData+Base64.m"; sourceTree = "<group>"; };
  669. 7183EA691CF2B05C00524787 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+CommonCrypto.h"; path = "../common/AES/NSData+CommonCrypto.h"; sourceTree = "<group>"; };
  670. 7183EA6A1CF2B05C00524787 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+CommonCrypto.m"; path = "../common/AES/NSData+CommonCrypto.m"; sourceTree = "<group>"; };
  671. 7183EA6B1CF2B05C00524787 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+Base64.h"; path = "../common/AES/NSString+Base64.h"; sourceTree = "<group>"; };
  672. 7183EA6C1CF2B05C00524787 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+Base64.m"; path = "../common/AES/NSString+Base64.m"; sourceTree = "<group>"; };
  673. 719562371CF57BFC00C74A49 /* CategoryHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryHeaderView.h; path = common/Functions/category/CategoryHeaderView.h; sourceTree = SOURCE_ROOT; };
  674. 719562381CF57BFC00C74A49 /* CategoryHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryHeaderView.m; path = common/Functions/category/CategoryHeaderView.m; sourceTree = SOURCE_ROOT; };
  675. 7195623D1CF580E800C74A49 /* DefaultTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultTableHeaderView.h; path = common/customUI/DefaultTableHeaderView.h; sourceTree = SOURCE_ROOT; };
  676. 7195623E1CF580E800C74A49 /* DefaultTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultTableHeaderView.m; path = common/customUI/DefaultTableHeaderView.m; sourceTree = SOURCE_ROOT; };
  677. 719562431CF6937F00C74A49 /* default_appearance.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = default_appearance.json; sourceTree = "<group>"; };
  678. 71AD1E081D3E039E008B7685 /* SyncControlPanelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncControlPanelViewController.h; path = common/Functions/offline/SyncControlPanelViewController.h; sourceTree = SOURCE_ROOT; };
  679. 71AD1E091D3E039E008B7685 /* SyncControlPanelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SyncControlPanelViewController.m; path = common/Functions/offline/SyncControlPanelViewController.m; sourceTree = SOURCE_ROOT; };
  680. 71BF06FF1D2F3CCC00981938 /* OLDataProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OLDataProvider.h; path = common/Functions/offline/OLDataProvider.h; sourceTree = SOURCE_ROOT; };
  681. 71BF07001D2F3CCC00981938 /* OLDataProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OLDataProvider.m; path = common/Functions/offline/OLDataProvider.m; sourceTree = SOURCE_ROOT; };
  682. 71BF07031D2F3CF300981938 /* OfflineSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineSettingViewController.h; path = common/Functions/offline/OfflineSettingViewController.h; sourceTree = SOURCE_ROOT; };
  683. 71BF07041D2F3CF300981938 /* OfflineSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineSettingViewController.m; path = common/Functions/offline/OfflineSettingViewController.m; sourceTree = SOURCE_ROOT; };
  684. 71C1D80B1F45556200CEA1C9 /* Assets.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Assets.bundle; path = common/youtube/Assets.bundle; sourceTree = SOURCE_ROOT; };
  685. 71C1D80C1F45556200CEA1C9 /* YouTubeiOSPlayerHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = YouTubeiOSPlayerHelper.h; path = common/youtube/YouTubeiOSPlayerHelper.h; sourceTree = SOURCE_ROOT; };
  686. 71C1D80D1F45556200CEA1C9 /* YTPlayerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = YTPlayerView.h; path = common/youtube/YTPlayerView.h; sourceTree = SOURCE_ROOT; };
  687. 71C1D80E1F45556200CEA1C9 /* YTPlayerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = YTPlayerView.m; path = common/youtube/YTPlayerView.m; sourceTree = SOURCE_ROOT; };
  688. 71C1D80F1F45556200CEA1C9 /* YTViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = YTViewController.h; path = common/youtube/YTViewController.h; sourceTree = SOURCE_ROOT; };
  689. 71C1D8101F45556200CEA1C9 /* YTViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = YTViewController.m; path = common/youtube/YTViewController.m; sourceTree = SOURCE_ROOT; };
  690. 71C1D8161F45564000CEA1C9 /* ContentPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContentPreviewController.h; path = Controller/ContentPreviewController.h; sourceTree = "<group>"; };
  691. 71C1D8171F45564000CEA1C9 /* ContentPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContentPreviewController.m; path = Controller/ContentPreviewController.m; sourceTree = "<group>"; };
  692. 71C1D81F1F45574200CEA1C9 /* PhotoList.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = PhotoList.storyboard; path = Storyboard/PhotoList.storyboard; sourceTree = "<group>"; };
  693. 71C1D8211F45574B00CEA1C9 /* PhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoPreviewCell.h; path = View/PhotoPreviewCell.h; sourceTree = "<group>"; };
  694. 71C1D8221F45574B00CEA1C9 /* PhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoPreviewCell.m; path = View/PhotoPreviewCell.m; sourceTree = "<group>"; };
  695. 71C1D8231F45574B00CEA1C9 /* VideoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VideoPreviewCell.h; path = View/VideoPreviewCell.h; sourceTree = "<group>"; };
  696. 71C1D8241F45574B00CEA1C9 /* VideoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VideoPreviewCell.m; path = View/VideoPreviewCell.m; sourceTree = "<group>"; };
  697. 71C1D8271F45586700CEA1C9 /* ModelDescriptionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModelDescriptionController.h; sourceTree = "<group>"; };
  698. 71C1D8281F45586700CEA1C9 /* ModelDescriptionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModelDescriptionController.m; sourceTree = "<group>"; };
  699. 71D30A281CFC0EDD006F9477 /* DefaultImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultImageButton.h; path = common/Functions/DefaultImageButton.h; sourceTree = SOURCE_ROOT; };
  700. 71D30A291CFC0EDD006F9477 /* DefaultImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultImageButton.m; path = common/Functions/DefaultImageButton.m; sourceTree = SOURCE_ROOT; };
  701. /* End PBXFileReference section */
  702. /* Begin PBXFrameworksBuildPhase section */
  703. 7183E8411CF2913E00524787 /* Frameworks */ = {
  704. isa = PBXFrameworksBuildPhase;
  705. buildActionMask = 2147483647;
  706. files = (
  707. 42BEF3A41E8A4D0700632AB6 /* CoreData.framework in Frameworks */,
  708. 42BEF3A21E8A4D0000632AB6 /* SystemConfiguration.framework in Frameworks */,
  709. 7183EA4E1CF2A6DF00524787 /* libz.tbd in Frameworks */,
  710. 7183EA501CF2A70800524787 /* libScanApiCore.a in Frameworks */,
  711. 42BEF3991E8A4C7D00632AB6 /* GGLCore.framework in Frameworks */,
  712. 7183EA521CF2A71A00524787 /* AVFoundation.framework in Frameworks */,
  713. 7183EA561CF2A72D00524787 /* ExternalAccessory.framework in Frameworks */,
  714. 42BEF3981E8A4C7D00632AB6 /* GGLAnalytics.framework in Frameworks */,
  715. 42BEF3941E8A4C7D00632AB6 /* FirebaseCore.framework in Frameworks */,
  716. 7183EA541CF2A72300524787 /* AudioToolbox.framework in Frameworks */,
  717. 7183EA581CF2A74500524787 /* libsqlite3.tbd in Frameworks */,
  718. 42BEF3961E8A4C7D00632AB6 /* FirebaseInstanceID.framework in Frameworks */,
  719. 7183EA5A1CF2A75600524787 /* Accelerate.framework in Frameworks */,
  720. 7183EA5C1CF2A76000524787 /* QuartzCore.framework in Frameworks */,
  721. 7183EA5E1CF2A77000524787 /* CoreGraphics.framework in Frameworks */,
  722. 7183EA601CF2A77B00524787 /* UIKit.framework in Frameworks */,
  723. 7183EA621CF2A78700524787 /* Foundation.framework in Frameworks */,
  724. 7183EA641CF2A7B500524787 /* libPods.a in Frameworks */,
  725. 42BEF3931E8A4C7D00632AB6 /* FirebaseAnalytics.framework in Frameworks */,
  726. 42BEF39C1E8A4C7D00632AB6 /* libGoogleAnalytics.a in Frameworks */,
  727. );
  728. runOnlyForDeploymentPostprocessing = 0;
  729. };
  730. /* End PBXFrameworksBuildPhase section */
  731. /* Begin PBXGroup section */
  732. 42897FFE1E24902E005F1BD8 /* JKTimer */ = {
  733. isa = PBXGroup;
  734. children = (
  735. 42897FFF1E24902E005F1BD8 /* JKTimerManager.h */,
  736. 428980001E24902E005F1BD8 /* JKTimerManager.m */,
  737. );
  738. name = JKTimer;
  739. path = common/JKTimer;
  740. sourceTree = SOURCE_ROOT;
  741. };
  742. 428980181E24925A005F1BD8 /* sort */ = {
  743. isa = PBXGroup;
  744. children = (
  745. 428980191E24925A005F1BD8 /* SortButton.h */,
  746. 4289801A1E24925A005F1BD8 /* SortButton.m */,
  747. 4289801B1E24925A005F1BD8 /* SortItemCell.h */,
  748. 4289801C1E24925A005F1BD8 /* SortItemCell.m */,
  749. 4289801D1E24925A005F1BD8 /* SortItemViewController.h */,
  750. 4289801E1E24925A005F1BD8 /* SortItemViewController.m */,
  751. );
  752. name = sort;
  753. path = common/sort;
  754. sourceTree = SOURCE_ROOT;
  755. };
  756. 4289802F1E2492E0005F1BD8 /* Price Setting */ = {
  757. isa = PBXGroup;
  758. children = (
  759. 428980301E2492E0005F1BD8 /* CategoryPriceCell.h */,
  760. 428980311E2492E0005F1BD8 /* CategoryPriceCell.m */,
  761. 428980321E2492E0005F1BD8 /* CategoryPriceViewController.h */,
  762. 428980331E2492E0005F1BD8 /* CategoryPriceViewController.m */,
  763. 428980341E2492E0005F1BD8 /* PriceSettingViewController.h */,
  764. 428980351E2492E0005F1BD8 /* PriceSettingViewController.m */,
  765. 428980361E2492E0005F1BD8 /* SetCategoryPriceController.h */,
  766. 428980371E2492E0005F1BD8 /* SetCategoryPriceController.m */,
  767. );
  768. name = "Price Setting";
  769. path = "common/Price Setting";
  770. sourceTree = SOURCE_ROOT;
  771. };
  772. 428980491E249340005F1BD8 /* JKLock */ = {
  773. isa = PBXGroup;
  774. children = (
  775. 4289804A1E249340005F1BD8 /* JKDotView.h */,
  776. 4289804B1E249340005F1BD8 /* JKDotView.m */,
  777. 4289804C1E249340005F1BD8 /* JKLockButton.h */,
  778. 4289804D1E249340005F1BD8 /* JKLockButton.m */,
  779. 4289804E1E249340005F1BD8 /* JKLockController.h */,
  780. 4289804F1E249340005F1BD8 /* JKLockController.m */,
  781. 428980501E249340005F1BD8 /* JKMessageBoxController.h */,
  782. 428980511E249340005F1BD8 /* JKMessageBoxController.m */,
  783. );
  784. name = JKLock;
  785. path = common/JKLock;
  786. sourceTree = SOURCE_ROOT;
  787. };
  788. 428980561E24935E005F1BD8 /* UIColor+HEX */ = {
  789. isa = PBXGroup;
  790. children = (
  791. 428980571E24935E005F1BD8 /* UIColor+JK_HEX.h */,
  792. 428980581E24935E005F1BD8 /* UIColor+JK_HEX.m */,
  793. );
  794. name = "UIColor+HEX";
  795. path = "common/UIColor+HEX";
  796. sourceTree = SOURCE_ROOT;
  797. };
  798. 428980731E24B2C2005F1BD8 /* pdfCreator */ = {
  799. isa = PBXGroup;
  800. children = (
  801. 428980741E24B2C2005F1BD8 /* BasicDrawable.h */,
  802. 428980751E24B2C2005F1BD8 /* BasicDrawable.m */,
  803. 428980761E24B2C2005F1BD8 /* GridDrawable.h */,
  804. 428980771E24B2C2005F1BD8 /* GridDrawable.m */,
  805. 428980781E24B2C2005F1BD8 /* GroupDrawable.h */,
  806. 428980791E24B2C2005F1BD8 /* GroupDrawable.m */,
  807. 4289807A1E24B2C2005F1BD8 /* ImageDrawable.h */,
  808. 4289807B1E24B2C2005F1BD8 /* ImageDrawable.m */,
  809. 4289807C1E24B2C2005F1BD8 /* LineDrawable.h */,
  810. 4289807D1E24B2C2005F1BD8 /* LineDrawable.m */,
  811. 4289807E1E24B2C2005F1BD8 /* pdfCreator.h */,
  812. 4289807F1E24B2C2005F1BD8 /* pdfCreator.m */,
  813. 428980801E24B2C2005F1BD8 /* PDFDrawable.h */,
  814. 428980811E24B2C2005F1BD8 /* PDFDrawable.m */,
  815. 428980821E24B2C2005F1BD8 /* PDFPage.h */,
  816. 428980831E24B2C2005F1BD8 /* PDFPage.m */,
  817. 428980841E24B2C2005F1BD8 /* RectDrawable.h */,
  818. 428980851E24B2C2005F1BD8 /* RectDrawable.m */,
  819. 428980861E24B2C2005F1BD8 /* TableDrawable.h */,
  820. 428980871E24B2C2005F1BD8 /* TableDrawable.m */,
  821. 428980881E24B2C2005F1BD8 /* TextDrawable.h */,
  822. 428980891E24B2C2005F1BD8 /* TextDrawable.m */,
  823. );
  824. name = pdfCreator;
  825. path = common/pdfCreator;
  826. sourceTree = SOURCE_ROOT;
  827. };
  828. 42BEF3631E8A4C7D00632AB6 /* GoogleAnalytics */ = {
  829. isa = PBXGroup;
  830. children = (
  831. 42BEF3641E8A4C7D00632AB6 /* FirebaseAnalytics */,
  832. 42BEF3671E8A4C7D00632AB6 /* FirebaseCore */,
  833. 42BEF36A1E8A4C7D00632AB6 /* FirebaseInstanceID */,
  834. 42BEF36F1E8A4C7D00632AB6 /* Google */,
  835. 42BEF37C1E8A4C7D00632AB6 /* GoogleAnalyst.h */,
  836. 42BEF37D1E8A4C7D00632AB6 /* GoogleAnalyst.m */,
  837. 42BEF37E1E8A4C7D00632AB6 /* GoogleAnalytics */,
  838. 42BEF38C1E8A4C7D00632AB6 /* GoogleToolboxForMac */,
  839. );
  840. path = GoogleAnalytics;
  841. sourceTree = SOURCE_ROOT;
  842. };
  843. 42BEF3641E8A4C7D00632AB6 /* FirebaseAnalytics */ = {
  844. isa = PBXGroup;
  845. children = (
  846. 42BEF3651E8A4C7D00632AB6 /* Frameworks */,
  847. );
  848. path = FirebaseAnalytics;
  849. sourceTree = "<group>";
  850. };
  851. 42BEF3651E8A4C7D00632AB6 /* Frameworks */ = {
  852. isa = PBXGroup;
  853. children = (
  854. 42BEF3661E8A4C7D00632AB6 /* FirebaseAnalytics.framework */,
  855. );
  856. path = Frameworks;
  857. sourceTree = "<group>";
  858. };
  859. 42BEF3671E8A4C7D00632AB6 /* FirebaseCore */ = {
  860. isa = PBXGroup;
  861. children = (
  862. 42BEF3681E8A4C7D00632AB6 /* Frameworks */,
  863. );
  864. path = FirebaseCore;
  865. sourceTree = "<group>";
  866. };
  867. 42BEF3681E8A4C7D00632AB6 /* Frameworks */ = {
  868. isa = PBXGroup;
  869. children = (
  870. 42BEF3691E8A4C7D00632AB6 /* FirebaseCore.framework */,
  871. );
  872. path = Frameworks;
  873. sourceTree = "<group>";
  874. };
  875. 42BEF36A1E8A4C7D00632AB6 /* FirebaseInstanceID */ = {
  876. isa = PBXGroup;
  877. children = (
  878. 42BEF36B1E8A4C7D00632AB6 /* CHANGELOG.md */,
  879. 42BEF36C1E8A4C7D00632AB6 /* Frameworks */,
  880. 42BEF36E1E8A4C7D00632AB6 /* README.md */,
  881. );
  882. path = FirebaseInstanceID;
  883. sourceTree = "<group>";
  884. };
  885. 42BEF36C1E8A4C7D00632AB6 /* Frameworks */ = {
  886. isa = PBXGroup;
  887. children = (
  888. 42BEF36D1E8A4C7D00632AB6 /* FirebaseInstanceID.framework */,
  889. );
  890. path = Frameworks;
  891. sourceTree = "<group>";
  892. };
  893. 42BEF36F1E8A4C7D00632AB6 /* Google */ = {
  894. isa = PBXGroup;
  895. children = (
  896. 42BEF3701E8A4C7D00632AB6 /* Frameworks */,
  897. 42BEF3731E8A4C7D00632AB6 /* Headers */,
  898. 42BEF37B1E8A4C7D00632AB6 /* README.md */,
  899. );
  900. path = Google;
  901. sourceTree = "<group>";
  902. };
  903. 42BEF3701E8A4C7D00632AB6 /* Frameworks */ = {
  904. isa = PBXGroup;
  905. children = (
  906. 42BEF3711E8A4C7D00632AB6 /* GGLAnalytics.framework */,
  907. 42BEF3721E8A4C7D00632AB6 /* GGLCore.framework */,
  908. );
  909. path = Frameworks;
  910. sourceTree = "<group>";
  911. };
  912. 42BEF3731E8A4C7D00632AB6 /* Headers */ = {
  913. isa = PBXGroup;
  914. children = (
  915. 42BEF3741E8A4C7D00632AB6 /* Analytics.h */,
  916. 42BEF3751E8A4C7D00632AB6 /* Core.h */,
  917. 42BEF3761E8A4C7D00632AB6 /* module.modulemap */,
  918. 42BEF3771E8A4C7D00632AB6 /* ModuleHeaders */,
  919. );
  920. path = Headers;
  921. sourceTree = "<group>";
  922. };
  923. 42BEF3771E8A4C7D00632AB6 /* ModuleHeaders */ = {
  924. isa = PBXGroup;
  925. children = (
  926. 42BEF3781E8A4C7D00632AB6 /* Analytics-Module.h */,
  927. 42BEF3791E8A4C7D00632AB6 /* Core-Module.h */,
  928. 42BEF37A1E8A4C7D00632AB6 /* SignIn-Module.h */,
  929. );
  930. path = ModuleHeaders;
  931. sourceTree = "<group>";
  932. };
  933. 42BEF37E1E8A4C7D00632AB6 /* GoogleAnalytics */ = {
  934. isa = PBXGroup;
  935. children = (
  936. 42BEF37F1E8A4C7D00632AB6 /* Libraries */,
  937. 42BEF3811E8A4C7D00632AB6 /* Sources */,
  938. );
  939. path = GoogleAnalytics;
  940. sourceTree = "<group>";
  941. };
  942. 42BEF37F1E8A4C7D00632AB6 /* Libraries */ = {
  943. isa = PBXGroup;
  944. children = (
  945. 42BEF3801E8A4C7D00632AB6 /* libGoogleAnalytics.a */,
  946. );
  947. path = Libraries;
  948. sourceTree = "<group>";
  949. };
  950. 42BEF3811E8A4C7D00632AB6 /* Sources */ = {
  951. isa = PBXGroup;
  952. children = (
  953. 42BEF3821E8A4C7D00632AB6 /* GAI.h */,
  954. 42BEF3831E8A4C7D00632AB6 /* GAIDictionaryBuilder.h */,
  955. 42BEF3841E8A4C7D00632AB6 /* GAIEcommerceFields.h */,
  956. 42BEF3851E8A4C7D00632AB6 /* GAIEcommerceProduct.h */,
  957. 42BEF3861E8A4C7D00632AB6 /* GAIEcommerceProductAction.h */,
  958. 42BEF3871E8A4C7D00632AB6 /* GAIEcommercePromotion.h */,
  959. 42BEF3881E8A4C7D00632AB6 /* GAIFields.h */,
  960. 42BEF3891E8A4C7D00632AB6 /* GAILogger.h */,
  961. 42BEF38A1E8A4C7D00632AB6 /* GAITrackedViewController.h */,
  962. 42BEF38B1E8A4C7D00632AB6 /* GAITracker.h */,
  963. );
  964. path = Sources;
  965. sourceTree = "<group>";
  966. };
  967. 42BEF38C1E8A4C7D00632AB6 /* GoogleToolboxForMac */ = {
  968. isa = PBXGroup;
  969. children = (
  970. 42BEF38D1E8A4C7D00632AB6 /* Foundation */,
  971. 42BEF3901E8A4C7D00632AB6 /* GTMDefines.h */,
  972. 42BEF3911E8A4C7D00632AB6 /* LICENSE */,
  973. 42BEF3921E8A4C7D00632AB6 /* README.md */,
  974. );
  975. path = GoogleToolboxForMac;
  976. sourceTree = "<group>";
  977. };
  978. 42BEF38D1E8A4C7D00632AB6 /* Foundation */ = {
  979. isa = PBXGroup;
  980. children = (
  981. 42BEF38E1E8A4C7D00632AB6 /* GTMNSData+zlib.h */,
  982. 42BEF38F1E8A4C7D00632AB6 /* GTMNSData+zlib.m */,
  983. );
  984. path = Foundation;
  985. sourceTree = "<group>";
  986. };
  987. 42BEF3A01E8A4CFF00632AB6 /* Frameworks */ = {
  988. isa = PBXGroup;
  989. children = (
  990. 42BEF3A31E8A4D0700632AB6 /* CoreData.framework */,
  991. 42BEF3A11E8A4D0000632AB6 /* SystemConfiguration.framework */,
  992. );
  993. name = Frameworks;
  994. sourceTree = "<group>";
  995. };
  996. 7183E83B1CF2913E00524787 = {
  997. isa = PBXGroup;
  998. children = (
  999. 7183E8461CF2913E00524787 /* HMLG Mobile */,
  1000. 42BEF3A01E8A4CFF00632AB6 /* Frameworks */,
  1001. );
  1002. sourceTree = "<group>";
  1003. };
  1004. 7183E8451CF2913E00524787 /* Products */ = {
  1005. isa = PBXGroup;
  1006. children = (
  1007. 7183E8441CF2913E00524787 /* HMLG Mobile.app */,
  1008. );
  1009. name = Products;
  1010. path = ..;
  1011. sourceTree = "<group>";
  1012. };
  1013. 7183E8461CF2913E00524787 /* HMLG Mobile */ = {
  1014. isa = PBXGroup;
  1015. children = (
  1016. 7183E9251CF29F4B00524787 /* HMLG */,
  1017. 7183EA4A1CF2A1F300524787 /* Pods */,
  1018. 7183E8451CF2913E00524787 /* Products */,
  1019. 7183EA651CF2A9DC00524787 /* Frameworks */,
  1020. 7183E8931CF29F3900524787 /* utils */,
  1021. 7183E8F41CF29F4500524787 /* CommonUI */,
  1022. 7183E8FC1CF29F4500524787 /* ScanAPI */,
  1023. 7183E92C1CF29FCB00524787 /* PDF+Web */,
  1024. 7183E92F1CF29FCB00524787 /* address */,
  1025. 7183E9361CF29FCB00524787 /* AutoScrollImage */,
  1026. 7183E9451CF29FCB00524787 /* cartView */,
  1027. 7183E9501CF29FCB00524787 /* cagegory */,
  1028. 7183E9671CF29FCB00524787 /* categoryMenu */,
  1029. 7183E96A1CF29FCB00524787 /* creditcard */,
  1030. 7183E9781CF29FCB00524787 /* contact */,
  1031. 7183E9851CF29FCB00524787 /* DetailView */,
  1032. 7183E9901CF29FCB00524787 /* HomeView */,
  1033. 71BF07021D2F3CE000981938 /* offline */,
  1034. 7183E9A51CF29FCB00524787 /* order */,
  1035. 7183E9B01CF29FCB00524787 /* portfolio */,
  1036. 7183E9B71CF29FCB00524787 /* cam_scan */,
  1037. 7183E9C21CF29FCB00524787 /* search */,
  1038. 7183E9C71CF29FCB00524787 /* Signature */,
  1039. 7183E9DE1CF29FCB00524787 /* sideMenu */,
  1040. 7183E9E11CF29FCB00524787 /* watchlist */,
  1041. 4289802F1E2492E0005F1BD8 /* Price Setting */,
  1042. 7183EA391CF2A04000524787 /* AppDelegate.h */,
  1043. 7183EA3A1CF2A04000524787 /* AppDelegate.m */,
  1044. 4289806D1E24AEA6005F1BD8 /* Singleton.h */,
  1045. 4289806E1E24AEA6005F1BD8 /* Singleton.m */,
  1046. 428980051E2490E3005F1BD8 /* NotificationNameCenter.h */,
  1047. 428980061E2490E3005F1BD8 /* NotificationNameCenter.m */,
  1048. 7183EA3B1CF2A04000524787 /* MainViewController.h */,
  1049. 7183EA3C1CF2A04000524787 /* MainViewController.m */,
  1050. 7183E8531CF2913E00524787 /* Assets.xcassets */,
  1051. 7183EA401CF2A04D00524787 /* OLM.storyboard */,
  1052. 7183E8551CF2913E00524787 /* LaunchScreen.storyboard */,
  1053. 7183EA431CF2A06600524787 /* Main.storyboard */,
  1054. 7183EA451CF2A06E00524787 /* iSalesNavigationController.h */,
  1055. 7183EA461CF2A06E00524787 /* iSalesNavigationController.m */,
  1056. 7183E8581CF2913E00524787 /* Info.plist */,
  1057. 7183E8471CF2913E00524787 /* Supporting Files */,
  1058. 7183EA661CF2AEE400524787 /* PrefixHeader.pch */,
  1059. );
  1060. path = "HMLG Mobile";
  1061. sourceTree = "<group>";
  1062. };
  1063. 7183E8471CF2913E00524787 /* Supporting Files */ = {
  1064. isa = PBXGroup;
  1065. children = (
  1066. 7183E8481CF2913E00524787 /* main.m */,
  1067. );
  1068. name = "Supporting Files";
  1069. sourceTree = "<group>";
  1070. };
  1071. 7183E86C1CF29F3900524787 /* zip */ = {
  1072. isa = PBXGroup;
  1073. children = (
  1074. 7183E8611CF29F3900524787 /* crypt.h */,
  1075. 7183E8621CF29F3900524787 /* ioapi.c */,
  1076. 7183E8631CF29F3900524787 /* ioapi.h */,
  1077. 7183E8641CF29F3900524787 /* mztools.c */,
  1078. 7183E8651CF29F3900524787 /* mztools.h */,
  1079. 7183E8661CF29F3900524787 /* unzip.c */,
  1080. 7183E8671CF29F3900524787 /* unzip.h */,
  1081. 7183E8681CF29F3900524787 /* zip.c */,
  1082. 7183E8691CF29F3900524787 /* zip.h */,
  1083. 7183E86A1CF29F3900524787 /* ZipArchive.h */,
  1084. 7183E86B1CF29F3900524787 /* ZipArchive.mm */,
  1085. );
  1086. name = zip;
  1087. sourceTree = "<group>";
  1088. };
  1089. 7183E87D1CF29F3900524787 /* QRCODE */ = {
  1090. isa = PBXGroup;
  1091. children = (
  1092. 7183E86D1CF29F3900524787 /* bitstream.c */,
  1093. 7183E86E1CF29F3900524787 /* bitstream.h */,
  1094. 7183E86F1CF29F3900524787 /* mask.c */,
  1095. 7183E8701CF29F3900524787 /* mask.h */,
  1096. 7183E8711CF29F3900524787 /* QRCodeGenerator.h */,
  1097. 7183E8721CF29F3900524787 /* QRCodeGenerator.m */,
  1098. 7183E8731CF29F3900524787 /* qrencode.c */,
  1099. 7183E8741CF29F3900524787 /* qrencode.h */,
  1100. 7183E8751CF29F3900524787 /* qrinput.c */,
  1101. 7183E8761CF29F3900524787 /* qrinput.h */,
  1102. 7183E8771CF29F3900524787 /* qrspec.c */,
  1103. 7183E8781CF29F3900524787 /* qrspec.h */,
  1104. 7183E8791CF29F3900524787 /* rscode.c */,
  1105. 7183E87A1CF29F3900524787 /* rscode.h */,
  1106. 7183E87B1CF29F3900524787 /* split.c */,
  1107. 7183E87C1CF29F3900524787 /* split.h */,
  1108. );
  1109. name = QRCODE;
  1110. sourceTree = "<group>";
  1111. };
  1112. 7183E8871CF29F3900524787 /* AES */ = {
  1113. isa = PBXGroup;
  1114. children = (
  1115. 7183E87E1CF29F3900524787 /* AESCrypt.h */,
  1116. 7183E87F1CF29F3900524787 /* AESCrypt.m */,
  1117. 7183E8801CF29F3900524787 /* LICENSE */,
  1118. 7183EA671CF2B05C00524787 /* NSData+Base64.h */,
  1119. 7183EA681CF2B05C00524787 /* NSData+Base64.m */,
  1120. 7183EA691CF2B05C00524787 /* NSData+CommonCrypto.h */,
  1121. 7183EA6A1CF2B05C00524787 /* NSData+CommonCrypto.m */,
  1122. 7183EA6B1CF2B05C00524787 /* NSString+Base64.h */,
  1123. 7183EA6C1CF2B05C00524787 /* NSString+Base64.m */,
  1124. );
  1125. name = AES;
  1126. sourceTree = "<group>";
  1127. };
  1128. 7183E8931CF29F3900524787 /* utils */ = {
  1129. isa = PBXGroup;
  1130. children = (
  1131. 42A85BF11E60039A0058A9CE /* HWWeakTimer.h */,
  1132. 42A85BF21E60039A0058A9CE /* HWWeakTimer.m */,
  1133. 42BEF3631E8A4C7D00632AB6 /* GoogleAnalytics */,
  1134. 428980731E24B2C2005F1BD8 /* pdfCreator */,
  1135. 428980561E24935E005F1BD8 /* UIColor+HEX */,
  1136. 428980491E249340005F1BD8 /* JKLock */,
  1137. 42897FFE1E24902E005F1BD8 /* JKTimer */,
  1138. 7183E86C1CF29F3900524787 /* zip */,
  1139. 7183E87D1CF29F3900524787 /* QRCODE */,
  1140. 7183E8871CF29F3900524787 /* AES */,
  1141. 7183E8881CF29F3900524787 /* Reachability.h */,
  1142. 7183E8891CF29F3900524787 /* Reachability.m */,
  1143. 7183E88A1CF29F3900524787 /* const.h */,
  1144. 7183E88B1CF29F3900524787 /* RAUtils.h */,
  1145. 7183E88C1CF29F3900524787 /* RAUtils.m */,
  1146. 428980951E24B2E7005F1BD8 /* ImageUtils.h */,
  1147. 428980961E24B2E7005F1BD8 /* ImageUtils.m */,
  1148. 4289800B1E2491A6005F1BD8 /* CartUtils.h */,
  1149. 4289800C1E2491A6005F1BD8 /* CartUtils.m */,
  1150. 428980981E24B304005F1BD8 /* TextUtils.h */,
  1151. 428980991E24B304005F1BD8 /* TextUtils.m */,
  1152. 7183E88D1CF29F3900524787 /* iSalesDB.h */,
  1153. 7183E88E1CF29F3900524787 /* iSalesDB.m */,
  1154. 42A85BF51E6004180058A9CE /* ERPUtils.h */,
  1155. 42A85BF61E6004180058A9CE /* ERPUtils.m */,
  1156. 42A85BF91E6004180058A9CE /* PDFUtils.h */,
  1157. 42A85BFA1E6004180058A9CE /* PDFUtils.m */,
  1158. 7183E88F1CF29F3900524787 /* iSalesNetwork.h */,
  1159. 7183E8901CF29F3900524787 /* iSalesNetwork.m */,
  1160. 71BF06FF1D2F3CCC00981938 /* OLDataProvider.h */,
  1161. 71BF07001D2F3CCC00981938 /* OLDataProvider.m */,
  1162. );
  1163. name = utils;
  1164. path = "../iSales-NPD";
  1165. sourceTree = "<group>";
  1166. };
  1167. 7183E8B11CF29F4500524787 /* photoStack */ = {
  1168. isa = PBXGroup;
  1169. children = (
  1170. 7183E8AB1CF29F4500524787 /* PhotoBorder.png */,
  1171. 7183E8AC1CF29F4500524787 /* PhotoBorder@2x.png */,
  1172. 7183E8AD1CF29F4500524787 /* PhotoStackView.h */,
  1173. 7183E8AE1CF29F4500524787 /* PhotoStackView.m */,
  1174. 7183E8AF1CF29F4500524787 /* PhotoStackViewController.h */,
  1175. 7183E8B01CF29F4500524787 /* PhotoStackViewController.m */,
  1176. );
  1177. name = photoStack;
  1178. sourceTree = "<group>";
  1179. };
  1180. 7183E8CE1CF29F4500524787 /* customUI */ = {
  1181. isa = PBXGroup;
  1182. children = (
  1183. 7183E8B21CF29F4500524787 /* CustomIOSAlertView.h */,
  1184. 7183E8B31CF29F4500524787 /* CustomIOSAlertView.m */,
  1185. 7183E8B41CF29F4500524787 /* ImageScrollerView.h */,
  1186. 7183E8B51CF29F4500524787 /* ImageScrollerView.m */,
  1187. 7183E8B61CF29F4500524787 /* ImageScrollerViewController.h */,
  1188. 7183E8B71CF29F4500524787 /* ImageScrollerViewController.m */,
  1189. 7183E8B81CF29F4500524787 /* ImageUploadViewController.h */,
  1190. 7183E8B91CF29F4500524787 /* ImageUploadViewController.m */,
  1191. 7183E8BA1CF29F4500524787 /* ImageViewController.h */,
  1192. 7183E8BB1CF29F4500524787 /* ImageViewController.m */,
  1193. 7183E8BC1CF29F4500524787 /* NIDropDown.h */,
  1194. 7183E8BD1CF29F4500524787 /* NIDropDown.m */,
  1195. 7183E8BE1CF29F4500524787 /* PulldownMenu.h */,
  1196. 7183E8BF1CF29F4500524787 /* PulldownMenu.m */,
  1197. 7183E8C01CF29F4500524787 /* RadioButton.h */,
  1198. 7183E8C11CF29F4500524787 /* RadioButton.m */,
  1199. 7183E8C21CF29F4500524787 /* RTLabel.h */,
  1200. 7183E8C31CF29F4500524787 /* RTLabel.m */,
  1201. 7183E8C41CF29F4500524787 /* SimpleGrid.h */,
  1202. 7183E8C51CF29F4500524787 /* SimpleGrid.m */,
  1203. 7183E8C61CF29F4500524787 /* StrikethroughLabel.h */,
  1204. 7183E8C71CF29F4500524787 /* StrikethroughLabel.m */,
  1205. 7183E8C81CF29F4500524787 /* TouchLabel.h */,
  1206. 7183E8C91CF29F4500524787 /* TouchLabel.m */,
  1207. 7183E8CA1CF29F4500524787 /* TouchImageView.h */,
  1208. 7183E8CB1CF29F4500524787 /* TouchImageView.m */,
  1209. 7183E8CC1CF29F4500524787 /* UILabel+FontAppearance.h */,
  1210. 7183E8CD1CF29F4500524787 /* UILabel+FontAppearance.m */,
  1211. );
  1212. name = customUI;
  1213. sourceTree = "<group>";
  1214. };
  1215. 7183E8EF1CF29F4500524787 /* CommonEditor */ = {
  1216. isa = PBXGroup;
  1217. children = (
  1218. 7183E8CF1CF29F4500524787 /* CommonEditorCellAction.h */,
  1219. 7183E8D01CF29F4500524787 /* CommonEditorCellAction.m */,
  1220. 7183E8D11CF29F4500524787 /* CommonEditorCellEdit.h */,
  1221. 7183E8D21CF29F4500524787 /* CommonEditorCellEdit.m */,
  1222. 7183E8D31CF29F4500524787 /* CommonEditorCellEnum.h */,
  1223. 7183E8D41CF29F4500524787 /* CommonEditorCellEnum.m */,
  1224. 7183E8D51CF29F4500524787 /* CommonEditorCellImg.h */,
  1225. 7183E8D61CF29F4500524787 /* CommonEditorCellImg.m */,
  1226. 7183E8D71CF29F4500524787 /* CommonEditorCellLabel.h */,
  1227. 7183E8D81CF29F4500524787 /* CommonEditorCellLabel.m */,
  1228. 7183E8D91CF29F4500524787 /* CommonEditorCellMAction.h */,
  1229. 7183E8DA1CF29F4500524787 /* CommonEditorCellMAction.m */,
  1230. 7183E8DB1CF29F4500524787 /* CommonEditorCellModel.h */,
  1231. 7183E8DC1CF29F4500524787 /* CommonEditorCellModel.m */,
  1232. 7183E8DD1CF29F4500524787 /* CommonEditorCellSignature.h */,
  1233. 7183E8DE1CF29F4500524787 /* CommonEditorCellSignature.m */,
  1234. 7183E8DF1CF29F4500524787 /* CommonEditorCellSwitch.h */,
  1235. 7183E8E01CF29F4500524787 /* CommonEditorCellSwitch.m */,
  1236. 7183E8E11CF29F4500524787 /* CommonEditorCellTextView.h */,
  1237. 7183E8E21CF29F4500524787 /* CommonEditorCellTextView.m */,
  1238. 7183E8E31CF29F4500524787 /* CommonEditorViewController.h */,
  1239. 7183E8E41CF29F4500524787 /* CommonEditorViewController.m */,
  1240. 7183E8E51CF29F4500524787 /* DatePickerViewController.h */,
  1241. 7183E8E61CF29F4500524787 /* DatePickerViewController.m */,
  1242. 7183E8E71CF29F4500524787 /* EnumSelectorCell.h */,
  1243. 7183E8E81CF29F4500524787 /* EnumSelectorCell.m */,
  1244. 7183E8E91CF29F4500524787 /* EnumSelectViewController.h */,
  1245. 7183E8EA1CF29F4500524787 /* EnumSelectViewController.m */,
  1246. 7183E8EB1CF29F4500524787 /* MonthPickerViewController.h */,
  1247. 7183E8EC1CF29F4500524787 /* MonthPickerViewController.m */,
  1248. 7183E8ED1CF29F4500524787 /* SRMonthPicker.h */,
  1249. 7183E8EE1CF29F4500524787 /* SRMonthPicker.m */,
  1250. );
  1251. name = CommonEditor;
  1252. sourceTree = "<group>";
  1253. };
  1254. 7183E8F41CF29F4500524787 /* CommonUI */ = {
  1255. isa = PBXGroup;
  1256. children = (
  1257. 71C1D8141F4555B800CEA1C9 /* PhotoList */,
  1258. 71C1D80A1F45554B00CEA1C9 /* youtube player */,
  1259. 428980181E24925A005F1BD8 /* sort */,
  1260. 7183E8B11CF29F4500524787 /* photoStack */,
  1261. 7183E8CE1CF29F4500524787 /* customUI */,
  1262. 7183E8EF1CF29F4500524787 /* CommonEditor */,
  1263. 7183E8F01CF29F4500524787 /* ActiveViewController.h */,
  1264. 7183E8F11CF29F4500524787 /* ActiveViewController.m */,
  1265. 7183E8F21CF29F4500524787 /* CommonGridViewController.h */,
  1266. 7183E8F31CF29F4500524787 /* CommonGridViewController.m */,
  1267. 71D30A281CFC0EDD006F9477 /* DefaultImageButton.h */,
  1268. 71D30A291CFC0EDD006F9477 /* DefaultImageButton.m */,
  1269. 7195623D1CF580E800C74A49 /* DefaultTableHeaderView.h */,
  1270. 7195623E1CF580E800C74A49 /* DefaultTableHeaderView.m */,
  1271. 715002001D13CDBE00F5927F /* BundleDetailButton.h */,
  1272. 715002011D13CDBE00F5927F /* BundleDetailButton.m */,
  1273. );
  1274. name = CommonUI;
  1275. path = "../iSales-NPD";
  1276. sourceTree = "<group>";
  1277. };
  1278. 7183E8FC1CF29F4500524787 /* ScanAPI */ = {
  1279. isa = PBXGroup;
  1280. children = (
  1281. 7183E8F51CF29F4500524787 /* DeviceInfo.h */,
  1282. 7183E8F61CF29F4500524787 /* DeviceInfo.m */,
  1283. 7183E8F71CF29F4500524787 /* ScanApiHelper.h */,
  1284. 7183E8F81CF29F4500524787 /* ScanApiHelper.mm */,
  1285. 7183E8F91CF29F4500524787 /* ScanApiIncludes.h */,
  1286. 7183E8FA1CF29F4500524787 /* softScanBeep.wav */,
  1287. 7183E8FB1CF29F4500524787 /* include */,
  1288. );
  1289. name = ScanAPI;
  1290. path = "../iSales-NPD";
  1291. sourceTree = "<group>";
  1292. };
  1293. 7183E9251CF29F4B00524787 /* HMLG */ = {
  1294. isa = PBXGroup;
  1295. children = (
  1296. 7195622E1CF571AA00C74A49 /* appearance */,
  1297. 7183E9261CF29F7F00524787 /* config */,
  1298. );
  1299. name = HMLG;
  1300. sourceTree = "<group>";
  1301. };
  1302. 7183E9261CF29F7F00524787 /* config */ = {
  1303. isa = PBXGroup;
  1304. children = (
  1305. 7183E9271CF29FA600524787 /* config.h */,
  1306. );
  1307. name = config;
  1308. sourceTree = "<group>";
  1309. };
  1310. 7183E92C1CF29FCB00524787 /* PDF+Web */ = {
  1311. isa = PBXGroup;
  1312. children = (
  1313. 7183E9281CF29FCB00524787 /* PDFViewController.h */,
  1314. 7183E9291CF29FCB00524787 /* PDFViewController.m */,
  1315. 7183E92A1CF29FCB00524787 /* WebViewController.h */,
  1316. 7183E92B1CF29FCB00524787 /* WebViewController.m */,
  1317. );
  1318. name = "PDF+Web";
  1319. path = "../iSales-NPD";
  1320. sourceTree = "<group>";
  1321. };
  1322. 7183E92F1CF29FCB00524787 /* address */ = {
  1323. isa = PBXGroup;
  1324. children = (
  1325. 7183E92D1CF29FCB00524787 /* AddressEditorViewController.h */,
  1326. 7183E92E1CF29FCB00524787 /* AddressEditorViewController.m */,
  1327. );
  1328. name = address;
  1329. path = "../iSales-NPD";
  1330. sourceTree = "<group>";
  1331. };
  1332. 7183E9361CF29FCB00524787 /* AutoScrollImage */ = {
  1333. isa = PBXGroup;
  1334. children = (
  1335. 7183E9301CF29FCB00524787 /* CycleScrollView.h */,
  1336. 7183E9311CF29FCB00524787 /* CycleScrollView.m */,
  1337. 7183E9321CF29FCB00524787 /* NSTimer+Addition.h */,
  1338. 7183E9331CF29FCB00524787 /* NSTimer+Addition.m */,
  1339. 7183E9341CF29FCB00524787 /* SliderPage.h */,
  1340. 7183E9351CF29FCB00524787 /* SliderPage.m */,
  1341. );
  1342. name = AutoScrollImage;
  1343. path = "../iSales-NPD";
  1344. sourceTree = "<group>";
  1345. };
  1346. 7183E9451CF29FCB00524787 /* cartView */ = {
  1347. isa = PBXGroup;
  1348. children = (
  1349. 7183E9371CF29FCB00524787 /* BundleModelCell.h */,
  1350. 7183E9381CF29FCB00524787 /* BundleModelCell.m */,
  1351. 7183E9391CF29FCB00524787 /* BundleModelViewController.h */,
  1352. 7183E93A1CF29FCB00524787 /* BundleModelViewController.m */,
  1353. 7183E93B1CF29FCB00524787 /* CartViewController.h */,
  1354. 7183E93C1CF29FCB00524787 /* CartViewController.m */,
  1355. 7183E93D1CF29FCB00524787 /* EditModelPriceViewController.h */,
  1356. 7183E93E1CF29FCB00524787 /* EditModelPriceViewController.m */,
  1357. 7183E93F1CF29FCB00524787 /* ModelItemCell.h */,
  1358. 7183E9401CF29FCB00524787 /* ModelItemCell.m */,
  1359. 7183E9411CF29FCB00524787 /* ItemNotesViewController.h */,
  1360. 7183E9421CF29FCB00524787 /* ItemNotesViewController.m */,
  1361. 7183E9431CF29FCB00524787 /* CartGeneralNotesViewController.h */,
  1362. 7183E9441CF29FCB00524787 /* CartGeneralNotesViewController.m */,
  1363. );
  1364. name = cartView;
  1365. path = "../iSales-NPD";
  1366. sourceTree = "<group>";
  1367. };
  1368. 7183E9481CF29FCB00524787 /* NPD */ = {
  1369. isa = PBXGroup;
  1370. children = (
  1371. 7183E9461CF29FCB00524787 /* CategoryCellNPD.h */,
  1372. 7183E9471CF29FCB00524787 /* CategoryCellNPD.m */,
  1373. );
  1374. name = NPD;
  1375. sourceTree = "<group>";
  1376. };
  1377. 7183E9501CF29FCB00524787 /* cagegory */ = {
  1378. isa = PBXGroup;
  1379. children = (
  1380. 7183E9481CF29FCB00524787 /* NPD */,
  1381. 7183E9491CF29FCB00524787 /* CategoryCellSmall.h */,
  1382. 7183E94A1CF29FCB00524787 /* CategoryCellSmall.m */,
  1383. 7183E94B1CF29FCB00524787 /* CategorySearchFilterViewController.h */,
  1384. 7183E94C1CF29FCB00524787 /* CategorySearchFilterViewController.m */,
  1385. 7183E94D1CF29FCB00524787 /* CategoryViewController.h */,
  1386. 7183E94E1CF29FCB00524787 /* CategoryViewController.m */,
  1387. 7183E94F1CF29FCB00524787 /* debug_category_filter.json */,
  1388. 719562371CF57BFC00C74A49 /* CategoryHeaderView.h */,
  1389. 719562381CF57BFC00C74A49 /* CategoryHeaderView.m */,
  1390. );
  1391. name = cagegory;
  1392. path = "../iSales-NPD";
  1393. sourceTree = "<group>";
  1394. };
  1395. 7183E9671CF29FCB00524787 /* categoryMenu */ = {
  1396. isa = PBXGroup;
  1397. children = (
  1398. 7183E9511CF29FCB00524787 /* RATreeNode.h */,
  1399. 7183E9521CF29FCB00524787 /* RATreeNode.m */,
  1400. 7183E9531CF29FCB00524787 /* RATreeNodeCollectionController.h */,
  1401. 7183E9541CF29FCB00524787 /* RATreeNodeCollectionController.m */,
  1402. 7183E9551CF29FCB00524787 /* RATreeNodeInfo.h */,
  1403. 7183E9561CF29FCB00524787 /* RATreeNodeInfo.m */,
  1404. 7183E9571CF29FCB00524787 /* RATreeNodeInfo+Private.h */,
  1405. 7183E9581CF29FCB00524787 /* RATreeNodeInfo+Private.m */,
  1406. 7183E9591CF29FCB00524787 /* RATreeView.h */,
  1407. 7183E95A1CF29FCB00524787 /* RATreeView.m */,
  1408. 7183E95B1CF29FCB00524787 /* RATreeView+Enums.h */,
  1409. 7183E95C1CF29FCB00524787 /* RATreeView+Enums.m */,
  1410. 7183E95D1CF29FCB00524787 /* RATreeView+Private.h */,
  1411. 7183E95E1CF29FCB00524787 /* RATreeView+Private.m */,
  1412. 7183E95F1CF29FCB00524787 /* RATreeView+TableViewDataSource.h */,
  1413. 7183E9601CF29FCB00524787 /* RATreeView+TableViewDataSource.m */,
  1414. 7183E9611CF29FCB00524787 /* RATreeView+TableViewDelegate.h */,
  1415. 7183E9621CF29FCB00524787 /* RATreeView+TableViewDelegate.m */,
  1416. 7183E9631CF29FCB00524787 /* RATreeView+UIScrollView.h */,
  1417. 7183E9641CF29FCB00524787 /* RATreeView+UIScrollView.m */,
  1418. 7183E9651CF29FCB00524787 /* RAViewController.h */,
  1419. 7183E9661CF29FCB00524787 /* RAViewController.m */,
  1420. );
  1421. name = categoryMenu;
  1422. path = "../iSales-NPD";
  1423. sourceTree = "<group>";
  1424. };
  1425. 7183E96A1CF29FCB00524787 /* creditcard */ = {
  1426. isa = PBXGroup;
  1427. children = (
  1428. 7183E9681CF29FCB00524787 /* CreditCardEditorViewController.h */,
  1429. 7183E9691CF29FCB00524787 /* CreditCardEditorViewController.m */,
  1430. );
  1431. name = creditcard;
  1432. path = "../iSales-NPD";
  1433. sourceTree = "<group>";
  1434. };
  1435. 7183E9781CF29FCB00524787 /* contact */ = {
  1436. isa = PBXGroup;
  1437. children = (
  1438. 7183E96B1CF29FCB00524787 /* ContactAdvanceSearchViewController.h */,
  1439. 7183E96C1CF29FCB00524787 /* ContactAdvanceSearchViewController.m */,
  1440. 7183E96D1CF29FCB00524787 /* ContactListTableViewCell.h */,
  1441. 7183E96E1CF29FCB00524787 /* ContactListTableViewCell.m */,
  1442. 7183E96F1CF29FCB00524787 /* ContactListViewController.h */,
  1443. 7183E9701CF29FCB00524787 /* ContactListViewController.m */,
  1444. 7183E9711CF29FCB00524787 /* customer_advanced_search.json */,
  1445. 7183E9721CF29FCB00524787 /* customer_info_template.json */,
  1446. 7183E9731CF29FCB00524787 /* customer_info_template_edit.json */,
  1447. 7183E9741CF29FCB00524787 /* CustomerEditViewController.h */,
  1448. 7183E9751CF29FCB00524787 /* CustomerEditViewController.m */,
  1449. 7183E9761CF29FCB00524787 /* CustomerInfoViewController.h */,
  1450. 7183E9771CF29FCB00524787 /* CustomerInfoViewController.m */,
  1451. );
  1452. name = contact;
  1453. path = "../iSales-NPD";
  1454. sourceTree = "<group>";
  1455. };
  1456. 7183E9851CF29FCB00524787 /* DetailView */ = {
  1457. isa = PBXGroup;
  1458. children = (
  1459. 71C1D8271F45586700CEA1C9 /* ModelDescriptionController.h */,
  1460. 71C1D8281F45586700CEA1C9 /* ModelDescriptionController.m */,
  1461. 7183E9791CF29FCB00524787 /* DetailHeaderCell.h */,
  1462. 7183E97A1CF29FCB00524787 /* DetailHeaderCell.m */,
  1463. 7183E97B1CF29FCB00524787 /* DetailImageCell.h */,
  1464. 7183E97C1CF29FCB00524787 /* DetailImageCell.m */,
  1465. 7183E97D1CF29FCB00524787 /* DetailKVCell.h */,
  1466. 7183E97E1CF29FCB00524787 /* DetailKVCell.m */,
  1467. 7183E97F1CF29FCB00524787 /* DetailTopicCell.h */,
  1468. 7183E9801CF29FCB00524787 /* DetailTopicCell.m */,
  1469. 7183E9811CF29FCB00524787 /* DetailViewController.h */,
  1470. 7183E9821CF29FCB00524787 /* DetailViewController.m */,
  1471. 7183E9831CF29FCB00524787 /* LineView.h */,
  1472. 7183E9841CF29FCB00524787 /* LineView.m */,
  1473. );
  1474. name = DetailView;
  1475. path = "../iSales-NPD";
  1476. sourceTree = "<group>";
  1477. };
  1478. 7183E9901CF29FCB00524787 /* HomeView */ = {
  1479. isa = PBXGroup;
  1480. children = (
  1481. 7183E9861CF29FCB00524787 /* HomeTableViewCellBanner.h */,
  1482. 7183E9871CF29FCB00524787 /* HomeTableViewCellBanner.m */,
  1483. 7183E9881CF29FCB00524787 /* HomeTableViewCellButtonBanner.h */,
  1484. 7183E9891CF29FCB00524787 /* HomeTableViewCellButtonBanner.m */,
  1485. 7183E98A1CF29FCB00524787 /* HomeTableViewCellSlide.h */,
  1486. 7183E98B1CF29FCB00524787 /* HomeTableViewCellSlide.m */,
  1487. 7183E98C1CF29FCB00524787 /* HomeTableViewCellTopic.h */,
  1488. 7183E98D1CF29FCB00524787 /* HomeTableViewCellTopic.m */,
  1489. 7183E98E1CF29FCB00524787 /* HomeViewController.h */,
  1490. 7183E98F1CF29FCB00524787 /* HomeViewController.m */,
  1491. );
  1492. name = HomeView;
  1493. path = "../iSales-NPD";
  1494. sourceTree = "<group>";
  1495. };
  1496. 7183E9A51CF29FCB00524787 /* order */ = {
  1497. isa = PBXGroup;
  1498. children = (
  1499. 7183E9911CF29FCB00524787 /* CreateOrderViewController.h */,
  1500. 7183E9921CF29FCB00524787 /* CreateOrderViewController.m */,
  1501. 7183E9931CF29FCB00524787 /* OrderDetailHtmlCell.h */,
  1502. 7183E9941CF29FCB00524787 /* OrderDetailHtmlCell.m */,
  1503. 7183E9951CF29FCB00524787 /* OrderDetailInfoCell.h */,
  1504. 7183E9961CF29FCB00524787 /* OrderDetailInfoCell.m */,
  1505. 7183E9971CF29FCB00524787 /* OrderDetailModelCell.h */,
  1506. 7183E9981CF29FCB00524787 /* OrderDetailModelCell.m */,
  1507. 7183E9991CF29FCB00524787 /* OrderDetailPriceCell.h */,
  1508. 7183E99A1CF29FCB00524787 /* OrderDetailPriceCell.m */,
  1509. 7183E99B1CF29FCB00524787 /* OrderDetailViewController.h */,
  1510. 7183E99C1CF29FCB00524787 /* OrderDetailViewController.m */,
  1511. 7183E99D1CF29FCB00524787 /* OrderListTableViewCell.h */,
  1512. 7183E99E1CF29FCB00524787 /* OrderListTableViewCell.m */,
  1513. 7183E99F1CF29FCB00524787 /* OrderListViewController.h */,
  1514. 7183E9A01CF29FCB00524787 /* OrderListViewController.m */,
  1515. 7183E9A11CF29FCB00524787 /* status_filter_cadedate_open.json */,
  1516. 716AF8DD1D792157001188E0 /* offline_status_filter_cadedate.json */,
  1517. 7183E9A31CF29FCB00524787 /* OrderDetailSignatureCell.h */,
  1518. 7183E9A41CF29FCB00524787 /* OrderDetailSignatureCell.m */,
  1519. );
  1520. name = order;
  1521. path = "../iSales-NPD";
  1522. sourceTree = "<group>";
  1523. };
  1524. 7183E9B01CF29FCB00524787 /* portfolio */ = {
  1525. isa = PBXGroup;
  1526. children = (
  1527. 7183E9A61CF29FCB00524787 /* PDFListTableViewCell.h */,
  1528. 7183E9A71CF29FCB00524787 /* PDFListTableViewCell.m */,
  1529. 7183E9A81CF29FCB00524787 /* PDFListViewController.h */,
  1530. 7183E9A91CF29FCB00524787 /* PDFListViewController.m */,
  1531. 7183E9AA1CF29FCB00524787 /* PortfolioViewController.h */,
  1532. 7183E9AB1CF29FCB00524787 /* PortfolioViewController.m */,
  1533. 7183E9AC1CF29FCB00524787 /* TearSheetParamViewController.h */,
  1534. 7183E9AD1CF29FCB00524787 /* TearSheetParamViewController.m */,
  1535. 7183E9AE1CF29FCB00524787 /* PortfolioEditQTYViewController.h */,
  1536. 7183E9AF1CF29FCB00524787 /* PortfolioEditQTYViewController.m */,
  1537. );
  1538. name = portfolio;
  1539. path = "../iSales-NPD";
  1540. sourceTree = "<group>";
  1541. };
  1542. 7183E9B71CF29FCB00524787 /* cam_scan */ = {
  1543. isa = PBXGroup;
  1544. children = (
  1545. 7183E9B11CF29FCB00524787 /* ScannerControllerView.h */,
  1546. 7183E9B21CF29FCB00524787 /* ScannerControllerView.m */,
  1547. 7183E9B31CF29FCB00524787 /* ScannerViewController.h */,
  1548. 7183E9B41CF29FCB00524787 /* ScannerViewController.m */,
  1549. 7183E9B51CF29FCB00524787 /* SCShapeView.h */,
  1550. 7183E9B61CF29FCB00524787 /* SCShapeView.m */,
  1551. );
  1552. name = cam_scan;
  1553. path = "../iSales-NPD";
  1554. sourceTree = "<group>";
  1555. };
  1556. 7183E9C21CF29FCB00524787 /* search */ = {
  1557. isa = PBXGroup;
  1558. children = (
  1559. 7183E9B81CF29FCB00524787 /* FilterCellCadedate.h */,
  1560. 7183E9B91CF29FCB00524787 /* FilterCellCadedate.m */,
  1561. 7183E9BA1CF29FCB00524787 /* FilterCellValue.h */,
  1562. 7183E9BB1CF29FCB00524787 /* FilterCellValue.m */,
  1563. 7183E9BC1CF29FCB00524787 /* ItemSearchFilterViewController.h */,
  1564. 7183E9BD1CF29FCB00524787 /* ItemSearchFilterViewController.m */,
  1565. 7183E9BE1CF29FCB00524787 /* ItemSearchViewController.h */,
  1566. 7183E9BF1CF29FCB00524787 /* ItemSearchViewController.m */,
  1567. 7183E9C01CF29FCB00524787 /* SearchViewController.h */,
  1568. 7183E9C11CF29FCB00524787 /* SearchViewController.m */,
  1569. );
  1570. name = search;
  1571. path = "../iSales-NPD";
  1572. sourceTree = "<group>";
  1573. };
  1574. 7183E9C71CF29FCB00524787 /* Signature */ = {
  1575. isa = PBXGroup;
  1576. children = (
  1577. 42BB2F071E28986B0025C6CE /* signature.storyboard */,
  1578. 7183E9C31CF29FCB00524787 /* SignatureView.h */,
  1579. 7183E9C41CF29FCB00524787 /* SignatureView.m */,
  1580. 7183E9C51CF29FCB00524787 /* SignatureViewController.h */,
  1581. 7183E9C61CF29FCB00524787 /* SignatureViewController.m */,
  1582. );
  1583. name = Signature;
  1584. path = "../iSales-NPD";
  1585. sourceTree = "<group>";
  1586. };
  1587. 7183E9DE1CF29FCB00524787 /* sideMenu */ = {
  1588. isa = PBXGroup;
  1589. children = (
  1590. 7183E9C81CF29FCB00524787 /* AboutViewController.h */,
  1591. 7183E9C91CF29FCB00524787 /* AboutViewController.m */,
  1592. 7183E9CA1CF29FCB00524787 /* CacheViewController.h */,
  1593. 7183E9CB1CF29FCB00524787 /* CacheViewController.m */,
  1594. 7183E9CC1CF29FCB00524787 /* LoginViewController.h */,
  1595. 7183E9CD1CF29FCB00524787 /* LoginViewController.m */,
  1596. 7183E9CE1CF29FCB00524787 /* PopupNavigationController.h */,
  1597. 7183E9CF1CF29FCB00524787 /* PopupNavigationController.m */,
  1598. 7183E9D01CF29FCB00524787 /* RetrievePassViewController.h */,
  1599. 7183E9D11CF29FCB00524787 /* RetrievePassViewController.m */,
  1600. 7183E9D21CF29FCB00524787 /* ScannerSettingViewController.h */,
  1601. 7183E9D31CF29FCB00524787 /* ScannerSettingViewController.m */,
  1602. 7183E9D41CF29FCB00524787 /* SettingViewController.h */,
  1603. 7183E9D51CF29FCB00524787 /* SettingViewController.m */,
  1604. 7183E9D61CF29FCB00524787 /* FunctionTestViewController.h */,
  1605. 7183E9D71CF29FCB00524787 /* FunctionTestViewController.m */,
  1606. 7183E9D81CF29FCB00524787 /* SimplifiedBuyingProgramViewController.h */,
  1607. 7183E9D91CF29FCB00524787 /* SimplifiedBuyingProgramViewController.m */,
  1608. 7183E9DA1CF29FCB00524787 /* UserListViewController.h */,
  1609. 7183E9DB1CF29FCB00524787 /* UserListViewController.m */,
  1610. );
  1611. name = sideMenu;
  1612. path = "../iSales-NPD";
  1613. sourceTree = "<group>";
  1614. };
  1615. 7183E9E11CF29FCB00524787 /* watchlist */ = {
  1616. isa = PBXGroup;
  1617. children = (
  1618. 7183E9DF1CF29FCB00524787 /* WatchListViewController.h */,
  1619. 7183E9E01CF29FCB00524787 /* WatchListViewController.m */,
  1620. );
  1621. name = watchlist;
  1622. path = "../iSales-NPD";
  1623. sourceTree = "<group>";
  1624. };
  1625. 7183EA4A1CF2A1F300524787 /* Pods */ = {
  1626. isa = PBXGroup;
  1627. children = (
  1628. 7183EA481CF2A1F300524787 /* Pods.debug.xcconfig */,
  1629. 7183EA491CF2A1F300524787 /* Pods.release.xcconfig */,
  1630. );
  1631. name = Pods;
  1632. path = ..;
  1633. sourceTree = "<group>";
  1634. };
  1635. 7183EA651CF2A9DC00524787 /* Frameworks */ = {
  1636. isa = PBXGroup;
  1637. children = (
  1638. 7183EA631CF2A7B500524787 /* libPods.a */,
  1639. 7183EA611CF2A78700524787 /* Foundation.framework */,
  1640. 7183EA5F1CF2A77A00524787 /* UIKit.framework */,
  1641. 7183EA5D1CF2A77000524787 /* CoreGraphics.framework */,
  1642. 7183EA5B1CF2A76000524787 /* QuartzCore.framework */,
  1643. 7183EA591CF2A75500524787 /* Accelerate.framework */,
  1644. 7183EA571CF2A74500524787 /* libsqlite3.tbd */,
  1645. 7183EA551CF2A72D00524787 /* ExternalAccessory.framework */,
  1646. 7183EA531CF2A72300524787 /* AudioToolbox.framework */,
  1647. 7183EA511CF2A71A00524787 /* AVFoundation.framework */,
  1648. 7183EA4F1CF2A70800524787 /* libScanApiCore.a */,
  1649. 7183EA4D1CF2A6DF00524787 /* libz.tbd */,
  1650. );
  1651. name = Frameworks;
  1652. path = ..;
  1653. sourceTree = "<group>";
  1654. };
  1655. 7195622E1CF571AA00C74A49 /* appearance */ = {
  1656. isa = PBXGroup;
  1657. children = (
  1658. 715850411CF6F0C400856B20 /* DefaultAppearance.h */,
  1659. 715850421CF6F0C400856B20 /* DefaultAppearance.m */,
  1660. 719562431CF6937F00C74A49 /* default_appearance.json */,
  1661. );
  1662. name = appearance;
  1663. sourceTree = "<group>";
  1664. };
  1665. 71BF07021D2F3CE000981938 /* offline */ = {
  1666. isa = PBXGroup;
  1667. children = (
  1668. 428980641E24A9DE005F1BD8 /* OfflineUnlockViewController.h */,
  1669. 428980651E24A9DE005F1BD8 /* OfflineUnlockViewController.m */,
  1670. 428980661E24A9DE005F1BD8 /* SelectOrderTableViewCell.h */,
  1671. 428980671E24A9DE005F1BD8 /* SelectOrderTableViewCell.m */,
  1672. 428980681E24A9DE005F1BD8 /* SelectUploadOrderViewController.h */,
  1673. 428980691E24A9DE005F1BD8 /* SelectUploadOrderViewController.m */,
  1674. 71BF07031D2F3CF300981938 /* OfflineSettingViewController.h */,
  1675. 71BF07041D2F3CF300981938 /* OfflineSettingViewController.m */,
  1676. 71AD1E081D3E039E008B7685 /* SyncControlPanelViewController.h */,
  1677. 71AD1E091D3E039E008B7685 /* SyncControlPanelViewController.m */,
  1678. );
  1679. name = offline;
  1680. path = "../iSales-NPD";
  1681. sourceTree = "<group>";
  1682. };
  1683. 71C1D80A1F45554B00CEA1C9 /* youtube player */ = {
  1684. isa = PBXGroup;
  1685. children = (
  1686. 71C1D80B1F45556200CEA1C9 /* Assets.bundle */,
  1687. 71C1D80C1F45556200CEA1C9 /* YouTubeiOSPlayerHelper.h */,
  1688. 71C1D80D1F45556200CEA1C9 /* YTPlayerView.h */,
  1689. 71C1D80E1F45556200CEA1C9 /* YTPlayerView.m */,
  1690. 71C1D80F1F45556200CEA1C9 /* YTViewController.h */,
  1691. 71C1D8101F45556200CEA1C9 /* YTViewController.m */,
  1692. );
  1693. name = "youtube player";
  1694. sourceTree = "<group>";
  1695. };
  1696. 71C1D8141F4555B800CEA1C9 /* PhotoList */ = {
  1697. isa = PBXGroup;
  1698. children = (
  1699. 71C1D81E1F45572C00CEA1C9 /* view */,
  1700. 71C1D81D1F45571F00CEA1C9 /* storyboard */,
  1701. 71C1D8151F4555CB00CEA1C9 /* Controller */,
  1702. );
  1703. path = PhotoList;
  1704. sourceTree = "<group>";
  1705. };
  1706. 71C1D8151F4555CB00CEA1C9 /* Controller */ = {
  1707. isa = PBXGroup;
  1708. children = (
  1709. 71C1D8161F45564000CEA1C9 /* ContentPreviewController.h */,
  1710. 71C1D8171F45564000CEA1C9 /* ContentPreviewController.m */,
  1711. );
  1712. name = Controller;
  1713. sourceTree = "<group>";
  1714. };
  1715. 71C1D81D1F45571F00CEA1C9 /* storyboard */ = {
  1716. isa = PBXGroup;
  1717. children = (
  1718. 71C1D81F1F45574200CEA1C9 /* PhotoList.storyboard */,
  1719. );
  1720. name = storyboard;
  1721. sourceTree = "<group>";
  1722. };
  1723. 71C1D81E1F45572C00CEA1C9 /* view */ = {
  1724. isa = PBXGroup;
  1725. children = (
  1726. 71C1D8211F45574B00CEA1C9 /* PhotoPreviewCell.h */,
  1727. 71C1D8221F45574B00CEA1C9 /* PhotoPreviewCell.m */,
  1728. 71C1D8231F45574B00CEA1C9 /* VideoPreviewCell.h */,
  1729. 71C1D8241F45574B00CEA1C9 /* VideoPreviewCell.m */,
  1730. );
  1731. name = view;
  1732. sourceTree = "<group>";
  1733. };
  1734. /* End PBXGroup section */
  1735. /* Begin PBXNativeTarget section */
  1736. 7183E8431CF2913E00524787 /* HMLG Mobile */ = {
  1737. isa = PBXNativeTarget;
  1738. buildConfigurationList = 7183E85B1CF2913E00524787 /* Build configuration list for PBXNativeTarget "HMLG Mobile" */;
  1739. buildPhases = (
  1740. 7183E8401CF2913E00524787 /* Sources */,
  1741. 7183E8411CF2913E00524787 /* Frameworks */,
  1742. 7183E8421CF2913E00524787 /* Resources */,
  1743. );
  1744. buildRules = (
  1745. );
  1746. dependencies = (
  1747. );
  1748. name = "HMLG Mobile";
  1749. productName = "HMLG Mobile";
  1750. productReference = 7183E8441CF2913E00524787 /* HMLG Mobile.app */;
  1751. productType = "com.apple.product-type.application";
  1752. };
  1753. /* End PBXNativeTarget section */
  1754. /* Begin PBXProject section */
  1755. 7183E83C1CF2913E00524787 /* Project object */ = {
  1756. isa = PBXProject;
  1757. attributes = {
  1758. LastUpgradeCheck = 0820;
  1759. ORGANIZATIONNAME = "United Software Applications, Inc";
  1760. TargetAttributes = {
  1761. 7183E8431CF2913E00524787 = {
  1762. CreatedOnToolsVersion = 7.3.1;
  1763. DevelopmentTeam = HXWLAA5YN5;
  1764. };
  1765. };
  1766. };
  1767. buildConfigurationList = 7183E83F1CF2913E00524787 /* Build configuration list for PBXProject "HMLG Mobile" */;
  1768. compatibilityVersion = "Xcode 3.2";
  1769. developmentRegion = English;
  1770. hasScannedForEncodings = 0;
  1771. knownRegions = (
  1772. en,
  1773. Base,
  1774. );
  1775. mainGroup = 7183E83B1CF2913E00524787;
  1776. productRefGroup = 7183E8451CF2913E00524787 /* Products */;
  1777. projectDirPath = "";
  1778. projectRoot = "";
  1779. targets = (
  1780. 7183E8431CF2913E00524787 /* HMLG Mobile */,
  1781. );
  1782. };
  1783. /* End PBXProject section */
  1784. /* Begin PBXResourcesBuildPhase section */
  1785. 7183E8421CF2913E00524787 /* Resources */ = {
  1786. isa = PBXResourcesBuildPhase;
  1787. buildActionMask = 2147483647;
  1788. files = (
  1789. 716AF8DE1D792157001188E0 /* offline_status_filter_cadedate.json in Resources */,
  1790. 7183E8571CF2913E00524787 /* LaunchScreen.storyboard in Resources */,
  1791. 7183E8541CF2913E00524787 /* Assets.xcassets in Resources */,
  1792. 7183EA1B1CF29FCB00524787 /* status_filter_cadedate_open.json in Resources */,
  1793. 7183EA051CF29FCB00524787 /* customer_info_template_edit.json in Resources */,
  1794. 7183E9231CF29F4500524787 /* softScanBeep.wav in Resources */,
  1795. 42BEF39E1E8A4C7D00632AB6 /* LICENSE in Resources */,
  1796. 7183E9F31CF29FCB00524787 /* debug_category_filter.json in Resources */,
  1797. 7183EA441CF2A06600524787 /* Main.storyboard in Resources */,
  1798. 71C1D8201F45574200CEA1C9 /* PhotoList.storyboard in Resources */,
  1799. 7183EA411CF2A04D00524787 /* OLM.storyboard in Resources */,
  1800. 7183EA041CF29FCB00524787 /* customer_info_template.json in Resources */,
  1801. 7183E9241CF29F4500524787 /* include in Resources */,
  1802. 719562441CF6937F00C74A49 /* default_appearance.json in Resources */,
  1803. 7183E8A21CF29F3900524787 /* LICENSE in Resources */,
  1804. 7183E8FE1CF29F4500524787 /* PhotoBorder@2x.png in Resources */,
  1805. 7183EA031CF29FCB00524787 /* customer_advanced_search.json in Resources */,
  1806. 71C1D8111F45556200CEA1C9 /* Assets.bundle in Resources */,
  1807. 7183E8FD1CF29F4500524787 /* PhotoBorder.png in Resources */,
  1808. 42BB2F081E28986B0025C6CE /* signature.storyboard in Resources */,
  1809. );
  1810. runOnlyForDeploymentPostprocessing = 0;
  1811. };
  1812. /* End PBXResourcesBuildPhase section */
  1813. /* Begin PBXSourcesBuildPhase section */
  1814. 7183E8401CF2913E00524787 /* Sources */ = {
  1815. isa = PBXSourcesBuildPhase;
  1816. buildActionMask = 2147483647;
  1817. files = (
  1818. 7183E89C1CF29F3900524787 /* qrencode.c in Sources */,
  1819. 71AD1E0A1D3E039E008B7685 /* SyncControlPanelViewController.m in Sources */,
  1820. 7183E90A1CF29F4500524787 /* SimpleGrid.m in Sources */,
  1821. 7183E9EF1CF29FCB00524787 /* CategoryCellNPD.m in Sources */,
  1822. 7183E8961CF29F3900524787 /* unzip.c in Sources */,
  1823. 71C1D8251F45574B00CEA1C9 /* PhotoPreviewCell.m in Sources */,
  1824. 7183EA261CF29FCB00524787 /* FilterCellCadedate.m in Sources */,
  1825. 428980011E24902E005F1BD8 /* JKTimerManager.m in Sources */,
  1826. 719562391CF57BFC00C74A49 /* CategoryHeaderView.m in Sources */,
  1827. 428980201E24925A005F1BD8 /* SortItemCell.m in Sources */,
  1828. 7183E91E1CF29F4500524787 /* SRMonthPicker.m in Sources */,
  1829. 7183EA2B1CF29FCB00524787 /* SignatureView.m in Sources */,
  1830. 42A85BFD1E6004180058A9CE /* PDFUtils.m in Sources */,
  1831. 7183EA3E1CF2A04000524787 /* MainViewController.m in Sources */,
  1832. 4289808C1E24B2C2005F1BD8 /* GroupDrawable.m in Sources */,
  1833. 7183E91B1CF29F4500524787 /* EnumSelectorCell.m in Sources */,
  1834. 7183EA061CF29FCB00524787 /* CustomerEditViewController.m in Sources */,
  1835. 7183E9021CF29F4500524787 /* ImageScrollerView.m in Sources */,
  1836. 7183EA311CF29FCB00524787 /* RetrievePassViewController.m in Sources */,
  1837. 4289808E1E24B2C2005F1BD8 /* LineDrawable.m in Sources */,
  1838. 7183E90D1CF29F4500524787 /* TouchImageView.m in Sources */,
  1839. 7183EA081CF29FCB00524787 /* DetailHeaderCell.m in Sources */,
  1840. 7183E9FB1CF29FCB00524787 /* RATreeView+TableViewDataSource.m in Sources */,
  1841. 715002021D13CDBE00F5927F /* BundleDetailButton.m in Sources */,
  1842. 7183E9171CF29F4500524787 /* CommonEditorCellSwitch.m in Sources */,
  1843. 7183E9EE1CF29FCB00524787 /* CartGeneralNotesViewController.m in Sources */,
  1844. 4289806A1E24A9DE005F1BD8 /* OfflineUnlockViewController.m in Sources */,
  1845. 7183E89D1CF29F3900524787 /* qrinput.c in Sources */,
  1846. 7183E9061CF29F4500524787 /* NIDropDown.m in Sources */,
  1847. 428980911E24B2C2005F1BD8 /* PDFPage.m in Sources */,
  1848. 7183EA0A1CF29FCB00524787 /* DetailKVCell.m in Sources */,
  1849. 7183EA331CF29FCB00524787 /* SettingViewController.m in Sources */,
  1850. 7183E9E51CF29FCB00524787 /* CycleScrollView.m in Sources */,
  1851. 7183EA6E1CF2B05C00524787 /* NSData+CommonCrypto.m in Sources */,
  1852. 7183E9181CF29F4500524787 /* CommonEditorCellTextView.m in Sources */,
  1853. 7183EA0E1CF29FCB00524787 /* HomeTableViewCellBanner.m in Sources */,
  1854. 7183E9141CF29F4500524787 /* CommonEditorCellMAction.m in Sources */,
  1855. 7183EA2D1CF29FCB00524787 /* AboutViewController.m in Sources */,
  1856. 7183EA091CF29FCB00524787 /* DetailImageCell.m in Sources */,
  1857. 4289806B1E24A9DE005F1BD8 /* SelectOrderTableViewCell.m in Sources */,
  1858. 7183EA011CF29FCB00524787 /* ContactListTableViewCell.m in Sources */,
  1859. 7183EA0B1CF29FCB00524787 /* DetailTopicCell.m in Sources */,
  1860. 428980921E24B2C2005F1BD8 /* RectDrawable.m in Sources */,
  1861. 7183E9191CF29F4500524787 /* CommonEditorViewController.m in Sources */,
  1862. 428980211E24925A005F1BD8 /* SortItemViewController.m in Sources */,
  1863. 7183E9F61CF29FCB00524787 /* RATreeNodeInfo.m in Sources */,
  1864. 7183E9ED1CF29FCB00524787 /* ItemNotesViewController.m in Sources */,
  1865. 7183EA251CF29FCB00524787 /* SCShapeView.m in Sources */,
  1866. 7183EA201CF29FCB00524787 /* PortfolioViewController.m in Sources */,
  1867. 7183E8FF1CF29F4500524787 /* PhotoStackView.m in Sources */,
  1868. 7183E9031CF29F4500524787 /* ImageScrollerViewController.m in Sources */,
  1869. 7183E9F21CF29FCB00524787 /* CategoryViewController.m in Sources */,
  1870. 4289809A1E24B304005F1BD8 /* TextUtils.m in Sources */,
  1871. 7183EA6F1CF2B05C00524787 /* NSString+Base64.m in Sources */,
  1872. 7183E91F1CF29F4500524787 /* ActiveViewController.m in Sources */,
  1873. 7183EA071CF29FCB00524787 /* CustomerInfoViewController.m in Sources */,
  1874. 7183EA361CF29FCB00524787 /* UserListViewController.m in Sources */,
  1875. 7183E9131CF29F4500524787 /* CommonEditorCellLabel.m in Sources */,
  1876. 7183EA111CF29FCB00524787 /* HomeTableViewCellTopic.m in Sources */,
  1877. 42BEF39A1E8A4C7D00632AB6 /* README.md in Sources */,
  1878. 7195623F1CF580E800C74A49 /* DefaultTableHeaderView.m in Sources */,
  1879. 7183EA1F1CF29FCB00524787 /* PDFListViewController.m in Sources */,
  1880. 7183E8A81CF29F3900524787 /* iSalesDB.m in Sources */,
  1881. 7183E9071CF29F4500524787 /* PulldownMenu.m in Sources */,
  1882. 7183E9E31CF29FCB00524787 /* WebViewController.m in Sources */,
  1883. 42A85BF31E60039A0058A9CE /* HWWeakTimer.m in Sources */,
  1884. 7183E9FC1CF29FCB00524787 /* RATreeView+TableViewDelegate.m in Sources */,
  1885. 428980531E249340005F1BD8 /* JKLockButton.m in Sources */,
  1886. 7183E9101CF29F4500524787 /* CommonEditorCellEdit.m in Sources */,
  1887. 7183EA101CF29FCB00524787 /* HomeTableViewCellSlide.m in Sources */,
  1888. 7183E91C1CF29F4500524787 /* EnumSelectViewController.m in Sources */,
  1889. 7183EA291CF29FCB00524787 /* ItemSearchViewController.m in Sources */,
  1890. 7183E9EC1CF29FCB00524787 /* ModelItemCell.m in Sources */,
  1891. 7183EA351CF29FCB00524787 /* SimplifiedBuyingProgramViewController.m in Sources */,
  1892. 7183EA471CF2A06E00524787 /* iSalesNavigationController.m in Sources */,
  1893. 7183E9EA1CF29FCB00524787 /* CartViewController.m in Sources */,
  1894. 4289808B1E24B2C2005F1BD8 /* GridDrawable.m in Sources */,
  1895. 7183E8A01CF29F3900524787 /* split.c in Sources */,
  1896. 7183EA2F1CF29FCB00524787 /* LoginViewController.m in Sources */,
  1897. 7183E8981CF29F3900524787 /* ZipArchive.mm in Sources */,
  1898. 4289808A1E24B2C2005F1BD8 /* BasicDrawable.m in Sources */,
  1899. 428980381E2492E0005F1BD8 /* CategoryPriceCell.m in Sources */,
  1900. 7183EA341CF29FCB00524787 /* FunctionTestViewController.m in Sources */,
  1901. 7183E9211CF29F4500524787 /* DeviceInfo.m in Sources */,
  1902. 71C1D8291F45586700CEA1C9 /* ModelDescriptionController.m in Sources */,
  1903. 7183E90F1CF29F4500524787 /* CommonEditorCellAction.m in Sources */,
  1904. 428980591E24935E005F1BD8 /* UIColor+JK_HEX.m in Sources */,
  1905. 7183EA211CF29FCB00524787 /* TearSheetParamViewController.m in Sources */,
  1906. 7183EA0F1CF29FCB00524787 /* HomeTableViewCellButtonBanner.m in Sources */,
  1907. 7183EA2C1CF29FCB00524787 /* SignatureViewController.m in Sources */,
  1908. 7183E9EB1CF29FCB00524787 /* EditModelPriceViewController.m in Sources */,
  1909. 7183EA221CF29FCB00524787 /* PortfolioEditQTYViewController.m in Sources */,
  1910. 7183EA2E1CF29FCB00524787 /* CacheViewController.m in Sources */,
  1911. 4289806F1E24AEA6005F1BD8 /* Singleton.m in Sources */,
  1912. 71D30A2A1CFC0EDD006F9477 /* DefaultImageButton.m in Sources */,
  1913. 7183E8941CF29F3900524787 /* ioapi.c in Sources */,
  1914. 7183E8A61CF29F3900524787 /* Reachability.m in Sources */,
  1915. 7183EA6D1CF2B05C00524787 /* NSData+Base64.m in Sources */,
  1916. 7183E9F91CF29FCB00524787 /* RATreeView+Enums.m in Sources */,
  1917. 428980391E2492E0005F1BD8 /* CategoryPriceViewController.m in Sources */,
  1918. 4289808D1E24B2C2005F1BD8 /* ImageDrawable.m in Sources */,
  1919. 7183EA151CF29FCB00524787 /* OrderDetailInfoCell.m in Sources */,
  1920. 428980551E249340005F1BD8 /* JKMessageBoxController.m in Sources */,
  1921. 4289808F1E24B2C2005F1BD8 /* pdfCreator.m in Sources */,
  1922. 7183E89A1CF29F3900524787 /* mask.c in Sources */,
  1923. 7183E8A91CF29F3900524787 /* iSalesNetwork.m in Sources */,
  1924. 7183E9081CF29F4500524787 /* RadioButton.m in Sources */,
  1925. 715850431CF6F0C400856B20 /* DefaultAppearance.m in Sources */,
  1926. 7183E9E41CF29FCB00524787 /* AddressEditorViewController.m in Sources */,
  1927. 7183E9051CF29F4500524787 /* ImageViewController.m in Sources */,
  1928. 7183E91D1CF29F4500524787 /* MonthPickerViewController.m in Sources */,
  1929. 7183EA2A1CF29FCB00524787 /* SearchViewController.m in Sources */,
  1930. 7183EA3D1CF2A04000524787 /* AppDelegate.m in Sources */,
  1931. 428980941E24B2C2005F1BD8 /* TextDrawable.m in Sources */,
  1932. 4289803B1E2492E0005F1BD8 /* SetCategoryPriceController.m in Sources */,
  1933. 7183E9111CF29F4500524787 /* CommonEditorCellEnum.m in Sources */,
  1934. 7183E8A11CF29F3900524787 /* AESCrypt.m in Sources */,
  1935. 7183EA141CF29FCB00524787 /* OrderDetailHtmlCell.m in Sources */,
  1936. 42BEF39F1E8A4C7D00632AB6 /* README.md in Sources */,
  1937. 7183EA321CF29FCB00524787 /* ScannerSettingViewController.m in Sources */,
  1938. 428980901E24B2C2005F1BD8 /* PDFDrawable.m in Sources */,
  1939. 7183E9FD1CF29FCB00524787 /* RATreeView+UIScrollView.m in Sources */,
  1940. 7183EA021CF29FCB00524787 /* ContactListViewController.m in Sources */,
  1941. 7183EA231CF29FCB00524787 /* ScannerControllerView.m in Sources */,
  1942. 7183E9E71CF29FCB00524787 /* SliderPage.m in Sources */,
  1943. 7183E9FE1CF29FCB00524787 /* RAViewController.m in Sources */,
  1944. 7183EA001CF29FCB00524787 /* ContactAdvanceSearchViewController.m in Sources */,
  1945. 7183E9E81CF29FCB00524787 /* BundleModelCell.m in Sources */,
  1946. 71BF07011D2F3CCC00981938 /* OLDataProvider.m in Sources */,
  1947. 7183E8971CF29F3900524787 /* zip.c in Sources */,
  1948. 428980971E24B2E7005F1BD8 /* ImageUtils.m in Sources */,
  1949. 7183EA1A1CF29FCB00524787 /* OrderListViewController.m in Sources */,
  1950. 7183E91A1CF29F4500524787 /* DatePickerViewController.m in Sources */,
  1951. 7183E8491CF2913E00524787 /* main.m in Sources */,
  1952. 42BEF3971E8A4C7D00632AB6 /* README.md in Sources */,
  1953. 42BEF39D1E8A4C7D00632AB6 /* GTMNSData+zlib.m in Sources */,
  1954. 7183E9E91CF29FCB00524787 /* BundleModelViewController.m in Sources */,
  1955. 7183E8991CF29F3900524787 /* bitstream.c in Sources */,
  1956. 428980541E249340005F1BD8 /* JKLockController.m in Sources */,
  1957. 42BEF3951E8A4C7D00632AB6 /* CHANGELOG.md in Sources */,
  1958. 7183E9F51CF29FCB00524787 /* RATreeNodeCollectionController.m in Sources */,
  1959. 7183EA281CF29FCB00524787 /* ItemSearchFilterViewController.m in Sources */,
  1960. 71C1D8181F45564000CEA1C9 /* ContentPreviewController.m in Sources */,
  1961. 7183E9201CF29F4500524787 /* CommonGridViewController.m in Sources */,
  1962. 7183EA1D1CF29FCB00524787 /* OrderDetailSignatureCell.m in Sources */,
  1963. 7183E9091CF29F4500524787 /* RTLabel.m in Sources */,
  1964. 7183E9F41CF29FCB00524787 /* RATreeNode.m in Sources */,
  1965. 4289803A1E2492E0005F1BD8 /* PriceSettingViewController.m in Sources */,
  1966. 4289800D1E2491A6005F1BD8 /* CartUtils.m in Sources */,
  1967. 7183E89E1CF29F3900524787 /* qrspec.c in Sources */,
  1968. 7183E9151CF29F4500524787 /* CommonEditorCellModel.m in Sources */,
  1969. 7183E90E1CF29F4500524787 /* UILabel+FontAppearance.m in Sources */,
  1970. 7183E9121CF29F4500524787 /* CommonEditorCellImg.m in Sources */,
  1971. 428980071E2490E3005F1BD8 /* NotificationNameCenter.m in Sources */,
  1972. 4289806C1E24A9DE005F1BD8 /* SelectUploadOrderViewController.m in Sources */,
  1973. 71C1D8261F45574B00CEA1C9 /* VideoPreviewCell.m in Sources */,
  1974. 428980521E249340005F1BD8 /* JKDotView.m in Sources */,
  1975. 7183E89B1CF29F3900524787 /* QRCodeGenerator.m in Sources */,
  1976. 7183EA191CF29FCB00524787 /* OrderListTableViewCell.m in Sources */,
  1977. 7183E9FA1CF29FCB00524787 /* RATreeView+Private.m in Sources */,
  1978. 7183E8A71CF29F3900524787 /* RAUtils.m in Sources */,
  1979. 71C1D8121F45556200CEA1C9 /* YTPlayerView.m in Sources */,
  1980. 7183EA171CF29FCB00524787 /* OrderDetailPriceCell.m in Sources */,
  1981. 71C1D8131F45556200CEA1C9 /* YTViewController.m in Sources */,
  1982. 7183E89F1CF29F3900524787 /* rscode.c in Sources */,
  1983. 7183E90C1CF29F4500524787 /* TouchLabel.m in Sources */,
  1984. 7183EA0D1CF29FCB00524787 /* LineView.m in Sources */,
  1985. 7183E9161CF29F4500524787 /* CommonEditorCellSignature.m in Sources */,
  1986. 7183E9F71CF29FCB00524787 /* RATreeNodeInfo+Private.m in Sources */,
  1987. 71BF07051D2F3CF300981938 /* OfflineSettingViewController.m in Sources */,
  1988. 7183E9011CF29F4500524787 /* CustomIOSAlertView.m in Sources */,
  1989. 7183E8951CF29F3900524787 /* mztools.c in Sources */,
  1990. 7183EA301CF29FCB00524787 /* PopupNavigationController.m in Sources */,
  1991. 7183E9041CF29F4500524787 /* ImageUploadViewController.m in Sources */,
  1992. 7183E9F11CF29FCB00524787 /* CategorySearchFilterViewController.m in Sources */,
  1993. 7183E9F01CF29FCB00524787 /* CategoryCellSmall.m in Sources */,
  1994. 7183EA241CF29FCB00524787 /* ScannerViewController.m in Sources */,
  1995. 7183E9E61CF29FCB00524787 /* NSTimer+Addition.m in Sources */,
  1996. 7183EA181CF29FCB00524787 /* OrderDetailViewController.m in Sources */,
  1997. 7183E90B1CF29F4500524787 /* StrikethroughLabel.m in Sources */,
  1998. 7183E9001CF29F4500524787 /* PhotoStackViewController.m in Sources */,
  1999. 7183EA0C1CF29FCB00524787 /* DetailViewController.m in Sources */,
  2000. 7183EA161CF29FCB00524787 /* OrderDetailModelCell.m in Sources */,
  2001. 7183E9221CF29F4500524787 /* ScanApiHelper.mm in Sources */,
  2002. 7183EA381CF29FCB00524787 /* WatchListViewController.m in Sources */,
  2003. 42BEF39B1E8A4C7D00632AB6 /* GoogleAnalyst.m in Sources */,
  2004. 7183EA131CF29FCB00524787 /* CreateOrderViewController.m in Sources */,
  2005. 7183E9E21CF29FCB00524787 /* PDFViewController.m in Sources */,
  2006. 7183E9FF1CF29FCB00524787 /* CreditCardEditorViewController.m in Sources */,
  2007. 42A85BFB1E6004180058A9CE /* ERPUtils.m in Sources */,
  2008. 4289801F1E24925A005F1BD8 /* SortButton.m in Sources */,
  2009. 7183E9F81CF29FCB00524787 /* RATreeView.m in Sources */,
  2010. 428980931E24B2C2005F1BD8 /* TableDrawable.m in Sources */,
  2011. 7183EA271CF29FCB00524787 /* FilterCellValue.m in Sources */,
  2012. 7183EA1E1CF29FCB00524787 /* PDFListTableViewCell.m in Sources */,
  2013. 7183EA121CF29FCB00524787 /* HomeViewController.m in Sources */,
  2014. );
  2015. runOnlyForDeploymentPostprocessing = 0;
  2016. };
  2017. /* End PBXSourcesBuildPhase section */
  2018. /* Begin PBXVariantGroup section */
  2019. 7183E8551CF2913E00524787 /* LaunchScreen.storyboard */ = {
  2020. isa = PBXVariantGroup;
  2021. children = (
  2022. 7183E8561CF2913E00524787 /* Base */,
  2023. );
  2024. name = LaunchScreen.storyboard;
  2025. sourceTree = "<group>";
  2026. };
  2027. 7183EA401CF2A04D00524787 /* OLM.storyboard */ = {
  2028. isa = PBXVariantGroup;
  2029. children = (
  2030. 7183EA3F1CF2A04D00524787 /* Base */,
  2031. );
  2032. name = OLM.storyboard;
  2033. path = "../iSales-NPD";
  2034. sourceTree = "<group>";
  2035. };
  2036. 7183EA431CF2A06600524787 /* Main.storyboard */ = {
  2037. isa = PBXVariantGroup;
  2038. children = (
  2039. 7183EA421CF2A06600524787 /* Base */,
  2040. );
  2041. name = Main.storyboard;
  2042. path = "../iSales-NPD";
  2043. sourceTree = "<group>";
  2044. };
  2045. /* End PBXVariantGroup section */
  2046. /* Begin XCBuildConfiguration section */
  2047. 7183E8591CF2913E00524787 /* Debug */ = {
  2048. isa = XCBuildConfiguration;
  2049. buildSettings = {
  2050. ALWAYS_SEARCH_USER_PATHS = NO;
  2051. CLANG_ANALYZER_NONNULL = YES;
  2052. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2053. CLANG_CXX_LIBRARY = "libc++";
  2054. CLANG_ENABLE_MODULES = YES;
  2055. CLANG_ENABLE_OBJC_ARC = YES;
  2056. CLANG_WARN_BOOL_CONVERSION = YES;
  2057. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2058. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2059. CLANG_WARN_EMPTY_BODY = YES;
  2060. CLANG_WARN_ENUM_CONVERSION = YES;
  2061. CLANG_WARN_INFINITE_RECURSION = YES;
  2062. CLANG_WARN_INT_CONVERSION = YES;
  2063. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2064. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2065. CLANG_WARN_UNREACHABLE_CODE = YES;
  2066. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2067. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2068. COPY_PHASE_STRIP = NO;
  2069. DEBUG_INFORMATION_FORMAT = dwarf;
  2070. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2071. ENABLE_TESTABILITY = YES;
  2072. GCC_C_LANGUAGE_STANDARD = gnu99;
  2073. GCC_DYNAMIC_NO_PIC = NO;
  2074. GCC_NO_COMMON_BLOCKS = YES;
  2075. GCC_OPTIMIZATION_LEVEL = 0;
  2076. GCC_PREPROCESSOR_DEFINITIONS = (
  2077. "DEBUG=1",
  2078. "$(inherited)",
  2079. );
  2080. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2081. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2082. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2083. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2084. GCC_WARN_UNUSED_FUNCTION = YES;
  2085. GCC_WARN_UNUSED_VARIABLE = YES;
  2086. HEADER_SEARCH_PATHS = (
  2087. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
  2088. "$(PROJECT_DIR)/common/qrcode",
  2089. "$(PROJECT_DIR)/common/CommonEditor",
  2090. );
  2091. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2092. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  2093. MTL_ENABLE_DEBUG_INFO = YES;
  2094. ONLY_ACTIVE_ARCH = YES;
  2095. SDKROOT = iphoneos;
  2096. TARGETED_DEVICE_FAMILY = 2;
  2097. };
  2098. name = Debug;
  2099. };
  2100. 7183E85A1CF2913E00524787 /* Release */ = {
  2101. isa = XCBuildConfiguration;
  2102. buildSettings = {
  2103. ALWAYS_SEARCH_USER_PATHS = NO;
  2104. CLANG_ANALYZER_NONNULL = YES;
  2105. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2106. CLANG_CXX_LIBRARY = "libc++";
  2107. CLANG_ENABLE_MODULES = YES;
  2108. CLANG_ENABLE_OBJC_ARC = YES;
  2109. CLANG_WARN_BOOL_CONVERSION = YES;
  2110. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2111. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2112. CLANG_WARN_EMPTY_BODY = YES;
  2113. CLANG_WARN_ENUM_CONVERSION = YES;
  2114. CLANG_WARN_INFINITE_RECURSION = YES;
  2115. CLANG_WARN_INT_CONVERSION = YES;
  2116. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2117. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2118. CLANG_WARN_UNREACHABLE_CODE = YES;
  2119. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2120. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2121. COPY_PHASE_STRIP = NO;
  2122. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2123. ENABLE_NS_ASSERTIONS = NO;
  2124. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2125. GCC_C_LANGUAGE_STANDARD = gnu99;
  2126. GCC_NO_COMMON_BLOCKS = YES;
  2127. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2128. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2129. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2130. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2131. GCC_WARN_UNUSED_FUNCTION = YES;
  2132. GCC_WARN_UNUSED_VARIABLE = YES;
  2133. HEADER_SEARCH_PATHS = (
  2134. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
  2135. "$(PROJECT_DIR)/common/qrcode",
  2136. "$(PROJECT_DIR)/common/CommonEditor",
  2137. );
  2138. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2139. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  2140. MTL_ENABLE_DEBUG_INFO = NO;
  2141. SDKROOT = iphoneos;
  2142. TARGETED_DEVICE_FAMILY = 2;
  2143. VALIDATE_PRODUCT = YES;
  2144. };
  2145. name = Release;
  2146. };
  2147. 7183E85C1CF2913E00524787 /* Debug */ = {
  2148. isa = XCBuildConfiguration;
  2149. baseConfigurationReference = 7183EA481CF2A1F300524787 /* Pods.debug.xcconfig */;
  2150. buildSettings = {
  2151. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2152. CODE_SIGN_IDENTITY = "iPhone Developer";
  2153. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2154. FRAMEWORK_SEARCH_PATHS = (
  2155. "$(inherited)",
  2156. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseAnalytics/Frameworks",
  2157. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseCore/Frameworks",
  2158. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseInstanceID/Frameworks",
  2159. "$(PROJECT_DIR)/GoogleAnalytics/Google/Frameworks",
  2160. );
  2161. GCC_PREFIX_HEADER = "HMLG Mobile/PrefixHeader.pch";
  2162. HEADER_SEARCH_PATHS = (
  2163. "$(inherited)",
  2164. "\"${PODS_ROOT}/Headers/Public\"",
  2165. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  2166. );
  2167. INFOPLIST_FILE = "HMLG Mobile/Info.plist";
  2168. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2169. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2170. LIBRARY_SEARCH_PATHS = (
  2171. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib",
  2172. "$(PROJECT_DIR)/GoogleAnalytics/GoogleAnalytics/Libraries",
  2173. );
  2174. PODS_ROOT = "${SRCROOT}/Pods";
  2175. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.HMLG-Mobile";
  2176. PRODUCT_NAME = "$(TARGET_NAME)";
  2177. };
  2178. name = Debug;
  2179. };
  2180. 7183E85D1CF2913E00524787 /* Release */ = {
  2181. isa = XCBuildConfiguration;
  2182. baseConfigurationReference = 7183EA491CF2A1F300524787 /* Pods.release.xcconfig */;
  2183. buildSettings = {
  2184. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2185. CODE_SIGN_IDENTITY = "iPhone Developer";
  2186. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2187. FRAMEWORK_SEARCH_PATHS = (
  2188. "$(inherited)",
  2189. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseAnalytics/Frameworks",
  2190. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseCore/Frameworks",
  2191. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseInstanceID/Frameworks",
  2192. "$(PROJECT_DIR)/GoogleAnalytics/Google/Frameworks",
  2193. );
  2194. GCC_PREFIX_HEADER = "HMLG Mobile/PrefixHeader.pch";
  2195. HEADER_SEARCH_PATHS = (
  2196. "$(inherited)",
  2197. "\"${PODS_ROOT}/Headers/Public\"",
  2198. "\"${PODS_ROOT}/Headers/Public/AFNetworking\"",
  2199. );
  2200. INFOPLIST_FILE = "HMLG Mobile/Info.plist";
  2201. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2202. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2203. LIBRARY_SEARCH_PATHS = (
  2204. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib",
  2205. "$(PROJECT_DIR)/GoogleAnalytics/GoogleAnalytics/Libraries",
  2206. );
  2207. PODS_ROOT = "${SRCROOT}/Pods";
  2208. PRODUCT_BUNDLE_IDENTIFIER = "usai.apex.HMLG-Mobile";
  2209. PRODUCT_NAME = "$(TARGET_NAME)";
  2210. };
  2211. name = Release;
  2212. };
  2213. /* End XCBuildConfiguration section */
  2214. /* Begin XCConfigurationList section */
  2215. 7183E83F1CF2913E00524787 /* Build configuration list for PBXProject "HMLG Mobile" */ = {
  2216. isa = XCConfigurationList;
  2217. buildConfigurations = (
  2218. 7183E8591CF2913E00524787 /* Debug */,
  2219. 7183E85A1CF2913E00524787 /* Release */,
  2220. );
  2221. defaultConfigurationIsVisible = 0;
  2222. defaultConfigurationName = Release;
  2223. };
  2224. 7183E85B1CF2913E00524787 /* Build configuration list for PBXNativeTarget "HMLG Mobile" */ = {
  2225. isa = XCConfigurationList;
  2226. buildConfigurations = (
  2227. 7183E85C1CF2913E00524787 /* Debug */,
  2228. 7183E85D1CF2913E00524787 /* Release */,
  2229. );
  2230. defaultConfigurationIsVisible = 0;
  2231. defaultConfigurationName = Release;
  2232. };
  2233. /* End XCConfigurationList section */
  2234. };
  2235. rootObject = 7183E83C1CF2913E00524787 /* Project object */;
  2236. }