project.pbxproj 199 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 29125E5617492219003F03E5 /* index.html in Resources */ = {isa = PBXBuildFile; fileRef = 29125E5417492219003F03E5 /* index.html */; };
  10. 2915540117490A1E00B86CAD /* DDData.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553EB17490A1E00B86CAD /* DDData.m */; };
  11. 2915540217490A1E00B86CAD /* DDNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553ED17490A1E00B86CAD /* DDNumber.m */; };
  12. 2915540317490A1E00B86CAD /* DDRange.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553EF17490A1E00B86CAD /* DDRange.m */; };
  13. 2915540417490A1E00B86CAD /* HTTPAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */; };
  14. 2915540517490A1E00B86CAD /* HTTPConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F317490A1E00B86CAD /* HTTPConnection.m */; };
  15. 2915540617490A1E00B86CAD /* HTTPMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F617490A1E00B86CAD /* HTTPMessage.m */; };
  16. 2915540717490A1E00B86CAD /* HTTPServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F917490A1E00B86CAD /* HTTPServer.m */; };
  17. 2915540817490A1E00B86CAD /* MultipartFormDataParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */; };
  18. 2915540917490A1E00B86CAD /* MultipartMessageHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */; };
  19. 2915540A17490A1E00B86CAD /* MultipartMessageHeaderField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */; };
  20. 2915542217490A9C00B86CAD /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */; };
  21. 2915542417490A9C00B86CAD /* DDAbstractDatabaseLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */; };
  22. 2915542517490A9C00B86CAD /* DDASLLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541417490A9C00B86CAD /* DDASLLogger.m */; };
  23. 2915542617490A9C00B86CAD /* DDFileLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541617490A9C00B86CAD /* DDFileLogger.m */; };
  24. 2915542717490A9C00B86CAD /* DDLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541817490A9C00B86CAD /* DDLog.m */; };
  25. 2915542817490A9C00B86CAD /* DDTTYLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541A17490A9C00B86CAD /* DDTTYLogger.m */; };
  26. 2915542917490A9C00B86CAD /* ContextFilterLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */; };
  27. 2915542A17490A9C00B86CAD /* DispatchQueueLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */; };
  28. 2915543B17490B9C00B86CAD /* HTTPAsyncFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */; };
  29. 2915543C17490B9C00B86CAD /* HTTPDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543017490B9C00B86CAD /* HTTPDataResponse.m */; };
  30. 2915543D17490B9C00B86CAD /* HTTPDynamicFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */; };
  31. 2915543E17490B9C00B86CAD /* HTTPErrorResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */; };
  32. 2915543F17490B9C00B86CAD /* HTTPFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543617490B9C00B86CAD /* HTTPFileResponse.m */; };
  33. 2915544017490B9C00B86CAD /* HTTPRedirectResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */; };
  34. 2915544117490B9C00B86CAD /* WebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543A17490B9C00B86CAD /* WebSocket.m */; };
  35. 2915544317490D4A00B86CAD /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2915544217490D4A00B86CAD /* Security.framework */; };
  36. 293DF2F417494F8200BB880F /* DropboxSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D05ADEA174945CE0087550C /* DropboxSDK.framework */; };
  37. 29CE2D44174912C600922D8F /* VLCHTTPUploaderController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29CE2D42174912C600922D8F /* VLCHTTPUploaderController.m */; };
  38. 7A50619F176E3D410036E15D /* UINavigationController+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A50619E176E3D410036E15D /* UINavigationController+Theme.m */; };
  39. 7A5061A2176E41160036E15D /* UIBarButtonItem+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A5061A1176E41160036E15D /* UIBarButtonItem+Theme.m */; };
  40. 7AC8629D1765DC560011611A /* style.css in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629B1765DC560011611A /* style.css */; };
  41. 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */; };
  42. 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629F1765E90C0011611A /* jquery.fileupload.js */; };
  43. 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */; };
  44. 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A11765E90C0011611A /* jquery.ui.widget.js */; };
  45. 7D00161C177056B700649F27 /* main.js in Resources */ = {isa = PBXBuildFile; fileRef = 7D00161A17704DAC00649F27 /* main.js */; };
  46. 7D02B0D217B6BE850099030D /* VLCLocalServerFolderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D02B0D117B6BE850099030D /* VLCLocalServerFolderListViewController.m */; };
  47. 7D07A4E9174EA47800759D10 /* VLCSettingsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D07A4E7174EA47800759D10 /* VLCSettingsController.m */; };
  48. 7D07A4ED174EB81200759D10 /* VLCDropboxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D07A4EC174EB81200759D10 /* VLCDropboxController.m */; };
  49. 7D07F708175665ED00CDE21C /* navBarBackground@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */; };
  50. 7D07F709175665ED00CDE21C /* navBarBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F707175665ED00CDE21C /* navBarBackground.png */; };
  51. 7D07F70C175669A800CDE21C /* button.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70A175669A800CDE21C /* button.png */; };
  52. 7D07F70D175669A800CDE21C /* button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70B175669A800CDE21C /* button@2x.png */; };
  53. 7D07F710175669D800CDE21C /* buttonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70E175669D800CDE21C /* buttonHighlight.png */; };
  54. 7D07F711175669D800CDE21C /* buttonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */; };
  55. 7D07F71417566C4A00CDE21C /* menuCone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71217566C4A00CDE21C /* menuCone.png */; };
  56. 7D07F71517566C4A00CDE21C /* menuCone@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71317566C4A00CDE21C /* menuCone@2x.png */; };
  57. 7D07F71E175673D100CDE21C /* menuBtnBckHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */; };
  58. 7D07F71F175673D100CDE21C /* menuBtnBck@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */; };
  59. 7D07F720175673D100CDE21C /* menuBtnBckHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */; };
  60. 7D07F721175673D100CDE21C /* menuBtnBck.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71D175673D100CDE21C /* menuBtnBck.png */; };
  61. 7D07F726175688D300CDE21C /* doneButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F722175688D300CDE21C /* doneButton.png */; };
  62. 7D07F727175688D300CDE21C /* doneButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F723175688D300CDE21C /* doneButton@2x.png */; };
  63. 7D07F728175688D300CDE21C /* doneButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F724175688D300CDE21C /* doneButtonHighlight.png */; };
  64. 7D07F729175688D300CDE21C /* doneButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */; };
  65. 7D07F72E175691CC00CDE21C /* backButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72A175691CB00CDE21C /* backButton.png */; };
  66. 7D07F72F175691CC00CDE21C /* backButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72B175691CC00CDE21C /* backButton@2x.png */; };
  67. 7D07F730175691CC00CDE21C /* backButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */; };
  68. 7D07F731175691CC00CDE21C /* backButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */; };
  69. 7D16035D17BF9FE600F29B34 /* sudHeaderBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */; };
  70. 7D16035E17BF9FE600F29B34 /* sudHeaderBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */; };
  71. 7D16035F17BF9FE600F29B34 /* headerSidebar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */; };
  72. 7D16036017BF9FE600F29B34 /* headerSidebar.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035C17BF9FE600F29B34 /* headerSidebar.png */; };
  73. 7D16036317BFB7F400F29B34 /* WiFi-off.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16036117BFB7F400F29B34 /* WiFi-off.png */; };
  74. 7D16036417BFB7F400F29B34 /* WiFi-on.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16036217BFB7F400F29B34 /* WiFi-on.png */; };
  75. 7D16036717BFBB5D00F29B34 /* WiFi-off@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16036517BFBB5D00F29B34 /* WiFi-off@2x.png */; };
  76. 7D16036817BFBB5D00F29B34 /* WiFi-on@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16036617BFBB5D00F29B34 /* WiFi-on@2x.png */; };
  77. 7D1AC3041762996100BD2EB5 /* resetIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC3021762996100BD2EB5 /* resetIcon.png */; };
  78. 7D1AC3051762996100BD2EB5 /* resetIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */; };
  79. 7D1AC30817629AB600BD2EB5 /* ratioIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */; };
  80. 7D1AC30917629AB600BD2EB5 /* ratioIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */; };
  81. 7D1AC30C17629D4600BD2EB5 /* title.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30A17629D4600BD2EB5 /* title.png */; };
  82. 7D1AC30D17629D4600BD2EB5 /* title@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30B17629D4600BD2EB5 /* title@2x.png */; };
  83. 7D2339AF176DE72E008D223C /* VLCOpenNetworkStreamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D2339AD176DE72E008D223C /* VLCOpenNetworkStreamViewController.m */; };
  84. 7D2339B0176DE72E008D223C /* VLCOpenNetworkStreamViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D2339AE176DE72E008D223C /* VLCOpenNetworkStreamViewController.xib */; };
  85. 7D31001D17B64AE100E6516D /* GHRevealViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D31001C17B64AE100E6516D /* GHRevealViewController.m */; };
  86. 7D31002017B6768B00E6516D /* libupnpx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D31001F17B6768B00E6516D /* libupnpx.a */; };
  87. 7D31CF091746AF09005997E0 /* VLCStatusLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D31CF081746AF09005997E0 /* VLCStatusLabel.m */; };
  88. 7D33D41617182615008AF0E0 /* VLCMovieViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D33D41517182615008AF0E0 /* VLCMovieViewController~ipad.xib */; };
  89. 7D3EB012174A3530002062C2 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3EB011174A3530002062C2 /* Reachability.m */; };
  90. 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */; };
  91. 7D3EB017174A46FB002062C2 /* VLCHTTPFileDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3EB016174A46FB002062C2 /* VLCHTTPFileDownloader.m */; };
  92. 7D47D6F91760CD8700E86BAD /* subtitleIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */; };
  93. 7D47D6FA1760CD8700E86BAD /* subtitleIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */; };
  94. 7D47D6FB1760CD8700E86BAD /* videoEffectsIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */; };
  95. 7D47D6FC1760CD8700E86BAD /* videoEffectsIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */; };
  96. 7D47D6FD1760CD8700E86BAD /* seekbarBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */; };
  97. 7D47D6FE1760CD8700E86BAD /* slidermaximumTrack.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */; };
  98. 7D47D6FF1760CD8700E86BAD /* slidermaximumTrack@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */; };
  99. 7D47D7001760CD8700E86BAD /* slidermaxValue.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */; };
  100. 7D47D7011760CD8700E86BAD /* slidermaxValue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */; };
  101. 7D47D7021760CD8700E86BAD /* sliderminiValue.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */; };
  102. 7D47D7031760CD8700E86BAD /* sliderminiValue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */; };
  103. 7D47D7061760CD8700E86BAD /* speedIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D81760CD8700E86BAD /* speedIcon.png */; };
  104. 7D47D7071760CD8700E86BAD /* speedIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */; };
  105. 7D47D7081760CD8700E86BAD /* playbackControllerBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */; };
  106. 7D47D7091760CD8700E86BAD /* playbackDoneButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */; };
  107. 7D47D70A1760CD8700E86BAD /* playbackDoneButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */; };
  108. 7D47D70B1760CD8700E86BAD /* playbackDoneButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */; };
  109. 7D47D70C1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */; };
  110. 7D47D70D1760CD8700E86BAD /* ratioButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DF1760CD8700E86BAD /* ratioButton.png */; };
  111. 7D47D70E1760CD8700E86BAD /* ratioButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */; };
  112. 7D47D70F1760CD8700E86BAD /* ratioButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */; };
  113. 7D47D7101760CD8700E86BAD /* ratioButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */; };
  114. 7D47D7111760CD8700E86BAD /* seekbarBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E31760CD8700E86BAD /* seekbarBg.png */; };
  115. 7D47D7131760CD8700E86BAD /* forwardIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E51760CD8700E86BAD /* forwardIcon.png */; };
  116. 7D47D7141760CD8700E86BAD /* forwardIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */; };
  117. 7D47D7151760CD8700E86BAD /* knobSlider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E71760CD8700E86BAD /* knobSlider.png */; };
  118. 7D47D7161760CD8700E86BAD /* knobSlider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */; };
  119. 7D47D7191760CD8700E86BAD /* playbackControllerBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */; };
  120. 7D47D71A1760CD8700E86BAD /* playIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EC1760CD8700E86BAD /* playIcon.png */; };
  121. 7D47D71B1760CD8700E86BAD /* playIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */; };
  122. 7D47D71C1760CD8700E86BAD /* audioTrackIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */; };
  123. 7D47D71D1760CD8700E86BAD /* audioTrackIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */; };
  124. 7D47D71E1760CD8700E86BAD /* backIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F01760CD8700E86BAD /* backIcon.png */; };
  125. 7D47D71F1760CD8700E86BAD /* backIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */; };
  126. 7D47D7201760CD8700E86BAD /* ballSlider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F21760CD8700E86BAD /* ballSlider.png */; };
  127. 7D47D7211760CD8700E86BAD /* ballSlider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */; };
  128. 7D47D7271760D77C00E86BAD /* pauseIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7251760D77C00E86BAD /* pauseIcon.png */; };
  129. 7D47D7281760D77C00E86BAD /* pauseIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */; };
  130. 7D47D72B1760E3A000E86BAD /* sliderminimumTrack.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */; };
  131. 7D47D72C1760E3A000E86BAD /* sliderminimumTrack@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */; };
  132. 7D47D72F1761101700E86BAD /* VLCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D47D72E1761101700E86BAD /* VLCSlider.m */; };
  133. 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */ = {isa = PBXBuildFile; fileRef = 7D5DD5C617590ABF001421E3 /* About Contents.html */; };
  134. 7D5E39C6174FBAF3007DAFA1 /* VLCDropboxTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5E39C4174FBAF3007DAFA1 /* VLCDropboxTableViewController.m */; };
  135. 7D5E39C7174FBAF3007DAFA1 /* VLCDropboxTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39C5174FBAF3007DAFA1 /* VLCDropboxTableViewController.xib */; };
  136. 7D5E39CA174FC2F3007DAFA1 /* dropbox-white.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */; };
  137. 7D5E39CB174FC2F3007DAFA1 /* dropbox-white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */; };
  138. 7D5E39CF174FCE04007DAFA1 /* VLCDropboxTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5E39CE174FCE04007DAFA1 /* VLCDropboxTableViewCell.m */; };
  139. 7D5E39D1174FCF43007DAFA1 /* VLCDropboxTableViewCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39D0174FCF43007DAFA1 /* VLCDropboxTableViewCell~ipad.xib */; };
  140. 7D5F7AC317529430006CCCFA /* VLCHorizontalSwipeGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5F7AC217529430006CCCFA /* VLCHorizontalSwipeGestureRecognizer.m */; };
  141. 7D5F7AC61752943F006CCCFA /* VLCVerticalSwipeGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5F7AC51752943F006CCCFA /* VLCVerticalSwipeGestureRecognizer.m */; };
  142. 7D6B07BC1716C9B8003280C4 /* AQGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07A61716C9B8003280C4 /* AQGridView.m */; };
  143. 7D6B07BD1716C9B8003280C4 /* AQGridViewAnimatorItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07AA1716C9B8003280C4 /* AQGridViewAnimatorItem.m */; };
  144. 7D6B07BE1716C9B8003280C4 /* AQGridViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07AC1716C9B8003280C4 /* AQGridViewCell.m */; };
  145. 7D6B07BF1716C9B8003280C4 /* AQGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07AF1716C9B8003280C4 /* AQGridViewController.m */; };
  146. 7D6B07C01716C9B8003280C4 /* AQGridViewData.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07B11716C9B8003280C4 /* AQGridViewData.m */; };
  147. 7D6B07C11716C9B8003280C4 /* AQGridViewUpdateInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07B31716C9B8003280C4 /* AQGridViewUpdateInfo.m */; };
  148. 7D6B07C21716C9B8003280C4 /* AQGridViewUpdateItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07B51716C9B8003280C4 /* AQGridViewUpdateItem.m */; };
  149. 7D6B07C31716C9B8003280C4 /* NSIndexSet+AQIndexesOutsideSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07B71716C9B8003280C4 /* NSIndexSet+AQIndexesOutsideSet.m */; };
  150. 7D6B07C41716C9B8003280C4 /* NSIndexSet+AQIsSetContiguous.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07B91716C9B8003280C4 /* NSIndexSet+AQIsSetContiguous.m */; };
  151. 7D6B07C51716C9B8003280C4 /* UIColor+AQGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07BB1716C9B8003280C4 /* UIColor+AQGridView.m */; };
  152. 7D6B07F71716D45C003280C4 /* VLCPlaylistGridView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B07F61716D45B003280C4 /* VLCPlaylistGridView.m */; };
  153. 7D6B08C2174A831900A05173 /* vlc-xmas.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08C0174A831900A05173 /* vlc-xmas.png */; };
  154. 7D6B08C3174A831900A05173 /* vlc-xmas@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */; };
  155. 7D6B08EB174D65B500A05173 /* IASKAppSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  156. 7D6B08EC174D65B500A05173 /* IASKAppSettingsWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  157. 7D6B08ED174D65B500A05173 /* IASKSpecifierValuesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  158. 7D6B08EE174D65B500A05173 /* IASKSettingsReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  159. 7D6B08EF174D65B500A05173 /* IASKSettingsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  160. 7D6B08F0174D65B500A05173 /* IASKSettingsStoreFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  161. 7D6B08F1174D65B500A05173 /* IASKSettingsStoreUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  162. 7D6B08F2174D65B500A05173 /* IASKSpecifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  163. 7D6B08F3174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  164. 7D6B08F4174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  165. 7D6B08F5174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  166. 7D6B08F6174D65B500A05173 /* IASKSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E6174D65B500A05173 /* IASKSlider.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  167. 7D6B08F7174D65B500A05173 /* IASKSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E8174D65B500A05173 /* IASKSwitch.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  168. 7D6B08F8174D65B500A05173 /* IASKTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08EA174D65B500A05173 /* IASKTextField.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  169. 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D6B08F9174D716200A05173 /* MessageUI.framework */; };
  170. 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08FB174D773C00A05173 /* Settings.bundle */; };
  171. 7D6BD1841762026700AD311A /* thumbOverlayPhone@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */; };
  172. 7D6BD1851762026700AD311A /* thumbOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */; };
  173. 7D6BD1861762026700AD311A /* thumbOverlayPhone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */; };
  174. 7D6BD1871762026700AD311A /* thumbOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1831762026700AD311A /* thumbOverlay.png */; };
  175. 7D93044117B67C4F0054EAC6 /* VLCLocalServerListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D93043F17B67C4F0054EAC6 /* VLCLocalServerListViewController.m */; };
  176. 7D93044517B684CF0054EAC6 /* VLCLocalNetworkListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D93044417B684CF0054EAC6 /* VLCLocalNetworkListCell.m */; };
  177. 7D93044817B687C90054EAC6 /* VLCLocalNetworkListCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D93044617B687C90054EAC6 /* VLCLocalNetworkListCell~ipad.xib */; };
  178. 7D93044917B687C90054EAC6 /* VLCLocalNetworkListCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D93044717B687C90054EAC6 /* VLCLocalNetworkListCell~iphone.xib */; };
  179. 7D93045317B6A0DF0054EAC6 /* VLCMenuTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D93045217B6A0DF0054EAC6 /* VLCMenuTableViewController.m */; };
  180. 7D93045617B6A5C00054EAC6 /* GHMenuCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D93045517B6A5C00054EAC6 /* GHMenuCell.m */; };
  181. 7D93045917B6ACA10054EAC6 /* VLCWiFiUploadTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D93045817B6ACA10054EAC6 /* VLCWiFiUploadTableViewCell.m */; };
  182. 7D93045B17B6ACCF0054EAC6 /* VLCWiFiUploadTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D93045A17B6ACCF0054EAC6 /* VLCWiFiUploadTableViewCell.xib */; };
  183. 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCDE16DE7D1000F2623B /* UIKit.framework */; };
  184. 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE016DE7D1000F2623B /* Foundation.framework */; };
  185. 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */; };
  186. 7D94FCEB16DE7D1000F2623B /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D94FCEA16DE7D1000F2623B /* main.m */; };
  187. 7D94FCEF16DE7D1000F2623B /* VLCAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D94FCEE16DE7D1000F2623B /* VLCAppDelegate.m */; };
  188. 7D94FCF816DE7D1100F2623B /* VLCPlaylistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D94FCF716DE7D1100F2623B /* VLCPlaylistViewController.m */; };
  189. 7D94FCFB16DE7D1100F2623B /* VLCMovieViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D94FCFA16DE7D1100F2623B /* VLCMovieViewController.m */; };
  190. 7D9529531732EFCA006F5B40 /* VLCAboutViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D9529521732EFCA006F5B40 /* VLCAboutViewController~ipad.xib */; };
  191. 7DA6209B170A0CE500643D11 /* VLCPlaylistTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DA6209A170A0CE500643D11 /* VLCPlaylistTableViewCell.m */; };
  192. 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */; };
  193. 7DADC55F1704FABF001DAC63 /* OBSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DADC55E1704FABF001DAC63 /* OBSlider.m */; };
  194. 7DB43835176E20CC00F460EE /* VLCDownloadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB43833176E20CC00F460EE /* VLCDownloadViewController.m */; };
  195. 7DB43836176E20CC00F460EE /* VLCDownloadViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DB43834176E20CC00F460EE /* VLCDownloadViewController.xib */; };
  196. 7DBC3B441711FC6C00DCF688 /* VLCAboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DBC3B421711FC6C00DCF688 /* VLCAboutViewController.m */; };
  197. 7DBC3B451711FC6C00DCF688 /* VLCAboutViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBC3B431711FC6C00DCF688 /* VLCAboutViewController~iphone.xib */; };
  198. 7DC72D5E17B7E7C7008A26D0 /* download@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */; };
  199. 7DC72D5F17B7E7C7008A26D0 /* download.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5C17B7E7C7008A26D0 /* download.png */; };
  200. 7DC72D6017B7E7C7008A26D0 /* download@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */; };
  201. 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */; };
  202. 7DC72D6917B820C9008A26D0 /* VLCNetworkLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC72D6717B820C8008A26D0 /* VLCNetworkLoginViewController.m */; };
  203. 7DC72D6A17B820C9008A26D0 /* VLCNetworkLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D6817B820C8008A26D0 /* VLCNetworkLoginViewController.xib */; };
  204. 7DC87AEE17412A1F009DC250 /* VLCLinearProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC87AED17412A1F009DC250 /* VLCLinearProgressIndicator.m */; };
  205. 7DC87AF217413EE3009DC250 /* VLCPlaylistGridView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DC87AF117413EE3009DC250 /* VLCPlaylistGridView.xib */; };
  206. 7DD2A3A7179BFAFE003EB537 /* VLCBugreporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DD2A3A6179BFAFE003EB537 /* VLCBugreporter.m */; };
  207. 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */; };
  208. 7DDABBB71775A3C7003D8937 /* UIDevice+SpeedCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DDABBB61775A3C7003D8937 /* UIDevice+SpeedCategory.m */; };
  209. 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */; };
  210. 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */; };
  211. 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */; };
  212. 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */; };
  213. 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */; };
  214. 7DEB3B5D17647B240038FC70 /* bottomBlackBar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */; };
  215. 7DEB3B5E17647B240038FC70 /* bottomBlackBar.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */; };
  216. 7DEB3B6017647DE30038FC70 /* iTunesArtwork@2x in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */; };
  217. 7DEB3B6217647E230038FC70 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6117647E230038FC70 /* Icon@2x.png */; };
  218. 7DEB3B6417647E370038FC70 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6317647E370038FC70 /* Icon.png */; };
  219. 7DEB3B6617647E440038FC70 /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6517647E440038FC70 /* Icon-72.png */; };
  220. 7DEB3B6817647E480038FC70 /* Icon-72@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */; };
  221. 7DEB3B6D17647EC10038FC70 /* Icon-Small-50.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */; };
  222. 7DEB3B6E17647EC10038FC70 /* Icon-Small-50@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */; };
  223. 7DEB3B6F17647EC10038FC70 /* Icon-Small.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */; };
  224. 7DEB3B7017647EC10038FC70 /* Icon-Small@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */; };
  225. 7DEB3B7217649BEB0038FC70 /* Icon-512.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7117649BEB0038FC70 /* Icon-512.png */; };
  226. 7DEB3B7517649F2C0038FC70 /* menuButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7317649F2C0038FC70 /* menuButton.png */; };
  227. 7DEB3B7617649F2C0038FC70 /* menuButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */; };
  228. 7DEB3B791764A4040038FC70 /* input@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B771764A4040038FC70 /* input@2x.png */; };
  229. 7DEB3B7A1764A4040038FC70 /* input.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B781764A4040038FC70 /* input.png */; };
  230. 7DEB3B851764A4F40038FC70 /* movie@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */; };
  231. 7DEB3B861764A4F40038FC70 /* movie@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */; };
  232. 7DEB3B871764A4F40038FC70 /* blank@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */; };
  233. 7DEB3B881764A4F40038FC70 /* folder.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7F1764A4F40038FC70 /* folder.png */; };
  234. 7DEB3B891764A4F40038FC70 /* folder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B801764A4F40038FC70 /* folder@2x.png */; };
  235. 7DEB3B8A1764A4F40038FC70 /* folder@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B811764A4F40038FC70 /* folder@4x.png */; };
  236. 7DEB3B8B1764A4F40038FC70 /* movie.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B821764A4F40038FC70 /* movie.png */; };
  237. 7DEB3B8C1764A4F40038FC70 /* blank.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B831764A4F40038FC70 /* blank.png */; };
  238. 7DEB3B8D1764A4F40038FC70 /* blank@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B841764A4F40038FC70 /* blank@2x.png */; };
  239. 7DF1166C176CC69A009EC05C /* volumeballslider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF1166A176CC69A009EC05C /* volumeballslider.png */; };
  240. 7DF1166D176CC69A009EC05C /* volumeballslider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */; };
  241. 7DF65C2D174FF3F400F43330 /* VLCDropboxTableViewCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DF65C2C174FF3F400F43330 /* VLCDropboxTableViewCell~iphone.xib */; };
  242. 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */; };
  243. 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7E790175F47DC0018858D /* MediaPlayer.framework */; };
  244. A7035BBE174519600057DFA7 /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = A7035BBD174519600057DFA7 /* iTunesArtwork */; };
  245. A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */; };
  246. A79246A7170F0ED20036AAF2 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7924698170F0ED20036AAF2 /* Default-568h@2x.png */; };
  247. A79246A8170F0ED20036AAF2 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = A7924699170F0ED20036AAF2 /* Default.png */; };
  248. A79246A9170F0ED20036AAF2 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A792469A170F0ED20036AAF2 /* Default@2x.png */; };
  249. A79246C1170F114E0036AAF2 /* VLCEmptyLibraryView~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = A79246BC170F114E0036AAF2 /* VLCEmptyLibraryView~ipad.xib */; };
  250. A79246C2170F114E0036AAF2 /* VLCMovieViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = A79246BD170F114E0036AAF2 /* VLCMovieViewController~iphone.xib */; };
  251. A79246C3170F114E0036AAF2 /* VLCPlaylistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A79246BE170F114E0036AAF2 /* VLCPlaylistTableViewCell.xib */; };
  252. A79246C5170F114E0036AAF2 /* VLCEmptyLibraryView~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = A79246C0170F114E0036AAF2 /* VLCEmptyLibraryView~iphone.xib */; };
  253. A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A79246C6170F11DF0036AAF2 /* Localizable.strings */; };
  254. A7990064176E9352009E8267 /* libraryBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = A7990063176E9352009E8267 /* libraryBackground.png */; };
  255. A7990067176E9CF3009E8267 /* VLCMenuButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A7990066176E9CF3009E8267 /* VLCMenuButton.m */; };
  256. A7A0E9F5174BA66000162F25 /* papasscode_background.png in Resources */ = {isa = PBXBuildFile; fileRef = A7A0E9ED174BA66000162F25 /* papasscode_background.png */; };
  257. A7A0E9F6174BA66000162F25 /* papasscode_background@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7A0E9EE174BA66000162F25 /* papasscode_background@2x.png */; };
  258. A7A0E9F7174BA66000162F25 /* papasscode_failed_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = A7A0E9EF174BA66000162F25 /* papasscode_failed_bg.png */; };
  259. A7A0E9F8174BA66000162F25 /* papasscode_failed_bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7A0E9F0174BA66000162F25 /* papasscode_failed_bg@2x.png */; };
  260. A7A0E9F9174BA66000162F25 /* papasscode_marker.png in Resources */ = {isa = PBXBuildFile; fileRef = A7A0E9F1174BA66000162F25 /* papasscode_marker.png */; };
  261. A7A0E9FA174BA66000162F25 /* papasscode_marker@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7A0E9F2174BA66000162F25 /* papasscode_marker@2x.png */; };
  262. A7A0E9FB174BA66000162F25 /* PAPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A7A0E9F4174BA66000162F25 /* PAPasscodeViewController.m */; };
  263. A7C3025E175A53D400AD4388 /* NSString+SupportedMedia.m in Sources */ = {isa = PBXBuildFile; fileRef = A7C3025D175A53D400AD4388 /* NSString+SupportedMedia.m */; };
  264. A7CB0DB11716F72600050CF3 /* PlayingExternally@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */; };
  265. A7CB0DB21716F72600050CF3 /* PlayingExternally~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */; };
  266. A7CB0DB31716F72600050CF3 /* PlayingExternally~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */; };
  267. A7CB0DB41716F72600050CF3 /* PlayingExternally@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */; };
  268. A7D03A4717A41AD30022C16F /* VLCMediaFileDiscoverer.m in Sources */ = {isa = PBXBuildFile; fileRef = A7D03A4617A41AD30022C16F /* VLCMediaFileDiscoverer.m */; };
  269. A7DA16D1171083DF00D6FED9 /* VLCExternalDisplayController.m in Sources */ = {isa = PBXBuildFile; fileRef = A7DA16D0171083DF00D6FED9 /* VLCExternalDisplayController.m */; };
  270. A7FF9F3E17428C1900999819 /* DeleteButton.png in Resources */ = {isa = PBXBuildFile; fileRef = A7FF9F3D17428C1900999819 /* DeleteButton.png */; };
  271. A7FF9F4017428C3800999819 /* DeleteButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */; };
  272. CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */; };
  273. CC1BBC431704935E00A20CBF /* MediaLibrary.mom in Resources */ = {isa = PBXBuildFile; fileRef = CC1BBC421704935E00A20CBF /* MediaLibrary.mom */; };
  274. CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC451704938300A20CBF /* libiconv.dylib */; };
  275. CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC471704938B00A20CBF /* libstdc++.dylib */; };
  276. CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */; };
  277. CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4D170493A300A20CBF /* libbz2.dylib */; };
  278. CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4F170493AA00A20CBF /* libxml2.dylib */; };
  279. CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC51170493B100A20CBF /* OpenGLES.framework */; };
  280. CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC53170493B800A20CBF /* AudioToolbox.framework */; };
  281. CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC55170493C100A20CBF /* QuartzCore.framework */; };
  282. CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC57170493E100A20CBF /* CoreData.framework */; };
  283. CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CCE2A22D17A5859E00D9EAAD /* CoreText.framework */; };
  284. /* End PBXBuildFile section */
  285. /* Begin PBXFileReference section */
  286. 29125E5417492219003F03E5 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
  287. 291553EA17490A1E00B86CAD /* DDData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDData.h; sourceTree = "<group>"; };
  288. 291553EB17490A1E00B86CAD /* DDData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDData.m; sourceTree = "<group>"; };
  289. 291553EC17490A1E00B86CAD /* DDNumber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDNumber.h; sourceTree = "<group>"; };
  290. 291553ED17490A1E00B86CAD /* DDNumber.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDNumber.m; sourceTree = "<group>"; };
  291. 291553EE17490A1E00B86CAD /* DDRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDRange.h; sourceTree = "<group>"; };
  292. 291553EF17490A1E00B86CAD /* DDRange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDRange.m; sourceTree = "<group>"; };
  293. 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPAuthenticationRequest.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.h; sourceTree = SOURCE_ROOT; };
  294. 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPAuthenticationRequest.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.m; sourceTree = SOURCE_ROOT; };
  295. 291553F217490A1E00B86CAD /* HTTPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPConnection.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.h; sourceTree = SOURCE_ROOT; };
  296. 291553F317490A1E00B86CAD /* HTTPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPConnection.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.m; sourceTree = SOURCE_ROOT; };
  297. 291553F417490A1E00B86CAD /* HTTPLogging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPLogging.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPLogging.h; sourceTree = SOURCE_ROOT; };
  298. 291553F517490A1E00B86CAD /* HTTPMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPMessage.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.h; sourceTree = SOURCE_ROOT; };
  299. 291553F617490A1E00B86CAD /* HTTPMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPMessage.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.m; sourceTree = SOURCE_ROOT; };
  300. 291553F717490A1E00B86CAD /* HTTPResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPResponse.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPResponse.h; sourceTree = SOURCE_ROOT; };
  301. 291553F817490A1E00B86CAD /* HTTPServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPServer.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.h; sourceTree = SOURCE_ROOT; };
  302. 291553F917490A1E00B86CAD /* HTTPServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPServer.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.m; sourceTree = SOURCE_ROOT; };
  303. 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartFormDataParser.h; sourceTree = "<group>"; };
  304. 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartFormDataParser.m; sourceTree = "<group>"; };
  305. 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeader.h; sourceTree = "<group>"; };
  306. 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeader.m; sourceTree = "<group>"; };
  307. 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeaderField.h; sourceTree = "<group>"; };
  308. 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeaderField.m; sourceTree = "<group>"; };
  309. 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCDAsyncSocket.h; sourceTree = "<group>"; };
  310. 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GCDAsyncSocket.m; sourceTree = "<group>"; };
  311. 2915541017490A9C00B86CAD /* About.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = About.txt; sourceTree = "<group>"; };
  312. 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDAbstractDatabaseLogger.h; sourceTree = "<group>"; };
  313. 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDAbstractDatabaseLogger.m; sourceTree = "<group>"; };
  314. 2915541317490A9C00B86CAD /* DDASLLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDASLLogger.h; sourceTree = "<group>"; };
  315. 2915541417490A9C00B86CAD /* DDASLLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDASLLogger.m; sourceTree = "<group>"; };
  316. 2915541517490A9C00B86CAD /* DDFileLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDFileLogger.h; sourceTree = "<group>"; };
  317. 2915541617490A9C00B86CAD /* DDFileLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDFileLogger.m; sourceTree = "<group>"; };
  318. 2915541717490A9C00B86CAD /* DDLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDLog.h; sourceTree = "<group>"; };
  319. 2915541817490A9C00B86CAD /* DDLog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDLog.m; sourceTree = "<group>"; };
  320. 2915541917490A9C00B86CAD /* DDTTYLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDTTYLogger.h; sourceTree = "<group>"; };
  321. 2915541A17490A9C00B86CAD /* DDTTYLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDTTYLogger.m; sourceTree = "<group>"; };
  322. 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContextFilterLogFormatter.h; sourceTree = "<group>"; };
  323. 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContextFilterLogFormatter.m; sourceTree = "<group>"; };
  324. 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DispatchQueueLogFormatter.h; sourceTree = "<group>"; };
  325. 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DispatchQueueLogFormatter.m; sourceTree = "<group>"; };
  326. 2915542017490A9C00B86CAD /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
  327. 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPAsyncFileResponse.h; sourceTree = "<group>"; };
  328. 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPAsyncFileResponse.m; sourceTree = "<group>"; };
  329. 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDataResponse.h; sourceTree = "<group>"; };
  330. 2915543017490B9C00B86CAD /* HTTPDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDataResponse.m; sourceTree = "<group>"; };
  331. 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDynamicFileResponse.h; sourceTree = "<group>"; };
  332. 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDynamicFileResponse.m; sourceTree = "<group>"; };
  333. 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPErrorResponse.h; sourceTree = "<group>"; };
  334. 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPErrorResponse.m; sourceTree = "<group>"; };
  335. 2915543517490B9C00B86CAD /* HTTPFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPFileResponse.h; sourceTree = "<group>"; };
  336. 2915543617490B9C00B86CAD /* HTTPFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPFileResponse.m; sourceTree = "<group>"; };
  337. 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPRedirectResponse.h; sourceTree = "<group>"; };
  338. 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPRedirectResponse.m; sourceTree = "<group>"; };
  339. 2915543917490B9C00B86CAD /* WebSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebSocket.h; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.h; sourceTree = SOURCE_ROOT; };
  340. 2915543A17490B9C00B86CAD /* WebSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebSocket.m; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.m; sourceTree = SOURCE_ROOT; };
  341. 2915544217490D4A00B86CAD /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  342. 29CE2D41174912C600922D8F /* VLCHTTPUploaderController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCHTTPUploaderController.h; sourceTree = "<group>"; };
  343. 29CE2D42174912C600922D8F /* VLCHTTPUploaderController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCHTTPUploaderController.m; sourceTree = "<group>"; };
  344. 7A50619D176E3D410036E15D /* UINavigationController+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+Theme.h"; sourceTree = "<group>"; };
  345. 7A50619E176E3D410036E15D /* UINavigationController+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+Theme.m"; sourceTree = "<group>"; };
  346. 7A5061A0176E41160036E15D /* UIBarButtonItem+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+Theme.h"; sourceTree = "<group>"; };
  347. 7A5061A1176E41160036E15D /* UIBarButtonItem+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+Theme.m"; sourceTree = "<group>"; };
  348. 7AC8629B1765DC560011611A /* style.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = style.css; sourceTree = "<group>"; };
  349. 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery-1.10.1.min.js"; sourceTree = "<group>"; };
  350. 7AC8629F1765E90C0011611A /* jquery.fileupload.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.fileupload.js; sourceTree = "<group>"; };
  351. 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery.iframe-transport.js"; sourceTree = "<group>"; };
  352. 7AC862A11765E90C0011611A /* jquery.ui.widget.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.ui.widget.js; sourceTree = "<group>"; };
  353. 7D00161A17704DAC00649F27 /* main.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = main.js; sourceTree = "<group>"; };
  354. 7D02B0D017B6BE850099030D /* VLCLocalServerFolderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCLocalServerFolderListViewController.h; sourceTree = "<group>"; };
  355. 7D02B0D117B6BE850099030D /* VLCLocalServerFolderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCLocalServerFolderListViewController.m; sourceTree = "<group>"; };
  356. 7D05ADEA174945CE0087550C /* DropboxSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropboxSDK.framework; path = ImportedSources/Dropbox/DropboxSDK.framework; sourceTree = "<group>"; };
  357. 7D07A4E6174EA47800759D10 /* VLCSettingsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCSettingsController.h; sourceTree = "<group>"; };
  358. 7D07A4E7174EA47800759D10 /* VLCSettingsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCSettingsController.m; sourceTree = "<group>"; };
  359. 7D07A4EB174EB81200759D10 /* VLCDropboxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCDropboxController.h; sourceTree = "<group>"; };
  360. 7D07A4EC174EB81200759D10 /* VLCDropboxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCDropboxController.m; sourceTree = "<group>"; };
  361. 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "navBarBackground@2x.png"; sourceTree = "<group>"; };
  362. 7D07F707175665ED00CDE21C /* navBarBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = navBarBackground.png; sourceTree = "<group>"; };
  363. 7D07F70A175669A800CDE21C /* button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button.png; sourceTree = "<group>"; };
  364. 7D07F70B175669A800CDE21C /* button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "button@2x.png"; sourceTree = "<group>"; };
  365. 7D07F70E175669D800CDE21C /* buttonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonHighlight.png; sourceTree = "<group>"; };
  366. 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "buttonHighlight@2x.png"; sourceTree = "<group>"; };
  367. 7D07F71217566C4A00CDE21C /* menuCone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuCone.png; sourceTree = "<group>"; };
  368. 7D07F71317566C4A00CDE21C /* menuCone@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuCone@2x.png"; sourceTree = "<group>"; };
  369. 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuBtnBckHighlight@2x.png"; sourceTree = "<group>"; };
  370. 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuBtnBck@2x.png"; sourceTree = "<group>"; };
  371. 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuBtnBckHighlight.png; sourceTree = "<group>"; };
  372. 7D07F71D175673D100CDE21C /* menuBtnBck.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuBtnBck.png; sourceTree = "<group>"; };
  373. 7D07F722175688D300CDE21C /* doneButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doneButton.png; sourceTree = "<group>"; };
  374. 7D07F723175688D300CDE21C /* doneButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doneButton@2x.png"; sourceTree = "<group>"; };
  375. 7D07F724175688D300CDE21C /* doneButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doneButtonHighlight.png; sourceTree = "<group>"; };
  376. 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doneButtonHighlight@2x.png"; sourceTree = "<group>"; };
  377. 7D07F72A175691CB00CDE21C /* backButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backButton.png; sourceTree = "<group>"; };
  378. 7D07F72B175691CC00CDE21C /* backButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backButton@2x.png"; sourceTree = "<group>"; };
  379. 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backButtonHighlight.png; sourceTree = "<group>"; };
  380. 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backButtonHighlight@2x.png"; sourceTree = "<group>"; };
  381. 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sudHeaderBg.png; sourceTree = "<group>"; };
  382. 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sudHeaderBg@2x.png"; sourceTree = "<group>"; };
  383. 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "headerSidebar@2x.png"; sourceTree = "<group>"; };
  384. 7D16035C17BF9FE600F29B34 /* headerSidebar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = headerSidebar.png; sourceTree = "<group>"; };
  385. 7D16036117BFB7F400F29B34 /* WiFi-off.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WiFi-off.png"; sourceTree = "<group>"; };
  386. 7D16036217BFB7F400F29B34 /* WiFi-on.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WiFi-on.png"; sourceTree = "<group>"; };
  387. 7D16036517BFBB5D00F29B34 /* WiFi-off@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WiFi-off@2x.png"; sourceTree = "<group>"; };
  388. 7D16036617BFBB5D00F29B34 /* WiFi-on@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WiFi-on@2x.png"; sourceTree = "<group>"; };
  389. 7D19492B17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
  390. 7D19492C17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  391. 7D19492D17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  392. 7D19492E17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  393. 7D19492F17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  394. 7D1AB27C179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  395. 7D1AB27D179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  396. 7D1AB27E179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  397. 7D1AB27F179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  398. 7D1AB280179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  399. 7D1AB281179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  400. 7D1AB282179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  401. 7D1AB283179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  402. 7D1AB284179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  403. 7D1AB285179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  404. 7D1AB286179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
  405. 7D1AB287179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  406. 7D1AB288179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  407. 7D1AB289179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  408. 7D1AB28A179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  409. 7D1AB28B179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  410. 7D1AB28C179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  411. 7D1AB28D179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  412. 7D1AB28E179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  413. 7D1AB28F179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  414. 7D1AB290179C98E3004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  415. 7D1AB291179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  416. 7D1AB292179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  417. 7D1AB293179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  418. 7D1AB294179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  419. 7D1AB295179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
  420. 7D1AB296179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  421. 7D1AB297179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  422. 7D1AB298179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  423. 7D1AB299179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  424. 7D1AB2A4179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  425. 7D1AB2A5179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  426. 7D1AB2A6179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  427. 7D1AB2A7179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  428. 7D1AB2A8179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  429. 7D1AC3021762996100BD2EB5 /* resetIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = resetIcon.png; sourceTree = "<group>"; };
  430. 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "resetIcon@2x.png"; sourceTree = "<group>"; };
  431. 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioIcon.png; sourceTree = "<group>"; };
  432. 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioIcon@2x.png"; sourceTree = "<group>"; };
  433. 7D1AC30A17629D4600BD2EB5 /* title.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = title.png; sourceTree = "<group>"; };
  434. 7D1AC30B17629D4600BD2EB5 /* title@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "title@2x.png"; sourceTree = "<group>"; };
  435. 7D2339AC176DE72E008D223C /* VLCOpenNetworkStreamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCOpenNetworkStreamViewController.h; sourceTree = "<group>"; };
  436. 7D2339AD176DE72E008D223C /* VLCOpenNetworkStreamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCOpenNetworkStreamViewController.m; sourceTree = "<group>"; };
  437. 7D2339AE176DE72E008D223C /* VLCOpenNetworkStreamViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCOpenNetworkStreamViewController.xib; path = ../Resources/VLCOpenNetworkStreamViewController.xib; sourceTree = "<group>"; };
  438. 7D31001B17B64AE100E6516D /* GHRevealViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHRevealViewController.h; path = ImportedSources/GHSidebarNav/GHSidebarNav/GHRevealViewController.h; sourceTree = SOURCE_ROOT; };
  439. 7D31001C17B64AE100E6516D /* GHRevealViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GHRevealViewController.m; path = ImportedSources/GHSidebarNav/GHSidebarNav/GHRevealViewController.m; sourceTree = SOURCE_ROOT; };
  440. 7D31001F17B6768B00E6516D /* libupnpx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libupnpx.a; path = External/upnpx/libupnpx.a; sourceTree = "<group>"; };
  441. 7D31CF071746AF09005997E0 /* VLCStatusLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCStatusLabel.h; sourceTree = "<group>"; };
  442. 7D31CF081746AF09005997E0 /* VLCStatusLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCStatusLabel.m; sourceTree = "<group>"; };
  443. 7D33D41517182615008AF0E0 /* VLCMovieViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~ipad.xib"; path = "Resources/VLCMovieViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  444. 7D3EB010174A3530002062C2 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  445. 7D3EB011174A3530002062C2 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  446. 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  447. 7D3EB015174A46FB002062C2 /* VLCHTTPFileDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCHTTPFileDownloader.h; sourceTree = "<group>"; };
  448. 7D3EB016174A46FB002062C2 /* VLCHTTPFileDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCHTTPFileDownloader.m; sourceTree = "<group>"; };
  449. 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = subtitleIcon.png; sourceTree = "<group>"; };
  450. 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "subtitleIcon@2x.png"; sourceTree = "<group>"; };
  451. 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = videoEffectsIcon.png; sourceTree = "<group>"; };
  452. 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "videoEffectsIcon@2x.png"; sourceTree = "<group>"; };
  453. 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seekbarBg@2x.png"; sourceTree = "<group>"; };
  454. 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slidermaximumTrack.png; sourceTree = "<group>"; };
  455. 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "slidermaximumTrack@2x.png"; sourceTree = "<group>"; };
  456. 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slidermaxValue.png; sourceTree = "<group>"; };
  457. 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "slidermaxValue@2x.png"; sourceTree = "<group>"; };
  458. 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sliderminiValue.png; sourceTree = "<group>"; };
  459. 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sliderminiValue@2x.png"; sourceTree = "<group>"; };
  460. 7D47D6D81760CD8700E86BAD /* speedIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = speedIcon.png; sourceTree = "<group>"; };
  461. 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "speedIcon@2x.png"; sourceTree = "<group>"; };
  462. 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackControllerBg@2x.png"; sourceTree = "<group>"; };
  463. 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackDoneButton.png; sourceTree = "<group>"; };
  464. 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackDoneButton@2x.png"; sourceTree = "<group>"; };
  465. 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackDoneButtonHighlight.png; sourceTree = "<group>"; };
  466. 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackDoneButtonHighlight@2x.png"; sourceTree = "<group>"; };
  467. 7D47D6DF1760CD8700E86BAD /* ratioButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioButton.png; sourceTree = "<group>"; };
  468. 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioButton@2x.png"; sourceTree = "<group>"; };
  469. 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioButtonHighlight.png; sourceTree = "<group>"; };
  470. 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioButtonHighlight@2x.png"; sourceTree = "<group>"; };
  471. 7D47D6E31760CD8700E86BAD /* seekbarBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = seekbarBg.png; sourceTree = "<group>"; };
  472. 7D47D6E51760CD8700E86BAD /* forwardIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = forwardIcon.png; sourceTree = "<group>"; };
  473. 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "forwardIcon@2x.png"; sourceTree = "<group>"; };
  474. 7D47D6E71760CD8700E86BAD /* knobSlider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = knobSlider.png; sourceTree = "<group>"; };
  475. 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "knobSlider@2x.png"; sourceTree = "<group>"; };
  476. 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackControllerBg.png; sourceTree = "<group>"; };
  477. 7D47D6EC1760CD8700E86BAD /* playIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playIcon.png; sourceTree = "<group>"; };
  478. 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playIcon@2x.png"; sourceTree = "<group>"; };
  479. 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = audioTrackIcon.png; sourceTree = "<group>"; };
  480. 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "audioTrackIcon@2x.png"; sourceTree = "<group>"; };
  481. 7D47D6F01760CD8700E86BAD /* backIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backIcon.png; sourceTree = "<group>"; };
  482. 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backIcon@2x.png"; sourceTree = "<group>"; };
  483. 7D47D6F21760CD8700E86BAD /* ballSlider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ballSlider.png; sourceTree = "<group>"; };
  484. 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ballSlider@2x.png"; sourceTree = "<group>"; };
  485. 7D47D7251760D77C00E86BAD /* pauseIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pauseIcon.png; sourceTree = "<group>"; };
  486. 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pauseIcon@2x.png"; sourceTree = "<group>"; };
  487. 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sliderminimumTrack.png; sourceTree = "<group>"; };
  488. 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sliderminimumTrack@2x.png"; sourceTree = "<group>"; };
  489. 7D47D72D1761101700E86BAD /* VLCSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCSlider.h; sourceTree = "<group>"; };
  490. 7D47D72E1761101700E86BAD /* VLCSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCSlider.m; sourceTree = "<group>"; };
  491. 7D49E178175A47A4002D1450 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
  492. 7D4BE733175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  493. 7D4BE734175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  494. 7D4BE735175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  495. 7D4BE736175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  496. 7D4BE737175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  497. 7D4C484417ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/Localizable.strings; sourceTree = "<group>"; };
  498. 7D4C484517ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  499. 7D4C484617ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  500. 7D4C484717ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  501. 7D4C484817ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  502. 7D5C204917999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  503. 7D5C204A17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  504. 7D5C204B17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  505. 7D5C204C17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  506. 7D5C204D17999A74004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  507. 7D5DD5C617590ABF001421E3 /* About Contents.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "About Contents.html"; sourceTree = "<group>"; };
  508. 7D5E39C3174FBAF3007DAFA1 /* VLCDropboxTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCDropboxTableViewController.h; sourceTree = "<group>"; };
  509. 7D5E39C4174FBAF3007DAFA1 /* VLCDropboxTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCDropboxTableViewController.m; sourceTree = "<group>"; };
  510. 7D5E39C5174FBAF3007DAFA1 /* VLCDropboxTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCDropboxTableViewController.xib; path = ../Resources/VLCDropboxTableViewController.xib; sourceTree = "<group>"; };
  511. 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropbox-white.png"; sourceTree = "<group>"; };
  512. 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropbox-white@2x.png"; sourceTree = "<group>"; };
  513. 7D5E39CD174FCE04007DAFA1 /* VLCDropboxTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCDropboxTableViewCell.h; sourceTree = "<group>"; };
  514. 7D5E39CE174FCE04007DAFA1 /* VLCDropboxTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCDropboxTableViewCell.m; sourceTree = "<group>"; };
  515. 7D5E39D0174FCF43007DAFA1 /* VLCDropboxTableViewCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCDropboxTableViewCell~ipad.xib"; path = "../Resources/VLCDropboxTableViewCell~ipad.xib"; sourceTree = "<group>"; };
  516. 7D5F7AC117529430006CCCFA /* VLCHorizontalSwipeGestureRecognizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCHorizontalSwipeGestureRecognizer.h; sourceTree = "<group>"; };
  517. 7D5F7AC217529430006CCCFA /* VLCHorizontalSwipeGestureRecognizer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCHorizontalSwipeGestureRecognizer.m; sourceTree = "<group>"; };
  518. 7D5F7AC41752943F006CCCFA /* VLCVerticalSwipeGestureRecognizer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCVerticalSwipeGestureRecognizer.h; sourceTree = "<group>"; };
  519. 7D5F7AC51752943F006CCCFA /* VLCVerticalSwipeGestureRecognizer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCVerticalSwipeGestureRecognizer.m; sourceTree = "<group>"; };
  520. 7D6B07A51716C9B8003280C4 /* AQGridView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AQGridView.h; path = ImportedSources/AQGridView/Classes/AQGridView.h; sourceTree = SOURCE_ROOT; };
  521. 7D6B07A61716C9B8003280C4 /* AQGridView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AQGridView.m; path = ImportedSources/AQGridView/Classes/AQGridView.m; sourceTree = SOURCE_ROOT; };
  522. 7D6B07A71716C9B8003280C4 /* AQGridView+CellLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "AQGridView+CellLayout.h"; path = "ImportedSources/AQGridView/Classes/AQGridView+CellLayout.h"; sourceTree = SOURCE_ROOT; };
  523. 7D6B07A81716C9B8003280C4 /* AQGridView+CellLocationDelegation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "AQGridView+CellLocationDelegation.h"; path = "ImportedSources/AQGridView/Classes/AQGridView+CellLocationDelegation.h"; sourceTree = SOURCE_ROOT; };
  524. 7D6B07A91716C9B8003280C4 /* AQGridViewAnimatorItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AQGridViewAnimatorItem.h; path = ImportedSources/AQGridView/Classes/AQGridViewAnimatorItem.h; sourceTree = SOURCE_ROOT; };
  525. 7D6B07AA1716C9B8003280C4 /* AQGridViewAnimatorItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AQGridViewAnimatorItem.m; path = ImportedSources/AQGridView/Classes/AQGridViewAnimatorItem.m; sourceTree = SOURCE_ROOT; };
  526. 7D6B07AB1716C9B8003280C4 /* AQGridViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AQGridViewCell.h; path = ImportedSources/AQGridView/Classes/AQGridViewCell.h; sourceTree = SOURCE_ROOT; };
  527. 7D6B07AC1716C9B8003280C4 /* AQGridViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AQGridViewCell.m; path = ImportedSources/AQGridView/Classes/AQGridViewCell.m; sourceTree = SOURCE_ROOT; };
  528. 7D6B07AD1716C9B8003280C4 /* AQGridViewCell+AQGridViewCellPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "AQGridViewCell+AQGridViewCellPrivate.h"; path = "ImportedSources/AQGridView/Classes/AQGridViewCell+AQGridViewCellPrivate.h"; sourceTree = SOURCE_ROOT; };
  529. 7D6B07AE1716C9B8003280C4 /* AQGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AQGridViewController.h; path = ImportedSources/AQGridView/Classes/AQGridViewController.h; sourceTree = SOURCE_ROOT; };
  530. 7D6B07AF1716C9B8003280C4 /* AQGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AQGridViewController.m; path = ImportedSources/AQGridView/Classes/AQGridViewController.m; sourceTree = SOURCE_ROOT; };
  531. 7D6B07B01716C9B8003280C4 /* AQGridViewData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AQGridViewData.h; path = ImportedSources/AQGridView/Classes/AQGridViewData.h; sourceTree = SOURCE_ROOT; };
  532. 7D6B07B11716C9B8003280C4 /* AQGridViewData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AQGridViewData.m; path = ImportedSources/AQGridView/Classes/AQGridViewData.m; sourceTree = SOURCE_ROOT; };
  533. 7D6B07B21716C9B8003280C4 /* AQGridViewUpdateInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AQGridViewUpdateInfo.h; path = ImportedSources/AQGridView/Classes/AQGridViewUpdateInfo.h; sourceTree = SOURCE_ROOT; };
  534. 7D6B07B31716C9B8003280C4 /* AQGridViewUpdateInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AQGridViewUpdateInfo.m; path = ImportedSources/AQGridView/Classes/AQGridViewUpdateInfo.m; sourceTree = SOURCE_ROOT; };
  535. 7D6B07B41716C9B8003280C4 /* AQGridViewUpdateItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AQGridViewUpdateItem.h; path = ImportedSources/AQGridView/Classes/AQGridViewUpdateItem.h; sourceTree = SOURCE_ROOT; };
  536. 7D6B07B51716C9B8003280C4 /* AQGridViewUpdateItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AQGridViewUpdateItem.m; path = ImportedSources/AQGridView/Classes/AQGridViewUpdateItem.m; sourceTree = SOURCE_ROOT; };
  537. 7D6B07B61716C9B8003280C4 /* NSIndexSet+AQIndexesOutsideSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSIndexSet+AQIndexesOutsideSet.h"; path = "ImportedSources/AQGridView/Classes/NSIndexSet+AQIndexesOutsideSet.h"; sourceTree = SOURCE_ROOT; };
  538. 7D6B07B71716C9B8003280C4 /* NSIndexSet+AQIndexesOutsideSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSIndexSet+AQIndexesOutsideSet.m"; path = "ImportedSources/AQGridView/Classes/NSIndexSet+AQIndexesOutsideSet.m"; sourceTree = SOURCE_ROOT; };
  539. 7D6B07B81716C9B8003280C4 /* NSIndexSet+AQIsSetContiguous.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSIndexSet+AQIsSetContiguous.h"; path = "ImportedSources/AQGridView/Classes/NSIndexSet+AQIsSetContiguous.h"; sourceTree = SOURCE_ROOT; };
  540. 7D6B07B91716C9B8003280C4 /* NSIndexSet+AQIsSetContiguous.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSIndexSet+AQIsSetContiguous.m"; path = "ImportedSources/AQGridView/Classes/NSIndexSet+AQIsSetContiguous.m"; sourceTree = SOURCE_ROOT; };
  541. 7D6B07BA1716C9B8003280C4 /* UIColor+AQGridView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIColor+AQGridView.h"; path = "ImportedSources/AQGridView/Classes/UIColor+AQGridView.h"; sourceTree = SOURCE_ROOT; };
  542. 7D6B07BB1716C9B8003280C4 /* UIColor+AQGridView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIColor+AQGridView.m"; path = "ImportedSources/AQGridView/Classes/UIColor+AQGridView.m"; sourceTree = SOURCE_ROOT; };
  543. 7D6B07F51716D45B003280C4 /* VLCPlaylistGridView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCPlaylistGridView.h; sourceTree = "<group>"; };
  544. 7D6B07F61716D45B003280C4 /* VLCPlaylistGridView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCPlaylistGridView.m; sourceTree = "<group>"; };
  545. 7D6B08BB174A72A900A05173 /* VLCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCConstants.h; sourceTree = "<group>"; };
  546. 7D6B08C0174A831900A05173 /* vlc-xmas.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "vlc-xmas.png"; sourceTree = "<group>"; };
  547. 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "vlc-xmas@2x.png"; sourceTree = "<group>"; };
  548. 7D6B08CC174D65B500A05173 /* IASKAppSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsViewController.h; sourceTree = "<group>"; };
  549. 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsViewController.m; sourceTree = "<group>"; };
  550. 7D6B08CE174D65B500A05173 /* IASKAppSettingsWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsWebViewController.h; sourceTree = "<group>"; };
  551. 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsWebViewController.m; sourceTree = "<group>"; };
  552. 7D6B08D0174D65B500A05173 /* IASKSpecifierValuesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifierValuesViewController.h; sourceTree = "<group>"; };
  553. 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifierValuesViewController.m; sourceTree = "<group>"; };
  554. 7D6B08D2174D65B500A05173 /* IASKViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKViewController.h; sourceTree = "<group>"; };
  555. 7D6B08D4174D65B500A05173 /* IASKSettingsReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsReader.h; sourceTree = "<group>"; };
  556. 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsReader.m; sourceTree = "<group>"; };
  557. 7D6B08D6174D65B500A05173 /* IASKSettingsStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStore.h; sourceTree = "<group>"; };
  558. 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStore.m; sourceTree = "<group>"; };
  559. 7D6B08D8174D65B500A05173 /* IASKSettingsStoreFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreFile.h; sourceTree = "<group>"; };
  560. 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreFile.m; sourceTree = "<group>"; };
  561. 7D6B08DA174D65B500A05173 /* IASKSettingsStoreUserDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreUserDefaults.h; sourceTree = "<group>"; };
  562. 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreUserDefaults.m; sourceTree = "<group>"; };
  563. 7D6B08DC174D65B500A05173 /* IASKSpecifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifier.h; sourceTree = "<group>"; };
  564. 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifier.m; sourceTree = "<group>"; };
  565. 7D6B08DF174D65B500A05173 /* IASKPSSliderSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSSliderSpecifierViewCell.h; sourceTree = "<group>"; };
  566. 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSSliderSpecifierViewCell.m; sourceTree = "<group>"; };
  567. 7D6B08E1174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTextFieldSpecifierViewCell.h; sourceTree = "<group>"; };
  568. 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTextFieldSpecifierViewCell.m; sourceTree = "<group>"; };
  569. 7D6B08E3174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTitleValueSpecifierViewCell.h; sourceTree = "<group>"; };
  570. 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTitleValueSpecifierViewCell.m; sourceTree = "<group>"; };
  571. 7D6B08E5174D65B500A05173 /* IASKSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSlider.h; sourceTree = "<group>"; };
  572. 7D6B08E6174D65B500A05173 /* IASKSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSlider.m; sourceTree = "<group>"; };
  573. 7D6B08E7174D65B500A05173 /* IASKSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSwitch.h; sourceTree = "<group>"; };
  574. 7D6B08E8174D65B500A05173 /* IASKSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSwitch.m; sourceTree = "<group>"; };
  575. 7D6B08E9174D65B500A05173 /* IASKTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKTextField.h; sourceTree = "<group>"; };
  576. 7D6B08EA174D65B500A05173 /* IASKTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKTextField.m; sourceTree = "<group>"; };
  577. 7D6B08F9174D716200A05173 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
  578. 7D6B08FB174D773C00A05173 /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Settings.bundle; path = Resources/Settings.bundle; sourceTree = SOURCE_ROOT; };
  579. 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "thumbOverlayPhone@2x.png"; sourceTree = "<group>"; };
  580. 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "thumbOverlay@2x.png"; sourceTree = "<group>"; };
  581. 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumbOverlayPhone.png; sourceTree = "<group>"; };
  582. 7D6BD1831762026700AD311A /* thumbOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumbOverlay.png; sourceTree = "<group>"; };
  583. 7D6D13591758D1A00007EA9A /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  584. 7D7DA52F1768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = "<group>"; };
  585. 7D7DA5301768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  586. 7D7DA5311768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  587. 7D7DA5321768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  588. 7D7DA5331768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  589. 7D93043E17B67C4F0054EAC6 /* VLCLocalServerListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCLocalServerListViewController.h; sourceTree = "<group>"; };
  590. 7D93043F17B67C4F0054EAC6 /* VLCLocalServerListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCLocalServerListViewController.m; sourceTree = "<group>"; };
  591. 7D93044317B684CE0054EAC6 /* VLCLocalNetworkListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCLocalNetworkListCell.h; sourceTree = "<group>"; };
  592. 7D93044417B684CF0054EAC6 /* VLCLocalNetworkListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCLocalNetworkListCell.m; sourceTree = "<group>"; };
  593. 7D93044617B687C90054EAC6 /* VLCLocalNetworkListCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~ipad.xib"; path = "../Resources/VLCLocalNetworkListCell~ipad.xib"; sourceTree = "<group>"; };
  594. 7D93044717B687C90054EAC6 /* VLCLocalNetworkListCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~iphone.xib"; path = "../Resources/VLCLocalNetworkListCell~iphone.xib"; sourceTree = "<group>"; };
  595. 7D93045117B6A0DF0054EAC6 /* VLCMenuTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCMenuTableViewController.h; sourceTree = "<group>"; };
  596. 7D93045217B6A0DF0054EAC6 /* VLCMenuTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCMenuTableViewController.m; sourceTree = "<group>"; };
  597. 7D93045417B6A5C00054EAC6 /* GHMenuCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHMenuCell.h; path = ImportedSources/GHSidebarNav/Demo/GHMenuCell.h; sourceTree = SOURCE_ROOT; };
  598. 7D93045517B6A5C00054EAC6 /* GHMenuCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GHMenuCell.m; path = ImportedSources/GHSidebarNav/Demo/GHMenuCell.m; sourceTree = SOURCE_ROOT; };
  599. 7D93045717B6ACA10054EAC6 /* VLCWiFiUploadTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCWiFiUploadTableViewCell.h; sourceTree = "<group>"; };
  600. 7D93045817B6ACA10054EAC6 /* VLCWiFiUploadTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCWiFiUploadTableViewCell.m; sourceTree = "<group>"; };
  601. 7D93045A17B6ACCF0054EAC6 /* VLCWiFiUploadTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCWiFiUploadTableViewCell.xib; path = Resources/VLCWiFiUploadTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  602. 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "VLC for iOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  603. 7D94FCDE16DE7D1000F2623B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  604. 7D94FCE016DE7D1000F2623B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  605. 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  606. 7D94FCE616DE7D1000F2623B /* VLC for iOS-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "VLC for iOS-Info.plist"; sourceTree = "<group>"; };
  607. 7D94FCEA16DE7D1000F2623B /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  608. 7D94FCEC16DE7D1000F2623B /* VLC for iOS-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "VLC for iOS-Prefix.pch"; sourceTree = "<group>"; };
  609. 7D94FCED16DE7D1000F2623B /* VLCAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VLCAppDelegate.h; sourceTree = "<group>"; };
  610. 7D94FCEE16DE7D1000F2623B /* VLCAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VLCAppDelegate.m; sourceTree = "<group>"; };
  611. 7D94FCF616DE7D1100F2623B /* VLCPlaylistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VLCPlaylistViewController.h; sourceTree = "<group>"; };
  612. 7D94FCF716DE7D1100F2623B /* VLCPlaylistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VLCPlaylistViewController.m; sourceTree = "<group>"; };
  613. 7D94FCF916DE7D1100F2623B /* VLCMovieViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VLCMovieViewController.h; sourceTree = "<group>"; };
  614. 7D94FCFA16DE7D1100F2623B /* VLCMovieViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VLCMovieViewController.m; sourceTree = "<group>"; };
  615. 7D9529521732EFCA006F5B40 /* VLCAboutViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCAboutViewController~ipad.xib"; path = "Resources/VLCAboutViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  616. 7D9B6B0817C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Localizable.strings; sourceTree = "<group>"; };
  617. 7D9B6B0917C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  618. 7D9B6B0A17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  619. 7D9B6B0B17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  620. 7D9B6B0C17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  621. 7DA62099170A0CE500643D11 /* VLCPlaylistTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCPlaylistTableViewCell.h; sourceTree = "<group>"; };
  622. 7DA6209A170A0CE500643D11 /* VLCPlaylistTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCPlaylistTableViewCell.m; sourceTree = "<group>"; };
  623. 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SourceCodePro-Regular.ttf"; sourceTree = "<group>"; };
  624. 7DADC55D1704FABF001DAC63 /* OBSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OBSlider.h; path = ImportedSources/OBSlider/OBSlider/OBSlider.h; sourceTree = SOURCE_ROOT; };
  625. 7DADC55E1704FABF001DAC63 /* OBSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OBSlider.m; path = ImportedSources/OBSlider/OBSlider/OBSlider.m; sourceTree = SOURCE_ROOT; };
  626. 7DB43832176E20CC00F460EE /* VLCDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCDownloadViewController.h; sourceTree = "<group>"; };
  627. 7DB43833176E20CC00F460EE /* VLCDownloadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCDownloadViewController.m; sourceTree = "<group>"; };
  628. 7DB43834176E20CC00F460EE /* VLCDownloadViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCDownloadViewController.xib; path = ../Resources/VLCDownloadViewController.xib; sourceTree = "<group>"; };
  629. 7DBC3B411711FC6C00DCF688 /* VLCAboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCAboutViewController.h; sourceTree = "<group>"; };
  630. 7DBC3B421711FC6C00DCF688 /* VLCAboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCAboutViewController.m; sourceTree = "<group>"; };
  631. 7DBC3B431711FC6C00DCF688 /* VLCAboutViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCAboutViewController~iphone.xib"; path = "../Resources/VLCAboutViewController~iphone.xib"; sourceTree = "<group>"; };
  632. 7DBDAE96175652840027BA52 /* VLCDropboxConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCDropboxConstants.h; sourceTree = "<group>"; };
  633. 7DC222771773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  634. 7DC222781773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  635. 7DC222791773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  636. 7DC2227A1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  637. 7DC2227B1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  638. 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "download@4x.png"; sourceTree = "<group>"; };
  639. 7DC72D5C17B7E7C7008A26D0 /* download.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = download.png; sourceTree = "<group>"; };
  640. 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "download@2x.png"; sourceTree = "<group>"; };
  641. 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WhiteRaccoon.h; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.h; sourceTree = SOURCE_ROOT; };
  642. 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WhiteRaccoon.m; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.m; sourceTree = SOURCE_ROOT; };
  643. 7DC72D6617B820C8008A26D0 /* VLCNetworkLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCNetworkLoginViewController.h; sourceTree = "<group>"; };
  644. 7DC72D6717B820C8008A26D0 /* VLCNetworkLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCNetworkLoginViewController.m; sourceTree = "<group>"; };
  645. 7DC72D6817B820C8008A26D0 /* VLCNetworkLoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCNetworkLoginViewController.xib; path = ../Resources/VLCNetworkLoginViewController.xib; sourceTree = "<group>"; };
  646. 7DC87AEC17412A1F009DC250 /* VLCLinearProgressIndicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCLinearProgressIndicator.h; sourceTree = "<group>"; };
  647. 7DC87AED17412A1F009DC250 /* VLCLinearProgressIndicator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCLinearProgressIndicator.m; sourceTree = "<group>"; };
  648. 7DC87AEF17413634009DC250 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  649. 7DC87AF017413A17009DC250 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  650. 7DC87AF117413EE3009DC250 /* VLCPlaylistGridView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistGridView.xib; path = ../Resources/VLCPlaylistGridView.xib; sourceTree = "<group>"; };
  651. 7DD2A3A5179BFAFE003EB537 /* VLCBugreporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCBugreporter.h; sourceTree = "<group>"; };
  652. 7DD2A3A6179BFAFE003EB537 /* VLCBugreporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCBugreporter.m; sourceTree = "<group>"; };
  653. 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "OpenSans-Regular.ttf"; sourceTree = "<group>"; };
  654. 7DD8DDAF17C915F400E7AE4B /* VLCFixups.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCFixups.h; sourceTree = "<group>"; };
  655. 7DDABBB51775A3A7003D8937 /* UIDevice+SpeedCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+SpeedCategory.h"; sourceTree = "<group>"; };
  656. 7DDABBB61775A3C7003D8937 /* UIDevice+SpeedCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+SpeedCategory.m"; sourceTree = "<group>"; };
  657. 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  658. 7DE1862A175BA9A5006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  659. 7DE1862D175BA9A9006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  660. 7DE18630175BA9AC006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  661. 7DE18633175BA9AF006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  662. 7DE18635175BA9EB006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  663. 7DE18636175BA9F4006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  664. 7DE18637175BA9F9006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  665. 7DE18638175BA9FC006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  666. 7DE18639175BAEAF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  667. 7DE1863A175BAEB0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  668. 7DE1863B175BAEB0006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  669. 7DE1863C175BAEB1006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  670. 7DE1863D175BAEB5006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  671. 7DE1863E175BAEB6006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  672. 7DE1863F175BAEB7006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  673. 7DE18640175BAEB7006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  674. 7DE18641175BAEBA006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  675. 7DE18642175BAEBB006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  676. 7DE18643175BAEBC006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  677. 7DE18644175BAEBD006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  678. 7DE18645175BAEBF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  679. 7DE18646175BAEC0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  680. 7DE18647175BAEC1006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  681. 7DE18648175BAEC2006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  682. 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "bottomBlackBar@2x.png"; sourceTree = "<group>"; };
  683. 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bottomBlackBar.png; sourceTree = "<group>"; };
  684. 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */ = {isa = PBXFileReference; lastKnownFileType = file; path = "iTunesArtwork@2x"; sourceTree = "<group>"; };
  685. 7DEB3B6117647E230038FC70 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = "<group>"; };
  686. 7DEB3B6317647E370038FC70 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
  687. 7DEB3B6517647E440038FC70 /* Icon-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72.png"; sourceTree = "<group>"; };
  688. 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72@2x.png"; sourceTree = "<group>"; };
  689. 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small-50.png"; sourceTree = "<group>"; };
  690. 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small-50@2x.png"; sourceTree = "<group>"; };
  691. 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small.png"; sourceTree = "<group>"; };
  692. 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small@2x.png"; sourceTree = "<group>"; };
  693. 7DEB3B7117649BEB0038FC70 /* Icon-512.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-512.png"; sourceTree = "<group>"; };
  694. 7DEB3B7317649F2C0038FC70 /* menuButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuButton.png; sourceTree = "<group>"; };
  695. 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuButton@2x.png"; sourceTree = "<group>"; };
  696. 7DEB3B771764A4040038FC70 /* input@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "input@2x.png"; sourceTree = "<group>"; };
  697. 7DEB3B781764A4040038FC70 /* input.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = input.png; sourceTree = "<group>"; };
  698. 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "movie@2x.png"; sourceTree = "<group>"; };
  699. 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "movie@4x.png"; sourceTree = "<group>"; };
  700. 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "blank@4x.png"; sourceTree = "<group>"; };
  701. 7DEB3B7F1764A4F40038FC70 /* folder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = folder.png; sourceTree = "<group>"; };
  702. 7DEB3B801764A4F40038FC70 /* folder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "folder@2x.png"; sourceTree = "<group>"; };
  703. 7DEB3B811764A4F40038FC70 /* folder@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "folder@4x.png"; sourceTree = "<group>"; };
  704. 7DEB3B821764A4F40038FC70 /* movie.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = movie.png; sourceTree = "<group>"; };
  705. 7DEB3B831764A4F40038FC70 /* blank.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = blank.png; sourceTree = "<group>"; };
  706. 7DEB3B841764A4F40038FC70 /* blank@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "blank@2x.png"; sourceTree = "<group>"; };
  707. 7DF1166A176CC69A009EC05C /* volumeballslider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = volumeballslider.png; sourceTree = "<group>"; };
  708. 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "volumeballslider@2x.png"; sourceTree = "<group>"; };
  709. 7DF65C2C174FF3F400F43330 /* VLCDropboxTableViewCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCDropboxTableViewCell~iphone.xib"; path = "../Resources/VLCDropboxTableViewCell~iphone.xib"; sourceTree = "<group>"; };
  710. 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  711. 7DF7E790175F47DC0018858D /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
  712. A7035BBD174519600057DFA7 /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = file; path = iTunesArtwork; sourceTree = "<group>"; };
  713. A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMediaLibraryKit.a; path = External/MediaLibraryKit/libMediaLibraryKit.a; sourceTree = "<group>"; };
  714. A7924698170F0ED20036AAF2 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
  715. A7924699170F0ED20036AAF2 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
  716. A792469A170F0ED20036AAF2 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
  717. A79246BC170F114E0036AAF2 /* VLCEmptyLibraryView~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~ipad.xib"; path = "Resources/VLCEmptyLibraryView~ipad.xib"; sourceTree = SOURCE_ROOT; };
  718. A79246BD170F114E0036AAF2 /* VLCMovieViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~iphone.xib"; path = "Resources/VLCMovieViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  719. A79246BE170F114E0036AAF2 /* VLCPlaylistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistTableViewCell.xib; path = Resources/VLCPlaylistTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  720. A79246C0170F114E0036AAF2 /* VLCEmptyLibraryView~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~iphone.xib"; path = "Resources/VLCEmptyLibraryView~iphone.xib"; sourceTree = SOURCE_ROOT; };
  721. A79246C7170F11DF0036AAF2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  722. A79246C9170F11E40036AAF2 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  723. A7990063176E9352009E8267 /* libraryBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = libraryBackground.png; sourceTree = "<group>"; };
  724. A7990065176E9CF3009E8267 /* VLCMenuButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCMenuButton.h; sourceTree = "<group>"; };
  725. A7990066176E9CF3009E8267 /* VLCMenuButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCMenuButton.m; sourceTree = "<group>"; };
  726. A7A0E9ED174BA66000162F25 /* papasscode_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_background.png; sourceTree = "<group>"; };
  727. A7A0E9EE174BA66000162F25 /* papasscode_background@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_background@2x.png"; sourceTree = "<group>"; };
  728. A7A0E9EF174BA66000162F25 /* papasscode_failed_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_failed_bg.png; sourceTree = "<group>"; };
  729. A7A0E9F0174BA66000162F25 /* papasscode_failed_bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_failed_bg@2x.png"; sourceTree = "<group>"; };
  730. A7A0E9F1174BA66000162F25 /* papasscode_marker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_marker.png; sourceTree = "<group>"; };
  731. A7A0E9F2174BA66000162F25 /* papasscode_marker@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_marker@2x.png"; sourceTree = "<group>"; };
  732. A7A0E9F3174BA66000162F25 /* PAPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PAPasscodeViewController.h; sourceTree = "<group>"; };
  733. A7A0E9F4174BA66000162F25 /* PAPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PAPasscodeViewController.m; sourceTree = "<group>"; };
  734. A7C3025C175A53D400AD4388 /* NSString+SupportedMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+SupportedMedia.h"; sourceTree = "<group>"; };
  735. A7C3025D175A53D400AD4388 /* NSString+SupportedMedia.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+SupportedMedia.m"; sourceTree = "<group>"; };
  736. A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally@2x~iphone.png"; sourceTree = "<group>"; };
  737. A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally~iphone.png"; sourceTree = "<group>"; };
  738. A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally~ipad.png"; sourceTree = "<group>"; };
  739. A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally@2x~ipad.png"; sourceTree = "<group>"; };
  740. A7D03A4517A41AD30022C16F /* VLCMediaFileDiscoverer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCMediaFileDiscoverer.h; sourceTree = "<group>"; };
  741. A7D03A4617A41AD30022C16F /* VLCMediaFileDiscoverer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCMediaFileDiscoverer.m; sourceTree = "<group>"; };
  742. A7DA16CF171083DF00D6FED9 /* VLCExternalDisplayController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCExternalDisplayController.h; sourceTree = "<group>"; };
  743. A7DA16D0171083DF00D6FED9 /* VLCExternalDisplayController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCExternalDisplayController.m; sourceTree = "<group>"; };
  744. A7FF9F3D17428C1900999819 /* DeleteButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeleteButton.png; sourceTree = "<group>"; };
  745. A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DeleteButton@2x.png"; sourceTree = "<group>"; };
  746. CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMobileVLCKit.a; path = External/MobileVLCKit/libMobileVLCKit.a; sourceTree = "<group>"; };
  747. CC1BBC421704935E00A20CBF /* MediaLibrary.mom */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = MediaLibrary.mom; path = External/MediaLibraryKit/MediaLibrary.mom; sourceTree = "<group>"; };
  748. CC1BBC451704938300A20CBF /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
  749. CC1BBC471704938B00A20CBF /* libstdc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.dylib"; path = "usr/lib/libstdc++.dylib"; sourceTree = SDKROOT; };
  750. CC1BBC491704939300A20CBF /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
  751. CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
  752. CC1BBC4D170493A300A20CBF /* libbz2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libbz2.dylib; path = usr/lib/libbz2.dylib; sourceTree = SDKROOT; };
  753. CC1BBC4F170493AA00A20CBF /* libxml2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.dylib; path = usr/lib/libxml2.dylib; sourceTree = SDKROOT; };
  754. CC1BBC51170493B100A20CBF /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  755. CC1BBC53170493B800A20CBF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  756. CC1BBC55170493C100A20CBF /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  757. CC1BBC57170493E100A20CBF /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  758. CC87147917A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = mr; path = mr.lproj/Localizable.strings; sourceTree = "<group>"; };
  759. CC87147A17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  760. CC87147B17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  761. CC87147C17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  762. CC87147D17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  763. CC87147E17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  764. CC87147F17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  765. CC87148017A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  766. CC87148117A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  767. CC87148217A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  768. CC87148317A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  769. CC87148417A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  770. CC87148517A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  771. CC87148617A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  772. CC87148717A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  773. CCBDA19017B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/Localizable.strings; sourceTree = "<group>"; };
  774. CCBDA19117B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  775. CCBDA19217B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  776. CCBDA19317B2BEB600489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  777. CCBDA19417B2BEB600489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  778. CCE2A22D17A5859E00D9EAAD /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  779. /* End PBXFileReference section */
  780. /* Begin PBXFrameworksBuildPhase section */
  781. 7D94FCD816DE7D1000F2623B /* Frameworks */ = {
  782. isa = PBXFrameworksBuildPhase;
  783. buildActionMask = 2147483647;
  784. files = (
  785. CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */,
  786. 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */,
  787. 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */,
  788. 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */,
  789. 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */,
  790. 293DF2F417494F8200BB880F /* DropboxSDK.framework in Frameworks */,
  791. 2915544317490D4A00B86CAD /* Security.framework in Frameworks */,
  792. 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */,
  793. CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */,
  794. CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */,
  795. CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */,
  796. CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */,
  797. CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */,
  798. CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */,
  799. CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */,
  800. CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */,
  801. CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */,
  802. CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */,
  803. 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */,
  804. 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */,
  805. 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */,
  806. A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */,
  807. 7D31002017B6768B00E6516D /* libupnpx.a in Frameworks */,
  808. );
  809. runOnlyForDeploymentPostprocessing = 0;
  810. };
  811. /* End PBXFrameworksBuildPhase section */
  812. /* Begin PBXGroup section */
  813. 29125E5317492219003F03E5 /* web */ = {
  814. isa = PBXGroup;
  815. children = (
  816. 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */,
  817. 7AC8629F1765E90C0011611A /* jquery.fileupload.js */,
  818. 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */,
  819. 7AC862A11765E90C0011611A /* jquery.ui.widget.js */,
  820. 7AC8629B1765DC560011611A /* style.css */,
  821. 7D00161A17704DAC00649F27 /* main.js */,
  822. 29125E5417492219003F03E5 /* index.html */,
  823. );
  824. path = web;
  825. sourceTree = "<group>";
  826. };
  827. 291553E817490A0400B86CAD /* CocoaHTTPServer */ = {
  828. isa = PBXGroup;
  829. children = (
  830. 2915542C17490B9C00B86CAD /* Responses */,
  831. 2915543917490B9C00B86CAD /* WebSocket.h */,
  832. 2915543A17490B9C00B86CAD /* WebSocket.m */,
  833. 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */,
  834. 2915540F17490A9C00B86CAD /* CocoaLumberjack */,
  835. 291553E917490A1E00B86CAD /* Categories */,
  836. 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */,
  837. 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */,
  838. 291553F217490A1E00B86CAD /* HTTPConnection.h */,
  839. 291553F317490A1E00B86CAD /* HTTPConnection.m */,
  840. 291553F417490A1E00B86CAD /* HTTPLogging.h */,
  841. 291553F517490A1E00B86CAD /* HTTPMessage.h */,
  842. 291553F617490A1E00B86CAD /* HTTPMessage.m */,
  843. 291553F717490A1E00B86CAD /* HTTPResponse.h */,
  844. 291553F817490A1E00B86CAD /* HTTPServer.h */,
  845. 291553F917490A1E00B86CAD /* HTTPServer.m */,
  846. 291553FA17490A1E00B86CAD /* Mime */,
  847. );
  848. name = CocoaHTTPServer;
  849. sourceTree = "<group>";
  850. };
  851. 291553E917490A1E00B86CAD /* Categories */ = {
  852. isa = PBXGroup;
  853. children = (
  854. 291553EA17490A1E00B86CAD /* DDData.h */,
  855. 291553EB17490A1E00B86CAD /* DDData.m */,
  856. 291553EC17490A1E00B86CAD /* DDNumber.h */,
  857. 291553ED17490A1E00B86CAD /* DDNumber.m */,
  858. 291553EE17490A1E00B86CAD /* DDRange.h */,
  859. 291553EF17490A1E00B86CAD /* DDRange.m */,
  860. );
  861. name = Categories;
  862. path = ImportedSources/CocoaHTTPServer/Core/Categories;
  863. sourceTree = SOURCE_ROOT;
  864. };
  865. 291553FA17490A1E00B86CAD /* Mime */ = {
  866. isa = PBXGroup;
  867. children = (
  868. 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */,
  869. 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */,
  870. 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */,
  871. 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */,
  872. 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */,
  873. 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */,
  874. );
  875. name = Mime;
  876. path = ImportedSources/CocoaHTTPServer/Core/Mime;
  877. sourceTree = SOURCE_ROOT;
  878. };
  879. 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */ = {
  880. isa = PBXGroup;
  881. children = (
  882. 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */,
  883. 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */,
  884. );
  885. name = CocoaAsyncSocket;
  886. path = ImportedSources/CocoaHTTPServer/Vendor/CocoaAsyncSocket;
  887. sourceTree = SOURCE_ROOT;
  888. };
  889. 2915540F17490A9C00B86CAD /* CocoaLumberjack */ = {
  890. isa = PBXGroup;
  891. children = (
  892. 2915541017490A9C00B86CAD /* About.txt */,
  893. 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */,
  894. 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */,
  895. 2915541317490A9C00B86CAD /* DDASLLogger.h */,
  896. 2915541417490A9C00B86CAD /* DDASLLogger.m */,
  897. 2915541517490A9C00B86CAD /* DDFileLogger.h */,
  898. 2915541617490A9C00B86CAD /* DDFileLogger.m */,
  899. 2915541717490A9C00B86CAD /* DDLog.h */,
  900. 2915541817490A9C00B86CAD /* DDLog.m */,
  901. 2915541917490A9C00B86CAD /* DDTTYLogger.h */,
  902. 2915541A17490A9C00B86CAD /* DDTTYLogger.m */,
  903. 2915541B17490A9C00B86CAD /* Extensions */,
  904. );
  905. name = CocoaLumberjack;
  906. path = ImportedSources/CocoaHTTPServer/Vendor/CocoaLumberjack;
  907. sourceTree = SOURCE_ROOT;
  908. };
  909. 2915541B17490A9C00B86CAD /* Extensions */ = {
  910. isa = PBXGroup;
  911. children = (
  912. 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */,
  913. 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */,
  914. 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */,
  915. 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */,
  916. 2915542017490A9C00B86CAD /* README.txt */,
  917. );
  918. path = Extensions;
  919. sourceTree = "<group>";
  920. };
  921. 2915542C17490B9C00B86CAD /* Responses */ = {
  922. isa = PBXGroup;
  923. children = (
  924. 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */,
  925. 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */,
  926. 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */,
  927. 2915543017490B9C00B86CAD /* HTTPDataResponse.m */,
  928. 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */,
  929. 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */,
  930. 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */,
  931. 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */,
  932. 2915543517490B9C00B86CAD /* HTTPFileResponse.h */,
  933. 2915543617490B9C00B86CAD /* HTTPFileResponse.m */,
  934. 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */,
  935. 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */,
  936. );
  937. name = Responses;
  938. path = ImportedSources/CocoaHTTPServer/Core/Responses;
  939. sourceTree = SOURCE_ROOT;
  940. };
  941. 7D10BC651743F9A100DA7059 /* External Playback */ = {
  942. isa = PBXGroup;
  943. children = (
  944. A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */,
  945. A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */,
  946. A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */,
  947. A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */,
  948. );
  949. name = "External Playback";
  950. sourceTree = "<group>";
  951. };
  952. 7D10BC661743F9AC00DA7059 /* Library View */ = {
  953. isa = PBXGroup;
  954. children = (
  955. A7990063176E9352009E8267 /* libraryBackground.png */,
  956. 7D1AC30A17629D4600BD2EB5 /* title.png */,
  957. 7D1AC30B17629D4600BD2EB5 /* title@2x.png */,
  958. 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */,
  959. 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */,
  960. 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */,
  961. 7D6BD1831762026700AD311A /* thumbOverlay.png */,
  962. 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */,
  963. 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */,
  964. 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */,
  965. 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */,
  966. 7D07F72A175691CB00CDE21C /* backButton.png */,
  967. 7D07F72B175691CC00CDE21C /* backButton@2x.png */,
  968. 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */,
  969. 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */,
  970. 7D07F722175688D300CDE21C /* doneButton.png */,
  971. 7D07F723175688D300CDE21C /* doneButton@2x.png */,
  972. 7D07F724175688D300CDE21C /* doneButtonHighlight.png */,
  973. 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */,
  974. 7D07F71217566C4A00CDE21C /* menuCone.png */,
  975. 7D07F71317566C4A00CDE21C /* menuCone@2x.png */,
  976. 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */,
  977. 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */,
  978. 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */,
  979. 7D07F71D175673D100CDE21C /* menuBtnBck.png */,
  980. 7D07F70A175669A800CDE21C /* button.png */,
  981. 7D07F70B175669A800CDE21C /* button@2x.png */,
  982. 7D07F70E175669D800CDE21C /* buttonHighlight.png */,
  983. 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */,
  984. 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */,
  985. 7D07F707175665ED00CDE21C /* navBarBackground.png */,
  986. A7FF9F3D17428C1900999819 /* DeleteButton.png */,
  987. A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */,
  988. 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */,
  989. 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */,
  990. 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */,
  991. 7D16035C17BF9FE600F29B34 /* headerSidebar.png */,
  992. );
  993. name = "Library View";
  994. sourceTree = "<group>";
  995. };
  996. 7D10BC671743F9BA00DA7059 /* Launch Screen */ = {
  997. isa = PBXGroup;
  998. children = (
  999. A7924698170F0ED20036AAF2 /* Default-568h@2x.png */,
  1000. A7924699170F0ED20036AAF2 /* Default.png */,
  1001. A792469A170F0ED20036AAF2 /* Default@2x.png */,
  1002. );
  1003. name = "Launch Screen";
  1004. sourceTree = "<group>";
  1005. };
  1006. 7D2159E4174FD31900EC00E8 /* Dropbox */ = {
  1007. isa = PBXGroup;
  1008. children = (
  1009. 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */,
  1010. 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */,
  1011. 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */,
  1012. 7DEB3B7F1764A4F40038FC70 /* folder.png */,
  1013. 7DEB3B801764A4F40038FC70 /* folder@2x.png */,
  1014. 7DEB3B811764A4F40038FC70 /* folder@4x.png */,
  1015. 7DEB3B821764A4F40038FC70 /* movie.png */,
  1016. 7DEB3B831764A4F40038FC70 /* blank.png */,
  1017. 7DEB3B841764A4F40038FC70 /* blank@2x.png */,
  1018. 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */,
  1019. 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */,
  1020. 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */,
  1021. 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */,
  1022. );
  1023. name = Dropbox;
  1024. sourceTree = "<group>";
  1025. };
  1026. 7D2339AB176DE70E008D223C /* Menu */ = {
  1027. isa = PBXGroup;
  1028. children = (
  1029. 7D93045117B6A0DF0054EAC6 /* VLCMenuTableViewController.h */,
  1030. 7D93045217B6A0DF0054EAC6 /* VLCMenuTableViewController.m */,
  1031. 7D2339AC176DE72E008D223C /* VLCOpenNetworkStreamViewController.h */,
  1032. 7D2339AD176DE72E008D223C /* VLCOpenNetworkStreamViewController.m */,
  1033. 7D93045717B6ACA10054EAC6 /* VLCWiFiUploadTableViewCell.h */,
  1034. 7D93045817B6ACA10054EAC6 /* VLCWiFiUploadTableViewCell.m */,
  1035. );
  1036. name = Menu;
  1037. sourceTree = "<group>";
  1038. };
  1039. 7D31001E17B64AE600E6516D /* GHSidebarNav */ = {
  1040. isa = PBXGroup;
  1041. children = (
  1042. 7D31001B17B64AE100E6516D /* GHRevealViewController.h */,
  1043. 7D31001C17B64AE100E6516D /* GHRevealViewController.m */,
  1044. 7D93045417B6A5C00054EAC6 /* GHMenuCell.h */,
  1045. 7D93045517B6A5C00054EAC6 /* GHMenuCell.m */,
  1046. );
  1047. name = GHSidebarNav;
  1048. sourceTree = "<group>";
  1049. };
  1050. 7D31002117B676D500E6516D /* Local Network Connectivity */ = {
  1051. isa = PBXGroup;
  1052. children = (
  1053. 7D93043E17B67C4F0054EAC6 /* VLCLocalServerListViewController.h */,
  1054. 7D93043F17B67C4F0054EAC6 /* VLCLocalServerListViewController.m */,
  1055. 7D02B0D017B6BE850099030D /* VLCLocalServerFolderListViewController.h */,
  1056. 7D02B0D117B6BE850099030D /* VLCLocalServerFolderListViewController.m */,
  1057. 7D93044317B684CE0054EAC6 /* VLCLocalNetworkListCell.h */,
  1058. 7D93044417B684CF0054EAC6 /* VLCLocalNetworkListCell.m */,
  1059. 7DC72D6617B820C8008A26D0 /* VLCNetworkLoginViewController.h */,
  1060. 7DC72D6717B820C8008A26D0 /* VLCNetworkLoginViewController.m */,
  1061. );
  1062. name = "Local Network Connectivity";
  1063. sourceTree = "<group>";
  1064. };
  1065. 7D31CF061746AEF2005997E0 /* UI Elements */ = {
  1066. isa = PBXGroup;
  1067. children = (
  1068. 7D5F7AC117529430006CCCFA /* VLCHorizontalSwipeGestureRecognizer.h */,
  1069. 7D5F7AC217529430006CCCFA /* VLCHorizontalSwipeGestureRecognizer.m */,
  1070. 7D5F7AC41752943F006CCCFA /* VLCVerticalSwipeGestureRecognizer.h */,
  1071. 7D5F7AC51752943F006CCCFA /* VLCVerticalSwipeGestureRecognizer.m */,
  1072. 7DC87AEC17412A1F009DC250 /* VLCLinearProgressIndicator.h */,
  1073. 7DC87AED17412A1F009DC250 /* VLCLinearProgressIndicator.m */,
  1074. 7D31CF071746AF09005997E0 /* VLCStatusLabel.h */,
  1075. 7D31CF081746AF09005997E0 /* VLCStatusLabel.m */,
  1076. 7D47D72D1761101700E86BAD /* VLCSlider.h */,
  1077. 7D47D72E1761101700E86BAD /* VLCSlider.m */,
  1078. 7A50619D176E3D410036E15D /* UINavigationController+Theme.h */,
  1079. 7A50619E176E3D410036E15D /* UINavigationController+Theme.m */,
  1080. 7A5061A0176E41160036E15D /* UIBarButtonItem+Theme.h */,
  1081. 7A5061A1176E41160036E15D /* UIBarButtonItem+Theme.m */,
  1082. A7990065176E9CF3009E8267 /* VLCMenuButton.h */,
  1083. A7990066176E9CF3009E8267 /* VLCMenuButton.m */,
  1084. );
  1085. name = "UI Elements";
  1086. sourceTree = "<group>";
  1087. };
  1088. 7D47D6C81760CD2700E86BAD /* Movie VIew */ = {
  1089. isa = PBXGroup;
  1090. children = (
  1091. 7DF1166A176CC69A009EC05C /* volumeballslider.png */,
  1092. 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */,
  1093. 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */,
  1094. 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */,
  1095. 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */,
  1096. 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */,
  1097. 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */,
  1098. 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */,
  1099. 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */,
  1100. 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */,
  1101. 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */,
  1102. 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */,
  1103. 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */,
  1104. 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */,
  1105. 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */,
  1106. 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */,
  1107. 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */,
  1108. 7D47D6D81760CD8700E86BAD /* speedIcon.png */,
  1109. 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */,
  1110. 7D47D7251760D77C00E86BAD /* pauseIcon.png */,
  1111. 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */,
  1112. 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */,
  1113. 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */,
  1114. 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */,
  1115. 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */,
  1116. 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */,
  1117. 7D47D6DF1760CD8700E86BAD /* ratioButton.png */,
  1118. 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */,
  1119. 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */,
  1120. 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */,
  1121. 7D47D6E31760CD8700E86BAD /* seekbarBg.png */,
  1122. 7D47D6E51760CD8700E86BAD /* forwardIcon.png */,
  1123. 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */,
  1124. 7D47D6E71760CD8700E86BAD /* knobSlider.png */,
  1125. 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */,
  1126. 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */,
  1127. 7D47D6EC1760CD8700E86BAD /* playIcon.png */,
  1128. 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */,
  1129. 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */,
  1130. 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */,
  1131. 7D47D6F01760CD8700E86BAD /* backIcon.png */,
  1132. 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */,
  1133. 7D47D6F21760CD8700E86BAD /* ballSlider.png */,
  1134. 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */,
  1135. 7D1AC3021762996100BD2EB5 /* resetIcon.png */,
  1136. 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */,
  1137. );
  1138. name = "Movie VIew";
  1139. sourceTree = "<group>";
  1140. };
  1141. 7D5E39CC174FCDBE007DAFA1 /* Dropbox Integration */ = {
  1142. isa = PBXGroup;
  1143. children = (
  1144. 7DBDAE96175652840027BA52 /* VLCDropboxConstants.h */,
  1145. 7D07A4EB174EB81200759D10 /* VLCDropboxController.h */,
  1146. 7D07A4EC174EB81200759D10 /* VLCDropboxController.m */,
  1147. 7D5E39C3174FBAF3007DAFA1 /* VLCDropboxTableViewController.h */,
  1148. 7D5E39C4174FBAF3007DAFA1 /* VLCDropboxTableViewController.m */,
  1149. 7D5E39CD174FCE04007DAFA1 /* VLCDropboxTableViewCell.h */,
  1150. 7D5E39CE174FCE04007DAFA1 /* VLCDropboxTableViewCell.m */,
  1151. );
  1152. name = "Dropbox Integration";
  1153. sourceTree = "<group>";
  1154. };
  1155. 7D5F7AB717526573006CCCFA /* Accessory dialogs */ = {
  1156. isa = PBXGroup;
  1157. children = (
  1158. 7D07A4E6174EA47800759D10 /* VLCSettingsController.h */,
  1159. 7D07A4E7174EA47800759D10 /* VLCSettingsController.m */,
  1160. 7DD2A3A5179BFAFE003EB537 /* VLCBugreporter.h */,
  1161. 7DD2A3A6179BFAFE003EB537 /* VLCBugreporter.m */,
  1162. 7DBC3B411711FC6C00DCF688 /* VLCAboutViewController.h */,
  1163. 7DBC3B421711FC6C00DCF688 /* VLCAboutViewController.m */,
  1164. );
  1165. name = "Accessory dialogs";
  1166. sourceTree = "<group>";
  1167. };
  1168. 7D5F7AB81752658E006CCCFA /* Everything Playlist */ = {
  1169. isa = PBXGroup;
  1170. children = (
  1171. 7D94FCF616DE7D1100F2623B /* VLCPlaylistViewController.h */,
  1172. 7D94FCF716DE7D1100F2623B /* VLCPlaylistViewController.m */,
  1173. 7DA62099170A0CE500643D11 /* VLCPlaylistTableViewCell.h */,
  1174. 7DA6209A170A0CE500643D11 /* VLCPlaylistTableViewCell.m */,
  1175. 7D6B07F51716D45B003280C4 /* VLCPlaylistGridView.h */,
  1176. 7D6B07F61716D45B003280C4 /* VLCPlaylistGridView.m */,
  1177. );
  1178. name = "Everything Playlist";
  1179. sourceTree = "<group>";
  1180. };
  1181. 7D5F7AB9175265B2006CCCFA /* Playback */ = {
  1182. isa = PBXGroup;
  1183. children = (
  1184. 7D94FCF916DE7D1100F2623B /* VLCMovieViewController.h */,
  1185. 7D94FCFA16DE7D1100F2623B /* VLCMovieViewController.m */,
  1186. A7DA16CF171083DF00D6FED9 /* VLCExternalDisplayController.h */,
  1187. A7DA16D0171083DF00D6FED9 /* VLCExternalDisplayController.m */,
  1188. );
  1189. name = Playback;
  1190. sourceTree = "<group>";
  1191. };
  1192. 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */ = {
  1193. isa = PBXGroup;
  1194. children = (
  1195. 29CE2D41174912C600922D8F /* VLCHTTPUploaderController.h */,
  1196. 29CE2D42174912C600922D8F /* VLCHTTPUploaderController.m */,
  1197. 7D3EB015174A46FB002062C2 /* VLCHTTPFileDownloader.h */,
  1198. 7D3EB016174A46FB002062C2 /* VLCHTTPFileDownloader.m */,
  1199. 7DB43832176E20CC00F460EE /* VLCDownloadViewController.h */,
  1200. 7DB43833176E20CC00F460EE /* VLCDownloadViewController.m */,
  1201. );
  1202. name = "HTTP Connectivity";
  1203. sourceTree = "<group>";
  1204. };
  1205. 7D6B07A31716C9A6003280C4 /* OBSlider */ = {
  1206. isa = PBXGroup;
  1207. children = (
  1208. 7DADC55D1704FABF001DAC63 /* OBSlider.h */,
  1209. 7DADC55E1704FABF001DAC63 /* OBSlider.m */,
  1210. );
  1211. name = OBSlider;
  1212. sourceTree = "<group>";
  1213. };
  1214. 7D6B07A41716C9AD003280C4 /* AQGridView */ = {
  1215. isa = PBXGroup;
  1216. children = (
  1217. 7D6B07A51716C9B8003280C4 /* AQGridView.h */,
  1218. 7D6B07A61716C9B8003280C4 /* AQGridView.m */,
  1219. 7D6B07A71716C9B8003280C4 /* AQGridView+CellLayout.h */,
  1220. 7D6B07A81716C9B8003280C4 /* AQGridView+CellLocationDelegation.h */,
  1221. 7D6B07A91716C9B8003280C4 /* AQGridViewAnimatorItem.h */,
  1222. 7D6B07AA1716C9B8003280C4 /* AQGridViewAnimatorItem.m */,
  1223. 7D6B07AB1716C9B8003280C4 /* AQGridViewCell.h */,
  1224. 7D6B07AC1716C9B8003280C4 /* AQGridViewCell.m */,
  1225. 7D6B07AD1716C9B8003280C4 /* AQGridViewCell+AQGridViewCellPrivate.h */,
  1226. 7D6B07AE1716C9B8003280C4 /* AQGridViewController.h */,
  1227. 7D6B07AF1716C9B8003280C4 /* AQGridViewController.m */,
  1228. 7D6B07B01716C9B8003280C4 /* AQGridViewData.h */,
  1229. 7D6B07B11716C9B8003280C4 /* AQGridViewData.m */,
  1230. 7D6B07B21716C9B8003280C4 /* AQGridViewUpdateInfo.h */,
  1231. 7D6B07B31716C9B8003280C4 /* AQGridViewUpdateInfo.m */,
  1232. 7D6B07B41716C9B8003280C4 /* AQGridViewUpdateItem.h */,
  1233. 7D6B07B51716C9B8003280C4 /* AQGridViewUpdateItem.m */,
  1234. 7D6B07B61716C9B8003280C4 /* NSIndexSet+AQIndexesOutsideSet.h */,
  1235. 7D6B07B71716C9B8003280C4 /* NSIndexSet+AQIndexesOutsideSet.m */,
  1236. 7D6B07B81716C9B8003280C4 /* NSIndexSet+AQIsSetContiguous.h */,
  1237. 7D6B07B91716C9B8003280C4 /* NSIndexSet+AQIsSetContiguous.m */,
  1238. 7D6B07BA1716C9B8003280C4 /* UIColor+AQGridView.h */,
  1239. 7D6B07BB1716C9B8003280C4 /* UIColor+AQGridView.m */,
  1240. );
  1241. name = AQGridView;
  1242. sourceTree = "<group>";
  1243. };
  1244. 7D6B08CA174D65B400A05173 /* InAppSettingsKit */ = {
  1245. isa = PBXGroup;
  1246. children = (
  1247. 7D6B08CB174D65B500A05173 /* Controllers */,
  1248. 7D6B08D3174D65B500A05173 /* Models */,
  1249. 7D6B08DE174D65B500A05173 /* Views */,
  1250. );
  1251. name = InAppSettingsKit;
  1252. path = ImportedSources/InAppSettingsKit/InAppSettingsKit;
  1253. sourceTree = SOURCE_ROOT;
  1254. };
  1255. 7D6B08CB174D65B500A05173 /* Controllers */ = {
  1256. isa = PBXGroup;
  1257. children = (
  1258. 7D6B08CC174D65B500A05173 /* IASKAppSettingsViewController.h */,
  1259. 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */,
  1260. 7D6B08CE174D65B500A05173 /* IASKAppSettingsWebViewController.h */,
  1261. 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */,
  1262. 7D6B08D0174D65B500A05173 /* IASKSpecifierValuesViewController.h */,
  1263. 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */,
  1264. 7D6B08D2174D65B500A05173 /* IASKViewController.h */,
  1265. );
  1266. path = Controllers;
  1267. sourceTree = "<group>";
  1268. };
  1269. 7D6B08D3174D65B500A05173 /* Models */ = {
  1270. isa = PBXGroup;
  1271. children = (
  1272. 7D6B08D4174D65B500A05173 /* IASKSettingsReader.h */,
  1273. 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */,
  1274. 7D6B08D6174D65B500A05173 /* IASKSettingsStore.h */,
  1275. 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */,
  1276. 7D6B08D8174D65B500A05173 /* IASKSettingsStoreFile.h */,
  1277. 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */,
  1278. 7D6B08DA174D65B500A05173 /* IASKSettingsStoreUserDefaults.h */,
  1279. 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */,
  1280. 7D6B08DC174D65B500A05173 /* IASKSpecifier.h */,
  1281. 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */,
  1282. );
  1283. path = Models;
  1284. sourceTree = "<group>";
  1285. };
  1286. 7D6B08DE174D65B500A05173 /* Views */ = {
  1287. isa = PBXGroup;
  1288. children = (
  1289. 7D6B08DF174D65B500A05173 /* IASKPSSliderSpecifierViewCell.h */,
  1290. 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */,
  1291. 7D6B08E1174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.h */,
  1292. 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */,
  1293. 7D6B08E3174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.h */,
  1294. 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */,
  1295. 7D6B08E5174D65B500A05173 /* IASKSlider.h */,
  1296. 7D6B08E6174D65B500A05173 /* IASKSlider.m */,
  1297. 7D6B08E7174D65B500A05173 /* IASKSwitch.h */,
  1298. 7D6B08E8174D65B500A05173 /* IASKSwitch.m */,
  1299. 7D6B08E9174D65B500A05173 /* IASKTextField.h */,
  1300. 7D6B08EA174D65B500A05173 /* IASKTextField.m */,
  1301. );
  1302. path = Views;
  1303. sourceTree = "<group>";
  1304. };
  1305. 7D94FCD216DE7D1000F2623B = {
  1306. isa = PBXGroup;
  1307. children = (
  1308. 7D94FCE416DE7D1000F2623B /* AspenProject */,
  1309. CC1BBC441704936500A20CBF /* External VLC Libraries */,
  1310. 7D94FCDD16DE7D1000F2623B /* Frameworks */,
  1311. 7D94FCDC16DE7D1000F2623B /* Products */,
  1312. );
  1313. sourceTree = "<group>";
  1314. };
  1315. 7D94FCDC16DE7D1000F2623B /* Products */ = {
  1316. isa = PBXGroup;
  1317. children = (
  1318. 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */,
  1319. );
  1320. name = Products;
  1321. sourceTree = "<group>";
  1322. };
  1323. 7D94FCDD16DE7D1000F2623B /* Frameworks */ = {
  1324. isa = PBXGroup;
  1325. children = (
  1326. CCE2A22D17A5859E00D9EAAD /* CoreText.framework */,
  1327. 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */,
  1328. 7DF7E790175F47DC0018858D /* MediaPlayer.framework */,
  1329. 7D6B08F9174D716200A05173 /* MessageUI.framework */,
  1330. 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */,
  1331. 7D05ADEA174945CE0087550C /* DropboxSDK.framework */,
  1332. 2915544217490D4A00B86CAD /* Security.framework */,
  1333. 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */,
  1334. CC1BBC57170493E100A20CBF /* CoreData.framework */,
  1335. CC1BBC55170493C100A20CBF /* QuartzCore.framework */,
  1336. CC1BBC53170493B800A20CBF /* AudioToolbox.framework */,
  1337. CC1BBC51170493B100A20CBF /* OpenGLES.framework */,
  1338. CC1BBC4F170493AA00A20CBF /* libxml2.dylib */,
  1339. 7D31001F17B6768B00E6516D /* libupnpx.a */,
  1340. CC1BBC4D170493A300A20CBF /* libbz2.dylib */,
  1341. CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */,
  1342. CC1BBC491704939300A20CBF /* libz.dylib */,
  1343. CC1BBC471704938B00A20CBF /* libstdc++.dylib */,
  1344. CC1BBC451704938300A20CBF /* libiconv.dylib */,
  1345. 7D94FCDE16DE7D1000F2623B /* UIKit.framework */,
  1346. 7D94FCE016DE7D1000F2623B /* Foundation.framework */,
  1347. 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */,
  1348. );
  1349. name = Frameworks;
  1350. sourceTree = "<group>";
  1351. };
  1352. 7D94FCE416DE7D1000F2623B /* AspenProject */ = {
  1353. isa = PBXGroup;
  1354. children = (
  1355. 7D6B08BB174A72A900A05173 /* VLCConstants.h */,
  1356. 7DD8DDAF17C915F400E7AE4B /* VLCFixups.h */,
  1357. 7D94FCED16DE7D1000F2623B /* VLCAppDelegate.h */,
  1358. 7D94FCEE16DE7D1000F2623B /* VLCAppDelegate.m */,
  1359. A7D03A4817A4249F0022C16F /* MediaDiscovering */,
  1360. 7D2339AB176DE70E008D223C /* Menu */,
  1361. 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */,
  1362. 7D31002117B676D500E6516D /* Local Network Connectivity */,
  1363. 7D5F7AB9175265B2006CCCFA /* Playback */,
  1364. 7D5F7AB81752658E006CCCFA /* Everything Playlist */,
  1365. 7D5F7AB717526573006CCCFA /* Accessory dialogs */,
  1366. 7D5E39CC174FCDBE007DAFA1 /* Dropbox Integration */,
  1367. 7D31CF061746AEF2005997E0 /* UI Elements */,
  1368. A7C3025A175A538700AD4388 /* Extensions */,
  1369. 7DADC5601704FACC001DAC63 /* Imported */,
  1370. 7DADC55C1704FAA8001DAC63 /* XIBs */,
  1371. A7924697170F0ED20036AAF2 /* Resources */,
  1372. 7D94FCE516DE7D1000F2623B /* Supporting Files */,
  1373. );
  1374. path = AspenProject;
  1375. sourceTree = "<group>";
  1376. };
  1377. 7D94FCE516DE7D1000F2623B /* Supporting Files */ = {
  1378. isa = PBXGroup;
  1379. children = (
  1380. 7D94FCE616DE7D1000F2623B /* VLC for iOS-Info.plist */,
  1381. 7D94FCEA16DE7D1000F2623B /* main.m */,
  1382. 7D94FCEC16DE7D1000F2623B /* VLC for iOS-Prefix.pch */,
  1383. );
  1384. name = "Supporting Files";
  1385. sourceTree = "<group>";
  1386. };
  1387. 7DADC55C1704FAA8001DAC63 /* XIBs */ = {
  1388. isa = PBXGroup;
  1389. children = (
  1390. 7DC72D6817B820C8008A26D0 /* VLCNetworkLoginViewController.xib */,
  1391. 7D93045A17B6ACCF0054EAC6 /* VLCWiFiUploadTableViewCell.xib */,
  1392. 7D93044617B687C90054EAC6 /* VLCLocalNetworkListCell~ipad.xib */,
  1393. 7D93044717B687C90054EAC6 /* VLCLocalNetworkListCell~iphone.xib */,
  1394. 7DB43834176E20CC00F460EE /* VLCDownloadViewController.xib */,
  1395. 7D2339AE176DE72E008D223C /* VLCOpenNetworkStreamViewController.xib */,
  1396. 7DBC3B431711FC6C00DCF688 /* VLCAboutViewController~iphone.xib */,
  1397. 7D9529521732EFCA006F5B40 /* VLCAboutViewController~ipad.xib */,
  1398. A79246BD170F114E0036AAF2 /* VLCMovieViewController~iphone.xib */,
  1399. 7D33D41517182615008AF0E0 /* VLCMovieViewController~ipad.xib */,
  1400. A79246C0170F114E0036AAF2 /* VLCEmptyLibraryView~iphone.xib */,
  1401. A79246BC170F114E0036AAF2 /* VLCEmptyLibraryView~ipad.xib */,
  1402. 7DC87AF117413EE3009DC250 /* VLCPlaylistGridView.xib */,
  1403. A79246BE170F114E0036AAF2 /* VLCPlaylistTableViewCell.xib */,
  1404. 7D5E39C5174FBAF3007DAFA1 /* VLCDropboxTableViewController.xib */,
  1405. 7D5E39D0174FCF43007DAFA1 /* VLCDropboxTableViewCell~ipad.xib */,
  1406. 7DF65C2C174FF3F400F43330 /* VLCDropboxTableViewCell~iphone.xib */,
  1407. );
  1408. name = XIBs;
  1409. sourceTree = "<group>";
  1410. };
  1411. 7DADC5601704FACC001DAC63 /* Imported */ = {
  1412. isa = PBXGroup;
  1413. children = (
  1414. 7D6B08CA174D65B400A05173 /* InAppSettingsKit */,
  1415. A7A0E9EB174BA66000162F25 /* PAPasscode */,
  1416. 7DC72D6517B7ED36008A26D0 /* Reachability */,
  1417. 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */,
  1418. 7D31001E17B64AE600E6516D /* GHSidebarNav */,
  1419. 291553E817490A0400B86CAD /* CocoaHTTPServer */,
  1420. 7D6B07A41716C9AD003280C4 /* AQGridView */,
  1421. 7D6B07A31716C9A6003280C4 /* OBSlider */,
  1422. );
  1423. name = Imported;
  1424. sourceTree = "<group>";
  1425. };
  1426. 7DBC3B3C1711DD1E00DCF688 /* Icons */ = {
  1427. isa = PBXGroup;
  1428. children = (
  1429. 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */,
  1430. 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */,
  1431. 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */,
  1432. 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */,
  1433. 7DEB3B6517647E440038FC70 /* Icon-72.png */,
  1434. 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */,
  1435. 7DEB3B6317647E370038FC70 /* Icon.png */,
  1436. 7DEB3B6117647E230038FC70 /* Icon@2x.png */,
  1437. 7D6B08C0174A831900A05173 /* vlc-xmas.png */,
  1438. 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */,
  1439. 7DEB3B7117649BEB0038FC70 /* Icon-512.png */,
  1440. );
  1441. name = Icons;
  1442. sourceTree = "<group>";
  1443. };
  1444. 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */ = {
  1445. isa = PBXGroup;
  1446. children = (
  1447. 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */,
  1448. 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */,
  1449. );
  1450. name = WhiteRaccoon;
  1451. sourceTree = "<group>";
  1452. };
  1453. 7DC72D6517B7ED36008A26D0 /* Reachability */ = {
  1454. isa = PBXGroup;
  1455. children = (
  1456. 7D3EB010174A3530002062C2 /* Reachability.h */,
  1457. 7D3EB011174A3530002062C2 /* Reachability.m */,
  1458. );
  1459. name = Reachability;
  1460. sourceTree = "<group>";
  1461. };
  1462. 7DEB3B7B1764A4080038FC70 /* menu */ = {
  1463. isa = PBXGroup;
  1464. children = (
  1465. 7D16036117BFB7F400F29B34 /* WiFi-off.png */,
  1466. 7D16036217BFB7F400F29B34 /* WiFi-on.png */,
  1467. 7D16036517BFBB5D00F29B34 /* WiFi-off@2x.png */,
  1468. 7D16036617BFBB5D00F29B34 /* WiFi-on@2x.png */,
  1469. 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */,
  1470. 7DC72D5C17B7E7C7008A26D0 /* download.png */,
  1471. 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */,
  1472. 7DEB3B771764A4040038FC70 /* input@2x.png */,
  1473. 7DEB3B781764A4040038FC70 /* input.png */,
  1474. 7DEB3B7317649F2C0038FC70 /* menuButton.png */,
  1475. 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */,
  1476. );
  1477. name = menu;
  1478. sourceTree = "<group>";
  1479. };
  1480. A7924697170F0ED20036AAF2 /* Resources */ = {
  1481. isa = PBXGroup;
  1482. children = (
  1483. 7D47D6C81760CD2700E86BAD /* Movie VIew */,
  1484. 7D6B08FB174D773C00A05173 /* Settings.bundle */,
  1485. 29125E5317492219003F03E5 /* web */,
  1486. A7035BBD174519600057DFA7 /* iTunesArtwork */,
  1487. 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */,
  1488. 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */,
  1489. 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */,
  1490. 7D5DD5C617590ABF001421E3 /* About Contents.html */,
  1491. 7DEB3B7B1764A4080038FC70 /* menu */,
  1492. 7DBC3B3C1711DD1E00DCF688 /* Icons */,
  1493. A79246C6170F11DF0036AAF2 /* Localizable.strings */,
  1494. 7D10BC651743F9A100DA7059 /* External Playback */,
  1495. 7D10BC671743F9BA00DA7059 /* Launch Screen */,
  1496. 7D2159E4174FD31900EC00E8 /* Dropbox */,
  1497. 7D10BC661743F9AC00DA7059 /* Library View */,
  1498. );
  1499. path = Resources;
  1500. sourceTree = SOURCE_ROOT;
  1501. };
  1502. A7A0E9EB174BA66000162F25 /* PAPasscode */ = {
  1503. isa = PBXGroup;
  1504. children = (
  1505. A7A0E9EC174BA66000162F25 /* Assets */,
  1506. A7A0E9F3174BA66000162F25 /* PAPasscodeViewController.h */,
  1507. A7A0E9F4174BA66000162F25 /* PAPasscodeViewController.m */,
  1508. );
  1509. name = PAPasscode;
  1510. path = ../PAPasscode;
  1511. sourceTree = "<group>";
  1512. };
  1513. A7A0E9EC174BA66000162F25 /* Assets */ = {
  1514. isa = PBXGroup;
  1515. children = (
  1516. A7A0E9ED174BA66000162F25 /* papasscode_background.png */,
  1517. A7A0E9EE174BA66000162F25 /* papasscode_background@2x.png */,
  1518. A7A0E9EF174BA66000162F25 /* papasscode_failed_bg.png */,
  1519. A7A0E9F0174BA66000162F25 /* papasscode_failed_bg@2x.png */,
  1520. A7A0E9F1174BA66000162F25 /* papasscode_marker.png */,
  1521. A7A0E9F2174BA66000162F25 /* papasscode_marker@2x.png */,
  1522. );
  1523. path = Assets;
  1524. sourceTree = "<group>";
  1525. };
  1526. A7C3025A175A538700AD4388 /* Extensions */ = {
  1527. isa = PBXGroup;
  1528. children = (
  1529. A7C3025C175A53D400AD4388 /* NSString+SupportedMedia.h */,
  1530. A7C3025D175A53D400AD4388 /* NSString+SupportedMedia.m */,
  1531. 7DDABBB51775A3A7003D8937 /* UIDevice+SpeedCategory.h */,
  1532. 7DDABBB61775A3C7003D8937 /* UIDevice+SpeedCategory.m */,
  1533. );
  1534. name = Extensions;
  1535. sourceTree = "<group>";
  1536. };
  1537. A7D03A4817A4249F0022C16F /* MediaDiscovering */ = {
  1538. isa = PBXGroup;
  1539. children = (
  1540. A7D03A4517A41AD30022C16F /* VLCMediaFileDiscoverer.h */,
  1541. A7D03A4617A41AD30022C16F /* VLCMediaFileDiscoverer.m */,
  1542. );
  1543. name = MediaDiscovering;
  1544. sourceTree = "<group>";
  1545. };
  1546. CC1BBC441704936500A20CBF /* External VLC Libraries */ = {
  1547. isa = PBXGroup;
  1548. children = (
  1549. A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */,
  1550. CC1BBC421704935E00A20CBF /* MediaLibrary.mom */,
  1551. CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */,
  1552. );
  1553. name = "External VLC Libraries";
  1554. sourceTree = "<group>";
  1555. };
  1556. /* End PBXGroup section */
  1557. /* Begin PBXNativeTarget section */
  1558. 7D94FCDA16DE7D1000F2623B /* vlc-ios */ = {
  1559. isa = PBXNativeTarget;
  1560. buildConfigurationList = 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */;
  1561. buildPhases = (
  1562. 7D94FCD716DE7D1000F2623B /* Sources */,
  1563. 7D94FCD816DE7D1000F2623B /* Frameworks */,
  1564. 7D94FCD916DE7D1000F2623B /* Resources */,
  1565. );
  1566. buildRules = (
  1567. );
  1568. dependencies = (
  1569. );
  1570. name = "vlc-ios";
  1571. productName = AspenProject;
  1572. productReference = 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */;
  1573. productType = "com.apple.product-type.application";
  1574. };
  1575. /* End PBXNativeTarget section */
  1576. /* Begin PBXProject section */
  1577. 7D94FCD316DE7D1000F2623B /* Project object */ = {
  1578. isa = PBXProject;
  1579. attributes = {
  1580. CLASSPREFIX = VLC;
  1581. LastUpgradeCheck = 0460;
  1582. ORGANIZATIONNAME = VideoLAN;
  1583. };
  1584. buildConfigurationList = 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */;
  1585. compatibilityVersion = "Xcode 3.2";
  1586. developmentRegion = English;
  1587. hasScannedForEncodings = 0;
  1588. knownRegions = (
  1589. en,
  1590. ru,
  1591. de,
  1592. fr,
  1593. it,
  1594. ja,
  1595. fi,
  1596. id,
  1597. es,
  1598. da,
  1599. he,
  1600. nl,
  1601. sk,
  1602. tr,
  1603. uk,
  1604. vi,
  1605. "zh-Hans",
  1606. "zh-Hant",
  1607. mr,
  1608. gl,
  1609. ca,
  1610. bs,
  1611. pt,
  1612. el,
  1613. sl,
  1614. );
  1615. mainGroup = 7D94FCD216DE7D1000F2623B;
  1616. productRefGroup = 7D94FCDC16DE7D1000F2623B /* Products */;
  1617. projectDirPath = "";
  1618. projectRoot = "";
  1619. targets = (
  1620. 7D94FCDA16DE7D1000F2623B /* vlc-ios */,
  1621. );
  1622. };
  1623. /* End PBXProject section */
  1624. /* Begin PBXResourcesBuildPhase section */
  1625. 7D94FCD916DE7D1000F2623B /* Resources */ = {
  1626. isa = PBXResourcesBuildPhase;
  1627. buildActionMask = 2147483647;
  1628. files = (
  1629. 7D00161C177056B700649F27 /* main.js in Resources */,
  1630. 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */,
  1631. 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */,
  1632. 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */,
  1633. 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */,
  1634. CC1BBC431704935E00A20CBF /* MediaLibrary.mom in Resources */,
  1635. A79246A7170F0ED20036AAF2 /* Default-568h@2x.png in Resources */,
  1636. A79246A8170F0ED20036AAF2 /* Default.png in Resources */,
  1637. A79246A9170F0ED20036AAF2 /* Default@2x.png in Resources */,
  1638. A79246C1170F114E0036AAF2 /* VLCEmptyLibraryView~ipad.xib in Resources */,
  1639. A79246C2170F114E0036AAF2 /* VLCMovieViewController~iphone.xib in Resources */,
  1640. A79246C3170F114E0036AAF2 /* VLCPlaylistTableViewCell.xib in Resources */,
  1641. A79246C5170F114E0036AAF2 /* VLCEmptyLibraryView~iphone.xib in Resources */,
  1642. A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */,
  1643. 7DBC3B451711FC6C00DCF688 /* VLCAboutViewController~iphone.xib in Resources */,
  1644. A7CB0DB11716F72600050CF3 /* PlayingExternally@2x~iphone.png in Resources */,
  1645. A7CB0DB21716F72600050CF3 /* PlayingExternally~iphone.png in Resources */,
  1646. A7CB0DB31716F72600050CF3 /* PlayingExternally~ipad.png in Resources */,
  1647. A7CB0DB41716F72600050CF3 /* PlayingExternally@2x~ipad.png in Resources */,
  1648. 7D33D41617182615008AF0E0 /* VLCMovieViewController~ipad.xib in Resources */,
  1649. 7D9529531732EFCA006F5B40 /* VLCAboutViewController~ipad.xib in Resources */,
  1650. 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */,
  1651. 7DC87AF217413EE3009DC250 /* VLCPlaylistGridView.xib in Resources */,
  1652. A7FF9F3E17428C1900999819 /* DeleteButton.png in Resources */,
  1653. A7FF9F4017428C3800999819 /* DeleteButton@2x.png in Resources */,
  1654. A7035BBE174519600057DFA7 /* iTunesArtwork in Resources */,
  1655. 29125E5617492219003F03E5 /* index.html in Resources */,
  1656. 7D6B08C2174A831900A05173 /* vlc-xmas.png in Resources */,
  1657. 7D6B08C3174A831900A05173 /* vlc-xmas@2x.png in Resources */,
  1658. A7A0E9F5174BA66000162F25 /* papasscode_background.png in Resources */,
  1659. A7A0E9F6174BA66000162F25 /* papasscode_background@2x.png in Resources */,
  1660. A7A0E9F7174BA66000162F25 /* papasscode_failed_bg.png in Resources */,
  1661. A7A0E9F8174BA66000162F25 /* papasscode_failed_bg@2x.png in Resources */,
  1662. A7A0E9F9174BA66000162F25 /* papasscode_marker.png in Resources */,
  1663. A7A0E9FA174BA66000162F25 /* papasscode_marker@2x.png in Resources */,
  1664. 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */,
  1665. 7D5E39C7174FBAF3007DAFA1 /* VLCDropboxTableViewController.xib in Resources */,
  1666. 7D5E39CA174FC2F3007DAFA1 /* dropbox-white.png in Resources */,
  1667. 7D5E39CB174FC2F3007DAFA1 /* dropbox-white@2x.png in Resources */,
  1668. 7D5E39D1174FCF43007DAFA1 /* VLCDropboxTableViewCell~ipad.xib in Resources */,
  1669. 7DF65C2D174FF3F400F43330 /* VLCDropboxTableViewCell~iphone.xib in Resources */,
  1670. 7D07F708175665ED00CDE21C /* navBarBackground@2x.png in Resources */,
  1671. 7D07F709175665ED00CDE21C /* navBarBackground.png in Resources */,
  1672. 7D07F70C175669A800CDE21C /* button.png in Resources */,
  1673. 7D07F70D175669A800CDE21C /* button@2x.png in Resources */,
  1674. 7D07F710175669D800CDE21C /* buttonHighlight.png in Resources */,
  1675. 7D07F711175669D800CDE21C /* buttonHighlight@2x.png in Resources */,
  1676. 7D07F71417566C4A00CDE21C /* menuCone.png in Resources */,
  1677. 7D07F71517566C4A00CDE21C /* menuCone@2x.png in Resources */,
  1678. 7D07F71E175673D100CDE21C /* menuBtnBckHighlight@2x.png in Resources */,
  1679. 7D07F71F175673D100CDE21C /* menuBtnBck@2x.png in Resources */,
  1680. 7D07F720175673D100CDE21C /* menuBtnBckHighlight.png in Resources */,
  1681. 7D07F721175673D100CDE21C /* menuBtnBck.png in Resources */,
  1682. 7D07F726175688D300CDE21C /* doneButton.png in Resources */,
  1683. 7D07F727175688D300CDE21C /* doneButton@2x.png in Resources */,
  1684. 7D07F728175688D300CDE21C /* doneButtonHighlight.png in Resources */,
  1685. 7D07F729175688D300CDE21C /* doneButtonHighlight@2x.png in Resources */,
  1686. 7D07F72E175691CC00CDE21C /* backButton.png in Resources */,
  1687. 7D07F72F175691CC00CDE21C /* backButton@2x.png in Resources */,
  1688. 7D07F730175691CC00CDE21C /* backButtonHighlight.png in Resources */,
  1689. 7D07F731175691CC00CDE21C /* backButtonHighlight@2x.png in Resources */,
  1690. 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */,
  1691. 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */,
  1692. 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */,
  1693. 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */,
  1694. 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */,
  1695. 7D47D6F91760CD8700E86BAD /* subtitleIcon.png in Resources */,
  1696. 7D47D6FA1760CD8700E86BAD /* subtitleIcon@2x.png in Resources */,
  1697. 7D47D6FB1760CD8700E86BAD /* videoEffectsIcon.png in Resources */,
  1698. 7D47D6FC1760CD8700E86BAD /* videoEffectsIcon@2x.png in Resources */,
  1699. 7D47D6FD1760CD8700E86BAD /* seekbarBg@2x.png in Resources */,
  1700. 7D47D6FE1760CD8700E86BAD /* slidermaximumTrack.png in Resources */,
  1701. 7D47D6FF1760CD8700E86BAD /* slidermaximumTrack@2x.png in Resources */,
  1702. 7D47D7001760CD8700E86BAD /* slidermaxValue.png in Resources */,
  1703. 7D47D7011760CD8700E86BAD /* slidermaxValue@2x.png in Resources */,
  1704. 7D47D7021760CD8700E86BAD /* sliderminiValue.png in Resources */,
  1705. 7D47D7031760CD8700E86BAD /* sliderminiValue@2x.png in Resources */,
  1706. 7D47D7061760CD8700E86BAD /* speedIcon.png in Resources */,
  1707. 7D47D7071760CD8700E86BAD /* speedIcon@2x.png in Resources */,
  1708. 7D47D7081760CD8700E86BAD /* playbackControllerBg@2x.png in Resources */,
  1709. 7D47D7091760CD8700E86BAD /* playbackDoneButton.png in Resources */,
  1710. 7D47D70A1760CD8700E86BAD /* playbackDoneButton@2x.png in Resources */,
  1711. 7D47D70B1760CD8700E86BAD /* playbackDoneButtonHighlight.png in Resources */,
  1712. 7D47D70C1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png in Resources */,
  1713. 7D47D70D1760CD8700E86BAD /* ratioButton.png in Resources */,
  1714. 7D47D70E1760CD8700E86BAD /* ratioButton@2x.png in Resources */,
  1715. 7D47D70F1760CD8700E86BAD /* ratioButtonHighlight.png in Resources */,
  1716. 7D47D7101760CD8700E86BAD /* ratioButtonHighlight@2x.png in Resources */,
  1717. 7D47D7111760CD8700E86BAD /* seekbarBg.png in Resources */,
  1718. 7D47D7131760CD8700E86BAD /* forwardIcon.png in Resources */,
  1719. 7D47D7141760CD8700E86BAD /* forwardIcon@2x.png in Resources */,
  1720. 7D47D7151760CD8700E86BAD /* knobSlider.png in Resources */,
  1721. 7D47D7161760CD8700E86BAD /* knobSlider@2x.png in Resources */,
  1722. 7D47D7191760CD8700E86BAD /* playbackControllerBg.png in Resources */,
  1723. 7D47D71A1760CD8700E86BAD /* playIcon.png in Resources */,
  1724. 7D47D71B1760CD8700E86BAD /* playIcon@2x.png in Resources */,
  1725. 7D47D71C1760CD8700E86BAD /* audioTrackIcon.png in Resources */,
  1726. 7D47D71D1760CD8700E86BAD /* audioTrackIcon@2x.png in Resources */,
  1727. 7D47D71E1760CD8700E86BAD /* backIcon.png in Resources */,
  1728. 7D47D71F1760CD8700E86BAD /* backIcon@2x.png in Resources */,
  1729. 7D47D7201760CD8700E86BAD /* ballSlider.png in Resources */,
  1730. 7D47D7211760CD8700E86BAD /* ballSlider@2x.png in Resources */,
  1731. 7D47D7271760D77C00E86BAD /* pauseIcon.png in Resources */,
  1732. 7D47D7281760D77C00E86BAD /* pauseIcon@2x.png in Resources */,
  1733. 7D47D72B1760E3A000E86BAD /* sliderminimumTrack.png in Resources */,
  1734. 7D47D72C1760E3A000E86BAD /* sliderminimumTrack@2x.png in Resources */,
  1735. 7D6BD1841762026700AD311A /* thumbOverlayPhone@2x.png in Resources */,
  1736. 7D6BD1851762026700AD311A /* thumbOverlay@2x.png in Resources */,
  1737. 7D6BD1861762026700AD311A /* thumbOverlayPhone.png in Resources */,
  1738. 7D6BD1871762026700AD311A /* thumbOverlay.png in Resources */,
  1739. 7D1AC3041762996100BD2EB5 /* resetIcon.png in Resources */,
  1740. 7D1AC3051762996100BD2EB5 /* resetIcon@2x.png in Resources */,
  1741. 7D1AC30817629AB600BD2EB5 /* ratioIcon.png in Resources */,
  1742. 7D1AC30917629AB600BD2EB5 /* ratioIcon@2x.png in Resources */,
  1743. 7D1AC30C17629D4600BD2EB5 /* title.png in Resources */,
  1744. 7D1AC30D17629D4600BD2EB5 /* title@2x.png in Resources */,
  1745. 7DEB3B5D17647B240038FC70 /* bottomBlackBar@2x.png in Resources */,
  1746. 7DEB3B5E17647B240038FC70 /* bottomBlackBar.png in Resources */,
  1747. 7DEB3B6017647DE30038FC70 /* iTunesArtwork@2x in Resources */,
  1748. 7DEB3B6217647E230038FC70 /* Icon@2x.png in Resources */,
  1749. 7DEB3B6417647E370038FC70 /* Icon.png in Resources */,
  1750. 7DEB3B6617647E440038FC70 /* Icon-72.png in Resources */,
  1751. 7DEB3B6817647E480038FC70 /* Icon-72@2x.png in Resources */,
  1752. 7DEB3B6D17647EC10038FC70 /* Icon-Small-50.png in Resources */,
  1753. 7DEB3B6E17647EC10038FC70 /* Icon-Small-50@2x.png in Resources */,
  1754. 7DEB3B6F17647EC10038FC70 /* Icon-Small.png in Resources */,
  1755. 7DEB3B7017647EC10038FC70 /* Icon-Small@2x.png in Resources */,
  1756. 7DEB3B7217649BEB0038FC70 /* Icon-512.png in Resources */,
  1757. 7DEB3B7517649F2C0038FC70 /* menuButton.png in Resources */,
  1758. 7DEB3B7617649F2C0038FC70 /* menuButton@2x.png in Resources */,
  1759. 7DEB3B791764A4040038FC70 /* input@2x.png in Resources */,
  1760. 7DEB3B7A1764A4040038FC70 /* input.png in Resources */,
  1761. 7DEB3B851764A4F40038FC70 /* movie@2x.png in Resources */,
  1762. 7DEB3B861764A4F40038FC70 /* movie@4x.png in Resources */,
  1763. 7DEB3B871764A4F40038FC70 /* blank@4x.png in Resources */,
  1764. 7DEB3B881764A4F40038FC70 /* folder.png in Resources */,
  1765. 7DEB3B891764A4F40038FC70 /* folder@2x.png in Resources */,
  1766. 7DEB3B8A1764A4F40038FC70 /* folder@4x.png in Resources */,
  1767. 7DEB3B8B1764A4F40038FC70 /* movie.png in Resources */,
  1768. 7DEB3B8C1764A4F40038FC70 /* blank.png in Resources */,
  1769. 7DEB3B8D1764A4F40038FC70 /* blank@2x.png in Resources */,
  1770. 7AC8629D1765DC560011611A /* style.css in Resources */,
  1771. 7DF1166C176CC69A009EC05C /* volumeballslider.png in Resources */,
  1772. 7DF1166D176CC69A009EC05C /* volumeballslider@2x.png in Resources */,
  1773. 7D2339B0176DE72E008D223C /* VLCOpenNetworkStreamViewController.xib in Resources */,
  1774. 7DB43836176E20CC00F460EE /* VLCDownloadViewController.xib in Resources */,
  1775. A7990064176E9352009E8267 /* libraryBackground.png in Resources */,
  1776. 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */,
  1777. 7D93044817B687C90054EAC6 /* VLCLocalNetworkListCell~ipad.xib in Resources */,
  1778. 7D93044917B687C90054EAC6 /* VLCLocalNetworkListCell~iphone.xib in Resources */,
  1779. 7D93045B17B6ACCF0054EAC6 /* VLCWiFiUploadTableViewCell.xib in Resources */,
  1780. 7DC72D5E17B7E7C7008A26D0 /* download@4x.png in Resources */,
  1781. 7DC72D5F17B7E7C7008A26D0 /* download.png in Resources */,
  1782. 7DC72D6017B7E7C7008A26D0 /* download@2x.png in Resources */,
  1783. 7DC72D6A17B820C9008A26D0 /* VLCNetworkLoginViewController.xib in Resources */,
  1784. 7D16035D17BF9FE600F29B34 /* sudHeaderBg.png in Resources */,
  1785. 7D16035E17BF9FE600F29B34 /* sudHeaderBg@2x.png in Resources */,
  1786. 7D16035F17BF9FE600F29B34 /* headerSidebar@2x.png in Resources */,
  1787. 7D16036017BF9FE600F29B34 /* headerSidebar.png in Resources */,
  1788. 7D16036317BFB7F400F29B34 /* WiFi-off.png in Resources */,
  1789. 7D16036417BFB7F400F29B34 /* WiFi-on.png in Resources */,
  1790. 7D16036717BFBB5D00F29B34 /* WiFi-off@2x.png in Resources */,
  1791. 7D16036817BFBB5D00F29B34 /* WiFi-on@2x.png in Resources */,
  1792. );
  1793. runOnlyForDeploymentPostprocessing = 0;
  1794. };
  1795. /* End PBXResourcesBuildPhase section */
  1796. /* Begin PBXSourcesBuildPhase section */
  1797. 7D94FCD716DE7D1000F2623B /* Sources */ = {
  1798. isa = PBXSourcesBuildPhase;
  1799. buildActionMask = 2147483647;
  1800. files = (
  1801. 7D94FCEB16DE7D1000F2623B /* main.m in Sources */,
  1802. 7D94FCEF16DE7D1000F2623B /* VLCAppDelegate.m in Sources */,
  1803. 7D94FCF816DE7D1100F2623B /* VLCPlaylistViewController.m in Sources */,
  1804. 7D94FCFB16DE7D1100F2623B /* VLCMovieViewController.m in Sources */,
  1805. 7DADC55F1704FABF001DAC63 /* OBSlider.m in Sources */,
  1806. 7DA6209B170A0CE500643D11 /* VLCPlaylistTableViewCell.m in Sources */,
  1807. A7DA16D1171083DF00D6FED9 /* VLCExternalDisplayController.m in Sources */,
  1808. 7DBC3B441711FC6C00DCF688 /* VLCAboutViewController.m in Sources */,
  1809. 7D6B07BC1716C9B8003280C4 /* AQGridView.m in Sources */,
  1810. 7D6B07BD1716C9B8003280C4 /* AQGridViewAnimatorItem.m in Sources */,
  1811. 7D6B07BE1716C9B8003280C4 /* AQGridViewCell.m in Sources */,
  1812. 7D6B07BF1716C9B8003280C4 /* AQGridViewController.m in Sources */,
  1813. 7D6B07C01716C9B8003280C4 /* AQGridViewData.m in Sources */,
  1814. 7D6B07C11716C9B8003280C4 /* AQGridViewUpdateInfo.m in Sources */,
  1815. 7D6B07C21716C9B8003280C4 /* AQGridViewUpdateItem.m in Sources */,
  1816. 7D6B07C31716C9B8003280C4 /* NSIndexSet+AQIndexesOutsideSet.m in Sources */,
  1817. 7D6B07C41716C9B8003280C4 /* NSIndexSet+AQIsSetContiguous.m in Sources */,
  1818. 7D6B07C51716C9B8003280C4 /* UIColor+AQGridView.m in Sources */,
  1819. 7D6B07F71716D45C003280C4 /* VLCPlaylistGridView.m in Sources */,
  1820. 7DC87AEE17412A1F009DC250 /* VLCLinearProgressIndicator.m in Sources */,
  1821. 7D31CF091746AF09005997E0 /* VLCStatusLabel.m in Sources */,
  1822. 2915540117490A1E00B86CAD /* DDData.m in Sources */,
  1823. 2915540217490A1E00B86CAD /* DDNumber.m in Sources */,
  1824. 2915540317490A1E00B86CAD /* DDRange.m in Sources */,
  1825. 2915540417490A1E00B86CAD /* HTTPAuthenticationRequest.m in Sources */,
  1826. 2915540517490A1E00B86CAD /* HTTPConnection.m in Sources */,
  1827. 2915540617490A1E00B86CAD /* HTTPMessage.m in Sources */,
  1828. 2915540717490A1E00B86CAD /* HTTPServer.m in Sources */,
  1829. 2915540817490A1E00B86CAD /* MultipartFormDataParser.m in Sources */,
  1830. 2915540917490A1E00B86CAD /* MultipartMessageHeader.m in Sources */,
  1831. 2915540A17490A1E00B86CAD /* MultipartMessageHeaderField.m in Sources */,
  1832. 2915542217490A9C00B86CAD /* GCDAsyncSocket.m in Sources */,
  1833. 2915542417490A9C00B86CAD /* DDAbstractDatabaseLogger.m in Sources */,
  1834. 2915542517490A9C00B86CAD /* DDASLLogger.m in Sources */,
  1835. 2915542617490A9C00B86CAD /* DDFileLogger.m in Sources */,
  1836. 2915542717490A9C00B86CAD /* DDLog.m in Sources */,
  1837. 2915542817490A9C00B86CAD /* DDTTYLogger.m in Sources */,
  1838. 2915542917490A9C00B86CAD /* ContextFilterLogFormatter.m in Sources */,
  1839. 2915542A17490A9C00B86CAD /* DispatchQueueLogFormatter.m in Sources */,
  1840. 2915543B17490B9C00B86CAD /* HTTPAsyncFileResponse.m in Sources */,
  1841. 2915543C17490B9C00B86CAD /* HTTPDataResponse.m in Sources */,
  1842. 2915543D17490B9C00B86CAD /* HTTPDynamicFileResponse.m in Sources */,
  1843. 2915543E17490B9C00B86CAD /* HTTPErrorResponse.m in Sources */,
  1844. 2915543F17490B9C00B86CAD /* HTTPFileResponse.m in Sources */,
  1845. 2915544017490B9C00B86CAD /* HTTPRedirectResponse.m in Sources */,
  1846. 2915544117490B9C00B86CAD /* WebSocket.m in Sources */,
  1847. 29CE2D44174912C600922D8F /* VLCHTTPUploaderController.m in Sources */,
  1848. 7D3EB012174A3530002062C2 /* Reachability.m in Sources */,
  1849. 7D3EB017174A46FB002062C2 /* VLCHTTPFileDownloader.m in Sources */,
  1850. A7A0E9FB174BA66000162F25 /* PAPasscodeViewController.m in Sources */,
  1851. 7D6B08EB174D65B500A05173 /* IASKAppSettingsViewController.m in Sources */,
  1852. 7D6B08EC174D65B500A05173 /* IASKAppSettingsWebViewController.m in Sources */,
  1853. 7D6B08ED174D65B500A05173 /* IASKSpecifierValuesViewController.m in Sources */,
  1854. 7D6B08EE174D65B500A05173 /* IASKSettingsReader.m in Sources */,
  1855. 7D6B08EF174D65B500A05173 /* IASKSettingsStore.m in Sources */,
  1856. 7D6B08F0174D65B500A05173 /* IASKSettingsStoreFile.m in Sources */,
  1857. 7D6B08F1174D65B500A05173 /* IASKSettingsStoreUserDefaults.m in Sources */,
  1858. 7D6B08F2174D65B500A05173 /* IASKSpecifier.m in Sources */,
  1859. 7D6B08F3174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m in Sources */,
  1860. 7D6B08F4174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m in Sources */,
  1861. 7D6B08F5174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m in Sources */,
  1862. 7D6B08F6174D65B500A05173 /* IASKSlider.m in Sources */,
  1863. 7D6B08F7174D65B500A05173 /* IASKSwitch.m in Sources */,
  1864. 7D6B08F8174D65B500A05173 /* IASKTextField.m in Sources */,
  1865. 7D07A4E9174EA47800759D10 /* VLCSettingsController.m in Sources */,
  1866. 7D07A4ED174EB81200759D10 /* VLCDropboxController.m in Sources */,
  1867. 7D5E39C6174FBAF3007DAFA1 /* VLCDropboxTableViewController.m in Sources */,
  1868. 7D5E39CF174FCE04007DAFA1 /* VLCDropboxTableViewCell.m in Sources */,
  1869. 7D5F7AC317529430006CCCFA /* VLCHorizontalSwipeGestureRecognizer.m in Sources */,
  1870. 7D5F7AC61752943F006CCCFA /* VLCVerticalSwipeGestureRecognizer.m in Sources */,
  1871. A7C3025E175A53D400AD4388 /* NSString+SupportedMedia.m in Sources */,
  1872. 7D47D72F1761101700E86BAD /* VLCSlider.m in Sources */,
  1873. 7D2339AF176DE72E008D223C /* VLCOpenNetworkStreamViewController.m in Sources */,
  1874. 7DB43835176E20CC00F460EE /* VLCDownloadViewController.m in Sources */,
  1875. 7A50619F176E3D410036E15D /* UINavigationController+Theme.m in Sources */,
  1876. 7A5061A2176E41160036E15D /* UIBarButtonItem+Theme.m in Sources */,
  1877. A7990067176E9CF3009E8267 /* VLCMenuButton.m in Sources */,
  1878. 7DDABBB71775A3C7003D8937 /* UIDevice+SpeedCategory.m in Sources */,
  1879. 7DD2A3A7179BFAFE003EB537 /* VLCBugreporter.m in Sources */,
  1880. A7D03A4717A41AD30022C16F /* VLCMediaFileDiscoverer.m in Sources */,
  1881. 7D31001D17B64AE100E6516D /* GHRevealViewController.m in Sources */,
  1882. 7D93044117B67C4F0054EAC6 /* VLCLocalServerListViewController.m in Sources */,
  1883. 7D93044517B684CF0054EAC6 /* VLCLocalNetworkListCell.m in Sources */,
  1884. 7D93045317B6A0DF0054EAC6 /* VLCMenuTableViewController.m in Sources */,
  1885. 7D93045617B6A5C00054EAC6 /* GHMenuCell.m in Sources */,
  1886. 7D93045917B6ACA10054EAC6 /* VLCWiFiUploadTableViewCell.m in Sources */,
  1887. 7D02B0D217B6BE850099030D /* VLCLocalServerFolderListViewController.m in Sources */,
  1888. 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */,
  1889. 7DC72D6917B820C9008A26D0 /* VLCNetworkLoginViewController.m in Sources */,
  1890. );
  1891. runOnlyForDeploymentPostprocessing = 0;
  1892. };
  1893. /* End PBXSourcesBuildPhase section */
  1894. /* Begin PBXVariantGroup section */
  1895. 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */ = {
  1896. isa = PBXVariantGroup;
  1897. children = (
  1898. 7DE1862A175BA9A5006C0173 /* en */,
  1899. 7DE18635175BA9EB006C0173 /* ru */,
  1900. 7DE18639175BAEAF006C0173 /* de */,
  1901. 7DE1863A175BAEB0006C0173 /* fr */,
  1902. 7DE1863B175BAEB0006C0173 /* it */,
  1903. 7DE1863C175BAEB1006C0173 /* ja */,
  1904. 7D4BE734175F82CA00861CD4 /* fi */,
  1905. 7D7DA5301768A53200C7E95D /* id */,
  1906. 7DC222781773AB0900371B5C /* es */,
  1907. 7D5C204917999A64004F9443 /* da */,
  1908. 7D1AB27D179C98BF004CC271 /* he */,
  1909. 7D1AB282179C98CD004CC271 /* nl */,
  1910. 7D1AB287179C98D4004CC271 /* sk */,
  1911. 7D1AB28C179C98DC004CC271 /* tr */,
  1912. 7D1AB291179C98E4004CC271 /* uk */,
  1913. 7D1AB296179C98F4004CC271 /* vi */,
  1914. 7D1AB2A5179C99AE004CC271 /* zh-Hans */,
  1915. CC87147A17A56C05003C7383 /* mr */,
  1916. CC87147F17A56C61003C7383 /* gl */,
  1917. CC87148417A56C85003C7383 /* ca */,
  1918. 7D4C484517ACF982008D228B /* bs */,
  1919. CCBDA19117B2BEB500489D71 /* pt */,
  1920. 7D19492C17C661A300959800 /* el */,
  1921. 7D9B6B0917C9625F00F9425D /* sl */,
  1922. );
  1923. name = "badgeUnread@2x~ipad.png";
  1924. sourceTree = "<group>";
  1925. };
  1926. 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */ = {
  1927. isa = PBXVariantGroup;
  1928. children = (
  1929. 7DE1862D175BA9A9006C0173 /* en */,
  1930. 7DE18637175BA9F9006C0173 /* ru */,
  1931. 7DE1863D175BAEB5006C0173 /* de */,
  1932. 7DE1863E175BAEB6006C0173 /* fr */,
  1933. 7DE1863F175BAEB7006C0173 /* it */,
  1934. 7DE18640175BAEB7006C0173 /* ja */,
  1935. 7D4BE735175F82CA00861CD4 /* fi */,
  1936. 7D7DA5311768A53200C7E95D /* id */,
  1937. 7DC222791773AB0900371B5C /* es */,
  1938. 7D5C204A17999A64004F9443 /* da */,
  1939. 7D1AB27E179C98BF004CC271 /* he */,
  1940. 7D1AB283179C98CD004CC271 /* nl */,
  1941. 7D1AB288179C98D4004CC271 /* sk */,
  1942. 7D1AB28D179C98DC004CC271 /* tr */,
  1943. 7D1AB292179C98E4004CC271 /* uk */,
  1944. 7D1AB297179C98F4004CC271 /* vi */,
  1945. 7D1AB2A6179C99AE004CC271 /* zh-Hans */,
  1946. CC87147B17A56C05003C7383 /* mr */,
  1947. CC87148017A56C61003C7383 /* gl */,
  1948. CC87148517A56C85003C7383 /* ca */,
  1949. 7D4C484617ACF982008D228B /* bs */,
  1950. CCBDA19217B2BEB500489D71 /* pt */,
  1951. 7D19492D17C661A300959800 /* el */,
  1952. 7D9B6B0A17C9626000F9425D /* sl */,
  1953. );
  1954. name = "badgeUnread@2x~iphone.png";
  1955. sourceTree = "<group>";
  1956. };
  1957. 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */ = {
  1958. isa = PBXVariantGroup;
  1959. children = (
  1960. 7DE18630175BA9AC006C0173 /* en */,
  1961. 7DE18636175BA9F4006C0173 /* ru */,
  1962. 7DE18645175BAEBF006C0173 /* de */,
  1963. 7DE18646175BAEC0006C0173 /* fr */,
  1964. 7DE18647175BAEC1006C0173 /* it */,
  1965. 7DE18648175BAEC2006C0173 /* ja */,
  1966. 7D4BE736175F82CA00861CD4 /* fi */,
  1967. 7D7DA5321768A53200C7E95D /* id */,
  1968. 7DC2227A1773AB0900371B5C /* es */,
  1969. 7D5C204B17999A64004F9443 /* da */,
  1970. 7D1AB27F179C98C0004CC271 /* he */,
  1971. 7D1AB284179C98CD004CC271 /* nl */,
  1972. 7D1AB289179C98D4004CC271 /* sk */,
  1973. 7D1AB28E179C98DC004CC271 /* tr */,
  1974. 7D1AB293179C98E4004CC271 /* uk */,
  1975. 7D1AB298179C98F4004CC271 /* vi */,
  1976. 7D1AB2A7179C99AE004CC271 /* zh-Hans */,
  1977. CC87147C17A56C05003C7383 /* mr */,
  1978. CC87148117A56C61003C7383 /* gl */,
  1979. CC87148617A56C85003C7383 /* ca */,
  1980. 7D4C484717ACF982008D228B /* bs */,
  1981. CCBDA19317B2BEB600489D71 /* pt */,
  1982. 7D19492E17C661A300959800 /* el */,
  1983. 7D9B6B0B17C9626000F9425D /* sl */,
  1984. );
  1985. name = "badgeUnread~ipad.png";
  1986. sourceTree = "<group>";
  1987. };
  1988. 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */ = {
  1989. isa = PBXVariantGroup;
  1990. children = (
  1991. 7DE18633175BA9AF006C0173 /* en */,
  1992. 7DE18638175BA9FC006C0173 /* ru */,
  1993. 7DE18641175BAEBA006C0173 /* de */,
  1994. 7DE18642175BAEBB006C0173 /* it */,
  1995. 7DE18643175BAEBC006C0173 /* fr */,
  1996. 7DE18644175BAEBD006C0173 /* ja */,
  1997. 7D4BE737175F82CA00861CD4 /* fi */,
  1998. 7D7DA5331768A53200C7E95D /* id */,
  1999. 7DC2227B1773AB0900371B5C /* es */,
  2000. 7D5C204C17999A64004F9443 /* da */,
  2001. 7D1AB280179C98C0004CC271 /* he */,
  2002. 7D1AB285179C98CD004CC271 /* nl */,
  2003. 7D1AB28A179C98D4004CC271 /* sk */,
  2004. 7D1AB28F179C98DC004CC271 /* tr */,
  2005. 7D1AB294179C98E4004CC271 /* uk */,
  2006. 7D1AB299179C98F4004CC271 /* vi */,
  2007. 7D1AB2A8179C99AE004CC271 /* zh-Hans */,
  2008. CC87147D17A56C05003C7383 /* mr */,
  2009. CC87148217A56C61003C7383 /* gl */,
  2010. CC87148717A56C85003C7383 /* ca */,
  2011. 7D4C484817ACF982008D228B /* bs */,
  2012. CCBDA19417B2BEB600489D71 /* pt */,
  2013. 7D19492F17C661A300959800 /* el */,
  2014. 7D9B6B0C17C9626000F9425D /* sl */,
  2015. );
  2016. name = "badgeUnread~iphone.png";
  2017. sourceTree = "<group>";
  2018. };
  2019. A79246C6170F11DF0036AAF2 /* Localizable.strings */ = {
  2020. isa = PBXVariantGroup;
  2021. children = (
  2022. A79246C7170F11DF0036AAF2 /* en */,
  2023. A79246C9170F11E40036AAF2 /* ru */,
  2024. 7DC87AEF17413634009DC250 /* de */,
  2025. 7DC87AF017413A17009DC250 /* fr */,
  2026. 7D6D13591758D1A00007EA9A /* it */,
  2027. 7D49E178175A47A4002D1450 /* ja */,
  2028. 7D4BE733175F82CA00861CD4 /* fi */,
  2029. 7D7DA52F1768A53200C7E95D /* id */,
  2030. 7DC222771773AB0900371B5C /* es */,
  2031. 7D5C204D17999A74004F9443 /* da */,
  2032. 7D1AB27C179C98BF004CC271 /* he */,
  2033. 7D1AB281179C98CD004CC271 /* nl */,
  2034. 7D1AB286179C98D4004CC271 /* sk */,
  2035. 7D1AB28B179C98DC004CC271 /* tr */,
  2036. 7D1AB290179C98E3004CC271 /* uk */,
  2037. 7D1AB295179C98F4004CC271 /* vi */,
  2038. 7D1AB2A4179C99AE004CC271 /* zh-Hans */,
  2039. CC87147917A56C05003C7383 /* mr */,
  2040. CC87147E17A56C61003C7383 /* gl */,
  2041. CC87148317A56C85003C7383 /* ca */,
  2042. 7D4C484417ACF982008D228B /* bs */,
  2043. CCBDA19017B2BEB500489D71 /* pt */,
  2044. 7D19492B17C661A300959800 /* el */,
  2045. 7D9B6B0817C9625F00F9425D /* sl */,
  2046. );
  2047. name = Localizable.strings;
  2048. sourceTree = "<group>";
  2049. };
  2050. /* End PBXVariantGroup section */
  2051. /* Begin XCBuildConfiguration section */
  2052. 7D94FD0816DE7D1100F2623B /* Debug */ = {
  2053. isa = XCBuildConfiguration;
  2054. buildSettings = {
  2055. ALWAYS_SEARCH_USER_PATHS = NO;
  2056. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2057. CLANG_CXX_LIBRARY = "libc++";
  2058. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2059. CLANG_WARN_EMPTY_BODY = YES;
  2060. CLANG_WARN_ENUM_CONVERSION = YES;
  2061. CLANG_WARN_INT_CONVERSION = YES;
  2062. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2063. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2064. COPY_PHASE_STRIP = NO;
  2065. GCC_C_LANGUAGE_STANDARD = gnu99;
  2066. GCC_DYNAMIC_NO_PIC = NO;
  2067. GCC_OPTIMIZATION_LEVEL = 0;
  2068. GCC_PREPROCESSOR_DEFINITIONS = (
  2069. "DEBUG=1",
  2070. "$(inherited)",
  2071. );
  2072. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  2073. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2074. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2075. GCC_WARN_UNUSED_VARIABLE = YES;
  2076. IPHONEOS_DEPLOYMENT_TARGET = 5.1;
  2077. ONLY_ACTIVE_ARCH = YES;
  2078. SDKROOT = iphoneos;
  2079. TARGETED_DEVICE_FAMILY = "1,2";
  2080. };
  2081. name = Debug;
  2082. };
  2083. 7D94FD0916DE7D1100F2623B /* Release */ = {
  2084. isa = XCBuildConfiguration;
  2085. buildSettings = {
  2086. ALWAYS_SEARCH_USER_PATHS = NO;
  2087. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2088. CLANG_CXX_LIBRARY = "libc++";
  2089. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2090. CLANG_WARN_EMPTY_BODY = YES;
  2091. CLANG_WARN_ENUM_CONVERSION = YES;
  2092. CLANG_WARN_INT_CONVERSION = YES;
  2093. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2094. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2095. COPY_PHASE_STRIP = YES;
  2096. GCC_C_LANGUAGE_STANDARD = gnu99;
  2097. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2098. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2099. GCC_WARN_UNUSED_VARIABLE = YES;
  2100. IPHONEOS_DEPLOYMENT_TARGET = 5.1;
  2101. OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
  2102. SDKROOT = iphoneos;
  2103. TARGETED_DEVICE_FAMILY = "1,2";
  2104. VALIDATE_PRODUCT = YES;
  2105. };
  2106. name = Release;
  2107. };
  2108. 7D94FD0B16DE7D1100F2623B /* Debug */ = {
  2109. isa = XCBuildConfiguration;
  2110. buildSettings = {
  2111. CLANG_ENABLE_OBJC_ARC = YES;
  2112. COPY_PHASE_STRIP = NO;
  2113. DEAD_CODE_STRIPPING = NO;
  2114. EXCLUDED_SOURCE_FILE_NAMES = "";
  2115. FRAMEWORK_SEARCH_PATHS = (
  2116. "$(inherited)",
  2117. "\"$(SRCROOT)/ImportedSources/Dropbox\"",
  2118. );
  2119. GCC_C_LANGUAGE_STANDARD = c99;
  2120. GCC_OPTIMIZATION_LEVEL = 2;
  2121. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2122. GCC_PREFIX_HEADER = "AspenProject/VLC for iOS-Prefix.pch";
  2123. HEADER_SEARCH_PATHS = (
  2124. "$(SRCROOT)/External/MobileVLCKit/include",
  2125. "$(SRCROOT)/External/MediaLibraryKit/include",
  2126. "$(SRCROOT)/ImportedSources/upnpx/src/api",
  2127. "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
  2128. );
  2129. INFOPLIST_FILE = "AspenProject/VLC for iOS-Info.plist";
  2130. IPHONEOS_DEPLOYMENT_TARGET = 5.1;
  2131. LIBRARY_SEARCH_PATHS = (
  2132. "$(inherited)",
  2133. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2134. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2135. "\"$(SRCROOT)/External/upnpx\"",
  2136. "\"$(SDKROOT)/usr/lib/system\"",
  2137. );
  2138. ONLY_ACTIVE_ARCH = YES;
  2139. PRODUCT_NAME = "VLC for iOS";
  2140. };
  2141. name = Debug;
  2142. };
  2143. 7D94FD0C16DE7D1100F2623B /* Release */ = {
  2144. isa = XCBuildConfiguration;
  2145. buildSettings = {
  2146. CLANG_ENABLE_OBJC_ARC = YES;
  2147. CODE_SIGN_IDENTITY = "iPhone Distribution";
  2148. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
  2149. COPY_PHASE_STRIP = YES;
  2150. DEAD_CODE_STRIPPING = NO;
  2151. EXCLUDED_SOURCE_FILE_NAMES = "";
  2152. FRAMEWORK_SEARCH_PATHS = (
  2153. "$(inherited)",
  2154. "\"$(SRCROOT)/ImportedSources/Dropbox\"",
  2155. );
  2156. GCC_C_LANGUAGE_STANDARD = c99;
  2157. GCC_OPTIMIZATION_LEVEL = 3;
  2158. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2159. GCC_PREFIX_HEADER = "AspenProject/VLC for iOS-Prefix.pch";
  2160. HEADER_SEARCH_PATHS = (
  2161. "$(SRCROOT)/External/MobileVLCKit/include",
  2162. "$(SRCROOT)/External/MediaLibraryKit/include",
  2163. "$(SRCROOT)/ImportedSources/upnpx/src/api",
  2164. "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
  2165. );
  2166. INFOPLIST_FILE = "AspenProject/VLC for iOS-Info.plist";
  2167. IPHONEOS_DEPLOYMENT_TARGET = 5.1;
  2168. LIBRARY_SEARCH_PATHS = (
  2169. "$(inherited)",
  2170. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2171. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2172. "\"$(SRCROOT)/External/upnpx\"",
  2173. "\"$(SDKROOT)/usr/lib/system\"",
  2174. );
  2175. ONLY_ACTIVE_ARCH = NO;
  2176. PRODUCT_NAME = "VLC for iOS";
  2177. PROVISIONING_PROFILE = "";
  2178. "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
  2179. };
  2180. name = Release;
  2181. };
  2182. A7035BBF174519E40057DFA7 /* Distribution */ = {
  2183. isa = XCBuildConfiguration;
  2184. buildSettings = {
  2185. ALWAYS_SEARCH_USER_PATHS = NO;
  2186. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2187. CLANG_CXX_LIBRARY = "libc++";
  2188. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2189. CLANG_WARN_EMPTY_BODY = YES;
  2190. CLANG_WARN_ENUM_CONVERSION = YES;
  2191. CLANG_WARN_INT_CONVERSION = YES;
  2192. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2193. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2194. COPY_PHASE_STRIP = YES;
  2195. GCC_C_LANGUAGE_STANDARD = gnu99;
  2196. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2197. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2198. GCC_WARN_UNUSED_VARIABLE = YES;
  2199. IPHONEOS_DEPLOYMENT_TARGET = 5.1;
  2200. OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
  2201. SDKROOT = iphoneos;
  2202. TARGETED_DEVICE_FAMILY = "1,2";
  2203. VALIDATE_PRODUCT = YES;
  2204. };
  2205. name = Distribution;
  2206. };
  2207. A7035BC0174519E40057DFA7 /* Distribution */ = {
  2208. isa = XCBuildConfiguration;
  2209. buildSettings = {
  2210. CLANG_ENABLE_OBJC_ARC = YES;
  2211. CODE_SIGN_IDENTITY = "iPhone Distribution";
  2212. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
  2213. COPY_PHASE_STRIP = YES;
  2214. DEAD_CODE_STRIPPING = NO;
  2215. EXCLUDED_SOURCE_FILE_NAMES = "iTunesArtwork*";
  2216. FRAMEWORK_SEARCH_PATHS = (
  2217. "$(inherited)",
  2218. "\"$(SRCROOT)/ImportedSources/Dropbox\"",
  2219. );
  2220. GCC_C_LANGUAGE_STANDARD = c99;
  2221. GCC_OPTIMIZATION_LEVEL = 3;
  2222. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2223. GCC_PREFIX_HEADER = "AspenProject/VLC for iOS-Prefix.pch";
  2224. HEADER_SEARCH_PATHS = (
  2225. "$(SRCROOT)/External/MobileVLCKit/include",
  2226. "$(SRCROOT)/External/MediaLibraryKit/include",
  2227. "$(SRCROOT)/ImportedSources/upnpx/src/api",
  2228. "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
  2229. );
  2230. INFOPLIST_FILE = "AspenProject/VLC for iOS-Info.plist";
  2231. IPHONEOS_DEPLOYMENT_TARGET = 5.1;
  2232. LIBRARY_SEARCH_PATHS = (
  2233. "$(inherited)",
  2234. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2235. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2236. "\"$(SRCROOT)/External/upnpx\"",
  2237. "\"$(SDKROOT)/usr/lib/system\"",
  2238. );
  2239. ONLY_ACTIVE_ARCH = NO;
  2240. PRODUCT_NAME = "VLC for iOS";
  2241. PROVISIONING_PROFILE = "";
  2242. "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
  2243. };
  2244. name = Distribution;
  2245. };
  2246. /* End XCBuildConfiguration section */
  2247. /* Begin XCConfigurationList section */
  2248. 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */ = {
  2249. isa = XCConfigurationList;
  2250. buildConfigurations = (
  2251. 7D94FD0816DE7D1100F2623B /* Debug */,
  2252. 7D94FD0916DE7D1100F2623B /* Release */,
  2253. A7035BBF174519E40057DFA7 /* Distribution */,
  2254. );
  2255. defaultConfigurationIsVisible = 0;
  2256. defaultConfigurationName = Release;
  2257. };
  2258. 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */ = {
  2259. isa = XCConfigurationList;
  2260. buildConfigurations = (
  2261. 7D94FD0B16DE7D1100F2623B /* Debug */,
  2262. 7D94FD0C16DE7D1100F2623B /* Release */,
  2263. A7035BC0174519E40057DFA7 /* Distribution */,
  2264. );
  2265. defaultConfigurationIsVisible = 0;
  2266. defaultConfigurationName = Release;
  2267. };
  2268. /* End XCConfigurationList section */
  2269. };
  2270. rootObject = 7D94FCD316DE7D1000F2623B /* Project object */;
  2271. }