project.pbxproj 259 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 3C16916C27FE7E3000026FE5 /* SignUpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C16916B27FE7E3000026FE5 /* SignUpViewController.m */; };
  10. 3C16916F280004E000026FE5 /* ChangePasswordViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C16916E280004E000026FE5 /* ChangePasswordViewController.m */; };
  11. 3C23B3F029CD70F9008E7C14 /* PopWaitAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C23B3ED29CD70F9008E7C14 /* PopWaitAlert.m */; };
  12. 3C23B3F129CD70F9008E7C14 /* MessageBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C23B3EE29CD70F9008E7C14 /* MessageBox.m */; };
  13. 3C23B3F229CD70F9008E7C14 /* RAPopviewContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C23B3EF29CD70F9008E7C14 /* RAPopviewContainer.m */; };
  14. 3C2D0483285B242800423D97 /* ScanDiscountViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2D0482285B242800423D97 /* ScanDiscountViewController.m */; };
  15. 3C2F437B28B748E800F50E0E /* PriceGroupListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2F437A28B748E800F50E0E /* PriceGroupListViewController.m */; };
  16. 3C2F99B8237BE1790000808F /* PortfolioListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C2F99B6237BE1790000808F /* PortfolioListTableViewCell.m */; };
  17. 3C3A5AFE27D74E50005F4EFB /* ScanResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C3A5AFD27D74E4F005F4EFB /* ScanResultViewController.m */; };
  18. 3C3A5B0127D74F91005F4EFB /* ScanOrderScanModelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C3A5B0027D74F91005F4EFB /* ScanOrderScanModelViewController.m */; };
  19. 3C3A5B0327D87BA1005F4EFB /* SO.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C3A5B0227D87BA1005F4EFB /* SO.storyboard */; };
  20. 3C473C9127C4D22900CC8C12 /* ScanUserListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C473C9027C4D22900CC8C12 /* ScanUserListViewController.m */; };
  21. 3C4DA61F27B50199001EB44E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C4DA61D27B50199001EB44E /* Main.storyboard */; };
  22. 3C4DA62527B503B1001EB44E /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C4DA62327B503B1001EB44E /* MainViewController.m */; };
  23. 3C51492F273CF9B900F78617 /* DBUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51492E273CF9B900F78617 /* DBUtil.m */; };
  24. 3C514932273D092A00F78617 /* EnumSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514931273D092A00F78617 /* EnumSelectViewController.m */; };
  25. 3C514947273D095900F78617 /* CommonEditorCellSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514934273D095800F78617 /* CommonEditorCellSwitch.m */; };
  26. 3C514948273D095900F78617 /* CommonEditorCellTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514935273D095800F78617 /* CommonEditorCellTextView.m */; };
  27. 3C514949273D095900F78617 /* CommonEditorCellEnum.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514939273D095800F78617 /* CommonEditorCellEnum.m */; };
  28. 3C51494A273D095900F78617 /* CommonEditorCellEdit.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51493A273D095900F78617 /* CommonEditorCellEdit.m */; };
  29. 3C51494B273D095900F78617 /* CommonEditorCellLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51493C273D095900F78617 /* CommonEditorCellLabel.m */; };
  30. 3C51494C273D095900F78617 /* CommonEditorCellMAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51493D273D095900F78617 /* CommonEditorCellMAction.m */; };
  31. 3C51494D273D095900F78617 /* CommonEditorCellSignature.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51493E273D095900F78617 /* CommonEditorCellSignature.m */; };
  32. 3C51494E273D095900F78617 /* CommonEditorCellImg.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51493F273D095900F78617 /* CommonEditorCellImg.m */; };
  33. 3C51494F273D095900F78617 /* CommonEditorCellAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514944273D095900F78617 /* CommonEditorCellAction.m */; };
  34. 3C514950273D095900F78617 /* CommonEditorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514945273D095900F78617 /* CommonEditorCellModel.m */; };
  35. 3C514953273D096A00F78617 /* CommonEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514951273D096A00F78617 /* CommonEditorViewController.m */; };
  36. 3C514956273D097E00F78617 /* CommonEditorTableContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514955273D097E00F78617 /* CommonEditorTableContainerView.m */; };
  37. 3C514959273D098700F78617 /* DatePickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514958273D098700F78617 /* DatePickerViewController.m */; };
  38. 3C51495C273D099600F78617 /* EnumSelectorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51495B273D099600F78617 /* EnumSelectorCell.m */; };
  39. 3C51495F273D09B800F78617 /* MonthPickerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51495E273D09B800F78617 /* MonthPickerViewController.m */; };
  40. 3C514961273D09E700F78617 /* CommonEditor.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C514960273D09E700F78617 /* CommonEditor.storyboard */; };
  41. 3C514966273D0A2F00F78617 /* SRMonthPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514965273D0A2F00F78617 /* SRMonthPicker.m */; };
  42. 3C514969273D0B1E00F78617 /* RADataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514968273D0B1E00F78617 /* RADataProvider.m */; };
  43. 3C514974273E074500F78617 /* CommonEditorCellEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514972273E074500F78617 /* CommonEditorCellEditor.m */; };
  44. 3C51497D273E07D600F78617 /* EnumSelectAndSort.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C514976273E07D500F78617 /* EnumSelectAndSort.storyboard */; };
  45. 3C51497E273E07D600F78617 /* EnumSelectAndSortViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514979273E07D500F78617 /* EnumSelectAndSortViewController.m */; };
  46. 3C51497F273E07D600F78617 /* EnumSelectAndSortCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51497A273E07D500F78617 /* EnumSelectAndSortCell.m */; };
  47. 3C514980273E07D600F78617 /* EnumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51497C273E07D600F78617 /* EnumModel.m */; };
  48. 3C514992273E091500F78617 /* PhotoList.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C514989273E091500F78617 /* PhotoList.storyboard */; };
  49. 3C514993273E091500F78617 /* ContentPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51498B273E091500F78617 /* ContentPreviewController.m */; };
  50. 3C514994273E091500F78617 /* VideoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51498E273E091500F78617 /* VideoPreviewCell.m */; };
  51. 3C514995273E091500F78617 /* PhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514990273E091500F78617 /* PhotoPreviewCell.m */; };
  52. 3C514999273E097C00F78617 /* RAProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C514998273E097B00F78617 /* RAProgressHUD.m */; };
  53. 3C51E7BD27B2599E00E61163 /* ScanOrderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51E7BC27B2599E00E61163 /* ScanOrderListViewController.m */; };
  54. 3C51E7CB27B261EC00E61163 /* RAUploadOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51E7C327B261EC00E61163 /* RAUploadOperation.m */; };
  55. 3C51E7CC27B261EC00E61163 /* RAUploadListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51E7C527B261EC00E61163 /* RAUploadListViewController.m */; };
  56. 3C51E7CD27B261EC00E61163 /* RAUploadManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51E7C827B261EC00E61163 /* RAUploadManager.m */; };
  57. 3C51E7D027B2623700E61163 /* UploadCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51E7CF27B2623700E61163 /* UploadCell.m */; };
  58. 3C51E7D327B2628900E61163 /* UIView+Toast.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C51E7D227B2628900E61163 /* UIView+Toast.m */; };
  59. 3C57678928D9B2DC00D1B5BF /* CommonEditorWebCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C57678728D9B2DC00D1B5BF /* CommonEditorWebCell.m */; };
  60. 3C68314D239607B500AD5BD7 /* ytplayer.html in Resources */ = {isa = PBXBuildFile; fileRef = 3C68314A239607B500AD5BD7 /* ytplayer.html */; };
  61. 3C68314E239607B500AD5BD7 /* RAYTPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C68314B239607B500AD5BD7 /* RAYTPlayer.m */; };
  62. 3C6831562396082800AD5BD7 /* ERP_Mobile_Discard.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C68314F2396082700AD5BD7 /* ERP_Mobile_Discard.storyboard */; };
  63. 3C6831572396082800AD5BD7 /* ERP_Mobile_Cart.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831502396082700AD5BD7 /* ERP_Mobile_Cart.storyboard */; };
  64. 3C6831582396082800AD5BD7 /* ERP_Mobile_Model.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831512396082700AD5BD7 /* ERP_Mobile_Model.storyboard */; };
  65. 3C6831592396082800AD5BD7 /* ERP_Mobile_Search.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831522396082700AD5BD7 /* ERP_Mobile_Search.storyboard */; };
  66. 3C68315A2396082800AD5BD7 /* ERP_Mobile_Contact.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831532396082700AD5BD7 /* ERP_Mobile_Contact.storyboard */; };
  67. 3C68315B2396082800AD5BD7 /* ERP_Mobile_Order.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831542396082800AD5BD7 /* ERP_Mobile_Order.storyboard */; };
  68. 3C68315C2396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831552396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard */; };
  69. 3C6831682396094200AD5BD7 /* iPadCommonEditorCellImg.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68315D2396094100AD5BD7 /* iPadCommonEditorCellImg.xib */; };
  70. 3C6831692396094200AD5BD7 /* CommonEditor.iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68315E2396094100AD5BD7 /* CommonEditor.iPad.xib */; };
  71. 3C68316A2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C68315F2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib */; };
  72. 3C68316B2396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831602396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib */; };
  73. 3C68316C2396094200AD5BD7 /* iPadCommonEditorCellEnum.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831612396094200AD5BD7 /* iPadCommonEditorCellEnum.xib */; };
  74. 3C68316D2396094200AD5BD7 /* iPadCommonEditorCellTextView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831622396094200AD5BD7 /* iPadCommonEditorCellTextView.xib */; };
  75. 3C68316E2396094200AD5BD7 /* iPadCommonEditorCellAction.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831632396094200AD5BD7 /* iPadCommonEditorCellAction.xib */; };
  76. 3C68316F2396094200AD5BD7 /* iPadCommonEditorCellModel.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831642396094200AD5BD7 /* iPadCommonEditorCellModel.xib */; };
  77. 3C6831702396094200AD5BD7 /* iPadCommonEditorCellMAction.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831652396094200AD5BD7 /* iPadCommonEditorCellMAction.xib */; };
  78. 3C6831712396094200AD5BD7 /* iPadCommonEditorCellSignature.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831662396094200AD5BD7 /* iPadCommonEditorCellSignature.xib */; };
  79. 3C6831722396094200AD5BD7 /* iPadCommonEditorCellEdit.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C6831672396094200AD5BD7 /* iPadCommonEditorCellEdit.xib */; };
  80. 3C69618223C7156D0075172A /* RAPDFViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C69617E23C7156D0075172A /* RAPDFViewController.m */; };
  81. 3C69618323C7156D0075172A /* WebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C69617F23C7156D0075172A /* WebViewController.m */; };
  82. 3C69618423C7156D0075172A /* wkweb.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C69618023C7156D0075172A /* wkweb.storyboard */; };
  83. 3C7E5A8E237BDB0C006D0105 /* PortfolioListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7E5A8C237BDB0C006D0105 /* PortfolioListViewController.m */; };
  84. 3C872A1E27955CF300BE1FC8 /* scan_cart.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C872A1D27955CF300BE1FC8 /* scan_cart.json */; };
  85. 3C872A262797FE7C00BE1FC8 /* scan_order.json in Resources */ = {isa = PBXBuildFile; fileRef = 3C872A252797FE7C00BE1FC8 /* scan_order.json */; };
  86. 3C8855A427E2D9CC005DC3FA /* ScanOrderModelListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C8855A327E2D9CC005DC3FA /* ScanOrderModelListViewController.m */; };
  87. 3C8855A727E2DB1A005DC3FA /* ScanModelListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C8855A627E2DB1A005DC3FA /* ScanModelListCell.m */; };
  88. 3C8855AA27E85A0C005DC3FA /* ScanCartItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C8855A927E85A0C005DC3FA /* ScanCartItemCell.m */; };
  89. 3C9F81D427F6E04300B4C511 /* SetupServerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C9F81D327F6E04300B4C511 /* SetupServerViewController.m */; };
  90. 3C9F81D727F831A500B4C511 /* ScanServerListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C9F81D627F831A500B4C511 /* ScanServerListViewController.m */; };
  91. 3CA6DDC128E54D1C003655FF /* CartViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA6DDBF28E54D1C003655FF /* CartViewController.m */; };
  92. 3CABBF122836224500FA3352 /* guest.json in Resources */ = {isa = PBXBuildFile; fileRef = 3CABBF112836224400FA3352 /* guest.json */; };
  93. 3CABE0202861A51F00CF0DC1 /* StockViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CABE01F2861A51E00CF0DC1 /* StockViewController.m */; };
  94. 3CABE0232861A5E000CF0DC1 /* StockTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CABE0222861A5E000CF0DC1 /* StockTableViewCell.m */; };
  95. 3CB44F1028733D6D00E24494 /* libScanApiCore.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3CB44F0F28733D1200E24494 /* libScanApiCore.a */; };
  96. 3CC1122B279163F4004ACA57 /* offline_order_new_contact.json in Resources */ = {isa = PBXBuildFile; fileRef = 3CC1122A279163F4004ACA57 /* offline_order_new_contact.json */; };
  97. 3CD54A79282CF21D0073A15D /* ScanHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CD54A78282CF21D0073A15D /* ScanHomeViewController.m */; };
  98. 3CD54A7C282CF4930073A15D /* ScanHomeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CD54A7B282CF4930073A15D /* ScanHomeCell.m */; };
  99. 3CDDB25C273A564200681F78 /* DefaultTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CDDB25A273A564200681F78 /* DefaultTableHeaderView.m */; };
  100. 3CDDB262273A59DF00681F78 /* TouchImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CDDB260273A59DF00681F78 /* TouchImageView.m */; };
  101. 3CDDB265273A59EF00681F78 /* RTLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CDDB264273A59EF00681F78 /* RTLabel.m */; };
  102. 3CDDB268273A5A0400681F78 /* StrikethroughLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CDDB267273A5A0400681F78 /* StrikethroughLabel.m */; };
  103. 3CDDB26B273A5A1500681F78 /* CustomIOSAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CDDB269273A5A1400681F78 /* CustomIOSAlertView.m */; };
  104. 3CDDB26E273A5A7800681F78 /* RAUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CDDB26C273A5A7800681F78 /* RAUtils.m */; };
  105. 3CF33C8B27BF4936001CBEEC /* ServerSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF33C8A27BF4936001CBEEC /* ServerSettingViewController.m */; };
  106. 3CF33C8F27BF4A3D001CBEEC /* RAQRCodeScannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF33C8C27BF4A3D001CBEEC /* RAQRCodeScannerViewController.m */; };
  107. 3CF33C9027BF4A3D001CBEEC /* QRCode.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3CF33C8E27BF4A3D001CBEEC /* QRCode.storyboard */; };
  108. 3CF513A227F2FF31004B4818 /* ScanHistoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF513A127F2FF31004B4818 /* ScanHistoryViewController.m */; };
  109. 3CF513A527F3FECF004B4818 /* ScanListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF513A427F3FECF004B4818 /* ScanListCell.m */; };
  110. 3CF513A827F437CF004B4818 /* ScanSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF513A727F437CF004B4818 /* ScanSearchViewController.m */; };
  111. 423CC87521D22FDE008BD2C4 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 423CC87421D22FDE008BD2C4 /* Launch Screen.storyboard */; };
  112. 424A02D11FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 424A02D01FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m */; };
  113. 4254CCDE1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4254CCDD1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m */; };
  114. 428980041E2490C1005F1BD8 /* NotificationNameCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980031E2490C1005F1BD8 /* NotificationNameCenter.m */; };
  115. 4289800A1E24918F005F1BD8 /* CartUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980091E24918F005F1BD8 /* CartUtils.m */; };
  116. 428980151E24924D005F1BD8 /* SortButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980101E24924D005F1BD8 /* SortButton.m */; };
  117. 428980161E24924D005F1BD8 /* SortItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980121E24924D005F1BD8 /* SortItemCell.m */; };
  118. 428980171E24924D005F1BD8 /* SortItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980141E24924D005F1BD8 /* SortItemViewController.m */; };
  119. 4289802B1E2492D2005F1BD8 /* CategoryPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980241E2492D2005F1BD8 /* CategoryPriceCell.m */; };
  120. 4289802C1E2492D2005F1BD8 /* CategoryPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980261E2492D2005F1BD8 /* CategoryPriceViewController.m */; };
  121. 4289802D1E2492D2005F1BD8 /* PriceSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980281E2492D2005F1BD8 /* PriceSettingViewController.m */; };
  122. 4289802E1E2492D2005F1BD8 /* SetCategoryPriceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289802A1E2492D2005F1BD8 /* SetCategoryPriceController.m */; };
  123. 428980451E249339005F1BD8 /* JKDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289803E1E249339005F1BD8 /* JKDotView.m */; };
  124. 428980461E249339005F1BD8 /* JKLockButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980401E249339005F1BD8 /* JKLockButton.m */; };
  125. 428980471E249339005F1BD8 /* JKLockController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980421E249339005F1BD8 /* JKLockController.m */; };
  126. 428980481E249339005F1BD8 /* JKMessageBoxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980441E249339005F1BD8 /* JKMessageBoxController.m */; };
  127. 4289805D1E249375005F1BD8 /* UIColor+JK_HEX.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289805C1E249375005F1BD8 /* UIColor+JK_HEX.m */; };
  128. 428980721E24B1E9005F1BD8 /* RASingleton.m in Sources */ = {isa = PBXBuildFile; fileRef = 428980711E24B1E9005F1BD8 /* RASingleton.m */; };
  129. 4289809E1E24B526005F1BD8 /* JKTimerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4289809D1E24B526005F1BD8 /* JKTimerManager.m */; };
  130. 4295AE1C1FE74D46007BE365 /* CommonEditorAutoCompleteView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4295AE1A1FE74D46007BE365 /* CommonEditorAutoCompleteView.m */; };
  131. 4295AE1D1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4295AE1B1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib */; };
  132. 42B309791E45BA32007AFC62 /* status_filter_cadedate_po.json in Resources */ = {isa = PBXBuildFile; fileRef = 42B309781E45BA32007AFC62 /* status_filter_cadedate_po.json */; };
  133. 42BEF35D1E89FECD00632AB6 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF35C1E89FECD00632AB6 /* SystemConfiguration.framework */; };
  134. 42BEF35F1E89FEE300632AB6 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42BEF35E1E89FEE300632AB6 /* CoreData.framework */; };
  135. 42BF67CC1E5179970081F90A /* ERPUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 42BF67CB1E5179970081F90A /* ERPUtils.m */; };
  136. 42D9A0231EB02DA6008AF7AF /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42D9A0221EB02DA6008AF7AF /* AdSupport.framework */; };
  137. 42DC12F11F0CD98E00A4C011 /* OrderDetailPickInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 42DC12F01F0CD98E00A4C011 /* OrderDetailPickInfoCell.m */; };
  138. 42E489611EE63F4E007256A0 /* more_color_64.png in Resources */ = {isa = PBXBuildFile; fileRef = 42E489601EE63F4E007256A0 /* more_color_64.png */; };
  139. 42FD1A031FBD1A3000C5D9A8 /* RAOrderPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42FD1A021FBD1A3000C5D9A8 /* RAOrderPreviewController.m */; };
  140. 710274251CC606C4009FD219 /* UserListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 710274241CC606C4009FD219 /* UserListViewController.m */; };
  141. 7111E5721C76C557004763B3 /* customer_info_template_edit.json in Resources */ = {isa = PBXBuildFile; fileRef = 7111E5711C76C557004763B3 /* customer_info_template_edit.json */; };
  142. 71131F921CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */; };
  143. 712AFED71DBA050200254965 /* BasicDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEC61DBA050200254965 /* BasicDrawable.m */; };
  144. 712AFED81DBA050200254965 /* GridDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEC81DBA050200254965 /* GridDrawable.m */; };
  145. 712AFED91DBA050200254965 /* GroupDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECA1DBA050200254965 /* GroupDrawable.m */; };
  146. 712AFEDA1DBA050200254965 /* ImageDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECC1DBA050200254965 /* ImageDrawable.m */; };
  147. 712AFEDB1DBA050200254965 /* LineDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFECE1DBA050200254965 /* LineDrawable.m */; };
  148. 712AFEDC1DBA050200254965 /* PDFDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED01DBA050200254965 /* PDFDrawable.m */; };
  149. 712AFEDD1DBA050200254965 /* RAPDFPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED21DBA050200254965 /* RAPDFPage.m */; };
  150. 712AFEDE1DBA050200254965 /* TableDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED41DBA050200254965 /* TableDrawable.m */; };
  151. 712AFEDF1DBA050200254965 /* TextDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFED61DBA050200254965 /* TextDrawable.m */; };
  152. 712AFEE21DBA077F00254965 /* pdfCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = 712AFEE11DBA077F00254965 /* pdfCreator.m */; };
  153. 712AFEE51DBDAF0300254965 /* pdfcreator.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */; };
  154. 712BABF31C897E3A0007466B /* CategorySearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */; };
  155. 712C40B61C7310F4000E6831 /* CartGeneralNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */; };
  156. 712C40B91C731126000E6831 /* ItemNotesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 712C40B81C731126000E6831 /* ItemNotesViewController.m */; };
  157. 713F76AA1929F4A7006A7305 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76A91929F4A7006A7305 /* Foundation.framework */; };
  158. 713F76AC1929F4A7006A7305 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */; };
  159. 713F76AE1929F4A7006A7305 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713F76AD1929F4A7006A7305 /* UIKit.framework */; };
  160. 713F76B41929F4A7006A7305 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 713F76B21929F4A7006A7305 /* InfoPlist.strings */; };
  161. 713F76B61929F4A7006A7305 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 713F76B51929F4A7006A7305 /* main.m */; };
  162. 713F76BA1929F4A7006A7305 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 713F76B91929F4A7006A7305 /* AppDelegate.m */; };
  163. 713F76C21929F4A7006A7305 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 713F76C11929F4A7006A7305 /* Images.xcassets */; };
  164. 714036F921646B8C0029B10F /* AppDelegateBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 714036F721646B8C0029B10F /* AppDelegateBase.m */; };
  165. 714036FC21646CFF0029B10F /* UIResponder+Router.m in Sources */ = {isa = PBXBuildFile; fileRef = 714036FA21646CFF0029B10F /* UIResponder+Router.m */; };
  166. 714037052164707E0029B10F /* MainHeaderViewColorPanel.m in Sources */ = {isa = PBXBuildFile; fileRef = 714037042164707D0029B10F /* MainHeaderViewColorPanel.m */; };
  167. 7141DD341C57269B00F7DF59 /* include in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD331C57269B00F7DF59 /* include */; };
  168. 7141DD3B1C5726B700F7DF59 /* DeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD361C5726B700F7DF59 /* DeviceInfo.m */; };
  169. 7141DD3C1C5726B700F7DF59 /* ScanApiHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */; };
  170. 7141DD3D1C5726B700F7DF59 /* softScanBeep.wav in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */; };
  171. 7141DD4E1C57459B00F7DF59 /* bitstream.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD3E1C57459B00F7DF59 /* bitstream.c */; };
  172. 7141DD4F1C57459B00F7DF59 /* mask.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD401C57459B00F7DF59 /* mask.c */; };
  173. 7141DD501C57459B00F7DF59 /* QRCodeGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */; };
  174. 7141DD511C57459B00F7DF59 /* qrencode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD441C57459B00F7DF59 /* qrencode.c */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; };
  175. 7141DD521C57459B00F7DF59 /* qrinput.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD461C57459B00F7DF59 /* qrinput.c */; };
  176. 7141DD531C57459B00F7DF59 /* qrspec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD481C57459B00F7DF59 /* qrspec.c */; };
  177. 7141DD541C57459B00F7DF59 /* rscode.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD4A1C57459B00F7DF59 /* rscode.c */; };
  178. 7141DD551C57459B00F7DF59 /* split.c in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD4C1C57459B00F7DF59 /* split.c */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; };
  179. 7141DD5F1C5747CE00F7DF59 /* AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD571C5747CE00F7DF59 /* AESCrypt.m */; };
  180. 7141DD601C5747CE00F7DF59 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 7141DD581C5747CE00F7DF59 /* LICENSE */; };
  181. 7141DD611C5747CE00F7DF59 /* NSData+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */; };
  182. 7141DD621C5747CE00F7DF59 /* NSData+CommonCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */; };
  183. 7141DD631C5747CE00F7DF59 /* NSString+Base64.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */; };
  184. 7142E87A1DBF577A0077EFA2 /* KALINGA.TTF in Resources */ = {isa = PBXBuildFile; fileRef = 7142E8781DBF57510077EFA2 /* KALINGA.TTF */; };
  185. 7142E87B1DBF577A0077EFA2 /* KALINGAB.TTF in Resources */ = {isa = PBXBuildFile; fileRef = 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */; };
  186. 7142E87E1DC300690077EFA2 /* DejaVuSans-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */; };
  187. 7142E87F1DC300690077EFA2 /* DejaVuSans.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */; };
  188. 7143E20C202FCEEC00451903 /* OLM.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7143E208202FCEEB00451903 /* OLM.storyboard */; };
  189. 7143E20F202FCEF600451903 /* CUL.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 7143E20E202FCEF600451903 /* CUL.storyboard */; };
  190. 7143E212202FCF7600451903 /* CategoryCellNPD.m in Sources */ = {isa = PBXBuildFile; fileRef = 7143E211202FCF7600451903 /* CategoryCellNPD.m */; };
  191. 7143E214202FCFC000451903 /* debug_category_filter.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E213202FCFC000451903 /* debug_category_filter.json */; };
  192. 7143E217202FD15A00451903 /* category.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E216202FD15A00451903 /* category.json */; };
  193. 7143E21A202FD1DC00451903 /* contactAdvanceSearch.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E218202FD1DC00451903 /* contactAdvanceSearch.json */; };
  194. 7143E21B202FD1DC00451903 /* createContact.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E219202FD1DC00451903 /* createContact.json */; };
  195. 7143E21D202FD21F00451903 /* editContact.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E21C202FD21F00451903 /* editContact.json */; };
  196. 7143E220202FD28900451903 /* TearSheet.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E21E202FD28800451903 /* TearSheet.json */; };
  197. 7143E221202FD28900451903 /* placeOrderTemplate.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E21F202FD28900451903 /* placeOrderTemplate.json */; };
  198. 7143E226202FD2CA00451903 /* so_thumb.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E222202FD2CA00451903 /* so_thumb.json */; };
  199. 7143E227202FD2CA00451903 /* portfolio_3x2.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E223202FD2CA00451903 /* portfolio_3x2.json */; };
  200. 7143E228202FD2CA00451903 /* portfolio_2x3.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E224202FD2CA00451903 /* portfolio_2x3.json */; };
  201. 7143E229202FD2CA00451903 /* so.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E225202FD2CA00451903 /* so.json */; };
  202. 7143E22B202FD37500451903 /* orderDetail.json in Resources */ = {isa = PBXBuildFile; fileRef = 7143E22A202FD37500451903 /* orderDetail.json */; };
  203. 7143E22E202FD3CD00451903 /* more_info.html in Resources */ = {isa = PBXBuildFile; fileRef = 7143E22C202FD3CC00451903 /* more_info.html */; };
  204. 7143E22F202FD3CD00451903 /* order_info.html in Resources */ = {isa = PBXBuildFile; fileRef = 7143E22D202FD3CC00451903 /* order_info.html */; };
  205. 714B1F401C7BF74100539193 /* OrderDetailSignatureCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */; };
  206. 715001FF1D114D9100F5927F /* BundleDetailButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 715001FE1D114D9100F5927F /* BundleDetailButton.m */; };
  207. 715671331E10A0EF006324A0 /* RectDrawable.m in Sources */ = {isa = PBXBuildFile; fileRef = 715671321E10A0EF006324A0 /* RectDrawable.m */; };
  208. 715850461CF6F0E500856B20 /* DefaultAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 715850451CF6F0E500856B20 /* DefaultAppearance.m */; };
  209. 715F30BD1DAB37EB00490EED /* OfflineUnlockViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */; };
  210. 7161FEB51D61B24900157EE1 /* creditcardpayment.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB21D61B24900157EE1 /* creditcardpayment.html */; };
  211. 7161FEB61D61B24900157EE1 /* normalpayment.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB31D61B24900157EE1 /* normalpayment.html */; };
  212. 7161FEB71D61B24900157EE1 /* orderinfo.html in Resources */ = {isa = PBXBuildFile; fileRef = 7161FEB41D61B24900157EE1 /* orderinfo.html */; };
  213. 7162A5021C586F5B00AB630E /* AddressEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */; };
  214. 7162A5091C586FC100AB630E /* CycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5041C586FC100AB630E /* CycleScrollView.m */; };
  215. 7162A50A1C586FC100AB630E /* NSTimer+Addition.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5061C586FC100AB630E /* NSTimer+Addition.m */; };
  216. 7162A50B1C586FC100AB630E /* SliderPage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5081C586FC100AB630E /* SliderPage.m */; };
  217. 7162A5161C58704600AB630E /* BundleModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A50D1C58704600AB630E /* BundleModelCell.m */; };
  218. 7162A5171C58704600AB630E /* BundleModelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A50F1C58704600AB630E /* BundleModelViewController.m */; };
  219. 7162A5191C58704600AB630E /* EditModelPriceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5131C58704600AB630E /* EditModelPriceViewController.m */; };
  220. 7162A51A1C58704600AB630E /* ModelItemCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5151C58704600AB630E /* ModelItemCell.m */; };
  221. 7162A5251C58706C00AB630E /* CategoryCellSmall.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5201C58706C00AB630E /* CategoryCellSmall.m */; };
  222. 7162A5261C58706C00AB630E /* CategoryViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5221C58706C00AB630E /* CategoryViewController.m */; };
  223. 7162A5411C58719D00AB630E /* RATreeNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A52C1C58719D00AB630E /* RATreeNode.m */; };
  224. 7162A5421C58719D00AB630E /* RATreeNodeCollectionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */; };
  225. 7162A5431C58719D00AB630E /* RATreeNodeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */; };
  226. 7162A5441C58719D00AB630E /* RATreeNodeInfo+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */; };
  227. 7162A5451C58719D00AB630E /* RATreeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5341C58719D00AB630E /* RATreeView.m */; };
  228. 7162A5461C58719D00AB630E /* RATreeView+Enums.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5361C58719D00AB630E /* RATreeView+Enums.m */; };
  229. 7162A5471C58719D00AB630E /* RATreeView+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5381C58719D00AB630E /* RATreeView+Private.m */; };
  230. 7162A5481C58719D00AB630E /* RATreeView+TableViewDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */; };
  231. 7162A5491C58719D00AB630E /* RATreeView+TableViewDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */; };
  232. 7162A54A1C58719D00AB630E /* RATreeView+UIScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */; };
  233. 7162A54B1C58719D00AB630E /* RAViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5401C58719D00AB630E /* RAViewController.m */; };
  234. 7162A54E1C58722200AB630E /* CreditCardEditorViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */; };
  235. 7162A55B1C58724700AB630E /* ContactAdvanceSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */; };
  236. 7162A55C1C58724700AB630E /* ContactListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5521C58724700AB630E /* ContactListTableViewCell.m */; };
  237. 7162A55D1C58724700AB630E /* ContactListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5541C58724700AB630E /* ContactListViewController.m */; };
  238. 7162A55E1C58724700AB630E /* customer_advanced_search.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5551C58724700AB630E /* customer_advanced_search.json */; };
  239. 7162A55F1C58724700AB630E /* customer_info_template.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5561C58724700AB630E /* customer_info_template.json */; };
  240. 7162A5601C58724700AB630E /* CustomerEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5581C58724700AB630E /* CustomerEditViewController.m */; };
  241. 7162A5611C58724700AB630E /* CustomerInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */; };
  242. 7162A5701C58728D00AB630E /* DetailHeaderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5631C58728D00AB630E /* DetailHeaderCell.m */; };
  243. 7162A5711C58728D00AB630E /* DetailImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5651C58728D00AB630E /* DetailImageCell.m */; };
  244. 7162A5721C58728D00AB630E /* DetailKVCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5671C58728D00AB630E /* DetailKVCell.m */; };
  245. 7162A5731C58728D00AB630E /* DetailTopicCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5691C58728D00AB630E /* DetailTopicCell.m */; };
  246. 7162A5741C58728D00AB630E /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A56B1C58728D00AB630E /* DetailViewController.m */; };
  247. 7162A5751C58728D00AB630E /* LineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A56D1C58728D00AB630E /* LineView.m */; };
  248. 7162A5811C5872EF00AB630E /* HomeTableViewCellBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */; };
  249. 7162A5821C5872EF00AB630E /* HomeTableViewCellButtonBanner.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */; };
  250. 7162A5831C5872EF00AB630E /* HomeTableViewCellSlide.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */; };
  251. 7162A5841C5872EF00AB630E /* HomeTableViewCellTopic.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */; };
  252. 7162A5851C5872EF00AB630E /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5801C5872EF00AB630E /* HomeViewController.m */; };
  253. 7162A5981C58733400AB630E /* CreateOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5871C58733400AB630E /* CreateOrderViewController.m */; };
  254. 7162A5991C58733400AB630E /* OrderDetailHtmlCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */; };
  255. 7162A59A1C58733400AB630E /* OrderDetailInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */; };
  256. 7162A59B1C58733400AB630E /* OrderDetailModelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */; };
  257. 7162A59C1C58733400AB630E /* OrderDetailPriceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */; };
  258. 7162A59D1C58733400AB630E /* OrderDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5911C58733400AB630E /* OrderDetailViewController.m */; };
  259. 7162A59E1C58733400AB630E /* OrderListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5931C58733400AB630E /* OrderListTableViewCell.m */; };
  260. 7162A59F1C58733400AB630E /* OrderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5951C58733400AB630E /* OrderListViewController.m */; };
  261. 7162A5A01C58733400AB630E /* status_filter_cadedate_open.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */; };
  262. 7162A5A11C58733400AB630E /* offline_status_filter_cadedate.json in Resources */ = {isa = PBXBuildFile; fileRef = 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */; };
  263. 7162A5AC1C58735900AB630E /* PortfolioViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A71C58735900AB630E /* PortfolioViewController.m */; };
  264. 7162A5AD1C58735900AB630E /* TearSheetParamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */; };
  265. 7162A5B41C58738600AB630E /* ScannerControllerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5AF1C58738600AB630E /* ScannerControllerView.m */; };
  266. 7162A5B51C58738600AB630E /* ScannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B11C58738600AB630E /* ScannerViewController.m */; };
  267. 7162A5B61C58738600AB630E /* SCShapeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B31C58738600AB630E /* SCShapeView.m */; };
  268. 7162A5C11C5873BB00AB630E /* FilterCellCadedate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */; };
  269. 7162A5C21C5873BB00AB630E /* FilterCellValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */; };
  270. 7162A5C31C5873BB00AB630E /* ItemSearchFilterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */; };
  271. 7162A5C41C5873BB00AB630E /* ItemSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */; };
  272. 7162A5C51C5873BB00AB630E /* SearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C01C5873BB00AB630E /* SearchViewController.m */; };
  273. 7162A5CA1C58761500AB630E /* SignatureView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C71C58761500AB630E /* SignatureView.m */; };
  274. 7162A5CB1C58761500AB630E /* SignatureViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5C91C58761500AB630E /* SignatureViewController.m */; };
  275. 7162A5DA1C5876E300AB630E /* AboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5CD1C5876E300AB630E /* AboutViewController.m */; };
  276. 7162A5DB1C5876E300AB630E /* CacheViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5CF1C5876E300AB630E /* CacheViewController.m */; };
  277. 7162A5DC1C5876E300AB630E /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D11C5876E300AB630E /* LoginViewController.m */; };
  278. 7162A5DD1C5876E300AB630E /* PopupNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D31C5876E300AB630E /* PopupNavigationController.m */; };
  279. 7162A5DE1C5876E300AB630E /* RetrievePassViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */; };
  280. 7162A5DF1C5876E300AB630E /* ScannerSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */; };
  281. 7162A5E01C5876E300AB630E /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5D91C5876E300AB630E /* SettingViewController.m */; };
  282. 7162A5E31C5877CE00AB630E /* WatchListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E21C5877CE00AB630E /* WatchListViewController.m */; };
  283. 7162A5E61C58781000AB630E /* iSalesNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7162A5E51C58781000AB630E /* iSalesNavigationController.m */; };
  284. 7165662E1EF3ACD900CB897F /* photostack_image.html in Resources */ = {isa = PBXBuildFile; fileRef = 7165662C1EF3ACD900CB897F /* photostack_image.html */; };
  285. 7165662F1EF3ACD900CB897F /* photostack_video.html in Resources */ = {isa = PBXBuildFile; fileRef = 7165662D1EF3ACD900CB897F /* photostack_video.html */; };
  286. 716961B519594E1000B19FB4 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 716961B419594E1000B19FB4 /* libsqlite3.dylib */; };
  287. 716AF8E11D7AA0E0001188E0 /* SelectUploadOrderViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */; };
  288. 716AF8E71D7AA398001188E0 /* SelectOrderTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */; };
  289. 7186C25D1C97A6EE00CB43F4 /* FunctionTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */; };
  290. 718716251C433D8B00F25860 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716241C433D8B00F25860 /* ExternalAccessory.framework */; };
  291. 718716271C433D9700F25860 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716261C433D9700F25860 /* AudioToolbox.framework */; };
  292. 718716291C433DA400F25860 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 718716281C433DA400F25860 /* AVFoundation.framework */; };
  293. 7195623C1CF57D1800C74A49 /* CategoryHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */; };
  294. 71BBA2271CEAC16000C91DED /* ZipArchive.mm in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA2221CEAC16000C91DED /* ZipArchive.mm */; };
  295. 71BBA2291CEAC17E00C91DED /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 71BBA2281CEAC17E00C91DED /* libz.tbd */; };
  296. 71BBA2401CEAEF0700C91DED /* ioapi.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA2381CEAEF0700C91DED /* ioapi.c */; };
  297. 71BBA2411CEAEF0700C91DED /* mztools.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23A1CEAEF0700C91DED /* mztools.c */; };
  298. 71BBA2421CEAEF0700C91DED /* unzip.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23C1CEAEF0700C91DED /* unzip.c */; settings = {COMPILER_FLAGS = "-Wno-dangling-else"; }; };
  299. 71BBA2431CEAEF0700C91DED /* zip.c in Sources */ = {isa = PBXBuildFile; fileRef = 71BBA23E1CEAEF0700C91DED /* zip.c */; };
  300. 71BF06FB1D2F3CAC00981938 /* OLDataProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */; };
  301. 71BF06FE1D2F3CBA00981938 /* OfflineSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */; };
  302. 71BF07081D2F3D2800981938 /* SyncControlPanelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */; };
  303. 71C1D84E1F456CAA00CEA1C9 /* HWWeakTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D84D1F456CAA00CEA1C9 /* HWWeakTimer.m */; };
  304. 71C1D8541F456D2700CEA1C9 /* ModelDescriptionController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C1D8531F456D2700CEA1C9 /* ModelDescriptionController.m */; };
  305. 71CB70751F99DF02009FDCB7 /* FileCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CB70731F99DF01009FDCB7 /* FileCache.m */; };
  306. 71CB70781F99E338009FDCB7 /* RAConvertor.m in Sources */ = {isa = PBXBuildFile; fileRef = 71CB70771F99E338009FDCB7 /* RAConvertor.m */; };
  307. 71D01ADD1E08CB1C006620CE /* signature.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71D01ADC1E08CB1C006620CE /* signature.storyboard */; };
  308. 71D01B1A1E0A2055006620CE /* ImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D01B151E0A2055006620CE /* ImageUtils.m */; };
  309. 71D01B1B1E0A2055006620CE /* PDFUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D01B171E0A2055006620CE /* PDFUtils.m */; };
  310. 71D01B1C1E0A2055006620CE /* TextUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D01B191E0A2055006620CE /* TextUtils.m */; };
  311. 71D0344F1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */; };
  312. 71D30A211CFBEDC6006F9477 /* default_appearance.json in Resources */ = {isa = PBXBuildFile; fileRef = 71D30A201CFBEDC6006F9477 /* default_appearance.json */; };
  313. 71D30A2D1CFC0EF8006F9477 /* DefaultImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */; };
  314. 71DEE874192DE003003F645F /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71DEE873192DE003003F645F /* QuartzCore.framework */; };
  315. 71DEE876192DE00E003F645F /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71DEE875192DE00E003F645F /* Accelerate.framework */; };
  316. 71DF742B1C57560600F2789C /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF742A1C57560600F2789C /* Reachability.m */; };
  317. 71DF74341C5757DA00F2789C /* ActiveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74331C5757DA00F2789C /* ActiveViewController.m */; };
  318. 71DF74831C57608F00F2789C /* ImageScrollerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF746C1C57608F00F2789C /* ImageScrollerView.m */; };
  319. 71DF74841C57608F00F2789C /* ImageScrollerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */; };
  320. 71DF74851C57608F00F2789C /* ImageUploadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74701C57608F00F2789C /* ImageUploadViewController.m */; };
  321. 71DF74861C57608F00F2789C /* ImageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74721C57608F00F2789C /* ImageViewController.m */; };
  322. 71DF74871C57608F00F2789C /* NIDropDown.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74741C57608F00F2789C /* NIDropDown.m */; };
  323. 71DF74881C57608F00F2789C /* PulldownMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74761C57608F00F2789C /* PulldownMenu.m */; };
  324. 71DF74891C57608F00F2789C /* RadioButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74781C57608F00F2789C /* RadioButton.m */; };
  325. 71DF748B1C57608F00F2789C /* SimpleGrid.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF747C1C57608F00F2789C /* SimpleGrid.m */; };
  326. 71DF748D1C57608F00F2789C /* TouchLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74801C57608F00F2789C /* TouchLabel.m */; };
  327. 71DF748E1C57608F00F2789C /* UILabel+FontAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */; };
  328. 71DF74951C57614C00F2789C /* PhotoBorder.png in Resources */ = {isa = PBXBuildFile; fileRef = 71DF748F1C57614C00F2789C /* PhotoBorder.png */; };
  329. 71DF74961C57614C00F2789C /* PhotoBorder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */; };
  330. 71DF74971C57614C00F2789C /* PhotoStackView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74921C57614C00F2789C /* PhotoStackView.m */; };
  331. 71DF74981C57614C00F2789C /* PhotoStackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71DF74941C57614C00F2789C /* PhotoStackViewController.m */; };
  332. 71E5A0101DC99370005BF655 /* config.plist in Resources */ = {isa = PBXBuildFile; fileRef = 71E5A00F1DC99370005BF655 /* config.plist */; };
  333. 71E9F6BC1F8B52DD0052C78E /* NetworkUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E9F6BA1F8B52DC0052C78E /* NetworkUtils.m */; };
  334. 71E9F6C21F8B57E40052C78E /* RANetworkTaskDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E9F6C01F8B57E30052C78E /* RANetworkTaskDelegate.m */; };
  335. 71FFBBE91C60894900D91DC2 /* iSalesDB.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FFBBE61C60894900D91DC2 /* iSalesDB.m */; };
  336. 71FFBBEA1C60894900D91DC2 /* RANetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 71FFBBE81C60894900D91DC2 /* RANetwork.m */; };
  337. /* End PBXBuildFile section */
  338. /* Begin PBXFileReference section */
  339. 3C16916A27FE7E3000026FE5 /* SignUpViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SignUpViewController.h; sourceTree = "<group>"; };
  340. 3C16916B27FE7E3000026FE5 /* SignUpViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SignUpViewController.m; sourceTree = "<group>"; };
  341. 3C16916D280004E000026FE5 /* ChangePasswordViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChangePasswordViewController.h; sourceTree = "<group>"; };
  342. 3C16916E280004E000026FE5 /* ChangePasswordViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChangePasswordViewController.m; sourceTree = "<group>"; };
  343. 3C23B3EA29CD70F9008E7C14 /* MessageBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageBox.h; sourceTree = "<group>"; };
  344. 3C23B3EB29CD70F9008E7C14 /* PopWaitAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PopWaitAlert.h; sourceTree = "<group>"; };
  345. 3C23B3EC29CD70F9008E7C14 /* RAPopviewContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAPopviewContainer.h; sourceTree = "<group>"; };
  346. 3C23B3ED29CD70F9008E7C14 /* PopWaitAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PopWaitAlert.m; sourceTree = "<group>"; };
  347. 3C23B3EE29CD70F9008E7C14 /* MessageBox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageBox.m; sourceTree = "<group>"; };
  348. 3C23B3EF29CD70F9008E7C14 /* RAPopviewContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAPopviewContainer.m; sourceTree = "<group>"; };
  349. 3C2D0481285B242800423D97 /* ScanDiscountViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanDiscountViewController.h; sourceTree = "<group>"; };
  350. 3C2D0482285B242800423D97 /* ScanDiscountViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanDiscountViewController.m; sourceTree = "<group>"; };
  351. 3C2F437928B748E800F50E0E /* PriceGroupListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PriceGroupListViewController.h; sourceTree = "<group>"; };
  352. 3C2F437A28B748E800F50E0E /* PriceGroupListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PriceGroupListViewController.m; sourceTree = "<group>"; };
  353. 3C2F99B6237BE1790000808F /* PortfolioListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioListTableViewCell.m; path = common/Functions/portfolio/PortfolioListTableViewCell.m; sourceTree = SOURCE_ROOT; };
  354. 3C2F99B7237BE1790000808F /* PortfolioListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioListTableViewCell.h; path = common/Functions/portfolio/PortfolioListTableViewCell.h; sourceTree = SOURCE_ROOT; };
  355. 3C3A5AFC27D74E4F005F4EFB /* ScanResultViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ScanResultViewController.h; path = common/Functions/camscan/ScanResultViewController.h; sourceTree = SOURCE_ROOT; };
  356. 3C3A5AFD27D74E4F005F4EFB /* ScanResultViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ScanResultViewController.m; path = common/Functions/camscan/ScanResultViewController.m; sourceTree = SOURCE_ROOT; };
  357. 3C3A5AFF27D74F91005F4EFB /* ScanOrderScanModelViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanOrderScanModelViewController.h; sourceTree = "<group>"; };
  358. 3C3A5B0027D74F91005F4EFB /* ScanOrderScanModelViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanOrderScanModelViewController.m; sourceTree = "<group>"; };
  359. 3C3A5B0227D87BA1005F4EFB /* SO.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = SO.storyboard; sourceTree = "<group>"; };
  360. 3C473C8F27C4D22900CC8C12 /* ScanUserListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanUserListViewController.h; sourceTree = "<group>"; };
  361. 3C473C9027C4D22900CC8C12 /* ScanUserListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanUserListViewController.m; sourceTree = "<group>"; };
  362. 3C4DA61527B4E95C001EB44E /* HMLG Scan Order-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "HMLG Scan Order-Info.plist"; sourceTree = "<group>"; };
  363. 3C4DA61E27B50199001EB44E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  364. 3C4DA62327B503B1001EB44E /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainViewController.m; sourceTree = "<group>"; };
  365. 3C4DA62427B503B1001EB44E /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
  366. 3C51492D273CF9B900F78617 /* DBUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = DBUtil.h; path = common/DBUtil.h; sourceTree = SOURCE_ROOT; };
  367. 3C51492E273CF9B900F78617 /* DBUtil.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = DBUtil.m; path = common/DBUtil.m; sourceTree = SOURCE_ROOT; };
  368. 3C514930273D092A00F78617 /* EnumSelectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectViewController.h; path = ../../common/customUI/commoneditor/EnumSelectViewController.h; sourceTree = "<group>"; };
  369. 3C514931273D092A00F78617 /* EnumSelectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectViewController.m; path = ../../common/customUI/commoneditor/EnumSelectViewController.m; sourceTree = "<group>"; };
  370. 3C514933273D095800F78617 /* CommonEditorCellEdit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEdit.h; path = ../../common/customUI/commoneditor/CommonEditorCellEdit.h; sourceTree = "<group>"; };
  371. 3C514934273D095800F78617 /* CommonEditorCellSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSwitch.m; path = ../../common/customUI/commoneditor/CommonEditorCellSwitch.m; sourceTree = "<group>"; };
  372. 3C514935273D095800F78617 /* CommonEditorCellTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellTextView.m; path = ../../common/customUI/commoneditor/CommonEditorCellTextView.m; sourceTree = "<group>"; };
  373. 3C514936273D095800F78617 /* CommonEditorCellSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSwitch.h; path = ../../common/customUI/commoneditor/CommonEditorCellSwitch.h; sourceTree = "<group>"; };
  374. 3C514937273D095800F78617 /* CommonEditorCellLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellLabel.h; path = ../../common/customUI/commoneditor/CommonEditorCellLabel.h; sourceTree = "<group>"; };
  375. 3C514938273D095800F78617 /* CommonEditorCellSignature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellSignature.h; path = ../../common/customUI/commoneditor/CommonEditorCellSignature.h; sourceTree = "<group>"; };
  376. 3C514939273D095800F78617 /* CommonEditorCellEnum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEnum.m; path = ../../common/customUI/commoneditor/CommonEditorCellEnum.m; sourceTree = "<group>"; };
  377. 3C51493A273D095900F78617 /* CommonEditorCellEdit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEdit.m; path = ../../common/customUI/commoneditor/CommonEditorCellEdit.m; sourceTree = "<group>"; };
  378. 3C51493B273D095900F78617 /* CommonEditorCellMAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellMAction.h; path = ../../common/customUI/commoneditor/CommonEditorCellMAction.h; sourceTree = "<group>"; };
  379. 3C51493C273D095900F78617 /* CommonEditorCellLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellLabel.m; path = ../../common/customUI/commoneditor/CommonEditorCellLabel.m; sourceTree = "<group>"; };
  380. 3C51493D273D095900F78617 /* CommonEditorCellMAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellMAction.m; path = ../../common/customUI/commoneditor/CommonEditorCellMAction.m; sourceTree = "<group>"; };
  381. 3C51493E273D095900F78617 /* CommonEditorCellSignature.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellSignature.m; path = ../../common/customUI/commoneditor/CommonEditorCellSignature.m; sourceTree = "<group>"; };
  382. 3C51493F273D095900F78617 /* CommonEditorCellImg.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellImg.m; path = ../../common/customUI/commoneditor/CommonEditorCellImg.m; sourceTree = "<group>"; };
  383. 3C514940273D095900F78617 /* CommonEditorCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellModel.h; path = ../../common/customUI/commoneditor/CommonEditorCellModel.h; sourceTree = "<group>"; };
  384. 3C514941273D095900F78617 /* CommonEditorCellAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellAction.h; path = ../../common/customUI/commoneditor/CommonEditorCellAction.h; sourceTree = "<group>"; };
  385. 3C514942273D095900F78617 /* CommonEditorCellEnum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEnum.h; path = ../../common/customUI/commoneditor/CommonEditorCellEnum.h; sourceTree = "<group>"; };
  386. 3C514943273D095900F78617 /* CommonEditorCellImg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellImg.h; path = ../../common/customUI/commoneditor/CommonEditorCellImg.h; sourceTree = "<group>"; };
  387. 3C514944273D095900F78617 /* CommonEditorCellAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellAction.m; path = ../../common/customUI/commoneditor/CommonEditorCellAction.m; sourceTree = "<group>"; };
  388. 3C514945273D095900F78617 /* CommonEditorCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellModel.m; path = ../../common/customUI/commoneditor/CommonEditorCellModel.m; sourceTree = "<group>"; };
  389. 3C514946273D095900F78617 /* CommonEditorCellTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellTextView.h; path = ../../common/customUI/commoneditor/CommonEditorCellTextView.h; sourceTree = "<group>"; };
  390. 3C514951273D096A00F78617 /* CommonEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorViewController.m; path = ../../common/customUI/commoneditor/CommonEditorViewController.m; sourceTree = "<group>"; };
  391. 3C514952273D096A00F78617 /* CommonEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorViewController.h; path = ../../common/customUI/commoneditor/CommonEditorViewController.h; sourceTree = "<group>"; };
  392. 3C514954273D097E00F78617 /* CommonEditorTableContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorTableContainerView.h; path = ../../common/customUI/commoneditor/CommonEditorTableContainerView.h; sourceTree = "<group>"; };
  393. 3C514955273D097E00F78617 /* CommonEditorTableContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorTableContainerView.m; path = ../../common/customUI/commoneditor/CommonEditorTableContainerView.m; sourceTree = "<group>"; };
  394. 3C514957273D098700F78617 /* DatePickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DatePickerViewController.h; path = ../../common/customUI/commoneditor/DatePickerViewController.h; sourceTree = "<group>"; };
  395. 3C514958273D098700F78617 /* DatePickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DatePickerViewController.m; path = ../../common/customUI/commoneditor/DatePickerViewController.m; sourceTree = "<group>"; };
  396. 3C51495A273D099600F78617 /* EnumSelectorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectorCell.h; path = ../../common/customUI/commoneditor/EnumSelectorCell.h; sourceTree = "<group>"; };
  397. 3C51495B273D099600F78617 /* EnumSelectorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectorCell.m; path = ../../common/customUI/commoneditor/EnumSelectorCell.m; sourceTree = "<group>"; };
  398. 3C51495D273D09B800F78617 /* MonthPickerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MonthPickerViewController.h; path = ../../common/customUI/commoneditor/MonthPickerViewController.h; sourceTree = "<group>"; };
  399. 3C51495E273D09B800F78617 /* MonthPickerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MonthPickerViewController.m; path = ../../common/customUI/commoneditor/MonthPickerViewController.m; sourceTree = "<group>"; };
  400. 3C514960273D09E700F78617 /* CommonEditor.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CommonEditor.storyboard; path = ../../common/customUI/commoneditor/CommonEditor.storyboard; sourceTree = "<group>"; };
  401. 3C514964273D0A2F00F78617 /* SRMonthPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SRMonthPicker.h; path = ../../common/customUI/commoneditor/SRMonthPicker.h; sourceTree = "<group>"; };
  402. 3C514965273D0A2F00F78617 /* SRMonthPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SRMonthPicker.m; path = ../../common/customUI/commoneditor/SRMonthPicker.m; sourceTree = "<group>"; };
  403. 3C514967273D0B1E00F78617 /* RADataProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RADataProvider.h; path = common/data_provider/RADataProvider.h; sourceTree = SOURCE_ROOT; };
  404. 3C514968273D0B1E00F78617 /* RADataProvider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RADataProvider.m; path = common/data_provider/RADataProvider.m; sourceTree = SOURCE_ROOT; };
  405. 3C514972273E074500F78617 /* CommonEditorCellEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorCellEditor.m; path = ../../common/customUI/commoneditor/CommonEditorCellEditor.m; sourceTree = "<group>"; };
  406. 3C514973273E074500F78617 /* CommonEditorCellEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorCellEditor.h; path = ../../common/customUI/commoneditor/CommonEditorCellEditor.h; sourceTree = "<group>"; };
  407. 3C514976273E07D500F78617 /* EnumSelectAndSort.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = EnumSelectAndSort.storyboard; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSort.storyboard; sourceTree = "<group>"; };
  408. 3C514977273E07D500F78617 /* EnumSelectAndSortCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectAndSortCell.h; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSortCell.h; sourceTree = "<group>"; };
  409. 3C514978273E07D500F78617 /* EnumModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumModel.h; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumModel.h; sourceTree = "<group>"; };
  410. 3C514979273E07D500F78617 /* EnumSelectAndSortViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectAndSortViewController.m; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSortViewController.m; sourceTree = "<group>"; };
  411. 3C51497A273E07D500F78617 /* EnumSelectAndSortCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumSelectAndSortCell.m; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSortCell.m; sourceTree = "<group>"; };
  412. 3C51497B273E07D500F78617 /* EnumSelectAndSortViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EnumSelectAndSortViewController.h; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumSelectAndSortViewController.h; sourceTree = "<group>"; };
  413. 3C51497C273E07D600F78617 /* EnumModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EnumModel.m; path = ../../common/customUI/commoneditor/EnumSelectAndSort/EnumModel.m; sourceTree = "<group>"; };
  414. 3C514989273E091500F78617 /* PhotoList.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = PhotoList.storyboard; sourceTree = "<group>"; };
  415. 3C51498B273E091500F78617 /* ContentPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContentPreviewController.m; sourceTree = "<group>"; };
  416. 3C51498C273E091500F78617 /* ContentPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContentPreviewController.h; sourceTree = "<group>"; };
  417. 3C51498E273E091500F78617 /* VideoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoPreviewCell.m; sourceTree = "<group>"; };
  418. 3C51498F273E091500F78617 /* PhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoPreviewCell.h; sourceTree = "<group>"; };
  419. 3C514990273E091500F78617 /* PhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoPreviewCell.m; sourceTree = "<group>"; };
  420. 3C514991273E091500F78617 /* VideoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoPreviewCell.h; sourceTree = "<group>"; };
  421. 3C514997273E097B00F78617 /* RAProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAProgressHUD.h; sourceTree = "<group>"; };
  422. 3C514998273E097B00F78617 /* RAProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAProgressHUD.m; sourceTree = "<group>"; };
  423. 3C51499A273E0B6400F78617 /* common_const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = common_const.h; path = ../../common/common_const.h; sourceTree = "<group>"; };
  424. 3C51E7BB27B2599E00E61163 /* ScanOrderListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ScanOrderListViewController.h; path = common/Functions/OLO/ScanOrderListViewController.h; sourceTree = SOURCE_ROOT; };
  425. 3C51E7BC27B2599E00E61163 /* ScanOrderListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ScanOrderListViewController.m; path = common/Functions/OLO/ScanOrderListViewController.m; sourceTree = SOURCE_ROOT; };
  426. 3C51E7C327B261EC00E61163 /* RAUploadOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAUploadOperation.m; sourceTree = "<group>"; };
  427. 3C51E7C427B261EC00E61163 /* RAUploadManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAUploadManager.h; sourceTree = "<group>"; };
  428. 3C51E7C527B261EC00E61163 /* RAUploadListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAUploadListViewController.m; sourceTree = "<group>"; };
  429. 3C51E7C727B261EC00E61163 /* RAUploadOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAUploadOperation.h; sourceTree = "<group>"; };
  430. 3C51E7C827B261EC00E61163 /* RAUploadManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAUploadManager.m; sourceTree = "<group>"; };
  431. 3C51E7C927B261EC00E61163 /* RAUploadListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAUploadListViewController.h; sourceTree = "<group>"; };
  432. 3C51E7CE27B2623700E61163 /* UploadCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UploadCell.h; sourceTree = "<group>"; };
  433. 3C51E7CF27B2623700E61163 /* UploadCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UploadCell.m; sourceTree = "<group>"; };
  434. 3C51E7D127B2628900E61163 /* UIView+Toast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIView+Toast.h"; path = "../../common/customUI/UIView+Toast.h"; sourceTree = "<group>"; };
  435. 3C51E7D227B2628900E61163 /* UIView+Toast.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIView+Toast.m"; path = "../../common/customUI/UIView+Toast.m"; sourceTree = "<group>"; };
  436. 3C57678728D9B2DC00D1B5BF /* CommonEditorWebCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorWebCell.m; path = ../../common/customUI/commoneditor/CommonEditorWebCell.m; sourceTree = "<group>"; };
  437. 3C57678828D9B2DC00D1B5BF /* CommonEditorWebCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorWebCell.h; path = ../../common/customUI/commoneditor/CommonEditorWebCell.h; sourceTree = "<group>"; };
  438. 3C68314A239607B500AD5BD7 /* ytplayer.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = ytplayer.html; path = ../../common/Youtube/ytplayer.html; sourceTree = "<group>"; };
  439. 3C68314B239607B500AD5BD7 /* RAYTPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAYTPlayer.m; path = ../../common/Youtube/RAYTPlayer.m; sourceTree = "<group>"; };
  440. 3C68314C239607B500AD5BD7 /* RAYTPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAYTPlayer.h; path = ../../common/Youtube/RAYTPlayer.h; sourceTree = "<group>"; };
  441. 3C68314F2396082700AD5BD7 /* ERP_Mobile_Discard.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Discard.storyboard; path = common/ERP_Mobile_Discard.storyboard; sourceTree = SOURCE_ROOT; };
  442. 3C6831502396082700AD5BD7 /* ERP_Mobile_Cart.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Cart.storyboard; path = common/ERP_Mobile_Cart.storyboard; sourceTree = SOURCE_ROOT; };
  443. 3C6831512396082700AD5BD7 /* ERP_Mobile_Model.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Model.storyboard; path = common/ERP_Mobile_Model.storyboard; sourceTree = SOURCE_ROOT; };
  444. 3C6831522396082700AD5BD7 /* ERP_Mobile_Search.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Search.storyboard; path = common/ERP_Mobile_Search.storyboard; sourceTree = SOURCE_ROOT; };
  445. 3C6831532396082700AD5BD7 /* ERP_Mobile_Contact.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Contact.storyboard; path = common/ERP_Mobile_Contact.storyboard; sourceTree = SOURCE_ROOT; };
  446. 3C6831542396082800AD5BD7 /* ERP_Mobile_Order.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Order.storyboard; path = common/ERP_Mobile_Order.storyboard; sourceTree = SOURCE_ROOT; };
  447. 3C6831552396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = ERP_Mobile_Portfolio.storyboard; path = common/ERP_Mobile_Portfolio.storyboard; sourceTree = SOURCE_ROOT; };
  448. 3C68315D2396094100AD5BD7 /* iPadCommonEditorCellImg.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellImg.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellImg.xib; sourceTree = "<group>"; };
  449. 3C68315E2396094100AD5BD7 /* CommonEditor.iPad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = CommonEditor.iPad.xib; path = ../../common/customUI/CommonEditoriPad/CommonEditor.iPad.xib; sourceTree = "<group>"; };
  450. 3C68315F2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellLabel.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellLabel.xib; sourceTree = "<group>"; };
  451. 3C6831602396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellSwitch.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellSwitch.xib; sourceTree = "<group>"; };
  452. 3C6831612396094200AD5BD7 /* iPadCommonEditorCellEnum.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellEnum.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellEnum.xib; sourceTree = "<group>"; };
  453. 3C6831622396094200AD5BD7 /* iPadCommonEditorCellTextView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellTextView.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellTextView.xib; sourceTree = "<group>"; };
  454. 3C6831632396094200AD5BD7 /* iPadCommonEditorCellAction.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellAction.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellAction.xib; sourceTree = "<group>"; };
  455. 3C6831642396094200AD5BD7 /* iPadCommonEditorCellModel.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellModel.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellModel.xib; sourceTree = "<group>"; };
  456. 3C6831652396094200AD5BD7 /* iPadCommonEditorCellMAction.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellMAction.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellMAction.xib; sourceTree = "<group>"; };
  457. 3C6831662396094200AD5BD7 /* iPadCommonEditorCellSignature.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellSignature.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellSignature.xib; sourceTree = "<group>"; };
  458. 3C6831672396094200AD5BD7 /* iPadCommonEditorCellEdit.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = iPadCommonEditorCellEdit.xib; path = ../../common/customUI/CommonEditoriPad/iPadCommonEditorCellEdit.xib; sourceTree = "<group>"; };
  459. 3C69617D23C7156D0075172A /* RAPDFViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAPDFViewController.h; path = "../../common/WK PDF+Web/RAPDFViewController.h"; sourceTree = "<group>"; };
  460. 3C69617E23C7156D0075172A /* RAPDFViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAPDFViewController.m; path = "../../common/WK PDF+Web/RAPDFViewController.m"; sourceTree = "<group>"; };
  461. 3C69617F23C7156D0075172A /* WebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebViewController.m; path = "../../common/WK PDF+Web/WebViewController.m"; sourceTree = "<group>"; };
  462. 3C69618023C7156D0075172A /* wkweb.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = wkweb.storyboard; path = "../../common/WK PDF+Web/wkweb.storyboard"; sourceTree = "<group>"; };
  463. 3C69618123C7156D0075172A /* WebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebViewController.h; path = "../../common/WK PDF+Web/WebViewController.h"; sourceTree = "<group>"; };
  464. 3C7E5A8C237BDB0C006D0105 /* PortfolioListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioListViewController.m; path = common/Functions/portfolio/PortfolioListViewController.m; sourceTree = SOURCE_ROOT; };
  465. 3C7E5A8D237BDB0C006D0105 /* PortfolioListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioListViewController.h; path = common/Functions/portfolio/PortfolioListViewController.h; sourceTree = SOURCE_ROOT; };
  466. 3C872A1D27955CF300BE1FC8 /* scan_cart.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; name = scan_cart.json; path = common/Functions/OLO/scan_cart.json; sourceTree = SOURCE_ROOT; };
  467. 3C872A252797FE7C00BE1FC8 /* scan_order.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; name = scan_order.json; path = common/Functions/OLO/scan_order.json; sourceTree = SOURCE_ROOT; };
  468. 3C8855A227E2D9CC005DC3FA /* ScanOrderModelListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanOrderModelListViewController.h; sourceTree = "<group>"; };
  469. 3C8855A327E2D9CC005DC3FA /* ScanOrderModelListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanOrderModelListViewController.m; sourceTree = "<group>"; };
  470. 3C8855A527E2DB1A005DC3FA /* ScanModelListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanModelListCell.h; sourceTree = "<group>"; };
  471. 3C8855A627E2DB1A005DC3FA /* ScanModelListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanModelListCell.m; sourceTree = "<group>"; };
  472. 3C8855A827E85A0B005DC3FA /* ScanCartItemCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanCartItemCell.h; sourceTree = "<group>"; };
  473. 3C8855A927E85A0C005DC3FA /* ScanCartItemCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanCartItemCell.m; sourceTree = "<group>"; };
  474. 3C9F81D227F6E04300B4C511 /* SetupServerViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SetupServerViewController.h; sourceTree = "<group>"; };
  475. 3C9F81D327F6E04300B4C511 /* SetupServerViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SetupServerViewController.m; sourceTree = "<group>"; };
  476. 3C9F81D527F831A500B4C511 /* ScanServerListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanServerListViewController.h; sourceTree = "<group>"; };
  477. 3C9F81D627F831A500B4C511 /* ScanServerListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanServerListViewController.m; sourceTree = "<group>"; };
  478. 3CA6DDBF28E54D1C003655FF /* CartViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CartViewController.m; sourceTree = "<group>"; };
  479. 3CA6DDC028E54D1C003655FF /* CartViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CartViewController.h; sourceTree = "<group>"; };
  480. 3CABBF112836224400FA3352 /* guest.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = guest.json; path = common/Functions/OLO/guest.json; sourceTree = SOURCE_ROOT; };
  481. 3CABE01E2861A51E00CF0DC1 /* StockViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StockViewController.h; sourceTree = "<group>"; };
  482. 3CABE01F2861A51E00CF0DC1 /* StockViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StockViewController.m; sourceTree = "<group>"; };
  483. 3CABE0212861A5E000CF0DC1 /* StockTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StockTableViewCell.h; sourceTree = "<group>"; };
  484. 3CABE0222861A5E000CF0DC1 /* StockTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StockTableViewCell.m; sourceTree = "<group>"; };
  485. 3CB44F0E28733CEC00E24494 /* ScanAPI.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; name = ScanAPI.podspec; path = "ScanApiSDK-10.2.227-2/ScanAPI.podspec"; sourceTree = "<group>"; };
  486. 3CB44F0F28733D1200E24494 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = "ScanApiSDK-10.2.227-2/lib/libScanApiCore.a"; sourceTree = "<group>"; };
  487. 3CC1122A279163F4004ACA57 /* offline_order_new_contact.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = offline_order_new_contact.json; path = common/Functions/contact/offline_order_new_contact.json; sourceTree = SOURCE_ROOT; };
  488. 3CD54A77282CF21D0073A15D /* ScanHomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanHomeViewController.h; sourceTree = "<group>"; };
  489. 3CD54A78282CF21D0073A15D /* ScanHomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanHomeViewController.m; sourceTree = "<group>"; };
  490. 3CD54A7A282CF4930073A15D /* ScanHomeCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanHomeCell.h; sourceTree = "<group>"; };
  491. 3CD54A7B282CF4930073A15D /* ScanHomeCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanHomeCell.m; sourceTree = "<group>"; };
  492. 3CDDB25A273A564200681F78 /* DefaultTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultTableHeaderView.m; path = ../../common/customUI/commoneditor/DefaultTableHeaderView.m; sourceTree = "<group>"; };
  493. 3CDDB25B273A564200681F78 /* DefaultTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultTableHeaderView.h; path = ../../common/customUI/commoneditor/DefaultTableHeaderView.h; sourceTree = "<group>"; };
  494. 3CDDB25F273A597B00681F78 /* const.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = const.h; path = common/const.h; sourceTree = SOURCE_ROOT; };
  495. 3CDDB260273A59DF00681F78 /* TouchImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchImageView.m; path = ../../common/customUI/TouchImageView.m; sourceTree = "<group>"; };
  496. 3CDDB261273A59DF00681F78 /* TouchImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchImageView.h; path = ../../common/customUI/TouchImageView.h; sourceTree = "<group>"; };
  497. 3CDDB263273A59EF00681F78 /* RTLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RTLabel.h; path = ../../common/customUI/RTLabel.h; sourceTree = "<group>"; };
  498. 3CDDB264273A59EF00681F78 /* RTLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RTLabel.m; path = ../../common/customUI/RTLabel.m; sourceTree = "<group>"; };
  499. 3CDDB266273A5A0400681F78 /* StrikethroughLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = StrikethroughLabel.h; path = ../../common/customUI/StrikethroughLabel.h; sourceTree = "<group>"; };
  500. 3CDDB267273A5A0400681F78 /* StrikethroughLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = StrikethroughLabel.m; path = ../../common/customUI/StrikethroughLabel.m; sourceTree = "<group>"; };
  501. 3CDDB269273A5A1400681F78 /* CustomIOSAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomIOSAlertView.m; path = ../../common/customUI/CustomIOSAlertView.m; sourceTree = "<group>"; };
  502. 3CDDB26A273A5A1500681F78 /* CustomIOSAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomIOSAlertView.h; path = ../../common/customUI/CustomIOSAlertView.h; sourceTree = "<group>"; };
  503. 3CDDB26C273A5A7800681F78 /* RAUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAUtils.m; path = ../../common/RAUtils.m; sourceTree = "<group>"; };
  504. 3CDDB26D273A5A7800681F78 /* RAUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAUtils.h; path = ../../common/RAUtils.h; sourceTree = "<group>"; };
  505. 3CF33C8927BF4936001CBEEC /* ServerSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServerSettingViewController.h; sourceTree = "<group>"; };
  506. 3CF33C8A27BF4936001CBEEC /* ServerSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ServerSettingViewController.m; sourceTree = "<group>"; };
  507. 3CF33C8C27BF4A3D001CBEEC /* RAQRCodeScannerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RAQRCodeScannerViewController.m; sourceTree = "<group>"; };
  508. 3CF33C8D27BF4A3D001CBEEC /* RAQRCodeScannerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RAQRCodeScannerViewController.h; sourceTree = "<group>"; };
  509. 3CF33C8E27BF4A3D001CBEEC /* QRCode.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = QRCode.storyboard; sourceTree = "<group>"; };
  510. 3CF513A027F2FF31004B4818 /* ScanHistoryViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanHistoryViewController.h; sourceTree = "<group>"; };
  511. 3CF513A127F2FF31004B4818 /* ScanHistoryViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanHistoryViewController.m; sourceTree = "<group>"; };
  512. 3CF513A327F3FECF004B4818 /* ScanListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanListCell.h; sourceTree = "<group>"; };
  513. 3CF513A427F3FECF004B4818 /* ScanListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanListCell.m; sourceTree = "<group>"; };
  514. 3CF513A627F437CF004B4818 /* ScanSearchViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanSearchViewController.h; sourceTree = "<group>"; };
  515. 3CF513A727F437CF004B4818 /* ScanSearchViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanSearchViewController.m; sourceTree = "<group>"; };
  516. 423CC87421D22FDE008BD2C4 /* Launch Screen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = SOURCE_ROOT; };
  517. 424A02CF1FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RABackOrderSubmitAlertController.h; path = common/Functions/order/RABackOrderSubmitAlertController.h; sourceTree = SOURCE_ROOT; };
  518. 424A02D01FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RABackOrderSubmitAlertController.m; path = common/Functions/order/RABackOrderSubmitAlertController.m; sourceTree = SOURCE_ROOT; };
  519. 4254CCDC1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RAOrderEditorViewController.h; path = common/Functions/order/RAOrderEditorViewController.h; sourceTree = SOURCE_ROOT; };
  520. 4254CCDD1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RAOrderEditorViewController.m; path = common/Functions/order/RAOrderEditorViewController.m; sourceTree = SOURCE_ROOT; };
  521. 428980021E2490C1005F1BD8 /* NotificationNameCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NotificationNameCenter.h; path = common/NotificationNameCenter.h; sourceTree = SOURCE_ROOT; };
  522. 428980031E2490C1005F1BD8 /* NotificationNameCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NotificationNameCenter.m; path = common/NotificationNameCenter.m; sourceTree = SOURCE_ROOT; };
  523. 428980081E24918F005F1BD8 /* CartUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartUtils.h; path = common/CartUtils.h; sourceTree = SOURCE_ROOT; };
  524. 428980091E24918F005F1BD8 /* CartUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartUtils.m; path = common/CartUtils.m; sourceTree = SOURCE_ROOT; };
  525. 4289800F1E24924D005F1BD8 /* SortButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortButton.h; sourceTree = "<group>"; };
  526. 428980101E24924D005F1BD8 /* SortButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortButton.m; sourceTree = "<group>"; };
  527. 428980111E24924D005F1BD8 /* SortItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemCell.h; sourceTree = "<group>"; };
  528. 428980121E24924D005F1BD8 /* SortItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemCell.m; sourceTree = "<group>"; };
  529. 428980131E24924D005F1BD8 /* SortItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortItemViewController.h; sourceTree = "<group>"; };
  530. 428980141E24924D005F1BD8 /* SortItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortItemViewController.m; sourceTree = "<group>"; };
  531. 428980231E2492D2005F1BD8 /* CategoryPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceCell.h; sourceTree = "<group>"; };
  532. 428980241E2492D2005F1BD8 /* CategoryPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceCell.m; sourceTree = "<group>"; };
  533. 428980251E2492D2005F1BD8 /* CategoryPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CategoryPriceViewController.h; sourceTree = "<group>"; };
  534. 428980261E2492D2005F1BD8 /* CategoryPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CategoryPriceViewController.m; sourceTree = "<group>"; };
  535. 428980271E2492D2005F1BD8 /* PriceSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PriceSettingViewController.h; sourceTree = "<group>"; };
  536. 428980281E2492D2005F1BD8 /* PriceSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PriceSettingViewController.m; sourceTree = "<group>"; };
  537. 428980291E2492D2005F1BD8 /* SetCategoryPriceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SetCategoryPriceController.h; sourceTree = "<group>"; };
  538. 4289802A1E2492D2005F1BD8 /* SetCategoryPriceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SetCategoryPriceController.m; sourceTree = "<group>"; };
  539. 4289803D1E249339005F1BD8 /* JKDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKDotView.h; sourceTree = "<group>"; };
  540. 4289803E1E249339005F1BD8 /* JKDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKDotView.m; sourceTree = "<group>"; };
  541. 4289803F1E249339005F1BD8 /* JKLockButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockButton.h; sourceTree = "<group>"; };
  542. 428980401E249339005F1BD8 /* JKLockButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockButton.m; sourceTree = "<group>"; };
  543. 428980411E249339005F1BD8 /* JKLockController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKLockController.h; sourceTree = "<group>"; };
  544. 428980421E249339005F1BD8 /* JKLockController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKLockController.m; sourceTree = "<group>"; };
  545. 428980431E249339005F1BD8 /* JKMessageBoxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKMessageBoxController.h; sourceTree = "<group>"; };
  546. 428980441E249339005F1BD8 /* JKMessageBoxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKMessageBoxController.m; sourceTree = "<group>"; };
  547. 4289805B1E249375005F1BD8 /* UIColor+JK_HEX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JK_HEX.h"; sourceTree = "<group>"; };
  548. 4289805C1E249375005F1BD8 /* UIColor+JK_HEX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JK_HEX.m"; sourceTree = "<group>"; };
  549. 428980701E24B1E9005F1BD8 /* RASingleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RASingleton.h; path = common/RASingleton.h; sourceTree = SOURCE_ROOT; };
  550. 428980711E24B1E9005F1BD8 /* RASingleton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RASingleton.m; path = common/RASingleton.m; sourceTree = SOURCE_ROOT; };
  551. 4289809C1E24B526005F1BD8 /* JKTimerManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JKTimerManager.h; sourceTree = "<group>"; };
  552. 4289809D1E24B526005F1BD8 /* JKTimerManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JKTimerManager.m; sourceTree = "<group>"; };
  553. 4295AE191FE74D46007BE365 /* CommonEditorAutoCompleteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CommonEditorAutoCompleteView.h; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.h; sourceTree = "<group>"; };
  554. 4295AE1A1FE74D46007BE365 /* CommonEditorAutoCompleteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CommonEditorAutoCompleteView.m; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.m; sourceTree = "<group>"; };
  555. 4295AE1B1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = CommonEditorAutoCompleteView.xib; path = ../../common/customUI/commoneditor/CommonEditorAutoCompleteView.xib; sourceTree = "<group>"; };
  556. 42B309781E45BA32007AFC62 /* status_filter_cadedate_po.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = status_filter_cadedate_po.json; path = common/Functions/order/status_filter_cadedate_po.json; sourceTree = SOURCE_ROOT; };
  557. 42BEF35C1E89FECD00632AB6 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  558. 42BEF35E1E89FEE300632AB6 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  559. 42BF67CA1E5179970081F90A /* ERPUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ERPUtils.h; path = common/ERPUtils.h; sourceTree = SOURCE_ROOT; };
  560. 42BF67CB1E5179970081F90A /* ERPUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ERPUtils.m; path = common/ERPUtils.m; sourceTree = SOURCE_ROOT; };
  561. 42D9A0221EB02DA6008AF7AF /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
  562. 42DC12EF1F0CD98E00A4C011 /* OrderDetailPickInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailPickInfoCell.h; path = common/Functions/order/OrderDetailPickInfoCell.h; sourceTree = SOURCE_ROOT; };
  563. 42DC12F01F0CD98E00A4C011 /* OrderDetailPickInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailPickInfoCell.m; path = common/Functions/order/OrderDetailPickInfoCell.m; sourceTree = SOURCE_ROOT; };
  564. 42E489601EE63F4E007256A0 /* more_color_64.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = more_color_64.png; sourceTree = "<group>"; };
  565. 42FD1A011FBD1A3000C5D9A8 /* RAOrderPreviewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RAOrderPreviewController.h; path = common/Functions/order/RAOrderPreviewController.h; sourceTree = SOURCE_ROOT; };
  566. 42FD1A021FBD1A3000C5D9A8 /* RAOrderPreviewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RAOrderPreviewController.m; path = common/Functions/order/RAOrderPreviewController.m; sourceTree = SOURCE_ROOT; };
  567. 710274231CC606C4009FD219 /* UserListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UserListViewController.h; path = common/Functions/sidemenu/UserListViewController.h; sourceTree = SOURCE_ROOT; };
  568. 710274241CC606C4009FD219 /* UserListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UserListViewController.m; path = common/Functions/sidemenu/UserListViewController.m; sourceTree = SOURCE_ROOT; };
  569. 7111E5711C76C557004763B3 /* 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 = SOURCE_ROOT; };
  570. 71131F901CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimplifiedBuyingProgramViewController.h; path = common/Functions/sidemenu/SimplifiedBuyingProgramViewController.h; sourceTree = SOURCE_ROOT; };
  571. 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimplifiedBuyingProgramViewController.m; path = common/Functions/sidemenu/SimplifiedBuyingProgramViewController.m; sourceTree = SOURCE_ROOT; };
  572. 712AFEC51DBA050200254965 /* BasicDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BasicDrawable.h; path = common/pdfCreator/BasicDrawable.h; sourceTree = SOURCE_ROOT; };
  573. 712AFEC61DBA050200254965 /* BasicDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BasicDrawable.m; path = common/pdfCreator/BasicDrawable.m; sourceTree = SOURCE_ROOT; };
  574. 712AFEC71DBA050200254965 /* GridDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GridDrawable.h; path = common/pdfCreator/GridDrawable.h; sourceTree = SOURCE_ROOT; };
  575. 712AFEC81DBA050200254965 /* GridDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GridDrawable.m; path = common/pdfCreator/GridDrawable.m; sourceTree = SOURCE_ROOT; };
  576. 712AFEC91DBA050200254965 /* GroupDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GroupDrawable.h; path = common/pdfCreator/GroupDrawable.h; sourceTree = SOURCE_ROOT; };
  577. 712AFECA1DBA050200254965 /* GroupDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GroupDrawable.m; path = common/pdfCreator/GroupDrawable.m; sourceTree = SOURCE_ROOT; };
  578. 712AFECB1DBA050200254965 /* ImageDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageDrawable.h; path = common/pdfCreator/ImageDrawable.h; sourceTree = SOURCE_ROOT; };
  579. 712AFECC1DBA050200254965 /* ImageDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageDrawable.m; path = common/pdfCreator/ImageDrawable.m; sourceTree = SOURCE_ROOT; };
  580. 712AFECD1DBA050200254965 /* LineDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineDrawable.h; path = common/pdfCreator/LineDrawable.h; sourceTree = SOURCE_ROOT; };
  581. 712AFECE1DBA050200254965 /* LineDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineDrawable.m; path = common/pdfCreator/LineDrawable.m; sourceTree = SOURCE_ROOT; };
  582. 712AFECF1DBA050200254965 /* PDFDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFDrawable.h; path = common/pdfCreator/PDFDrawable.h; sourceTree = SOURCE_ROOT; };
  583. 712AFED01DBA050200254965 /* PDFDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFDrawable.m; path = common/pdfCreator/PDFDrawable.m; sourceTree = SOURCE_ROOT; };
  584. 712AFED11DBA050200254965 /* RAPDFPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAPDFPage.h; path = common/pdfCreator/RAPDFPage.h; sourceTree = SOURCE_ROOT; };
  585. 712AFED21DBA050200254965 /* RAPDFPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAPDFPage.m; path = common/pdfCreator/RAPDFPage.m; sourceTree = SOURCE_ROOT; };
  586. 712AFED31DBA050200254965 /* TableDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TableDrawable.h; path = common/pdfCreator/TableDrawable.h; sourceTree = SOURCE_ROOT; };
  587. 712AFED41DBA050200254965 /* TableDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TableDrawable.m; path = common/pdfCreator/TableDrawable.m; sourceTree = SOURCE_ROOT; };
  588. 712AFED51DBA050200254965 /* TextDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextDrawable.h; path = common/pdfCreator/TextDrawable.h; sourceTree = SOURCE_ROOT; };
  589. 712AFED61DBA050200254965 /* TextDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TextDrawable.m; path = common/pdfCreator/TextDrawable.m; sourceTree = SOURCE_ROOT; };
  590. 712AFEE01DBA077F00254965 /* pdfCreator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pdfCreator.h; path = common/pdfCreator/pdfCreator.h; sourceTree = SOURCE_ROOT; };
  591. 712AFEE11DBA077F00254965 /* pdfCreator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = pdfCreator.m; path = common/pdfCreator/pdfCreator.m; sourceTree = SOURCE_ROOT; };
  592. 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = pdfcreator.xcassets; sourceTree = "<group>"; };
  593. 712BABF11C897E3A0007466B /* CategorySearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategorySearchFilterViewController.h; path = common/Functions/category/CategorySearchFilterViewController.h; sourceTree = SOURCE_ROOT; };
  594. 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategorySearchFilterViewController.m; path = common/Functions/category/CategorySearchFilterViewController.m; sourceTree = SOURCE_ROOT; };
  595. 712C40B41C7310F4000E6831 /* CartGeneralNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CartGeneralNotesViewController.h; path = common/Functions/cart/CartGeneralNotesViewController.h; sourceTree = SOURCE_ROOT; };
  596. 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CartGeneralNotesViewController.m; path = common/Functions/cart/CartGeneralNotesViewController.m; sourceTree = SOURCE_ROOT; };
  597. 712C40B71C731126000E6831 /* ItemNotesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemNotesViewController.h; path = common/Functions/cart/ItemNotesViewController.h; sourceTree = SOURCE_ROOT; };
  598. 712C40B81C731126000E6831 /* ItemNotesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemNotesViewController.m; path = common/Functions/cart/ItemNotesViewController.m; sourceTree = SOURCE_ROOT; };
  599. 713F76A61929F4A7006A7305 /* HMLG Scan Order.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "HMLG Scan Order.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  600. 713F76A91929F4A7006A7305 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  601. 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  602. 713F76AD1929F4A7006A7305 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  603. 713F76B31929F4A7006A7305 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  604. 713F76B51929F4A7006A7305 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  605. 713F76B71929F4A7006A7305 /* HMLG Scan Order-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "HMLG Scan Order-Prefix.pch"; sourceTree = "<group>"; };
  606. 713F76B81929F4A7006A7305 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  607. 713F76B91929F4A7006A7305 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  608. 713F76C11929F4A7006A7305 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  609. 713F76C81929F4A7006A7305 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  610. 714036F721646B8C0029B10F /* AppDelegateBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegateBase.m; path = common/AppDelegateBase.m; sourceTree = SOURCE_ROOT; };
  611. 714036F821646B8C0029B10F /* AppDelegateBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegateBase.h; path = common/AppDelegateBase.h; sourceTree = SOURCE_ROOT; };
  612. 714036FA21646CFF0029B10F /* UIResponder+Router.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+Router.m"; path = "common/UIResponder+Router.m"; sourceTree = SOURCE_ROOT; };
  613. 714036FB21646CFF0029B10F /* UIResponder+Router.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIResponder+Router.h"; path = "common/UIResponder+Router.h"; sourceTree = SOURCE_ROOT; };
  614. 714037032164707D0029B10F /* MainHeaderViewColorPanel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainHeaderViewColorPanel.h; path = common/Functions/MainHeaderViewColorPanel.h; sourceTree = SOURCE_ROOT; };
  615. 714037042164707D0029B10F /* MainHeaderViewColorPanel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainHeaderViewColorPanel.m; path = common/Functions/MainHeaderViewColorPanel.m; sourceTree = SOURCE_ROOT; };
  616. 7141DD331C57269B00F7DF59 /* include */ = {isa = PBXFileReference; lastKnownFileType = folder; name = include; path = "ScanApiSDK-10.2.227-2/include"; sourceTree = SOURCE_ROOT; };
  617. 7141DD351C5726B700F7DF59 /* DeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DeviceInfo.h; path = "ScanApiSDK-10.2.227-2/DeviceInfo.h"; sourceTree = SOURCE_ROOT; };
  618. 7141DD361C5726B700F7DF59 /* DeviceInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DeviceInfo.m; path = "ScanApiSDK-10.2.227-2/DeviceInfo.m"; sourceTree = SOURCE_ROOT; };
  619. 7141DD371C5726B700F7DF59 /* ScanApiHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanApiHelper.h; path = "ScanApiSDK-10.2.227-2/ScanApiHelper.h"; sourceTree = SOURCE_ROOT; };
  620. 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ScanApiHelper.mm; path = "ScanApiSDK-10.2.227-2/ScanApiHelper.mm"; sourceTree = SOURCE_ROOT; };
  621. 7141DD391C5726B700F7DF59 /* ScanApiIncludes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScanApiIncludes.h; path = "ScanApiSDK-10.2.227-2/ScanApiIncludes.h"; sourceTree = SOURCE_ROOT; };
  622. 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */ = {isa = PBXFileReference; lastKnownFileType = audio.wav; name = softScanBeep.wav; path = "ScanApiSDK-10.2.227-2/softScanBeep.wav"; sourceTree = SOURCE_ROOT; };
  623. 7141DD3E1C57459B00F7DF59 /* bitstream.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = bitstream.c; path = common/qrcode/bitstream.c; sourceTree = SOURCE_ROOT; };
  624. 7141DD3F1C57459B00F7DF59 /* bitstream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bitstream.h; path = common/qrcode/bitstream.h; sourceTree = SOURCE_ROOT; };
  625. 7141DD401C57459B00F7DF59 /* mask.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mask.c; path = common/qrcode/mask.c; sourceTree = SOURCE_ROOT; };
  626. 7141DD411C57459B00F7DF59 /* mask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mask.h; path = common/qrcode/mask.h; sourceTree = SOURCE_ROOT; };
  627. 7141DD421C57459B00F7DF59 /* QRCodeGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QRCodeGenerator.h; path = common/qrcode/QRCodeGenerator.h; sourceTree = SOURCE_ROOT; };
  628. 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = QRCodeGenerator.m; path = common/qrcode/QRCodeGenerator.m; sourceTree = SOURCE_ROOT; };
  629. 7141DD441C57459B00F7DF59 /* qrencode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrencode.c; path = common/qrcode/qrencode.c; sourceTree = SOURCE_ROOT; };
  630. 7141DD451C57459B00F7DF59 /* qrencode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrencode.h; path = common/qrcode/qrencode.h; sourceTree = SOURCE_ROOT; };
  631. 7141DD461C57459B00F7DF59 /* qrinput.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrinput.c; path = common/qrcode/qrinput.c; sourceTree = SOURCE_ROOT; };
  632. 7141DD471C57459B00F7DF59 /* qrinput.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrinput.h; path = common/qrcode/qrinput.h; sourceTree = SOURCE_ROOT; };
  633. 7141DD481C57459B00F7DF59 /* qrspec.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = qrspec.c; path = common/qrcode/qrspec.c; sourceTree = SOURCE_ROOT; };
  634. 7141DD491C57459B00F7DF59 /* qrspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = qrspec.h; path = common/qrcode/qrspec.h; sourceTree = SOURCE_ROOT; };
  635. 7141DD4A1C57459B00F7DF59 /* rscode.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rscode.c; path = common/qrcode/rscode.c; sourceTree = SOURCE_ROOT; };
  636. 7141DD4B1C57459B00F7DF59 /* rscode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rscode.h; path = common/qrcode/rscode.h; sourceTree = SOURCE_ROOT; };
  637. 7141DD4C1C57459B00F7DF59 /* split.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = split.c; path = common/qrcode/split.c; sourceTree = SOURCE_ROOT; };
  638. 7141DD4D1C57459B00F7DF59 /* split.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = split.h; path = common/qrcode/split.h; sourceTree = SOURCE_ROOT; };
  639. 7141DD561C5747CE00F7DF59 /* AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AESCrypt.h; path = common/AES/AESCrypt.h; sourceTree = SOURCE_ROOT; };
  640. 7141DD571C5747CE00F7DF59 /* AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AESCrypt.m; path = common/AES/AESCrypt.m; sourceTree = SOURCE_ROOT; };
  641. 7141DD581C5747CE00F7DF59 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = LICENSE; path = common/AES/LICENSE; sourceTree = SOURCE_ROOT; };
  642. 7141DD591C5747CE00F7DF59 /* NSData+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+Base64.h"; path = "common/AES/NSData+Base64.h"; sourceTree = SOURCE_ROOT; };
  643. 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+Base64.m"; path = "common/AES/NSData+Base64.m"; sourceTree = SOURCE_ROOT; };
  644. 7141DD5B1C5747CE00F7DF59 /* NSData+CommonCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSData+CommonCrypto.h"; path = "common/AES/NSData+CommonCrypto.h"; sourceTree = SOURCE_ROOT; };
  645. 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSData+CommonCrypto.m"; path = "common/AES/NSData+CommonCrypto.m"; sourceTree = SOURCE_ROOT; };
  646. 7141DD5D1C5747CE00F7DF59 /* NSString+Base64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+Base64.h"; path = "common/AES/NSString+Base64.h"; sourceTree = SOURCE_ROOT; };
  647. 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+Base64.m"; path = "common/AES/NSString+Base64.m"; sourceTree = SOURCE_ROOT; };
  648. 7142E8781DBF57510077EFA2 /* KALINGA.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; path = KALINGA.TTF; sourceTree = "<group>"; };
  649. 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; path = KALINGAB.TTF; sourceTree = "<group>"; };
  650. 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "DejaVuSans-Bold.ttf"; sourceTree = "<group>"; };
  651. 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = DejaVuSans.ttf; sourceTree = "<group>"; };
  652. 7143E209202FCEEB00451903 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = "iSales-NPD/Base.lproj/OLM.storyboard"; sourceTree = SOURCE_ROOT; };
  653. 7143E20E202FCEF600451903 /* CUL.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = CUL.storyboard; path = "iSales-NPD/CUL.storyboard"; sourceTree = SOURCE_ROOT; };
  654. 7143E210202FCF7600451903 /* CategoryCellNPD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryCellNPD.h; path = "iSales-NPD/CategoryCellNPD.h"; sourceTree = SOURCE_ROOT; };
  655. 7143E211202FCF7600451903 /* CategoryCellNPD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryCellNPD.m; path = "iSales-NPD/CategoryCellNPD.m"; sourceTree = SOURCE_ROOT; };
  656. 7143E213202FCFC000451903 /* debug_category_filter.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = debug_category_filter.json; path = "iSales-NPD/debug_category_filter.json"; sourceTree = SOURCE_ROOT; };
  657. 7143E216202FD15A00451903 /* category.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = category.json; path = "iSales-NPD/category.json"; sourceTree = SOURCE_ROOT; };
  658. 7143E218202FD1DC00451903 /* contactAdvanceSearch.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = contactAdvanceSearch.json; path = "iSales-NPD/contactAdvanceSearch.json"; sourceTree = SOURCE_ROOT; };
  659. 7143E219202FD1DC00451903 /* createContact.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = createContact.json; path = "iSales-NPD/createContact.json"; sourceTree = SOURCE_ROOT; };
  660. 7143E21C202FD21F00451903 /* editContact.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = editContact.json; path = "iSales-NPD/editContact.json"; sourceTree = SOURCE_ROOT; };
  661. 7143E21E202FD28800451903 /* TearSheet.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = TearSheet.json; path = "iSales-NPD/TearSheet.json"; sourceTree = SOURCE_ROOT; };
  662. 7143E21F202FD28900451903 /* placeOrderTemplate.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = placeOrderTemplate.json; path = "iSales-NPD/placeOrderTemplate.json"; sourceTree = SOURCE_ROOT; };
  663. 7143E222202FD2CA00451903 /* so_thumb.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = so_thumb.json; path = "iSales-NPD/so_thumb.json"; sourceTree = SOURCE_ROOT; };
  664. 7143E223202FD2CA00451903 /* portfolio_3x2.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = portfolio_3x2.json; path = "iSales-NPD/portfolio_3x2.json"; sourceTree = SOURCE_ROOT; };
  665. 7143E224202FD2CA00451903 /* portfolio_2x3.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = portfolio_2x3.json; path = "iSales-NPD/portfolio_2x3.json"; sourceTree = SOURCE_ROOT; };
  666. 7143E225202FD2CA00451903 /* so.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = so.json; path = "iSales-NPD/so.json"; sourceTree = SOURCE_ROOT; };
  667. 7143E22A202FD37500451903 /* orderDetail.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; name = orderDetail.json; path = "iSales-NPD/orderDetail.json"; sourceTree = SOURCE_ROOT; };
  668. 7143E22C202FD3CC00451903 /* more_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = more_info.html; path = "iSales-NPD/more_info.html"; sourceTree = SOURCE_ROOT; };
  669. 7143E22D202FD3CC00451903 /* order_info.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = order_info.html; path = "iSales-NPD/order_info.html"; sourceTree = SOURCE_ROOT; };
  670. 714B1F3E1C7BF74100539193 /* OrderDetailSignatureCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailSignatureCell.h; path = common/Functions/order/OrderDetailSignatureCell.h; sourceTree = SOURCE_ROOT; };
  671. 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailSignatureCell.m; path = common/Functions/order/OrderDetailSignatureCell.m; sourceTree = SOURCE_ROOT; };
  672. 715001FD1D114D9100F5927F /* BundleDetailButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleDetailButton.h; path = common/Functions/BundleDetailButton.h; sourceTree = SOURCE_ROOT; };
  673. 715001FE1D114D9100F5927F /* BundleDetailButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleDetailButton.m; path = common/Functions/BundleDetailButton.m; sourceTree = SOURCE_ROOT; };
  674. 715671311E10A0EF006324A0 /* RectDrawable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RectDrawable.h; path = common/pdfCreator/RectDrawable.h; sourceTree = SOURCE_ROOT; };
  675. 715671321E10A0EF006324A0 /* RectDrawable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RectDrawable.m; path = common/pdfCreator/RectDrawable.m; sourceTree = SOURCE_ROOT; };
  676. 715850441CF6F0E500856B20 /* DefaultAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultAppearance.h; path = common/Functions/DefaultAppearance.h; sourceTree = SOURCE_ROOT; };
  677. 715850451CF6F0E500856B20 /* DefaultAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultAppearance.m; path = common/Functions/DefaultAppearance.m; sourceTree = SOURCE_ROOT; };
  678. 715F30BB1DAB37EB00490EED /* OfflineUnlockViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineUnlockViewController.h; path = common/Functions/offline/OfflineUnlockViewController.h; sourceTree = SOURCE_ROOT; };
  679. 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineUnlockViewController.m; path = common/Functions/offline/OfflineUnlockViewController.m; sourceTree = SOURCE_ROOT; };
  680. 7161FEB21D61B24900157EE1 /* creditcardpayment.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = creditcardpayment.html; path = common/Functions/offline/creditcardpayment.html; sourceTree = SOURCE_ROOT; };
  681. 7161FEB31D61B24900157EE1 /* normalpayment.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = normalpayment.html; path = common/Functions/offline/normalpayment.html; sourceTree = SOURCE_ROOT; };
  682. 7161FEB41D61B24900157EE1 /* orderinfo.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = orderinfo.html; path = common/Functions/offline/orderinfo.html; sourceTree = SOURCE_ROOT; };
  683. 7162A5001C586F5B00AB630E /* AddressEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AddressEditorViewController.h; path = common/Functions/address/AddressEditorViewController.h; sourceTree = SOURCE_ROOT; };
  684. 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AddressEditorViewController.m; path = common/Functions/address/AddressEditorViewController.m; sourceTree = SOURCE_ROOT; };
  685. 7162A5031C586FC100AB630E /* CycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CycleScrollView.h; path = common/AutoScrollImage/CycleScrollView.h; sourceTree = SOURCE_ROOT; };
  686. 7162A5041C586FC100AB630E /* CycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CycleScrollView.m; path = common/AutoScrollImage/CycleScrollView.m; sourceTree = SOURCE_ROOT; };
  687. 7162A5051C586FC100AB630E /* NSTimer+Addition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSTimer+Addition.h"; path = "common/AutoScrollImage/NSTimer+Addition.h"; sourceTree = SOURCE_ROOT; };
  688. 7162A5061C586FC100AB630E /* NSTimer+Addition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSTimer+Addition.m"; path = "common/AutoScrollImage/NSTimer+Addition.m"; sourceTree = SOURCE_ROOT; };
  689. 7162A5071C586FC100AB630E /* SliderPage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SliderPage.h; path = common/AutoScrollImage/SliderPage.h; sourceTree = SOURCE_ROOT; };
  690. 7162A5081C586FC100AB630E /* SliderPage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SliderPage.m; path = common/AutoScrollImage/SliderPage.m; sourceTree = SOURCE_ROOT; };
  691. 7162A50C1C58704600AB630E /* BundleModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelCell.h; path = common/Functions/cart/BundleModelCell.h; sourceTree = SOURCE_ROOT; };
  692. 7162A50D1C58704600AB630E /* BundleModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelCell.m; path = common/Functions/cart/BundleModelCell.m; sourceTree = SOURCE_ROOT; };
  693. 7162A50E1C58704600AB630E /* BundleModelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = BundleModelViewController.h; path = common/Functions/cart/BundleModelViewController.h; sourceTree = SOURCE_ROOT; };
  694. 7162A50F1C58704600AB630E /* BundleModelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = BundleModelViewController.m; path = common/Functions/cart/BundleModelViewController.m; sourceTree = SOURCE_ROOT; };
  695. 7162A5121C58704600AB630E /* EditModelPriceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EditModelPriceViewController.h; path = common/Functions/cart/EditModelPriceViewController.h; sourceTree = SOURCE_ROOT; };
  696. 7162A5131C58704600AB630E /* EditModelPriceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = EditModelPriceViewController.m; path = common/Functions/cart/EditModelPriceViewController.m; sourceTree = SOURCE_ROOT; };
  697. 7162A5141C58704600AB630E /* ModelItemCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModelItemCell.h; path = common/Functions/cart/ModelItemCell.h; sourceTree = SOURCE_ROOT; };
  698. 7162A5151C58704600AB630E /* ModelItemCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModelItemCell.m; path = common/Functions/cart/ModelItemCell.m; sourceTree = SOURCE_ROOT; };
  699. 7162A51F1C58706C00AB630E /* CategoryCellSmall.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryCellSmall.h; path = common/Functions/category/CategoryCellSmall.h; sourceTree = SOURCE_ROOT; };
  700. 7162A5201C58706C00AB630E /* CategoryCellSmall.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryCellSmall.m; path = common/Functions/category/CategoryCellSmall.m; sourceTree = SOURCE_ROOT; };
  701. 7162A5211C58706C00AB630E /* CategoryViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryViewController.h; path = common/Functions/category/CategoryViewController.h; sourceTree = SOURCE_ROOT; };
  702. 7162A5221C58706C00AB630E /* CategoryViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryViewController.m; path = common/Functions/category/CategoryViewController.m; sourceTree = SOURCE_ROOT; };
  703. 7162A52B1C58719D00AB630E /* RATreeNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNode.h; path = common/categoryMenu_RATree/RATreeNode.h; sourceTree = SOURCE_ROOT; };
  704. 7162A52C1C58719D00AB630E /* RATreeNode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNode.m; path = common/categoryMenu_RATree/RATreeNode.m; sourceTree = SOURCE_ROOT; };
  705. 7162A52D1C58719D00AB630E /* RATreeNodeCollectionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeCollectionController.h; path = common/categoryMenu_RATree/RATreeNodeCollectionController.h; sourceTree = SOURCE_ROOT; };
  706. 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeCollectionController.m; path = common/categoryMenu_RATree/RATreeNodeCollectionController.m; sourceTree = SOURCE_ROOT; };
  707. 7162A52F1C58719D00AB630E /* RATreeNodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeNodeInfo.h; path = common/categoryMenu_RATree/RATreeNodeInfo.h; sourceTree = SOURCE_ROOT; };
  708. 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeNodeInfo.m; path = common/categoryMenu_RATree/RATreeNodeInfo.m; sourceTree = SOURCE_ROOT; };
  709. 7162A5311C58719D00AB630E /* RATreeNodeInfo+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeNodeInfo+Private.h"; path = "common/categoryMenu_RATree/RATreeNodeInfo+Private.h"; sourceTree = SOURCE_ROOT; };
  710. 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeNodeInfo+Private.m"; path = "common/categoryMenu_RATree/RATreeNodeInfo+Private.m"; sourceTree = SOURCE_ROOT; };
  711. 7162A5331C58719D00AB630E /* RATreeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RATreeView.h; path = common/categoryMenu_RATree/RATreeView.h; sourceTree = SOURCE_ROOT; };
  712. 7162A5341C58719D00AB630E /* RATreeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RATreeView.m; path = common/categoryMenu_RATree/RATreeView.m; sourceTree = SOURCE_ROOT; };
  713. 7162A5351C58719D00AB630E /* RATreeView+Enums.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+Enums.h"; path = "common/categoryMenu_RATree/RATreeView+Enums.h"; sourceTree = SOURCE_ROOT; };
  714. 7162A5361C58719D00AB630E /* RATreeView+Enums.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+Enums.m"; path = "common/categoryMenu_RATree/RATreeView+Enums.m"; sourceTree = SOURCE_ROOT; };
  715. 7162A5371C58719D00AB630E /* RATreeView+Private.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+Private.h"; path = "common/categoryMenu_RATree/RATreeView+Private.h"; sourceTree = SOURCE_ROOT; };
  716. 7162A5381C58719D00AB630E /* RATreeView+Private.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+Private.m"; path = "common/categoryMenu_RATree/RATreeView+Private.m"; sourceTree = SOURCE_ROOT; };
  717. 7162A5391C58719D00AB630E /* RATreeView+TableViewDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+TableViewDataSource.h"; path = "common/categoryMenu_RATree/RATreeView+TableViewDataSource.h"; sourceTree = SOURCE_ROOT; };
  718. 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+TableViewDataSource.m"; path = "common/categoryMenu_RATree/RATreeView+TableViewDataSource.m"; sourceTree = SOURCE_ROOT; };
  719. 7162A53B1C58719D00AB630E /* RATreeView+TableViewDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+TableViewDelegate.h"; path = "common/categoryMenu_RATree/RATreeView+TableViewDelegate.h"; sourceTree = SOURCE_ROOT; };
  720. 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+TableViewDelegate.m"; path = "common/categoryMenu_RATree/RATreeView+TableViewDelegate.m"; sourceTree = SOURCE_ROOT; };
  721. 7162A53D1C58719D00AB630E /* RATreeView+UIScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "RATreeView+UIScrollView.h"; path = "common/categoryMenu_RATree/RATreeView+UIScrollView.h"; sourceTree = SOURCE_ROOT; };
  722. 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "RATreeView+UIScrollView.m"; path = "common/categoryMenu_RATree/RATreeView+UIScrollView.m"; sourceTree = SOURCE_ROOT; };
  723. 7162A53F1C58719D00AB630E /* RAViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RAViewController.h; path = common/categoryMenu_RATree/RAViewController.h; sourceTree = SOURCE_ROOT; };
  724. 7162A5401C58719D00AB630E /* RAViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RAViewController.m; path = common/categoryMenu_RATree/RAViewController.m; sourceTree = SOURCE_ROOT; };
  725. 7162A54C1C58722200AB630E /* CreditCardEditorViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreditCardEditorViewController.h; path = common/Functions/creditcard/CreditCardEditorViewController.h; sourceTree = SOURCE_ROOT; };
  726. 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreditCardEditorViewController.m; path = common/Functions/creditcard/CreditCardEditorViewController.m; sourceTree = SOURCE_ROOT; };
  727. 7162A54F1C58724700AB630E /* ContactAdvanceSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactAdvanceSearchViewController.h; path = common/Functions/contact/ContactAdvanceSearchViewController.h; sourceTree = SOURCE_ROOT; };
  728. 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactAdvanceSearchViewController.m; path = common/Functions/contact/ContactAdvanceSearchViewController.m; sourceTree = SOURCE_ROOT; };
  729. 7162A5511C58724700AB630E /* ContactListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListTableViewCell.h; path = common/Functions/contact/ContactListTableViewCell.h; sourceTree = SOURCE_ROOT; };
  730. 7162A5521C58724700AB630E /* ContactListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListTableViewCell.m; path = common/Functions/contact/ContactListTableViewCell.m; sourceTree = SOURCE_ROOT; };
  731. 7162A5531C58724700AB630E /* ContactListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ContactListViewController.h; path = common/Functions/contact/ContactListViewController.h; sourceTree = SOURCE_ROOT; };
  732. 7162A5541C58724700AB630E /* ContactListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ContactListViewController.m; path = common/Functions/contact/ContactListViewController.m; sourceTree = SOURCE_ROOT; };
  733. 7162A5551C58724700AB630E /* 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 = SOURCE_ROOT; };
  734. 7162A5561C58724700AB630E /* 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 = SOURCE_ROOT; };
  735. 7162A5571C58724700AB630E /* CustomerEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerEditViewController.h; path = common/Functions/contact/CustomerEditViewController.h; sourceTree = SOURCE_ROOT; };
  736. 7162A5581C58724700AB630E /* CustomerEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerEditViewController.m; path = common/Functions/contact/CustomerEditViewController.m; sourceTree = SOURCE_ROOT; };
  737. 7162A5591C58724700AB630E /* CustomerInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomerInfoViewController.h; path = common/Functions/contact/CustomerInfoViewController.h; sourceTree = SOURCE_ROOT; };
  738. 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CustomerInfoViewController.m; path = common/Functions/contact/CustomerInfoViewController.m; sourceTree = SOURCE_ROOT; };
  739. 7162A5621C58728D00AB630E /* DetailHeaderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailHeaderCell.h; path = common/Functions/modelDetail/DetailHeaderCell.h; sourceTree = SOURCE_ROOT; };
  740. 7162A5631C58728D00AB630E /* DetailHeaderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailHeaderCell.m; path = common/Functions/modelDetail/DetailHeaderCell.m; sourceTree = SOURCE_ROOT; };
  741. 7162A5641C58728D00AB630E /* DetailImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailImageCell.h; path = common/Functions/modelDetail/DetailImageCell.h; sourceTree = SOURCE_ROOT; };
  742. 7162A5651C58728D00AB630E /* DetailImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailImageCell.m; path = common/Functions/modelDetail/DetailImageCell.m; sourceTree = SOURCE_ROOT; };
  743. 7162A5661C58728D00AB630E /* DetailKVCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailKVCell.h; path = common/Functions/modelDetail/DetailKVCell.h; sourceTree = SOURCE_ROOT; };
  744. 7162A5671C58728D00AB630E /* DetailKVCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailKVCell.m; path = common/Functions/modelDetail/DetailKVCell.m; sourceTree = SOURCE_ROOT; };
  745. 7162A5681C58728D00AB630E /* DetailTopicCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailTopicCell.h; path = common/Functions/modelDetail/DetailTopicCell.h; sourceTree = SOURCE_ROOT; };
  746. 7162A5691C58728D00AB630E /* DetailTopicCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailTopicCell.m; path = common/Functions/modelDetail/DetailTopicCell.m; sourceTree = SOURCE_ROOT; };
  747. 7162A56A1C58728D00AB630E /* DetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailViewController.h; path = common/Functions/modelDetail/DetailViewController.h; sourceTree = SOURCE_ROOT; };
  748. 7162A56B1C58728D00AB630E /* DetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailViewController.m; path = common/Functions/modelDetail/DetailViewController.m; sourceTree = SOURCE_ROOT; };
  749. 7162A56C1C58728D00AB630E /* LineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LineView.h; path = common/Functions/modelDetail/LineView.h; sourceTree = SOURCE_ROOT; };
  750. 7162A56D1C58728D00AB630E /* LineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LineView.m; path = common/Functions/modelDetail/LineView.m; sourceTree = SOURCE_ROOT; };
  751. 7162A5771C5872EF00AB630E /* HomeTableViewCellBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellBanner.h; path = common/Functions/home/HomeTableViewCellBanner.h; sourceTree = SOURCE_ROOT; };
  752. 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellBanner.m; path = common/Functions/home/HomeTableViewCellBanner.m; sourceTree = SOURCE_ROOT; };
  753. 7162A5791C5872EF00AB630E /* HomeTableViewCellButtonBanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellButtonBanner.h; path = common/Functions/home/HomeTableViewCellButtonBanner.h; sourceTree = SOURCE_ROOT; };
  754. 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellButtonBanner.m; path = common/Functions/home/HomeTableViewCellButtonBanner.m; sourceTree = SOURCE_ROOT; };
  755. 7162A57B1C5872EF00AB630E /* HomeTableViewCellSlide.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellSlide.h; path = common/Functions/home/HomeTableViewCellSlide.h; sourceTree = SOURCE_ROOT; };
  756. 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellSlide.m; path = common/Functions/home/HomeTableViewCellSlide.m; sourceTree = SOURCE_ROOT; };
  757. 7162A57D1C5872EF00AB630E /* HomeTableViewCellTopic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeTableViewCellTopic.h; path = common/Functions/home/HomeTableViewCellTopic.h; sourceTree = SOURCE_ROOT; };
  758. 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeTableViewCellTopic.m; path = common/Functions/home/HomeTableViewCellTopic.m; sourceTree = SOURCE_ROOT; };
  759. 7162A57F1C5872EF00AB630E /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HomeViewController.h; path = common/Functions/home/HomeViewController.h; sourceTree = SOURCE_ROOT; };
  760. 7162A5801C5872EF00AB630E /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HomeViewController.m; path = common/Functions/home/HomeViewController.m; sourceTree = SOURCE_ROOT; };
  761. 7162A5861C58733400AB630E /* CreateOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CreateOrderViewController.h; path = common/Functions/order/CreateOrderViewController.h; sourceTree = SOURCE_ROOT; };
  762. 7162A5871C58733400AB630E /* CreateOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CreateOrderViewController.m; path = common/Functions/order/CreateOrderViewController.m; sourceTree = SOURCE_ROOT; };
  763. 7162A5881C58733400AB630E /* OrderDetailHtmlCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailHtmlCell.h; path = common/Functions/order/OrderDetailHtmlCell.h; sourceTree = SOURCE_ROOT; };
  764. 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailHtmlCell.m; path = common/Functions/order/OrderDetailHtmlCell.m; sourceTree = SOURCE_ROOT; };
  765. 7162A58A1C58733400AB630E /* OrderDetailInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailInfoCell.h; path = common/Functions/order/OrderDetailInfoCell.h; sourceTree = SOURCE_ROOT; };
  766. 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailInfoCell.m; path = common/Functions/order/OrderDetailInfoCell.m; sourceTree = SOURCE_ROOT; };
  767. 7162A58C1C58733400AB630E /* OrderDetailModelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailModelCell.h; path = common/Functions/order/OrderDetailModelCell.h; sourceTree = SOURCE_ROOT; };
  768. 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailModelCell.m; path = common/Functions/order/OrderDetailModelCell.m; sourceTree = SOURCE_ROOT; };
  769. 7162A58E1C58733400AB630E /* OrderDetailPriceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailPriceCell.h; path = common/Functions/order/OrderDetailPriceCell.h; sourceTree = SOURCE_ROOT; };
  770. 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailPriceCell.m; path = common/Functions/order/OrderDetailPriceCell.m; sourceTree = SOURCE_ROOT; };
  771. 7162A5901C58733400AB630E /* OrderDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderDetailViewController.h; path = common/Functions/order/OrderDetailViewController.h; sourceTree = SOURCE_ROOT; };
  772. 7162A5911C58733400AB630E /* OrderDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderDetailViewController.m; path = common/Functions/order/OrderDetailViewController.m; sourceTree = SOURCE_ROOT; };
  773. 7162A5921C58733400AB630E /* OrderListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListTableViewCell.h; path = common/Functions/order/OrderListTableViewCell.h; sourceTree = SOURCE_ROOT; };
  774. 7162A5931C58733400AB630E /* OrderListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListTableViewCell.m; path = common/Functions/order/OrderListTableViewCell.m; sourceTree = SOURCE_ROOT; };
  775. 7162A5941C58733400AB630E /* OrderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OrderListViewController.h; path = common/Functions/order/OrderListViewController.h; sourceTree = SOURCE_ROOT; };
  776. 7162A5951C58733400AB630E /* OrderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OrderListViewController.m; path = common/Functions/order/OrderListViewController.m; sourceTree = SOURCE_ROOT; };
  777. 7162A5961C58733400AB630E /* 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 = SOURCE_ROOT; };
  778. 7162A5971C58733400AB630E /* 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; };
  779. 7162A5A61C58735900AB630E /* PortfolioViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioViewController.h; path = common/Functions/portfolio/PortfolioViewController.h; sourceTree = SOURCE_ROOT; };
  780. 7162A5A71C58735900AB630E /* PortfolioViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioViewController.m; path = common/Functions/portfolio/PortfolioViewController.m; sourceTree = SOURCE_ROOT; };
  781. 7162A5A81C58735900AB630E /* TearSheetParamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TearSheetParamViewController.h; path = common/Functions/portfolio/TearSheetParamViewController.h; sourceTree = SOURCE_ROOT; };
  782. 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TearSheetParamViewController.m; path = common/Functions/portfolio/TearSheetParamViewController.m; sourceTree = SOURCE_ROOT; };
  783. 7162A5AE1C58738600AB630E /* ScannerControllerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerControllerView.h; path = common/Functions/camscan/ScannerControllerView.h; sourceTree = SOURCE_ROOT; };
  784. 7162A5AF1C58738600AB630E /* ScannerControllerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerControllerView.m; path = common/Functions/camscan/ScannerControllerView.m; sourceTree = SOURCE_ROOT; };
  785. 7162A5B01C58738600AB630E /* ScannerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerViewController.h; path = common/Functions/camscan/ScannerViewController.h; sourceTree = SOURCE_ROOT; };
  786. 7162A5B11C58738600AB630E /* ScannerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerViewController.m; path = common/Functions/camscan/ScannerViewController.m; sourceTree = SOURCE_ROOT; };
  787. 7162A5B21C58738600AB630E /* SCShapeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SCShapeView.h; path = common/Functions/camscan/SCShapeView.h; sourceTree = SOURCE_ROOT; };
  788. 7162A5B31C58738600AB630E /* SCShapeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SCShapeView.m; path = common/Functions/camscan/SCShapeView.m; sourceTree = SOURCE_ROOT; };
  789. 7162A5B71C5873BB00AB630E /* FilterCellCadedate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellCadedate.h; path = "common/Functions/search+itemsearch/FilterCellCadedate.h"; sourceTree = SOURCE_ROOT; };
  790. 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellCadedate.m; path = "common/Functions/search+itemsearch/FilterCellCadedate.m"; sourceTree = SOURCE_ROOT; };
  791. 7162A5B91C5873BB00AB630E /* FilterCellValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FilterCellValue.h; path = "common/Functions/search+itemsearch/FilterCellValue.h"; sourceTree = SOURCE_ROOT; };
  792. 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FilterCellValue.m; path = "common/Functions/search+itemsearch/FilterCellValue.m"; sourceTree = SOURCE_ROOT; };
  793. 7162A5BB1C5873BB00AB630E /* ItemSearchFilterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchFilterViewController.h; path = "common/Functions/search+itemsearch/ItemSearchFilterViewController.h"; sourceTree = SOURCE_ROOT; };
  794. 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchFilterViewController.m; path = "common/Functions/search+itemsearch/ItemSearchFilterViewController.m"; sourceTree = SOURCE_ROOT; };
  795. 7162A5BD1C5873BB00AB630E /* ItemSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ItemSearchViewController.h; path = "common/Functions/search+itemsearch/ItemSearchViewController.h"; sourceTree = SOURCE_ROOT; };
  796. 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ItemSearchViewController.m; path = "common/Functions/search+itemsearch/ItemSearchViewController.m"; sourceTree = SOURCE_ROOT; };
  797. 7162A5BF1C5873BB00AB630E /* SearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SearchViewController.h; path = "common/Functions/search+itemsearch/SearchViewController.h"; sourceTree = SOURCE_ROOT; };
  798. 7162A5C01C5873BB00AB630E /* SearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SearchViewController.m; path = "common/Functions/search+itemsearch/SearchViewController.m"; sourceTree = SOURCE_ROOT; };
  799. 7162A5C61C58761500AB630E /* SignatureView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureView.h; path = common/Functions/signature/SignatureView.h; sourceTree = SOURCE_ROOT; };
  800. 7162A5C71C58761500AB630E /* SignatureView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureView.m; path = common/Functions/signature/SignatureView.m; sourceTree = SOURCE_ROOT; };
  801. 7162A5C81C58761500AB630E /* SignatureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SignatureViewController.h; path = common/Functions/signature/SignatureViewController.h; sourceTree = SOURCE_ROOT; };
  802. 7162A5C91C58761500AB630E /* SignatureViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SignatureViewController.m; path = common/Functions/signature/SignatureViewController.m; sourceTree = SOURCE_ROOT; };
  803. 7162A5CC1C5876E300AB630E /* AboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutViewController.h; path = common/Functions/sidemenu/AboutViewController.h; sourceTree = SOURCE_ROOT; };
  804. 7162A5CD1C5876E300AB630E /* AboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutViewController.m; path = common/Functions/sidemenu/AboutViewController.m; sourceTree = SOURCE_ROOT; };
  805. 7162A5CE1C5876E300AB630E /* CacheViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CacheViewController.h; path = common/Functions/sidemenu/CacheViewController.h; sourceTree = SOURCE_ROOT; };
  806. 7162A5CF1C5876E300AB630E /* CacheViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CacheViewController.m; path = common/Functions/sidemenu/CacheViewController.m; sourceTree = SOURCE_ROOT; };
  807. 7162A5D01C5876E300AB630E /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = LoginViewController.h; path = common/Functions/sidemenu/LoginViewController.h; sourceTree = SOURCE_ROOT; };
  808. 7162A5D11C5876E300AB630E /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = LoginViewController.m; path = common/Functions/sidemenu/LoginViewController.m; sourceTree = SOURCE_ROOT; };
  809. 7162A5D21C5876E300AB630E /* PopupNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PopupNavigationController.h; path = common/Functions/sidemenu/PopupNavigationController.h; sourceTree = SOURCE_ROOT; };
  810. 7162A5D31C5876E300AB630E /* PopupNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PopupNavigationController.m; path = common/Functions/sidemenu/PopupNavigationController.m; sourceTree = SOURCE_ROOT; };
  811. 7162A5D41C5876E300AB630E /* RetrievePassViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RetrievePassViewController.h; path = common/Functions/sidemenu/RetrievePassViewController.h; sourceTree = SOURCE_ROOT; };
  812. 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RetrievePassViewController.m; path = common/Functions/sidemenu/RetrievePassViewController.m; sourceTree = SOURCE_ROOT; };
  813. 7162A5D61C5876E300AB630E /* ScannerSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ScannerSettingViewController.h; path = common/Functions/sidemenu/ScannerSettingViewController.h; sourceTree = SOURCE_ROOT; };
  814. 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ScannerSettingViewController.m; path = common/Functions/sidemenu/ScannerSettingViewController.m; sourceTree = SOURCE_ROOT; };
  815. 7162A5D81C5876E300AB630E /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingViewController.h; path = common/Functions/sidemenu/SettingViewController.h; sourceTree = SOURCE_ROOT; };
  816. 7162A5D91C5876E300AB630E /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingViewController.m; path = common/Functions/sidemenu/SettingViewController.m; sourceTree = SOURCE_ROOT; };
  817. 7162A5E11C5877CE00AB630E /* WatchListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WatchListViewController.h; path = common/Functions/watchlist/WatchListViewController.h; sourceTree = SOURCE_ROOT; };
  818. 7162A5E21C5877CE00AB630E /* WatchListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WatchListViewController.m; path = common/Functions/watchlist/WatchListViewController.m; sourceTree = SOURCE_ROOT; };
  819. 7162A5E41C58781000AB630E /* iSalesNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesNavigationController.h; path = common/iSalesNavigationController.h; sourceTree = SOURCE_ROOT; };
  820. 7162A5E51C58781000AB630E /* iSalesNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesNavigationController.m; path = common/iSalesNavigationController.m; sourceTree = SOURCE_ROOT; };
  821. 716387D3195408E7006E65E6 /* config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; };
  822. 7165662C1EF3ACD900CB897F /* photostack_image.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = photostack_image.html; path = common/photoStack/photostack_image.html; sourceTree = SOURCE_ROOT; };
  823. 7165662D1EF3ACD900CB897F /* photostack_video.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = photostack_video.html; path = common/photoStack/photostack_video.html; sourceTree = SOURCE_ROOT; };
  824. 716961B419594E1000B19FB4 /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
  825. 716AF8DF1D7AA0E0001188E0 /* SelectUploadOrderViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectUploadOrderViewController.h; path = common/Functions/offline/SelectUploadOrderViewController.h; sourceTree = SOURCE_ROOT; };
  826. 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectUploadOrderViewController.m; path = common/Functions/offline/SelectUploadOrderViewController.m; sourceTree = SOURCE_ROOT; };
  827. 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SelectOrderTableViewCell.m; path = common/Functions/offline/SelectOrderTableViewCell.m; sourceTree = SOURCE_ROOT; };
  828. 716AF8E61D7AA398001188E0 /* SelectOrderTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SelectOrderTableViewCell.h; path = common/Functions/offline/SelectOrderTableViewCell.h; sourceTree = SOURCE_ROOT; };
  829. 7186C25B1C97A6EE00CB43F4 /* FunctionTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FunctionTestViewController.h; path = common/Functions/sidemenu/FunctionTestViewController.h; sourceTree = SOURCE_ROOT; };
  830. 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FunctionTestViewController.m; path = common/Functions/sidemenu/FunctionTestViewController.m; sourceTree = SOURCE_ROOT; };
  831. 718716221C433D5000F25860 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = ../lib/libScanApiCore.a; sourceTree = "<group>"; };
  832. 718716241C433D8B00F25860 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
  833. 718716261C433D9700F25860 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  834. 718716281C433DA400F25860 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  835. 7187162A1C43406300F25860 /* libScanApiCore.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libScanApiCore.a; path = "../../../ios_samples/ScanApiSDK-10.2.227/lib/libScanApiCore.a"; sourceTree = "<group>"; };
  836. 7195623A1CF57D1800C74A49 /* CategoryHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CategoryHeaderView.h; path = common/Functions/category/CategoryHeaderView.h; sourceTree = SOURCE_ROOT; };
  837. 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CategoryHeaderView.m; path = common/Functions/category/CategoryHeaderView.m; sourceTree = SOURCE_ROOT; };
  838. 71BBA2211CEAC16000C91DED /* ZipArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ZipArchive.h; path = common/zip/ZipArchive.h; sourceTree = SOURCE_ROOT; };
  839. 71BBA2221CEAC16000C91DED /* ZipArchive.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = ZipArchive.mm; path = common/zip/ZipArchive.mm; sourceTree = SOURCE_ROOT; };
  840. 71BBA2281CEAC17E00C91DED /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  841. 71BBA2371CEAEF0700C91DED /* crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crypt.h; path = common/zip/minizip/crypt.h; sourceTree = SOURCE_ROOT; };
  842. 71BBA2381CEAEF0700C91DED /* ioapi.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ioapi.c; path = common/zip/minizip/ioapi.c; sourceTree = SOURCE_ROOT; };
  843. 71BBA2391CEAEF0700C91DED /* ioapi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ioapi.h; path = common/zip/minizip/ioapi.h; sourceTree = SOURCE_ROOT; };
  844. 71BBA23A1CEAEF0700C91DED /* mztools.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = mztools.c; path = common/zip/minizip/mztools.c; sourceTree = SOURCE_ROOT; };
  845. 71BBA23B1CEAEF0700C91DED /* mztools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mztools.h; path = common/zip/minizip/mztools.h; sourceTree = SOURCE_ROOT; };
  846. 71BBA23C1CEAEF0700C91DED /* unzip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = unzip.c; path = common/zip/minizip/unzip.c; sourceTree = SOURCE_ROOT; };
  847. 71BBA23D1CEAEF0700C91DED /* unzip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = unzip.h; path = common/zip/minizip/unzip.h; sourceTree = SOURCE_ROOT; };
  848. 71BBA23E1CEAEF0700C91DED /* zip.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zip.c; path = common/zip/minizip/zip.c; sourceTree = SOURCE_ROOT; };
  849. 71BBA23F1CEAEF0700C91DED /* zip.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = zip.h; path = common/zip/minizip/zip.h; sourceTree = SOURCE_ROOT; };
  850. 71BF06F91D2F3CAC00981938 /* OLDataProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OLDataProvider.h; path = common/Functions/offline/OLDataProvider.h; sourceTree = SOURCE_ROOT; };
  851. 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OLDataProvider.m; path = common/Functions/offline/OLDataProvider.m; sourceTree = SOURCE_ROOT; };
  852. 71BF06FC1D2F3CBA00981938 /* OfflineSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OfflineSettingViewController.h; path = common/Functions/offline/OfflineSettingViewController.h; sourceTree = SOURCE_ROOT; };
  853. 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OfflineSettingViewController.m; path = common/Functions/offline/OfflineSettingViewController.m; sourceTree = SOURCE_ROOT; };
  854. 71BF07061D2F3D2800981938 /* SyncControlPanelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SyncControlPanelViewController.h; path = common/Functions/offline/SyncControlPanelViewController.h; sourceTree = SOURCE_ROOT; };
  855. 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SyncControlPanelViewController.m; path = common/Functions/offline/SyncControlPanelViewController.m; sourceTree = SOURCE_ROOT; };
  856. 71C1D84C1F456CAA00CEA1C9 /* HWWeakTimer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HWWeakTimer.h; path = common/AutoScrollImage/HWWeakTimer.h; sourceTree = SOURCE_ROOT; };
  857. 71C1D84D1F456CAA00CEA1C9 /* HWWeakTimer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HWWeakTimer.m; path = common/AutoScrollImage/HWWeakTimer.m; sourceTree = SOURCE_ROOT; };
  858. 71C1D8521F456D2700CEA1C9 /* ModelDescriptionController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModelDescriptionController.h; path = common/Functions/modelDetail/ModelDescriptionController.h; sourceTree = SOURCE_ROOT; };
  859. 71C1D8531F456D2700CEA1C9 /* ModelDescriptionController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModelDescriptionController.m; path = common/Functions/modelDetail/ModelDescriptionController.m; sourceTree = SOURCE_ROOT; };
  860. 71CB70731F99DF01009FDCB7 /* FileCache.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = FileCache.m; path = ../../common/FileCache.m; sourceTree = "<group>"; };
  861. 71CB70741F99DF02009FDCB7 /* FileCache.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FileCache.h; path = ../../common/FileCache.h; sourceTree = "<group>"; };
  862. 71CB70761F99E337009FDCB7 /* RAConvertor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RAConvertor.h; path = ../../common/RAConvertor.h; sourceTree = "<group>"; };
  863. 71CB70771F99E338009FDCB7 /* RAConvertor.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RAConvertor.m; path = ../../common/RAConvertor.m; sourceTree = "<group>"; };
  864. 71D01ADC1E08CB1C006620CE /* signature.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = signature.storyboard; path = common/Functions/signature/signature.storyboard; sourceTree = SOURCE_ROOT; };
  865. 71D01B141E0A2055006620CE /* ImageUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageUtils.h; path = common/ImageUtils.h; sourceTree = SOURCE_ROOT; };
  866. 71D01B151E0A2055006620CE /* ImageUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageUtils.m; path = common/ImageUtils.m; sourceTree = SOURCE_ROOT; };
  867. 71D01B161E0A2055006620CE /* PDFUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PDFUtils.h; path = common/PDFUtils.h; sourceTree = SOURCE_ROOT; };
  868. 71D01B171E0A2055006620CE /* PDFUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PDFUtils.m; path = common/PDFUtils.m; sourceTree = SOURCE_ROOT; };
  869. 71D01B181E0A2055006620CE /* TextUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TextUtils.h; path = common/TextUtils.h; sourceTree = SOURCE_ROOT; };
  870. 71D01B191E0A2055006620CE /* TextUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TextUtils.m; path = common/TextUtils.m; sourceTree = SOURCE_ROOT; };
  871. 71D0344D1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PortfolioEditQTYViewController.h; path = common/Functions/portfolio/PortfolioEditQTYViewController.h; sourceTree = SOURCE_ROOT; };
  872. 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PortfolioEditQTYViewController.m; path = common/Functions/portfolio/PortfolioEditQTYViewController.m; sourceTree = SOURCE_ROOT; };
  873. 71D30A201CFBEDC6006F9477 /* default_appearance.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = default_appearance.json; sourceTree = "<group>"; };
  874. 71D30A2B1CFC0EF8006F9477 /* DefaultImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DefaultImageButton.h; path = common/Functions/DefaultImageButton.h; sourceTree = SOURCE_ROOT; };
  875. 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DefaultImageButton.m; path = common/Functions/DefaultImageButton.m; sourceTree = SOURCE_ROOT; };
  876. 71DEE873192DE003003F645F /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  877. 71DEE875192DE00E003F645F /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  878. 71DF74291C57560600F2789C /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = common/Reachability.h; sourceTree = SOURCE_ROOT; };
  879. 71DF742A1C57560600F2789C /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = common/Reachability.m; sourceTree = SOURCE_ROOT; };
  880. 71DF74321C5757DA00F2789C /* ActiveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ActiveViewController.h; path = common/ActiveViewController.h; sourceTree = SOURCE_ROOT; };
  881. 71DF74331C5757DA00F2789C /* ActiveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ActiveViewController.m; path = common/ActiveViewController.m; sourceTree = SOURCE_ROOT; };
  882. 71DF746B1C57608F00F2789C /* ImageScrollerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerView.h; path = common/customUI/ImageScrollerView.h; sourceTree = SOURCE_ROOT; };
  883. 71DF746C1C57608F00F2789C /* ImageScrollerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerView.m; path = common/customUI/ImageScrollerView.m; sourceTree = SOURCE_ROOT; };
  884. 71DF746D1C57608F00F2789C /* ImageScrollerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageScrollerViewController.h; path = common/customUI/ImageScrollerViewController.h; sourceTree = SOURCE_ROOT; };
  885. 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageScrollerViewController.m; path = common/customUI/ImageScrollerViewController.m; sourceTree = SOURCE_ROOT; };
  886. 71DF746F1C57608F00F2789C /* ImageUploadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageUploadViewController.h; path = common/customUI/ImageUploadViewController.h; sourceTree = SOURCE_ROOT; };
  887. 71DF74701C57608F00F2789C /* ImageUploadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageUploadViewController.m; path = common/customUI/ImageUploadViewController.m; sourceTree = SOURCE_ROOT; };
  888. 71DF74711C57608F00F2789C /* ImageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ImageViewController.h; path = common/customUI/ImageViewController.h; sourceTree = SOURCE_ROOT; };
  889. 71DF74721C57608F00F2789C /* ImageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ImageViewController.m; path = common/customUI/ImageViewController.m; sourceTree = SOURCE_ROOT; };
  890. 71DF74731C57608F00F2789C /* NIDropDown.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = NIDropDown.h; path = common/customUI/NIDropDown.h; sourceTree = SOURCE_ROOT; };
  891. 71DF74741C57608F00F2789C /* NIDropDown.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = NIDropDown.m; path = common/customUI/NIDropDown.m; sourceTree = SOURCE_ROOT; };
  892. 71DF74751C57608F00F2789C /* PulldownMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PulldownMenu.h; path = common/customUI/PulldownMenu.h; sourceTree = SOURCE_ROOT; };
  893. 71DF74761C57608F00F2789C /* PulldownMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PulldownMenu.m; path = common/customUI/PulldownMenu.m; sourceTree = SOURCE_ROOT; };
  894. 71DF74771C57608F00F2789C /* RadioButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RadioButton.h; path = common/customUI/RadioButton.h; sourceTree = SOURCE_ROOT; };
  895. 71DF74781C57608F00F2789C /* RadioButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RadioButton.m; path = common/customUI/RadioButton.m; sourceTree = SOURCE_ROOT; };
  896. 71DF747B1C57608F00F2789C /* SimpleGrid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SimpleGrid.h; path = common/customUI/SimpleGrid.h; sourceTree = SOURCE_ROOT; };
  897. 71DF747C1C57608F00F2789C /* SimpleGrid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SimpleGrid.m; path = common/customUI/SimpleGrid.m; sourceTree = SOURCE_ROOT; };
  898. 71DF747F1C57608F00F2789C /* TouchLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TouchLabel.h; path = common/customUI/TouchLabel.h; sourceTree = SOURCE_ROOT; };
  899. 71DF74801C57608F00F2789C /* TouchLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TouchLabel.m; path = common/customUI/TouchLabel.m; sourceTree = SOURCE_ROOT; };
  900. 71DF74811C57608F00F2789C /* UILabel+FontAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UILabel+FontAppearance.h"; path = "common/customUI/UILabel+FontAppearance.h"; sourceTree = SOURCE_ROOT; };
  901. 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UILabel+FontAppearance.m"; path = "common/customUI/UILabel+FontAppearance.m"; sourceTree = SOURCE_ROOT; };
  902. 71DF748F1C57614C00F2789C /* PhotoBorder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = PhotoBorder.png; path = common/photoStack/PhotoBorder.png; sourceTree = SOURCE_ROOT; };
  903. 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "PhotoBorder@2x.png"; path = "common/photoStack/PhotoBorder@2x.png"; sourceTree = SOURCE_ROOT; };
  904. 71DF74911C57614C00F2789C /* PhotoStackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackView.h; path = common/photoStack/PhotoStackView.h; sourceTree = SOURCE_ROOT; };
  905. 71DF74921C57614C00F2789C /* PhotoStackView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackView.m; path = common/photoStack/PhotoStackView.m; sourceTree = SOURCE_ROOT; };
  906. 71DF74931C57614C00F2789C /* PhotoStackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhotoStackViewController.h; path = common/photoStack/PhotoStackViewController.h; sourceTree = SOURCE_ROOT; };
  907. 71DF74941C57614C00F2789C /* PhotoStackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhotoStackViewController.m; path = common/photoStack/PhotoStackViewController.m; sourceTree = SOURCE_ROOT; };
  908. 71E5A00F1DC99370005BF655 /* config.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = config.plist; sourceTree = "<group>"; };
  909. 71E9F6BA1F8B52DC0052C78E /* NetworkUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = NetworkUtils.m; path = ../../common/NetworkUtils.m; sourceTree = "<group>"; };
  910. 71E9F6BB1F8B52DC0052C78E /* NetworkUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = NetworkUtils.h; path = ../../common/NetworkUtils.h; sourceTree = "<group>"; };
  911. 71E9F6C01F8B57E30052C78E /* RANetworkTaskDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = RANetworkTaskDelegate.m; path = ../../common/upload/RANetworkTaskDelegate.m; sourceTree = "<group>"; };
  912. 71E9F6C11F8B57E40052C78E /* RANetworkTaskDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RANetworkTaskDelegate.h; path = ../../common/upload/RANetworkTaskDelegate.h; sourceTree = "<group>"; };
  913. 71FFBBE51C60894900D91DC2 /* iSalesDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iSalesDB.h; path = common/data_provider/iSalesDB.h; sourceTree = SOURCE_ROOT; };
  914. 71FFBBE61C60894900D91DC2 /* iSalesDB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iSalesDB.m; path = common/data_provider/iSalesDB.m; sourceTree = SOURCE_ROOT; };
  915. 71FFBBE71C60894900D91DC2 /* RANetwork.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RANetwork.h; path = common/data_provider/RANetwork.h; sourceTree = SOURCE_ROOT; };
  916. 71FFBBE81C60894900D91DC2 /* RANetwork.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RANetwork.m; path = common/data_provider/RANetwork.m; sourceTree = SOURCE_ROOT; };
  917. /* End PBXFileReference section */
  918. /* Begin PBXFrameworksBuildPhase section */
  919. 713F76A31929F4A7006A7305 /* Frameworks */ = {
  920. isa = PBXFrameworksBuildPhase;
  921. buildActionMask = 2147483647;
  922. files = (
  923. 42D9A0231EB02DA6008AF7AF /* AdSupport.framework in Frameworks */,
  924. 42BEF35F1E89FEE300632AB6 /* CoreData.framework in Frameworks */,
  925. 42BEF35D1E89FECD00632AB6 /* SystemConfiguration.framework in Frameworks */,
  926. 3CB44F1028733D6D00E24494 /* libScanApiCore.a in Frameworks */,
  927. 71BBA2291CEAC17E00C91DED /* libz.tbd in Frameworks */,
  928. 718716291C433DA400F25860 /* AVFoundation.framework in Frameworks */,
  929. 718716271C433D9700F25860 /* AudioToolbox.framework in Frameworks */,
  930. 718716251C433D8B00F25860 /* ExternalAccessory.framework in Frameworks */,
  931. 716961B519594E1000B19FB4 /* libsqlite3.dylib in Frameworks */,
  932. 71DEE876192DE00E003F645F /* Accelerate.framework in Frameworks */,
  933. 71DEE874192DE003003F645F /* QuartzCore.framework in Frameworks */,
  934. 713F76AC1929F4A7006A7305 /* CoreGraphics.framework in Frameworks */,
  935. 713F76AE1929F4A7006A7305 /* UIKit.framework in Frameworks */,
  936. 713F76AA1929F4A7006A7305 /* Foundation.framework in Frameworks */,
  937. );
  938. runOnlyForDeploymentPostprocessing = 0;
  939. };
  940. /* End PBXFrameworksBuildPhase section */
  941. /* Begin PBXGroup section */
  942. 3C23B3E929CD70F9008E7C14 /* MessageBox */ = {
  943. isa = PBXGroup;
  944. children = (
  945. 3C23B3EA29CD70F9008E7C14 /* MessageBox.h */,
  946. 3C23B3EB29CD70F9008E7C14 /* PopWaitAlert.h */,
  947. 3C23B3EC29CD70F9008E7C14 /* RAPopviewContainer.h */,
  948. 3C23B3ED29CD70F9008E7C14 /* PopWaitAlert.m */,
  949. 3C23B3EE29CD70F9008E7C14 /* MessageBox.m */,
  950. 3C23B3EF29CD70F9008E7C14 /* RAPopviewContainer.m */,
  951. );
  952. path = MessageBox;
  953. sourceTree = "<group>";
  954. };
  955. 3C514975273E07C400F78617 /* EnumSelectAndSort\ */ = {
  956. isa = PBXGroup;
  957. children = (
  958. 3C514978273E07D500F78617 /* EnumModel.h */,
  959. 3C51497C273E07D600F78617 /* EnumModel.m */,
  960. 3C514976273E07D500F78617 /* EnumSelectAndSort.storyboard */,
  961. 3C514977273E07D500F78617 /* EnumSelectAndSortCell.h */,
  962. 3C51497A273E07D500F78617 /* EnumSelectAndSortCell.m */,
  963. 3C51497B273E07D500F78617 /* EnumSelectAndSortViewController.h */,
  964. 3C514979273E07D500F78617 /* EnumSelectAndSortViewController.m */,
  965. );
  966. name = "EnumSelectAndSort\\";
  967. sourceTree = "<group>";
  968. };
  969. 3C514987273E091500F78617 /* PhotoList */ = {
  970. isa = PBXGroup;
  971. children = (
  972. 3C514988273E091500F78617 /* Storyboard */,
  973. 3C51498A273E091500F78617 /* Controller */,
  974. 3C51498D273E091500F78617 /* View */,
  975. );
  976. name = PhotoList;
  977. path = ../../common/customUI/PhotoList;
  978. sourceTree = "<group>";
  979. };
  980. 3C514988273E091500F78617 /* Storyboard */ = {
  981. isa = PBXGroup;
  982. children = (
  983. 3C514989273E091500F78617 /* PhotoList.storyboard */,
  984. );
  985. path = Storyboard;
  986. sourceTree = "<group>";
  987. };
  988. 3C51498A273E091500F78617 /* Controller */ = {
  989. isa = PBXGroup;
  990. children = (
  991. 3C51498B273E091500F78617 /* ContentPreviewController.m */,
  992. 3C51498C273E091500F78617 /* ContentPreviewController.h */,
  993. );
  994. path = Controller;
  995. sourceTree = "<group>";
  996. };
  997. 3C51498D273E091500F78617 /* View */ = {
  998. isa = PBXGroup;
  999. children = (
  1000. 3C51498E273E091500F78617 /* VideoPreviewCell.m */,
  1001. 3C51498F273E091500F78617 /* PhotoPreviewCell.h */,
  1002. 3C514990273E091500F78617 /* PhotoPreviewCell.m */,
  1003. 3C514991273E091500F78617 /* VideoPreviewCell.h */,
  1004. );
  1005. path = View;
  1006. sourceTree = "<group>";
  1007. };
  1008. 3C514996273E097B00F78617 /* HUD */ = {
  1009. isa = PBXGroup;
  1010. children = (
  1011. 3C514997273E097B00F78617 /* RAProgressHUD.h */,
  1012. 3C514998273E097B00F78617 /* RAProgressHUD.m */,
  1013. );
  1014. name = HUD;
  1015. path = ../../common/HUD;
  1016. sourceTree = "<group>";
  1017. };
  1018. 3C51E7C127B261EC00E61163 /* upload */ = {
  1019. isa = PBXGroup;
  1020. children = (
  1021. 3C51E7C327B261EC00E61163 /* RAUploadOperation.m */,
  1022. 3C51E7C427B261EC00E61163 /* RAUploadManager.h */,
  1023. 3C51E7C527B261EC00E61163 /* RAUploadListViewController.m */,
  1024. 3C51E7C727B261EC00E61163 /* RAUploadOperation.h */,
  1025. 3C51E7C827B261EC00E61163 /* RAUploadManager.m */,
  1026. 3C51E7C927B261EC00E61163 /* RAUploadListViewController.h */,
  1027. );
  1028. name = upload;
  1029. path = ../../common/upload;
  1030. sourceTree = "<group>";
  1031. };
  1032. 3C7D31F127882A5F005EB380 /* OLO */ = {
  1033. isa = PBXGroup;
  1034. children = (
  1035. 3C51E7D127B2628900E61163 /* UIView+Toast.h */,
  1036. 3C51E7D227B2628900E61163 /* UIView+Toast.m */,
  1037. 3C51E7C127B261EC00E61163 /* upload */,
  1038. 3CF33C8927BF4936001CBEEC /* ServerSettingViewController.h */,
  1039. 3CF33C8A27BF4936001CBEEC /* ServerSettingViewController.m */,
  1040. 3CABBF112836224400FA3352 /* guest.json */,
  1041. 3C872A1D27955CF300BE1FC8 /* scan_cart.json */,
  1042. 3C872A252797FE7C00BE1FC8 /* scan_order.json */,
  1043. 3C51E7BB27B2599E00E61163 /* ScanOrderListViewController.h */,
  1044. 3C51E7BC27B2599E00E61163 /* ScanOrderListViewController.m */,
  1045. 3C51E7CE27B2623700E61163 /* UploadCell.h */,
  1046. 3C51E7CF27B2623700E61163 /* UploadCell.m */,
  1047. 3C473C8F27C4D22900CC8C12 /* ScanUserListViewController.h */,
  1048. 3C473C9027C4D22900CC8C12 /* ScanUserListViewController.m */,
  1049. 3C3A5AFC27D74E4F005F4EFB /* ScanResultViewController.h */,
  1050. 3C3A5AFD27D74E4F005F4EFB /* ScanResultViewController.m */,
  1051. 3C3A5AFF27D74F91005F4EFB /* ScanOrderScanModelViewController.h */,
  1052. 3C3A5B0027D74F91005F4EFB /* ScanOrderScanModelViewController.m */,
  1053. 3C3A5B0227D87BA1005F4EFB /* SO.storyboard */,
  1054. 3C9F81D527F831A500B4C511 /* ScanServerListViewController.h */,
  1055. 3C9F81D627F831A500B4C511 /* ScanServerListViewController.m */,
  1056. 3C8855A527E2DB1A005DC3FA /* ScanModelListCell.h */,
  1057. 3C8855A627E2DB1A005DC3FA /* ScanModelListCell.m */,
  1058. 3CF513A327F3FECF004B4818 /* ScanListCell.h */,
  1059. 3CF513A427F3FECF004B4818 /* ScanListCell.m */,
  1060. 3C8855A227E2D9CC005DC3FA /* ScanOrderModelListViewController.h */,
  1061. 3C8855A327E2D9CC005DC3FA /* ScanOrderModelListViewController.m */,
  1062. 3C8855A827E85A0B005DC3FA /* ScanCartItemCell.h */,
  1063. 3C8855A927E85A0C005DC3FA /* ScanCartItemCell.m */,
  1064. 3CF513A027F2FF31004B4818 /* ScanHistoryViewController.h */,
  1065. 3CF513A127F2FF31004B4818 /* ScanHistoryViewController.m */,
  1066. 3CF513A627F437CF004B4818 /* ScanSearchViewController.h */,
  1067. 3CF513A727F437CF004B4818 /* ScanSearchViewController.m */,
  1068. 3C9F81D227F6E04300B4C511 /* SetupServerViewController.h */,
  1069. 3C9F81D327F6E04300B4C511 /* SetupServerViewController.m */,
  1070. 3C16916A27FE7E3000026FE5 /* SignUpViewController.h */,
  1071. 3C16916B27FE7E3000026FE5 /* SignUpViewController.m */,
  1072. 3C16916D280004E000026FE5 /* ChangePasswordViewController.h */,
  1073. 3C16916E280004E000026FE5 /* ChangePasswordViewController.m */,
  1074. 3CD54A77282CF21D0073A15D /* ScanHomeViewController.h */,
  1075. 3CD54A78282CF21D0073A15D /* ScanHomeViewController.m */,
  1076. 3CD54A7A282CF4930073A15D /* ScanHomeCell.h */,
  1077. 3CD54A7B282CF4930073A15D /* ScanHomeCell.m */,
  1078. 3C2D0481285B242800423D97 /* ScanDiscountViewController.h */,
  1079. 3C2D0482285B242800423D97 /* ScanDiscountViewController.m */,
  1080. 3CABE01E2861A51E00CF0DC1 /* StockViewController.h */,
  1081. 3CABE01F2861A51E00CF0DC1 /* StockViewController.m */,
  1082. 3CABE0212861A5E000CF0DC1 /* StockTableViewCell.h */,
  1083. 3CABE0222861A5E000CF0DC1 /* StockTableViewCell.m */,
  1084. 3C2F437928B748E800F50E0E /* PriceGroupListViewController.h */,
  1085. 3C2F437A28B748E800F50E0E /* PriceGroupListViewController.m */,
  1086. );
  1087. name = OLO;
  1088. sourceTree = "<group>";
  1089. };
  1090. 4254CCDB1FB1AB6600C8B4B6 /* Order Editor */ = {
  1091. isa = PBXGroup;
  1092. children = (
  1093. 4254CCDC1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.h */,
  1094. 4254CCDD1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m */,
  1095. );
  1096. name = "Order Editor";
  1097. sourceTree = "<group>";
  1098. };
  1099. 4289800E1E24924D005F1BD8 /* sort */ = {
  1100. isa = PBXGroup;
  1101. children = (
  1102. 4289800F1E24924D005F1BD8 /* SortButton.h */,
  1103. 428980101E24924D005F1BD8 /* SortButton.m */,
  1104. 428980111E24924D005F1BD8 /* SortItemCell.h */,
  1105. 428980121E24924D005F1BD8 /* SortItemCell.m */,
  1106. 428980131E24924D005F1BD8 /* SortItemViewController.h */,
  1107. 428980141E24924D005F1BD8 /* SortItemViewController.m */,
  1108. );
  1109. name = sort;
  1110. path = common/sort;
  1111. sourceTree = SOURCE_ROOT;
  1112. };
  1113. 428980221E2492D2005F1BD8 /* Price Setting */ = {
  1114. isa = PBXGroup;
  1115. children = (
  1116. 428980231E2492D2005F1BD8 /* CategoryPriceCell.h */,
  1117. 428980241E2492D2005F1BD8 /* CategoryPriceCell.m */,
  1118. 428980251E2492D2005F1BD8 /* CategoryPriceViewController.h */,
  1119. 428980261E2492D2005F1BD8 /* CategoryPriceViewController.m */,
  1120. 428980271E2492D2005F1BD8 /* PriceSettingViewController.h */,
  1121. 428980281E2492D2005F1BD8 /* PriceSettingViewController.m */,
  1122. 428980291E2492D2005F1BD8 /* SetCategoryPriceController.h */,
  1123. 4289802A1E2492D2005F1BD8 /* SetCategoryPriceController.m */,
  1124. );
  1125. name = "Price Setting";
  1126. path = "common/Price Setting";
  1127. sourceTree = SOURCE_ROOT;
  1128. };
  1129. 4289803C1E249339005F1BD8 /* JKLock */ = {
  1130. isa = PBXGroup;
  1131. children = (
  1132. 4289803D1E249339005F1BD8 /* JKDotView.h */,
  1133. 4289803E1E249339005F1BD8 /* JKDotView.m */,
  1134. 4289803F1E249339005F1BD8 /* JKLockButton.h */,
  1135. 428980401E249339005F1BD8 /* JKLockButton.m */,
  1136. 428980411E249339005F1BD8 /* JKLockController.h */,
  1137. 428980421E249339005F1BD8 /* JKLockController.m */,
  1138. 428980431E249339005F1BD8 /* JKMessageBoxController.h */,
  1139. 428980441E249339005F1BD8 /* JKMessageBoxController.m */,
  1140. );
  1141. name = JKLock;
  1142. path = common/JKLock;
  1143. sourceTree = SOURCE_ROOT;
  1144. };
  1145. 4289805A1E249375005F1BD8 /* UIColor+HEX */ = {
  1146. isa = PBXGroup;
  1147. children = (
  1148. 4289805B1E249375005F1BD8 /* UIColor+JK_HEX.h */,
  1149. 4289805C1E249375005F1BD8 /* UIColor+JK_HEX.m */,
  1150. );
  1151. name = "UIColor+HEX";
  1152. path = "common/UIColor+HEX";
  1153. sourceTree = SOURCE_ROOT;
  1154. };
  1155. 4289809B1E24B526005F1BD8 /* JKTimer */ = {
  1156. isa = PBXGroup;
  1157. children = (
  1158. 4289809C1E24B526005F1BD8 /* JKTimerManager.h */,
  1159. 4289809D1E24B526005F1BD8 /* JKTimerManager.m */,
  1160. );
  1161. name = JKTimer;
  1162. path = common/JKTimer;
  1163. sourceTree = SOURCE_ROOT;
  1164. };
  1165. 4295AE181FE74D26007BE365 /* AutoComplete */ = {
  1166. isa = PBXGroup;
  1167. children = (
  1168. 4295AE191FE74D46007BE365 /* CommonEditorAutoCompleteView.h */,
  1169. 4295AE1A1FE74D46007BE365 /* CommonEditorAutoCompleteView.m */,
  1170. 4295AE1B1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib */,
  1171. );
  1172. name = AutoComplete;
  1173. sourceTree = "<group>";
  1174. };
  1175. 42BEF35B1E89FECC00632AB6 /* Frameworks */ = {
  1176. isa = PBXGroup;
  1177. children = (
  1178. 3CB44F0F28733D1200E24494 /* libScanApiCore.a */,
  1179. 3CB44F0E28733CEC00E24494 /* ScanAPI.podspec */,
  1180. 42D9A0221EB02DA6008AF7AF /* AdSupport.framework */,
  1181. 42BEF35E1E89FEE300632AB6 /* CoreData.framework */,
  1182. 42BEF35C1E89FECD00632AB6 /* SystemConfiguration.framework */,
  1183. );
  1184. name = Frameworks;
  1185. sourceTree = "<group>";
  1186. };
  1187. 42FD1A001FBD19B800C5D9A8 /* Order Preview */ = {
  1188. isa = PBXGroup;
  1189. children = (
  1190. 42FD1A011FBD1A3000C5D9A8 /* RAOrderPreviewController.h */,
  1191. 42FD1A021FBD1A3000C5D9A8 /* RAOrderPreviewController.m */,
  1192. 424A02CF1FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.h */,
  1193. 424A02D01FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m */,
  1194. );
  1195. name = "Order Preview";
  1196. sourceTree = "<group>";
  1197. };
  1198. 710212821B8D59DE00E1788B /* watchlist */ = {
  1199. isa = PBXGroup;
  1200. children = (
  1201. 7162A5E11C5877CE00AB630E /* WatchListViewController.h */,
  1202. 7162A5E21C5877CE00AB630E /* WatchListViewController.m */,
  1203. );
  1204. name = watchlist;
  1205. sourceTree = "<group>";
  1206. };
  1207. 711A551F1C153AA800EF5FDA /* portfolio */ = {
  1208. isa = PBXGroup;
  1209. children = (
  1210. 3C2F99B7237BE1790000808F /* PortfolioListTableViewCell.h */,
  1211. 3C2F99B6237BE1790000808F /* PortfolioListTableViewCell.m */,
  1212. 3C7E5A8D237BDB0C006D0105 /* PortfolioListViewController.h */,
  1213. 3C7E5A8C237BDB0C006D0105 /* PortfolioListViewController.m */,
  1214. 7162A5A61C58735900AB630E /* PortfolioViewController.h */,
  1215. 7162A5A71C58735900AB630E /* PortfolioViewController.m */,
  1216. 7162A5A81C58735900AB630E /* TearSheetParamViewController.h */,
  1217. 7162A5A91C58735900AB630E /* TearSheetParamViewController.m */,
  1218. 71D0344D1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.h */,
  1219. 71D0344E1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m */,
  1220. );
  1221. name = portfolio;
  1222. sourceTree = "<group>";
  1223. };
  1224. 712AFEC41DBA044C00254965 /* pdfCreator */ = {
  1225. isa = PBXGroup;
  1226. children = (
  1227. 712AFEC51DBA050200254965 /* BasicDrawable.h */,
  1228. 712AFEC61DBA050200254965 /* BasicDrawable.m */,
  1229. 715671311E10A0EF006324A0 /* RectDrawable.h */,
  1230. 715671321E10A0EF006324A0 /* RectDrawable.m */,
  1231. 712AFEC71DBA050200254965 /* GridDrawable.h */,
  1232. 712AFEC81DBA050200254965 /* GridDrawable.m */,
  1233. 712AFEC91DBA050200254965 /* GroupDrawable.h */,
  1234. 712AFECA1DBA050200254965 /* GroupDrawable.m */,
  1235. 712AFECB1DBA050200254965 /* ImageDrawable.h */,
  1236. 712AFECC1DBA050200254965 /* ImageDrawable.m */,
  1237. 712AFECD1DBA050200254965 /* LineDrawable.h */,
  1238. 712AFECE1DBA050200254965 /* LineDrawable.m */,
  1239. 712AFECF1DBA050200254965 /* PDFDrawable.h */,
  1240. 712AFED01DBA050200254965 /* PDFDrawable.m */,
  1241. 712AFED11DBA050200254965 /* RAPDFPage.h */,
  1242. 712AFED21DBA050200254965 /* RAPDFPage.m */,
  1243. 712AFED31DBA050200254965 /* TableDrawable.h */,
  1244. 712AFED41DBA050200254965 /* TableDrawable.m */,
  1245. 712AFED51DBA050200254965 /* TextDrawable.h */,
  1246. 712AFED61DBA050200254965 /* TextDrawable.m */,
  1247. 712AFEE01DBA077F00254965 /* pdfCreator.h */,
  1248. 712AFEE11DBA077F00254965 /* pdfCreator.m */,
  1249. );
  1250. name = pdfCreator;
  1251. sourceTree = "<group>";
  1252. };
  1253. 712AFEE31DBDAEA000254965 /* PDFResource */ = {
  1254. isa = PBXGroup;
  1255. children = (
  1256. 7142E8471DBF01A10077EFA2 /* font */,
  1257. 712AFEE41DBDAF0300254965 /* pdfcreator.xcassets */,
  1258. 7142E8481DBF01AC0077EFA2 /* template */,
  1259. );
  1260. name = PDFResource;
  1261. sourceTree = "<group>";
  1262. };
  1263. 713393FE19936C980075BBAC /* Signature */ = {
  1264. isa = PBXGroup;
  1265. children = (
  1266. 71D01ADC1E08CB1C006620CE /* signature.storyboard */,
  1267. 7162A5C61C58761500AB630E /* SignatureView.h */,
  1268. 7162A5C71C58761500AB630E /* SignatureView.m */,
  1269. 7162A5C81C58761500AB630E /* SignatureViewController.h */,
  1270. 7162A5C91C58761500AB630E /* SignatureViewController.m */,
  1271. );
  1272. name = Signature;
  1273. sourceTree = "<group>";
  1274. };
  1275. 713F769D1929F4A7006A7305 = {
  1276. isa = PBXGroup;
  1277. children = (
  1278. 713F76AF1929F4A7006A7305 /* HMLG Scan Order */,
  1279. 42BEF35B1E89FECC00632AB6 /* Frameworks */,
  1280. );
  1281. sourceTree = "<group>";
  1282. };
  1283. 713F76A71929F4A7006A7305 /* Products */ = {
  1284. isa = PBXGroup;
  1285. children = (
  1286. 713F76A61929F4A7006A7305 /* HMLG Scan Order.app */,
  1287. );
  1288. name = Products;
  1289. path = ..;
  1290. sourceTree = "<group>";
  1291. };
  1292. 713F76A81929F4A7006A7305 /* Frameworks */ = {
  1293. isa = PBXGroup;
  1294. children = (
  1295. 71BBA2281CEAC17E00C91DED /* libz.tbd */,
  1296. 7187162A1C43406300F25860 /* libScanApiCore.a */,
  1297. 718716281C433DA400F25860 /* AVFoundation.framework */,
  1298. 718716261C433D9700F25860 /* AudioToolbox.framework */,
  1299. 718716241C433D8B00F25860 /* ExternalAccessory.framework */,
  1300. 718716221C433D5000F25860 /* libScanApiCore.a */,
  1301. 716961B419594E1000B19FB4 /* libsqlite3.dylib */,
  1302. 71DEE875192DE00E003F645F /* Accelerate.framework */,
  1303. 71DEE873192DE003003F645F /* QuartzCore.framework */,
  1304. 713F76A91929F4A7006A7305 /* Foundation.framework */,
  1305. 713F76AB1929F4A7006A7305 /* CoreGraphics.framework */,
  1306. 713F76AD1929F4A7006A7305 /* UIKit.framework */,
  1307. 713F76C81929F4A7006A7305 /* XCTest.framework */,
  1308. );
  1309. name = Frameworks;
  1310. path = ..;
  1311. sourceTree = "<group>";
  1312. };
  1313. 713F76AF1929F4A7006A7305 /* HMLG Scan Order */ = {
  1314. isa = PBXGroup;
  1315. children = (
  1316. 3C4DA61D27B50199001EB44E /* Main.storyboard */,
  1317. 3C7D31F127882A5F005EB380 /* OLO */,
  1318. 71DF742C1C57567800F2789C /* HMLG SO */,
  1319. 712AFEE31DBDAEA000254965 /* PDFResource */,
  1320. 716387C71953CDB4006E65E6 /* utils */,
  1321. 718716141C433B4300F25860 /* ScanAPI */,
  1322. 7190F1091BBBCAF100B2F243 /* PDF+Web */,
  1323. 714C6ADA1B83016A000123E3 /* address */,
  1324. 71F731FC192F395000F2CF76 /* AutoScrollImage */,
  1325. 7143E0C919414E4B00B2EB1A /* cartView */,
  1326. 7191A67319650A11007DC977 /* cagegory */,
  1327. 716BA58D195AB4170007093A /* categoryMenu */,
  1328. 714C6ADE1B83069A000123E3 /* creditcard */,
  1329. 7185C3CE1B919C7200B4823C /* contact */,
  1330. 719E45D71B63883100FD098B /* modelDetail */,
  1331. 71DBACEE1B5E401A00D8BD7E /* HomeView */,
  1332. 714C6AE21B83107A000123E3 /* order */,
  1333. 4254CCDB1FB1AB6600C8B4B6 /* Order Editor */,
  1334. 42FD1A001FBD19B800C5D9A8 /* Order Preview */,
  1335. 717AE10B1D1A5E99007DC5CA /* offline */,
  1336. 711A551F1C153AA800EF5FDA /* portfolio */,
  1337. 714A52061995E90300627D23 /* cam_scan */,
  1338. 71A2478A1B955448000E1F84 /* search */,
  1339. 713393FE19936C980075BBAC /* Signature */,
  1340. 716387CC1953D693006E65E6 /* sideMenu */,
  1341. 710212821B8D59DE00E1788B /* watchlist */,
  1342. 428980221E2492D2005F1BD8 /* Price Setting */,
  1343. 713F76B81929F4A7006A7305 /* AppDelegate.h */,
  1344. 713F76B91929F4A7006A7305 /* AppDelegate.m */,
  1345. 714036F821646B8C0029B10F /* AppDelegateBase.h */,
  1346. 714036F721646B8C0029B10F /* AppDelegateBase.m */,
  1347. 428980701E24B1E9005F1BD8 /* RASingleton.h */,
  1348. 428980711E24B1E9005F1BD8 /* RASingleton.m */,
  1349. 428980021E2490C1005F1BD8 /* NotificationNameCenter.h */,
  1350. 428980031E2490C1005F1BD8 /* NotificationNameCenter.m */,
  1351. 3C4DA62427B503B1001EB44E /* MainViewController.h */,
  1352. 3C4DA62327B503B1001EB44E /* MainViewController.m */,
  1353. 714037032164707D0029B10F /* MainHeaderViewColorPanel.h */,
  1354. 714037042164707D0029B10F /* MainHeaderViewColorPanel.m */,
  1355. 7162A5E41C58781000AB630E /* iSalesNavigationController.h */,
  1356. 7162A5E51C58781000AB630E /* iSalesNavigationController.m */,
  1357. 3C6831502396082700AD5BD7 /* ERP_Mobile_Cart.storyboard */,
  1358. 3C6831532396082700AD5BD7 /* ERP_Mobile_Contact.storyboard */,
  1359. 3C68314F2396082700AD5BD7 /* ERP_Mobile_Discard.storyboard */,
  1360. 3C6831512396082700AD5BD7 /* ERP_Mobile_Model.storyboard */,
  1361. 3C6831542396082800AD5BD7 /* ERP_Mobile_Order.storyboard */,
  1362. 3C6831552396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard */,
  1363. 3C6831522396082700AD5BD7 /* ERP_Mobile_Search.storyboard */,
  1364. 7143E208202FCEEB00451903 /* OLM.storyboard */,
  1365. 7143E20E202FCEF600451903 /* CUL.storyboard */,
  1366. 713F76C11929F4A7006A7305 /* Images.xcassets */,
  1367. 713F76B01929F4A7006A7305 /* Supporting Files */,
  1368. 713F76B21929F4A7006A7305 /* InfoPlist.strings */,
  1369. 3C4DA61527B4E95C001EB44E /* HMLG Scan Order-Info.plist */,
  1370. 713F76B51929F4A7006A7305 /* main.m */,
  1371. 713F76B71929F4A7006A7305 /* HMLG Scan Order-Prefix.pch */,
  1372. 713F76A81929F4A7006A7305 /* Frameworks */,
  1373. 713F76A71929F4A7006A7305 /* Products */,
  1374. );
  1375. path = "HMLG Scan Order";
  1376. sourceTree = "<group>";
  1377. };
  1378. 713F76B01929F4A7006A7305 /* Supporting Files */ = {
  1379. isa = PBXGroup;
  1380. children = (
  1381. 423CC87421D22FDE008BD2C4 /* Launch Screen.storyboard */,
  1382. );
  1383. name = "Supporting Files";
  1384. sourceTree = "<group>";
  1385. };
  1386. 7142E8471DBF01A10077EFA2 /* font */ = {
  1387. isa = PBXGroup;
  1388. children = (
  1389. 7142E8781DBF57510077EFA2 /* KALINGA.TTF */,
  1390. 7142E8791DBF57510077EFA2 /* KALINGAB.TTF */,
  1391. 7142E87C1DC300010077EFA2 /* DejaVuSans-Bold.ttf */,
  1392. 7142E87D1DC300010077EFA2 /* DejaVuSans.ttf */,
  1393. );
  1394. name = font;
  1395. sourceTree = "<group>";
  1396. };
  1397. 7142E8481DBF01AC0077EFA2 /* template */ = {
  1398. isa = PBXGroup;
  1399. children = (
  1400. 7143E224202FD2CA00451903 /* portfolio_2x3.json */,
  1401. 7143E223202FD2CA00451903 /* portfolio_3x2.json */,
  1402. 7143E222202FD2CA00451903 /* so_thumb.json */,
  1403. 7143E225202FD2CA00451903 /* so.json */,
  1404. 42E489601EE63F4E007256A0 /* more_color_64.png */,
  1405. );
  1406. name = template;
  1407. sourceTree = "<group>";
  1408. };
  1409. 7143E0C919414E4B00B2EB1A /* cartView */ = {
  1410. isa = PBXGroup;
  1411. children = (
  1412. 3CA6DDC028E54D1C003655FF /* CartViewController.h */,
  1413. 3CA6DDBF28E54D1C003655FF /* CartViewController.m */,
  1414. 7162A50C1C58704600AB630E /* BundleModelCell.h */,
  1415. 7162A50D1C58704600AB630E /* BundleModelCell.m */,
  1416. 7162A50E1C58704600AB630E /* BundleModelViewController.h */,
  1417. 7162A50F1C58704600AB630E /* BundleModelViewController.m */,
  1418. 7162A5121C58704600AB630E /* EditModelPriceViewController.h */,
  1419. 7162A5131C58704600AB630E /* EditModelPriceViewController.m */,
  1420. 7162A5141C58704600AB630E /* ModelItemCell.h */,
  1421. 7162A5151C58704600AB630E /* ModelItemCell.m */,
  1422. 712C40B71C731126000E6831 /* ItemNotesViewController.h */,
  1423. 712C40B81C731126000E6831 /* ItemNotesViewController.m */,
  1424. 712C40B41C7310F4000E6831 /* CartGeneralNotesViewController.h */,
  1425. 712C40B51C7310F4000E6831 /* CartGeneralNotesViewController.m */,
  1426. );
  1427. name = cartView;
  1428. sourceTree = "<group>";
  1429. };
  1430. 7143E215202FD12B00451903 /* json */ = {
  1431. isa = PBXGroup;
  1432. children = (
  1433. 7143E213202FCFC000451903 /* debug_category_filter.json */,
  1434. 7143E216202FD15A00451903 /* category.json */,
  1435. 7143E218202FD1DC00451903 /* contactAdvanceSearch.json */,
  1436. 7143E219202FD1DC00451903 /* createContact.json */,
  1437. 7143E21C202FD21F00451903 /* editContact.json */,
  1438. 7143E21F202FD28900451903 /* placeOrderTemplate.json */,
  1439. 7143E21E202FD28800451903 /* TearSheet.json */,
  1440. 7143E22A202FD37500451903 /* orderDetail.json */,
  1441. );
  1442. name = json;
  1443. sourceTree = "<group>";
  1444. };
  1445. 714A52061995E90300627D23 /* cam_scan */ = {
  1446. isa = PBXGroup;
  1447. children = (
  1448. 3CF33C8E27BF4A3D001CBEEC /* QRCode.storyboard */,
  1449. 3CF33C8D27BF4A3D001CBEEC /* RAQRCodeScannerViewController.h */,
  1450. 3CF33C8C27BF4A3D001CBEEC /* RAQRCodeScannerViewController.m */,
  1451. 7162A5AE1C58738600AB630E /* ScannerControllerView.h */,
  1452. 7162A5AF1C58738600AB630E /* ScannerControllerView.m */,
  1453. 7162A5B01C58738600AB630E /* ScannerViewController.h */,
  1454. 7162A5B11C58738600AB630E /* ScannerViewController.m */,
  1455. 7162A5B21C58738600AB630E /* SCShapeView.h */,
  1456. 7162A5B31C58738600AB630E /* SCShapeView.m */,
  1457. );
  1458. name = cam_scan;
  1459. sourceTree = "<group>";
  1460. };
  1461. 714C6ADA1B83016A000123E3 /* address */ = {
  1462. isa = PBXGroup;
  1463. children = (
  1464. 7162A5001C586F5B00AB630E /* AddressEditorViewController.h */,
  1465. 7162A5011C586F5B00AB630E /* AddressEditorViewController.m */,
  1466. );
  1467. name = address;
  1468. sourceTree = "<group>";
  1469. };
  1470. 714C6ADE1B83069A000123E3 /* creditcard */ = {
  1471. isa = PBXGroup;
  1472. children = (
  1473. 7162A54C1C58722200AB630E /* CreditCardEditorViewController.h */,
  1474. 7162A54D1C58722200AB630E /* CreditCardEditorViewController.m */,
  1475. );
  1476. name = creditcard;
  1477. sourceTree = "<group>";
  1478. };
  1479. 714C6AE21B83107A000123E3 /* order */ = {
  1480. isa = PBXGroup;
  1481. children = (
  1482. 7162A5861C58733400AB630E /* CreateOrderViewController.h */,
  1483. 7162A5871C58733400AB630E /* CreateOrderViewController.m */,
  1484. 7162A5881C58733400AB630E /* OrderDetailHtmlCell.h */,
  1485. 7162A5891C58733400AB630E /* OrderDetailHtmlCell.m */,
  1486. 7162A58A1C58733400AB630E /* OrderDetailInfoCell.h */,
  1487. 7162A58B1C58733400AB630E /* OrderDetailInfoCell.m */,
  1488. 7162A58C1C58733400AB630E /* OrderDetailModelCell.h */,
  1489. 7162A58D1C58733400AB630E /* OrderDetailModelCell.m */,
  1490. 7162A58E1C58733400AB630E /* OrderDetailPriceCell.h */,
  1491. 7162A58F1C58733400AB630E /* OrderDetailPriceCell.m */,
  1492. 42DC12EF1F0CD98E00A4C011 /* OrderDetailPickInfoCell.h */,
  1493. 42DC12F01F0CD98E00A4C011 /* OrderDetailPickInfoCell.m */,
  1494. 7162A5901C58733400AB630E /* OrderDetailViewController.h */,
  1495. 7162A5911C58733400AB630E /* OrderDetailViewController.m */,
  1496. 7162A5921C58733400AB630E /* OrderListTableViewCell.h */,
  1497. 7162A5931C58733400AB630E /* OrderListTableViewCell.m */,
  1498. 7162A5941C58733400AB630E /* OrderListViewController.h */,
  1499. 7162A5951C58733400AB630E /* OrderListViewController.m */,
  1500. 7162A5961C58733400AB630E /* status_filter_cadedate_open.json */,
  1501. 42B309781E45BA32007AFC62 /* status_filter_cadedate_po.json */,
  1502. 7162A5971C58733400AB630E /* offline_status_filter_cadedate.json */,
  1503. 714B1F3E1C7BF74100539193 /* OrderDetailSignatureCell.h */,
  1504. 714B1F3F1C7BF74100539193 /* OrderDetailSignatureCell.m */,
  1505. );
  1506. name = order;
  1507. sourceTree = "<group>";
  1508. };
  1509. 715EB9A6193866F2006D16A5 /* photoStack */ = {
  1510. isa = PBXGroup;
  1511. children = (
  1512. 71DF748F1C57614C00F2789C /* PhotoBorder.png */,
  1513. 71DF74901C57614C00F2789C /* PhotoBorder@2x.png */,
  1514. 7165662C1EF3ACD900CB897F /* photostack_image.html */,
  1515. 7165662D1EF3ACD900CB897F /* photostack_video.html */,
  1516. 71DF74911C57614C00F2789C /* PhotoStackView.h */,
  1517. 71DF74921C57614C00F2789C /* PhotoStackView.m */,
  1518. 71DF74931C57614C00F2789C /* PhotoStackViewController.h */,
  1519. 71DF74941C57614C00F2789C /* PhotoStackViewController.m */,
  1520. );
  1521. name = photoStack;
  1522. sourceTree = "<group>";
  1523. };
  1524. 716387C71953CDB4006E65E6 /* utils */ = {
  1525. isa = PBXGroup;
  1526. children = (
  1527. 3C23B3E929CD70F9008E7C14 /* MessageBox */,
  1528. 3C51499A273E0B6400F78617 /* common_const.h */,
  1529. 71DF74311C5757C800F2789C /* CommonUI */,
  1530. 71C1D84C1F456CAA00CEA1C9 /* HWWeakTimer.h */,
  1531. 71C1D84D1F456CAA00CEA1C9 /* HWWeakTimer.m */,
  1532. 4289809B1E24B526005F1BD8 /* JKTimer */,
  1533. 4289805A1E249375005F1BD8 /* UIColor+HEX */,
  1534. 4289803C1E249339005F1BD8 /* JKLock */,
  1535. 712AFEC41DBA044C00254965 /* pdfCreator */,
  1536. 71BBA2171CEAC10200C91DED /* zip */,
  1537. 71B1250B1C55BD4600118904 /* QRCODE */,
  1538. 71E9F6BD1F8B53AB0052C78E /* upload */,
  1539. 71BE066E1BA1607400FA6544 /* AES */,
  1540. 71DF74291C57560600F2789C /* Reachability.h */,
  1541. 71DF742A1C57560600F2789C /* Reachability.m */,
  1542. 71CB70761F99E337009FDCB7 /* RAConvertor.h */,
  1543. 71CB70771F99E338009FDCB7 /* RAConvertor.m */,
  1544. 71CB70741F99DF02009FDCB7 /* FileCache.h */,
  1545. 71CB70731F99DF01009FDCB7 /* FileCache.m */,
  1546. 71D01B141E0A2055006620CE /* ImageUtils.h */,
  1547. 71D01B151E0A2055006620CE /* ImageUtils.m */,
  1548. 428980081E24918F005F1BD8 /* CartUtils.h */,
  1549. 428980091E24918F005F1BD8 /* CartUtils.m */,
  1550. 71D01B161E0A2055006620CE /* PDFUtils.h */,
  1551. 71D01B171E0A2055006620CE /* PDFUtils.m */,
  1552. 71D01B181E0A2055006620CE /* TextUtils.h */,
  1553. 71D01B191E0A2055006620CE /* TextUtils.m */,
  1554. 42BF67CA1E5179970081F90A /* ERPUtils.h */,
  1555. 42BF67CB1E5179970081F90A /* ERPUtils.m */,
  1556. 71FFBBE51C60894900D91DC2 /* iSalesDB.h */,
  1557. 71FFBBE61C60894900D91DC2 /* iSalesDB.m */,
  1558. 71E9F6BB1F8B52DC0052C78E /* NetworkUtils.h */,
  1559. 71E9F6BA1F8B52DC0052C78E /* NetworkUtils.m */,
  1560. 71E9F6C11F8B57E40052C78E /* RANetworkTaskDelegate.h */,
  1561. 71E9F6C01F8B57E30052C78E /* RANetworkTaskDelegate.m */,
  1562. 3CDDB26D273A5A7800681F78 /* RAUtils.h */,
  1563. 3CDDB26C273A5A7800681F78 /* RAUtils.m */,
  1564. 71FFBBE71C60894900D91DC2 /* RANetwork.h */,
  1565. 71FFBBE81C60894900D91DC2 /* RANetwork.m */,
  1566. 71BF06F91D2F3CAC00981938 /* OLDataProvider.h */,
  1567. 71BF06FA1D2F3CAC00981938 /* OLDataProvider.m */,
  1568. 7143E22C202FD3CC00451903 /* more_info.html */,
  1569. 7143E22D202FD3CC00451903 /* order_info.html */,
  1570. 3C51492D273CF9B900F78617 /* DBUtil.h */,
  1571. 3C51492E273CF9B900F78617 /* DBUtil.m */,
  1572. 3C514967273D0B1E00F78617 /* RADataProvider.h */,
  1573. 3C514968273D0B1E00F78617 /* RADataProvider.m */,
  1574. );
  1575. name = utils;
  1576. sourceTree = "<group>";
  1577. };
  1578. 716387CC1953D693006E65E6 /* sideMenu */ = {
  1579. isa = PBXGroup;
  1580. children = (
  1581. 7162A5CC1C5876E300AB630E /* AboutViewController.h */,
  1582. 7162A5CD1C5876E300AB630E /* AboutViewController.m */,
  1583. 7162A5CE1C5876E300AB630E /* CacheViewController.h */,
  1584. 7162A5CF1C5876E300AB630E /* CacheViewController.m */,
  1585. 7162A5D01C5876E300AB630E /* LoginViewController.h */,
  1586. 7162A5D11C5876E300AB630E /* LoginViewController.m */,
  1587. 7162A5D21C5876E300AB630E /* PopupNavigationController.h */,
  1588. 7162A5D31C5876E300AB630E /* PopupNavigationController.m */,
  1589. 7162A5D41C5876E300AB630E /* RetrievePassViewController.h */,
  1590. 7162A5D51C5876E300AB630E /* RetrievePassViewController.m */,
  1591. 7162A5D61C5876E300AB630E /* ScannerSettingViewController.h */,
  1592. 7162A5D71C5876E300AB630E /* ScannerSettingViewController.m */,
  1593. 7162A5D81C5876E300AB630E /* SettingViewController.h */,
  1594. 7162A5D91C5876E300AB630E /* SettingViewController.m */,
  1595. 7186C25B1C97A6EE00CB43F4 /* FunctionTestViewController.h */,
  1596. 7186C25C1C97A6EE00CB43F4 /* FunctionTestViewController.m */,
  1597. 71131F901CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.h */,
  1598. 71131F911CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m */,
  1599. 710274231CC606C4009FD219 /* UserListViewController.h */,
  1600. 710274241CC606C4009FD219 /* UserListViewController.m */,
  1601. );
  1602. name = sideMenu;
  1603. sourceTree = "<group>";
  1604. };
  1605. 716387D2195408DA006E65E6 /* config */ = {
  1606. isa = PBXGroup;
  1607. children = (
  1608. 716387D3195408E7006E65E6 /* config.h */,
  1609. 71E5A00F1DC99370005BF655 /* config.plist */,
  1610. 3CDDB25F273A597B00681F78 /* const.h */,
  1611. );
  1612. name = config;
  1613. sourceTree = "<group>";
  1614. };
  1615. 716BA58D195AB4170007093A /* categoryMenu */ = {
  1616. isa = PBXGroup;
  1617. children = (
  1618. 7162A52B1C58719D00AB630E /* RATreeNode.h */,
  1619. 7162A52C1C58719D00AB630E /* RATreeNode.m */,
  1620. 7162A52D1C58719D00AB630E /* RATreeNodeCollectionController.h */,
  1621. 7162A52E1C58719D00AB630E /* RATreeNodeCollectionController.m */,
  1622. 7162A52F1C58719D00AB630E /* RATreeNodeInfo.h */,
  1623. 7162A5301C58719D00AB630E /* RATreeNodeInfo.m */,
  1624. 7162A5311C58719D00AB630E /* RATreeNodeInfo+Private.h */,
  1625. 7162A5321C58719D00AB630E /* RATreeNodeInfo+Private.m */,
  1626. 7162A5331C58719D00AB630E /* RATreeView.h */,
  1627. 7162A5341C58719D00AB630E /* RATreeView.m */,
  1628. 7162A5351C58719D00AB630E /* RATreeView+Enums.h */,
  1629. 7162A5361C58719D00AB630E /* RATreeView+Enums.m */,
  1630. 7162A5371C58719D00AB630E /* RATreeView+Private.h */,
  1631. 7162A5381C58719D00AB630E /* RATreeView+Private.m */,
  1632. 7162A5391C58719D00AB630E /* RATreeView+TableViewDataSource.h */,
  1633. 7162A53A1C58719D00AB630E /* RATreeView+TableViewDataSource.m */,
  1634. 7162A53B1C58719D00AB630E /* RATreeView+TableViewDelegate.h */,
  1635. 7162A53C1C58719D00AB630E /* RATreeView+TableViewDelegate.m */,
  1636. 7162A53D1C58719D00AB630E /* RATreeView+UIScrollView.h */,
  1637. 7162A53E1C58719D00AB630E /* RATreeView+UIScrollView.m */,
  1638. 7162A53F1C58719D00AB630E /* RAViewController.h */,
  1639. 7162A5401C58719D00AB630E /* RAViewController.m */,
  1640. );
  1641. name = categoryMenu;
  1642. sourceTree = "<group>";
  1643. };
  1644. 717AE10B1D1A5E99007DC5CA /* offline */ = {
  1645. isa = PBXGroup;
  1646. children = (
  1647. 7161FEB21D61B24900157EE1 /* creditcardpayment.html */,
  1648. 7161FEB31D61B24900157EE1 /* normalpayment.html */,
  1649. 7161FEB41D61B24900157EE1 /* orderinfo.html */,
  1650. 71BF06FC1D2F3CBA00981938 /* OfflineSettingViewController.h */,
  1651. 71BF06FD1D2F3CBA00981938 /* OfflineSettingViewController.m */,
  1652. 71BF07061D2F3D2800981938 /* SyncControlPanelViewController.h */,
  1653. 71BF07071D2F3D2800981938 /* SyncControlPanelViewController.m */,
  1654. 716AF8DF1D7AA0E0001188E0 /* SelectUploadOrderViewController.h */,
  1655. 716AF8E01D7AA0E0001188E0 /* SelectUploadOrderViewController.m */,
  1656. 716AF8E61D7AA398001188E0 /* SelectOrderTableViewCell.h */,
  1657. 716AF8E51D7AA398001188E0 /* SelectOrderTableViewCell.m */,
  1658. 715F30BB1DAB37EB00490EED /* OfflineUnlockViewController.h */,
  1659. 715F30BC1DAB37EB00490EED /* OfflineUnlockViewController.m */,
  1660. );
  1661. name = offline;
  1662. sourceTree = "<group>";
  1663. };
  1664. 7185C3CE1B919C7200B4823C /* contact */ = {
  1665. isa = PBXGroup;
  1666. children = (
  1667. 7162A54F1C58724700AB630E /* ContactAdvanceSearchViewController.h */,
  1668. 7162A5501C58724700AB630E /* ContactAdvanceSearchViewController.m */,
  1669. 7162A5511C58724700AB630E /* ContactListTableViewCell.h */,
  1670. 7162A5521C58724700AB630E /* ContactListTableViewCell.m */,
  1671. 7162A5531C58724700AB630E /* ContactListViewController.h */,
  1672. 7162A5541C58724700AB630E /* ContactListViewController.m */,
  1673. 7162A5551C58724700AB630E /* customer_advanced_search.json */,
  1674. 7162A5561C58724700AB630E /* customer_info_template.json */,
  1675. 7111E5711C76C557004763B3 /* customer_info_template_edit.json */,
  1676. 3CC1122A279163F4004ACA57 /* offline_order_new_contact.json */,
  1677. 7162A5571C58724700AB630E /* CustomerEditViewController.h */,
  1678. 7162A5581C58724700AB630E /* CustomerEditViewController.m */,
  1679. 7162A5591C58724700AB630E /* CustomerInfoViewController.h */,
  1680. 7162A55A1C58724700AB630E /* CustomerInfoViewController.m */,
  1681. );
  1682. name = contact;
  1683. sourceTree = "<group>";
  1684. };
  1685. 718600B31936C385004B6CDE /* customUI */ = {
  1686. isa = PBXGroup;
  1687. children = (
  1688. 3CDDB26A273A5A1500681F78 /* CustomIOSAlertView.h */,
  1689. 3CDDB269273A5A1400681F78 /* CustomIOSAlertView.m */,
  1690. 71DF746B1C57608F00F2789C /* ImageScrollerView.h */,
  1691. 71DF746C1C57608F00F2789C /* ImageScrollerView.m */,
  1692. 71DF746D1C57608F00F2789C /* ImageScrollerViewController.h */,
  1693. 71DF746E1C57608F00F2789C /* ImageScrollerViewController.m */,
  1694. 71DF746F1C57608F00F2789C /* ImageUploadViewController.h */,
  1695. 71DF74701C57608F00F2789C /* ImageUploadViewController.m */,
  1696. 71DF74711C57608F00F2789C /* ImageViewController.h */,
  1697. 71DF74721C57608F00F2789C /* ImageViewController.m */,
  1698. 71DF74731C57608F00F2789C /* NIDropDown.h */,
  1699. 71DF74741C57608F00F2789C /* NIDropDown.m */,
  1700. 71DF74751C57608F00F2789C /* PulldownMenu.h */,
  1701. 71DF74761C57608F00F2789C /* PulldownMenu.m */,
  1702. 71DF74771C57608F00F2789C /* RadioButton.h */,
  1703. 71DF74781C57608F00F2789C /* RadioButton.m */,
  1704. 71DF747B1C57608F00F2789C /* SimpleGrid.h */,
  1705. 71DF747C1C57608F00F2789C /* SimpleGrid.m */,
  1706. 3CDDB263273A59EF00681F78 /* RTLabel.h */,
  1707. 3CDDB264273A59EF00681F78 /* RTLabel.m */,
  1708. 3CDDB266273A5A0400681F78 /* StrikethroughLabel.h */,
  1709. 3CDDB267273A5A0400681F78 /* StrikethroughLabel.m */,
  1710. 3CDDB261273A59DF00681F78 /* TouchImageView.h */,
  1711. 3CDDB260273A59DF00681F78 /* TouchImageView.m */,
  1712. 71DF747F1C57608F00F2789C /* TouchLabel.h */,
  1713. 71DF74801C57608F00F2789C /* TouchLabel.m */,
  1714. 71DF74811C57608F00F2789C /* UILabel+FontAppearance.h */,
  1715. 71DF74821C57608F00F2789C /* UILabel+FontAppearance.m */,
  1716. );
  1717. name = customUI;
  1718. sourceTree = "<group>";
  1719. };
  1720. 718716141C433B4300F25860 /* ScanAPI */ = {
  1721. isa = PBXGroup;
  1722. children = (
  1723. 7141DD351C5726B700F7DF59 /* DeviceInfo.h */,
  1724. 7141DD361C5726B700F7DF59 /* DeviceInfo.m */,
  1725. 7141DD371C5726B700F7DF59 /* ScanApiHelper.h */,
  1726. 7141DD381C5726B700F7DF59 /* ScanApiHelper.mm */,
  1727. 7141DD391C5726B700F7DF59 /* ScanApiIncludes.h */,
  1728. 7141DD3A1C5726B700F7DF59 /* softScanBeep.wav */,
  1729. 7141DD331C57269B00F7DF59 /* include */,
  1730. );
  1731. name = ScanAPI;
  1732. sourceTree = "<group>";
  1733. };
  1734. 7190F1091BBBCAF100B2F243 /* PDF+Web */ = {
  1735. isa = PBXGroup;
  1736. children = (
  1737. 3C69617D23C7156D0075172A /* RAPDFViewController.h */,
  1738. 3C69617E23C7156D0075172A /* RAPDFViewController.m */,
  1739. 3C69618123C7156D0075172A /* WebViewController.h */,
  1740. 3C69617F23C7156D0075172A /* WebViewController.m */,
  1741. 3C69618023C7156D0075172A /* wkweb.storyboard */,
  1742. );
  1743. name = "PDF+Web";
  1744. sourceTree = "<group>";
  1745. };
  1746. 7191A67319650A11007DC977 /* cagegory */ = {
  1747. isa = PBXGroup;
  1748. children = (
  1749. 7143E210202FCF7600451903 /* CategoryCellNPD.h */,
  1750. 7143E211202FCF7600451903 /* CategoryCellNPD.m */,
  1751. 7162A51F1C58706C00AB630E /* CategoryCellSmall.h */,
  1752. 7162A5201C58706C00AB630E /* CategoryCellSmall.m */,
  1753. 712BABF11C897E3A0007466B /* CategorySearchFilterViewController.h */,
  1754. 712BABF21C897E3A0007466B /* CategorySearchFilterViewController.m */,
  1755. 7162A5211C58706C00AB630E /* CategoryViewController.h */,
  1756. 7162A5221C58706C00AB630E /* CategoryViewController.m */,
  1757. 7195623A1CF57D1800C74A49 /* CategoryHeaderView.h */,
  1758. 7195623B1CF57D1800C74A49 /* CategoryHeaderView.m */,
  1759. );
  1760. name = cagegory;
  1761. sourceTree = "<group>";
  1762. };
  1763. 719562351CF5733500C74A49 /* appearance */ = {
  1764. isa = PBXGroup;
  1765. children = (
  1766. 715850441CF6F0E500856B20 /* DefaultAppearance.h */,
  1767. 715850451CF6F0E500856B20 /* DefaultAppearance.m */,
  1768. 71D30A201CFBEDC6006F9477 /* default_appearance.json */,
  1769. );
  1770. name = appearance;
  1771. sourceTree = "<group>";
  1772. };
  1773. 719E45D71B63883100FD098B /* modelDetail */ = {
  1774. isa = PBXGroup;
  1775. children = (
  1776. 7162A5621C58728D00AB630E /* DetailHeaderCell.h */,
  1777. 7162A5631C58728D00AB630E /* DetailHeaderCell.m */,
  1778. 7162A5641C58728D00AB630E /* DetailImageCell.h */,
  1779. 7162A5651C58728D00AB630E /* DetailImageCell.m */,
  1780. 7162A5661C58728D00AB630E /* DetailKVCell.h */,
  1781. 7162A5671C58728D00AB630E /* DetailKVCell.m */,
  1782. 7162A5681C58728D00AB630E /* DetailTopicCell.h */,
  1783. 7162A5691C58728D00AB630E /* DetailTopicCell.m */,
  1784. 7162A56A1C58728D00AB630E /* DetailViewController.h */,
  1785. 7162A56B1C58728D00AB630E /* DetailViewController.m */,
  1786. 7162A56C1C58728D00AB630E /* LineView.h */,
  1787. 7162A56D1C58728D00AB630E /* LineView.m */,
  1788. 71C1D8521F456D2700CEA1C9 /* ModelDescriptionController.h */,
  1789. 71C1D8531F456D2700CEA1C9 /* ModelDescriptionController.m */,
  1790. );
  1791. name = modelDetail;
  1792. sourceTree = "<group>";
  1793. };
  1794. 71A2478A1B955448000E1F84 /* search */ = {
  1795. isa = PBXGroup;
  1796. children = (
  1797. 7162A5B71C5873BB00AB630E /* FilterCellCadedate.h */,
  1798. 7162A5B81C5873BB00AB630E /* FilterCellCadedate.m */,
  1799. 7162A5B91C5873BB00AB630E /* FilterCellValue.h */,
  1800. 7162A5BA1C5873BB00AB630E /* FilterCellValue.m */,
  1801. 7162A5BB1C5873BB00AB630E /* ItemSearchFilterViewController.h */,
  1802. 7162A5BC1C5873BB00AB630E /* ItemSearchFilterViewController.m */,
  1803. 7162A5BD1C5873BB00AB630E /* ItemSearchViewController.h */,
  1804. 7162A5BE1C5873BB00AB630E /* ItemSearchViewController.m */,
  1805. 7162A5BF1C5873BB00AB630E /* SearchViewController.h */,
  1806. 7162A5C01C5873BB00AB630E /* SearchViewController.m */,
  1807. );
  1808. name = search;
  1809. sourceTree = "<group>";
  1810. };
  1811. 71B1250B1C55BD4600118904 /* QRCODE */ = {
  1812. isa = PBXGroup;
  1813. children = (
  1814. 7141DD3E1C57459B00F7DF59 /* bitstream.c */,
  1815. 7141DD3F1C57459B00F7DF59 /* bitstream.h */,
  1816. 7141DD401C57459B00F7DF59 /* mask.c */,
  1817. 7141DD411C57459B00F7DF59 /* mask.h */,
  1818. 7141DD421C57459B00F7DF59 /* QRCodeGenerator.h */,
  1819. 7141DD431C57459B00F7DF59 /* QRCodeGenerator.m */,
  1820. 7141DD441C57459B00F7DF59 /* qrencode.c */,
  1821. 7141DD451C57459B00F7DF59 /* qrencode.h */,
  1822. 7141DD461C57459B00F7DF59 /* qrinput.c */,
  1823. 7141DD471C57459B00F7DF59 /* qrinput.h */,
  1824. 7141DD481C57459B00F7DF59 /* qrspec.c */,
  1825. 7141DD491C57459B00F7DF59 /* qrspec.h */,
  1826. 7141DD4A1C57459B00F7DF59 /* rscode.c */,
  1827. 7141DD4B1C57459B00F7DF59 /* rscode.h */,
  1828. 7141DD4C1C57459B00F7DF59 /* split.c */,
  1829. 7141DD4D1C57459B00F7DF59 /* split.h */,
  1830. );
  1831. name = QRCODE;
  1832. sourceTree = "<group>";
  1833. };
  1834. 71BBA2171CEAC10200C91DED /* zip */ = {
  1835. isa = PBXGroup;
  1836. children = (
  1837. 71BBA2371CEAEF0700C91DED /* crypt.h */,
  1838. 71BBA2381CEAEF0700C91DED /* ioapi.c */,
  1839. 71BBA2391CEAEF0700C91DED /* ioapi.h */,
  1840. 71BBA23A1CEAEF0700C91DED /* mztools.c */,
  1841. 71BBA23B1CEAEF0700C91DED /* mztools.h */,
  1842. 71BBA23C1CEAEF0700C91DED /* unzip.c */,
  1843. 71BBA23D1CEAEF0700C91DED /* unzip.h */,
  1844. 71BBA23E1CEAEF0700C91DED /* zip.c */,
  1845. 71BBA23F1CEAEF0700C91DED /* zip.h */,
  1846. 71BBA2211CEAC16000C91DED /* ZipArchive.h */,
  1847. 71BBA2221CEAC16000C91DED /* ZipArchive.mm */,
  1848. );
  1849. name = zip;
  1850. sourceTree = "<group>";
  1851. };
  1852. 71BE066E1BA1607400FA6544 /* AES */ = {
  1853. isa = PBXGroup;
  1854. children = (
  1855. 7141DD561C5747CE00F7DF59 /* AESCrypt.h */,
  1856. 7141DD571C5747CE00F7DF59 /* AESCrypt.m */,
  1857. 7141DD581C5747CE00F7DF59 /* LICENSE */,
  1858. 7141DD591C5747CE00F7DF59 /* NSData+Base64.h */,
  1859. 7141DD5A1C5747CE00F7DF59 /* NSData+Base64.m */,
  1860. 7141DD5B1C5747CE00F7DF59 /* NSData+CommonCrypto.h */,
  1861. 7141DD5C1C5747CE00F7DF59 /* NSData+CommonCrypto.m */,
  1862. 7141DD5D1C5747CE00F7DF59 /* NSString+Base64.h */,
  1863. 7141DD5E1C5747CE00F7DF59 /* NSString+Base64.m */,
  1864. );
  1865. name = AES;
  1866. sourceTree = "<group>";
  1867. };
  1868. 71BF32FA1EFA1C0700842CB4 /* youtube player */ = {
  1869. isa = PBXGroup;
  1870. children = (
  1871. 3C68314C239607B500AD5BD7 /* RAYTPlayer.h */,
  1872. 3C68314B239607B500AD5BD7 /* RAYTPlayer.m */,
  1873. 3C68314A239607B500AD5BD7 /* ytplayer.html */,
  1874. );
  1875. name = "youtube player";
  1876. sourceTree = "<group>";
  1877. };
  1878. 71DBACEE1B5E401A00D8BD7E /* HomeView */ = {
  1879. isa = PBXGroup;
  1880. children = (
  1881. 7162A5771C5872EF00AB630E /* HomeTableViewCellBanner.h */,
  1882. 7162A5781C5872EF00AB630E /* HomeTableViewCellBanner.m */,
  1883. 7162A5791C5872EF00AB630E /* HomeTableViewCellButtonBanner.h */,
  1884. 7162A57A1C5872EF00AB630E /* HomeTableViewCellButtonBanner.m */,
  1885. 7162A57B1C5872EF00AB630E /* HomeTableViewCellSlide.h */,
  1886. 7162A57C1C5872EF00AB630E /* HomeTableViewCellSlide.m */,
  1887. 7162A57D1C5872EF00AB630E /* HomeTableViewCellTopic.h */,
  1888. 7162A57E1C5872EF00AB630E /* HomeTableViewCellTopic.m */,
  1889. 7162A57F1C5872EF00AB630E /* HomeViewController.h */,
  1890. 7162A5801C5872EF00AB630E /* HomeViewController.m */,
  1891. );
  1892. name = HomeView;
  1893. sourceTree = "<group>";
  1894. };
  1895. 71DF742C1C57567800F2789C /* HMLG SO */ = {
  1896. isa = PBXGroup;
  1897. children = (
  1898. 7143E215202FD12B00451903 /* json */,
  1899. 719562351CF5733500C74A49 /* appearance */,
  1900. 716387D2195408DA006E65E6 /* config */,
  1901. );
  1902. name = "HMLG SO";
  1903. sourceTree = "<group>";
  1904. };
  1905. 71DF74311C5757C800F2789C /* CommonUI */ = {
  1906. isa = PBXGroup;
  1907. children = (
  1908. 3C514996273E097B00F78617 /* HUD */,
  1909. 3C514987273E091500F78617 /* PhotoList */,
  1910. 71BF32FA1EFA1C0700842CB4 /* youtube player */,
  1911. 4289800E1E24924D005F1BD8 /* sort */,
  1912. 715EB9A6193866F2006D16A5 /* photoStack */,
  1913. 718600B31936C385004B6CDE /* customUI */,
  1914. 71DF743A1C575E6600F2789C /* CommonEditor */,
  1915. 71DF74321C5757DA00F2789C /* ActiveViewController.h */,
  1916. 71DF74331C5757DA00F2789C /* ActiveViewController.m */,
  1917. 71D30A2B1CFC0EF8006F9477 /* DefaultImageButton.h */,
  1918. 71D30A2C1CFC0EF8006F9477 /* DefaultImageButton.m */,
  1919. 3CDDB25B273A564200681F78 /* DefaultTableHeaderView.h */,
  1920. 3CDDB25A273A564200681F78 /* DefaultTableHeaderView.m */,
  1921. 715001FD1D114D9100F5927F /* BundleDetailButton.h */,
  1922. 715001FE1D114D9100F5927F /* BundleDetailButton.m */,
  1923. );
  1924. name = CommonUI;
  1925. sourceTree = "<group>";
  1926. };
  1927. 71DF743A1C575E6600F2789C /* CommonEditor */ = {
  1928. isa = PBXGroup;
  1929. children = (
  1930. 3C514975273E07C400F78617 /* EnumSelectAndSort\ */,
  1931. 714036FB21646CFF0029B10F /* UIResponder+Router.h */,
  1932. 714036FA21646CFF0029B10F /* UIResponder+Router.m */,
  1933. 3C514930273D092A00F78617 /* EnumSelectViewController.h */,
  1934. 3C514931273D092A00F78617 /* EnumSelectViewController.m */,
  1935. 4295AE181FE74D26007BE365 /* AutoComplete */,
  1936. 3C514941273D095900F78617 /* CommonEditorCellAction.h */,
  1937. 3C514944273D095900F78617 /* CommonEditorCellAction.m */,
  1938. 3C514973273E074500F78617 /* CommonEditorCellEditor.h */,
  1939. 3C514972273E074500F78617 /* CommonEditorCellEditor.m */,
  1940. 3C514933273D095800F78617 /* CommonEditorCellEdit.h */,
  1941. 3C51493A273D095900F78617 /* CommonEditorCellEdit.m */,
  1942. 3C514942273D095900F78617 /* CommonEditorCellEnum.h */,
  1943. 3C514939273D095800F78617 /* CommonEditorCellEnum.m */,
  1944. 3C514943273D095900F78617 /* CommonEditorCellImg.h */,
  1945. 3C51493F273D095900F78617 /* CommonEditorCellImg.m */,
  1946. 3C514937273D095800F78617 /* CommonEditorCellLabel.h */,
  1947. 3C51493C273D095900F78617 /* CommonEditorCellLabel.m */,
  1948. 3C51493B273D095900F78617 /* CommonEditorCellMAction.h */,
  1949. 3C51493D273D095900F78617 /* CommonEditorCellMAction.m */,
  1950. 3C514940273D095900F78617 /* CommonEditorCellModel.h */,
  1951. 3C514945273D095900F78617 /* CommonEditorCellModel.m */,
  1952. 3C514938273D095800F78617 /* CommonEditorCellSignature.h */,
  1953. 3C51493E273D095900F78617 /* CommonEditorCellSignature.m */,
  1954. 3C514936273D095800F78617 /* CommonEditorCellSwitch.h */,
  1955. 3C514934273D095800F78617 /* CommonEditorCellSwitch.m */,
  1956. 3C514946273D095900F78617 /* CommonEditorCellTextView.h */,
  1957. 3C514935273D095800F78617 /* CommonEditorCellTextView.m */,
  1958. 3C57678828D9B2DC00D1B5BF /* CommonEditorWebCell.h */,
  1959. 3C57678728D9B2DC00D1B5BF /* CommonEditorWebCell.m */,
  1960. 3C514952273D096A00F78617 /* CommonEditorViewController.h */,
  1961. 3C514951273D096A00F78617 /* CommonEditorViewController.m */,
  1962. 3C514954273D097E00F78617 /* CommonEditorTableContainerView.h */,
  1963. 3C514955273D097E00F78617 /* CommonEditorTableContainerView.m */,
  1964. 3C514957273D098700F78617 /* DatePickerViewController.h */,
  1965. 3C514958273D098700F78617 /* DatePickerViewController.m */,
  1966. 3C51495A273D099600F78617 /* EnumSelectorCell.h */,
  1967. 3C51495B273D099600F78617 /* EnumSelectorCell.m */,
  1968. 3C51495D273D09B800F78617 /* MonthPickerViewController.h */,
  1969. 3C51495E273D09B800F78617 /* MonthPickerViewController.m */,
  1970. 3C514964273D0A2F00F78617 /* SRMonthPicker.h */,
  1971. 3C514965273D0A2F00F78617 /* SRMonthPicker.m */,
  1972. 3C514960273D09E700F78617 /* CommonEditor.storyboard */,
  1973. 3C68315E2396094100AD5BD7 /* CommonEditor.iPad.xib */,
  1974. 3C6831632396094200AD5BD7 /* iPadCommonEditorCellAction.xib */,
  1975. 3C6831672396094200AD5BD7 /* iPadCommonEditorCellEdit.xib */,
  1976. 3C6831612396094200AD5BD7 /* iPadCommonEditorCellEnum.xib */,
  1977. 3C68315D2396094100AD5BD7 /* iPadCommonEditorCellImg.xib */,
  1978. 3C68315F2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib */,
  1979. 3C6831652396094200AD5BD7 /* iPadCommonEditorCellMAction.xib */,
  1980. 3C6831642396094200AD5BD7 /* iPadCommonEditorCellModel.xib */,
  1981. 3C6831662396094200AD5BD7 /* iPadCommonEditorCellSignature.xib */,
  1982. 3C6831602396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib */,
  1983. 3C6831622396094200AD5BD7 /* iPadCommonEditorCellTextView.xib */,
  1984. );
  1985. name = CommonEditor;
  1986. sourceTree = "<group>";
  1987. };
  1988. 71E9F6BD1F8B53AB0052C78E /* upload */ = {
  1989. isa = PBXGroup;
  1990. children = (
  1991. );
  1992. name = upload;
  1993. sourceTree = "<group>";
  1994. };
  1995. 71F731FC192F395000F2CF76 /* AutoScrollImage */ = {
  1996. isa = PBXGroup;
  1997. children = (
  1998. 7162A5031C586FC100AB630E /* CycleScrollView.h */,
  1999. 7162A5041C586FC100AB630E /* CycleScrollView.m */,
  2000. 7162A5051C586FC100AB630E /* NSTimer+Addition.h */,
  2001. 7162A5061C586FC100AB630E /* NSTimer+Addition.m */,
  2002. 7162A5071C586FC100AB630E /* SliderPage.h */,
  2003. 7162A5081C586FC100AB630E /* SliderPage.m */,
  2004. );
  2005. name = AutoScrollImage;
  2006. sourceTree = "<group>";
  2007. };
  2008. /* End PBXGroup section */
  2009. /* Begin PBXNativeTarget section */
  2010. 713F76A51929F4A7006A7305 /* HMLG Scan Order */ = {
  2011. isa = PBXNativeTarget;
  2012. buildConfigurationList = 713F76D81929F4A7006A7305 /* Build configuration list for PBXNativeTarget "HMLG Scan Order" */;
  2013. buildPhases = (
  2014. 713F76A21929F4A7006A7305 /* Sources */,
  2015. 713F76A31929F4A7006A7305 /* Frameworks */,
  2016. 713F76A41929F4A7006A7305 /* Resources */,
  2017. );
  2018. buildRules = (
  2019. );
  2020. dependencies = (
  2021. );
  2022. name = "HMLG Scan Order";
  2023. productName = "HMLG Scan Order";
  2024. productReference = 713F76A61929F4A7006A7305 /* HMLG Scan Order.app */;
  2025. productType = "com.apple.product-type.application";
  2026. };
  2027. /* End PBXNativeTarget section */
  2028. /* Begin PBXProject section */
  2029. 713F769E1929F4A7006A7305 /* Project object */ = {
  2030. isa = PBXProject;
  2031. attributes = {
  2032. LastUpgradeCheck = 1330;
  2033. ORGANIZATIONNAME = "United Software Applications, Inc";
  2034. TargetAttributes = {
  2035. 713F76A51929F4A7006A7305 = {
  2036. DevelopmentTeam = HXWLAA5YN5;
  2037. ProvisioningStyle = Automatic;
  2038. };
  2039. };
  2040. };
  2041. buildConfigurationList = 713F76A11929F4A7006A7305 /* Build configuration list for PBXProject "HMLG Scan Order" */;
  2042. compatibilityVersion = "Xcode 3.2";
  2043. developmentRegion = en;
  2044. hasScannedForEncodings = 0;
  2045. knownRegions = (
  2046. en,
  2047. Base,
  2048. );
  2049. mainGroup = 713F769D1929F4A7006A7305;
  2050. productRefGroup = 713F76A71929F4A7006A7305 /* Products */;
  2051. projectDirPath = "";
  2052. projectRoot = "";
  2053. targets = (
  2054. 713F76A51929F4A7006A7305 /* HMLG Scan Order */,
  2055. );
  2056. };
  2057. /* End PBXProject section */
  2058. /* Begin PBXResourcesBuildPhase section */
  2059. 713F76A41929F4A7006A7305 /* Resources */ = {
  2060. isa = PBXResourcesBuildPhase;
  2061. buildActionMask = 2147483647;
  2062. files = (
  2063. 7143E217202FD15A00451903 /* category.json in Resources */,
  2064. 7143E22B202FD37500451903 /* orderDetail.json in Resources */,
  2065. 7143E20F202FCEF600451903 /* CUL.storyboard in Resources */,
  2066. 3C68316B2396094200AD5BD7 /* iPadCommonEditorCellSwitch.xib in Resources */,
  2067. 3C6831582396082800AD5BD7 /* ERP_Mobile_Model.storyboard in Resources */,
  2068. 7143E20C202FCEEC00451903 /* OLM.storyboard in Resources */,
  2069. 3C4DA61F27B50199001EB44E /* Main.storyboard in Resources */,
  2070. 7142E87E1DC300690077EFA2 /* DejaVuSans-Bold.ttf in Resources */,
  2071. 3C6831682396094200AD5BD7 /* iPadCommonEditorCellImg.xib in Resources */,
  2072. 7142E87F1DC300690077EFA2 /* DejaVuSans.ttf in Resources */,
  2073. 7142E87A1DBF577A0077EFA2 /* KALINGA.TTF in Resources */,
  2074. 7142E87B1DBF577A0077EFA2 /* KALINGAB.TTF in Resources */,
  2075. 7143E228202FD2CA00451903 /* portfolio_2x3.json in Resources */,
  2076. 713F76C21929F4A7006A7305 /* Images.xcassets in Resources */,
  2077. 3C6831572396082800AD5BD7 /* ERP_Mobile_Cart.storyboard in Resources */,
  2078. 3C872A262797FE7C00BE1FC8 /* scan_order.json in Resources */,
  2079. 3C6831592396082800AD5BD7 /* ERP_Mobile_Search.storyboard in Resources */,
  2080. 3C514992273E091500F78617 /* PhotoList.storyboard in Resources */,
  2081. 42E489611EE63F4E007256A0 /* more_color_64.png in Resources */,
  2082. 713F76B41929F4A7006A7305 /* InfoPlist.strings in Resources */,
  2083. 7165662F1EF3ACD900CB897F /* photostack_video.html in Resources */,
  2084. 3CABBF122836224500FA3352 /* guest.json in Resources */,
  2085. 3C6831712396094200AD5BD7 /* iPadCommonEditorCellSignature.xib in Resources */,
  2086. 3C6831722396094200AD5BD7 /* iPadCommonEditorCellEdit.xib in Resources */,
  2087. 7162A5A01C58733400AB630E /* status_filter_cadedate_open.json in Resources */,
  2088. 71D30A211CFBEDC6006F9477 /* default_appearance.json in Resources */,
  2089. 3C68315A2396082800AD5BD7 /* ERP_Mobile_Contact.storyboard in Resources */,
  2090. 7161FEB71D61B24900157EE1 /* orderinfo.html in Resources */,
  2091. 3C69618423C7156D0075172A /* wkweb.storyboard in Resources */,
  2092. 3C68316D2396094200AD5BD7 /* iPadCommonEditorCellTextView.xib in Resources */,
  2093. 3C68315C2396082800AD5BD7 /* ERP_Mobile_Portfolio.storyboard in Resources */,
  2094. 7143E221202FD28900451903 /* placeOrderTemplate.json in Resources */,
  2095. 7161FEB51D61B24900157EE1 /* creditcardpayment.html in Resources */,
  2096. 7143E227202FD2CA00451903 /* portfolio_3x2.json in Resources */,
  2097. 7143E21A202FD1DC00451903 /* contactAdvanceSearch.json in Resources */,
  2098. 3C6831702396094200AD5BD7 /* iPadCommonEditorCellMAction.xib in Resources */,
  2099. 3C68315B2396082800AD5BD7 /* ERP_Mobile_Order.storyboard in Resources */,
  2100. 71E5A0101DC99370005BF655 /* config.plist in Resources */,
  2101. 71DF74951C57614C00F2789C /* PhotoBorder.png in Resources */,
  2102. 7143E229202FD2CA00451903 /* so.json in Resources */,
  2103. 3CC1122B279163F4004ACA57 /* offline_order_new_contact.json in Resources */,
  2104. 3C6831562396082800AD5BD7 /* ERP_Mobile_Discard.storyboard in Resources */,
  2105. 7162A55F1C58724700AB630E /* customer_info_template.json in Resources */,
  2106. 7141DD3D1C5726B700F7DF59 /* softScanBeep.wav in Resources */,
  2107. 3C68316F2396094200AD5BD7 /* iPadCommonEditorCellModel.xib in Resources */,
  2108. 3C3A5B0327D87BA1005F4EFB /* SO.storyboard in Resources */,
  2109. 4295AE1D1FE74D46007BE365 /* CommonEditorAutoCompleteView.xib in Resources */,
  2110. 3C872A1E27955CF300BE1FC8 /* scan_cart.json in Resources */,
  2111. 7141DD341C57269B00F7DF59 /* include in Resources */,
  2112. 7141DD601C5747CE00F7DF59 /* LICENSE in Resources */,
  2113. 3C68314D239607B500AD5BD7 /* ytplayer.html in Resources */,
  2114. 71D01ADD1E08CB1C006620CE /* signature.storyboard in Resources */,
  2115. 7143E22F202FD3CD00451903 /* order_info.html in Resources */,
  2116. 423CC87521D22FDE008BD2C4 /* Launch Screen.storyboard in Resources */,
  2117. 3C68316A2396094200AD5BD7 /* iPadCommonEditorCellLabel.xib in Resources */,
  2118. 7111E5721C76C557004763B3 /* customer_info_template_edit.json in Resources */,
  2119. 7161FEB61D61B24900157EE1 /* normalpayment.html in Resources */,
  2120. 3C68316C2396094200AD5BD7 /* iPadCommonEditorCellEnum.xib in Resources */,
  2121. 7143E214202FCFC000451903 /* debug_category_filter.json in Resources */,
  2122. 7143E220202FD28900451903 /* TearSheet.json in Resources */,
  2123. 71DF74961C57614C00F2789C /* PhotoBorder@2x.png in Resources */,
  2124. 7143E226202FD2CA00451903 /* so_thumb.json in Resources */,
  2125. 7165662E1EF3ACD900CB897F /* photostack_image.html in Resources */,
  2126. 3C6831692396094200AD5BD7 /* CommonEditor.iPad.xib in Resources */,
  2127. 3C51497D273E07D600F78617 /* EnumSelectAndSort.storyboard in Resources */,
  2128. 712AFEE51DBDAF0300254965 /* pdfcreator.xcassets in Resources */,
  2129. 7143E21B202FD1DC00451903 /* createContact.json in Resources */,
  2130. 7162A55E1C58724700AB630E /* customer_advanced_search.json in Resources */,
  2131. 3C514961273D09E700F78617 /* CommonEditor.storyboard in Resources */,
  2132. 3C68316E2396094200AD5BD7 /* iPadCommonEditorCellAction.xib in Resources */,
  2133. 7143E22E202FD3CD00451903 /* more_info.html in Resources */,
  2134. 3CF33C9027BF4A3D001CBEEC /* QRCode.storyboard in Resources */,
  2135. 7143E21D202FD21F00451903 /* editContact.json in Resources */,
  2136. 7162A5A11C58733400AB630E /* offline_status_filter_cadedate.json in Resources */,
  2137. 42B309791E45BA32007AFC62 /* status_filter_cadedate_po.json in Resources */,
  2138. );
  2139. runOnlyForDeploymentPostprocessing = 0;
  2140. };
  2141. /* End PBXResourcesBuildPhase section */
  2142. /* Begin PBXSourcesBuildPhase section */
  2143. 713F76A21929F4A7006A7305 /* Sources */ = {
  2144. isa = PBXSourcesBuildPhase;
  2145. buildActionMask = 2147483647;
  2146. files = (
  2147. 3C8855A727E2DB1A005DC3FA /* ScanModelListCell.m in Sources */,
  2148. 7141DD531C57459B00F7DF59 /* qrspec.c in Sources */,
  2149. 3C69618323C7156D0075172A /* WebViewController.m in Sources */,
  2150. 71BF07081D2F3D2800981938 /* SyncControlPanelViewController.m in Sources */,
  2151. 4289802D1E2492D2005F1BD8 /* PriceSettingViewController.m in Sources */,
  2152. 714036F921646B8C0029B10F /* AppDelegateBase.m in Sources */,
  2153. 71FFBBEA1C60894900D91DC2 /* RANetwork.m in Sources */,
  2154. 428980161E24924D005F1BD8 /* SortItemCell.m in Sources */,
  2155. 3C51495C273D099600F78617 /* EnumSelectorCell.m in Sources */,
  2156. 3C51494C273D095900F78617 /* CommonEditorCellMAction.m in Sources */,
  2157. 7162A59D1C58733400AB630E /* OrderDetailViewController.m in Sources */,
  2158. 7141DD3B1C5726B700F7DF59 /* DeviceInfo.m in Sources */,
  2159. 714037052164707E0029B10F /* MainHeaderViewColorPanel.m in Sources */,
  2160. 712AFEDC1DBA050200254965 /* PDFDrawable.m in Sources */,
  2161. 7195623C1CF57D1800C74A49 /* CategoryHeaderView.m in Sources */,
  2162. 3C51E7D327B2628900E61163 /* UIView+Toast.m in Sources */,
  2163. 3CD54A79282CF21D0073A15D /* ScanHomeViewController.m in Sources */,
  2164. 712AFED81DBA050200254965 /* GridDrawable.m in Sources */,
  2165. 424A02D11FFB3A0B0088DC56 /* RABackOrderSubmitAlertController.m in Sources */,
  2166. 7162A5C11C5873BB00AB630E /* FilterCellCadedate.m in Sources */,
  2167. 3C2F99B8237BE1790000808F /* PortfolioListTableViewCell.m in Sources */,
  2168. 71DF742B1C57560600F2789C /* Reachability.m in Sources */,
  2169. 7162A5701C58728D00AB630E /* DetailHeaderCell.m in Sources */,
  2170. 71BBA2271CEAC16000C91DED /* ZipArchive.mm in Sources */,
  2171. 7162A5491C58719D00AB630E /* RATreeView+TableViewDelegate.m in Sources */,
  2172. 3C514950273D095900F78617 /* CommonEditorCellModel.m in Sources */,
  2173. 3C51E7CC27B261EC00E61163 /* RAUploadListViewController.m in Sources */,
  2174. 428980451E249339005F1BD8 /* JKDotView.m in Sources */,
  2175. 7162A5B41C58738600AB630E /* ScannerControllerView.m in Sources */,
  2176. 7162A5831C5872EF00AB630E /* HomeTableViewCellSlide.m in Sources */,
  2177. 4289800A1E24918F005F1BD8 /* CartUtils.m in Sources */,
  2178. 7162A5851C5872EF00AB630E /* HomeViewController.m in Sources */,
  2179. 7162A5E31C5877CE00AB630E /* WatchListViewController.m in Sources */,
  2180. 715001FF1D114D9100F5927F /* BundleDetailButton.m in Sources */,
  2181. 7162A5421C58719D00AB630E /* RATreeNodeCollectionController.m in Sources */,
  2182. 7162A5DE1C5876E300AB630E /* RetrievePassViewController.m in Sources */,
  2183. 428980461E249339005F1BD8 /* JKLockButton.m in Sources */,
  2184. 71C1D8541F456D2700CEA1C9 /* ModelDescriptionController.m in Sources */,
  2185. 7143E212202FCF7600451903 /* CategoryCellNPD.m in Sources */,
  2186. 7141DD541C57459B00F7DF59 /* rscode.c in Sources */,
  2187. 7162A5E01C5876E300AB630E /* SettingViewController.m in Sources */,
  2188. 712AFEDB1DBA050200254965 /* LineDrawable.m in Sources */,
  2189. 71DF748B1C57608F00F2789C /* SimpleGrid.m in Sources */,
  2190. 7162A5171C58704600AB630E /* BundleModelViewController.m in Sources */,
  2191. 7162A5411C58719D00AB630E /* RATreeNode.m in Sources */,
  2192. 3C514947273D095900F78617 /* CommonEditorCellSwitch.m in Sources */,
  2193. 7162A5251C58706C00AB630E /* CategoryCellSmall.m in Sources */,
  2194. 712AFEDA1DBA050200254965 /* ImageDrawable.m in Sources */,
  2195. 428980721E24B1E9005F1BD8 /* RASingleton.m in Sources */,
  2196. 3C51E7BD27B2599E00E61163 /* ScanOrderListViewController.m in Sources */,
  2197. 3C514953273D096A00F78617 /* CommonEditorViewController.m in Sources */,
  2198. 71E9F6C21F8B57E40052C78E /* RANetworkTaskDelegate.m in Sources */,
  2199. 712C40B91C731126000E6831 /* ItemNotesViewController.m in Sources */,
  2200. 3CDDB268273A5A0400681F78 /* StrikethroughLabel.m in Sources */,
  2201. 7162A5AD1C58735900AB630E /* TearSheetParamViewController.m in Sources */,
  2202. 7141DD611C5747CE00F7DF59 /* NSData+Base64.m in Sources */,
  2203. 3CA6DDC128E54D1C003655FF /* CartViewController.m in Sources */,
  2204. 71BBA2431CEAEF0700C91DED /* zip.c in Sources */,
  2205. 7141DD5F1C5747CE00F7DF59 /* AESCrypt.m in Sources */,
  2206. 3C514959273D098700F78617 /* DatePickerViewController.m in Sources */,
  2207. 7162A5991C58733400AB630E /* OrderDetailHtmlCell.m in Sources */,
  2208. 7162A5091C586FC100AB630E /* CycleScrollView.m in Sources */,
  2209. 715F30BD1DAB37EB00490EED /* OfflineUnlockViewController.m in Sources */,
  2210. 7162A5161C58704600AB630E /* BundleModelCell.m in Sources */,
  2211. 42DC12F11F0CD98E00A4C011 /* OrderDetailPickInfoCell.m in Sources */,
  2212. 3CABE0232861A5E000CF0DC1 /* StockTableViewCell.m in Sources */,
  2213. 3C51494A273D095900F78617 /* CommonEditorCellEdit.m in Sources */,
  2214. 7141DD621C5747CE00F7DF59 /* NSData+CommonCrypto.m in Sources */,
  2215. 712AFED71DBA050200254965 /* BasicDrawable.m in Sources */,
  2216. 3C51494E273D095900F78617 /* CommonEditorCellImg.m in Sources */,
  2217. 71DF74891C57608F00F2789C /* RadioButton.m in Sources */,
  2218. 3CDDB26B273A5A1500681F78 /* CustomIOSAlertView.m in Sources */,
  2219. 3CF513A827F437CF004B4818 /* ScanSearchViewController.m in Sources */,
  2220. 7162A5DF1C5876E300AB630E /* ScannerSettingViewController.m in Sources */,
  2221. 71DF74831C57608F00F2789C /* ImageScrollerView.m in Sources */,
  2222. 71DF74871C57608F00F2789C /* NIDropDown.m in Sources */,
  2223. 710274251CC606C4009FD219 /* UserListViewController.m in Sources */,
  2224. 3CDDB265273A59EF00681F78 /* RTLabel.m in Sources */,
  2225. 3C51494D273D095900F78617 /* CommonEditorCellSignature.m in Sources */,
  2226. 3C4DA62527B503B1001EB44E /* MainViewController.m in Sources */,
  2227. 71DF74881C57608F00F2789C /* PulldownMenu.m in Sources */,
  2228. 7141DD551C57459B00F7DF59 /* split.c in Sources */,
  2229. 716AF8E11D7AA0E0001188E0 /* SelectUploadOrderViewController.m in Sources */,
  2230. 712AFEDF1DBA050200254965 /* TextDrawable.m in Sources */,
  2231. 7162A5611C58724700AB630E /* CustomerInfoViewController.m in Sources */,
  2232. 428980471E249339005F1BD8 /* JKLockController.m in Sources */,
  2233. 7162A5731C58728D00AB630E /* DetailTopicCell.m in Sources */,
  2234. 71BBA2421CEAEF0700C91DED /* unzip.c in Sources */,
  2235. 7162A5AC1C58735900AB630E /* PortfolioViewController.m in Sources */,
  2236. 71D01B1C1E0A2055006620CE /* TextUtils.m in Sources */,
  2237. 7162A5981C58733400AB630E /* CreateOrderViewController.m in Sources */,
  2238. 4289809E1E24B526005F1BD8 /* JKTimerManager.m in Sources */,
  2239. 3C514999273E097C00F78617 /* RAProgressHUD.m in Sources */,
  2240. 3C51494F273D095900F78617 /* CommonEditorCellAction.m in Sources */,
  2241. 7162A5021C586F5B00AB630E /* AddressEditorViewController.m in Sources */,
  2242. 71131F921CA1372300DBF6E2 /* SimplifiedBuyingProgramViewController.m in Sources */,
  2243. 7162A55C1C58724700AB630E /* ContactListTableViewCell.m in Sources */,
  2244. 7186C25D1C97A6EE00CB43F4 /* FunctionTestViewController.m in Sources */,
  2245. 71C1D84E1F456CAA00CEA1C9 /* HWWeakTimer.m in Sources */,
  2246. 3C514948273D095900F78617 /* CommonEditorCellTextView.m in Sources */,
  2247. 71D0344F1C9BF3C400E0F7AD /* PortfolioEditQTYViewController.m in Sources */,
  2248. 7162A5B51C58738600AB630E /* ScannerViewController.m in Sources */,
  2249. 3C51492F273CF9B900F78617 /* DBUtil.m in Sources */,
  2250. 716AF8E71D7AA398001188E0 /* SelectOrderTableViewCell.m in Sources */,
  2251. 713F76BA1929F4A7006A7305 /* AppDelegate.m in Sources */,
  2252. 71BF06FB1D2F3CAC00981938 /* OLDataProvider.m in Sources */,
  2253. 7162A59B1C58733400AB630E /* OrderDetailModelCell.m in Sources */,
  2254. 3C514994273E091500F78617 /* VideoPreviewCell.m in Sources */,
  2255. 71D01B1B1E0A2055006620CE /* PDFUtils.m in Sources */,
  2256. 3CDDB26E273A5A7800681F78 /* RAUtils.m in Sources */,
  2257. 3CF513A527F3FECF004B4818 /* ScanListCell.m in Sources */,
  2258. 7141DD4F1C57459B00F7DF59 /* mask.c in Sources */,
  2259. 7162A54E1C58722200AB630E /* CreditCardEditorViewController.m in Sources */,
  2260. 7162A5C31C5873BB00AB630E /* ItemSearchFilterViewController.m in Sources */,
  2261. 3C51497F273E07D600F78617 /* EnumSelectAndSortCell.m in Sources */,
  2262. 71D30A2D1CFC0EF8006F9477 /* DefaultImageButton.m in Sources */,
  2263. 7162A5841C5872EF00AB630E /* HomeTableViewCellTopic.m in Sources */,
  2264. 7162A59F1C58733400AB630E /* OrderListViewController.m in Sources */,
  2265. 4254CCDE1FB1AC2B00C8B4B6 /* RAOrderEditorViewController.m in Sources */,
  2266. 712AFEE21DBA077F00254965 /* pdfCreator.m in Sources */,
  2267. 71BBA2401CEAEF0700C91DED /* ioapi.c in Sources */,
  2268. 7162A5461C58719D00AB630E /* RATreeView+Enums.m in Sources */,
  2269. 7162A54B1C58719D00AB630E /* RAViewController.m in Sources */,
  2270. 71BBA2411CEAEF0700C91DED /* mztools.c in Sources */,
  2271. 3C2F437B28B748E800F50E0E /* PriceGroupListViewController.m in Sources */,
  2272. 7162A59C1C58733400AB630E /* OrderDetailPriceCell.m in Sources */,
  2273. 715850461CF6F0E500856B20 /* DefaultAppearance.m in Sources */,
  2274. 3C7E5A8E237BDB0C006D0105 /* PortfolioListViewController.m in Sources */,
  2275. 4295AE1C1FE74D46007BE365 /* CommonEditorAutoCompleteView.m in Sources */,
  2276. 7162A5B61C58738600AB630E /* SCShapeView.m in Sources */,
  2277. 71CB70751F99DF02009FDCB7 /* FileCache.m in Sources */,
  2278. 7162A54A1C58719D00AB630E /* RATreeView+UIScrollView.m in Sources */,
  2279. 7162A55D1C58724700AB630E /* ContactListViewController.m in Sources */,
  2280. 3C8855A427E2D9CC005DC3FA /* ScanOrderModelListViewController.m in Sources */,
  2281. 3C514995273E091500F78617 /* PhotoPreviewCell.m in Sources */,
  2282. 7162A5751C58728D00AB630E /* LineView.m in Sources */,
  2283. 712AFEDD1DBA050200254965 /* RAPDFPage.m in Sources */,
  2284. 428980481E249339005F1BD8 /* JKMessageBoxController.m in Sources */,
  2285. 7162A5741C58728D00AB630E /* DetailViewController.m in Sources */,
  2286. 3C2D0483285B242800423D97 /* ScanDiscountViewController.m in Sources */,
  2287. 71DF748E1C57608F00F2789C /* UILabel+FontAppearance.m in Sources */,
  2288. 712C40B61C7310F4000E6831 /* CartGeneralNotesViewController.m in Sources */,
  2289. 712AFEDE1DBA050200254965 /* TableDrawable.m in Sources */,
  2290. 7162A5CB1C58761500AB630E /* SignatureViewController.m in Sources */,
  2291. 7162A5DD1C5876E300AB630E /* PopupNavigationController.m in Sources */,
  2292. 3CD54A7C282CF4930073A15D /* ScanHomeCell.m in Sources */,
  2293. 7162A59E1C58733400AB630E /* OrderListTableViewCell.m in Sources */,
  2294. 714B1F401C7BF74100539193 /* OrderDetailSignatureCell.m in Sources */,
  2295. 4289802E1E2492D2005F1BD8 /* SetCategoryPriceController.m in Sources */,
  2296. 714036FC21646CFF0029B10F /* UIResponder+Router.m in Sources */,
  2297. 3C9F81D427F6E04300B4C511 /* SetupServerViewController.m in Sources */,
  2298. 71D01B1A1E0A2055006620CE /* ImageUtils.m in Sources */,
  2299. 3CF33C8F27BF4A3D001CBEEC /* RAQRCodeScannerViewController.m in Sources */,
  2300. 3CABE0202861A51F00CF0DC1 /* StockViewController.m in Sources */,
  2301. 7141DD521C57459B00F7DF59 /* qrinput.c in Sources */,
  2302. 7162A5601C58724700AB630E /* CustomerEditViewController.m in Sources */,
  2303. 7162A5DC1C5876E300AB630E /* LoginViewController.m in Sources */,
  2304. 3C16916C27FE7E3000026FE5 /* SignUpViewController.m in Sources */,
  2305. 3C9F81D727F831A500B4C511 /* ScanServerListViewController.m in Sources */,
  2306. 3C51495F273D09B800F78617 /* MonthPickerViewController.m in Sources */,
  2307. 3CF513A227F2FF31004B4818 /* ScanHistoryViewController.m in Sources */,
  2308. 4289805D1E249375005F1BD8 /* UIColor+JK_HEX.m in Sources */,
  2309. 7162A5811C5872EF00AB630E /* HomeTableViewCellBanner.m in Sources */,
  2310. 3C514956273D097E00F78617 /* CommonEditorTableContainerView.m in Sources */,
  2311. 7162A5E61C58781000AB630E /* iSalesNavigationController.m in Sources */,
  2312. 7141DD631C5747CE00F7DF59 /* NSString+Base64.m in Sources */,
  2313. 3C23B3F029CD70F9008E7C14 /* PopWaitAlert.m in Sources */,
  2314. 71E9F6BC1F8B52DD0052C78E /* NetworkUtils.m in Sources */,
  2315. 7162A5C41C5873BB00AB630E /* ItemSearchViewController.m in Sources */,
  2316. 7162A5481C58719D00AB630E /* RATreeView+TableViewDataSource.m in Sources */,
  2317. 3C514993273E091500F78617 /* ContentPreviewController.m in Sources */,
  2318. 71CB70781F99E338009FDCB7 /* RAConvertor.m in Sources */,
  2319. 7162A5DB1C5876E300AB630E /* CacheViewController.m in Sources */,
  2320. 7162A5C21C5873BB00AB630E /* FilterCellValue.m in Sources */,
  2321. 71DF74971C57614C00F2789C /* PhotoStackView.m in Sources */,
  2322. 3C473C9127C4D22900CC8C12 /* ScanUserListViewController.m in Sources */,
  2323. 7162A50B1C586FC100AB630E /* SliderPage.m in Sources */,
  2324. 712BABF31C897E3A0007466B /* CategorySearchFilterViewController.m in Sources */,
  2325. 71DF74981C57614C00F2789C /* PhotoStackViewController.m in Sources */,
  2326. 428980151E24924D005F1BD8 /* SortButton.m in Sources */,
  2327. 3C51E7CB27B261EC00E61163 /* RAUploadOperation.m in Sources */,
  2328. 3C514980273E07D600F78617 /* EnumModel.m in Sources */,
  2329. 7162A59A1C58733400AB630E /* OrderDetailInfoCell.m in Sources */,
  2330. 7162A5471C58719D00AB630E /* RATreeView+Private.m in Sources */,
  2331. 3CDDB262273A59DF00681F78 /* TouchImageView.m in Sources */,
  2332. 428980041E2490C1005F1BD8 /* NotificationNameCenter.m in Sources */,
  2333. 3C51497E273E07D600F78617 /* EnumSelectAndSortViewController.m in Sources */,
  2334. 4289802C1E2492D2005F1BD8 /* CategoryPriceViewController.m in Sources */,
  2335. 71DF748D1C57608F00F2789C /* TouchLabel.m in Sources */,
  2336. 3C68314E239607B500AD5BD7 /* RAYTPlayer.m in Sources */,
  2337. 3C514932273D092A00F78617 /* EnumSelectViewController.m in Sources */,
  2338. 428980171E24924D005F1BD8 /* SortItemViewController.m in Sources */,
  2339. 3CF33C8B27BF4936001CBEEC /* ServerSettingViewController.m in Sources */,
  2340. 7162A5711C58728D00AB630E /* DetailImageCell.m in Sources */,
  2341. 3C23B3F229CD70F9008E7C14 /* RAPopviewContainer.m in Sources */,
  2342. 7162A51A1C58704600AB630E /* ModelItemCell.m in Sources */,
  2343. 7141DD511C57459B00F7DF59 /* qrencode.c in Sources */,
  2344. 7162A5451C58719D00AB630E /* RATreeView.m in Sources */,
  2345. 3C514974273E074500F78617 /* CommonEditorCellEditor.m in Sources */,
  2346. 71DF74841C57608F00F2789C /* ImageScrollerViewController.m in Sources */,
  2347. 3C16916F280004E000026FE5 /* ChangePasswordViewController.m in Sources */,
  2348. 3CDDB25C273A564200681F78 /* DefaultTableHeaderView.m in Sources */,
  2349. 71DF74861C57608F00F2789C /* ImageViewController.m in Sources */,
  2350. 7162A5821C5872EF00AB630E /* HomeTableViewCellButtonBanner.m in Sources */,
  2351. 713F76B61929F4A7006A7305 /* main.m in Sources */,
  2352. 71BF06FE1D2F3CBA00981938 /* OfflineSettingViewController.m in Sources */,
  2353. 71DF74341C5757DA00F2789C /* ActiveViewController.m in Sources */,
  2354. 7162A5431C58719D00AB630E /* RATreeNodeInfo.m in Sources */,
  2355. 3C57678928D9B2DC00D1B5BF /* CommonEditorWebCell.m in Sources */,
  2356. 3C51494B273D095900F78617 /* CommonEditorCellLabel.m in Sources */,
  2357. 71FFBBE91C60894900D91DC2 /* iSalesDB.m in Sources */,
  2358. 7162A55B1C58724700AB630E /* ContactAdvanceSearchViewController.m in Sources */,
  2359. 7162A5441C58719D00AB630E /* RATreeNodeInfo+Private.m in Sources */,
  2360. 7162A5C51C5873BB00AB630E /* SearchViewController.m in Sources */,
  2361. 7162A5191C58704600AB630E /* EditModelPriceViewController.m in Sources */,
  2362. 3C514969273D0B1E00F78617 /* RADataProvider.m in Sources */,
  2363. 7162A5721C58728D00AB630E /* DetailKVCell.m in Sources */,
  2364. 7141DD501C57459B00F7DF59 /* QRCodeGenerator.m in Sources */,
  2365. 715671331E10A0EF006324A0 /* RectDrawable.m in Sources */,
  2366. 3C51E7D027B2623700E61163 /* UploadCell.m in Sources */,
  2367. 4289802B1E2492D2005F1BD8 /* CategoryPriceCell.m in Sources */,
  2368. 7162A5DA1C5876E300AB630E /* AboutViewController.m in Sources */,
  2369. 7141DD4E1C57459B00F7DF59 /* bitstream.c in Sources */,
  2370. 71DF74851C57608F00F2789C /* ImageUploadViewController.m in Sources */,
  2371. 3C514966273D0A2F00F78617 /* SRMonthPicker.m in Sources */,
  2372. 3C69618223C7156D0075172A /* RAPDFViewController.m in Sources */,
  2373. 7162A5CA1C58761500AB630E /* SignatureView.m in Sources */,
  2374. 3C3A5B0127D74F91005F4EFB /* ScanOrderScanModelViewController.m in Sources */,
  2375. 42BF67CC1E5179970081F90A /* ERPUtils.m in Sources */,
  2376. 42FD1A031FBD1A3000C5D9A8 /* RAOrderPreviewController.m in Sources */,
  2377. 3C8855AA27E85A0C005DC3FA /* ScanCartItemCell.m in Sources */,
  2378. 7141DD3C1C5726B700F7DF59 /* ScanApiHelper.mm in Sources */,
  2379. 7162A5261C58706C00AB630E /* CategoryViewController.m in Sources */,
  2380. 7162A50A1C586FC100AB630E /* NSTimer+Addition.m in Sources */,
  2381. 3C23B3F129CD70F9008E7C14 /* MessageBox.m in Sources */,
  2382. 3C3A5AFE27D74E50005F4EFB /* ScanResultViewController.m in Sources */,
  2383. 3C514949273D095900F78617 /* CommonEditorCellEnum.m in Sources */,
  2384. 712AFED91DBA050200254965 /* GroupDrawable.m in Sources */,
  2385. 3C51E7CD27B261EC00E61163 /* RAUploadManager.m in Sources */,
  2386. );
  2387. runOnlyForDeploymentPostprocessing = 0;
  2388. };
  2389. /* End PBXSourcesBuildPhase section */
  2390. /* Begin PBXVariantGroup section */
  2391. 3C4DA61D27B50199001EB44E /* Main.storyboard */ = {
  2392. isa = PBXVariantGroup;
  2393. children = (
  2394. 3C4DA61E27B50199001EB44E /* Base */,
  2395. );
  2396. name = Main.storyboard;
  2397. sourceTree = "<group>";
  2398. };
  2399. 713F76B21929F4A7006A7305 /* InfoPlist.strings */ = {
  2400. isa = PBXVariantGroup;
  2401. children = (
  2402. 713F76B31929F4A7006A7305 /* en */,
  2403. );
  2404. name = InfoPlist.strings;
  2405. sourceTree = "<group>";
  2406. };
  2407. 7143E208202FCEEB00451903 /* OLM.storyboard */ = {
  2408. isa = PBXVariantGroup;
  2409. children = (
  2410. 7143E209202FCEEB00451903 /* Base */,
  2411. );
  2412. name = OLM.storyboard;
  2413. sourceTree = "<group>";
  2414. };
  2415. /* End PBXVariantGroup section */
  2416. /* Begin XCBuildConfiguration section */
  2417. 713F76D61929F4A7006A7305 /* Debug */ = {
  2418. isa = XCBuildConfiguration;
  2419. buildSettings = {
  2420. ALWAYS_SEARCH_USER_PATHS = NO;
  2421. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2422. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2423. CLANG_CXX_LIBRARY = "libc++";
  2424. CLANG_ENABLE_MODULES = YES;
  2425. CLANG_ENABLE_OBJC_ARC = YES;
  2426. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2427. CLANG_WARN_BOOL_CONVERSION = YES;
  2428. CLANG_WARN_COMMA = YES;
  2429. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2430. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2431. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2432. CLANG_WARN_EMPTY_BODY = YES;
  2433. CLANG_WARN_ENUM_CONVERSION = YES;
  2434. CLANG_WARN_INFINITE_RECURSION = YES;
  2435. CLANG_WARN_INT_CONVERSION = YES;
  2436. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2437. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2438. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2439. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2440. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2441. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2442. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2443. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2444. CLANG_WARN_UNREACHABLE_CODE = YES;
  2445. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2446. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2447. COPY_PHASE_STRIP = NO;
  2448. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2449. ENABLE_TESTABILITY = YES;
  2450. GCC_C_LANGUAGE_STANDARD = gnu99;
  2451. GCC_DYNAMIC_NO_PIC = NO;
  2452. GCC_NO_COMMON_BLOCKS = YES;
  2453. GCC_OPTIMIZATION_LEVEL = 0;
  2454. GCC_PREPROCESSOR_DEFINITIONS = (
  2455. "DEBUG=1",
  2456. "$(inherited)",
  2457. );
  2458. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  2459. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2460. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2461. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2462. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2463. GCC_WARN_UNUSED_FUNCTION = YES;
  2464. GCC_WARN_UNUSED_VARIABLE = YES;
  2465. HEADER_SEARCH_PATHS = (
  2466. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
  2467. "$(PROJECT_DIR)/common/qrcode",
  2468. "$(PROJECT_DIR)/common/CommonEditor",
  2469. );
  2470. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  2471. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  2472. ONLY_ACTIVE_ARCH = YES;
  2473. SDKROOT = iphoneos;
  2474. TARGETED_DEVICE_FAMILY = 2;
  2475. };
  2476. name = Debug;
  2477. };
  2478. 713F76D71929F4A7006A7305 /* Release */ = {
  2479. isa = XCBuildConfiguration;
  2480. buildSettings = {
  2481. ALWAYS_SEARCH_USER_PATHS = NO;
  2482. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2483. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2484. CLANG_CXX_LIBRARY = "libc++";
  2485. CLANG_ENABLE_MODULES = YES;
  2486. CLANG_ENABLE_OBJC_ARC = YES;
  2487. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2488. CLANG_WARN_BOOL_CONVERSION = YES;
  2489. CLANG_WARN_COMMA = YES;
  2490. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2491. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2492. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2493. CLANG_WARN_EMPTY_BODY = YES;
  2494. CLANG_WARN_ENUM_CONVERSION = YES;
  2495. CLANG_WARN_INFINITE_RECURSION = YES;
  2496. CLANG_WARN_INT_CONVERSION = YES;
  2497. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2498. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2499. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2500. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2501. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2502. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2503. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2504. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2505. CLANG_WARN_UNREACHABLE_CODE = YES;
  2506. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2507. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2508. COPY_PHASE_STRIP = YES;
  2509. ENABLE_NS_ASSERTIONS = NO;
  2510. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2511. GCC_C_LANGUAGE_STANDARD = gnu99;
  2512. GCC_NO_COMMON_BLOCKS = YES;
  2513. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2514. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2515. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2516. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2517. GCC_WARN_UNUSED_FUNCTION = YES;
  2518. GCC_WARN_UNUSED_VARIABLE = YES;
  2519. HEADER_SEARCH_PATHS = (
  2520. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/include",
  2521. "$(PROJECT_DIR)/common/qrcode",
  2522. "$(PROJECT_DIR)/common/CommonEditor",
  2523. );
  2524. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  2525. LIBRARY_SEARCH_PATHS = "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib";
  2526. SDKROOT = iphoneos;
  2527. TARGETED_DEVICE_FAMILY = 2;
  2528. VALIDATE_PRODUCT = YES;
  2529. };
  2530. name = Release;
  2531. };
  2532. 713F76D91929F4A7006A7305 /* Debug */ = {
  2533. isa = XCBuildConfiguration;
  2534. buildSettings = {
  2535. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2536. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = NO;
  2537. CODE_SIGN_IDENTITY = "iPhone Developer";
  2538. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2539. CURRENT_PROJECT_VERSION = 53305;
  2540. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2541. FRAMEWORK_SEARCH_PATHS = (
  2542. "$(inherited)",
  2543. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseAnalytics/Frameworks",
  2544. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseCore/Frameworks",
  2545. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseInstanceID/Frameworks",
  2546. "$(PROJECT_DIR)/GoogleAnalytics/Google/Frameworks",
  2547. );
  2548. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2549. GCC_PREFIX_HEADER = "HMLG Scan Order/HMLG Scan Order-Prefix.pch";
  2550. INFOPLIST_FILE = "$(SRCROOT)/HMLG Scan Order/HMLG Scan Order-Info.plist";
  2551. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  2552. LIBRARY_SEARCH_PATHS = (
  2553. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib",
  2554. "$(PROJECT_DIR)/GoogleAnalytics/GoogleAnalytics/Libraries",
  2555. );
  2556. MARKETING_VERSION = 1.35;
  2557. OTHER_LDFLAGS = (
  2558. "$(inherited)",
  2559. "-ObjC",
  2560. "-framework",
  2561. "\"CoreGraphics\"",
  2562. "-framework",
  2563. "\"MobileCoreServices\"",
  2564. "-framework",
  2565. "\"Security\"",
  2566. "-framework",
  2567. "\"SystemConfiguration\"",
  2568. "-v",
  2569. );
  2570. PRODUCT_BUNDLE_IDENTIFIER = "usai.hmlg.Scan-Order";
  2571. PRODUCT_NAME = "HMLG Scan Order";
  2572. PROVISIONING_PROFILE = "";
  2573. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2574. SUPPORTS_MACCATALYST = NO;
  2575. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  2576. TARGETED_DEVICE_FAMILY = 2;
  2577. WRAPPER_EXTENSION = app;
  2578. };
  2579. name = Debug;
  2580. };
  2581. 713F76DA1929F4A7006A7305 /* Release */ = {
  2582. isa = XCBuildConfiguration;
  2583. buildSettings = {
  2584. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2585. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = NO;
  2586. CODE_SIGN_IDENTITY = "iPhone Developer";
  2587. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2588. CURRENT_PROJECT_VERSION = 53305;
  2589. DEVELOPMENT_TEAM = HXWLAA5YN5;
  2590. FRAMEWORK_SEARCH_PATHS = (
  2591. "$(inherited)",
  2592. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseAnalytics/Frameworks",
  2593. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseCore/Frameworks",
  2594. "$(PROJECT_DIR)/GoogleAnalytics/FirebaseInstanceID/Frameworks",
  2595. "$(PROJECT_DIR)/GoogleAnalytics/Google/Frameworks",
  2596. );
  2597. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2598. GCC_PREFIX_HEADER = "HMLG Scan Order/HMLG Scan Order-Prefix.pch";
  2599. INFOPLIST_FILE = "$(SRCROOT)/HMLG Scan Order/HMLG Scan Order-Info.plist";
  2600. IPHONEOS_DEPLOYMENT_TARGET = 15.0;
  2601. LIBRARY_SEARCH_PATHS = (
  2602. "$(PROJECT_DIR)/ScanApiSDK-10.2.227-2/lib",
  2603. "$(PROJECT_DIR)/GoogleAnalytics/GoogleAnalytics/Libraries",
  2604. );
  2605. MARKETING_VERSION = 1.35;
  2606. OTHER_LDFLAGS = (
  2607. "$(inherited)",
  2608. "-ObjC",
  2609. "-framework",
  2610. "\"CoreGraphics\"",
  2611. "-framework",
  2612. "\"MobileCoreServices\"",
  2613. "-framework",
  2614. "\"Security\"",
  2615. "-framework",
  2616. "\"SystemConfiguration\"",
  2617. "-v",
  2618. );
  2619. PRODUCT_BUNDLE_IDENTIFIER = "usai.hmlg.Scan-Order";
  2620. PRODUCT_NAME = "HMLG Scan Order";
  2621. PROVISIONING_PROFILE = "";
  2622. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2623. SUPPORTS_MACCATALYST = NO;
  2624. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  2625. TARGETED_DEVICE_FAMILY = 2;
  2626. WRAPPER_EXTENSION = app;
  2627. };
  2628. name = Release;
  2629. };
  2630. /* End XCBuildConfiguration section */
  2631. /* Begin XCConfigurationList section */
  2632. 713F76A11929F4A7006A7305 /* Build configuration list for PBXProject "HMLG Scan Order" */ = {
  2633. isa = XCConfigurationList;
  2634. buildConfigurations = (
  2635. 713F76D61929F4A7006A7305 /* Debug */,
  2636. 713F76D71929F4A7006A7305 /* Release */,
  2637. );
  2638. defaultConfigurationIsVisible = 0;
  2639. defaultConfigurationName = Release;
  2640. };
  2641. 713F76D81929F4A7006A7305 /* Build configuration list for PBXNativeTarget "HMLG Scan Order" */ = {
  2642. isa = XCConfigurationList;
  2643. buildConfigurations = (
  2644. 713F76D91929F4A7006A7305 /* Debug */,
  2645. 713F76DA1929F4A7006A7305 /* Release */,
  2646. );
  2647. defaultConfigurationIsVisible = 0;
  2648. defaultConfigurationName = Release;
  2649. };
  2650. /* End XCConfigurationList section */
  2651. };
  2652. rootObject = 713F769E1929F4A7006A7305 /* Project object */;
  2653. }