project.pbxproj 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. A13BCE831C3B47A500C76527 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCE821C3B47A500C76527 /* main.m */; };
  10. A13BCE8C1C3B47A500C76527 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BCE8A1C3B47A500C76527 /* Main.storyboard */; };
  11. A13BCE8E1C3B47A500C76527 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A13BCE8D1C3B47A500C76527 /* Assets.xcassets */; };
  12. A13BCE9C1C3B47A500C76527 /* OneCableTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCE9B1C3B47A500C76527 /* OneCableTests.m */; };
  13. A13BCFDA1C3B491400C76527 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEAF1C3B491300C76527 /* AppDelegate.m */; };
  14. A13BCFDB1C3B491400C76527 /* GTMNSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEB21C3B491300C76527 /* GTMNSString+HTML.m */; };
  15. A13BCFDC1C3B491400C76527 /* NSArray-Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEB41C3B491300C76527 /* NSArray-Addtions.m */; };
  16. A13BCFDD1C3B491400C76527 /* NSData+AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEB61C3B491300C76527 /* NSData+AESCrypt.m */; };
  17. A13BCFDE1C3B491400C76527 /* NSDate+Utilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEB81C3B491300C76527 /* NSDate+Utilities.m */; };
  18. A13BCFDF1C3B491400C76527 /* NSDictionary-Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEBA1C3B491300C76527 /* NSDictionary-Additions.m */; };
  19. A13BCFE01C3B491400C76527 /* NSString-Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEBC1C3B491300C76527 /* NSString-Addtions.m */; };
  20. A13BCFE11C3B491400C76527 /* SortDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEBE1C3B491300C76527 /* SortDictionary.m */; };
  21. A13BCFE21C3B491400C76527 /* UIDevice-Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC01C3B491300C76527 /* UIDevice-Reachability.m */; };
  22. A13BCFE31C3B491400C76527 /* UIImage+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC21C3B491300C76527 /* UIImage+Addtions.m */; };
  23. A13BCFE41C3B491400C76527 /* UITableView+EnumarateCells.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC41C3B491300C76527 /* UITableView+EnumarateCells.m */; };
  24. A13BCFE51C3B491400C76527 /* UIView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC61C3B491300C76527 /* UIView+Additions.m */; };
  25. A13BCFE61C3B491400C76527 /* UIView+AutoLayoutDebugging.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC81C3B491300C76527 /* UIView+AutoLayoutDebugging.m */; };
  26. A13BCFE71C3B491400C76527 /* UIView+Toast.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCECA1C3B491300C76527 /* UIView+Toast.m */; };
  27. A13BCFE81C3B491400C76527 /* UIViewController-ActionSheetSimulation.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCECC1C3B491300C76527 /* UIViewController-ActionSheetSimulation.m */; };
  28. A13BCFE91C3B491400C76527 /* CommandClassControlDetailView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCED01C3B491300C76527 /* CommandClassControlDetailView.m */; };
  29. A13BCFEA1C3B491400C76527 /* CommandClassControlDetailView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCED11C3B491300C76527 /* CommandClassControlDetailView.xib */; };
  30. A13BCFEB1C3B491400C76527 /* CommandClassControlNodeView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCED31C3B491300C76527 /* CommandClassControlNodeView.m */; };
  31. A13BCFEC1C3B491400C76527 /* CommandClassControlNodeView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCED41C3B491300C76527 /* CommandClassControlNodeView.xib */; };
  32. A13BCFED1C3B491400C76527 /* CommandClassControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCED61C3B491300C76527 /* CommandClassControlView.m */; };
  33. A13BCFEE1C3B491400C76527 /* CommandClassControlView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCED71C3B491300C76527 /* CommandClassControlView.xib */; };
  34. A13BCFEF1C3B491400C76527 /* DeviceNodePopupTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCED81C3B491300C76527 /* DeviceNodePopupTableViewCell.xib */; };
  35. A13BCFF01C3B491400C76527 /* DeviceNodePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEDA1C3B491300C76527 /* DeviceNodePopupView.m */; };
  36. A13BCFF11C3B491400C76527 /* DeviceNodePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEDB1C3B491300C76527 /* DeviceNodePopupView.xib */; };
  37. A13BCFF21C3B491400C76527 /* DeviceSelectPopupTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEDC1C3B491300C76527 /* DeviceSelectPopupTableViewCell.xib */; };
  38. A13BCFF31C3B491400C76527 /* DeviceSelectPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEDE1C3B491300C76527 /* DeviceSelectPopupView.m */; };
  39. A13BCFF41C3B491400C76527 /* DeviceSelectPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEDF1C3B491300C76527 /* DeviceSelectPopupView.xib */; };
  40. A13BCFF51C3B491400C76527 /* JDProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEE11C3B491300C76527 /* JDProgressHUD.m */; };
  41. A13BCFF61C3B491400C76527 /* KNTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEE31C3B491300C76527 /* KNTableViewCell.m */; };
  42. A13BCFF71C3B491400C76527 /* MultiLevelPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEE51C3B491300C76527 /* MultiLevelPopupView.m */; };
  43. A13BCFF81C3B491400C76527 /* MultiLevelPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEE61C3B491300C76527 /* MultiLevelPopupView.xib */; };
  44. A13BCFF91C3B491400C76527 /* NoContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEE81C3B491300C76527 /* NoContentView.m */; };
  45. A13BCFFA1C3B491400C76527 /* NoContentView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEE91C3B491300C76527 /* NoContentView.xib */; };
  46. A13BCFFB1C3B491400C76527 /* OptionPopOverViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEEB1C3B491300C76527 /* OptionPopOverViewController.m */; };
  47. A13BCFFC1C3B491400C76527 /* PopTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEED1C3B491300C76527 /* PopTableView.m */; };
  48. A13BCFFD1C3B491400C76527 /* PopTableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEEE1C3B491300C76527 /* PopTableView.xib */; };
  49. A13BD0041C3B491400C76527 /* CustomAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEF91C3B491300C76527 /* CustomAlertView.m */; };
  50. A13BD0051C3B491400C76527 /* CustomAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEFA1C3B491300C76527 /* CustomAlertView.xib */; };
  51. A13BD0061C3B491400C76527 /* CustomButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEFC1C3B491300C76527 /* CustomButton.m */; };
  52. A13BD0071C3B491400C76527 /* CustomCheckBox.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEFE1C3B491300C76527 /* CustomCheckBox.m */; };
  53. A13BD0081C3B491400C76527 /* CustomImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF001C3B491300C76527 /* CustomImageView.m */; };
  54. A13BD0091C3B491400C76527 /* CustomLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF021C3B491300C76527 /* CustomLabel.m */; };
  55. A13BD00A1C3B491400C76527 /* CustomLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF041C3B491300C76527 /* CustomLoadingView.m */; };
  56. A13BD00B1C3B491400C76527 /* CustomPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF061C3B491300C76527 /* CustomPicker.m */; };
  57. A13BD00C1C3B491400C76527 /* CustomRadioGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF081C3B491300C76527 /* CustomRadioGroup.m */; };
  58. A13BD00D1C3B491400C76527 /* CustomShapeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF0A1C3B491300C76527 /* CustomShapeButton.m */; };
  59. A13BD00E1C3B491400C76527 /* CustomSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF0C1C3B491300C76527 /* CustomSwitch.m */; };
  60. A13BD00F1C3B491400C76527 /* CustomTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF0E1C3B491300C76527 /* CustomTableView.m */; };
  61. A13BD0101C3B491400C76527 /* CustomTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF101C3B491300C76527 /* CustomTextField.m */; };
  62. A13BD0111C3B491400C76527 /* CustomTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF121C3B491400C76527 /* CustomTextView.m */; };
  63. A13BD0121C3B491400C76527 /* DatePickerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF141C3B491400C76527 /* DatePickerButton.m */; };
  64. A13BD0131C3B491400C76527 /* SelectButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF161C3B491400C76527 /* SelectButton.m */; };
  65. A13BD0141C3B491400C76527 /* TimePickerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF181C3B491400C76527 /* TimePickerButton.m */; };
  66. A13BD0151C3B491400C76527 /* RequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF1C1C3B491400C76527 /* RequestHandler.m */; };
  67. A13BD0161C3B491400C76527 /* JDFacade.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF1E1C3B491400C76527 /* JDFacade.m */; };
  68. A13BD0171C3B491400C76527 /* JDObject.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF201C3B491400C76527 /* JDObject.m */; };
  69. A13BD0181C3B491400C76527 /* DeviceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF231C3B491400C76527 /* DeviceModel.m */; };
  70. A13BD0191C3B491400C76527 /* ItemModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF251C3B491400C76527 /* ItemModel.m */; };
  71. A13BD01A1C3B491400C76527 /* JDJSONModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF271C3B491400C76527 /* JDJSONModel.m */; };
  72. A13BD01B1C3B491400C76527 /* LoginModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF291C3B491400C76527 /* LoginModel.m */; };
  73. A13BD01C1C3B491400C76527 /* ModeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF2B1C3B491400C76527 /* ModeModel.m */; };
  74. A13BD01D1C3B491400C76527 /* RuleModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF2D1C3B491400C76527 /* RuleModel.m */; };
  75. A13BD01E1C3B491400C76527 /* SceneModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF2F1C3B491400C76527 /* SceneModel.m */; };
  76. A13BD01F1C3B491400C76527 /* CommonUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF321C3B491400C76527 /* CommonUtil.m */; };
  77. A13BD0201C3B491400C76527 /* CypherUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF341C3B491400C76527 /* CypherUtil.m */; };
  78. A13BD0211C3B491400C76527 /* ImageUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF361C3B491400C76527 /* ImageUtil.m */; };
  79. A13BD0221C3B491400C76527 /* JDUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF381C3B491400C76527 /* JDUserDefaults.m */; };
  80. A13BD0231C3B491400C76527 /* UIDeviceUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF3A1C3B491400C76527 /* UIDeviceUtil.m */; };
  81. A13BD0241C3B491400C76527 /* ValidateUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF3C1C3B491400C76527 /* ValidateUtil.m */; };
  82. A13BD0251C3B491400C76527 /* WebBrowseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF401C3B491400C76527 /* WebBrowseViewController.m */; };
  83. A13BD0261C3B491400C76527 /* HomeHubChangeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF431C3B491400C76527 /* HomeHubChangeViewController.m */; };
  84. A13BD0291C3B491400C76527 /* HomeHubInitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF491C3B491400C76527 /* HomeHubInitViewController.m */; };
  85. A13BD02D1C3B491400C76527 /* HomeHubViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF511C3B491400C76527 /* HomeHubViewController.m */; };
  86. A13BD02E1C3B491400C76527 /* QRCodeInputPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF531C3B491400C76527 /* QRCodeInputPopupView.m */; };
  87. A13BD02F1C3B491400C76527 /* QRCodeInputPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCF541C3B491400C76527 /* QRCodeInputPopupView.xib */; };
  88. A13BD0301C3B491400C76527 /* QRCodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF561C3B491400C76527 /* QRCodeViewController.m */; };
  89. A13BD0311C3B491400C76527 /* HomeMemberAddViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF5A1C3B491400C76527 /* HomeMemberAddViewController.m */; };
  90. A13BD0321C3B491400C76527 /* HomeMemberViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF5C1C3B491400C76527 /* HomeMemberViewController.m */; };
  91. A13BD0331C3B491400C76527 /* JDTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF5E1C3B491400C76527 /* JDTableViewController.m */; };
  92. A13BD0341C3B491400C76527 /* JDViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF601C3B491400C76527 /* JDViewController.m */; };
  93. A13BD0351C3B491400C76527 /* HomeModeSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF631C3B491400C76527 /* HomeModeSettingsViewController.m */; };
  94. A13BD0361C3B491400C76527 /* HomeModeUpdateViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF651C3B491400C76527 /* HomeModeUpdateViewController.m */; };
  95. A13BD0371C3B491400C76527 /* IntroViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF671C3B491400C76527 /* IntroViewController.m */; };
  96. A13BD0381C3B491400C76527 /* InvitationAnswerPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF691C3B491400C76527 /* InvitationAnswerPopupView.m */; };
  97. A13BD0391C3B491400C76527 /* InvitationAnswerPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCF6A1C3B491400C76527 /* InvitationAnswerPopupView.xib */; };
  98. A13BD03A1C3B491400C76527 /* InvitationAnswerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF6C1C3B491400C76527 /* InvitationAnswerViewController.m */; };
  99. A13BD03B1C3B491400C76527 /* InvitationListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF6E1C3B491400C76527 /* InvitationListViewController.m */; };
  100. A13BD03C1C3B491400C76527 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF701C3B491400C76527 /* LoginViewController.m */; };
  101. A13BD03D1C3B491400C76527 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF721C3B491400C76527 /* MainViewController.m */; };
  102. A13BD03E1C3B491400C76527 /* MessageBoxViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF741C3B491400C76527 /* MessageBoxViewController.m */; };
  103. A13BD03F1C3B491400C76527 /* NoticeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF761C3B491400C76527 /* NoticeViewController.m */; };
  104. A13BD0401C3B491400C76527 /* ResetPwdViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF781C3B491400C76527 /* ResetPwdViewController.m */; };
  105. A13BD0411C3B491400C76527 /* RulesAddCompleteViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF7B1C3B491400C76527 /* RulesAddCompleteViewController.m */; };
  106. A13BD0421C3B491400C76527 /* RulesAddViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF7D1C3B491400C76527 /* RulesAddViewController.m */; };
  107. A13BD0431C3B491400C76527 /* RulesConditionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF7F1C3B491400C76527 /* RulesConditionViewController.m */; };
  108. A13BD0441C3B491400C76527 /* RulesDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF811C3B491400C76527 /* RulesDetailViewController.m */; };
  109. A13BD0451C3B491400C76527 /* RulesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF831C3B491400C76527 /* RulesViewController.m */; };
  110. A13BD04E1C3B491400C76527 /* DeleteAccountPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF961C3B491400C76527 /* DeleteAccountPopupView.m */; };
  111. A13BD04F1C3B491400C76527 /* DeleteAccountPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCF971C3B491400C76527 /* DeleteAccountPopupView.xib */; };
  112. A13BD0501C3B491400C76527 /* GoodbyeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF991C3B491400C76527 /* GoodbyeViewController.m */; };
  113. A13BD0511C3B491400C76527 /* PwdPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF9B1C3B491400C76527 /* PwdPopupView.m */; };
  114. A13BD0521C3B491400C76527 /* PwdPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCF9C1C3B491400C76527 /* PwdPopupView.xib */; };
  115. A13BD0541C3B491400C76527 /* SettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFA01C3B491400C76527 /* SettingsViewController.m */; };
  116. A13BD0561C3B491400C76527 /* AgreementViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFA51C3B491400C76527 /* AgreementViewController.m */; };
  117. A13BD0571C3B491400C76527 /* NewMobileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFA71C3B491400C76527 /* NewMobileViewController.m */; };
  118. A13BD0581C3B491400C76527 /* SignUpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFA91C3B491400C76527 /* SignUpViewController.m */; };
  119. A13BD05F1C3B491400C76527 /* ModifyDeviceNamePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFB51C3B491400C76527 /* ModifyDeviceNamePopupView.m */; };
  120. A13BD0601C3B491400C76527 /* ModifyDeviceNamePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCFB61C3B491400C76527 /* ModifyDeviceNamePopupView.xib */; };
  121. A13BD0611C3B491400C76527 /* ModifySecureKeyPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFB81C3B491400C76527 /* ModifySecureKeyPopupView.m */; };
  122. A13BD0621C3B491400C76527 /* ModifySecureKeyPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCFB91C3B491400C76527 /* ModifySecureKeyPopupView.xib */; };
  123. A13BD0651C3B491400C76527 /* ThingsAddCompleteViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFBE1C3B491400C76527 /* ThingsAddCompleteViewController.m */; };
  124. A13BD0661C3B491400C76527 /* ThingsAddFailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC01C3B491400C76527 /* ThingsAddFailViewController.m */; };
  125. A13BD0671C3B491400C76527 /* ThingsAddIncludeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC21C3B491400C76527 /* ThingsAddIncludeViewController.m */; };
  126. A13BD0681C3B491400C76527 /* ThingsAddStartViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC41C3B491400C76527 /* ThingsAddStartViewController.m */; };
  127. A13BD0691C3B491400C76527 /* ThingsAddViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC61C3B491400C76527 /* ThingsAddViewController.m */; };
  128. A13BD06A1C3B491400C76527 /* ThingsDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC81C3B491400C76527 /* ThingsDetailViewController.m */; };
  129. A13BD06B1C3B491400C76527 /* ThingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFCA1C3B491400C76527 /* ThingsViewController.m */; };
  130. A13BD0701C3B491400C76527 /* JDUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFD41C3B491400C76527 /* JDUUID.m */; };
  131. A13BD0711C3B491400C76527 /* KeychainItemWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFD61C3B491400C76527 /* KeychainItemWrapper.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  132. A13BD0721C3B491400C76527 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFD91C3B491400C76527 /* Reachability.m */; };
  133. A13BD0831C3B492A00C76527 /* Common.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0731C3B492A00C76527 /* Common.storyboard */; };
  134. A13BD0841C3B492A00C76527 /* HomeHub.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0751C3B492A00C76527 /* HomeHub.storyboard */; };
  135. A13BD0851C3B492A00C76527 /* HomeMember.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0771C3B492A00C76527 /* HomeMember.storyboard */; };
  136. A13BD0861C3B492A00C76527 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0791C3B492A00C76527 /* Localizable.strings */; };
  137. A13BD0871C3B492A00C76527 /* Rules.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD07B1C3B492A00C76527 /* Rules.storyboard */; };
  138. A13BD0881C3B492A00C76527 /* Settings.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD07D1C3B492A00C76527 /* Settings.storyboard */; };
  139. A13BD0891C3B492A00C76527 /* SignUp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD07F1C3B492A00C76527 /* SignUp.storyboard */; };
  140. A13BD08A1C3B492A00C76527 /* Things.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0811C3B492A00C76527 /* Things.storyboard */; };
  141. A13BD0D11C3B563D00C76527 /* DaylightPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0BB1C3B563D00C76527 /* DaylightPopupView.m */; };
  142. A13BD0D21C3B563D00C76527 /* DaylightPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0BC1C3B563D00C76527 /* DaylightPopupView.xib */; };
  143. A13BD0D31C3B563D00C76527 /* ExternHeatPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0BE1C3B563D00C76527 /* ExternHeatPopupView.m */; };
  144. A13BD0D41C3B563D00C76527 /* ExternHeatPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0BF1C3B563D00C76527 /* ExternHeatPopupView.xib */; };
  145. A13BD0D51C3B563D00C76527 /* RulesConditionHomeModePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0C11C3B563D00C76527 /* RulesConditionHomeModePopupView.m */; };
  146. A13BD0D61C3B563D00C76527 /* RulesConditionHomeModePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0C21C3B563D00C76527 /* RulesConditionHomeModePopupView.xib */; };
  147. A13BD0D71C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0C31C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib */; };
  148. A13BD0D81C3B563D00C76527 /* TemperaturePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0C51C3B563D00C76527 /* TemperaturePopupView.m */; };
  149. A13BD0D91C3B563D00C76527 /* TemperaturePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0C61C3B563D00C76527 /* TemperaturePopupView.xib */; };
  150. A13BD0DA1C3B563D00C76527 /* TimePickerPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0C81C3B563D00C76527 /* TimePickerPopupView.m */; };
  151. A13BD0DB1C3B563D00C76527 /* TimePickerPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0C91C3B563D00C76527 /* TimePickerPopupView.xib */; };
  152. A13BD0DC1C3B563D00C76527 /* TriggerSelectPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0CB1C3B563D00C76527 /* TriggerSelectPopupView.m */; };
  153. A13BD0DD1C3B563D00C76527 /* TriggerSelectPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0CC1C3B563D00C76527 /* TriggerSelectPopupView.xib */; };
  154. A13BD0DE1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0CD1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib */; };
  155. A13BD0DF1C3B563D00C76527 /* WeatherLocationPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0CF1C3B563D00C76527 /* WeatherLocationPopupView.m */; };
  156. A13BD0E01C3B563D00C76527 /* WeatherLocationPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0D01C3B563D00C76527 /* WeatherLocationPopupView.xib */; };
  157. A13CF0B198FAC0CED7681725 /* Pods_OneCable.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5739681EFCCBD7EEE2419150 /* Pods_OneCable.framework */; };
  158. A15D2CFC1C58598F0018D555 /* KNLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = A15D2CFB1C58598F0018D555 /* KNLayoutConstraint.m */; };
  159. A15D2CFF1C588FBB0018D555 /* KNView.m in Sources */ = {isa = PBXBuildFile; fileRef = A15D2CFE1C588FBB0018D555 /* KNView.m */; };
  160. A16A1CC41C71728400F92BC1 /* NetworkServiceHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A16A1CC31C71728400F92BC1 /* NetworkServiceHandler.m */; };
  161. A16D937E1C5600D300DC0DF1 /* DurationPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A16D937C1C5600D300DC0DF1 /* DurationPopupView.m */; };
  162. A16D937F1C5600D300DC0DF1 /* DurationPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A16D937D1C5600D300DC0DF1 /* DurationPopupView.xib */; };
  163. A191B4841C4495AE00DEBA91 /* WelcomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A191B4831C4495AE00DEBA91 /* WelcomeViewController.m */; };
  164. A191B4871C44985200DEBA91 /* UIWindow+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = A191B4861C44985200DEBA91 /* UIWindow+Addtions.m */; };
  165. A191B48E1C4639F900DEBA91 /* AdminAuthPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A191B48C1C4639F900DEBA91 /* AdminAuthPopupView.m */; };
  166. A191B48F1C4639F900DEBA91 /* AdminAuthPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A191B48D1C4639F900DEBA91 /* AdminAuthPopupView.xib */; };
  167. A1A454891C476CDE00BA805C /* ChangeNamePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A454871C476CDE00BA805C /* ChangeNamePopupView.m */; };
  168. A1A4548A1C476CDE00BA805C /* ChangeNamePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A1A454881C476CDE00BA805C /* ChangeNamePopupView.xib */; };
  169. A1A4548E1C47736D00BA805C /* ConfirmPasswdPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A4548C1C47736D00BA805C /* ConfirmPasswdPopupView.m */; };
  170. A1A4548F1C47736D00BA805C /* ConfirmPasswdPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A1A4548D1C47736D00BA805C /* ConfirmPasswdPopupView.xib */; };
  171. A1A454931C477ACD00BA805C /* ChangeEmailPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A454911C477ACD00BA805C /* ChangeEmailPopupView.m */; };
  172. A1A454941C477ACD00BA805C /* ChangeEmailPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A1A454921C477ACD00BA805C /* ChangeEmailPopupView.xib */; };
  173. A1BC6EC81C3E578F00D957D9 /* CustomLabelButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A1BC6EC71C3E578F00D957D9 /* CustomLabelButton.m */; };
  174. A1BC6ECA1C3E57A000D957D9 /* CustomLabelButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = A1BC6EC91C3E57A000D957D9 /* CustomLabelButton.xib */; };
  175. A1CC0BF61C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = A1CC0BF51C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m */; };
  176. A51708471E78E0F900AEF165 /* MoreBtnModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A51708461E78E0F900AEF165 /* MoreBtnModel.m */; };
  177. A53C0DAF1E56E2F000E5D9F4 /* SocketServiceHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A53C0DAE1E56E2F000E5D9F4 /* SocketServiceHandler.m */; };
  178. A5F267DA1E544A530096276E /* NSNetService+Util.m in Sources */ = {isa = PBXBuildFile; fileRef = A5F267D91E544A530096276E /* NSNetService+Util.m */; };
  179. E2A252121E7F540700B3D007 /* CertificationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A252091E7F540700B3D007 /* CertificationViewController.m */; };
  180. E2A252131E7F540700B3D007 /* IDSetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A2520B1E7F540700B3D007 /* IDSetViewController.m */; };
  181. E2A252141E7F540700B3D007 /* JoinFinishViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A2520D1E7F540700B3D007 /* JoinFinishViewController.m */; };
  182. E2A252151E7F540700B3D007 /* QuizViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A2520F1E7F540700B3D007 /* QuizViewController.m */; };
  183. E2A252161E7F540700B3D007 /* UserNameSetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E2A252111E7F540700B3D007 /* UserNameSetViewController.m */; };
  184. E2AA822D1E6FD652009B8077 /* MorePopOverViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E2AA822C1E6FD652009B8077 /* MorePopOverViewController.m */; };
  185. /* End PBXBuildFile section */
  186. /* Begin PBXContainerItemProxy section */
  187. A13BCE981C3B47A500C76527 /* PBXContainerItemProxy */ = {
  188. isa = PBXContainerItemProxy;
  189. containerPortal = A13BCE761C3B47A500C76527 /* Project object */;
  190. proxyType = 1;
  191. remoteGlobalIDString = A13BCE7D1C3B47A500C76527;
  192. remoteInfo = SmartCity;
  193. };
  194. /* End PBXContainerItemProxy section */
  195. /* Begin PBXFileReference section */
  196. 1FEE599D97C10ACB19408ACA /* Pods-OneCable.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OneCable.release.xcconfig"; path = "Pods/Target Support Files/Pods-OneCable/Pods-OneCable.release.xcconfig"; sourceTree = "<group>"; };
  197. 55C040EE251C2C1BC9704BEC /* Pods-OneCable.product.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OneCable.product.xcconfig"; path = "Pods/Target Support Files/Pods-OneCable/Pods-OneCable.product.xcconfig"; sourceTree = "<group>"; };
  198. 5739681EFCCBD7EEE2419150 /* Pods_OneCable.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_OneCable.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  199. A13BCE7E1C3B47A500C76527 /* OneCable.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OneCable.app; sourceTree = BUILT_PRODUCTS_DIR; };
  200. A13BCE821C3B47A500C76527 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  201. A13BCE8B1C3B47A500C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  202. A13BCE8D1C3B47A500C76527 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  203. A13BCE921C3B47A500C76527 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  204. A13BCE971C3B47A500C76527 /* OneCableTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OneCableTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  205. A13BCE9B1C3B47A500C76527 /* OneCableTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OneCableTests.m; sourceTree = "<group>"; };
  206. A13BCE9D1C3B47A500C76527 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  207. A13BCEAE1C3B491300C76527 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  208. A13BCEAF1C3B491300C76527 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  209. A13BCEB11C3B491300C76527 /* GTMNSString+HTML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GTMNSString+HTML.h"; sourceTree = "<group>"; };
  210. A13BCEB21C3B491300C76527 /* GTMNSString+HTML.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GTMNSString+HTML.m"; sourceTree = "<group>"; };
  211. A13BCEB31C3B491300C76527 /* NSArray-Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray-Addtions.h"; sourceTree = "<group>"; };
  212. A13BCEB41C3B491300C76527 /* NSArray-Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray-Addtions.m"; sourceTree = "<group>"; };
  213. A13BCEB51C3B491300C76527 /* NSData+AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+AESCrypt.h"; sourceTree = "<group>"; };
  214. A13BCEB61C3B491300C76527 /* NSData+AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+AESCrypt.m"; sourceTree = "<group>"; };
  215. A13BCEB71C3B491300C76527 /* NSDate+Utilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Utilities.h"; sourceTree = "<group>"; };
  216. A13BCEB81C3B491300C76527 /* NSDate+Utilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Utilities.m"; sourceTree = "<group>"; };
  217. A13BCEB91C3B491300C76527 /* NSDictionary-Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary-Additions.h"; sourceTree = "<group>"; };
  218. A13BCEBA1C3B491300C76527 /* NSDictionary-Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary-Additions.m"; sourceTree = "<group>"; };
  219. A13BCEBB1C3B491300C76527 /* NSString-Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString-Addtions.h"; sourceTree = "<group>"; };
  220. A13BCEBC1C3B491300C76527 /* NSString-Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString-Addtions.m"; sourceTree = "<group>"; };
  221. A13BCEBD1C3B491300C76527 /* SortDictionary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortDictionary.h; sourceTree = "<group>"; };
  222. A13BCEBE1C3B491300C76527 /* SortDictionary.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortDictionary.m; sourceTree = "<group>"; };
  223. A13BCEBF1C3B491300C76527 /* UIDevice-Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice-Reachability.h"; sourceTree = "<group>"; };
  224. A13BCEC01C3B491300C76527 /* UIDevice-Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice-Reachability.m"; sourceTree = "<group>"; };
  225. A13BCEC11C3B491300C76527 /* UIImage+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addtions.h"; sourceTree = "<group>"; };
  226. A13BCEC21C3B491300C76527 /* UIImage+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addtions.m"; sourceTree = "<group>"; };
  227. A13BCEC31C3B491300C76527 /* UITableView+EnumarateCells.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+EnumarateCells.h"; sourceTree = "<group>"; };
  228. A13BCEC41C3B491300C76527 /* UITableView+EnumarateCells.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+EnumarateCells.m"; sourceTree = "<group>"; };
  229. A13BCEC51C3B491300C76527 /* UIView+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Additions.h"; sourceTree = "<group>"; };
  230. A13BCEC61C3B491300C76527 /* UIView+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Additions.m"; sourceTree = "<group>"; };
  231. A13BCEC71C3B491300C76527 /* UIView+AutoLayoutDebugging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AutoLayoutDebugging.h"; sourceTree = "<group>"; };
  232. A13BCEC81C3B491300C76527 /* UIView+AutoLayoutDebugging.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AutoLayoutDebugging.m"; sourceTree = "<group>"; };
  233. A13BCEC91C3B491300C76527 /* UIView+Toast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Toast.h"; sourceTree = "<group>"; };
  234. A13BCECA1C3B491300C76527 /* UIView+Toast.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Toast.m"; sourceTree = "<group>"; };
  235. A13BCECB1C3B491300C76527 /* UIViewController-ActionSheetSimulation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController-ActionSheetSimulation.h"; sourceTree = "<group>"; };
  236. A13BCECC1C3B491300C76527 /* UIViewController-ActionSheetSimulation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController-ActionSheetSimulation.m"; sourceTree = "<group>"; };
  237. A13BCECD1C3B491300C76527 /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
  238. A13BCECF1C3B491300C76527 /* CommandClassControlDetailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandClassControlDetailView.h; sourceTree = "<group>"; };
  239. A13BCED01C3B491300C76527 /* CommandClassControlDetailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommandClassControlDetailView.m; sourceTree = "<group>"; };
  240. A13BCED11C3B491300C76527 /* CommandClassControlDetailView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CommandClassControlDetailView.xib; sourceTree = "<group>"; };
  241. A13BCED21C3B491300C76527 /* CommandClassControlNodeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandClassControlNodeView.h; sourceTree = "<group>"; };
  242. A13BCED31C3B491300C76527 /* CommandClassControlNodeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommandClassControlNodeView.m; sourceTree = "<group>"; };
  243. A13BCED41C3B491300C76527 /* CommandClassControlNodeView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CommandClassControlNodeView.xib; sourceTree = "<group>"; };
  244. A13BCED51C3B491300C76527 /* CommandClassControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandClassControlView.h; sourceTree = "<group>"; };
  245. A13BCED61C3B491300C76527 /* CommandClassControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommandClassControlView.m; sourceTree = "<group>"; };
  246. A13BCED71C3B491300C76527 /* CommandClassControlView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CommandClassControlView.xib; sourceTree = "<group>"; };
  247. A13BCED81C3B491300C76527 /* DeviceNodePopupTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceNodePopupTableViewCell.xib; sourceTree = "<group>"; };
  248. A13BCED91C3B491300C76527 /* DeviceNodePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceNodePopupView.h; sourceTree = "<group>"; };
  249. A13BCEDA1C3B491300C76527 /* DeviceNodePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceNodePopupView.m; sourceTree = "<group>"; };
  250. A13BCEDB1C3B491300C76527 /* DeviceNodePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceNodePopupView.xib; sourceTree = "<group>"; };
  251. A13BCEDC1C3B491300C76527 /* DeviceSelectPopupTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceSelectPopupTableViewCell.xib; sourceTree = "<group>"; };
  252. A13BCEDD1C3B491300C76527 /* DeviceSelectPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceSelectPopupView.h; sourceTree = "<group>"; };
  253. A13BCEDE1C3B491300C76527 /* DeviceSelectPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceSelectPopupView.m; sourceTree = "<group>"; };
  254. A13BCEDF1C3B491300C76527 /* DeviceSelectPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceSelectPopupView.xib; sourceTree = "<group>"; };
  255. A13BCEE01C3B491300C76527 /* JDProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDProgressHUD.h; sourceTree = "<group>"; };
  256. A13BCEE11C3B491300C76527 /* JDProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDProgressHUD.m; sourceTree = "<group>"; };
  257. A13BCEE21C3B491300C76527 /* KNTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KNTableViewCell.h; sourceTree = "<group>"; };
  258. A13BCEE31C3B491300C76527 /* KNTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KNTableViewCell.m; sourceTree = "<group>"; };
  259. A13BCEE41C3B491300C76527 /* MultiLevelPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultiLevelPopupView.h; sourceTree = "<group>"; };
  260. A13BCEE51C3B491300C76527 /* MultiLevelPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultiLevelPopupView.m; sourceTree = "<group>"; };
  261. A13BCEE61C3B491300C76527 /* MultiLevelPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MultiLevelPopupView.xib; sourceTree = "<group>"; };
  262. A13BCEE71C3B491300C76527 /* NoContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoContentView.h; sourceTree = "<group>"; };
  263. A13BCEE81C3B491300C76527 /* NoContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoContentView.m; sourceTree = "<group>"; };
  264. A13BCEE91C3B491300C76527 /* NoContentView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoContentView.xib; sourceTree = "<group>"; };
  265. A13BCEEA1C3B491300C76527 /* OptionPopOverViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OptionPopOverViewController.h; sourceTree = "<group>"; };
  266. A13BCEEB1C3B491300C76527 /* OptionPopOverViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OptionPopOverViewController.m; sourceTree = "<group>"; };
  267. A13BCEEC1C3B491300C76527 /* PopTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PopTableView.h; sourceTree = "<group>"; };
  268. A13BCEED1C3B491300C76527 /* PopTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PopTableView.m; sourceTree = "<group>"; };
  269. A13BCEEE1C3B491300C76527 /* PopTableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PopTableView.xib; sourceTree = "<group>"; };
  270. A13BCEF81C3B491300C76527 /* CustomAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomAlertView.h; sourceTree = "<group>"; };
  271. A13BCEF91C3B491300C76527 /* CustomAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomAlertView.m; sourceTree = "<group>"; };
  272. A13BCEFA1C3B491300C76527 /* CustomAlertView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CustomAlertView.xib; sourceTree = "<group>"; };
  273. A13BCEFB1C3B491300C76527 /* CustomButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomButton.h; sourceTree = "<group>"; };
  274. A13BCEFC1C3B491300C76527 /* CustomButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomButton.m; sourceTree = "<group>"; };
  275. A13BCEFD1C3B491300C76527 /* CustomCheckBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomCheckBox.h; sourceTree = "<group>"; };
  276. A13BCEFE1C3B491300C76527 /* CustomCheckBox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomCheckBox.m; sourceTree = "<group>"; };
  277. A13BCEFF1C3B491300C76527 /* CustomImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomImageView.h; sourceTree = "<group>"; };
  278. A13BCF001C3B491300C76527 /* CustomImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomImageView.m; sourceTree = "<group>"; };
  279. A13BCF011C3B491300C76527 /* CustomLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomLabel.h; sourceTree = "<group>"; };
  280. A13BCF021C3B491300C76527 /* CustomLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomLabel.m; sourceTree = "<group>"; };
  281. A13BCF031C3B491300C76527 /* CustomLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomLoadingView.h; sourceTree = "<group>"; };
  282. A13BCF041C3B491300C76527 /* CustomLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomLoadingView.m; sourceTree = "<group>"; };
  283. A13BCF051C3B491300C76527 /* CustomPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomPicker.h; sourceTree = "<group>"; };
  284. A13BCF061C3B491300C76527 /* CustomPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomPicker.m; sourceTree = "<group>"; };
  285. A13BCF071C3B491300C76527 /* CustomRadioGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomRadioGroup.h; sourceTree = "<group>"; };
  286. A13BCF081C3B491300C76527 /* CustomRadioGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomRadioGroup.m; sourceTree = "<group>"; };
  287. A13BCF091C3B491300C76527 /* CustomShapeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomShapeButton.h; sourceTree = "<group>"; };
  288. A13BCF0A1C3B491300C76527 /* CustomShapeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomShapeButton.m; sourceTree = "<group>"; };
  289. A13BCF0B1C3B491300C76527 /* CustomSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomSwitch.h; sourceTree = "<group>"; };
  290. A13BCF0C1C3B491300C76527 /* CustomSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomSwitch.m; sourceTree = "<group>"; };
  291. A13BCF0D1C3B491300C76527 /* CustomTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomTableView.h; sourceTree = "<group>"; };
  292. A13BCF0E1C3B491300C76527 /* CustomTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomTableView.m; sourceTree = "<group>"; };
  293. A13BCF0F1C3B491300C76527 /* CustomTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomTextField.h; sourceTree = "<group>"; };
  294. A13BCF101C3B491300C76527 /* CustomTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomTextField.m; sourceTree = "<group>"; };
  295. A13BCF111C3B491400C76527 /* CustomTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomTextView.h; sourceTree = "<group>"; };
  296. A13BCF121C3B491400C76527 /* CustomTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomTextView.m; sourceTree = "<group>"; };
  297. A13BCF131C3B491400C76527 /* DatePickerButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DatePickerButton.h; sourceTree = "<group>"; };
  298. A13BCF141C3B491400C76527 /* DatePickerButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DatePickerButton.m; sourceTree = "<group>"; };
  299. A13BCF151C3B491400C76527 /* SelectButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectButton.h; sourceTree = "<group>"; };
  300. A13BCF161C3B491400C76527 /* SelectButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectButton.m; sourceTree = "<group>"; };
  301. A13BCF171C3B491400C76527 /* TimePickerButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimePickerButton.h; sourceTree = "<group>"; };
  302. A13BCF181C3B491400C76527 /* TimePickerButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimePickerButton.m; sourceTree = "<group>"; };
  303. A13BCF191C3B491400C76527 /* Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Definitions.h; sourceTree = "<group>"; };
  304. A13BCF1B1C3B491400C76527 /* RequestHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RequestHandler.h; sourceTree = "<group>"; };
  305. A13BCF1C1C3B491400C76527 /* RequestHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RequestHandler.m; sourceTree = "<group>"; };
  306. A13BCF1D1C3B491400C76527 /* JDFacade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDFacade.h; sourceTree = "<group>"; };
  307. A13BCF1E1C3B491400C76527 /* JDFacade.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDFacade.m; sourceTree = "<group>"; };
  308. A13BCF1F1C3B491400C76527 /* JDObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDObject.h; sourceTree = "<group>"; };
  309. A13BCF201C3B491400C76527 /* JDObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDObject.m; sourceTree = "<group>"; };
  310. A13BCF221C3B491400C76527 /* DeviceModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceModel.h; sourceTree = "<group>"; };
  311. A13BCF231C3B491400C76527 /* DeviceModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceModel.m; sourceTree = "<group>"; };
  312. A13BCF241C3B491400C76527 /* ItemModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemModel.h; sourceTree = "<group>"; };
  313. A13BCF251C3B491400C76527 /* ItemModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemModel.m; sourceTree = "<group>"; };
  314. A13BCF261C3B491400C76527 /* JDJSONModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDJSONModel.h; sourceTree = "<group>"; };
  315. A13BCF271C3B491400C76527 /* JDJSONModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDJSONModel.m; sourceTree = "<group>"; };
  316. A13BCF281C3B491400C76527 /* LoginModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginModel.h; sourceTree = "<group>"; };
  317. A13BCF291C3B491400C76527 /* LoginModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginModel.m; sourceTree = "<group>"; };
  318. A13BCF2A1C3B491400C76527 /* ModeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModeModel.h; sourceTree = "<group>"; };
  319. A13BCF2B1C3B491400C76527 /* ModeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModeModel.m; sourceTree = "<group>"; };
  320. A13BCF2C1C3B491400C76527 /* RuleModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RuleModel.h; sourceTree = "<group>"; };
  321. A13BCF2D1C3B491400C76527 /* RuleModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RuleModel.m; sourceTree = "<group>"; };
  322. A13BCF2E1C3B491400C76527 /* SceneModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SceneModel.h; sourceTree = "<group>"; };
  323. A13BCF2F1C3B491400C76527 /* SceneModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SceneModel.m; sourceTree = "<group>"; };
  324. A13BCF311C3B491400C76527 /* CommonUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonUtil.h; sourceTree = "<group>"; };
  325. A13BCF321C3B491400C76527 /* CommonUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommonUtil.m; sourceTree = "<group>"; };
  326. A13BCF331C3B491400C76527 /* CypherUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CypherUtil.h; sourceTree = "<group>"; };
  327. A13BCF341C3B491400C76527 /* CypherUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CypherUtil.m; sourceTree = "<group>"; };
  328. A13BCF351C3B491400C76527 /* ImageUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageUtil.h; sourceTree = "<group>"; };
  329. A13BCF361C3B491400C76527 /* ImageUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImageUtil.m; sourceTree = "<group>"; };
  330. A13BCF371C3B491400C76527 /* JDUserDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDUserDefaults.h; sourceTree = "<group>"; };
  331. A13BCF381C3B491400C76527 /* JDUserDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDUserDefaults.m; sourceTree = "<group>"; };
  332. A13BCF391C3B491400C76527 /* UIDeviceUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIDeviceUtil.h; sourceTree = "<group>"; };
  333. A13BCF3A1C3B491400C76527 /* UIDeviceUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIDeviceUtil.m; sourceTree = "<group>"; };
  334. A13BCF3B1C3B491400C76527 /* ValidateUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ValidateUtil.h; sourceTree = "<group>"; };
  335. A13BCF3C1C3B491400C76527 /* ValidateUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ValidateUtil.m; sourceTree = "<group>"; };
  336. A13BCF3F1C3B491400C76527 /* WebBrowseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebBrowseViewController.h; sourceTree = "<group>"; };
  337. A13BCF401C3B491400C76527 /* WebBrowseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebBrowseViewController.m; sourceTree = "<group>"; };
  338. A13BCF421C3B491400C76527 /* HomeHubChangeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeHubChangeViewController.h; sourceTree = "<group>"; };
  339. A13BCF431C3B491400C76527 /* HomeHubChangeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeHubChangeViewController.m; sourceTree = "<group>"; };
  340. A13BCF481C3B491400C76527 /* HomeHubInitViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeHubInitViewController.h; sourceTree = "<group>"; };
  341. A13BCF491C3B491400C76527 /* HomeHubInitViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeHubInitViewController.m; sourceTree = "<group>"; };
  342. A13BCF501C3B491400C76527 /* HomeHubViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeHubViewController.h; sourceTree = "<group>"; };
  343. A13BCF511C3B491400C76527 /* HomeHubViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeHubViewController.m; sourceTree = "<group>"; };
  344. A13BCF521C3B491400C76527 /* QRCodeInputPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QRCodeInputPopupView.h; sourceTree = "<group>"; };
  345. A13BCF531C3B491400C76527 /* QRCodeInputPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QRCodeInputPopupView.m; sourceTree = "<group>"; };
  346. A13BCF541C3B491400C76527 /* QRCodeInputPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = QRCodeInputPopupView.xib; sourceTree = "<group>"; };
  347. A13BCF551C3B491400C76527 /* QRCodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QRCodeViewController.h; sourceTree = "<group>"; };
  348. A13BCF561C3B491400C76527 /* QRCodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QRCodeViewController.m; sourceTree = "<group>"; };
  349. A13BCF591C3B491400C76527 /* HomeMemberAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeMemberAddViewController.h; sourceTree = "<group>"; };
  350. A13BCF5A1C3B491400C76527 /* HomeMemberAddViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeMemberAddViewController.m; sourceTree = "<group>"; };
  351. A13BCF5B1C3B491400C76527 /* HomeMemberViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeMemberViewController.h; sourceTree = "<group>"; };
  352. A13BCF5C1C3B491400C76527 /* HomeMemberViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeMemberViewController.m; sourceTree = "<group>"; };
  353. A13BCF5D1C3B491400C76527 /* JDTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDTableViewController.h; sourceTree = "<group>"; };
  354. A13BCF5E1C3B491400C76527 /* JDTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDTableViewController.m; sourceTree = "<group>"; };
  355. A13BCF5F1C3B491400C76527 /* JDViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDViewController.h; sourceTree = "<group>"; };
  356. A13BCF601C3B491400C76527 /* JDViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDViewController.m; sourceTree = "<group>"; };
  357. A13BCF621C3B491400C76527 /* HomeModeSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeModeSettingsViewController.h; sourceTree = "<group>"; };
  358. A13BCF631C3B491400C76527 /* HomeModeSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeModeSettingsViewController.m; sourceTree = "<group>"; };
  359. A13BCF641C3B491400C76527 /* HomeModeUpdateViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeModeUpdateViewController.h; sourceTree = "<group>"; };
  360. A13BCF651C3B491400C76527 /* HomeModeUpdateViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeModeUpdateViewController.m; sourceTree = "<group>"; };
  361. A13BCF661C3B491400C76527 /* IntroViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IntroViewController.h; sourceTree = "<group>"; };
  362. A13BCF671C3B491400C76527 /* IntroViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IntroViewController.m; sourceTree = "<group>"; };
  363. A13BCF681C3B491400C76527 /* InvitationAnswerPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InvitationAnswerPopupView.h; sourceTree = "<group>"; };
  364. A13BCF691C3B491400C76527 /* InvitationAnswerPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InvitationAnswerPopupView.m; sourceTree = "<group>"; };
  365. A13BCF6A1C3B491400C76527 /* InvitationAnswerPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InvitationAnswerPopupView.xib; sourceTree = "<group>"; };
  366. A13BCF6B1C3B491400C76527 /* InvitationAnswerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InvitationAnswerViewController.h; sourceTree = "<group>"; };
  367. A13BCF6C1C3B491400C76527 /* InvitationAnswerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InvitationAnswerViewController.m; sourceTree = "<group>"; };
  368. A13BCF6D1C3B491400C76527 /* InvitationListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InvitationListViewController.h; sourceTree = "<group>"; };
  369. A13BCF6E1C3B491400C76527 /* InvitationListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InvitationListViewController.m; sourceTree = "<group>"; };
  370. A13BCF6F1C3B491400C76527 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  371. A13BCF701C3B491400C76527 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  372. A13BCF711C3B491400C76527 /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
  373. A13BCF721C3B491400C76527 /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainViewController.m; sourceTree = "<group>"; };
  374. A13BCF731C3B491400C76527 /* MessageBoxViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageBoxViewController.h; sourceTree = "<group>"; };
  375. A13BCF741C3B491400C76527 /* MessageBoxViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageBoxViewController.m; sourceTree = "<group>"; };
  376. A13BCF751C3B491400C76527 /* NoticeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeViewController.h; sourceTree = "<group>"; };
  377. A13BCF761C3B491400C76527 /* NoticeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeViewController.m; sourceTree = "<group>"; };
  378. A13BCF771C3B491400C76527 /* ResetPwdViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResetPwdViewController.h; sourceTree = "<group>"; };
  379. A13BCF781C3B491400C76527 /* ResetPwdViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResetPwdViewController.m; sourceTree = "<group>"; };
  380. A13BCF7A1C3B491400C76527 /* RulesAddCompleteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesAddCompleteViewController.h; sourceTree = "<group>"; };
  381. A13BCF7B1C3B491400C76527 /* RulesAddCompleteViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesAddCompleteViewController.m; sourceTree = "<group>"; };
  382. A13BCF7C1C3B491400C76527 /* RulesAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesAddViewController.h; sourceTree = "<group>"; };
  383. A13BCF7D1C3B491400C76527 /* RulesAddViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesAddViewController.m; sourceTree = "<group>"; };
  384. A13BCF7E1C3B491400C76527 /* RulesConditionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesConditionViewController.h; sourceTree = "<group>"; };
  385. A13BCF7F1C3B491400C76527 /* RulesConditionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesConditionViewController.m; sourceTree = "<group>"; };
  386. A13BCF801C3B491400C76527 /* RulesDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesDetailViewController.h; sourceTree = "<group>"; };
  387. A13BCF811C3B491400C76527 /* RulesDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesDetailViewController.m; sourceTree = "<group>"; };
  388. A13BCF821C3B491400C76527 /* RulesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesViewController.h; sourceTree = "<group>"; };
  389. A13BCF831C3B491400C76527 /* RulesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesViewController.m; sourceTree = "<group>"; };
  390. A13BCF951C3B491400C76527 /* DeleteAccountPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeleteAccountPopupView.h; sourceTree = "<group>"; };
  391. A13BCF961C3B491400C76527 /* DeleteAccountPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeleteAccountPopupView.m; sourceTree = "<group>"; };
  392. A13BCF971C3B491400C76527 /* DeleteAccountPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeleteAccountPopupView.xib; sourceTree = "<group>"; };
  393. A13BCF981C3B491400C76527 /* GoodbyeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodbyeViewController.h; sourceTree = "<group>"; };
  394. A13BCF991C3B491400C76527 /* GoodbyeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodbyeViewController.m; sourceTree = "<group>"; };
  395. A13BCF9A1C3B491400C76527 /* PwdPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PwdPopupView.h; sourceTree = "<group>"; };
  396. A13BCF9B1C3B491400C76527 /* PwdPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PwdPopupView.m; sourceTree = "<group>"; };
  397. A13BCF9C1C3B491400C76527 /* PwdPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PwdPopupView.xib; sourceTree = "<group>"; };
  398. A13BCF9F1C3B491400C76527 /* SettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingsViewController.h; sourceTree = "<group>"; };
  399. A13BCFA01C3B491400C76527 /* SettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingsViewController.m; sourceTree = "<group>"; };
  400. A13BCFA41C3B491400C76527 /* AgreementViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AgreementViewController.h; sourceTree = "<group>"; };
  401. A13BCFA51C3B491400C76527 /* AgreementViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AgreementViewController.m; sourceTree = "<group>"; };
  402. A13BCFA61C3B491400C76527 /* NewMobileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewMobileViewController.h; sourceTree = "<group>"; };
  403. A13BCFA71C3B491400C76527 /* NewMobileViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewMobileViewController.m; sourceTree = "<group>"; };
  404. A13BCFA81C3B491400C76527 /* SignUpViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SignUpViewController.h; sourceTree = "<group>"; };
  405. A13BCFA91C3B491400C76527 /* SignUpViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SignUpViewController.m; sourceTree = "<group>"; };
  406. A13BCFB41C3B491400C76527 /* ModifyDeviceNamePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyDeviceNamePopupView.h; sourceTree = "<group>"; };
  407. A13BCFB51C3B491400C76527 /* ModifyDeviceNamePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyDeviceNamePopupView.m; sourceTree = "<group>"; };
  408. A13BCFB61C3B491400C76527 /* ModifyDeviceNamePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ModifyDeviceNamePopupView.xib; sourceTree = "<group>"; };
  409. A13BCFB71C3B491400C76527 /* ModifySecureKeyPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifySecureKeyPopupView.h; sourceTree = "<group>"; };
  410. A13BCFB81C3B491400C76527 /* ModifySecureKeyPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifySecureKeyPopupView.m; sourceTree = "<group>"; };
  411. A13BCFB91C3B491400C76527 /* ModifySecureKeyPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ModifySecureKeyPopupView.xib; sourceTree = "<group>"; };
  412. A13BCFBD1C3B491400C76527 /* ThingsAddCompleteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddCompleteViewController.h; sourceTree = "<group>"; };
  413. A13BCFBE1C3B491400C76527 /* ThingsAddCompleteViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddCompleteViewController.m; sourceTree = "<group>"; };
  414. A13BCFBF1C3B491400C76527 /* ThingsAddFailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddFailViewController.h; sourceTree = "<group>"; };
  415. A13BCFC01C3B491400C76527 /* ThingsAddFailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddFailViewController.m; sourceTree = "<group>"; };
  416. A13BCFC11C3B491400C76527 /* ThingsAddIncludeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddIncludeViewController.h; sourceTree = "<group>"; };
  417. A13BCFC21C3B491400C76527 /* ThingsAddIncludeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddIncludeViewController.m; sourceTree = "<group>"; };
  418. A13BCFC31C3B491400C76527 /* ThingsAddStartViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddStartViewController.h; sourceTree = "<group>"; };
  419. A13BCFC41C3B491400C76527 /* ThingsAddStartViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddStartViewController.m; sourceTree = "<group>"; };
  420. A13BCFC51C3B491400C76527 /* ThingsAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddViewController.h; sourceTree = "<group>"; };
  421. A13BCFC61C3B491400C76527 /* ThingsAddViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddViewController.m; sourceTree = "<group>"; };
  422. A13BCFC71C3B491400C76527 /* ThingsDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsDetailViewController.h; sourceTree = "<group>"; };
  423. A13BCFC81C3B491400C76527 /* ThingsDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsDetailViewController.m; sourceTree = "<group>"; };
  424. A13BCFC91C3B491400C76527 /* ThingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsViewController.h; sourceTree = "<group>"; };
  425. A13BCFCA1C3B491400C76527 /* ThingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsViewController.m; sourceTree = "<group>"; };
  426. A13BCFD31C3B491400C76527 /* JDUUID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDUUID.h; sourceTree = "<group>"; };
  427. A13BCFD41C3B491400C76527 /* JDUUID.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDUUID.m; sourceTree = "<group>"; };
  428. A13BCFD51C3B491400C76527 /* KeychainItemWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeychainItemWrapper.h; sourceTree = "<group>"; };
  429. A13BCFD61C3B491400C76527 /* KeychainItemWrapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KeychainItemWrapper.m; sourceTree = "<group>"; };
  430. A13BCFD81C3B491400C76527 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  431. A13BCFD91C3B491400C76527 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  432. A13BD0741C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Common.storyboard; sourceTree = "<group>"; };
  433. A13BD0761C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/HomeHub.storyboard; sourceTree = "<group>"; };
  434. A13BD0781C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/HomeMember.storyboard; sourceTree = "<group>"; };
  435. A13BD07A1C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/Localizable.strings; sourceTree = "<group>"; };
  436. A13BD07C1C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Rules.storyboard; sourceTree = "<group>"; };
  437. A13BD07E1C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Settings.storyboard; sourceTree = "<group>"; };
  438. A13BD0801C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/SignUp.storyboard; sourceTree = "<group>"; };
  439. A13BD0821C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Things.storyboard; sourceTree = "<group>"; };
  440. A13BD0921C3B531100C76527 /* Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Prefix.pch; sourceTree = "<group>"; };
  441. A13BD0BA1C3B563D00C76527 /* DaylightPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DaylightPopupView.h; sourceTree = "<group>"; };
  442. A13BD0BB1C3B563D00C76527 /* DaylightPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DaylightPopupView.m; sourceTree = "<group>"; };
  443. A13BD0BC1C3B563D00C76527 /* DaylightPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DaylightPopupView.xib; sourceTree = "<group>"; };
  444. A13BD0BD1C3B563D00C76527 /* ExternHeatPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExternHeatPopupView.h; sourceTree = "<group>"; };
  445. A13BD0BE1C3B563D00C76527 /* ExternHeatPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ExternHeatPopupView.m; sourceTree = "<group>"; };
  446. A13BD0BF1C3B563D00C76527 /* ExternHeatPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ExternHeatPopupView.xib; sourceTree = "<group>"; };
  447. A13BD0C01C3B563D00C76527 /* RulesConditionHomeModePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesConditionHomeModePopupView.h; sourceTree = "<group>"; };
  448. A13BD0C11C3B563D00C76527 /* RulesConditionHomeModePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesConditionHomeModePopupView.m; sourceTree = "<group>"; };
  449. A13BD0C21C3B563D00C76527 /* RulesConditionHomeModePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RulesConditionHomeModePopupView.xib; sourceTree = "<group>"; };
  450. A13BD0C31C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RulesConditionHomeModeTableViewCell.xib; sourceTree = "<group>"; };
  451. A13BD0C41C3B563D00C76527 /* TemperaturePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TemperaturePopupView.h; sourceTree = "<group>"; };
  452. A13BD0C51C3B563D00C76527 /* TemperaturePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TemperaturePopupView.m; sourceTree = "<group>"; };
  453. A13BD0C61C3B563D00C76527 /* TemperaturePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TemperaturePopupView.xib; sourceTree = "<group>"; };
  454. A13BD0C71C3B563D00C76527 /* TimePickerPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimePickerPopupView.h; sourceTree = "<group>"; };
  455. A13BD0C81C3B563D00C76527 /* TimePickerPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimePickerPopupView.m; sourceTree = "<group>"; };
  456. A13BD0C91C3B563D00C76527 /* TimePickerPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TimePickerPopupView.xib; sourceTree = "<group>"; };
  457. A13BD0CA1C3B563D00C76527 /* TriggerSelectPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TriggerSelectPopupView.h; sourceTree = "<group>"; };
  458. A13BD0CB1C3B563D00C76527 /* TriggerSelectPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TriggerSelectPopupView.m; sourceTree = "<group>"; };
  459. A13BD0CC1C3B563D00C76527 /* TriggerSelectPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TriggerSelectPopupView.xib; sourceTree = "<group>"; };
  460. A13BD0CD1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WeatherLocationPopupTableViewCell.xib; sourceTree = "<group>"; };
  461. A13BD0CE1C3B563D00C76527 /* WeatherLocationPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeatherLocationPopupView.h; sourceTree = "<group>"; };
  462. A13BD0CF1C3B563D00C76527 /* WeatherLocationPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WeatherLocationPopupView.m; sourceTree = "<group>"; };
  463. A13BD0D01C3B563D00C76527 /* WeatherLocationPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WeatherLocationPopupView.xib; sourceTree = "<group>"; };
  464. A15D2CFA1C58598F0018D555 /* KNLayoutConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KNLayoutConstraint.h; sourceTree = "<group>"; };
  465. A15D2CFB1C58598F0018D555 /* KNLayoutConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KNLayoutConstraint.m; sourceTree = "<group>"; };
  466. A15D2CFD1C588FBB0018D555 /* KNView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KNView.h; sourceTree = "<group>"; };
  467. A15D2CFE1C588FBB0018D555 /* KNView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KNView.m; sourceTree = "<group>"; };
  468. A16A1CC21C71728400F92BC1 /* NetworkServiceHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkServiceHandler.h; sourceTree = "<group>"; };
  469. A16A1CC31C71728400F92BC1 /* NetworkServiceHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkServiceHandler.m; sourceTree = "<group>"; };
  470. A16D937B1C5600D300DC0DF1 /* DurationPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DurationPopupView.h; sourceTree = "<group>"; };
  471. A16D937C1C5600D300DC0DF1 /* DurationPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DurationPopupView.m; sourceTree = "<group>"; };
  472. A16D937D1C5600D300DC0DF1 /* DurationPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DurationPopupView.xib; sourceTree = "<group>"; };
  473. A191B4821C4495AD00DEBA91 /* WelcomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WelcomeViewController.h; sourceTree = "<group>"; };
  474. A191B4831C4495AE00DEBA91 /* WelcomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WelcomeViewController.m; sourceTree = "<group>"; };
  475. A191B4851C44985200DEBA91 /* UIWindow+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+Addtions.h"; sourceTree = "<group>"; };
  476. A191B4861C44985200DEBA91 /* UIWindow+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+Addtions.m"; sourceTree = "<group>"; };
  477. A191B48B1C4639F900DEBA91 /* AdminAuthPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AdminAuthPopupView.h; sourceTree = "<group>"; };
  478. A191B48C1C4639F900DEBA91 /* AdminAuthPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AdminAuthPopupView.m; sourceTree = "<group>"; };
  479. A191B48D1C4639F900DEBA91 /* AdminAuthPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AdminAuthPopupView.xib; sourceTree = "<group>"; };
  480. A1A454861C476CDE00BA805C /* ChangeNamePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangeNamePopupView.h; sourceTree = "<group>"; };
  481. A1A454871C476CDE00BA805C /* ChangeNamePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangeNamePopupView.m; sourceTree = "<group>"; };
  482. A1A454881C476CDE00BA805C /* ChangeNamePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChangeNamePopupView.xib; sourceTree = "<group>"; };
  483. A1A4548B1C47736D00BA805C /* ConfirmPasswdPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConfirmPasswdPopupView.h; sourceTree = "<group>"; };
  484. A1A4548C1C47736D00BA805C /* ConfirmPasswdPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ConfirmPasswdPopupView.m; sourceTree = "<group>"; };
  485. A1A4548D1C47736D00BA805C /* ConfirmPasswdPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ConfirmPasswdPopupView.xib; sourceTree = "<group>"; };
  486. A1A454901C477ACD00BA805C /* ChangeEmailPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangeEmailPopupView.h; sourceTree = "<group>"; };
  487. A1A454911C477ACD00BA805C /* ChangeEmailPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangeEmailPopupView.m; sourceTree = "<group>"; };
  488. A1A454921C477ACD00BA805C /* ChangeEmailPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChangeEmailPopupView.xib; sourceTree = "<group>"; };
  489. A1BC6EC61C3E578F00D957D9 /* CustomLabelButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomLabelButton.h; sourceTree = "<group>"; };
  490. A1BC6EC71C3E578F00D957D9 /* CustomLabelButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomLabelButton.m; sourceTree = "<group>"; };
  491. A1BC6EC91C3E57A000D957D9 /* CustomLabelButton.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CustomLabelButton.xib; sourceTree = "<group>"; };
  492. A1CC0BF41C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+Additions.h"; sourceTree = "<group>"; };
  493. A1CC0BF51C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+Additions.m"; sourceTree = "<group>"; };
  494. A507ABE31E5149EC0013786A /* OneCable.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = OneCable.entitlements; sourceTree = "<group>"; };
  495. A51708451E78E0F900AEF165 /* MoreBtnModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MoreBtnModel.h; sourceTree = "<group>"; };
  496. A51708461E78E0F900AEF165 /* MoreBtnModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MoreBtnModel.m; sourceTree = "<group>"; };
  497. A53C0DAD1E56E2F000E5D9F4 /* SocketServiceHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SocketServiceHandler.h; sourceTree = "<group>"; };
  498. A53C0DAE1E56E2F000E5D9F4 /* SocketServiceHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SocketServiceHandler.m; sourceTree = "<group>"; };
  499. A576561A1E52EFF8002D0AE2 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  500. A5F267D81E544A530096276E /* NSNetService+Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSNetService+Util.h"; sourceTree = "<group>"; };
  501. A5F267D91E544A530096276E /* NSNetService+Util.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSNetService+Util.m"; sourceTree = "<group>"; };
  502. ADE7CA33EFEB615D1B6CB053 /* Pods-OneCable.adhoc.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OneCable.adhoc.xcconfig"; path = "Pods/Target Support Files/Pods-OneCable/Pods-OneCable.adhoc.xcconfig"; sourceTree = "<group>"; };
  503. E2A252081E7F540700B3D007 /* CertificationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CertificationViewController.h; sourceTree = "<group>"; };
  504. E2A252091E7F540700B3D007 /* CertificationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CertificationViewController.m; sourceTree = "<group>"; };
  505. E2A2520A1E7F540700B3D007 /* IDSetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IDSetViewController.h; sourceTree = "<group>"; };
  506. E2A2520B1E7F540700B3D007 /* IDSetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IDSetViewController.m; sourceTree = "<group>"; };
  507. E2A2520C1E7F540700B3D007 /* JoinFinishViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JoinFinishViewController.h; sourceTree = "<group>"; };
  508. E2A2520D1E7F540700B3D007 /* JoinFinishViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JoinFinishViewController.m; sourceTree = "<group>"; };
  509. E2A2520E1E7F540700B3D007 /* QuizViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuizViewController.h; sourceTree = "<group>"; };
  510. E2A2520F1E7F540700B3D007 /* QuizViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuizViewController.m; sourceTree = "<group>"; };
  511. E2A252101E7F540700B3D007 /* UserNameSetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserNameSetViewController.h; sourceTree = "<group>"; };
  512. E2A252111E7F540700B3D007 /* UserNameSetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserNameSetViewController.m; sourceTree = "<group>"; };
  513. E2AA822B1E6FD652009B8077 /* MorePopOverViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MorePopOverViewController.h; sourceTree = "<group>"; };
  514. E2AA822C1E6FD652009B8077 /* MorePopOverViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MorePopOverViewController.m; sourceTree = "<group>"; };
  515. FE2DCDFBF6442768EBBE8107 /* Pods-OneCable.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OneCable.debug.xcconfig"; path = "Pods/Target Support Files/Pods-OneCable/Pods-OneCable.debug.xcconfig"; sourceTree = "<group>"; };
  516. /* End PBXFileReference section */
  517. /* Begin PBXFrameworksBuildPhase section */
  518. A13BCE7B1C3B47A500C76527 /* Frameworks */ = {
  519. isa = PBXFrameworksBuildPhase;
  520. buildActionMask = 2147483647;
  521. files = (
  522. A13CF0B198FAC0CED7681725 /* Pods_OneCable.framework in Frameworks */,
  523. );
  524. runOnlyForDeploymentPostprocessing = 0;
  525. };
  526. A13BCE941C3B47A500C76527 /* Frameworks */ = {
  527. isa = PBXFrameworksBuildPhase;
  528. buildActionMask = 2147483647;
  529. files = (
  530. );
  531. runOnlyForDeploymentPostprocessing = 0;
  532. };
  533. /* End PBXFrameworksBuildPhase section */
  534. /* Begin PBXGroup section */
  535. A13BCE751C3B47A500C76527 = {
  536. isa = PBXGroup;
  537. children = (
  538. A13BCE801C3B47A500C76527 /* OneCable */,
  539. A13BCE9A1C3B47A500C76527 /* OneCableTests */,
  540. A13BCE7F1C3B47A500C76527 /* Products */,
  541. DEB5B7755A6EA6158E66C9E7 /* Pods */,
  542. A59A862A0C4079FD62248BAB /* Frameworks */,
  543. );
  544. sourceTree = "<group>";
  545. };
  546. A13BCE7F1C3B47A500C76527 /* Products */ = {
  547. isa = PBXGroup;
  548. children = (
  549. A13BCE7E1C3B47A500C76527 /* OneCable.app */,
  550. A13BCE971C3B47A500C76527 /* OneCableTests.xctest */,
  551. );
  552. name = Products;
  553. sourceTree = "<group>";
  554. };
  555. A13BCE801C3B47A500C76527 /* OneCable */ = {
  556. isa = PBXGroup;
  557. children = (
  558. A13BCFD11C3B491400C76527 /* Libraries */,
  559. A13BCEAD1C3B491300C76527 /* Classes */,
  560. A13BCEAC1C3B48E100C76527 /* Resources */,
  561. A13BCE811C3B47A500C76527 /* Supporting Files */,
  562. );
  563. path = OneCable;
  564. sourceTree = "<group>";
  565. };
  566. A13BCE811C3B47A500C76527 /* Supporting Files */ = {
  567. isa = PBXGroup;
  568. children = (
  569. A13BCE921C3B47A500C76527 /* Info.plist */,
  570. A13BD0921C3B531100C76527 /* Prefix.pch */,
  571. A13BCE821C3B47A500C76527 /* main.m */,
  572. );
  573. name = "Supporting Files";
  574. sourceTree = "<group>";
  575. };
  576. A13BCE9A1C3B47A500C76527 /* OneCableTests */ = {
  577. isa = PBXGroup;
  578. children = (
  579. A13BCE9B1C3B47A500C76527 /* OneCableTests.m */,
  580. A13BCE9D1C3B47A500C76527 /* Info.plist */,
  581. );
  582. path = OneCableTests;
  583. sourceTree = "<group>";
  584. };
  585. A13BCEAC1C3B48E100C76527 /* Resources */ = {
  586. isa = PBXGroup;
  587. children = (
  588. A507ABE31E5149EC0013786A /* OneCable.entitlements */,
  589. A13BCE8A1C3B47A500C76527 /* Main.storyboard */,
  590. A13BD07F1C3B492A00C76527 /* SignUp.storyboard */,
  591. A13BD0751C3B492A00C76527 /* HomeHub.storyboard */,
  592. A13BD0771C3B492A00C76527 /* HomeMember.storyboard */,
  593. A13BD0811C3B492A00C76527 /* Things.storyboard */,
  594. A13BD07B1C3B492A00C76527 /* Rules.storyboard */,
  595. A13BD07D1C3B492A00C76527 /* Settings.storyboard */,
  596. A13BD0731C3B492A00C76527 /* Common.storyboard */,
  597. A13BD0791C3B492A00C76527 /* Localizable.strings */,
  598. A13BCE8D1C3B47A500C76527 /* Assets.xcassets */,
  599. );
  600. name = Resources;
  601. sourceTree = "<group>";
  602. };
  603. A13BCEAD1C3B491300C76527 /* Classes */ = {
  604. isa = PBXGroup;
  605. children = (
  606. A13BCEB01C3B491300C76527 /* Categories */,
  607. A13BCEF71C3B491300C76527 /* CustomUI */,
  608. A13BCF1A1C3B491400C76527 /* Handler */,
  609. A13BCF211C3B491400C76527 /* Model */,
  610. A13BCF301C3B491400C76527 /* Util */,
  611. A13BCF3D1C3B491400C76527 /* ViewControllers */,
  612. A13BCECE1C3B491300C76527 /* CommonUI */,
  613. A13BCEAE1C3B491300C76527 /* AppDelegate.h */,
  614. A13BCEAF1C3B491300C76527 /* AppDelegate.m */,
  615. A13BCECD1C3B491300C76527 /* Common.h */,
  616. A13BCF191C3B491400C76527 /* Definitions.h */,
  617. A13BCF1D1C3B491400C76527 /* JDFacade.h */,
  618. A13BCF1E1C3B491400C76527 /* JDFacade.m */,
  619. A13BCF1F1C3B491400C76527 /* JDObject.h */,
  620. A13BCF201C3B491400C76527 /* JDObject.m */,
  621. );
  622. path = Classes;
  623. sourceTree = "<group>";
  624. };
  625. A13BCEB01C3B491300C76527 /* Categories */ = {
  626. isa = PBXGroup;
  627. children = (
  628. A13BCEB11C3B491300C76527 /* GTMNSString+HTML.h */,
  629. A13BCEB21C3B491300C76527 /* GTMNSString+HTML.m */,
  630. A13BCEB31C3B491300C76527 /* NSArray-Addtions.h */,
  631. A13BCEB41C3B491300C76527 /* NSArray-Addtions.m */,
  632. A1CC0BF41C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.h */,
  633. A1CC0BF51C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m */,
  634. A13BCEB51C3B491300C76527 /* NSData+AESCrypt.h */,
  635. A13BCEB61C3B491300C76527 /* NSData+AESCrypt.m */,
  636. A13BCEB71C3B491300C76527 /* NSDate+Utilities.h */,
  637. A13BCEB81C3B491300C76527 /* NSDate+Utilities.m */,
  638. A13BCEB91C3B491300C76527 /* NSDictionary-Additions.h */,
  639. A13BCEBA1C3B491300C76527 /* NSDictionary-Additions.m */,
  640. A13BCEBB1C3B491300C76527 /* NSString-Addtions.h */,
  641. A13BCEBC1C3B491300C76527 /* NSString-Addtions.m */,
  642. A13BCEBD1C3B491300C76527 /* SortDictionary.h */,
  643. A13BCEBE1C3B491300C76527 /* SortDictionary.m */,
  644. A13BCEBF1C3B491300C76527 /* UIDevice-Reachability.h */,
  645. A13BCEC01C3B491300C76527 /* UIDevice-Reachability.m */,
  646. A13BCEC11C3B491300C76527 /* UIImage+Addtions.h */,
  647. A13BCEC21C3B491300C76527 /* UIImage+Addtions.m */,
  648. A13BCEC31C3B491300C76527 /* UITableView+EnumarateCells.h */,
  649. A13BCEC41C3B491300C76527 /* UITableView+EnumarateCells.m */,
  650. A13BCEC51C3B491300C76527 /* UIView+Additions.h */,
  651. A13BCEC61C3B491300C76527 /* UIView+Additions.m */,
  652. A13BCEC71C3B491300C76527 /* UIView+AutoLayoutDebugging.h */,
  653. A13BCEC81C3B491300C76527 /* UIView+AutoLayoutDebugging.m */,
  654. A13BCEC91C3B491300C76527 /* UIView+Toast.h */,
  655. A13BCECA1C3B491300C76527 /* UIView+Toast.m */,
  656. A13BCECB1C3B491300C76527 /* UIViewController-ActionSheetSimulation.h */,
  657. A13BCECC1C3B491300C76527 /* UIViewController-ActionSheetSimulation.m */,
  658. A191B4851C44985200DEBA91 /* UIWindow+Addtions.h */,
  659. A191B4861C44985200DEBA91 /* UIWindow+Addtions.m */,
  660. A5F267D81E544A530096276E /* NSNetService+Util.h */,
  661. A5F267D91E544A530096276E /* NSNetService+Util.m */,
  662. );
  663. path = Categories;
  664. sourceTree = "<group>";
  665. };
  666. A13BCECE1C3B491300C76527 /* CommonUI */ = {
  667. isa = PBXGroup;
  668. children = (
  669. A13BCED51C3B491300C76527 /* CommandClassControlView.h */,
  670. A13BCED61C3B491300C76527 /* CommandClassControlView.m */,
  671. A13BCED71C3B491300C76527 /* CommandClassControlView.xib */,
  672. A13BCECF1C3B491300C76527 /* CommandClassControlDetailView.h */,
  673. A13BCED01C3B491300C76527 /* CommandClassControlDetailView.m */,
  674. A13BCED11C3B491300C76527 /* CommandClassControlDetailView.xib */,
  675. A13BCED21C3B491300C76527 /* CommandClassControlNodeView.h */,
  676. A13BCED31C3B491300C76527 /* CommandClassControlNodeView.m */,
  677. A13BCED41C3B491300C76527 /* CommandClassControlNodeView.xib */,
  678. A13BCEDD1C3B491300C76527 /* DeviceSelectPopupView.h */,
  679. A13BCEDE1C3B491300C76527 /* DeviceSelectPopupView.m */,
  680. A13BCEDF1C3B491300C76527 /* DeviceSelectPopupView.xib */,
  681. A13BCEDC1C3B491300C76527 /* DeviceSelectPopupTableViewCell.xib */,
  682. A13BCED91C3B491300C76527 /* DeviceNodePopupView.h */,
  683. A13BCEDA1C3B491300C76527 /* DeviceNodePopupView.m */,
  684. A13BCEDB1C3B491300C76527 /* DeviceNodePopupView.xib */,
  685. A13BCED81C3B491300C76527 /* DeviceNodePopupTableViewCell.xib */,
  686. A13BCEE01C3B491300C76527 /* JDProgressHUD.h */,
  687. A13BCEE11C3B491300C76527 /* JDProgressHUD.m */,
  688. A13BCEE21C3B491300C76527 /* KNTableViewCell.h */,
  689. A13BCEE31C3B491300C76527 /* KNTableViewCell.m */,
  690. A15D2CFD1C588FBB0018D555 /* KNView.h */,
  691. A15D2CFE1C588FBB0018D555 /* KNView.m */,
  692. A13BCEE41C3B491300C76527 /* MultiLevelPopupView.h */,
  693. A13BCEE51C3B491300C76527 /* MultiLevelPopupView.m */,
  694. A13BCEE61C3B491300C76527 /* MultiLevelPopupView.xib */,
  695. A13BCEE71C3B491300C76527 /* NoContentView.h */,
  696. A13BCEE81C3B491300C76527 /* NoContentView.m */,
  697. A13BCEE91C3B491300C76527 /* NoContentView.xib */,
  698. E2AA822B1E6FD652009B8077 /* MorePopOverViewController.h */,
  699. E2AA822C1E6FD652009B8077 /* MorePopOverViewController.m */,
  700. A13BCEEA1C3B491300C76527 /* OptionPopOverViewController.h */,
  701. A13BCEEB1C3B491300C76527 /* OptionPopOverViewController.m */,
  702. A13BCEEC1C3B491300C76527 /* PopTableView.h */,
  703. A13BCEED1C3B491300C76527 /* PopTableView.m */,
  704. A13BCEEE1C3B491300C76527 /* PopTableView.xib */,
  705. A15D2CFA1C58598F0018D555 /* KNLayoutConstraint.h */,
  706. A15D2CFB1C58598F0018D555 /* KNLayoutConstraint.m */,
  707. );
  708. path = CommonUI;
  709. sourceTree = "<group>";
  710. };
  711. A13BCEF71C3B491300C76527 /* CustomUI */ = {
  712. isa = PBXGroup;
  713. children = (
  714. A13BCEF81C3B491300C76527 /* CustomAlertView.h */,
  715. A13BCEF91C3B491300C76527 /* CustomAlertView.m */,
  716. A13BCEFA1C3B491300C76527 /* CustomAlertView.xib */,
  717. A13BCEFB1C3B491300C76527 /* CustomButton.h */,
  718. A13BCEFC1C3B491300C76527 /* CustomButton.m */,
  719. A13BCEFD1C3B491300C76527 /* CustomCheckBox.h */,
  720. A13BCEFE1C3B491300C76527 /* CustomCheckBox.m */,
  721. A13BCEFF1C3B491300C76527 /* CustomImageView.h */,
  722. A13BCF001C3B491300C76527 /* CustomImageView.m */,
  723. A13BCF011C3B491300C76527 /* CustomLabel.h */,
  724. A13BCF021C3B491300C76527 /* CustomLabel.m */,
  725. A13BCF031C3B491300C76527 /* CustomLoadingView.h */,
  726. A13BCF041C3B491300C76527 /* CustomLoadingView.m */,
  727. A13BCF051C3B491300C76527 /* CustomPicker.h */,
  728. A13BCF061C3B491300C76527 /* CustomPicker.m */,
  729. A13BCF071C3B491300C76527 /* CustomRadioGroup.h */,
  730. A13BCF081C3B491300C76527 /* CustomRadioGroup.m */,
  731. A13BCF091C3B491300C76527 /* CustomShapeButton.h */,
  732. A13BCF0A1C3B491300C76527 /* CustomShapeButton.m */,
  733. A13BCF0B1C3B491300C76527 /* CustomSwitch.h */,
  734. A13BCF0C1C3B491300C76527 /* CustomSwitch.m */,
  735. A13BCF0D1C3B491300C76527 /* CustomTableView.h */,
  736. A13BCF0E1C3B491300C76527 /* CustomTableView.m */,
  737. A13BCF0F1C3B491300C76527 /* CustomTextField.h */,
  738. A13BCF101C3B491300C76527 /* CustomTextField.m */,
  739. A13BCF111C3B491400C76527 /* CustomTextView.h */,
  740. A13BCF121C3B491400C76527 /* CustomTextView.m */,
  741. A13BCF131C3B491400C76527 /* DatePickerButton.h */,
  742. A13BCF141C3B491400C76527 /* DatePickerButton.m */,
  743. A13BCF151C3B491400C76527 /* SelectButton.h */,
  744. A13BCF161C3B491400C76527 /* SelectButton.m */,
  745. A13BCF171C3B491400C76527 /* TimePickerButton.h */,
  746. A13BCF181C3B491400C76527 /* TimePickerButton.m */,
  747. A1BC6EC61C3E578F00D957D9 /* CustomLabelButton.h */,
  748. A1BC6EC71C3E578F00D957D9 /* CustomLabelButton.m */,
  749. A1BC6EC91C3E57A000D957D9 /* CustomLabelButton.xib */,
  750. );
  751. path = CustomUI;
  752. sourceTree = "<group>";
  753. };
  754. A13BCF1A1C3B491400C76527 /* Handler */ = {
  755. isa = PBXGroup;
  756. children = (
  757. A13BCF1B1C3B491400C76527 /* RequestHandler.h */,
  758. A13BCF1C1C3B491400C76527 /* RequestHandler.m */,
  759. A16A1CC21C71728400F92BC1 /* NetworkServiceHandler.h */,
  760. A16A1CC31C71728400F92BC1 /* NetworkServiceHandler.m */,
  761. A53C0DAD1E56E2F000E5D9F4 /* SocketServiceHandler.h */,
  762. A53C0DAE1E56E2F000E5D9F4 /* SocketServiceHandler.m */,
  763. );
  764. path = Handler;
  765. sourceTree = "<group>";
  766. };
  767. A13BCF211C3B491400C76527 /* Model */ = {
  768. isa = PBXGroup;
  769. children = (
  770. A13BCF221C3B491400C76527 /* DeviceModel.h */,
  771. A13BCF231C3B491400C76527 /* DeviceModel.m */,
  772. A13BCF241C3B491400C76527 /* ItemModel.h */,
  773. A13BCF251C3B491400C76527 /* ItemModel.m */,
  774. A13BCF261C3B491400C76527 /* JDJSONModel.h */,
  775. A13BCF271C3B491400C76527 /* JDJSONModel.m */,
  776. A13BCF281C3B491400C76527 /* LoginModel.h */,
  777. A13BCF291C3B491400C76527 /* LoginModel.m */,
  778. A13BCF2A1C3B491400C76527 /* ModeModel.h */,
  779. A13BCF2B1C3B491400C76527 /* ModeModel.m */,
  780. A13BCF2C1C3B491400C76527 /* RuleModel.h */,
  781. A13BCF2D1C3B491400C76527 /* RuleModel.m */,
  782. A13BCF2E1C3B491400C76527 /* SceneModel.h */,
  783. A13BCF2F1C3B491400C76527 /* SceneModel.m */,
  784. A51708451E78E0F900AEF165 /* MoreBtnModel.h */,
  785. A51708461E78E0F900AEF165 /* MoreBtnModel.m */,
  786. );
  787. path = Model;
  788. sourceTree = "<group>";
  789. };
  790. A13BCF301C3B491400C76527 /* Util */ = {
  791. isa = PBXGroup;
  792. children = (
  793. A13BCF311C3B491400C76527 /* CommonUtil.h */,
  794. A13BCF321C3B491400C76527 /* CommonUtil.m */,
  795. A13BCF331C3B491400C76527 /* CypherUtil.h */,
  796. A13BCF341C3B491400C76527 /* CypherUtil.m */,
  797. A13BCF351C3B491400C76527 /* ImageUtil.h */,
  798. A13BCF361C3B491400C76527 /* ImageUtil.m */,
  799. A13BCF371C3B491400C76527 /* JDUserDefaults.h */,
  800. A13BCF381C3B491400C76527 /* JDUserDefaults.m */,
  801. A13BCF391C3B491400C76527 /* UIDeviceUtil.h */,
  802. A13BCF3A1C3B491400C76527 /* UIDeviceUtil.m */,
  803. A13BCF3B1C3B491400C76527 /* ValidateUtil.h */,
  804. A13BCF3C1C3B491400C76527 /* ValidateUtil.m */,
  805. );
  806. path = Util;
  807. sourceTree = "<group>";
  808. };
  809. A13BCF3D1C3B491400C76527 /* ViewControllers */ = {
  810. isa = PBXGroup;
  811. children = (
  812. A13BCF611C3B491400C76527 /* MainScreens */,
  813. A13BCFA31C3B491400C76527 /* SignUpScreens */,
  814. A13BCF411C3B491400C76527 /* HomeHubScreens */,
  815. A13BCFAA1C3B491400C76527 /* ThingsScreens */,
  816. A13BCF581C3B491400C76527 /* HomeMemberScreens */,
  817. A13BCF791C3B491400C76527 /* RuelsScreens */,
  818. A13BCF851C3B491400C76527 /* SettingsScreens */,
  819. A13BCF3E1C3B491400C76527 /* CommonScreens */,
  820. A13BCF5D1C3B491400C76527 /* JDTableViewController.h */,
  821. A13BCF5E1C3B491400C76527 /* JDTableViewController.m */,
  822. A13BCF5F1C3B491400C76527 /* JDViewController.h */,
  823. A13BCF601C3B491400C76527 /* JDViewController.m */,
  824. );
  825. path = ViewControllers;
  826. sourceTree = "<group>";
  827. };
  828. A13BCF3E1C3B491400C76527 /* CommonScreens */ = {
  829. isa = PBXGroup;
  830. children = (
  831. A13BCF3F1C3B491400C76527 /* WebBrowseViewController.h */,
  832. A13BCF401C3B491400C76527 /* WebBrowseViewController.m */,
  833. );
  834. path = CommonScreens;
  835. sourceTree = "<group>";
  836. };
  837. A13BCF411C3B491400C76527 /* HomeHubScreens */ = {
  838. isa = PBXGroup;
  839. children = (
  840. A13BCF551C3B491400C76527 /* QRCodeViewController.h */,
  841. A13BCF561C3B491400C76527 /* QRCodeViewController.m */,
  842. A13BCF521C3B491400C76527 /* QRCodeInputPopupView.h */,
  843. A13BCF531C3B491400C76527 /* QRCodeInputPopupView.m */,
  844. A13BCF541C3B491400C76527 /* QRCodeInputPopupView.xib */,
  845. A13BCF481C3B491400C76527 /* HomeHubInitViewController.h */,
  846. A13BCF491C3B491400C76527 /* HomeHubInitViewController.m */,
  847. A13BCF421C3B491400C76527 /* HomeHubChangeViewController.h */,
  848. A13BCF431C3B491400C76527 /* HomeHubChangeViewController.m */,
  849. A13BCF501C3B491400C76527 /* HomeHubViewController.h */,
  850. A13BCF511C3B491400C76527 /* HomeHubViewController.m */,
  851. );
  852. path = HomeHubScreens;
  853. sourceTree = "<group>";
  854. };
  855. A13BCF581C3B491400C76527 /* HomeMemberScreens */ = {
  856. isa = PBXGroup;
  857. children = (
  858. A13BCF5B1C3B491400C76527 /* HomeMemberViewController.h */,
  859. A13BCF5C1C3B491400C76527 /* HomeMemberViewController.m */,
  860. A13BCF591C3B491400C76527 /* HomeMemberAddViewController.h */,
  861. A13BCF5A1C3B491400C76527 /* HomeMemberAddViewController.m */,
  862. );
  863. path = HomeMemberScreens;
  864. sourceTree = "<group>";
  865. };
  866. A13BCF611C3B491400C76527 /* MainScreens */ = {
  867. isa = PBXGroup;
  868. children = (
  869. A13BCF661C3B491400C76527 /* IntroViewController.h */,
  870. A13BCF671C3B491400C76527 /* IntroViewController.m */,
  871. A13BCF6F1C3B491400C76527 /* LoginViewController.h */,
  872. A13BCF701C3B491400C76527 /* LoginViewController.m */,
  873. A13BCF711C3B491400C76527 /* MainViewController.h */,
  874. A13BCF721C3B491400C76527 /* MainViewController.m */,
  875. A13BCF6D1C3B491400C76527 /* InvitationListViewController.h */,
  876. A13BCF6E1C3B491400C76527 /* InvitationListViewController.m */,
  877. A13BCF6B1C3B491400C76527 /* InvitationAnswerViewController.h */,
  878. A13BCF6C1C3B491400C76527 /* InvitationAnswerViewController.m */,
  879. A13BCF681C3B491400C76527 /* InvitationAnswerPopupView.h */,
  880. A13BCF691C3B491400C76527 /* InvitationAnswerPopupView.m */,
  881. A13BCF6A1C3B491400C76527 /* InvitationAnswerPopupView.xib */,
  882. A191B4821C4495AD00DEBA91 /* WelcomeViewController.h */,
  883. A191B4831C4495AE00DEBA91 /* WelcomeViewController.m */,
  884. A13BCF731C3B491400C76527 /* MessageBoxViewController.h */,
  885. A13BCF741C3B491400C76527 /* MessageBoxViewController.m */,
  886. A13BCF751C3B491400C76527 /* NoticeViewController.h */,
  887. A13BCF761C3B491400C76527 /* NoticeViewController.m */,
  888. A13BCF641C3B491400C76527 /* HomeModeUpdateViewController.h */,
  889. A13BCF651C3B491400C76527 /* HomeModeUpdateViewController.m */,
  890. A13BCF621C3B491400C76527 /* HomeModeSettingsViewController.h */,
  891. A13BCF631C3B491400C76527 /* HomeModeSettingsViewController.m */,
  892. A13BCF771C3B491400C76527 /* ResetPwdViewController.h */,
  893. A13BCF781C3B491400C76527 /* ResetPwdViewController.m */,
  894. );
  895. path = MainScreens;
  896. sourceTree = "<group>";
  897. };
  898. A13BCF791C3B491400C76527 /* RuelsScreens */ = {
  899. isa = PBXGroup;
  900. children = (
  901. A13BCF821C3B491400C76527 /* RulesViewController.h */,
  902. A13BCF831C3B491400C76527 /* RulesViewController.m */,
  903. A13BCF801C3B491400C76527 /* RulesDetailViewController.h */,
  904. A13BCF811C3B491400C76527 /* RulesDetailViewController.m */,
  905. A13BCF7C1C3B491400C76527 /* RulesAddViewController.h */,
  906. A13BCF7D1C3B491400C76527 /* RulesAddViewController.m */,
  907. A13BCF7A1C3B491400C76527 /* RulesAddCompleteViewController.h */,
  908. A13BCF7B1C3B491400C76527 /* RulesAddCompleteViewController.m */,
  909. A13BCF7E1C3B491400C76527 /* RulesConditionViewController.h */,
  910. A13BCF7F1C3B491400C76527 /* RulesConditionViewController.m */,
  911. A13BD0C01C3B563D00C76527 /* RulesConditionHomeModePopupView.h */,
  912. A13BD0C11C3B563D00C76527 /* RulesConditionHomeModePopupView.m */,
  913. A13BD0C21C3B563D00C76527 /* RulesConditionHomeModePopupView.xib */,
  914. A13BD0C31C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib */,
  915. A13BD0CA1C3B563D00C76527 /* TriggerSelectPopupView.h */,
  916. A13BD0CB1C3B563D00C76527 /* TriggerSelectPopupView.m */,
  917. A13BD0CC1C3B563D00C76527 /* TriggerSelectPopupView.xib */,
  918. A13BD0C71C3B563D00C76527 /* TimePickerPopupView.h */,
  919. A13BD0C81C3B563D00C76527 /* TimePickerPopupView.m */,
  920. A13BD0C91C3B563D00C76527 /* TimePickerPopupView.xib */,
  921. A13BD0BA1C3B563D00C76527 /* DaylightPopupView.h */,
  922. A13BD0BB1C3B563D00C76527 /* DaylightPopupView.m */,
  923. A13BD0BC1C3B563D00C76527 /* DaylightPopupView.xib */,
  924. A13BD0C41C3B563D00C76527 /* TemperaturePopupView.h */,
  925. A13BD0C51C3B563D00C76527 /* TemperaturePopupView.m */,
  926. A13BD0C61C3B563D00C76527 /* TemperaturePopupView.xib */,
  927. A13BD0BD1C3B563D00C76527 /* ExternHeatPopupView.h */,
  928. A13BD0BE1C3B563D00C76527 /* ExternHeatPopupView.m */,
  929. A13BD0BF1C3B563D00C76527 /* ExternHeatPopupView.xib */,
  930. A13BD0CD1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib */,
  931. A13BD0CE1C3B563D00C76527 /* WeatherLocationPopupView.h */,
  932. A13BD0CF1C3B563D00C76527 /* WeatherLocationPopupView.m */,
  933. A13BD0D01C3B563D00C76527 /* WeatherLocationPopupView.xib */,
  934. A16D937B1C5600D300DC0DF1 /* DurationPopupView.h */,
  935. A16D937C1C5600D300DC0DF1 /* DurationPopupView.m */,
  936. A16D937D1C5600D300DC0DF1 /* DurationPopupView.xib */,
  937. );
  938. path = RuelsScreens;
  939. sourceTree = "<group>";
  940. };
  941. A13BCF851C3B491400C76527 /* SettingsScreens */ = {
  942. isa = PBXGroup;
  943. children = (
  944. A13BCF9F1C3B491400C76527 /* SettingsViewController.h */,
  945. A13BCFA01C3B491400C76527 /* SettingsViewController.m */,
  946. A1A454861C476CDE00BA805C /* ChangeNamePopupView.h */,
  947. A1A454871C476CDE00BA805C /* ChangeNamePopupView.m */,
  948. A1A454881C476CDE00BA805C /* ChangeNamePopupView.xib */,
  949. A1A4548B1C47736D00BA805C /* ConfirmPasswdPopupView.h */,
  950. A1A4548C1C47736D00BA805C /* ConfirmPasswdPopupView.m */,
  951. A1A4548D1C47736D00BA805C /* ConfirmPasswdPopupView.xib */,
  952. A1A454901C477ACD00BA805C /* ChangeEmailPopupView.h */,
  953. A1A454911C477ACD00BA805C /* ChangeEmailPopupView.m */,
  954. A1A454921C477ACD00BA805C /* ChangeEmailPopupView.xib */,
  955. A13BCF9A1C3B491400C76527 /* PwdPopupView.h */,
  956. A13BCF9B1C3B491400C76527 /* PwdPopupView.m */,
  957. A13BCF9C1C3B491400C76527 /* PwdPopupView.xib */,
  958. A191B48B1C4639F900DEBA91 /* AdminAuthPopupView.h */,
  959. A191B48C1C4639F900DEBA91 /* AdminAuthPopupView.m */,
  960. A191B48D1C4639F900DEBA91 /* AdminAuthPopupView.xib */,
  961. A13BCF951C3B491400C76527 /* DeleteAccountPopupView.h */,
  962. A13BCF961C3B491400C76527 /* DeleteAccountPopupView.m */,
  963. A13BCF971C3B491400C76527 /* DeleteAccountPopupView.xib */,
  964. A13BCF981C3B491400C76527 /* GoodbyeViewController.h */,
  965. A13BCF991C3B491400C76527 /* GoodbyeViewController.m */,
  966. );
  967. path = SettingsScreens;
  968. sourceTree = "<group>";
  969. };
  970. A13BCFA31C3B491400C76527 /* SignUpScreens */ = {
  971. isa = PBXGroup;
  972. children = (
  973. E2A252081E7F540700B3D007 /* CertificationViewController.h */,
  974. E2A252091E7F540700B3D007 /* CertificationViewController.m */,
  975. E2A2520A1E7F540700B3D007 /* IDSetViewController.h */,
  976. E2A2520B1E7F540700B3D007 /* IDSetViewController.m */,
  977. E2A2520C1E7F540700B3D007 /* JoinFinishViewController.h */,
  978. E2A2520D1E7F540700B3D007 /* JoinFinishViewController.m */,
  979. E2A2520E1E7F540700B3D007 /* QuizViewController.h */,
  980. E2A2520F1E7F540700B3D007 /* QuizViewController.m */,
  981. E2A252101E7F540700B3D007 /* UserNameSetViewController.h */,
  982. E2A252111E7F540700B3D007 /* UserNameSetViewController.m */,
  983. A13BCFA41C3B491400C76527 /* AgreementViewController.h */,
  984. A13BCFA51C3B491400C76527 /* AgreementViewController.m */,
  985. A13BCFA81C3B491400C76527 /* SignUpViewController.h */,
  986. A13BCFA91C3B491400C76527 /* SignUpViewController.m */,
  987. A13BCFA61C3B491400C76527 /* NewMobileViewController.h */,
  988. A13BCFA71C3B491400C76527 /* NewMobileViewController.m */,
  989. );
  990. path = SignUpScreens;
  991. sourceTree = "<group>";
  992. };
  993. A13BCFAA1C3B491400C76527 /* ThingsScreens */ = {
  994. isa = PBXGroup;
  995. children = (
  996. A13BCFC91C3B491400C76527 /* ThingsViewController.h */,
  997. A13BCFCA1C3B491400C76527 /* ThingsViewController.m */,
  998. A13BCFC71C3B491400C76527 /* ThingsDetailViewController.h */,
  999. A13BCFC81C3B491400C76527 /* ThingsDetailViewController.m */,
  1000. A13BCFB71C3B491400C76527 /* ModifySecureKeyPopupView.h */,
  1001. A13BCFB81C3B491400C76527 /* ModifySecureKeyPopupView.m */,
  1002. A13BCFB91C3B491400C76527 /* ModifySecureKeyPopupView.xib */,
  1003. A13BCFC51C3B491400C76527 /* ThingsAddViewController.h */,
  1004. A13BCFC61C3B491400C76527 /* ThingsAddViewController.m */,
  1005. A13BCFC31C3B491400C76527 /* ThingsAddStartViewController.h */,
  1006. A13BCFC41C3B491400C76527 /* ThingsAddStartViewController.m */,
  1007. A13BCFC11C3B491400C76527 /* ThingsAddIncludeViewController.h */,
  1008. A13BCFC21C3B491400C76527 /* ThingsAddIncludeViewController.m */,
  1009. A13BCFBD1C3B491400C76527 /* ThingsAddCompleteViewController.h */,
  1010. A13BCFBE1C3B491400C76527 /* ThingsAddCompleteViewController.m */,
  1011. A13BCFBF1C3B491400C76527 /* ThingsAddFailViewController.h */,
  1012. A13BCFC01C3B491400C76527 /* ThingsAddFailViewController.m */,
  1013. A13BCFB41C3B491400C76527 /* ModifyDeviceNamePopupView.h */,
  1014. A13BCFB51C3B491400C76527 /* ModifyDeviceNamePopupView.m */,
  1015. A13BCFB61C3B491400C76527 /* ModifyDeviceNamePopupView.xib */,
  1016. );
  1017. path = ThingsScreens;
  1018. sourceTree = "<group>";
  1019. };
  1020. A13BCFD11C3B491400C76527 /* Libraries */ = {
  1021. isa = PBXGroup;
  1022. children = (
  1023. A13BCFD21C3B491400C76527 /* KeychainItemWrapper */,
  1024. A13BCFD71C3B491400C76527 /* Reachability */,
  1025. );
  1026. path = Libraries;
  1027. sourceTree = "<group>";
  1028. };
  1029. A13BCFD21C3B491400C76527 /* KeychainItemWrapper */ = {
  1030. isa = PBXGroup;
  1031. children = (
  1032. A13BCFD31C3B491400C76527 /* JDUUID.h */,
  1033. A13BCFD41C3B491400C76527 /* JDUUID.m */,
  1034. A13BCFD51C3B491400C76527 /* KeychainItemWrapper.h */,
  1035. A13BCFD61C3B491400C76527 /* KeychainItemWrapper.m */,
  1036. );
  1037. path = KeychainItemWrapper;
  1038. sourceTree = "<group>";
  1039. };
  1040. A13BCFD71C3B491400C76527 /* Reachability */ = {
  1041. isa = PBXGroup;
  1042. children = (
  1043. A13BCFD81C3B491400C76527 /* Reachability.h */,
  1044. A13BCFD91C3B491400C76527 /* Reachability.m */,
  1045. );
  1046. path = Reachability;
  1047. sourceTree = "<group>";
  1048. };
  1049. A59A862A0C4079FD62248BAB /* Frameworks */ = {
  1050. isa = PBXGroup;
  1051. children = (
  1052. 5739681EFCCBD7EEE2419150 /* Pods_OneCable.framework */,
  1053. );
  1054. name = Frameworks;
  1055. sourceTree = "<group>";
  1056. };
  1057. DEB5B7755A6EA6158E66C9E7 /* Pods */ = {
  1058. isa = PBXGroup;
  1059. children = (
  1060. FE2DCDFBF6442768EBBE8107 /* Pods-OneCable.debug.xcconfig */,
  1061. 1FEE599D97C10ACB19408ACA /* Pods-OneCable.release.xcconfig */,
  1062. ADE7CA33EFEB615D1B6CB053 /* Pods-OneCable.adhoc.xcconfig */,
  1063. 55C040EE251C2C1BC9704BEC /* Pods-OneCable.product.xcconfig */,
  1064. );
  1065. name = Pods;
  1066. sourceTree = "<group>";
  1067. };
  1068. /* End PBXGroup section */
  1069. /* Begin PBXNativeTarget section */
  1070. A13BCE7D1C3B47A500C76527 /* OneCable */ = {
  1071. isa = PBXNativeTarget;
  1072. buildConfigurationList = A13BCEA01C3B47A500C76527 /* Build configuration list for PBXNativeTarget "OneCable" */;
  1073. buildPhases = (
  1074. D18445E3F4B77D67EB5C9CBE /* [CP] Check Pods Manifest.lock */,
  1075. A13BCE7A1C3B47A500C76527 /* Sources */,
  1076. A13BCE7B1C3B47A500C76527 /* Frameworks */,
  1077. A13BCE7C1C3B47A500C76527 /* Resources */,
  1078. 93ADEA80A8C04811E0886259 /* [CP] Embed Pods Frameworks */,
  1079. 27BC1E0D72C144B1471B5B4D /* [CP] Copy Pods Resources */,
  1080. A57656181E518A1D002D0AE2 /* ShellScript */,
  1081. );
  1082. buildRules = (
  1083. );
  1084. dependencies = (
  1085. );
  1086. name = OneCable;
  1087. productName = SmartCity;
  1088. productReference = A13BCE7E1C3B47A500C76527 /* OneCable.app */;
  1089. productType = "com.apple.product-type.application";
  1090. };
  1091. A13BCE961C3B47A500C76527 /* OneCableTests */ = {
  1092. isa = PBXNativeTarget;
  1093. buildConfigurationList = A13BCEA31C3B47A500C76527 /* Build configuration list for PBXNativeTarget "OneCableTests" */;
  1094. buildPhases = (
  1095. A13BCE931C3B47A500C76527 /* Sources */,
  1096. A13BCE941C3B47A500C76527 /* Frameworks */,
  1097. A13BCE951C3B47A500C76527 /* Resources */,
  1098. );
  1099. buildRules = (
  1100. );
  1101. dependencies = (
  1102. A13BCE991C3B47A500C76527 /* PBXTargetDependency */,
  1103. );
  1104. name = OneCableTests;
  1105. productName = SmartCityTests;
  1106. productReference = A13BCE971C3B47A500C76527 /* OneCableTests.xctest */;
  1107. productType = "com.apple.product-type.bundle.unit-test";
  1108. };
  1109. /* End PBXNativeTarget section */
  1110. /* Begin PBXProject section */
  1111. A13BCE761C3B47A500C76527 /* Project object */ = {
  1112. isa = PBXProject;
  1113. attributes = {
  1114. LastUpgradeCheck = 0820;
  1115. ORGANIZATIONNAME = ntels;
  1116. TargetAttributes = {
  1117. A13BCE7D1C3B47A500C76527 = {
  1118. CreatedOnToolsVersion = 7.2;
  1119. DevelopmentTeam = SJUCW4VV44;
  1120. ProvisioningStyle = Automatic;
  1121. SystemCapabilities = {
  1122. com.apple.Push = {
  1123. enabled = 1;
  1124. };
  1125. };
  1126. };
  1127. A13BCE961C3B47A500C76527 = {
  1128. CreatedOnToolsVersion = 7.2;
  1129. TestTargetID = A13BCE7D1C3B47A500C76527;
  1130. };
  1131. };
  1132. };
  1133. buildConfigurationList = A13BCE791C3B47A500C76527 /* Build configuration list for PBXProject "OneCable" */;
  1134. compatibilityVersion = "Xcode 3.2";
  1135. developmentRegion = English;
  1136. hasScannedForEncodings = 0;
  1137. knownRegions = (
  1138. en,
  1139. Base,
  1140. ko,
  1141. );
  1142. mainGroup = A13BCE751C3B47A500C76527;
  1143. productRefGroup = A13BCE7F1C3B47A500C76527 /* Products */;
  1144. projectDirPath = "";
  1145. projectRoot = "";
  1146. targets = (
  1147. A13BCE7D1C3B47A500C76527 /* OneCable */,
  1148. A13BCE961C3B47A500C76527 /* OneCableTests */,
  1149. );
  1150. };
  1151. /* End PBXProject section */
  1152. /* Begin PBXResourcesBuildPhase section */
  1153. A13BCE7C1C3B47A500C76527 /* Resources */ = {
  1154. isa = PBXResourcesBuildPhase;
  1155. buildActionMask = 2147483647;
  1156. files = (
  1157. A13BD0521C3B491400C76527 /* PwdPopupView.xib in Resources */,
  1158. A13BCFF81C3B491400C76527 /* MultiLevelPopupView.xib in Resources */,
  1159. A13BD0891C3B492A00C76527 /* SignUp.storyboard in Resources */,
  1160. A191B48F1C4639F900DEBA91 /* AdminAuthPopupView.xib in Resources */,
  1161. A13BD0841C3B492A00C76527 /* HomeHub.storyboard in Resources */,
  1162. A13BCE8E1C3B47A500C76527 /* Assets.xcassets in Resources */,
  1163. A13BD0881C3B492A00C76527 /* Settings.storyboard in Resources */,
  1164. A13BD0861C3B492A00C76527 /* Localizable.strings in Resources */,
  1165. A13BD0DE1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib in Resources */,
  1166. A13BD0D91C3B563D00C76527 /* TemperaturePopupView.xib in Resources */,
  1167. A13BCFF21C3B491400C76527 /* DeviceSelectPopupTableViewCell.xib in Resources */,
  1168. A1BC6ECA1C3E57A000D957D9 /* CustomLabelButton.xib in Resources */,
  1169. A13BD0871C3B492A00C76527 /* Rules.storyboard in Resources */,
  1170. A1A454941C477ACD00BA805C /* ChangeEmailPopupView.xib in Resources */,
  1171. A13BD0391C3B491400C76527 /* InvitationAnswerPopupView.xib in Resources */,
  1172. A13BCFFD1C3B491400C76527 /* PopTableView.xib in Resources */,
  1173. A13BD0051C3B491400C76527 /* CustomAlertView.xib in Resources */,
  1174. A13BCFEA1C3B491400C76527 /* CommandClassControlDetailView.xib in Resources */,
  1175. A13BD0831C3B492A00C76527 /* Common.storyboard in Resources */,
  1176. A13BD04F1C3B491400C76527 /* DeleteAccountPopupView.xib in Resources */,
  1177. A13BD0601C3B491400C76527 /* ModifyDeviceNamePopupView.xib in Resources */,
  1178. A13BCFEE1C3B491400C76527 /* CommandClassControlView.xib in Resources */,
  1179. A13BCFEC1C3B491400C76527 /* CommandClassControlNodeView.xib in Resources */,
  1180. A13BD0621C3B491400C76527 /* ModifySecureKeyPopupView.xib in Resources */,
  1181. A13BD0DB1C3B563D00C76527 /* TimePickerPopupView.xib in Resources */,
  1182. A13BD0E01C3B563D00C76527 /* WeatherLocationPopupView.xib in Resources */,
  1183. A13BD08A1C3B492A00C76527 /* Things.storyboard in Resources */,
  1184. A1A4548F1C47736D00BA805C /* ConfirmPasswdPopupView.xib in Resources */,
  1185. A13BD0D71C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib in Resources */,
  1186. A13BCFF11C3B491400C76527 /* DeviceNodePopupView.xib in Resources */,
  1187. A13BCFF41C3B491400C76527 /* DeviceSelectPopupView.xib in Resources */,
  1188. A13BCFFA1C3B491400C76527 /* NoContentView.xib in Resources */,
  1189. A13BCFEF1C3B491400C76527 /* DeviceNodePopupTableViewCell.xib in Resources */,
  1190. A13BCE8C1C3B47A500C76527 /* Main.storyboard in Resources */,
  1191. A13BD02F1C3B491400C76527 /* QRCodeInputPopupView.xib in Resources */,
  1192. A13BD0D41C3B563D00C76527 /* ExternHeatPopupView.xib in Resources */,
  1193. A13BD0D21C3B563D00C76527 /* DaylightPopupView.xib in Resources */,
  1194. A16D937F1C5600D300DC0DF1 /* DurationPopupView.xib in Resources */,
  1195. A1A4548A1C476CDE00BA805C /* ChangeNamePopupView.xib in Resources */,
  1196. A13BD0851C3B492A00C76527 /* HomeMember.storyboard in Resources */,
  1197. A13BD0DD1C3B563D00C76527 /* TriggerSelectPopupView.xib in Resources */,
  1198. A13BD0D61C3B563D00C76527 /* RulesConditionHomeModePopupView.xib in Resources */,
  1199. );
  1200. runOnlyForDeploymentPostprocessing = 0;
  1201. };
  1202. A13BCE951C3B47A500C76527 /* Resources */ = {
  1203. isa = PBXResourcesBuildPhase;
  1204. buildActionMask = 2147483647;
  1205. files = (
  1206. );
  1207. runOnlyForDeploymentPostprocessing = 0;
  1208. };
  1209. /* End PBXResourcesBuildPhase section */
  1210. /* Begin PBXShellScriptBuildPhase section */
  1211. 27BC1E0D72C144B1471B5B4D /* [CP] Copy Pods Resources */ = {
  1212. isa = PBXShellScriptBuildPhase;
  1213. buildActionMask = 2147483647;
  1214. files = (
  1215. );
  1216. inputPaths = (
  1217. );
  1218. name = "[CP] Copy Pods Resources";
  1219. outputPaths = (
  1220. );
  1221. runOnlyForDeploymentPostprocessing = 0;
  1222. shellPath = /bin/sh;
  1223. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-OneCable/Pods-OneCable-resources.sh\"\n";
  1224. showEnvVarsInLog = 0;
  1225. };
  1226. 93ADEA80A8C04811E0886259 /* [CP] Embed Pods Frameworks */ = {
  1227. isa = PBXShellScriptBuildPhase;
  1228. buildActionMask = 2147483647;
  1229. files = (
  1230. );
  1231. inputPaths = (
  1232. );
  1233. name = "[CP] Embed Pods Frameworks";
  1234. outputPaths = (
  1235. );
  1236. runOnlyForDeploymentPostprocessing = 0;
  1237. shellPath = /bin/sh;
  1238. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-OneCable/Pods-OneCable-frameworks.sh\"\n";
  1239. showEnvVarsInLog = 0;
  1240. };
  1241. A57656181E518A1D002D0AE2 /* ShellScript */ = {
  1242. isa = PBXShellScriptBuildPhase;
  1243. buildActionMask = 2147483647;
  1244. files = (
  1245. );
  1246. inputPaths = (
  1247. );
  1248. outputPaths = (
  1249. );
  1250. runOnlyForDeploymentPostprocessing = 0;
  1251. shellPath = /bin/sh;
  1252. shellScript = "${PODS_ROOT}/Fabric/run 880f3dee7e6be7a796fab928aafeee250c7867e2 cd7015c4f4a84ac451c1239e79ac4d79f8789bf567e4a50643d45f604248b1e7";
  1253. };
  1254. D18445E3F4B77D67EB5C9CBE /* [CP] Check Pods Manifest.lock */ = {
  1255. isa = PBXShellScriptBuildPhase;
  1256. buildActionMask = 2147483647;
  1257. files = (
  1258. );
  1259. inputPaths = (
  1260. );
  1261. name = "[CP] Check Pods Manifest.lock";
  1262. outputPaths = (
  1263. );
  1264. runOnlyForDeploymentPostprocessing = 0;
  1265. shellPath = /bin/sh;
  1266. shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
  1267. showEnvVarsInLog = 0;
  1268. };
  1269. /* End PBXShellScriptBuildPhase section */
  1270. /* Begin PBXSourcesBuildPhase section */
  1271. A13BCE7A1C3B47A500C76527 /* Sources */ = {
  1272. isa = PBXSourcesBuildPhase;
  1273. buildActionMask = 2147483647;
  1274. files = (
  1275. A13BD0691C3B491400C76527 /* ThingsAddViewController.m in Sources */,
  1276. A13BCFDD1C3B491400C76527 /* NSData+AESCrypt.m in Sources */,
  1277. A13BD01B1C3B491400C76527 /* LoginModel.m in Sources */,
  1278. A13BD0201C3B491400C76527 /* CypherUtil.m in Sources */,
  1279. A1A454891C476CDE00BA805C /* ChangeNamePopupView.m in Sources */,
  1280. A13BD0501C3B491400C76527 /* GoodbyeViewController.m in Sources */,
  1281. A13BD0121C3B491400C76527 /* DatePickerButton.m in Sources */,
  1282. A13BD0661C3B491400C76527 /* ThingsAddFailViewController.m in Sources */,
  1283. A13BCFF01C3B491400C76527 /* DeviceNodePopupView.m in Sources */,
  1284. A13BD0421C3B491400C76527 /* RulesAddViewController.m in Sources */,
  1285. A13BD0081C3B491400C76527 /* CustomImageView.m in Sources */,
  1286. A13BCFF71C3B491400C76527 /* MultiLevelPopupView.m in Sources */,
  1287. A1A4548E1C47736D00BA805C /* ConfirmPasswdPopupView.m in Sources */,
  1288. A13BD00A1C3B491400C76527 /* CustomLoadingView.m in Sources */,
  1289. A13BD0D81C3B563D00C76527 /* TemperaturePopupView.m in Sources */,
  1290. A13BD03A1C3B491400C76527 /* InvitationAnswerViewController.m in Sources */,
  1291. A13BD0241C3B491400C76527 /* ValidateUtil.m in Sources */,
  1292. A13BD01D1C3B491400C76527 /* RuleModel.m in Sources */,
  1293. A1A454931C477ACD00BA805C /* ChangeEmailPopupView.m in Sources */,
  1294. A13BD0331C3B491400C76527 /* JDTableViewController.m in Sources */,
  1295. A13BD0191C3B491400C76527 /* ItemModel.m in Sources */,
  1296. A13BCFF51C3B491400C76527 /* JDProgressHUD.m in Sources */,
  1297. A51708471E78E0F900AEF165 /* MoreBtnModel.m in Sources */,
  1298. A13BD00B1C3B491400C76527 /* CustomPicker.m in Sources */,
  1299. A13BD0681C3B491400C76527 /* ThingsAddStartViewController.m in Sources */,
  1300. A13BD0301C3B491400C76527 /* QRCodeViewController.m in Sources */,
  1301. E2AA822D1E6FD652009B8077 /* MorePopOverViewController.m in Sources */,
  1302. A13BD02E1C3B491400C76527 /* QRCodeInputPopupView.m in Sources */,
  1303. A13BD0371C3B491400C76527 /* IntroViewController.m in Sources */,
  1304. A13BCFE01C3B491400C76527 /* NSString-Addtions.m in Sources */,
  1305. E2A252151E7F540700B3D007 /* QuizViewController.m in Sources */,
  1306. A13BD0D51C3B563D00C76527 /* RulesConditionHomeModePopupView.m in Sources */,
  1307. E2A252141E7F540700B3D007 /* JoinFinishViewController.m in Sources */,
  1308. A13BD0701C3B491400C76527 /* JDUUID.m in Sources */,
  1309. A13BD0581C3B491400C76527 /* SignUpViewController.m in Sources */,
  1310. A13BD03C1C3B491400C76527 /* LoginViewController.m in Sources */,
  1311. A13BCFED1C3B491400C76527 /* CommandClassControlView.m in Sources */,
  1312. A13BD0431C3B491400C76527 /* RulesConditionViewController.m in Sources */,
  1313. A13BD0D31C3B563D00C76527 /* ExternHeatPopupView.m in Sources */,
  1314. A13BCFE21C3B491400C76527 /* UIDevice-Reachability.m in Sources */,
  1315. A13BD01E1C3B491400C76527 /* SceneModel.m in Sources */,
  1316. A191B48E1C4639F900DEBA91 /* AdminAuthPopupView.m in Sources */,
  1317. A13BCFFB1C3B491400C76527 /* OptionPopOverViewController.m in Sources */,
  1318. A13BCFF31C3B491400C76527 /* DeviceSelectPopupView.m in Sources */,
  1319. A5F267DA1E544A530096276E /* NSNetService+Util.m in Sources */,
  1320. A13BD02D1C3B491400C76527 /* HomeHubViewController.m in Sources */,
  1321. A13BD0381C3B491400C76527 /* InvitationAnswerPopupView.m in Sources */,
  1322. A13BCFE71C3B491400C76527 /* UIView+Toast.m in Sources */,
  1323. A13BCFF91C3B491400C76527 /* NoContentView.m in Sources */,
  1324. A13BCFE91C3B491400C76527 /* CommandClassControlDetailView.m in Sources */,
  1325. A15D2CFC1C58598F0018D555 /* KNLayoutConstraint.m in Sources */,
  1326. A13BD0361C3B491400C76527 /* HomeModeUpdateViewController.m in Sources */,
  1327. A13BD0351C3B491400C76527 /* HomeModeSettingsViewController.m in Sources */,
  1328. A13BD0511C3B491400C76527 /* PwdPopupView.m in Sources */,
  1329. A13BD05F1C3B491400C76527 /* ModifyDeviceNamePopupView.m in Sources */,
  1330. A13BD0071C3B491400C76527 /* CustomCheckBox.m in Sources */,
  1331. A13BD0721C3B491400C76527 /* Reachability.m in Sources */,
  1332. A13BCFDE1C3B491400C76527 /* NSDate+Utilities.m in Sources */,
  1333. A13BCFF61C3B491400C76527 /* KNTableViewCell.m in Sources */,
  1334. A13BD0DF1C3B563D00C76527 /* WeatherLocationPopupView.m in Sources */,
  1335. A13BD0341C3B491400C76527 /* JDViewController.m in Sources */,
  1336. E2A252121E7F540700B3D007 /* CertificationViewController.m in Sources */,
  1337. A13BCFFC1C3B491400C76527 /* PopTableView.m in Sources */,
  1338. A15D2CFF1C588FBB0018D555 /* KNView.m in Sources */,
  1339. A191B4841C4495AE00DEBA91 /* WelcomeViewController.m in Sources */,
  1340. A13BD0541C3B491400C76527 /* SettingsViewController.m in Sources */,
  1341. A13BD0131C3B491400C76527 /* SelectButton.m in Sources */,
  1342. A1BC6EC81C3E578F00D957D9 /* CustomLabelButton.m in Sources */,
  1343. A13BD04E1C3B491400C76527 /* DeleteAccountPopupView.m in Sources */,
  1344. A13BD0111C3B491400C76527 /* CustomTextView.m in Sources */,
  1345. A13BD0451C3B491400C76527 /* RulesViewController.m in Sources */,
  1346. A13BD0401C3B491400C76527 /* ResetPwdViewController.m in Sources */,
  1347. A13BD0651C3B491400C76527 /* ThingsAddCompleteViewController.m in Sources */,
  1348. A13BD0671C3B491400C76527 /* ThingsAddIncludeViewController.m in Sources */,
  1349. A13BD00E1C3B491400C76527 /* CustomSwitch.m in Sources */,
  1350. A13BD0DA1C3B563D00C76527 /* TimePickerPopupView.m in Sources */,
  1351. E2A252131E7F540700B3D007 /* IDSetViewController.m in Sources */,
  1352. A13BCFE61C3B491400C76527 /* UIView+AutoLayoutDebugging.m in Sources */,
  1353. A13BD0251C3B491400C76527 /* WebBrowseViewController.m in Sources */,
  1354. A13BD0061C3B491400C76527 /* CustomButton.m in Sources */,
  1355. A13BD0561C3B491400C76527 /* AgreementViewController.m in Sources */,
  1356. A13BD01F1C3B491400C76527 /* CommonUtil.m in Sources */,
  1357. A16A1CC41C71728400F92BC1 /* NetworkServiceHandler.m in Sources */,
  1358. A13BD0151C3B491400C76527 /* RequestHandler.m in Sources */,
  1359. A13BD0041C3B491400C76527 /* CustomAlertView.m in Sources */,
  1360. E2A252161E7F540700B3D007 /* UserNameSetViewController.m in Sources */,
  1361. A13BD0441C3B491400C76527 /* RulesDetailViewController.m in Sources */,
  1362. A13BD0261C3B491400C76527 /* HomeHubChangeViewController.m in Sources */,
  1363. A13BCFDC1C3B491400C76527 /* NSArray-Addtions.m in Sources */,
  1364. A13BD0221C3B491400C76527 /* JDUserDefaults.m in Sources */,
  1365. A13BD0D11C3B563D00C76527 /* DaylightPopupView.m in Sources */,
  1366. A191B4871C44985200DEBA91 /* UIWindow+Addtions.m in Sources */,
  1367. A13BD0181C3B491400C76527 /* DeviceModel.m in Sources */,
  1368. A13BD00F1C3B491400C76527 /* CustomTableView.m in Sources */,
  1369. A13BCFDA1C3B491400C76527 /* AppDelegate.m in Sources */,
  1370. A13BD06A1C3B491400C76527 /* ThingsDetailViewController.m in Sources */,
  1371. A13BCFEB1C3B491400C76527 /* CommandClassControlNodeView.m in Sources */,
  1372. A13BD0161C3B491400C76527 /* JDFacade.m in Sources */,
  1373. A13BCFDF1C3B491400C76527 /* NSDictionary-Additions.m in Sources */,
  1374. A13BD0411C3B491400C76527 /* RulesAddCompleteViewController.m in Sources */,
  1375. A13BD0101C3B491400C76527 /* CustomTextField.m in Sources */,
  1376. A13BD00D1C3B491400C76527 /* CustomShapeButton.m in Sources */,
  1377. A13BD0231C3B491400C76527 /* UIDeviceUtil.m in Sources */,
  1378. A13BD01C1C3B491400C76527 /* ModeModel.m in Sources */,
  1379. A13BD0321C3B491400C76527 /* HomeMemberViewController.m in Sources */,
  1380. A13BD0211C3B491400C76527 /* ImageUtil.m in Sources */,
  1381. A13BD03D1C3B491400C76527 /* MainViewController.m in Sources */,
  1382. A13BCFE81C3B491400C76527 /* UIViewController-ActionSheetSimulation.m in Sources */,
  1383. A13BD0711C3B491400C76527 /* KeychainItemWrapper.m in Sources */,
  1384. A13BD0311C3B491400C76527 /* HomeMemberAddViewController.m in Sources */,
  1385. A1CC0BF61C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m in Sources */,
  1386. A13BCFE11C3B491400C76527 /* SortDictionary.m in Sources */,
  1387. A13BD0291C3B491400C76527 /* HomeHubInitViewController.m in Sources */,
  1388. A13BCFE41C3B491400C76527 /* UITableView+EnumarateCells.m in Sources */,
  1389. A13BD03E1C3B491400C76527 /* MessageBoxViewController.m in Sources */,
  1390. A13BD0DC1C3B563D00C76527 /* TriggerSelectPopupView.m in Sources */,
  1391. A13BD0141C3B491400C76527 /* TimePickerButton.m in Sources */,
  1392. A13BCE831C3B47A500C76527 /* main.m in Sources */,
  1393. A13BD0571C3B491400C76527 /* NewMobileViewController.m in Sources */,
  1394. A13BD01A1C3B491400C76527 /* JDJSONModel.m in Sources */,
  1395. A13BD06B1C3B491400C76527 /* ThingsViewController.m in Sources */,
  1396. A13BD0611C3B491400C76527 /* ModifySecureKeyPopupView.m in Sources */,
  1397. A13BD0171C3B491400C76527 /* JDObject.m in Sources */,
  1398. A13BCFDB1C3B491400C76527 /* GTMNSString+HTML.m in Sources */,
  1399. A13BD03B1C3B491400C76527 /* InvitationListViewController.m in Sources */,
  1400. A13BCFE31C3B491400C76527 /* UIImage+Addtions.m in Sources */,
  1401. A16D937E1C5600D300DC0DF1 /* DurationPopupView.m in Sources */,
  1402. A13BCFE51C3B491400C76527 /* UIView+Additions.m in Sources */,
  1403. A53C0DAF1E56E2F000E5D9F4 /* SocketServiceHandler.m in Sources */,
  1404. A13BD00C1C3B491400C76527 /* CustomRadioGroup.m in Sources */,
  1405. A13BD03F1C3B491400C76527 /* NoticeViewController.m in Sources */,
  1406. A13BD0091C3B491400C76527 /* CustomLabel.m in Sources */,
  1407. );
  1408. runOnlyForDeploymentPostprocessing = 0;
  1409. };
  1410. A13BCE931C3B47A500C76527 /* Sources */ = {
  1411. isa = PBXSourcesBuildPhase;
  1412. buildActionMask = 2147483647;
  1413. files = (
  1414. A13BCE9C1C3B47A500C76527 /* OneCableTests.m in Sources */,
  1415. );
  1416. runOnlyForDeploymentPostprocessing = 0;
  1417. };
  1418. /* End PBXSourcesBuildPhase section */
  1419. /* Begin PBXTargetDependency section */
  1420. A13BCE991C3B47A500C76527 /* PBXTargetDependency */ = {
  1421. isa = PBXTargetDependency;
  1422. target = A13BCE7D1C3B47A500C76527 /* OneCable */;
  1423. targetProxy = A13BCE981C3B47A500C76527 /* PBXContainerItemProxy */;
  1424. };
  1425. /* End PBXTargetDependency section */
  1426. /* Begin PBXVariantGroup section */
  1427. A13BCE8A1C3B47A500C76527 /* Main.storyboard */ = {
  1428. isa = PBXVariantGroup;
  1429. children = (
  1430. A13BCE8B1C3B47A500C76527 /* Base */,
  1431. );
  1432. name = Main.storyboard;
  1433. sourceTree = "<group>";
  1434. };
  1435. A13BD0731C3B492A00C76527 /* Common.storyboard */ = {
  1436. isa = PBXVariantGroup;
  1437. children = (
  1438. A13BD0741C3B492A00C76527 /* Base */,
  1439. );
  1440. name = Common.storyboard;
  1441. sourceTree = "<group>";
  1442. };
  1443. A13BD0751C3B492A00C76527 /* HomeHub.storyboard */ = {
  1444. isa = PBXVariantGroup;
  1445. children = (
  1446. A13BD0761C3B492A00C76527 /* Base */,
  1447. );
  1448. name = HomeHub.storyboard;
  1449. sourceTree = "<group>";
  1450. };
  1451. A13BD0771C3B492A00C76527 /* HomeMember.storyboard */ = {
  1452. isa = PBXVariantGroup;
  1453. children = (
  1454. A13BD0781C3B492A00C76527 /* Base */,
  1455. );
  1456. name = HomeMember.storyboard;
  1457. sourceTree = "<group>";
  1458. };
  1459. A13BD0791C3B492A00C76527 /* Localizable.strings */ = {
  1460. isa = PBXVariantGroup;
  1461. children = (
  1462. A13BD07A1C3B492A00C76527 /* Base */,
  1463. A576561A1E52EFF8002D0AE2 /* ko */,
  1464. );
  1465. name = Localizable.strings;
  1466. sourceTree = "<group>";
  1467. };
  1468. A13BD07B1C3B492A00C76527 /* Rules.storyboard */ = {
  1469. isa = PBXVariantGroup;
  1470. children = (
  1471. A13BD07C1C3B492A00C76527 /* Base */,
  1472. );
  1473. name = Rules.storyboard;
  1474. sourceTree = "<group>";
  1475. };
  1476. A13BD07D1C3B492A00C76527 /* Settings.storyboard */ = {
  1477. isa = PBXVariantGroup;
  1478. children = (
  1479. A13BD07E1C3B492A00C76527 /* Base */,
  1480. );
  1481. name = Settings.storyboard;
  1482. sourceTree = "<group>";
  1483. };
  1484. A13BD07F1C3B492A00C76527 /* SignUp.storyboard */ = {
  1485. isa = PBXVariantGroup;
  1486. children = (
  1487. A13BD0801C3B492A00C76527 /* Base */,
  1488. );
  1489. name = SignUp.storyboard;
  1490. sourceTree = "<group>";
  1491. };
  1492. A13BD0811C3B492A00C76527 /* Things.storyboard */ = {
  1493. isa = PBXVariantGroup;
  1494. children = (
  1495. A13BD0821C3B492A00C76527 /* Base */,
  1496. );
  1497. name = Things.storyboard;
  1498. sourceTree = "<group>";
  1499. };
  1500. /* End PBXVariantGroup section */
  1501. /* Begin XCBuildConfiguration section */
  1502. A13BCE9E1C3B47A500C76527 /* Debug */ = {
  1503. isa = XCBuildConfiguration;
  1504. buildSettings = {
  1505. ALWAYS_SEARCH_USER_PATHS = NO;
  1506. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1507. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1508. CLANG_CXX_LIBRARY = "libc++";
  1509. CLANG_ENABLE_MODULES = YES;
  1510. CLANG_ENABLE_OBJC_ARC = YES;
  1511. CLANG_WARN_BOOL_CONVERSION = YES;
  1512. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1513. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1514. CLANG_WARN_EMPTY_BODY = YES;
  1515. CLANG_WARN_ENUM_CONVERSION = YES;
  1516. CLANG_WARN_INFINITE_RECURSION = YES;
  1517. CLANG_WARN_INT_CONVERSION = YES;
  1518. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1519. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1520. CLANG_WARN_UNREACHABLE_CODE = YES;
  1521. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1522. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1523. COPY_PHASE_STRIP = NO;
  1524. DEBUG_INFORMATION_FORMAT = dwarf;
  1525. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1526. ENABLE_TESTABILITY = YES;
  1527. GCC_C_LANGUAGE_STANDARD = gnu99;
  1528. GCC_DYNAMIC_NO_PIC = NO;
  1529. GCC_NO_COMMON_BLOCKS = YES;
  1530. GCC_OPTIMIZATION_LEVEL = 0;
  1531. GCC_PREPROCESSOR_DEFINITIONS = (
  1532. "DEBUG=1",
  1533. "$(inherited)",
  1534. );
  1535. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1536. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1537. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1538. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1539. GCC_WARN_UNUSED_FUNCTION = YES;
  1540. GCC_WARN_UNUSED_VARIABLE = YES;
  1541. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1542. MTL_ENABLE_DEBUG_INFO = YES;
  1543. ONLY_ACTIVE_ARCH = YES;
  1544. SDKROOT = iphoneos;
  1545. };
  1546. name = Debug;
  1547. };
  1548. A13BCE9F1C3B47A500C76527 /* Release */ = {
  1549. isa = XCBuildConfiguration;
  1550. buildSettings = {
  1551. ALWAYS_SEARCH_USER_PATHS = NO;
  1552. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1553. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1554. CLANG_CXX_LIBRARY = "libc++";
  1555. CLANG_ENABLE_MODULES = YES;
  1556. CLANG_ENABLE_OBJC_ARC = YES;
  1557. CLANG_WARN_BOOL_CONVERSION = YES;
  1558. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1559. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1560. CLANG_WARN_EMPTY_BODY = YES;
  1561. CLANG_WARN_ENUM_CONVERSION = YES;
  1562. CLANG_WARN_INFINITE_RECURSION = YES;
  1563. CLANG_WARN_INT_CONVERSION = YES;
  1564. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1565. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1566. CLANG_WARN_UNREACHABLE_CODE = YES;
  1567. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1568. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1569. COPY_PHASE_STRIP = NO;
  1570. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1571. ENABLE_NS_ASSERTIONS = NO;
  1572. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1573. GCC_C_LANGUAGE_STANDARD = gnu99;
  1574. GCC_NO_COMMON_BLOCKS = YES;
  1575. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1576. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1577. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1578. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1579. GCC_WARN_UNUSED_FUNCTION = YES;
  1580. GCC_WARN_UNUSED_VARIABLE = YES;
  1581. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1582. MTL_ENABLE_DEBUG_INFO = NO;
  1583. SDKROOT = iphoneos;
  1584. VALIDATE_PRODUCT = YES;
  1585. };
  1586. name = Release;
  1587. };
  1588. A13BCEA11C3B47A500C76527 /* Debug */ = {
  1589. isa = XCBuildConfiguration;
  1590. baseConfigurationReference = FE2DCDFBF6442768EBBE8107 /* Pods-OneCable.debug.xcconfig */;
  1591. buildSettings = {
  1592. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1593. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
  1594. CODE_SIGN_ENTITLEMENTS = OneCable/OneCable.entitlements;
  1595. CODE_SIGN_IDENTITY = "";
  1596. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1597. DEVELOPMENT_TEAM = SJUCW4VV44;
  1598. ENABLE_TESTABILITY = NO;
  1599. FRAMEWORK_SEARCH_PATHS = (
  1600. "$(inherited)",
  1601. "$(PROJECT_DIR)/Carthage/Build/iOS",
  1602. "$(PROJECT_DIR)",
  1603. );
  1604. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1605. GCC_PREFIX_HEADER = OneCable/Prefix.pch;
  1606. GCC_PREPROCESSOR_DEFINITIONS = (
  1607. "$(inherited)",
  1608. "DEBUG_MODE=1",
  1609. );
  1610. INFOPLIST_FILE = OneCable/Info.plist;
  1611. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1612. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1613. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.onecable;
  1614. PRODUCT_NAME = "$(TARGET_NAME)";
  1615. PROVISIONING_PROFILE = "";
  1616. };
  1617. name = Debug;
  1618. };
  1619. A13BCEA21C3B47A500C76527 /* Release */ = {
  1620. isa = XCBuildConfiguration;
  1621. baseConfigurationReference = 1FEE599D97C10ACB19408ACA /* Pods-OneCable.release.xcconfig */;
  1622. buildSettings = {
  1623. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1624. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
  1625. CODE_SIGN_ENTITLEMENTS = OneCable/OneCable.entitlements;
  1626. CODE_SIGN_IDENTITY = "";
  1627. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1628. DEVELOPMENT_TEAM = SJUCW4VV44;
  1629. FRAMEWORK_SEARCH_PATHS = (
  1630. "$(inherited)",
  1631. "$(PROJECT_DIR)/Carthage/Build/iOS",
  1632. "$(PROJECT_DIR)",
  1633. );
  1634. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1635. GCC_PREFIX_HEADER = OneCable/Prefix.pch;
  1636. GCC_PREPROCESSOR_DEFINITIONS = (
  1637. "$(inherited)",
  1638. "RELEASE_MODE=1",
  1639. );
  1640. INFOPLIST_FILE = OneCable/Info.plist;
  1641. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1642. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1643. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.onecable;
  1644. PRODUCT_NAME = "$(TARGET_NAME)";
  1645. PROVISIONING_PROFILE = "";
  1646. };
  1647. name = Release;
  1648. };
  1649. A13BCEA41C3B47A500C76527 /* Debug */ = {
  1650. isa = XCBuildConfiguration;
  1651. buildSettings = {
  1652. BUNDLE_LOADER = "$(TEST_HOST)";
  1653. INFOPLIST_FILE = OneCableTests/Info.plist;
  1654. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1655. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1656. PRODUCT_NAME = "$(TARGET_NAME)";
  1657. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OneCable.app/OneCable";
  1658. };
  1659. name = Debug;
  1660. };
  1661. A13BCEA51C3B47A500C76527 /* Release */ = {
  1662. isa = XCBuildConfiguration;
  1663. buildSettings = {
  1664. BUNDLE_LOADER = "$(TEST_HOST)";
  1665. INFOPLIST_FILE = OneCableTests/Info.plist;
  1666. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1667. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1668. PRODUCT_NAME = "$(TARGET_NAME)";
  1669. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OneCable.app/OneCable";
  1670. };
  1671. name = Release;
  1672. };
  1673. A13BCEA61C3B47D500C76527 /* AdHoc */ = {
  1674. isa = XCBuildConfiguration;
  1675. buildSettings = {
  1676. ALWAYS_SEARCH_USER_PATHS = NO;
  1677. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1678. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1679. CLANG_CXX_LIBRARY = "libc++";
  1680. CLANG_ENABLE_MODULES = YES;
  1681. CLANG_ENABLE_OBJC_ARC = YES;
  1682. CLANG_WARN_BOOL_CONVERSION = YES;
  1683. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1684. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1685. CLANG_WARN_EMPTY_BODY = YES;
  1686. CLANG_WARN_ENUM_CONVERSION = YES;
  1687. CLANG_WARN_INFINITE_RECURSION = YES;
  1688. CLANG_WARN_INT_CONVERSION = YES;
  1689. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1690. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1691. CLANG_WARN_UNREACHABLE_CODE = YES;
  1692. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1693. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1694. COPY_PHASE_STRIP = NO;
  1695. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1696. ENABLE_NS_ASSERTIONS = NO;
  1697. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1698. GCC_C_LANGUAGE_STANDARD = gnu99;
  1699. GCC_NO_COMMON_BLOCKS = YES;
  1700. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1701. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1702. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1703. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1704. GCC_WARN_UNUSED_FUNCTION = YES;
  1705. GCC_WARN_UNUSED_VARIABLE = YES;
  1706. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1707. MTL_ENABLE_DEBUG_INFO = NO;
  1708. SDKROOT = iphoneos;
  1709. VALIDATE_PRODUCT = YES;
  1710. };
  1711. name = AdHoc;
  1712. };
  1713. A13BCEA71C3B47D500C76527 /* AdHoc */ = {
  1714. isa = XCBuildConfiguration;
  1715. baseConfigurationReference = ADE7CA33EFEB615D1B6CB053 /* Pods-OneCable.adhoc.xcconfig */;
  1716. buildSettings = {
  1717. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1718. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
  1719. CODE_SIGN_ENTITLEMENTS = OneCable/OneCable.entitlements;
  1720. CODE_SIGN_IDENTITY = "";
  1721. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1722. DEVELOPMENT_TEAM = SJUCW4VV44;
  1723. FRAMEWORK_SEARCH_PATHS = (
  1724. "$(inherited)",
  1725. "$(PROJECT_DIR)/Carthage/Build/iOS",
  1726. "$(PROJECT_DIR)",
  1727. );
  1728. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1729. GCC_PREFIX_HEADER = OneCable/Prefix.pch;
  1730. GCC_PREPROCESSOR_DEFINITIONS = (
  1731. "$(inherited)",
  1732. "ADHOC_MODE=1",
  1733. );
  1734. INFOPLIST_FILE = OneCable/Info.plist;
  1735. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1736. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1737. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.onecable;
  1738. PRODUCT_NAME = "$(TARGET_NAME)";
  1739. PROVISIONING_PROFILE = "";
  1740. };
  1741. name = AdHoc;
  1742. };
  1743. A13BCEA81C3B47D500C76527 /* AdHoc */ = {
  1744. isa = XCBuildConfiguration;
  1745. buildSettings = {
  1746. BUNDLE_LOADER = "$(TEST_HOST)";
  1747. INFOPLIST_FILE = OneCableTests/Info.plist;
  1748. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1749. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1750. PRODUCT_NAME = "$(TARGET_NAME)";
  1751. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OneCable.app/OneCable";
  1752. };
  1753. name = AdHoc;
  1754. };
  1755. A13BCEA91C3B47DC00C76527 /* Product */ = {
  1756. isa = XCBuildConfiguration;
  1757. buildSettings = {
  1758. ALWAYS_SEARCH_USER_PATHS = NO;
  1759. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1760. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1761. CLANG_CXX_LIBRARY = "libc++";
  1762. CLANG_ENABLE_MODULES = YES;
  1763. CLANG_ENABLE_OBJC_ARC = YES;
  1764. CLANG_WARN_BOOL_CONVERSION = YES;
  1765. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1766. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1767. CLANG_WARN_EMPTY_BODY = YES;
  1768. CLANG_WARN_ENUM_CONVERSION = YES;
  1769. CLANG_WARN_INFINITE_RECURSION = YES;
  1770. CLANG_WARN_INT_CONVERSION = YES;
  1771. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1772. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1773. CLANG_WARN_UNREACHABLE_CODE = YES;
  1774. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1775. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1776. COPY_PHASE_STRIP = NO;
  1777. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1778. ENABLE_NS_ASSERTIONS = NO;
  1779. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1780. GCC_C_LANGUAGE_STANDARD = gnu99;
  1781. GCC_NO_COMMON_BLOCKS = YES;
  1782. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1783. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1784. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1785. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1786. GCC_WARN_UNUSED_FUNCTION = YES;
  1787. GCC_WARN_UNUSED_VARIABLE = YES;
  1788. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1789. MTL_ENABLE_DEBUG_INFO = NO;
  1790. SDKROOT = iphoneos;
  1791. VALIDATE_PRODUCT = YES;
  1792. };
  1793. name = Product;
  1794. };
  1795. A13BCEAA1C3B47DC00C76527 /* Product */ = {
  1796. isa = XCBuildConfiguration;
  1797. baseConfigurationReference = 55C040EE251C2C1BC9704BEC /* Pods-OneCable.product.xcconfig */;
  1798. buildSettings = {
  1799. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1800. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
  1801. CODE_SIGN_ENTITLEMENTS = OneCable/OneCable.entitlements;
  1802. CODE_SIGN_IDENTITY = "";
  1803. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1804. DEVELOPMENT_TEAM = SJUCW4VV44;
  1805. FRAMEWORK_SEARCH_PATHS = (
  1806. "$(inherited)",
  1807. "$(PROJECT_DIR)/Carthage/Build/iOS",
  1808. "$(PROJECT_DIR)",
  1809. );
  1810. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1811. GCC_PREFIX_HEADER = OneCable/Prefix.pch;
  1812. GCC_PREPROCESSOR_DEFINITIONS = (
  1813. "$(inherited)",
  1814. "PRODUCT_MODE=1",
  1815. );
  1816. INFOPLIST_FILE = OneCable/Info.plist;
  1817. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1818. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1819. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.onecable;
  1820. PRODUCT_NAME = "$(TARGET_NAME)";
  1821. PROVISIONING_PROFILE = "";
  1822. };
  1823. name = Product;
  1824. };
  1825. A13BCEAB1C3B47DC00C76527 /* Product */ = {
  1826. isa = XCBuildConfiguration;
  1827. buildSettings = {
  1828. BUNDLE_LOADER = "$(TEST_HOST)";
  1829. INFOPLIST_FILE = OneCableTests/Info.plist;
  1830. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1831. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1832. PRODUCT_NAME = "$(TARGET_NAME)";
  1833. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OneCable.app/OneCable";
  1834. };
  1835. name = Product;
  1836. };
  1837. /* End XCBuildConfiguration section */
  1838. /* Begin XCConfigurationList section */
  1839. A13BCE791C3B47A500C76527 /* Build configuration list for PBXProject "OneCable" */ = {
  1840. isa = XCConfigurationList;
  1841. buildConfigurations = (
  1842. A13BCE9E1C3B47A500C76527 /* Debug */,
  1843. A13BCE9F1C3B47A500C76527 /* Release */,
  1844. A13BCEA61C3B47D500C76527 /* AdHoc */,
  1845. A13BCEA91C3B47DC00C76527 /* Product */,
  1846. );
  1847. defaultConfigurationIsVisible = 0;
  1848. defaultConfigurationName = Release;
  1849. };
  1850. A13BCEA01C3B47A500C76527 /* Build configuration list for PBXNativeTarget "OneCable" */ = {
  1851. isa = XCConfigurationList;
  1852. buildConfigurations = (
  1853. A13BCEA11C3B47A500C76527 /* Debug */,
  1854. A13BCEA21C3B47A500C76527 /* Release */,
  1855. A13BCEA71C3B47D500C76527 /* AdHoc */,
  1856. A13BCEAA1C3B47DC00C76527 /* Product */,
  1857. );
  1858. defaultConfigurationIsVisible = 0;
  1859. defaultConfigurationName = Release;
  1860. };
  1861. A13BCEA31C3B47A500C76527 /* Build configuration list for PBXNativeTarget "OneCableTests" */ = {
  1862. isa = XCConfigurationList;
  1863. buildConfigurations = (
  1864. A13BCEA41C3B47A500C76527 /* Debug */,
  1865. A13BCEA51C3B47A500C76527 /* Release */,
  1866. A13BCEA81C3B47D500C76527 /* AdHoc */,
  1867. A13BCEAB1C3B47DC00C76527 /* Product */,
  1868. );
  1869. defaultConfigurationIsVisible = 0;
  1870. defaultConfigurationName = Release;
  1871. };
  1872. /* End XCConfigurationList section */
  1873. };
  1874. rootObject = A13BCE761C3B47A500C76527 /* Project object */;
  1875. }