project.pbxproj 233 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583
  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. 7AC8629D1765DC560011611A /* style.css in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629B1765DC560011611A /* style.css */; };
  38. 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */; };
  39. 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629F1765E90C0011611A /* jquery.fileupload.js */; };
  40. 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */; };
  41. 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A11765E90C0011611A /* jquery.ui.widget.js */; };
  42. 7D00161C177056B700649F27 /* main.js in Resources */ = {isa = PBXBuildFile; fileRef = 7D00161A17704DAC00649F27 /* main.js */; };
  43. 7D0699D617CB1FAE00713BEB /* Settings@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C017CB1FAE00713BEB /* Settings@2x.png */; };
  44. 7D0699D717CB1FAE00713BEB /* TVShows.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C117CB1FAE00713BEB /* TVShows.png */; };
  45. 7D0699D817CB1FAE00713BEB /* TVShows@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C217CB1FAE00713BEB /* TVShows@2x.png */; };
  46. 7D0699D917CB1FAE00713BEB /* WifiUp.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C317CB1FAE00713BEB /* WifiUp.png */; };
  47. 7D0699DA17CB1FAE00713BEB /* WifiUp@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C417CB1FAE00713BEB /* WifiUp@2x.png */; };
  48. 7D0699DB17CB1FAE00713BEB /* WifiUpOn.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C517CB1FAE00713BEB /* WifiUpOn.png */; };
  49. 7D0699DC17CB1FAE00713BEB /* WifiUpOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C617CB1FAE00713BEB /* WifiUpOn@2x.png */; };
  50. 7D0699DD17CB1FAE00713BEB /* Dropbox@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C717CB1FAE00713BEB /* Dropbox@2x.png */; };
  51. 7D0699DE17CB1FAE00713BEB /* Local.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C817CB1FAE00713BEB /* Local.png */; };
  52. 7D0699DF17CB1FAE00713BEB /* Local@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C917CB1FAE00713BEB /* Local@2x.png */; };
  53. 7D0699E017CB1FAE00713BEB /* MusicAlbums.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CA17CB1FAE00713BEB /* MusicAlbums.png */; };
  54. 7D0699E117CB1FAE00713BEB /* MusicAlbums@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CB17CB1FAE00713BEB /* MusicAlbums@2x.png */; };
  55. 7D0699E217CB1FAE00713BEB /* OpenNetStream.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CC17CB1FAE00713BEB /* OpenNetStream.png */; };
  56. 7D0699E317CB1FAE00713BEB /* OpenNetStream@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CD17CB1FAE00713BEB /* OpenNetStream@2x.png */; };
  57. 7D0699E417CB1FAE00713BEB /* Settings.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CE17CB1FAE00713BEB /* Settings.png */; };
  58. 7D0699E517CB1FAE00713BEB /* About.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CF17CB1FAE00713BEB /* About.png */; };
  59. 7D0699E617CB1FAE00713BEB /* About@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D017CB1FAE00713BEB /* About@2x.png */; };
  60. 7D0699E717CB1FAE00713BEB /* AllFiles.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D117CB1FAE00713BEB /* AllFiles.png */; };
  61. 7D0699E817CB1FAE00713BEB /* AllFiles@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D217CB1FAE00713BEB /* AllFiles@2x.png */; };
  62. 7D0699E917CB1FAE00713BEB /* Downloads.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D317CB1FAE00713BEB /* Downloads.png */; };
  63. 7D0699EA17CB1FAE00713BEB /* Downloads@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D417CB1FAE00713BEB /* Downloads@2x.png */; };
  64. 7D0699EB17CB1FAE00713BEB /* Dropbox.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D517CB1FAE00713BEB /* Dropbox.png */; };
  65. 7D07F708175665ED00CDE21C /* navBarBackground@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */; };
  66. 7D07F709175665ED00CDE21C /* navBarBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F707175665ED00CDE21C /* navBarBackground.png */; };
  67. 7D07F70C175669A800CDE21C /* button.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70A175669A800CDE21C /* button.png */; };
  68. 7D07F70D175669A800CDE21C /* button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70B175669A800CDE21C /* button@2x.png */; };
  69. 7D07F710175669D800CDE21C /* buttonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70E175669D800CDE21C /* buttonHighlight.png */; };
  70. 7D07F711175669D800CDE21C /* buttonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */; };
  71. 7D07F71417566C4A00CDE21C /* menuCone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71217566C4A00CDE21C /* menuCone.png */; };
  72. 7D07F71517566C4A00CDE21C /* menuCone@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71317566C4A00CDE21C /* menuCone@2x.png */; };
  73. 7D07F71E175673D100CDE21C /* menuBtnBckHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */; };
  74. 7D07F71F175673D100CDE21C /* menuBtnBck@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */; };
  75. 7D07F720175673D100CDE21C /* menuBtnBckHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */; };
  76. 7D07F721175673D100CDE21C /* menuBtnBck.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71D175673D100CDE21C /* menuBtnBck.png */; };
  77. 7D07F726175688D300CDE21C /* doneButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F722175688D300CDE21C /* doneButton.png */; };
  78. 7D07F727175688D300CDE21C /* doneButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F723175688D300CDE21C /* doneButton@2x.png */; };
  79. 7D07F728175688D300CDE21C /* doneButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F724175688D300CDE21C /* doneButtonHighlight.png */; };
  80. 7D07F729175688D300CDE21C /* doneButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */; };
  81. 7D07F72E175691CC00CDE21C /* backButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72A175691CB00CDE21C /* backButton.png */; };
  82. 7D07F72F175691CC00CDE21C /* backButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72B175691CC00CDE21C /* backButton@2x.png */; };
  83. 7D07F730175691CC00CDE21C /* backButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */; };
  84. 7D07F731175691CC00CDE21C /* backButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */; };
  85. 7D16035D17BF9FE600F29B34 /* sudHeaderBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */; };
  86. 7D16035E17BF9FE600F29B34 /* sudHeaderBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */; };
  87. 7D16035F17BF9FE600F29B34 /* headerSidebar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */; };
  88. 7D16036017BF9FE600F29B34 /* headerSidebar.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035C17BF9FE600F29B34 /* headerSidebar.png */; };
  89. 7D1AC3041762996100BD2EB5 /* resetIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC3021762996100BD2EB5 /* resetIcon.png */; };
  90. 7D1AC3051762996100BD2EB5 /* resetIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */; };
  91. 7D1AC30817629AB600BD2EB5 /* ratioIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */; };
  92. 7D1AC30917629AB600BD2EB5 /* ratioIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */; };
  93. 7D1AC30C17629D4600BD2EB5 /* title.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30A17629D4600BD2EB5 /* title.png */; };
  94. 7D1AC30D17629D4600BD2EB5 /* title@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30B17629D4600BD2EB5 /* title@2x.png */; };
  95. 7D223E1A181EC56E00B36798 /* gradient-cell-ios7-ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D223E18181EC56E00B36798 /* gradient-cell-ios7-ipad.png */; };
  96. 7D223E1B181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D223E19181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png */; };
  97. 7D2A34A41805CDBA004078AA /* gradient-cell-ios7.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D2A34A21805CDBA004078AA /* gradient-cell-ios7.png */; };
  98. 7D2A34A51805CDBA004078AA /* gradient-cell-ios7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D2A34A31805CDBA004078AA /* gradient-cell-ios7@2x.png */; };
  99. 7D30F3C2183AB24C00FFC021 /* VLCHTTPConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */; };
  100. 7D30F3C3183AB24C00FFC021 /* VLCHTTPFileDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */; };
  101. 7D30F3C4183AB24C00FFC021 /* VLCHTTPUploaderController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */; };
  102. 7D30F3C7183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */; };
  103. 7D30F3CA183AB27A00FFC021 /* VLCDownloadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */; };
  104. 7D30F3CD183AB29300FFC021 /* VLCMenuTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */; };
  105. 7D30F3D0183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */; };
  106. 7D30F3D7183AB2F100FFC021 /* VLCLocalNetworkListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */; };
  107. 7D30F3D8183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */; };
  108. 7D30F3D9183AB2F100FFC021 /* VLCLocalServerListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */; };
  109. 7D30F3DC183AB2F900FFC021 /* VLCNetworkLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */; };
  110. 7D30F3DF183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */; };
  111. 7D30F3E2183AB33200FFC021 /* VLCSidebarViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */; };
  112. 7D30F3EA183AB34200FFC021 /* VLCGoogleDriveController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */; };
  113. 7D30F3EC183AB34200FFC021 /* VLCGoogleDriveTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */; };
  114. 7D31001D17B64AE100E6516D /* GHRevealViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D31001C17B64AE100E6516D /* GHRevealViewController.m */; };
  115. 7D31002017B6768B00E6516D /* libupnpx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D31001F17B6768B00E6516D /* libupnpx.a */; };
  116. 7D37848F183A98B6009EE944 /* VLCMovieViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */; };
  117. 7D378492183A98BF009EE944 /* VLCExternalDisplayController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */; };
  118. 7D378499183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */; };
  119. 7D37849A183A98D1009EE944 /* VLCPlaylistTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */; };
  120. 7D37849B183A98D1009EE944 /* VLCPlaylistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */; };
  121. 7D37849E183A98DD009EE944 /* VLCThumbnailsCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */; };
  122. 7D3784A1183A98EB009EE944 /* VLCBugreporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */; };
  123. 7D3784A6183A98F5009EE944 /* VLCAboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */; };
  124. 7D3784A7183A98F5009EE944 /* VLCSettingsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */; };
  125. 7D3784AD183A9906009EE944 /* VLCDropboxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784AA183A9906009EE944 /* VLCDropboxController.m */; };
  126. 7D3784AE183A9906009EE944 /* VLCDropboxTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */; };
  127. 7D3784BE183A9938009EE944 /* UIBarButtonItem+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */; };
  128. 7D3784BF183A9938009EE944 /* UINavigationController+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B5183A9938009EE944 /* UINavigationController+Theme.m */; };
  129. 7D3784C0183A9938009EE944 /* VLCLinearProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */; };
  130. 7D3784C1183A9938009EE944 /* VLCMenuButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B9183A9938009EE944 /* VLCMenuButton.m */; };
  131. 7D3784C2183A9938009EE944 /* VLCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784BB183A9938009EE944 /* VLCSlider.m */; };
  132. 7D3784C3183A9938009EE944 /* VLCStatusLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */; };
  133. 7D3784C8183A9972009EE944 /* NSString+SupportedMedia.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */; };
  134. 7D3784C9183A9972009EE944 /* UIDevice+SpeedCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784C7183A9972009EE944 /* UIDevice+SpeedCategory.m */; };
  135. 7D3784CC183A99BA009EE944 /* PAPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */; };
  136. 7D3784DF183A99D2009EE944 /* papasscode_background.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784D9183A99D2009EE944 /* papasscode_background.png */; };
  137. 7D3784E0183A99D2009EE944 /* papasscode_background@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DA183A99D2009EE944 /* papasscode_background@2x.png */; };
  138. 7D3784E1183A99D2009EE944 /* papasscode_failed_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DB183A99D2009EE944 /* papasscode_failed_bg.png */; };
  139. 7D3784E2183A99D2009EE944 /* papasscode_failed_bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DC183A99D2009EE944 /* papasscode_failed_bg@2x.png */; };
  140. 7D3784E3183A99D2009EE944 /* papasscode_marker.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DD183A99D2009EE944 /* papasscode_marker.png */; };
  141. 7D3784E4183A99D2009EE944 /* papasscode_marker@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DE183A99D2009EE944 /* papasscode_marker@2x.png */; };
  142. 7D3784E7183A99E1009EE944 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784E6183A99E1009EE944 /* Reachability.m */; };
  143. 7D3784E9183A9A15009EE944 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784E8183A9A15009EE944 /* main.m */; };
  144. 7D3784EC183A9A1E009EE944 /* VLC for iOS-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784EA183A9A1E009EE944 /* VLC for iOS-Info.plist */; };
  145. 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */; };
  146. 7D47D6F91760CD8700E86BAD /* subtitleIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */; };
  147. 7D47D6FA1760CD8700E86BAD /* subtitleIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */; };
  148. 7D47D6FB1760CD8700E86BAD /* videoEffectsIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */; };
  149. 7D47D6FC1760CD8700E86BAD /* videoEffectsIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */; };
  150. 7D47D6FD1760CD8700E86BAD /* seekbarBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */; };
  151. 7D47D6FE1760CD8700E86BAD /* slidermaximumTrack.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */; };
  152. 7D47D6FF1760CD8700E86BAD /* slidermaximumTrack@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */; };
  153. 7D47D7001760CD8700E86BAD /* slidermaxValue.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */; };
  154. 7D47D7011760CD8700E86BAD /* slidermaxValue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */; };
  155. 7D47D7021760CD8700E86BAD /* sliderminiValue.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */; };
  156. 7D47D7031760CD8700E86BAD /* sliderminiValue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */; };
  157. 7D47D7061760CD8700E86BAD /* speedIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D81760CD8700E86BAD /* speedIcon.png */; };
  158. 7D47D7071760CD8700E86BAD /* speedIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */; };
  159. 7D47D7081760CD8700E86BAD /* playbackControllerBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */; };
  160. 7D47D7091760CD8700E86BAD /* playbackDoneButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */; };
  161. 7D47D70A1760CD8700E86BAD /* playbackDoneButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */; };
  162. 7D47D70B1760CD8700E86BAD /* playbackDoneButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */; };
  163. 7D47D70C1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */; };
  164. 7D47D70D1760CD8700E86BAD /* ratioButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DF1760CD8700E86BAD /* ratioButton.png */; };
  165. 7D47D70E1760CD8700E86BAD /* ratioButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */; };
  166. 7D47D70F1760CD8700E86BAD /* ratioButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */; };
  167. 7D47D7101760CD8700E86BAD /* ratioButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */; };
  168. 7D47D7111760CD8700E86BAD /* seekbarBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E31760CD8700E86BAD /* seekbarBg.png */; };
  169. 7D47D7131760CD8700E86BAD /* forwardIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E51760CD8700E86BAD /* forwardIcon.png */; };
  170. 7D47D7141760CD8700E86BAD /* forwardIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */; };
  171. 7D47D7151760CD8700E86BAD /* knobSlider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E71760CD8700E86BAD /* knobSlider.png */; };
  172. 7D47D7161760CD8700E86BAD /* knobSlider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */; };
  173. 7D47D7191760CD8700E86BAD /* playbackControllerBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */; };
  174. 7D47D71A1760CD8700E86BAD /* playIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EC1760CD8700E86BAD /* playIcon.png */; };
  175. 7D47D71B1760CD8700E86BAD /* playIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */; };
  176. 7D47D71C1760CD8700E86BAD /* audioTrackIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */; };
  177. 7D47D71D1760CD8700E86BAD /* audioTrackIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */; };
  178. 7D47D71E1760CD8700E86BAD /* backIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F01760CD8700E86BAD /* backIcon.png */; };
  179. 7D47D71F1760CD8700E86BAD /* backIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */; };
  180. 7D47D7201760CD8700E86BAD /* ballSlider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F21760CD8700E86BAD /* ballSlider.png */; };
  181. 7D47D7211760CD8700E86BAD /* ballSlider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */; };
  182. 7D47D7271760D77C00E86BAD /* pauseIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7251760D77C00E86BAD /* pauseIcon.png */; };
  183. 7D47D7281760D77C00E86BAD /* pauseIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */; };
  184. 7D47D72B1760E3A000E86BAD /* sliderminimumTrack.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */; };
  185. 7D47D72C1760E3A000E86BAD /* sliderminimumTrack@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */; };
  186. 7D514D4117F779C6007B960C /* Drive@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D3D17F779C6007B960C /* Drive@2x.png */; };
  187. 7D514D4217F779C6007B960C /* DriveWhite.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D3E17F779C6007B960C /* DriveWhite.png */; };
  188. 7D514D4317F779C6007B960C /* DriveWhite@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D3F17F779C6007B960C /* DriveWhite@2x.png */; };
  189. 7D514D4417F779C6007B960C /* Drive.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D4017F779C6007B960C /* Drive.png */; };
  190. 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */ = {isa = PBXBuildFile; fileRef = 7D5DD5C617590ABF001421E3 /* About Contents.html */; };
  191. 7D5E39CA174FC2F3007DAFA1 /* dropbox-white.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */; };
  192. 7D5E39CB174FC2F3007DAFA1 /* dropbox-white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */; };
  193. 7D6B08C2174A831900A05173 /* vlc-xmas.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08C0174A831900A05173 /* vlc-xmas.png */; };
  194. 7D6B08C3174A831900A05173 /* vlc-xmas@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */; };
  195. 7D6B08EB174D65B500A05173 /* IASKAppSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */; };
  196. 7D6B08EC174D65B500A05173 /* IASKAppSettingsWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */; };
  197. 7D6B08ED174D65B500A05173 /* IASKSpecifierValuesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */; };
  198. 7D6B08EE174D65B500A05173 /* IASKSettingsReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */; };
  199. 7D6B08EF174D65B500A05173 /* IASKSettingsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */; };
  200. 7D6B08F0174D65B500A05173 /* IASKSettingsStoreFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */; };
  201. 7D6B08F1174D65B500A05173 /* IASKSettingsStoreUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */; };
  202. 7D6B08F2174D65B500A05173 /* IASKSpecifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */; };
  203. 7D6B08F3174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */; };
  204. 7D6B08F4174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */; };
  205. 7D6B08F5174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */; };
  206. 7D6B08F6174D65B500A05173 /* IASKSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E6174D65B500A05173 /* IASKSlider.m */; };
  207. 7D6B08F7174D65B500A05173 /* IASKSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E8174D65B500A05173 /* IASKSwitch.m */; };
  208. 7D6B08F8174D65B500A05173 /* IASKTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08EA174D65B500A05173 /* IASKTextField.m */; };
  209. 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D6B08F9174D716200A05173 /* MessageUI.framework */; };
  210. 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08FB174D773C00A05173 /* Settings.bundle */; };
  211. 7D6BD1841762026700AD311A /* thumbOverlayPhone@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */; };
  212. 7D6BD1851762026700AD311A /* thumbOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */; };
  213. 7D6BD1861762026700AD311A /* thumbOverlayPhone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */; };
  214. 7D6BD1871762026700AD311A /* thumbOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1831762026700AD311A /* thumbOverlay.png */; };
  215. 7D711ADA18227A490094E4F0 /* GTMOAuth2ViewTouch.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */; };
  216. 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCDE16DE7D1000F2623B /* UIKit.framework */; };
  217. 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE016DE7D1000F2623B /* Foundation.framework */; };
  218. 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */; };
  219. 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */; };
  220. 7DADC55F1704FABF001DAC63 /* OBSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DADC55E1704FABF001DAC63 /* OBSlider.m */; };
  221. 7DBBF182183AB3B80009A339 /* VLCAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */; };
  222. 7DBBF198183AB4300009A339 /* VLCAboutViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF183183AB4300009A339 /* VLCAboutViewController~ipad.xib */; };
  223. 7DBBF199183AB4300009A339 /* VLCAboutViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF184183AB4300009A339 /* VLCAboutViewController~iphone.xib */; };
  224. 7DBBF19A183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */; };
  225. 7DBBF19B183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */; };
  226. 7DBBF19C183AB4300009A339 /* VLCDownloadViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */; };
  227. 7DBBF19D183AB4300009A339 /* VLCCloudStorageTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */; };
  228. 7DBBF19E183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */; };
  229. 7DBBF19F183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */; };
  230. 7DBBF1A0183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */; };
  231. 7DBBF1A1183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */; };
  232. 7DBBF1A3183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */; };
  233. 7DBBF1A4183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */; };
  234. 7DBBF1A5183AB4300009A339 /* VLCMovieViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */; };
  235. 7DBBF1A6183AB4300009A339 /* VLCMovieViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */; };
  236. 7DBBF1A7183AB4300009A339 /* VLCNetworkLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */; };
  237. 7DBBF1A8183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */; };
  238. 7DBBF1A9183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */; };
  239. 7DBBF1AA183AB4300009A339 /* VLCPlaylistGridView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF195183AB4300009A339 /* VLCPlaylistGridView.xib */; };
  240. 7DBBF1AB183AB4300009A339 /* VLCPlaylistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */; };
  241. 7DBBF1AC183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */; };
  242. 7DC72D5E17B7E7C7008A26D0 /* download@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */; };
  243. 7DC72D5F17B7E7C7008A26D0 /* download.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5C17B7E7C7008A26D0 /* download.png */; };
  244. 7DC72D6017B7E7C7008A26D0 /* download@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */; };
  245. 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */; };
  246. 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */; };
  247. 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */; };
  248. 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */; };
  249. 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */; };
  250. 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */; };
  251. 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */; };
  252. 7DEB3B5D17647B240038FC70 /* bottomBlackBar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */; };
  253. 7DEB3B5E17647B240038FC70 /* bottomBlackBar.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */; };
  254. 7DEB3B6017647DE30038FC70 /* iTunesArtwork@2x in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */; };
  255. 7DEB3B6217647E230038FC70 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6117647E230038FC70 /* Icon@2x.png */; };
  256. 7DEB3B6417647E370038FC70 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6317647E370038FC70 /* Icon.png */; };
  257. 7DEB3B6617647E440038FC70 /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6517647E440038FC70 /* Icon-72.png */; };
  258. 7DEB3B6817647E480038FC70 /* Icon-72@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */; };
  259. 7DEB3B6D17647EC10038FC70 /* Icon-Small-50.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */; };
  260. 7DEB3B6E17647EC10038FC70 /* Icon-Small-50@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */; };
  261. 7DEB3B6F17647EC10038FC70 /* Icon-Small.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */; };
  262. 7DEB3B7017647EC10038FC70 /* Icon-Small@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */; };
  263. 7DEB3B7217649BEB0038FC70 /* Icon-512.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7117649BEB0038FC70 /* Icon-512.png */; };
  264. 7DEB3B7517649F2C0038FC70 /* menuButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7317649F2C0038FC70 /* menuButton.png */; };
  265. 7DEB3B7617649F2C0038FC70 /* menuButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */; };
  266. 7DEB3B791764A4040038FC70 /* input@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B771764A4040038FC70 /* input@2x.png */; };
  267. 7DEB3B7A1764A4040038FC70 /* input.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B781764A4040038FC70 /* input.png */; };
  268. 7DEB3B851764A4F40038FC70 /* movie@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */; };
  269. 7DEB3B861764A4F40038FC70 /* movie@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */; };
  270. 7DEB3B871764A4F40038FC70 /* blank@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */; };
  271. 7DEB3B881764A4F40038FC70 /* folder.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7F1764A4F40038FC70 /* folder.png */; };
  272. 7DEB3B891764A4F40038FC70 /* folder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B801764A4F40038FC70 /* folder@2x.png */; };
  273. 7DEB3B8A1764A4F40038FC70 /* folder@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B811764A4F40038FC70 /* folder@4x.png */; };
  274. 7DEB3B8B1764A4F40038FC70 /* movie.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B821764A4F40038FC70 /* movie.png */; };
  275. 7DEB3B8C1764A4F40038FC70 /* blank.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B831764A4F40038FC70 /* blank.png */; };
  276. 7DEB3B8D1764A4F40038FC70 /* blank@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B841764A4F40038FC70 /* blank@2x.png */; };
  277. 7DF1166C176CC69A009EC05C /* volumeballslider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF1166A176CC69A009EC05C /* volumeballslider.png */; };
  278. 7DF1166D176CC69A009EC05C /* volumeballslider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */; };
  279. 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */; };
  280. 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7E790175F47DC0018858D /* MediaPlayer.framework */; };
  281. 9B088308183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */; };
  282. 9B2E0CF417FB71E90098E3DF /* libGTLTouchStaticLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B2E0CF317FB71E80098E3DF /* libGTLTouchStaticLib.a */; };
  283. 9B5BEF2917FBAEA50016F9CB /* GTLDrive_Sources.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */; };
  284. 9BE4D1CE183D76950006346C /* VLCCloudStorageTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */; };
  285. A7035BBE174519600057DFA7 /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = A7035BBD174519600057DFA7 /* iTunesArtwork */; };
  286. A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */; };
  287. A79246A7170F0ED20036AAF2 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7924698170F0ED20036AAF2 /* Default-568h@2x.png */; };
  288. A79246A8170F0ED20036AAF2 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = A7924699170F0ED20036AAF2 /* Default.png */; };
  289. A79246A9170F0ED20036AAF2 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A792469A170F0ED20036AAF2 /* Default@2x.png */; };
  290. A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A79246C6170F11DF0036AAF2 /* Localizable.strings */; };
  291. A7990064176E9352009E8267 /* libraryBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = A7990063176E9352009E8267 /* libraryBackground.png */; };
  292. A7CB0DB11716F72600050CF3 /* PlayingExternally@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */; };
  293. A7CB0DB21716F72600050CF3 /* PlayingExternally~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */; };
  294. A7CB0DB31716F72600050CF3 /* PlayingExternally~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */; };
  295. A7CB0DB41716F72600050CF3 /* PlayingExternally@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */; };
  296. A7FF9F3E17428C1900999819 /* DeleteButton.png in Resources */ = {isa = PBXBuildFile; fileRef = A7FF9F3D17428C1900999819 /* DeleteButton.png */; };
  297. A7FF9F4017428C3800999819 /* DeleteButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */; };
  298. CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */; };
  299. CC1BBC431704935E00A20CBF /* MediaLibrary.mom in Resources */ = {isa = PBXBuildFile; fileRef = CC1BBC421704935E00A20CBF /* MediaLibrary.mom */; };
  300. CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC451704938300A20CBF /* libiconv.dylib */; };
  301. CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC471704938B00A20CBF /* libstdc++.dylib */; };
  302. CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */; };
  303. CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4D170493A300A20CBF /* libbz2.dylib */; };
  304. CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4F170493AA00A20CBF /* libxml2.dylib */; };
  305. CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC51170493B100A20CBF /* OpenGLES.framework */; };
  306. CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC53170493B800A20CBF /* AudioToolbox.framework */; };
  307. CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC55170493C100A20CBF /* QuartzCore.framework */; };
  308. CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC57170493E100A20CBF /* CoreData.framework */; };
  309. CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CCE2A22D17A5859E00D9EAAD /* CoreText.framework */; };
  310. /* End PBXBuildFile section */
  311. /* Begin PBXFileReference section */
  312. 29125E5417492219003F03E5 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
  313. 291553EA17490A1E00B86CAD /* DDData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDData.h; sourceTree = "<group>"; };
  314. 291553EB17490A1E00B86CAD /* DDData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDData.m; sourceTree = "<group>"; };
  315. 291553EC17490A1E00B86CAD /* DDNumber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDNumber.h; sourceTree = "<group>"; };
  316. 291553ED17490A1E00B86CAD /* DDNumber.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDNumber.m; sourceTree = "<group>"; };
  317. 291553EE17490A1E00B86CAD /* DDRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDRange.h; sourceTree = "<group>"; };
  318. 291553EF17490A1E00B86CAD /* DDRange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDRange.m; sourceTree = "<group>"; };
  319. 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPAuthenticationRequest.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.h; sourceTree = SOURCE_ROOT; };
  320. 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPAuthenticationRequest.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.m; sourceTree = SOURCE_ROOT; };
  321. 291553F217490A1E00B86CAD /* HTTPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPConnection.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.h; sourceTree = SOURCE_ROOT; };
  322. 291553F317490A1E00B86CAD /* HTTPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPConnection.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.m; sourceTree = SOURCE_ROOT; };
  323. 291553F417490A1E00B86CAD /* HTTPLogging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPLogging.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPLogging.h; sourceTree = SOURCE_ROOT; };
  324. 291553F517490A1E00B86CAD /* HTTPMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPMessage.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.h; sourceTree = SOURCE_ROOT; };
  325. 291553F617490A1E00B86CAD /* HTTPMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPMessage.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.m; sourceTree = SOURCE_ROOT; };
  326. 291553F717490A1E00B86CAD /* HTTPResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPResponse.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPResponse.h; sourceTree = SOURCE_ROOT; };
  327. 291553F817490A1E00B86CAD /* HTTPServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPServer.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.h; sourceTree = SOURCE_ROOT; };
  328. 291553F917490A1E00B86CAD /* HTTPServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPServer.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.m; sourceTree = SOURCE_ROOT; };
  329. 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartFormDataParser.h; sourceTree = "<group>"; };
  330. 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartFormDataParser.m; sourceTree = "<group>"; };
  331. 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeader.h; sourceTree = "<group>"; };
  332. 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeader.m; sourceTree = "<group>"; };
  333. 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeaderField.h; sourceTree = "<group>"; };
  334. 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeaderField.m; sourceTree = "<group>"; };
  335. 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCDAsyncSocket.h; sourceTree = "<group>"; };
  336. 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GCDAsyncSocket.m; sourceTree = "<group>"; };
  337. 2915541017490A9C00B86CAD /* About.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = About.txt; sourceTree = "<group>"; };
  338. 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDAbstractDatabaseLogger.h; sourceTree = "<group>"; };
  339. 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDAbstractDatabaseLogger.m; sourceTree = "<group>"; };
  340. 2915541317490A9C00B86CAD /* DDASLLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDASLLogger.h; sourceTree = "<group>"; };
  341. 2915541417490A9C00B86CAD /* DDASLLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDASLLogger.m; sourceTree = "<group>"; };
  342. 2915541517490A9C00B86CAD /* DDFileLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDFileLogger.h; sourceTree = "<group>"; };
  343. 2915541617490A9C00B86CAD /* DDFileLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDFileLogger.m; sourceTree = "<group>"; };
  344. 2915541717490A9C00B86CAD /* DDLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDLog.h; sourceTree = "<group>"; };
  345. 2915541817490A9C00B86CAD /* DDLog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDLog.m; sourceTree = "<group>"; };
  346. 2915541917490A9C00B86CAD /* DDTTYLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDTTYLogger.h; sourceTree = "<group>"; };
  347. 2915541A17490A9C00B86CAD /* DDTTYLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDTTYLogger.m; sourceTree = "<group>"; };
  348. 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContextFilterLogFormatter.h; sourceTree = "<group>"; };
  349. 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContextFilterLogFormatter.m; sourceTree = "<group>"; };
  350. 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DispatchQueueLogFormatter.h; sourceTree = "<group>"; };
  351. 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DispatchQueueLogFormatter.m; sourceTree = "<group>"; };
  352. 2915542017490A9C00B86CAD /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
  353. 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPAsyncFileResponse.h; sourceTree = "<group>"; };
  354. 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPAsyncFileResponse.m; sourceTree = "<group>"; };
  355. 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDataResponse.h; sourceTree = "<group>"; };
  356. 2915543017490B9C00B86CAD /* HTTPDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDataResponse.m; sourceTree = "<group>"; };
  357. 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDynamicFileResponse.h; sourceTree = "<group>"; };
  358. 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDynamicFileResponse.m; sourceTree = "<group>"; };
  359. 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPErrorResponse.h; sourceTree = "<group>"; };
  360. 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPErrorResponse.m; sourceTree = "<group>"; };
  361. 2915543517490B9C00B86CAD /* HTTPFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPFileResponse.h; sourceTree = "<group>"; };
  362. 2915543617490B9C00B86CAD /* HTTPFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPFileResponse.m; sourceTree = "<group>"; };
  363. 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPRedirectResponse.h; sourceTree = "<group>"; };
  364. 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPRedirectResponse.m; sourceTree = "<group>"; };
  365. 2915543917490B9C00B86CAD /* WebSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebSocket.h; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.h; sourceTree = SOURCE_ROOT; };
  366. 2915543A17490B9C00B86CAD /* WebSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebSocket.m; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.m; sourceTree = SOURCE_ROOT; };
  367. 2915544217490D4A00B86CAD /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  368. 7AC8629B1765DC560011611A /* style.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = style.css; sourceTree = "<group>"; };
  369. 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery-1.10.1.min.js"; sourceTree = "<group>"; };
  370. 7AC8629F1765E90C0011611A /* jquery.fileupload.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.fileupload.js; sourceTree = "<group>"; };
  371. 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery.iframe-transport.js"; sourceTree = "<group>"; };
  372. 7AC862A11765E90C0011611A /* jquery.ui.widget.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.ui.widget.js; sourceTree = "<group>"; };
  373. 7D00161A17704DAC00649F27 /* main.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = main.js; sourceTree = "<group>"; };
  374. 7D05ADEA174945CE0087550C /* DropboxSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropboxSDK.framework; path = ImportedSources/Dropbox/DropboxSDK.framework; sourceTree = "<group>"; };
  375. 7D0699C017CB1FAE00713BEB /* Settings@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Settings@2x.png"; sourceTree = "<group>"; };
  376. 7D0699C117CB1FAE00713BEB /* TVShows.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TVShows.png; sourceTree = "<group>"; };
  377. 7D0699C217CB1FAE00713BEB /* TVShows@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "TVShows@2x.png"; sourceTree = "<group>"; };
  378. 7D0699C317CB1FAE00713BEB /* WifiUp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WifiUp.png; sourceTree = "<group>"; };
  379. 7D0699C417CB1FAE00713BEB /* WifiUp@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WifiUp@2x.png"; sourceTree = "<group>"; };
  380. 7D0699C517CB1FAE00713BEB /* WifiUpOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WifiUpOn.png; sourceTree = "<group>"; };
  381. 7D0699C617CB1FAE00713BEB /* WifiUpOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WifiUpOn@2x.png"; sourceTree = "<group>"; };
  382. 7D0699C717CB1FAE00713BEB /* Dropbox@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Dropbox@2x.png"; sourceTree = "<group>"; };
  383. 7D0699C817CB1FAE00713BEB /* Local.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Local.png; sourceTree = "<group>"; };
  384. 7D0699C917CB1FAE00713BEB /* Local@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Local@2x.png"; sourceTree = "<group>"; };
  385. 7D0699CA17CB1FAE00713BEB /* MusicAlbums.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MusicAlbums.png; sourceTree = "<group>"; };
  386. 7D0699CB17CB1FAE00713BEB /* MusicAlbums@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "MusicAlbums@2x.png"; sourceTree = "<group>"; };
  387. 7D0699CC17CB1FAE00713BEB /* OpenNetStream.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = OpenNetStream.png; sourceTree = "<group>"; };
  388. 7D0699CD17CB1FAE00713BEB /* OpenNetStream@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "OpenNetStream@2x.png"; sourceTree = "<group>"; };
  389. 7D0699CE17CB1FAE00713BEB /* Settings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Settings.png; sourceTree = "<group>"; };
  390. 7D0699CF17CB1FAE00713BEB /* About.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = About.png; sourceTree = "<group>"; };
  391. 7D0699D017CB1FAE00713BEB /* About@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "About@2x.png"; sourceTree = "<group>"; };
  392. 7D0699D117CB1FAE00713BEB /* AllFiles.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AllFiles.png; sourceTree = "<group>"; };
  393. 7D0699D217CB1FAE00713BEB /* AllFiles@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AllFiles@2x.png"; sourceTree = "<group>"; };
  394. 7D0699D317CB1FAE00713BEB /* Downloads.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Downloads.png; sourceTree = "<group>"; };
  395. 7D0699D417CB1FAE00713BEB /* Downloads@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Downloads@2x.png"; sourceTree = "<group>"; };
  396. 7D0699D517CB1FAE00713BEB /* Dropbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Dropbox.png; sourceTree = "<group>"; };
  397. 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "navBarBackground@2x.png"; sourceTree = "<group>"; };
  398. 7D07F707175665ED00CDE21C /* navBarBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = navBarBackground.png; sourceTree = "<group>"; };
  399. 7D07F70A175669A800CDE21C /* button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button.png; sourceTree = "<group>"; };
  400. 7D07F70B175669A800CDE21C /* button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "button@2x.png"; sourceTree = "<group>"; };
  401. 7D07F70E175669D800CDE21C /* buttonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonHighlight.png; sourceTree = "<group>"; };
  402. 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "buttonHighlight@2x.png"; sourceTree = "<group>"; };
  403. 7D07F71217566C4A00CDE21C /* menuCone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuCone.png; sourceTree = "<group>"; };
  404. 7D07F71317566C4A00CDE21C /* menuCone@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuCone@2x.png"; sourceTree = "<group>"; };
  405. 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuBtnBckHighlight@2x.png"; sourceTree = "<group>"; };
  406. 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuBtnBck@2x.png"; sourceTree = "<group>"; };
  407. 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuBtnBckHighlight.png; sourceTree = "<group>"; };
  408. 7D07F71D175673D100CDE21C /* menuBtnBck.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuBtnBck.png; sourceTree = "<group>"; };
  409. 7D07F722175688D300CDE21C /* doneButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doneButton.png; sourceTree = "<group>"; };
  410. 7D07F723175688D300CDE21C /* doneButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doneButton@2x.png"; sourceTree = "<group>"; };
  411. 7D07F724175688D300CDE21C /* doneButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doneButtonHighlight.png; sourceTree = "<group>"; };
  412. 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doneButtonHighlight@2x.png"; sourceTree = "<group>"; };
  413. 7D07F72A175691CB00CDE21C /* backButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backButton.png; sourceTree = "<group>"; };
  414. 7D07F72B175691CC00CDE21C /* backButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backButton@2x.png"; sourceTree = "<group>"; };
  415. 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backButtonHighlight.png; sourceTree = "<group>"; };
  416. 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backButtonHighlight@2x.png"; sourceTree = "<group>"; };
  417. 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sudHeaderBg.png; sourceTree = "<group>"; };
  418. 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sudHeaderBg@2x.png"; sourceTree = "<group>"; };
  419. 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "headerSidebar@2x.png"; sourceTree = "<group>"; };
  420. 7D16035C17BF9FE600F29B34 /* headerSidebar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = headerSidebar.png; sourceTree = "<group>"; };
  421. 7D19492B17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
  422. 7D19492C17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  423. 7D19492D17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  424. 7D19492E17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  425. 7D19492F17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  426. 7D1AB27C179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  427. 7D1AB27D179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  428. 7D1AB27E179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  429. 7D1AB27F179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  430. 7D1AB280179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  431. 7D1AB281179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  432. 7D1AB282179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  433. 7D1AB283179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  434. 7D1AB284179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  435. 7D1AB285179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  436. 7D1AB286179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
  437. 7D1AB287179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  438. 7D1AB288179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  439. 7D1AB289179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  440. 7D1AB28A179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  441. 7D1AB28B179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  442. 7D1AB28C179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  443. 7D1AB28D179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  444. 7D1AB28E179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  445. 7D1AB28F179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  446. 7D1AB290179C98E3004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  447. 7D1AB291179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  448. 7D1AB292179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  449. 7D1AB293179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  450. 7D1AB294179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  451. 7D1AB295179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
  452. 7D1AB296179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  453. 7D1AB297179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  454. 7D1AB298179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  455. 7D1AB299179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  456. 7D1AB2A4179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  457. 7D1AB2A5179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  458. 7D1AB2A6179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  459. 7D1AB2A7179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  460. 7D1AB2A8179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  461. 7D1AC3021762996100BD2EB5 /* resetIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = resetIcon.png; sourceTree = "<group>"; };
  462. 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "resetIcon@2x.png"; sourceTree = "<group>"; };
  463. 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioIcon.png; sourceTree = "<group>"; };
  464. 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioIcon@2x.png"; sourceTree = "<group>"; };
  465. 7D1AC30A17629D4600BD2EB5 /* title.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = title.png; sourceTree = "<group>"; };
  466. 7D1AC30B17629D4600BD2EB5 /* title@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "title@2x.png"; sourceTree = "<group>"; };
  467. 7D223E18181EC56E00B36798 /* gradient-cell-ios7-ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7-ipad.png"; sourceTree = "<group>"; };
  468. 7D223E19181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7-ipad@2x.png"; sourceTree = "<group>"; };
  469. 7D2A34A21805CDBA004078AA /* gradient-cell-ios7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7.png"; sourceTree = "<group>"; };
  470. 7D2A34A31805CDBA004078AA /* gradient-cell-ios7@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7@2x.png"; sourceTree = "<group>"; };
  471. 7D2AEDE017FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  472. 7D2AEDE117FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  473. 7D2AEDE217FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  474. 7D2AEDE317FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  475. 7D2AEDE417FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  476. 7D2AEDE517FB785100B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  477. 7D2AEDE617FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  478. 7D2AEDE717FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  479. 7D2AEDE817FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  480. 7D2AEDE917FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  481. 7D30F3BC183AB24C00FFC021 /* VLCHTTPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPConnection.h; path = Sources/VLCHTTPConnection.h; sourceTree = SOURCE_ROOT; };
  482. 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPConnection.m; path = Sources/VLCHTTPConnection.m; sourceTree = SOURCE_ROOT; };
  483. 7D30F3BE183AB24C00FFC021 /* VLCHTTPFileDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPFileDownloader.h; path = Sources/VLCHTTPFileDownloader.h; sourceTree = SOURCE_ROOT; };
  484. 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPFileDownloader.m; path = Sources/VLCHTTPFileDownloader.m; sourceTree = SOURCE_ROOT; };
  485. 7D30F3C0183AB24C00FFC021 /* VLCHTTPUploaderController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPUploaderController.h; path = Sources/VLCHTTPUploaderController.h; sourceTree = SOURCE_ROOT; };
  486. 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPUploaderController.m; path = Sources/VLCHTTPUploaderController.m; sourceTree = SOURCE_ROOT; };
  487. 7D30F3C5183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCOpenNetworkStreamViewController.h; path = Sources/VLCOpenNetworkStreamViewController.h; sourceTree = SOURCE_ROOT; };
  488. 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCOpenNetworkStreamViewController.m; path = Sources/VLCOpenNetworkStreamViewController.m; sourceTree = SOURCE_ROOT; };
  489. 7D30F3C8183AB27A00FFC021 /* VLCDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDownloadViewController.h; path = Sources/VLCDownloadViewController.h; sourceTree = SOURCE_ROOT; };
  490. 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDownloadViewController.m; path = Sources/VLCDownloadViewController.m; sourceTree = SOURCE_ROOT; };
  491. 7D30F3CB183AB29300FFC021 /* VLCMenuTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMenuTableViewController.h; path = Sources/VLCMenuTableViewController.h; sourceTree = SOURCE_ROOT; };
  492. 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMenuTableViewController.m; path = Sources/VLCMenuTableViewController.m; sourceTree = SOURCE_ROOT; };
  493. 7D30F3CE183AB2AC00FFC021 /* VLCMediaFileDiscoverer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMediaFileDiscoverer.h; path = Sources/VLCMediaFileDiscoverer.h; sourceTree = SOURCE_ROOT; };
  494. 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMediaFileDiscoverer.m; path = Sources/VLCMediaFileDiscoverer.m; sourceTree = SOURCE_ROOT; };
  495. 7D30F3D1183AB2F100FFC021 /* VLCLocalNetworkListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalNetworkListCell.h; path = Sources/VLCLocalNetworkListCell.h; sourceTree = SOURCE_ROOT; };
  496. 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalNetworkListCell.m; path = Sources/VLCLocalNetworkListCell.m; sourceTree = SOURCE_ROOT; };
  497. 7D30F3D3183AB2F100FFC021 /* VLCLocalServerFolderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalServerFolderListViewController.h; path = Sources/VLCLocalServerFolderListViewController.h; sourceTree = SOURCE_ROOT; };
  498. 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalServerFolderListViewController.m; path = Sources/VLCLocalServerFolderListViewController.m; sourceTree = SOURCE_ROOT; };
  499. 7D30F3D5183AB2F100FFC021 /* VLCLocalServerListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalServerListViewController.h; path = Sources/VLCLocalServerListViewController.h; sourceTree = SOURCE_ROOT; };
  500. 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalServerListViewController.m; path = Sources/VLCLocalServerListViewController.m; sourceTree = SOURCE_ROOT; };
  501. 7D30F3DA183AB2F900FFC021 /* VLCNetworkLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCNetworkLoginViewController.h; path = Sources/VLCNetworkLoginViewController.h; sourceTree = SOURCE_ROOT; };
  502. 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCNetworkLoginViewController.m; path = Sources/VLCNetworkLoginViewController.m; sourceTree = SOURCE_ROOT; };
  503. 7D30F3DD183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCWiFiUploadTableViewCell.h; path = Sources/VLCWiFiUploadTableViewCell.h; sourceTree = SOURCE_ROOT; };
  504. 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCWiFiUploadTableViewCell.m; path = Sources/VLCWiFiUploadTableViewCell.m; sourceTree = SOURCE_ROOT; };
  505. 7D30F3E0183AB33200FFC021 /* VLCSidebarViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSidebarViewCell.h; path = Sources/VLCSidebarViewCell.h; sourceTree = SOURCE_ROOT; };
  506. 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSidebarViewCell.m; path = Sources/VLCSidebarViewCell.m; sourceTree = SOURCE_ROOT; };
  507. 7D30F3E3183AB34200FFC021 /* VLCGoogleDriveConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveConstants.h; path = Sources/VLCGoogleDriveConstants.h; sourceTree = SOURCE_ROOT; };
  508. 7D30F3E4183AB34200FFC021 /* VLCGoogleDriveController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveController.h; path = Sources/VLCGoogleDriveController.h; sourceTree = SOURCE_ROOT; };
  509. 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCGoogleDriveController.m; path = Sources/VLCGoogleDriveController.m; sourceTree = SOURCE_ROOT; };
  510. 7D30F3E8183AB34200FFC021 /* VLCGoogleDriveTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveTableViewController.h; path = Sources/VLCGoogleDriveTableViewController.h; sourceTree = SOURCE_ROOT; };
  511. 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCGoogleDriveTableViewController.m; path = Sources/VLCGoogleDriveTableViewController.m; sourceTree = SOURCE_ROOT; };
  512. 7D31001B17B64AE100E6516D /* GHRevealViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHRevealViewController.h; path = ImportedSources/GHSidebarNav/GHSidebarNav/GHRevealViewController.h; sourceTree = SOURCE_ROOT; };
  513. 7D31001C17B64AE100E6516D /* GHRevealViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GHRevealViewController.m; path = ImportedSources/GHSidebarNav/GHSidebarNav/GHRevealViewController.m; sourceTree = SOURCE_ROOT; };
  514. 7D31001F17B6768B00E6516D /* libupnpx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libupnpx.a; path = External/upnpx/libupnpx.a; sourceTree = "<group>"; };
  515. 7D37848D183A98B6009EE944 /* VLCMovieViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMovieViewController.h; path = Sources/VLCMovieViewController.h; sourceTree = SOURCE_ROOT; };
  516. 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMovieViewController.m; path = Sources/VLCMovieViewController.m; sourceTree = SOURCE_ROOT; };
  517. 7D378490183A98BF009EE944 /* VLCExternalDisplayController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCExternalDisplayController.h; path = Sources/VLCExternalDisplayController.h; sourceTree = SOURCE_ROOT; };
  518. 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCExternalDisplayController.m; path = Sources/VLCExternalDisplayController.m; sourceTree = SOURCE_ROOT; };
  519. 7D378493183A98D1009EE944 /* VLCPlaylistCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistCollectionViewCell.h; path = Sources/VLCPlaylistCollectionViewCell.h; sourceTree = SOURCE_ROOT; };
  520. 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistCollectionViewCell.m; path = Sources/VLCPlaylistCollectionViewCell.m; sourceTree = SOURCE_ROOT; };
  521. 7D378495183A98D1009EE944 /* VLCPlaylistTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistTableViewCell.h; path = Sources/VLCPlaylistTableViewCell.h; sourceTree = SOURCE_ROOT; };
  522. 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistTableViewCell.m; path = Sources/VLCPlaylistTableViewCell.m; sourceTree = SOURCE_ROOT; };
  523. 7D378497183A98D1009EE944 /* VLCPlaylistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistViewController.h; path = Sources/VLCPlaylistViewController.h; sourceTree = SOURCE_ROOT; };
  524. 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistViewController.m; path = Sources/VLCPlaylistViewController.m; sourceTree = SOURCE_ROOT; };
  525. 7D37849C183A98DD009EE944 /* VLCThumbnailsCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCThumbnailsCache.h; path = Sources/VLCThumbnailsCache.h; sourceTree = SOURCE_ROOT; };
  526. 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCThumbnailsCache.m; path = Sources/VLCThumbnailsCache.m; sourceTree = SOURCE_ROOT; };
  527. 7D37849F183A98EB009EE944 /* VLCBugreporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCBugreporter.h; path = Sources/VLCBugreporter.h; sourceTree = SOURCE_ROOT; };
  528. 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCBugreporter.m; path = Sources/VLCBugreporter.m; sourceTree = SOURCE_ROOT; };
  529. 7D3784A2183A98F5009EE944 /* VLCAboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCAboutViewController.h; path = Sources/VLCAboutViewController.h; sourceTree = SOURCE_ROOT; };
  530. 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCAboutViewController.m; path = Sources/VLCAboutViewController.m; sourceTree = SOURCE_ROOT; };
  531. 7D3784A4183A98F5009EE944 /* VLCSettingsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSettingsController.h; path = Sources/VLCSettingsController.h; sourceTree = SOURCE_ROOT; };
  532. 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSettingsController.m; path = Sources/VLCSettingsController.m; sourceTree = SOURCE_ROOT; };
  533. 7D3784A8183A9906009EE944 /* VLCDropboxConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxConstants.h; path = Sources/VLCDropboxConstants.h; sourceTree = SOURCE_ROOT; };
  534. 7D3784A9183A9906009EE944 /* VLCDropboxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxController.h; path = Sources/VLCDropboxController.h; sourceTree = SOURCE_ROOT; };
  535. 7D3784AA183A9906009EE944 /* VLCDropboxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDropboxController.m; path = Sources/VLCDropboxController.m; sourceTree = SOURCE_ROOT; };
  536. 7D3784AB183A9906009EE944 /* VLCDropboxTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxTableViewController.h; path = Sources/VLCDropboxTableViewController.h; sourceTree = SOURCE_ROOT; };
  537. 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDropboxTableViewController.m; path = Sources/VLCDropboxTableViewController.m; sourceTree = SOURCE_ROOT; };
  538. 7D3784AF183A990F009EE944 /* VLCCloudStorageTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudStorageTableViewCell.h; path = Sources/VLCCloudStorageTableViewCell.h; sourceTree = SOURCE_ROOT; };
  539. 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudStorageTableViewCell.m; path = Sources/VLCCloudStorageTableViewCell.m; sourceTree = SOURCE_ROOT; };
  540. 7D3784B2183A9938009EE944 /* UIBarButtonItem+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+Theme.h"; path = "Sources/UIBarButtonItem+Theme.h"; sourceTree = SOURCE_ROOT; };
  541. 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+Theme.m"; path = "Sources/UIBarButtonItem+Theme.m"; sourceTree = SOURCE_ROOT; };
  542. 7D3784B4183A9938009EE944 /* UINavigationController+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+Theme.h"; path = "Sources/UINavigationController+Theme.h"; sourceTree = SOURCE_ROOT; };
  543. 7D3784B5183A9938009EE944 /* UINavigationController+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+Theme.m"; path = "Sources/UINavigationController+Theme.m"; sourceTree = SOURCE_ROOT; };
  544. 7D3784B6183A9938009EE944 /* VLCLinearProgressIndicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLinearProgressIndicator.h; path = Sources/VLCLinearProgressIndicator.h; sourceTree = SOURCE_ROOT; };
  545. 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLinearProgressIndicator.m; path = Sources/VLCLinearProgressIndicator.m; sourceTree = SOURCE_ROOT; };
  546. 7D3784B8183A9938009EE944 /* VLCMenuButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMenuButton.h; path = Sources/VLCMenuButton.h; sourceTree = SOURCE_ROOT; };
  547. 7D3784B9183A9938009EE944 /* VLCMenuButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMenuButton.m; path = Sources/VLCMenuButton.m; sourceTree = SOURCE_ROOT; };
  548. 7D3784BA183A9938009EE944 /* VLCSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSlider.h; path = Sources/VLCSlider.h; sourceTree = SOURCE_ROOT; };
  549. 7D3784BB183A9938009EE944 /* VLCSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSlider.m; path = Sources/VLCSlider.m; sourceTree = SOURCE_ROOT; };
  550. 7D3784BC183A9938009EE944 /* VLCStatusLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCStatusLabel.h; path = Sources/VLCStatusLabel.h; sourceTree = SOURCE_ROOT; };
  551. 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCStatusLabel.m; path = Sources/VLCStatusLabel.m; sourceTree = SOURCE_ROOT; };
  552. 7D3784C4183A9972009EE944 /* NSString+SupportedMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+SupportedMedia.h"; path = "Sources/NSString+SupportedMedia.h"; sourceTree = SOURCE_ROOT; };
  553. 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+SupportedMedia.m"; path = "Sources/NSString+SupportedMedia.m"; sourceTree = SOURCE_ROOT; };
  554. 7D3784C6183A9972009EE944 /* UIDevice+SpeedCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIDevice+SpeedCategory.h"; path = "Sources/UIDevice+SpeedCategory.h"; sourceTree = SOURCE_ROOT; };
  555. 7D3784C7183A9972009EE944 /* UIDevice+SpeedCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIDevice+SpeedCategory.m"; path = "Sources/UIDevice+SpeedCategory.m"; sourceTree = SOURCE_ROOT; };
  556. 7D3784CA183A99BA009EE944 /* PAPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PAPasscodeViewController.h; path = PAPasscode/PAPasscodeViewController.h; sourceTree = SOURCE_ROOT; };
  557. 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PAPasscodeViewController.m; path = PAPasscode/PAPasscodeViewController.m; sourceTree = SOURCE_ROOT; };
  558. 7D3784D9183A99D2009EE944 /* papasscode_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_background.png; sourceTree = "<group>"; };
  559. 7D3784DA183A99D2009EE944 /* papasscode_background@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_background@2x.png"; sourceTree = "<group>"; };
  560. 7D3784DB183A99D2009EE944 /* papasscode_failed_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_failed_bg.png; sourceTree = "<group>"; };
  561. 7D3784DC183A99D2009EE944 /* papasscode_failed_bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_failed_bg@2x.png"; sourceTree = "<group>"; };
  562. 7D3784DD183A99D2009EE944 /* papasscode_marker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_marker.png; sourceTree = "<group>"; };
  563. 7D3784DE183A99D2009EE944 /* papasscode_marker@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_marker@2x.png"; sourceTree = "<group>"; };
  564. 7D3784E5183A99E1009EE944 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = Sources/Reachability.h; sourceTree = SOURCE_ROOT; };
  565. 7D3784E6183A99E1009EE944 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = Sources/Reachability.m; sourceTree = SOURCE_ROOT; };
  566. 7D3784E8183A9A15009EE944 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Sources/main.m; sourceTree = SOURCE_ROOT; };
  567. 7D3784EA183A9A1E009EE944 /* VLC for iOS-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "VLC for iOS-Info.plist"; path = "Sources/VLC for iOS-Info.plist"; sourceTree = SOURCE_ROOT; };
  568. 7D3784EB183A9A1E009EE944 /* VLC for iOS-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "VLC for iOS-Prefix.pch"; path = "Sources/VLC for iOS-Prefix.pch"; sourceTree = SOURCE_ROOT; };
  569. 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  570. 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = subtitleIcon.png; sourceTree = "<group>"; };
  571. 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "subtitleIcon@2x.png"; sourceTree = "<group>"; };
  572. 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = videoEffectsIcon.png; sourceTree = "<group>"; };
  573. 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "videoEffectsIcon@2x.png"; sourceTree = "<group>"; };
  574. 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seekbarBg@2x.png"; sourceTree = "<group>"; };
  575. 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slidermaximumTrack.png; sourceTree = "<group>"; };
  576. 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "slidermaximumTrack@2x.png"; sourceTree = "<group>"; };
  577. 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slidermaxValue.png; sourceTree = "<group>"; };
  578. 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "slidermaxValue@2x.png"; sourceTree = "<group>"; };
  579. 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sliderminiValue.png; sourceTree = "<group>"; };
  580. 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sliderminiValue@2x.png"; sourceTree = "<group>"; };
  581. 7D47D6D81760CD8700E86BAD /* speedIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = speedIcon.png; sourceTree = "<group>"; };
  582. 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "speedIcon@2x.png"; sourceTree = "<group>"; };
  583. 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackControllerBg@2x.png"; sourceTree = "<group>"; };
  584. 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackDoneButton.png; sourceTree = "<group>"; };
  585. 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackDoneButton@2x.png"; sourceTree = "<group>"; };
  586. 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackDoneButtonHighlight.png; sourceTree = "<group>"; };
  587. 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackDoneButtonHighlight@2x.png"; sourceTree = "<group>"; };
  588. 7D47D6DF1760CD8700E86BAD /* ratioButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioButton.png; sourceTree = "<group>"; };
  589. 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioButton@2x.png"; sourceTree = "<group>"; };
  590. 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioButtonHighlight.png; sourceTree = "<group>"; };
  591. 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioButtonHighlight@2x.png"; sourceTree = "<group>"; };
  592. 7D47D6E31760CD8700E86BAD /* seekbarBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = seekbarBg.png; sourceTree = "<group>"; };
  593. 7D47D6E51760CD8700E86BAD /* forwardIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = forwardIcon.png; sourceTree = "<group>"; };
  594. 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "forwardIcon@2x.png"; sourceTree = "<group>"; };
  595. 7D47D6E71760CD8700E86BAD /* knobSlider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = knobSlider.png; sourceTree = "<group>"; };
  596. 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "knobSlider@2x.png"; sourceTree = "<group>"; };
  597. 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackControllerBg.png; sourceTree = "<group>"; };
  598. 7D47D6EC1760CD8700E86BAD /* playIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playIcon.png; sourceTree = "<group>"; };
  599. 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playIcon@2x.png"; sourceTree = "<group>"; };
  600. 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = audioTrackIcon.png; sourceTree = "<group>"; };
  601. 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "audioTrackIcon@2x.png"; sourceTree = "<group>"; };
  602. 7D47D6F01760CD8700E86BAD /* backIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backIcon.png; sourceTree = "<group>"; };
  603. 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backIcon@2x.png"; sourceTree = "<group>"; };
  604. 7D47D6F21760CD8700E86BAD /* ballSlider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ballSlider.png; sourceTree = "<group>"; };
  605. 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ballSlider@2x.png"; sourceTree = "<group>"; };
  606. 7D47D7251760D77C00E86BAD /* pauseIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pauseIcon.png; sourceTree = "<group>"; };
  607. 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pauseIcon@2x.png"; sourceTree = "<group>"; };
  608. 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sliderminimumTrack.png; sourceTree = "<group>"; };
  609. 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sliderminimumTrack@2x.png"; sourceTree = "<group>"; };
  610. 7D49E178175A47A4002D1450 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
  611. 7D4BE733175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  612. 7D4BE734175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  613. 7D4BE735175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  614. 7D4BE736175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  615. 7D4BE737175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  616. 7D4C484417ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/Localizable.strings; sourceTree = "<group>"; };
  617. 7D4C484517ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  618. 7D4C484617ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  619. 7D4C484717ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  620. 7D4C484817ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  621. 7D514D3D17F779C6007B960C /* Drive@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Drive@2x.png"; sourceTree = "<group>"; };
  622. 7D514D3E17F779C6007B960C /* DriveWhite.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DriveWhite.png; sourceTree = "<group>"; };
  623. 7D514D3F17F779C6007B960C /* DriveWhite@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DriveWhite@2x.png"; sourceTree = "<group>"; };
  624. 7D514D4017F779C6007B960C /* Drive.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Drive.png; sourceTree = "<group>"; };
  625. 7D5C204917999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  626. 7D5C204A17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  627. 7D5C204B17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  628. 7D5C204C17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  629. 7D5C204D17999A74004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  630. 7D5DD5C617590ABF001421E3 /* About Contents.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "About Contents.html"; sourceTree = "<group>"; };
  631. 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropbox-white.png"; sourceTree = "<group>"; };
  632. 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropbox-white@2x.png"; sourceTree = "<group>"; };
  633. 7D6B08BB174A72A900A05173 /* VLCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCConstants.h; path = Sources/VLCConstants.h; sourceTree = "<group>"; };
  634. 7D6B08C0174A831900A05173 /* vlc-xmas.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "vlc-xmas.png"; sourceTree = "<group>"; };
  635. 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "vlc-xmas@2x.png"; sourceTree = "<group>"; };
  636. 7D6B08CC174D65B500A05173 /* IASKAppSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsViewController.h; sourceTree = "<group>"; };
  637. 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsViewController.m; sourceTree = "<group>"; };
  638. 7D6B08CE174D65B500A05173 /* IASKAppSettingsWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsWebViewController.h; sourceTree = "<group>"; };
  639. 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsWebViewController.m; sourceTree = "<group>"; };
  640. 7D6B08D0174D65B500A05173 /* IASKSpecifierValuesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifierValuesViewController.h; sourceTree = "<group>"; };
  641. 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifierValuesViewController.m; sourceTree = "<group>"; };
  642. 7D6B08D2174D65B500A05173 /* IASKViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKViewController.h; sourceTree = "<group>"; };
  643. 7D6B08D4174D65B500A05173 /* IASKSettingsReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsReader.h; sourceTree = "<group>"; };
  644. 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsReader.m; sourceTree = "<group>"; };
  645. 7D6B08D6174D65B500A05173 /* IASKSettingsStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStore.h; sourceTree = "<group>"; };
  646. 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStore.m; sourceTree = "<group>"; };
  647. 7D6B08D8174D65B500A05173 /* IASKSettingsStoreFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreFile.h; sourceTree = "<group>"; };
  648. 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreFile.m; sourceTree = "<group>"; };
  649. 7D6B08DA174D65B500A05173 /* IASKSettingsStoreUserDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreUserDefaults.h; sourceTree = "<group>"; };
  650. 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreUserDefaults.m; sourceTree = "<group>"; };
  651. 7D6B08DC174D65B500A05173 /* IASKSpecifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifier.h; sourceTree = "<group>"; };
  652. 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifier.m; sourceTree = "<group>"; };
  653. 7D6B08DF174D65B500A05173 /* IASKPSSliderSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSSliderSpecifierViewCell.h; sourceTree = "<group>"; };
  654. 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSSliderSpecifierViewCell.m; sourceTree = "<group>"; };
  655. 7D6B08E1174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTextFieldSpecifierViewCell.h; sourceTree = "<group>"; };
  656. 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTextFieldSpecifierViewCell.m; sourceTree = "<group>"; };
  657. 7D6B08E3174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTitleValueSpecifierViewCell.h; sourceTree = "<group>"; };
  658. 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTitleValueSpecifierViewCell.m; sourceTree = "<group>"; };
  659. 7D6B08E5174D65B500A05173 /* IASKSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSlider.h; sourceTree = "<group>"; };
  660. 7D6B08E6174D65B500A05173 /* IASKSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSlider.m; sourceTree = "<group>"; };
  661. 7D6B08E7174D65B500A05173 /* IASKSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSwitch.h; sourceTree = "<group>"; };
  662. 7D6B08E8174D65B500A05173 /* IASKSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSwitch.m; sourceTree = "<group>"; };
  663. 7D6B08E9174D65B500A05173 /* IASKTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKTextField.h; sourceTree = "<group>"; };
  664. 7D6B08EA174D65B500A05173 /* IASKTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKTextField.m; sourceTree = "<group>"; };
  665. 7D6B08F9174D716200A05173 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
  666. 7D6B08FB174D773C00A05173 /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Settings.bundle; path = Resources/Settings.bundle; sourceTree = SOURCE_ROOT; };
  667. 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "thumbOverlayPhone@2x.png"; sourceTree = "<group>"; };
  668. 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "thumbOverlay@2x.png"; sourceTree = "<group>"; };
  669. 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumbOverlayPhone.png; sourceTree = "<group>"; };
  670. 7D6BD1831762026700AD311A /* thumbOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumbOverlay.png; sourceTree = "<group>"; };
  671. 7D6D13591758D1A00007EA9A /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  672. 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = GTMOAuth2ViewTouch.xib; path = ImportedSources/GDrive/OAuth2/Touch/GTMOAuth2ViewTouch.xib; sourceTree = SOURCE_ROOT; };
  673. 7D7DA52F1768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = "<group>"; };
  674. 7D7DA5301768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  675. 7D7DA5311768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  676. 7D7DA5321768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  677. 7D7DA5331768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  678. 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "VLC for iOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  679. 7D94FCDE16DE7D1000F2623B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  680. 7D94FCE016DE7D1000F2623B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  681. 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  682. 7D9B6B0817C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Localizable.strings; sourceTree = "<group>"; };
  683. 7D9B6B0917C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  684. 7D9B6B0A17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  685. 7D9B6B0B17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  686. 7D9B6B0C17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  687. 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SourceCodePro-Regular.ttf"; sourceTree = "<group>"; };
  688. 7DADC55D1704FABF001DAC63 /* OBSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OBSlider.h; path = ImportedSources/OBSlider/OBSlider/OBSlider.h; sourceTree = SOURCE_ROOT; };
  689. 7DADC55E1704FABF001DAC63 /* OBSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OBSlider.m; path = ImportedSources/OBSlider/OBSlider/OBSlider.m; sourceTree = SOURCE_ROOT; };
  690. 7DBBF180183AB3B80009A339 /* VLCAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCAppDelegate.h; path = Sources/VLCAppDelegate.h; sourceTree = SOURCE_ROOT; };
  691. 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCAppDelegate.m; path = Sources/VLCAppDelegate.m; sourceTree = SOURCE_ROOT; };
  692. 7DBBF183183AB4300009A339 /* VLCAboutViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCAboutViewController~ipad.xib"; path = "Resources/VLCAboutViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  693. 7DBBF184183AB4300009A339 /* VLCAboutViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCAboutViewController~iphone.xib"; path = "Resources/VLCAboutViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  694. 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCCloudStorageTableViewCell~ipad.xib"; path = "Resources/VLCCloudStorageTableViewCell~ipad.xib"; sourceTree = SOURCE_ROOT; };
  695. 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCCloudStorageTableViewCell~iphone.xib"; path = "Resources/VLCCloudStorageTableViewCell~iphone.xib"; sourceTree = SOURCE_ROOT; };
  696. 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCDownloadViewController.xib; path = Resources/VLCDownloadViewController.xib; sourceTree = SOURCE_ROOT; };
  697. 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCCloudStorageTableViewController.xib; path = Resources/VLCCloudStorageTableViewController.xib; sourceTree = SOURCE_ROOT; };
  698. 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~ipad.xib"; path = "Resources/VLCEmptyLibraryView~ipad.xib"; sourceTree = SOURCE_ROOT; };
  699. 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~iphone.xib"; path = "Resources/VLCEmptyLibraryView~iphone.xib"; sourceTree = SOURCE_ROOT; };
  700. 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFuturePlaylistCollectionViewCell.xib; path = Resources/VLCFuturePlaylistCollectionViewCell.xib; sourceTree = SOURCE_ROOT; };
  701. 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFuturePlaylistTableViewCell.xib; path = Resources/VLCFuturePlaylistTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  702. 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~ipad.xib"; path = "Resources/VLCLocalNetworkListCell~ipad.xib"; sourceTree = SOURCE_ROOT; };
  703. 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~iphone.xib"; path = "Resources/VLCLocalNetworkListCell~iphone.xib"; sourceTree = SOURCE_ROOT; };
  704. 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~ipad.xib"; path = "Resources/VLCMovieViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  705. 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~iphone.xib"; path = "Resources/VLCMovieViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  706. 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCNetworkLoginViewController.xib; path = Resources/VLCNetworkLoginViewController.xib; sourceTree = SOURCE_ROOT; };
  707. 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCOpenNetworkStreamViewController.xib; path = Resources/VLCOpenNetworkStreamViewController.xib; sourceTree = SOURCE_ROOT; };
  708. 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistCollectionViewCell.xib; path = Resources/VLCPlaylistCollectionViewCell.xib; sourceTree = SOURCE_ROOT; };
  709. 7DBBF195183AB4300009A339 /* VLCPlaylistGridView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistGridView.xib; path = Resources/VLCPlaylistGridView.xib; sourceTree = SOURCE_ROOT; };
  710. 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistTableViewCell.xib; path = Resources/VLCPlaylistTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  711. 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCWiFiUploadTableViewCell.xib; path = Resources/VLCWiFiUploadTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  712. 7DC222771773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  713. 7DC222781773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  714. 7DC222791773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  715. 7DC2227A1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  716. 7DC2227B1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  717. 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "download@4x.png"; sourceTree = "<group>"; };
  718. 7DC72D5C17B7E7C7008A26D0 /* download.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = download.png; sourceTree = "<group>"; };
  719. 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "download@2x.png"; sourceTree = "<group>"; };
  720. 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WhiteRaccoon.h; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.h; sourceTree = SOURCE_ROOT; };
  721. 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WhiteRaccoon.m; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.m; sourceTree = SOURCE_ROOT; };
  722. 7DC87AEF17413634009DC250 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  723. 7DC87AF017413A17009DC250 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  724. 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "OpenSans-Regular.ttf"; sourceTree = "<group>"; };
  725. 7DD8DDAF17C915F400E7AE4B /* VLCFixups.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFixups.h; path = Sources/VLCFixups.h; sourceTree = "<group>"; };
  726. 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  727. 7DE1862A175BA9A5006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  728. 7DE1862D175BA9A9006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  729. 7DE18630175BA9AC006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  730. 7DE18633175BA9AF006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  731. 7DE18635175BA9EB006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  732. 7DE18636175BA9F4006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  733. 7DE18637175BA9F9006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  734. 7DE18638175BA9FC006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  735. 7DE18639175BAEAF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  736. 7DE1863A175BAEB0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  737. 7DE1863B175BAEB0006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  738. 7DE1863C175BAEB1006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  739. 7DE1863D175BAEB5006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  740. 7DE1863E175BAEB6006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  741. 7DE1863F175BAEB7006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  742. 7DE18640175BAEB7006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  743. 7DE18641175BAEBA006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  744. 7DE18642175BAEBB006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  745. 7DE18643175BAEBC006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  746. 7DE18644175BAEBD006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  747. 7DE18645175BAEBF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  748. 7DE18646175BAEC0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  749. 7DE18647175BAEC1006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  750. 7DE18648175BAEC2006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  751. 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "bottomBlackBar@2x.png"; sourceTree = "<group>"; };
  752. 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bottomBlackBar.png; sourceTree = "<group>"; };
  753. 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */ = {isa = PBXFileReference; lastKnownFileType = file; path = "iTunesArtwork@2x"; sourceTree = "<group>"; };
  754. 7DEB3B6117647E230038FC70 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = "<group>"; };
  755. 7DEB3B6317647E370038FC70 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
  756. 7DEB3B6517647E440038FC70 /* Icon-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72.png"; sourceTree = "<group>"; };
  757. 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72@2x.png"; sourceTree = "<group>"; };
  758. 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small-50.png"; sourceTree = "<group>"; };
  759. 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small-50@2x.png"; sourceTree = "<group>"; };
  760. 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small.png"; sourceTree = "<group>"; };
  761. 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small@2x.png"; sourceTree = "<group>"; };
  762. 7DEB3B7117649BEB0038FC70 /* Icon-512.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-512.png"; sourceTree = "<group>"; };
  763. 7DEB3B7317649F2C0038FC70 /* menuButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuButton.png; sourceTree = "<group>"; };
  764. 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuButton@2x.png"; sourceTree = "<group>"; };
  765. 7DEB3B771764A4040038FC70 /* input@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "input@2x.png"; sourceTree = "<group>"; };
  766. 7DEB3B781764A4040038FC70 /* input.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = input.png; sourceTree = "<group>"; };
  767. 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "movie@2x.png"; sourceTree = "<group>"; };
  768. 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "movie@4x.png"; sourceTree = "<group>"; };
  769. 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "blank@4x.png"; sourceTree = "<group>"; };
  770. 7DEB3B7F1764A4F40038FC70 /* folder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = folder.png; sourceTree = "<group>"; };
  771. 7DEB3B801764A4F40038FC70 /* folder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "folder@2x.png"; sourceTree = "<group>"; };
  772. 7DEB3B811764A4F40038FC70 /* folder@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "folder@4x.png"; sourceTree = "<group>"; };
  773. 7DEB3B821764A4F40038FC70 /* movie.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = movie.png; sourceTree = "<group>"; };
  774. 7DEB3B831764A4F40038FC70 /* blank.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = blank.png; sourceTree = "<group>"; };
  775. 7DEB3B841764A4F40038FC70 /* blank@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "blank@2x.png"; sourceTree = "<group>"; };
  776. 7DF1166A176CC69A009EC05C /* volumeballslider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = volumeballslider.png; sourceTree = "<group>"; };
  777. 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "volumeballslider@2x.png"; sourceTree = "<group>"; };
  778. 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  779. 7DF7E790175F47DC0018858D /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
  780. 9B088306183D7BEC004B5C2A /* VLCCloudStorageTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudStorageTableViewController.h; path = Sources/VLCCloudStorageTableViewController.h; sourceTree = SOURCE_ROOT; };
  781. 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudStorageTableViewController.m; path = Sources/VLCCloudStorageTableViewController.m; sourceTree = SOURCE_ROOT; };
  782. 9B2E0CF317FB71E80098E3DF /* libGTLTouchStaticLib.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libGTLTouchStaticLib.a; path = "../google-api/Source/build/Debug-iphoneos/libGTLTouchStaticLib.a"; sourceTree = "<group>"; };
  783. 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GTLDrive_Sources.m; path = ImportedSources/GDrive/Services/Drive/Generated/GTLDrive_Sources.m; sourceTree = SOURCE_ROOT; };
  784. 9B5BEF2817FBAEA50016F9CB /* GTLDrive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GTLDrive.h; path = ImportedSources/GDrive/Services/Drive/Generated/GTLDrive.h; sourceTree = SOURCE_ROOT; };
  785. A7035BBD174519600057DFA7 /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = file; path = iTunesArtwork; sourceTree = "<group>"; };
  786. A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMediaLibraryKit.a; path = External/MediaLibraryKit/libMediaLibraryKit.a; sourceTree = "<group>"; };
  787. A7924698170F0ED20036AAF2 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
  788. A7924699170F0ED20036AAF2 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
  789. A792469A170F0ED20036AAF2 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
  790. A79246C7170F11DF0036AAF2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  791. A79246C9170F11E40036AAF2 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  792. A7990063176E9352009E8267 /* libraryBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = libraryBackground.png; sourceTree = "<group>"; };
  793. A7B5316117E3728D00EAE4B3 /* BasicDeviceParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicDeviceParser.h; sourceTree = "<group>"; };
  794. A7B5316217E3728D00EAE4B3 /* BasicHTTPServer_ObjC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicHTTPServer_ObjC.h; sourceTree = "<group>"; };
  795. A7B5316317E3728D00EAE4B3 /* BasicParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicParser.h; sourceTree = "<group>"; };
  796. A7B5316417E3728D00EAE4B3 /* BasicParserAsset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicParserAsset.h; sourceTree = "<group>"; };
  797. A7B5316517E3728D00EAE4B3 /* BasicServiceParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicServiceParser.h; sourceTree = "<group>"; };
  798. A7B5316617E3728D00EAE4B3 /* BasicUPnPDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicUPnPDevice.h; sourceTree = "<group>"; };
  799. A7B5316717E3728D00EAE4B3 /* BasicUPnPService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicUPnPService.h; sourceTree = "<group>"; };
  800. A7B5316817E3728D00EAE4B3 /* BinaryLight1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BinaryLight1Device.h; sourceTree = "<group>"; };
  801. A7B5316917E3728D00EAE4B3 /* CocoaTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocoaTools.h; sourceTree = "<group>"; };
  802. A7B5316A17E3728D00EAE4B3 /* DeviceFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceFactory.h; sourceTree = "<group>"; };
  803. A7B5316B17E3728D00EAE4B3 /* DigitalSecurityCamera1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DigitalSecurityCamera1Device.h; sourceTree = "<group>"; };
  804. A7B5316C17E3728D00EAE4B3 /* DimmableLight1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DimmableLight1Device.h; sourceTree = "<group>"; };
  805. A7B5316D17E3728D00EAE4B3 /* InternetGateway2Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternetGateway2Device.h; sourceTree = "<group>"; };
  806. A7B5316E17E3728D00EAE4B3 /* LAN1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LAN1Device.h; sourceTree = "<group>"; };
  807. A7B5316F17E3728D00EAE4B3 /* LastChangeParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LastChangeParser.h; sourceTree = "<group>"; };
  808. A7B5317017E3728D00EAE4B3 /* MediaPlaylist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaPlaylist.h; sourceTree = "<group>"; };
  809. A7B5317117E3728D00EAE4B3 /* MediaRenderer1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaRenderer1Device.h; sourceTree = "<group>"; };
  810. A7B5317217E3728D00EAE4B3 /* MediaServer1BasicObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1BasicObject.h; sourceTree = "<group>"; };
  811. A7B5317317E3728D00EAE4B3 /* MediaServer1ContainerObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1ContainerObject.h; sourceTree = "<group>"; };
  812. A7B5317417E3728D00EAE4B3 /* MediaServer1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1Device.h; sourceTree = "<group>"; };
  813. A7B5317517E3728D00EAE4B3 /* MediaServer1ItemObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1ItemObject.h; sourceTree = "<group>"; };
  814. A7B5317617E3728D00EAE4B3 /* MediaServer1ItemRes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1ItemRes.h; sourceTree = "<group>"; };
  815. A7B5317717E3728D00EAE4B3 /* MediaServerBasicObjectParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServerBasicObjectParser.h; sourceTree = "<group>"; };
  816. A7B5317817E3728D00EAE4B3 /* ServiceFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServiceFactory.h; sourceTree = "<group>"; };
  817. A7B5317917E3728D00EAE4B3 /* SoapAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapAction.h; sourceTree = "<group>"; };
  818. A7B5317A17E3728D00EAE4B3 /* SoapActionFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionFactory.h; sourceTree = "<group>"; };
  819. A7B5317B17E3728D00EAE4B3 /* SoapActionsAVTransport1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsAVTransport1.h; sourceTree = "<group>"; };
  820. A7B5317C17E3728D00EAE4B3 /* SoapActionsCallManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsCallManagement1.h; sourceTree = "<group>"; };
  821. A7B5317D17E3728D00EAE4B3 /* SoapActionsConfigurationManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsConfigurationManagement1.h; sourceTree = "<group>"; };
  822. A7B5317E17E3728D00EAE4B3 /* SoapActionsConnectionManager1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsConnectionManager1.h; sourceTree = "<group>"; };
  823. A7B5317F17E3728D00EAE4B3 /* SoapActionsContentDirectory1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsContentDirectory1.h; sourceTree = "<group>"; };
  824. A7B5318017E3728D00EAE4B3 /* SoapActionsDeviceProtection1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDeviceProtection1.h; sourceTree = "<group>"; };
  825. A7B5318117E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraMotionImage1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDigitalSecurityCameraMotionImage1.h; sourceTree = "<group>"; };
  826. A7B5318217E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraSettings1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDigitalSecurityCameraSettings1.h; sourceTree = "<group>"; };
  827. A7B5318317E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraStillImage1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDigitalSecurityCameraStillImage1.h; sourceTree = "<group>"; };
  828. A7B5318417E3728D00EAE4B3 /* SoapActionsDimming1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDimming1.h; sourceTree = "<group>"; };
  829. A7B5318517E3728D00EAE4B3 /* SoapActionsInputConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsInputConfig1.h; sourceTree = "<group>"; };
  830. A7B5318617E3728D00EAE4B3 /* SoapActionsLANHostConfigManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsLANHostConfigManagement1.h; sourceTree = "<group>"; };
  831. A7B5318717E3728D00EAE4B3 /* SoapActionsLayer3Forwarding1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsLayer3Forwarding1.h; sourceTree = "<group>"; };
  832. A7B5318817E3728D00EAE4B3 /* SoapActionsMediaManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsMediaManagement1.h; sourceTree = "<group>"; };
  833. A7B5318917E3728D00EAE4B3 /* SoapActionsMessaging1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsMessaging1.h; sourceTree = "<group>"; };
  834. A7B5318A17E3728D00EAE4B3 /* SoapActionsRendering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsRendering.h; sourceTree = "<group>"; };
  835. A7B5318B17E3728D00EAE4B3 /* SoapActionsRenderingControl1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsRenderingControl1.h; sourceTree = "<group>"; };
  836. A7B5318C17E3728D00EAE4B3 /* SoapActionsSwitchPower1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsSwitchPower1.h; sourceTree = "<group>"; };
  837. A7B5318D17E3728D00EAE4B3 /* SoapActionsWANCableLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANCableLinkConfig1.h; sourceTree = "<group>"; };
  838. A7B5318E17E3728D00EAE4B3 /* SoapActionsWANCommonInterfaceConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANCommonInterfaceConfig1.h; sourceTree = "<group>"; };
  839. A7B5318F17E3728D00EAE4B3 /* SoapActionsWANDSLLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANDSLLinkConfig1.h; sourceTree = "<group>"; };
  840. A7B5319017E3728D00EAE4B3 /* SoapActionsWANEthernetLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANEthernetLinkConfig1.h; sourceTree = "<group>"; };
  841. A7B5319117E3728D00EAE4B3 /* SoapActionsWANIPConnection1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANIPConnection1.h; sourceTree = "<group>"; };
  842. A7B5319217E3728D00EAE4B3 /* SoapActionsWANIPConnection2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANIPConnection2.h; sourceTree = "<group>"; };
  843. A7B5319317E3728D00EAE4B3 /* SoapActionsWANIPv6FirewallControl1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANIPv6FirewallControl1.h; sourceTree = "<group>"; };
  844. A7B5319417E3728D00EAE4B3 /* SoapActionsWANPOTSLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANPOTSLinkConfig1.h; sourceTree = "<group>"; };
  845. A7B5319517E3728D00EAE4B3 /* SoapActionsWANPPPConnection1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANPPPConnection1.h; sourceTree = "<group>"; };
  846. A7B5319617E3728D00EAE4B3 /* SSDPDB_ObjC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSDPDB_ObjC.h; sourceTree = "<group>"; };
  847. A7B5319717E3728D00EAE4B3 /* StateVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateVariable.h; sourceTree = "<group>"; };
  848. A7B5319817E3728D00EAE4B3 /* StateVariableList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateVariableList.h; sourceTree = "<group>"; };
  849. A7B5319917E3728D00EAE4B3 /* StateVariableRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateVariableRange.h; sourceTree = "<group>"; };
  850. A7B5319A17E3728D00EAE4B3 /* TelephonyClient1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TelephonyClient1Device.h; sourceTree = "<group>"; };
  851. A7B5319B17E3728D00EAE4B3 /* TelephonyServer1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TelephonyServer1Device.h; sourceTree = "<group>"; };
  852. A7B5319C17E3728D00EAE4B3 /* UPnPDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPDB.h; sourceTree = "<group>"; };
  853. A7B5319D17E3728D00EAE4B3 /* UPnPEventParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPEventParser.h; sourceTree = "<group>"; };
  854. A7B5319E17E3728D00EAE4B3 /* UPnPEvents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPEvents.h; sourceTree = "<group>"; };
  855. A7B5319F17E3728D00EAE4B3 /* UPnPManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPManager.h; sourceTree = "<group>"; };
  856. A7B531A017E3728D00EAE4B3 /* WAN2Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WAN2Device.h; sourceTree = "<group>"; };
  857. A7B531A117E3728D00EAE4B3 /* WANConnection1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WANConnection1Device.h; sourceTree = "<group>"; };
  858. A7B531A217E3728D00EAE4B3 /* WANConnection2Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WANConnection2Device.h; sourceTree = "<group>"; };
  859. A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally@2x~iphone.png"; sourceTree = "<group>"; };
  860. A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally~iphone.png"; sourceTree = "<group>"; };
  861. A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally~ipad.png"; sourceTree = "<group>"; };
  862. A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally@2x~ipad.png"; sourceTree = "<group>"; };
  863. A7FF9F3D17428C1900999819 /* DeleteButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeleteButton.png; sourceTree = "<group>"; };
  864. A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DeleteButton@2x.png"; sourceTree = "<group>"; };
  865. CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMobileVLCKit.a; path = External/MobileVLCKit/libMobileVLCKit.a; sourceTree = "<group>"; };
  866. CC1BBC421704935E00A20CBF /* MediaLibrary.mom */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = MediaLibrary.mom; path = External/MediaLibraryKit/MediaLibrary.mom; sourceTree = "<group>"; };
  867. CC1BBC451704938300A20CBF /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
  868. CC1BBC471704938B00A20CBF /* libstdc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.dylib"; path = "usr/lib/libstdc++.dylib"; sourceTree = SDKROOT; };
  869. CC1BBC491704939300A20CBF /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
  870. CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
  871. CC1BBC4D170493A300A20CBF /* libbz2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libbz2.dylib; path = usr/lib/libbz2.dylib; sourceTree = SDKROOT; };
  872. CC1BBC4F170493AA00A20CBF /* libxml2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.dylib; path = usr/lib/libxml2.dylib; sourceTree = SDKROOT; };
  873. CC1BBC51170493B100A20CBF /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  874. CC1BBC53170493B800A20CBF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  875. CC1BBC55170493C100A20CBF /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  876. CC1BBC57170493E100A20CBF /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  877. CC75BE3A17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  878. CC75BE3B17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  879. CC75BE3C17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  880. CC75BE3D17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  881. CC75BE3E17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  882. CC75BE3F17DF744400FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  883. CC75BE4017DF744400FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  884. CC75BE4117DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  885. CC75BE4217DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  886. CC75BE4317DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  887. CC87147917A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = mr; path = mr.lproj/Localizable.strings; sourceTree = "<group>"; };
  888. CC87147A17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  889. CC87147B17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  890. CC87147C17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  891. CC87147D17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  892. CC87147E17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  893. CC87147F17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  894. CC87148017A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  895. CC87148117A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  896. CC87148217A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  897. CC87148317A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  898. CC87148417A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  899. CC87148517A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  900. CC87148617A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  901. CC87148717A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  902. CCAF837E17DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  903. CCAF837F17DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  904. CCAF838017DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  905. CCAF838117DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  906. CCAF838217DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  907. CCBDA19017B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/Localizable.strings; sourceTree = "<group>"; };
  908. CCBDA19117B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  909. CCBDA19217B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  910. CCBDA19317B2BEB600489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  911. CCBDA19417B2BEB600489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  912. CCE2A22D17A5859E00D9EAAD /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  913. /* End PBXFileReference section */
  914. /* Begin PBXFrameworksBuildPhase section */
  915. 7D94FCD816DE7D1000F2623B /* Frameworks */ = {
  916. isa = PBXFrameworksBuildPhase;
  917. buildActionMask = 2147483647;
  918. files = (
  919. 9B2E0CF417FB71E90098E3DF /* libGTLTouchStaticLib.a in Frameworks */,
  920. CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */,
  921. 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */,
  922. 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */,
  923. 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */,
  924. 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */,
  925. 293DF2F417494F8200BB880F /* DropboxSDK.framework in Frameworks */,
  926. 2915544317490D4A00B86CAD /* Security.framework in Frameworks */,
  927. 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */,
  928. CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */,
  929. CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */,
  930. CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */,
  931. CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */,
  932. CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */,
  933. CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */,
  934. CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */,
  935. CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */,
  936. CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */,
  937. CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */,
  938. 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */,
  939. 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */,
  940. 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */,
  941. A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */,
  942. 7D31002017B6768B00E6516D /* libupnpx.a in Frameworks */,
  943. );
  944. runOnlyForDeploymentPostprocessing = 0;
  945. };
  946. /* End PBXFrameworksBuildPhase section */
  947. /* Begin PBXGroup section */
  948. 29125E5317492219003F03E5 /* web */ = {
  949. isa = PBXGroup;
  950. children = (
  951. 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */,
  952. 7AC8629F1765E90C0011611A /* jquery.fileupload.js */,
  953. 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */,
  954. 7AC862A11765E90C0011611A /* jquery.ui.widget.js */,
  955. 7AC8629B1765DC560011611A /* style.css */,
  956. 7D00161A17704DAC00649F27 /* main.js */,
  957. 29125E5417492219003F03E5 /* index.html */,
  958. );
  959. path = web;
  960. sourceTree = "<group>";
  961. };
  962. 291553E817490A0400B86CAD /* CocoaHTTPServer */ = {
  963. isa = PBXGroup;
  964. children = (
  965. 2915542C17490B9C00B86CAD /* Responses */,
  966. 2915543917490B9C00B86CAD /* WebSocket.h */,
  967. 2915543A17490B9C00B86CAD /* WebSocket.m */,
  968. 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */,
  969. 2915540F17490A9C00B86CAD /* CocoaLumberjack */,
  970. 291553E917490A1E00B86CAD /* Categories */,
  971. 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */,
  972. 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */,
  973. 291553F217490A1E00B86CAD /* HTTPConnection.h */,
  974. 291553F317490A1E00B86CAD /* HTTPConnection.m */,
  975. 291553F417490A1E00B86CAD /* HTTPLogging.h */,
  976. 291553F517490A1E00B86CAD /* HTTPMessage.h */,
  977. 291553F617490A1E00B86CAD /* HTTPMessage.m */,
  978. 291553F717490A1E00B86CAD /* HTTPResponse.h */,
  979. 291553F817490A1E00B86CAD /* HTTPServer.h */,
  980. 291553F917490A1E00B86CAD /* HTTPServer.m */,
  981. 291553FA17490A1E00B86CAD /* Mime */,
  982. );
  983. name = CocoaHTTPServer;
  984. sourceTree = "<group>";
  985. };
  986. 291553E917490A1E00B86CAD /* Categories */ = {
  987. isa = PBXGroup;
  988. children = (
  989. 291553EA17490A1E00B86CAD /* DDData.h */,
  990. 291553EB17490A1E00B86CAD /* DDData.m */,
  991. 291553EC17490A1E00B86CAD /* DDNumber.h */,
  992. 291553ED17490A1E00B86CAD /* DDNumber.m */,
  993. 291553EE17490A1E00B86CAD /* DDRange.h */,
  994. 291553EF17490A1E00B86CAD /* DDRange.m */,
  995. );
  996. name = Categories;
  997. path = ImportedSources/CocoaHTTPServer/Core/Categories;
  998. sourceTree = SOURCE_ROOT;
  999. };
  1000. 291553FA17490A1E00B86CAD /* Mime */ = {
  1001. isa = PBXGroup;
  1002. children = (
  1003. 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */,
  1004. 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */,
  1005. 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */,
  1006. 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */,
  1007. 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */,
  1008. 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */,
  1009. );
  1010. name = Mime;
  1011. path = ImportedSources/CocoaHTTPServer/Core/Mime;
  1012. sourceTree = SOURCE_ROOT;
  1013. };
  1014. 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */ = {
  1015. isa = PBXGroup;
  1016. children = (
  1017. 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */,
  1018. 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */,
  1019. );
  1020. name = CocoaAsyncSocket;
  1021. path = ImportedSources/CocoaHTTPServer/Vendor/CocoaAsyncSocket;
  1022. sourceTree = SOURCE_ROOT;
  1023. };
  1024. 2915540F17490A9C00B86CAD /* CocoaLumberjack */ = {
  1025. isa = PBXGroup;
  1026. children = (
  1027. 2915541017490A9C00B86CAD /* About.txt */,
  1028. 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */,
  1029. 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */,
  1030. 2915541317490A9C00B86CAD /* DDASLLogger.h */,
  1031. 2915541417490A9C00B86CAD /* DDASLLogger.m */,
  1032. 2915541517490A9C00B86CAD /* DDFileLogger.h */,
  1033. 2915541617490A9C00B86CAD /* DDFileLogger.m */,
  1034. 2915541717490A9C00B86CAD /* DDLog.h */,
  1035. 2915541817490A9C00B86CAD /* DDLog.m */,
  1036. 2915541917490A9C00B86CAD /* DDTTYLogger.h */,
  1037. 2915541A17490A9C00B86CAD /* DDTTYLogger.m */,
  1038. 2915541B17490A9C00B86CAD /* Extensions */,
  1039. );
  1040. name = CocoaLumberjack;
  1041. path = ImportedSources/CocoaHTTPServer/Vendor/CocoaLumberjack;
  1042. sourceTree = SOURCE_ROOT;
  1043. };
  1044. 2915541B17490A9C00B86CAD /* Extensions */ = {
  1045. isa = PBXGroup;
  1046. children = (
  1047. 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */,
  1048. 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */,
  1049. 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */,
  1050. 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */,
  1051. 2915542017490A9C00B86CAD /* README.txt */,
  1052. );
  1053. path = Extensions;
  1054. sourceTree = "<group>";
  1055. };
  1056. 2915542C17490B9C00B86CAD /* Responses */ = {
  1057. isa = PBXGroup;
  1058. children = (
  1059. 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */,
  1060. 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */,
  1061. 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */,
  1062. 2915543017490B9C00B86CAD /* HTTPDataResponse.m */,
  1063. 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */,
  1064. 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */,
  1065. 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */,
  1066. 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */,
  1067. 2915543517490B9C00B86CAD /* HTTPFileResponse.h */,
  1068. 2915543617490B9C00B86CAD /* HTTPFileResponse.m */,
  1069. 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */,
  1070. 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */,
  1071. );
  1072. name = Responses;
  1073. path = ImportedSources/CocoaHTTPServer/Core/Responses;
  1074. sourceTree = SOURCE_ROOT;
  1075. };
  1076. 7D10BC651743F9A100DA7059 /* External Playback */ = {
  1077. isa = PBXGroup;
  1078. children = (
  1079. A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */,
  1080. A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */,
  1081. A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */,
  1082. A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */,
  1083. );
  1084. name = "External Playback";
  1085. sourceTree = "<group>";
  1086. };
  1087. 7D10BC661743F9AC00DA7059 /* Library View */ = {
  1088. isa = PBXGroup;
  1089. children = (
  1090. 7D223E18181EC56E00B36798 /* gradient-cell-ios7-ipad.png */,
  1091. 7D223E19181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png */,
  1092. 7D2A34A21805CDBA004078AA /* gradient-cell-ios7.png */,
  1093. 7D2A34A31805CDBA004078AA /* gradient-cell-ios7@2x.png */,
  1094. A7990063176E9352009E8267 /* libraryBackground.png */,
  1095. 7D1AC30A17629D4600BD2EB5 /* title.png */,
  1096. 7D1AC30B17629D4600BD2EB5 /* title@2x.png */,
  1097. 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */,
  1098. 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */,
  1099. 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */,
  1100. 7D6BD1831762026700AD311A /* thumbOverlay.png */,
  1101. 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */,
  1102. 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */,
  1103. 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */,
  1104. 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */,
  1105. 7D07F72A175691CB00CDE21C /* backButton.png */,
  1106. 7D07F72B175691CC00CDE21C /* backButton@2x.png */,
  1107. 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */,
  1108. 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */,
  1109. 7D07F722175688D300CDE21C /* doneButton.png */,
  1110. 7D07F723175688D300CDE21C /* doneButton@2x.png */,
  1111. 7D07F724175688D300CDE21C /* doneButtonHighlight.png */,
  1112. 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */,
  1113. 7D07F71217566C4A00CDE21C /* menuCone.png */,
  1114. 7D07F71317566C4A00CDE21C /* menuCone@2x.png */,
  1115. 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */,
  1116. 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */,
  1117. 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */,
  1118. 7D07F71D175673D100CDE21C /* menuBtnBck.png */,
  1119. 7D07F70A175669A800CDE21C /* button.png */,
  1120. 7D07F70B175669A800CDE21C /* button@2x.png */,
  1121. 7D07F70E175669D800CDE21C /* buttonHighlight.png */,
  1122. 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */,
  1123. 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */,
  1124. 7D07F707175665ED00CDE21C /* navBarBackground.png */,
  1125. A7FF9F3D17428C1900999819 /* DeleteButton.png */,
  1126. A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */,
  1127. 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */,
  1128. 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */,
  1129. 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */,
  1130. 7D16035C17BF9FE600F29B34 /* headerSidebar.png */,
  1131. );
  1132. name = "Library View";
  1133. sourceTree = "<group>";
  1134. };
  1135. 7D10BC671743F9BA00DA7059 /* Launch Screen */ = {
  1136. isa = PBXGroup;
  1137. children = (
  1138. A7924698170F0ED20036AAF2 /* Default-568h@2x.png */,
  1139. A7924699170F0ED20036AAF2 /* Default.png */,
  1140. A792469A170F0ED20036AAF2 /* Default@2x.png */,
  1141. );
  1142. name = "Launch Screen";
  1143. sourceTree = "<group>";
  1144. };
  1145. 7D2159E4174FD31900EC00E8 /* Dropbox */ = {
  1146. isa = PBXGroup;
  1147. children = (
  1148. 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */,
  1149. 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */,
  1150. 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */,
  1151. 7DEB3B7F1764A4F40038FC70 /* folder.png */,
  1152. 7DEB3B801764A4F40038FC70 /* folder@2x.png */,
  1153. 7DEB3B811764A4F40038FC70 /* folder@4x.png */,
  1154. 7DEB3B821764A4F40038FC70 /* movie.png */,
  1155. 7DEB3B831764A4F40038FC70 /* blank.png */,
  1156. 7DEB3B841764A4F40038FC70 /* blank@2x.png */,
  1157. 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */,
  1158. 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */,
  1159. 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */,
  1160. 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */,
  1161. );
  1162. name = Dropbox;
  1163. sourceTree = "<group>";
  1164. };
  1165. 7D2339AB176DE70E008D223C /* Menu */ = {
  1166. isa = PBXGroup;
  1167. children = (
  1168. 7D30F3CB183AB29300FFC021 /* VLCMenuTableViewController.h */,
  1169. 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */,
  1170. 7D30F3DD183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.h */,
  1171. 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */,
  1172. 7D30F3C5183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.h */,
  1173. 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */,
  1174. 7D30F3E0183AB33200FFC021 /* VLCSidebarViewCell.h */,
  1175. 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */,
  1176. );
  1177. name = Menu;
  1178. sourceTree = "<group>";
  1179. };
  1180. 7D31001E17B64AE600E6516D /* GHSidebarNav */ = {
  1181. isa = PBXGroup;
  1182. children = (
  1183. 7D31001B17B64AE100E6516D /* GHRevealViewController.h */,
  1184. 7D31001C17B64AE100E6516D /* GHRevealViewController.m */,
  1185. );
  1186. name = GHSidebarNav;
  1187. sourceTree = "<group>";
  1188. };
  1189. 7D31002117B676D500E6516D /* Local Network Connectivity */ = {
  1190. isa = PBXGroup;
  1191. children = (
  1192. 7D30F3D1183AB2F100FFC021 /* VLCLocalNetworkListCell.h */,
  1193. 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */,
  1194. 7D30F3D3183AB2F100FFC021 /* VLCLocalServerFolderListViewController.h */,
  1195. 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */,
  1196. 7D30F3D5183AB2F100FFC021 /* VLCLocalServerListViewController.h */,
  1197. 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */,
  1198. 7D30F3DA183AB2F900FFC021 /* VLCNetworkLoginViewController.h */,
  1199. 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */,
  1200. );
  1201. name = "Local Network Connectivity";
  1202. sourceTree = "<group>";
  1203. };
  1204. 7D31CF061746AEF2005997E0 /* UI Elements */ = {
  1205. isa = PBXGroup;
  1206. children = (
  1207. 7D3784B2183A9938009EE944 /* UIBarButtonItem+Theme.h */,
  1208. 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */,
  1209. 7D3784B4183A9938009EE944 /* UINavigationController+Theme.h */,
  1210. 7D3784B5183A9938009EE944 /* UINavigationController+Theme.m */,
  1211. 7D3784B6183A9938009EE944 /* VLCLinearProgressIndicator.h */,
  1212. 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */,
  1213. 7D3784B8183A9938009EE944 /* VLCMenuButton.h */,
  1214. 7D3784B9183A9938009EE944 /* VLCMenuButton.m */,
  1215. 7D3784BA183A9938009EE944 /* VLCSlider.h */,
  1216. 7D3784BB183A9938009EE944 /* VLCSlider.m */,
  1217. 7D3784BC183A9938009EE944 /* VLCStatusLabel.h */,
  1218. 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */,
  1219. );
  1220. name = "UI Elements";
  1221. sourceTree = "<group>";
  1222. };
  1223. 7D47D6C81760CD2700E86BAD /* Movie VIew */ = {
  1224. isa = PBXGroup;
  1225. children = (
  1226. 7DF1166A176CC69A009EC05C /* volumeballslider.png */,
  1227. 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */,
  1228. 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */,
  1229. 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */,
  1230. 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */,
  1231. 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */,
  1232. 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */,
  1233. 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */,
  1234. 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */,
  1235. 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */,
  1236. 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */,
  1237. 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */,
  1238. 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */,
  1239. 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */,
  1240. 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */,
  1241. 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */,
  1242. 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */,
  1243. 7D47D6D81760CD8700E86BAD /* speedIcon.png */,
  1244. 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */,
  1245. 7D47D7251760D77C00E86BAD /* pauseIcon.png */,
  1246. 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */,
  1247. 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */,
  1248. 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */,
  1249. 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */,
  1250. 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */,
  1251. 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */,
  1252. 7D47D6DF1760CD8700E86BAD /* ratioButton.png */,
  1253. 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */,
  1254. 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */,
  1255. 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */,
  1256. 7D47D6E31760CD8700E86BAD /* seekbarBg.png */,
  1257. 7D47D6E51760CD8700E86BAD /* forwardIcon.png */,
  1258. 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */,
  1259. 7D47D6E71760CD8700E86BAD /* knobSlider.png */,
  1260. 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */,
  1261. 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */,
  1262. 7D47D6EC1760CD8700E86BAD /* playIcon.png */,
  1263. 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */,
  1264. 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */,
  1265. 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */,
  1266. 7D47D6F01760CD8700E86BAD /* backIcon.png */,
  1267. 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */,
  1268. 7D47D6F21760CD8700E86BAD /* ballSlider.png */,
  1269. 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */,
  1270. 7D1AC3021762996100BD2EB5 /* resetIcon.png */,
  1271. 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */,
  1272. );
  1273. name = "Movie VIew";
  1274. sourceTree = "<group>";
  1275. };
  1276. 7D5E39CC174FCDBE007DAFA1 /* Dropbox Integration */ = {
  1277. isa = PBXGroup;
  1278. children = (
  1279. 7D3784A8183A9906009EE944 /* VLCDropboxConstants.h */,
  1280. 7D3784A9183A9906009EE944 /* VLCDropboxController.h */,
  1281. 7D3784AA183A9906009EE944 /* VLCDropboxController.m */,
  1282. 7D3784AB183A9906009EE944 /* VLCDropboxTableViewController.h */,
  1283. 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */,
  1284. 7D3784AF183A990F009EE944 /* VLCCloudStorageTableViewCell.h */,
  1285. 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */,
  1286. 9B088306183D7BEC004B5C2A /* VLCCloudStorageTableViewController.h */,
  1287. 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */,
  1288. );
  1289. name = "Dropbox Integration";
  1290. sourceTree = "<group>";
  1291. };
  1292. 7D5F7AB717526573006CCCFA /* Accessory dialogs */ = {
  1293. isa = PBXGroup;
  1294. children = (
  1295. 7D3784A2183A98F5009EE944 /* VLCAboutViewController.h */,
  1296. 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */,
  1297. 7D3784A4183A98F5009EE944 /* VLCSettingsController.h */,
  1298. 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */,
  1299. 7D37849F183A98EB009EE944 /* VLCBugreporter.h */,
  1300. 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */,
  1301. );
  1302. name = "Accessory dialogs";
  1303. sourceTree = "<group>";
  1304. };
  1305. 7D5F7AB81752658E006CCCFA /* Everything Playlist */ = {
  1306. isa = PBXGroup;
  1307. children = (
  1308. 7D378493183A98D1009EE944 /* VLCPlaylistCollectionViewCell.h */,
  1309. 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */,
  1310. 7D378495183A98D1009EE944 /* VLCPlaylistTableViewCell.h */,
  1311. 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */,
  1312. 7D378497183A98D1009EE944 /* VLCPlaylistViewController.h */,
  1313. 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */,
  1314. 7D37849C183A98DD009EE944 /* VLCThumbnailsCache.h */,
  1315. 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */,
  1316. );
  1317. name = "Everything Playlist";
  1318. sourceTree = "<group>";
  1319. };
  1320. 7D5F7AB9175265B2006CCCFA /* Playback */ = {
  1321. isa = PBXGroup;
  1322. children = (
  1323. 7D37848D183A98B6009EE944 /* VLCMovieViewController.h */,
  1324. 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */,
  1325. 7D378490183A98BF009EE944 /* VLCExternalDisplayController.h */,
  1326. 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */,
  1327. );
  1328. name = Playback;
  1329. sourceTree = "<group>";
  1330. };
  1331. 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */ = {
  1332. isa = PBXGroup;
  1333. children = (
  1334. 7D30F3BC183AB24C00FFC021 /* VLCHTTPConnection.h */,
  1335. 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */,
  1336. 7D30F3BE183AB24C00FFC021 /* VLCHTTPFileDownloader.h */,
  1337. 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */,
  1338. 7D30F3C0183AB24C00FFC021 /* VLCHTTPUploaderController.h */,
  1339. 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */,
  1340. 7D30F3C8183AB27A00FFC021 /* VLCDownloadViewController.h */,
  1341. 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */,
  1342. );
  1343. name = "HTTP Connectivity";
  1344. sourceTree = "<group>";
  1345. };
  1346. 7D6B07A31716C9A6003280C4 /* OBSlider */ = {
  1347. isa = PBXGroup;
  1348. children = (
  1349. 7DADC55D1704FABF001DAC63 /* OBSlider.h */,
  1350. 7DADC55E1704FABF001DAC63 /* OBSlider.m */,
  1351. );
  1352. name = OBSlider;
  1353. sourceTree = "<group>";
  1354. };
  1355. 7D6B08CA174D65B400A05173 /* InAppSettingsKit */ = {
  1356. isa = PBXGroup;
  1357. children = (
  1358. 7D6B08CB174D65B500A05173 /* Controllers */,
  1359. 7D6B08D3174D65B500A05173 /* Models */,
  1360. 7D6B08DE174D65B500A05173 /* Views */,
  1361. );
  1362. name = InAppSettingsKit;
  1363. path = ImportedSources/InAppSettingsKit/InAppSettingsKit;
  1364. sourceTree = SOURCE_ROOT;
  1365. };
  1366. 7D6B08CB174D65B500A05173 /* Controllers */ = {
  1367. isa = PBXGroup;
  1368. children = (
  1369. 7D6B08CC174D65B500A05173 /* IASKAppSettingsViewController.h */,
  1370. 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */,
  1371. 7D6B08CE174D65B500A05173 /* IASKAppSettingsWebViewController.h */,
  1372. 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */,
  1373. 7D6B08D0174D65B500A05173 /* IASKSpecifierValuesViewController.h */,
  1374. 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */,
  1375. 7D6B08D2174D65B500A05173 /* IASKViewController.h */,
  1376. );
  1377. path = Controllers;
  1378. sourceTree = "<group>";
  1379. };
  1380. 7D6B08D3174D65B500A05173 /* Models */ = {
  1381. isa = PBXGroup;
  1382. children = (
  1383. 7D6B08D4174D65B500A05173 /* IASKSettingsReader.h */,
  1384. 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */,
  1385. 7D6B08D6174D65B500A05173 /* IASKSettingsStore.h */,
  1386. 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */,
  1387. 7D6B08D8174D65B500A05173 /* IASKSettingsStoreFile.h */,
  1388. 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */,
  1389. 7D6B08DA174D65B500A05173 /* IASKSettingsStoreUserDefaults.h */,
  1390. 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */,
  1391. 7D6B08DC174D65B500A05173 /* IASKSpecifier.h */,
  1392. 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */,
  1393. );
  1394. path = Models;
  1395. sourceTree = "<group>";
  1396. };
  1397. 7D6B08DE174D65B500A05173 /* Views */ = {
  1398. isa = PBXGroup;
  1399. children = (
  1400. 7D6B08DF174D65B500A05173 /* IASKPSSliderSpecifierViewCell.h */,
  1401. 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */,
  1402. 7D6B08E1174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.h */,
  1403. 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */,
  1404. 7D6B08E3174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.h */,
  1405. 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */,
  1406. 7D6B08E5174D65B500A05173 /* IASKSlider.h */,
  1407. 7D6B08E6174D65B500A05173 /* IASKSlider.m */,
  1408. 7D6B08E7174D65B500A05173 /* IASKSwitch.h */,
  1409. 7D6B08E8174D65B500A05173 /* IASKSwitch.m */,
  1410. 7D6B08E9174D65B500A05173 /* IASKTextField.h */,
  1411. 7D6B08EA174D65B500A05173 /* IASKTextField.m */,
  1412. );
  1413. path = Views;
  1414. sourceTree = "<group>";
  1415. };
  1416. 7D94FCD216DE7D1000F2623B = {
  1417. isa = PBXGroup;
  1418. children = (
  1419. 7D94FCE416DE7D1000F2623B /* Classes */,
  1420. CC1BBC441704936500A20CBF /* External VLC Libraries */,
  1421. 7D94FCDD16DE7D1000F2623B /* Frameworks */,
  1422. 7D94FCDC16DE7D1000F2623B /* Products */,
  1423. );
  1424. sourceTree = "<group>";
  1425. };
  1426. 7D94FCDC16DE7D1000F2623B /* Products */ = {
  1427. isa = PBXGroup;
  1428. children = (
  1429. 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */,
  1430. );
  1431. name = Products;
  1432. sourceTree = "<group>";
  1433. };
  1434. 7D94FCDD16DE7D1000F2623B /* Frameworks */ = {
  1435. isa = PBXGroup;
  1436. children = (
  1437. 9B2E0CF317FB71E80098E3DF /* libGTLTouchStaticLib.a */,
  1438. CCE2A22D17A5859E00D9EAAD /* CoreText.framework */,
  1439. 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */,
  1440. 7DF7E790175F47DC0018858D /* MediaPlayer.framework */,
  1441. 7D6B08F9174D716200A05173 /* MessageUI.framework */,
  1442. 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */,
  1443. 7D05ADEA174945CE0087550C /* DropboxSDK.framework */,
  1444. 2915544217490D4A00B86CAD /* Security.framework */,
  1445. 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */,
  1446. CC1BBC57170493E100A20CBF /* CoreData.framework */,
  1447. CC1BBC55170493C100A20CBF /* QuartzCore.framework */,
  1448. CC1BBC53170493B800A20CBF /* AudioToolbox.framework */,
  1449. CC1BBC51170493B100A20CBF /* OpenGLES.framework */,
  1450. CC1BBC4F170493AA00A20CBF /* libxml2.dylib */,
  1451. 7D31001F17B6768B00E6516D /* libupnpx.a */,
  1452. CC1BBC4D170493A300A20CBF /* libbz2.dylib */,
  1453. CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */,
  1454. CC1BBC491704939300A20CBF /* libz.dylib */,
  1455. CC1BBC471704938B00A20CBF /* libstdc++.dylib */,
  1456. CC1BBC451704938300A20CBF /* libiconv.dylib */,
  1457. 7D94FCDE16DE7D1000F2623B /* UIKit.framework */,
  1458. 7D94FCE016DE7D1000F2623B /* Foundation.framework */,
  1459. 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */,
  1460. );
  1461. name = Frameworks;
  1462. sourceTree = "<group>";
  1463. };
  1464. 7D94FCE416DE7D1000F2623B /* Classes */ = {
  1465. isa = PBXGroup;
  1466. children = (
  1467. 7D6B08BB174A72A900A05173 /* VLCConstants.h */,
  1468. 7DD8DDAF17C915F400E7AE4B /* VLCFixups.h */,
  1469. 7DBBF180183AB3B80009A339 /* VLCAppDelegate.h */,
  1470. 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */,
  1471. 9B51719A17EDEC8900F8FBA7 /* GoogleDrive Integration */,
  1472. A7D03A4817A4249F0022C16F /* MediaDiscovering */,
  1473. 7D2339AB176DE70E008D223C /* Menu */,
  1474. 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */,
  1475. 7D31002117B676D500E6516D /* Local Network Connectivity */,
  1476. 7D5F7AB9175265B2006CCCFA /* Playback */,
  1477. 7D5F7AB81752658E006CCCFA /* Everything Playlist */,
  1478. 7D5F7AB717526573006CCCFA /* Accessory dialogs */,
  1479. 7D5E39CC174FCDBE007DAFA1 /* Dropbox Integration */,
  1480. 7D31CF061746AEF2005997E0 /* UI Elements */,
  1481. A7C3025A175A538700AD4388 /* Extensions */,
  1482. 7DADC5601704FACC001DAC63 /* Imported */,
  1483. 7DADC55C1704FAA8001DAC63 /* XIBs */,
  1484. A7924697170F0ED20036AAF2 /* Resources */,
  1485. 7D94FCE516DE7D1000F2623B /* Supporting Files */,
  1486. );
  1487. name = Classes;
  1488. path = AspenProject;
  1489. sourceTree = "<group>";
  1490. };
  1491. 7D94FCE516DE7D1000F2623B /* Supporting Files */ = {
  1492. isa = PBXGroup;
  1493. children = (
  1494. 7D3784E8183A9A15009EE944 /* main.m */,
  1495. 7D3784EA183A9A1E009EE944 /* VLC for iOS-Info.plist */,
  1496. 7D3784EB183A9A1E009EE944 /* VLC for iOS-Prefix.pch */,
  1497. );
  1498. name = "Supporting Files";
  1499. sourceTree = "<group>";
  1500. };
  1501. 7DADC55C1704FAA8001DAC63 /* XIBs */ = {
  1502. isa = PBXGroup;
  1503. children = (
  1504. 7DBBF183183AB4300009A339 /* VLCAboutViewController~ipad.xib */,
  1505. 7DBBF184183AB4300009A339 /* VLCAboutViewController~iphone.xib */,
  1506. 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */,
  1507. 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */,
  1508. 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */,
  1509. 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */,
  1510. 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */,
  1511. 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */,
  1512. 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */,
  1513. 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */,
  1514. 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */,
  1515. 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */,
  1516. 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */,
  1517. 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */,
  1518. 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */,
  1519. 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */,
  1520. 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */,
  1521. 7DBBF195183AB4300009A339 /* VLCPlaylistGridView.xib */,
  1522. 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */,
  1523. 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */,
  1524. 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */,
  1525. );
  1526. name = XIBs;
  1527. sourceTree = "<group>";
  1528. };
  1529. 7DADC5601704FACC001DAC63 /* Imported */ = {
  1530. isa = PBXGroup;
  1531. children = (
  1532. 9B2E0CED17FB5B3F0098E3DF /* GoogleDrive */,
  1533. A7B5316017E3728D00EAE4B3 /* upnpx */,
  1534. 7D6B08CA174D65B400A05173 /* InAppSettingsKit */,
  1535. A7A0E9EB174BA66000162F25 /* PAPasscode */,
  1536. 7DC72D6517B7ED36008A26D0 /* Reachability */,
  1537. 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */,
  1538. 7D31001E17B64AE600E6516D /* GHSidebarNav */,
  1539. 291553E817490A0400B86CAD /* CocoaHTTPServer */,
  1540. 7D6B07A31716C9A6003280C4 /* OBSlider */,
  1541. );
  1542. name = Imported;
  1543. sourceTree = "<group>";
  1544. };
  1545. 7DBC3B3C1711DD1E00DCF688 /* Icons */ = {
  1546. isa = PBXGroup;
  1547. children = (
  1548. 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */,
  1549. 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */,
  1550. 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */,
  1551. 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */,
  1552. 7DEB3B6517647E440038FC70 /* Icon-72.png */,
  1553. 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */,
  1554. 7DEB3B6317647E370038FC70 /* Icon.png */,
  1555. 7DEB3B6117647E230038FC70 /* Icon@2x.png */,
  1556. 7D6B08C0174A831900A05173 /* vlc-xmas.png */,
  1557. 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */,
  1558. 7DEB3B7117649BEB0038FC70 /* Icon-512.png */,
  1559. );
  1560. name = Icons;
  1561. sourceTree = "<group>";
  1562. };
  1563. 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */ = {
  1564. isa = PBXGroup;
  1565. children = (
  1566. 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */,
  1567. 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */,
  1568. );
  1569. name = WhiteRaccoon;
  1570. sourceTree = "<group>";
  1571. };
  1572. 7DC72D6517B7ED36008A26D0 /* Reachability */ = {
  1573. isa = PBXGroup;
  1574. children = (
  1575. 7D3784E5183A99E1009EE944 /* Reachability.h */,
  1576. 7D3784E6183A99E1009EE944 /* Reachability.m */,
  1577. );
  1578. name = Reachability;
  1579. sourceTree = "<group>";
  1580. };
  1581. 7DEB3B7B1764A4080038FC70 /* menu */ = {
  1582. isa = PBXGroup;
  1583. children = (
  1584. 7D0699C017CB1FAE00713BEB /* Settings@2x.png */,
  1585. 7D0699C117CB1FAE00713BEB /* TVShows.png */,
  1586. 7D0699C217CB1FAE00713BEB /* TVShows@2x.png */,
  1587. 7D0699C317CB1FAE00713BEB /* WifiUp.png */,
  1588. 7D0699C417CB1FAE00713BEB /* WifiUp@2x.png */,
  1589. 7D0699C517CB1FAE00713BEB /* WifiUpOn.png */,
  1590. 7D0699C617CB1FAE00713BEB /* WifiUpOn@2x.png */,
  1591. 7D0699C717CB1FAE00713BEB /* Dropbox@2x.png */,
  1592. 7D0699C817CB1FAE00713BEB /* Local.png */,
  1593. 7D0699C917CB1FAE00713BEB /* Local@2x.png */,
  1594. 7D0699CA17CB1FAE00713BEB /* MusicAlbums.png */,
  1595. 7D0699CB17CB1FAE00713BEB /* MusicAlbums@2x.png */,
  1596. 7D0699CC17CB1FAE00713BEB /* OpenNetStream.png */,
  1597. 7D0699CD17CB1FAE00713BEB /* OpenNetStream@2x.png */,
  1598. 7D0699CE17CB1FAE00713BEB /* Settings.png */,
  1599. 7D0699CF17CB1FAE00713BEB /* About.png */,
  1600. 7D0699D017CB1FAE00713BEB /* About@2x.png */,
  1601. 7D0699D117CB1FAE00713BEB /* AllFiles.png */,
  1602. 7D0699D217CB1FAE00713BEB /* AllFiles@2x.png */,
  1603. 7D0699D317CB1FAE00713BEB /* Downloads.png */,
  1604. 7D0699D417CB1FAE00713BEB /* Downloads@2x.png */,
  1605. 7D0699D517CB1FAE00713BEB /* Dropbox.png */,
  1606. 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */,
  1607. 7DC72D5C17B7E7C7008A26D0 /* download.png */,
  1608. 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */,
  1609. 7DEB3B771764A4040038FC70 /* input@2x.png */,
  1610. 7DEB3B781764A4040038FC70 /* input.png */,
  1611. 7DEB3B7317649F2C0038FC70 /* menuButton.png */,
  1612. 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */,
  1613. 7D514D3D17F779C6007B960C /* Drive@2x.png */,
  1614. 7D514D3E17F779C6007B960C /* DriveWhite.png */,
  1615. 7D514D3F17F779C6007B960C /* DriveWhite@2x.png */,
  1616. 7D514D4017F779C6007B960C /* Drive.png */,
  1617. );
  1618. name = menu;
  1619. sourceTree = "<group>";
  1620. };
  1621. 9B2E0CED17FB5B3F0098E3DF /* GoogleDrive */ = {
  1622. isa = PBXGroup;
  1623. children = (
  1624. 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */,
  1625. 9B5BEF2817FBAEA50016F9CB /* GTLDrive.h */,
  1626. );
  1627. name = GoogleDrive;
  1628. sourceTree = "<group>";
  1629. };
  1630. 9B51719A17EDEC8900F8FBA7 /* GoogleDrive Integration */ = {
  1631. isa = PBXGroup;
  1632. children = (
  1633. 7D30F3E3183AB34200FFC021 /* VLCGoogleDriveConstants.h */,
  1634. 7D30F3E4183AB34200FFC021 /* VLCGoogleDriveController.h */,
  1635. 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */,
  1636. 7D30F3E8183AB34200FFC021 /* VLCGoogleDriveTableViewController.h */,
  1637. 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */,
  1638. );
  1639. name = "GoogleDrive Integration";
  1640. sourceTree = "<group>";
  1641. };
  1642. A7924697170F0ED20036AAF2 /* Resources */ = {
  1643. isa = PBXGroup;
  1644. children = (
  1645. 7D47D6C81760CD2700E86BAD /* Movie VIew */,
  1646. 7D6B08FB174D773C00A05173 /* Settings.bundle */,
  1647. 29125E5317492219003F03E5 /* web */,
  1648. A7035BBD174519600057DFA7 /* iTunesArtwork */,
  1649. 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */,
  1650. 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */,
  1651. 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */,
  1652. 7D5DD5C617590ABF001421E3 /* About Contents.html */,
  1653. 7DEB3B7B1764A4080038FC70 /* menu */,
  1654. 7DBC3B3C1711DD1E00DCF688 /* Icons */,
  1655. A79246C6170F11DF0036AAF2 /* Localizable.strings */,
  1656. 7D10BC651743F9A100DA7059 /* External Playback */,
  1657. 7D10BC671743F9BA00DA7059 /* Launch Screen */,
  1658. 7D2159E4174FD31900EC00E8 /* Dropbox */,
  1659. 7D10BC661743F9AC00DA7059 /* Library View */,
  1660. );
  1661. path = Resources;
  1662. sourceTree = SOURCE_ROOT;
  1663. };
  1664. A7A0E9EB174BA66000162F25 /* PAPasscode */ = {
  1665. isa = PBXGroup;
  1666. children = (
  1667. 7D3784CA183A99BA009EE944 /* PAPasscodeViewController.h */,
  1668. 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */,
  1669. A7A0E9EC174BA66000162F25 /* Assets */,
  1670. );
  1671. name = PAPasscode;
  1672. path = ../PAPasscode;
  1673. sourceTree = "<group>";
  1674. };
  1675. A7A0E9EC174BA66000162F25 /* Assets */ = {
  1676. isa = PBXGroup;
  1677. children = (
  1678. 7D3784D9183A99D2009EE944 /* papasscode_background.png */,
  1679. 7D3784DA183A99D2009EE944 /* papasscode_background@2x.png */,
  1680. 7D3784DB183A99D2009EE944 /* papasscode_failed_bg.png */,
  1681. 7D3784DC183A99D2009EE944 /* papasscode_failed_bg@2x.png */,
  1682. 7D3784DD183A99D2009EE944 /* papasscode_marker.png */,
  1683. 7D3784DE183A99D2009EE944 /* papasscode_marker@2x.png */,
  1684. );
  1685. path = Assets;
  1686. sourceTree = "<group>";
  1687. };
  1688. A7B5316017E3728D00EAE4B3 /* upnpx */ = {
  1689. isa = PBXGroup;
  1690. children = (
  1691. A7B5316117E3728D00EAE4B3 /* BasicDeviceParser.h */,
  1692. A7B5316217E3728D00EAE4B3 /* BasicHTTPServer_ObjC.h */,
  1693. A7B5316317E3728D00EAE4B3 /* BasicParser.h */,
  1694. A7B5316417E3728D00EAE4B3 /* BasicParserAsset.h */,
  1695. A7B5316517E3728D00EAE4B3 /* BasicServiceParser.h */,
  1696. A7B5316617E3728D00EAE4B3 /* BasicUPnPDevice.h */,
  1697. A7B5316717E3728D00EAE4B3 /* BasicUPnPService.h */,
  1698. A7B5316817E3728D00EAE4B3 /* BinaryLight1Device.h */,
  1699. A7B5316917E3728D00EAE4B3 /* CocoaTools.h */,
  1700. A7B5316A17E3728D00EAE4B3 /* DeviceFactory.h */,
  1701. A7B5316B17E3728D00EAE4B3 /* DigitalSecurityCamera1Device.h */,
  1702. A7B5316C17E3728D00EAE4B3 /* DimmableLight1Device.h */,
  1703. A7B5316D17E3728D00EAE4B3 /* InternetGateway2Device.h */,
  1704. A7B5316E17E3728D00EAE4B3 /* LAN1Device.h */,
  1705. A7B5316F17E3728D00EAE4B3 /* LastChangeParser.h */,
  1706. A7B5317017E3728D00EAE4B3 /* MediaPlaylist.h */,
  1707. A7B5317117E3728D00EAE4B3 /* MediaRenderer1Device.h */,
  1708. A7B5317217E3728D00EAE4B3 /* MediaServer1BasicObject.h */,
  1709. A7B5317317E3728D00EAE4B3 /* MediaServer1ContainerObject.h */,
  1710. A7B5317417E3728D00EAE4B3 /* MediaServer1Device.h */,
  1711. A7B5317517E3728D00EAE4B3 /* MediaServer1ItemObject.h */,
  1712. A7B5317617E3728D00EAE4B3 /* MediaServer1ItemRes.h */,
  1713. A7B5317717E3728D00EAE4B3 /* MediaServerBasicObjectParser.h */,
  1714. A7B5317817E3728D00EAE4B3 /* ServiceFactory.h */,
  1715. A7B5317917E3728D00EAE4B3 /* SoapAction.h */,
  1716. A7B5317A17E3728D00EAE4B3 /* SoapActionFactory.h */,
  1717. A7B5317B17E3728D00EAE4B3 /* SoapActionsAVTransport1.h */,
  1718. A7B5317C17E3728D00EAE4B3 /* SoapActionsCallManagement1.h */,
  1719. A7B5317D17E3728D00EAE4B3 /* SoapActionsConfigurationManagement1.h */,
  1720. A7B5317E17E3728D00EAE4B3 /* SoapActionsConnectionManager1.h */,
  1721. A7B5317F17E3728D00EAE4B3 /* SoapActionsContentDirectory1.h */,
  1722. A7B5318017E3728D00EAE4B3 /* SoapActionsDeviceProtection1.h */,
  1723. A7B5318117E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraMotionImage1.h */,
  1724. A7B5318217E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraSettings1.h */,
  1725. A7B5318317E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraStillImage1.h */,
  1726. A7B5318417E3728D00EAE4B3 /* SoapActionsDimming1.h */,
  1727. A7B5318517E3728D00EAE4B3 /* SoapActionsInputConfig1.h */,
  1728. A7B5318617E3728D00EAE4B3 /* SoapActionsLANHostConfigManagement1.h */,
  1729. A7B5318717E3728D00EAE4B3 /* SoapActionsLayer3Forwarding1.h */,
  1730. A7B5318817E3728D00EAE4B3 /* SoapActionsMediaManagement1.h */,
  1731. A7B5318917E3728D00EAE4B3 /* SoapActionsMessaging1.h */,
  1732. A7B5318A17E3728D00EAE4B3 /* SoapActionsRendering.h */,
  1733. A7B5318B17E3728D00EAE4B3 /* SoapActionsRenderingControl1.h */,
  1734. A7B5318C17E3728D00EAE4B3 /* SoapActionsSwitchPower1.h */,
  1735. A7B5318D17E3728D00EAE4B3 /* SoapActionsWANCableLinkConfig1.h */,
  1736. A7B5318E17E3728D00EAE4B3 /* SoapActionsWANCommonInterfaceConfig1.h */,
  1737. A7B5318F17E3728D00EAE4B3 /* SoapActionsWANDSLLinkConfig1.h */,
  1738. A7B5319017E3728D00EAE4B3 /* SoapActionsWANEthernetLinkConfig1.h */,
  1739. A7B5319117E3728D00EAE4B3 /* SoapActionsWANIPConnection1.h */,
  1740. A7B5319217E3728D00EAE4B3 /* SoapActionsWANIPConnection2.h */,
  1741. A7B5319317E3728D00EAE4B3 /* SoapActionsWANIPv6FirewallControl1.h */,
  1742. A7B5319417E3728D00EAE4B3 /* SoapActionsWANPOTSLinkConfig1.h */,
  1743. A7B5319517E3728D00EAE4B3 /* SoapActionsWANPPPConnection1.h */,
  1744. A7B5319617E3728D00EAE4B3 /* SSDPDB_ObjC.h */,
  1745. A7B5319717E3728D00EAE4B3 /* StateVariable.h */,
  1746. A7B5319817E3728D00EAE4B3 /* StateVariableList.h */,
  1747. A7B5319917E3728D00EAE4B3 /* StateVariableRange.h */,
  1748. A7B5319A17E3728D00EAE4B3 /* TelephonyClient1Device.h */,
  1749. A7B5319B17E3728D00EAE4B3 /* TelephonyServer1Device.h */,
  1750. A7B5319C17E3728D00EAE4B3 /* UPnPDB.h */,
  1751. A7B5319D17E3728D00EAE4B3 /* UPnPEventParser.h */,
  1752. A7B5319E17E3728D00EAE4B3 /* UPnPEvents.h */,
  1753. A7B5319F17E3728D00EAE4B3 /* UPnPManager.h */,
  1754. A7B531A017E3728D00EAE4B3 /* WAN2Device.h */,
  1755. A7B531A117E3728D00EAE4B3 /* WANConnection1Device.h */,
  1756. A7B531A217E3728D00EAE4B3 /* WANConnection2Device.h */,
  1757. );
  1758. name = upnpx;
  1759. path = ImportedSources/upnpx/src/api;
  1760. sourceTree = SOURCE_ROOT;
  1761. };
  1762. A7C3025A175A538700AD4388 /* Extensions */ = {
  1763. isa = PBXGroup;
  1764. children = (
  1765. 7D3784C4183A9972009EE944 /* NSString+SupportedMedia.h */,
  1766. 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */,
  1767. 7D3784C6183A9972009EE944 /* UIDevice+SpeedCategory.h */,
  1768. 7D3784C7183A9972009EE944 /* UIDevice+SpeedCategory.m */,
  1769. );
  1770. name = Extensions;
  1771. sourceTree = "<group>";
  1772. };
  1773. A7D03A4817A4249F0022C16F /* MediaDiscovering */ = {
  1774. isa = PBXGroup;
  1775. children = (
  1776. 7D30F3CE183AB2AC00FFC021 /* VLCMediaFileDiscoverer.h */,
  1777. 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */,
  1778. );
  1779. name = MediaDiscovering;
  1780. sourceTree = "<group>";
  1781. };
  1782. CC1BBC441704936500A20CBF /* External VLC Libraries */ = {
  1783. isa = PBXGroup;
  1784. children = (
  1785. A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */,
  1786. CC1BBC421704935E00A20CBF /* MediaLibrary.mom */,
  1787. CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */,
  1788. );
  1789. name = "External VLC Libraries";
  1790. sourceTree = "<group>";
  1791. };
  1792. /* End PBXGroup section */
  1793. /* Begin PBXNativeTarget section */
  1794. 7D94FCDA16DE7D1000F2623B /* vlc-ios */ = {
  1795. isa = PBXNativeTarget;
  1796. buildConfigurationList = 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */;
  1797. buildPhases = (
  1798. 7D94FCD716DE7D1000F2623B /* Sources */,
  1799. 7D94FCD816DE7D1000F2623B /* Frameworks */,
  1800. 7D94FCD916DE7D1000F2623B /* Resources */,
  1801. );
  1802. buildRules = (
  1803. );
  1804. dependencies = (
  1805. );
  1806. name = "vlc-ios";
  1807. productName = AspenProject;
  1808. productReference = 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */;
  1809. productType = "com.apple.product-type.application";
  1810. };
  1811. /* End PBXNativeTarget section */
  1812. /* Begin PBXProject section */
  1813. 7D94FCD316DE7D1000F2623B /* Project object */ = {
  1814. isa = PBXProject;
  1815. attributes = {
  1816. CLASSPREFIX = VLC;
  1817. LastUpgradeCheck = 0460;
  1818. ORGANIZATIONNAME = VideoLAN;
  1819. };
  1820. buildConfigurationList = 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */;
  1821. compatibilityVersion = "Xcode 3.2";
  1822. developmentRegion = English;
  1823. hasScannedForEncodings = 0;
  1824. knownRegions = (
  1825. en,
  1826. ru,
  1827. de,
  1828. fr,
  1829. it,
  1830. ja,
  1831. fi,
  1832. id,
  1833. es,
  1834. da,
  1835. he,
  1836. nl,
  1837. sk,
  1838. tr,
  1839. uk,
  1840. vi,
  1841. "zh-Hans",
  1842. "zh-Hant",
  1843. mr,
  1844. gl,
  1845. ca,
  1846. bs,
  1847. pt,
  1848. el,
  1849. sl,
  1850. pl,
  1851. ar,
  1852. ko,
  1853. sv,
  1854. hu,
  1855. );
  1856. mainGroup = 7D94FCD216DE7D1000F2623B;
  1857. productRefGroup = 7D94FCDC16DE7D1000F2623B /* Products */;
  1858. projectDirPath = "";
  1859. projectRoot = "";
  1860. targets = (
  1861. 7D94FCDA16DE7D1000F2623B /* vlc-ios */,
  1862. );
  1863. };
  1864. /* End PBXProject section */
  1865. /* Begin PBXResourcesBuildPhase section */
  1866. 7D94FCD916DE7D1000F2623B /* Resources */ = {
  1867. isa = PBXResourcesBuildPhase;
  1868. buildActionMask = 2147483647;
  1869. files = (
  1870. 7D00161C177056B700649F27 /* main.js in Resources */,
  1871. 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */,
  1872. 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */,
  1873. 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */,
  1874. 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */,
  1875. CC1BBC431704935E00A20CBF /* MediaLibrary.mom in Resources */,
  1876. A79246A7170F0ED20036AAF2 /* Default-568h@2x.png in Resources */,
  1877. A79246A8170F0ED20036AAF2 /* Default.png in Resources */,
  1878. A79246A9170F0ED20036AAF2 /* Default@2x.png in Resources */,
  1879. 7D2A34A51805CDBA004078AA /* gradient-cell-ios7@2x.png in Resources */,
  1880. A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */,
  1881. A7CB0DB11716F72600050CF3 /* PlayingExternally@2x~iphone.png in Resources */,
  1882. A7CB0DB21716F72600050CF3 /* PlayingExternally~iphone.png in Resources */,
  1883. 7DBBF1A8183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib in Resources */,
  1884. A7CB0DB31716F72600050CF3 /* PlayingExternally~ipad.png in Resources */,
  1885. A7CB0DB41716F72600050CF3 /* PlayingExternally@2x~ipad.png in Resources */,
  1886. 7DBBF1A9183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib in Resources */,
  1887. 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */,
  1888. A7FF9F3E17428C1900999819 /* DeleteButton.png in Resources */,
  1889. A7FF9F4017428C3800999819 /* DeleteButton@2x.png in Resources */,
  1890. A7035BBE174519600057DFA7 /* iTunesArtwork in Resources */,
  1891. 29125E5617492219003F03E5 /* index.html in Resources */,
  1892. 7D6B08C2174A831900A05173 /* vlc-xmas.png in Resources */,
  1893. 7D6B08C3174A831900A05173 /* vlc-xmas@2x.png in Resources */,
  1894. 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */,
  1895. 7D5E39CA174FC2F3007DAFA1 /* dropbox-white.png in Resources */,
  1896. 7D5E39CB174FC2F3007DAFA1 /* dropbox-white@2x.png in Resources */,
  1897. 7D07F708175665ED00CDE21C /* navBarBackground@2x.png in Resources */,
  1898. 7D07F709175665ED00CDE21C /* navBarBackground.png in Resources */,
  1899. 7D07F70C175669A800CDE21C /* button.png in Resources */,
  1900. 7D07F70D175669A800CDE21C /* button@2x.png in Resources */,
  1901. 7D07F710175669D800CDE21C /* buttonHighlight.png in Resources */,
  1902. 7DBBF1A4183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib in Resources */,
  1903. 7D07F711175669D800CDE21C /* buttonHighlight@2x.png in Resources */,
  1904. 7D07F71417566C4A00CDE21C /* menuCone.png in Resources */,
  1905. 7D07F71517566C4A00CDE21C /* menuCone@2x.png in Resources */,
  1906. 7D07F71E175673D100CDE21C /* menuBtnBckHighlight@2x.png in Resources */,
  1907. 7DBBF1A7183AB4300009A339 /* VLCNetworkLoginViewController.xib in Resources */,
  1908. 7D07F71F175673D100CDE21C /* menuBtnBck@2x.png in Resources */,
  1909. 7D07F720175673D100CDE21C /* menuBtnBckHighlight.png in Resources */,
  1910. 7D07F721175673D100CDE21C /* menuBtnBck.png in Resources */,
  1911. 7D07F726175688D300CDE21C /* doneButton.png in Resources */,
  1912. 7D07F727175688D300CDE21C /* doneButton@2x.png in Resources */,
  1913. 7D07F728175688D300CDE21C /* doneButtonHighlight.png in Resources */,
  1914. 7D07F729175688D300CDE21C /* doneButtonHighlight@2x.png in Resources */,
  1915. 7D07F72E175691CC00CDE21C /* backButton.png in Resources */,
  1916. 7D07F72F175691CC00CDE21C /* backButton@2x.png in Resources */,
  1917. 7D07F730175691CC00CDE21C /* backButtonHighlight.png in Resources */,
  1918. 7D07F731175691CC00CDE21C /* backButtonHighlight@2x.png in Resources */,
  1919. 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */,
  1920. 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */,
  1921. 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */,
  1922. 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */,
  1923. 7DBBF19B183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib in Resources */,
  1924. 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */,
  1925. 7D47D6F91760CD8700E86BAD /* subtitleIcon.png in Resources */,
  1926. 7D47D6FA1760CD8700E86BAD /* subtitleIcon@2x.png in Resources */,
  1927. 7D47D6FB1760CD8700E86BAD /* videoEffectsIcon.png in Resources */,
  1928. 7D47D6FC1760CD8700E86BAD /* videoEffectsIcon@2x.png in Resources */,
  1929. 7D47D6FD1760CD8700E86BAD /* seekbarBg@2x.png in Resources */,
  1930. 7D47D6FE1760CD8700E86BAD /* slidermaximumTrack.png in Resources */,
  1931. 7D47D6FF1760CD8700E86BAD /* slidermaximumTrack@2x.png in Resources */,
  1932. 7D47D7001760CD8700E86BAD /* slidermaxValue.png in Resources */,
  1933. 7D47D7011760CD8700E86BAD /* slidermaxValue@2x.png in Resources */,
  1934. 7DBBF19F183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib in Resources */,
  1935. 7D47D7021760CD8700E86BAD /* sliderminiValue.png in Resources */,
  1936. 7D47D7031760CD8700E86BAD /* sliderminiValue@2x.png in Resources */,
  1937. 7D47D7061760CD8700E86BAD /* speedIcon.png in Resources */,
  1938. 7D47D7071760CD8700E86BAD /* speedIcon@2x.png in Resources */,
  1939. 7D47D7081760CD8700E86BAD /* playbackControllerBg@2x.png in Resources */,
  1940. 7D47D7091760CD8700E86BAD /* playbackDoneButton.png in Resources */,
  1941. 7D47D70A1760CD8700E86BAD /* playbackDoneButton@2x.png in Resources */,
  1942. 7D47D70B1760CD8700E86BAD /* playbackDoneButtonHighlight.png in Resources */,
  1943. 7D47D70C1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png in Resources */,
  1944. 7D47D70D1760CD8700E86BAD /* ratioButton.png in Resources */,
  1945. 7D47D70E1760CD8700E86BAD /* ratioButton@2x.png in Resources */,
  1946. 7D47D70F1760CD8700E86BAD /* ratioButtonHighlight.png in Resources */,
  1947. 7D47D7101760CD8700E86BAD /* ratioButtonHighlight@2x.png in Resources */,
  1948. 7D47D7111760CD8700E86BAD /* seekbarBg.png in Resources */,
  1949. 7D47D7131760CD8700E86BAD /* forwardIcon.png in Resources */,
  1950. 7D47D7141760CD8700E86BAD /* forwardIcon@2x.png in Resources */,
  1951. 7D47D7151760CD8700E86BAD /* knobSlider.png in Resources */,
  1952. 7D47D7161760CD8700E86BAD /* knobSlider@2x.png in Resources */,
  1953. 7D47D7191760CD8700E86BAD /* playbackControllerBg.png in Resources */,
  1954. 7D47D71A1760CD8700E86BAD /* playIcon.png in Resources */,
  1955. 7D47D71B1760CD8700E86BAD /* playIcon@2x.png in Resources */,
  1956. 7D47D71C1760CD8700E86BAD /* audioTrackIcon.png in Resources */,
  1957. 7D47D71D1760CD8700E86BAD /* audioTrackIcon@2x.png in Resources */,
  1958. 7D47D71E1760CD8700E86BAD /* backIcon.png in Resources */,
  1959. 7D47D71F1760CD8700E86BAD /* backIcon@2x.png in Resources */,
  1960. 7D47D7201760CD8700E86BAD /* ballSlider.png in Resources */,
  1961. 7D223E1A181EC56E00B36798 /* gradient-cell-ios7-ipad.png in Resources */,
  1962. 7D47D7211760CD8700E86BAD /* ballSlider@2x.png in Resources */,
  1963. 7DBBF19D183AB4300009A339 /* VLCCloudStorageTableViewController.xib in Resources */,
  1964. 7D47D7271760D77C00E86BAD /* pauseIcon.png in Resources */,
  1965. 7D47D7281760D77C00E86BAD /* pauseIcon@2x.png in Resources */,
  1966. 7D47D72B1760E3A000E86BAD /* sliderminimumTrack.png in Resources */,
  1967. 7D47D72C1760E3A000E86BAD /* sliderminimumTrack@2x.png in Resources */,
  1968. 7DBBF1AB183AB4300009A339 /* VLCPlaylistTableViewCell.xib in Resources */,
  1969. 7D6BD1841762026700AD311A /* thumbOverlayPhone@2x.png in Resources */,
  1970. 7D6BD1851762026700AD311A /* thumbOverlay@2x.png in Resources */,
  1971. 7DBBF19E183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib in Resources */,
  1972. 7D6BD1861762026700AD311A /* thumbOverlayPhone.png in Resources */,
  1973. 7D6BD1871762026700AD311A /* thumbOverlay.png in Resources */,
  1974. 7D1AC3041762996100BD2EB5 /* resetIcon.png in Resources */,
  1975. 7D1AC3051762996100BD2EB5 /* resetIcon@2x.png in Resources */,
  1976. 7D1AC30817629AB600BD2EB5 /* ratioIcon.png in Resources */,
  1977. 7D1AC30917629AB600BD2EB5 /* ratioIcon@2x.png in Resources */,
  1978. 7D1AC30C17629D4600BD2EB5 /* title.png in Resources */,
  1979. 7DBBF1A1183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib in Resources */,
  1980. 7D1AC30D17629D4600BD2EB5 /* title@2x.png in Resources */,
  1981. 7DEB3B5D17647B240038FC70 /* bottomBlackBar@2x.png in Resources */,
  1982. 7DBBF1AC183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib in Resources */,
  1983. 7DEB3B5E17647B240038FC70 /* bottomBlackBar.png in Resources */,
  1984. 7DBBF19C183AB4300009A339 /* VLCDownloadViewController.xib in Resources */,
  1985. 7DEB3B6017647DE30038FC70 /* iTunesArtwork@2x in Resources */,
  1986. 7DEB3B6217647E230038FC70 /* Icon@2x.png in Resources */,
  1987. 7DBBF1A3183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib in Resources */,
  1988. 7DEB3B6417647E370038FC70 /* Icon.png in Resources */,
  1989. 7DEB3B6617647E440038FC70 /* Icon-72.png in Resources */,
  1990. 7DBBF1A5183AB4300009A339 /* VLCMovieViewController~ipad.xib in Resources */,
  1991. 7DEB3B6817647E480038FC70 /* Icon-72@2x.png in Resources */,
  1992. 7DEB3B6D17647EC10038FC70 /* Icon-Small-50.png in Resources */,
  1993. 7DEB3B6E17647EC10038FC70 /* Icon-Small-50@2x.png in Resources */,
  1994. 7DEB3B6F17647EC10038FC70 /* Icon-Small.png in Resources */,
  1995. 7DEB3B7017647EC10038FC70 /* Icon-Small@2x.png in Resources */,
  1996. 7DEB3B7217649BEB0038FC70 /* Icon-512.png in Resources */,
  1997. 7DEB3B7517649F2C0038FC70 /* menuButton.png in Resources */,
  1998. 7DEB3B7617649F2C0038FC70 /* menuButton@2x.png in Resources */,
  1999. 7DEB3B791764A4040038FC70 /* input@2x.png in Resources */,
  2000. 7DEB3B7A1764A4040038FC70 /* input.png in Resources */,
  2001. 7DBBF198183AB4300009A339 /* VLCAboutViewController~ipad.xib in Resources */,
  2002. 7DBBF1A6183AB4300009A339 /* VLCMovieViewController~iphone.xib in Resources */,
  2003. 7DEB3B851764A4F40038FC70 /* movie@2x.png in Resources */,
  2004. 7DEB3B861764A4F40038FC70 /* movie@4x.png in Resources */,
  2005. 7DEB3B871764A4F40038FC70 /* blank@4x.png in Resources */,
  2006. 7DEB3B881764A4F40038FC70 /* folder.png in Resources */,
  2007. 7DEB3B891764A4F40038FC70 /* folder@2x.png in Resources */,
  2008. 7DEB3B8A1764A4F40038FC70 /* folder@4x.png in Resources */,
  2009. 7DEB3B8B1764A4F40038FC70 /* movie.png in Resources */,
  2010. 7DEB3B8C1764A4F40038FC70 /* blank.png in Resources */,
  2011. 7DEB3B8D1764A4F40038FC70 /* blank@2x.png in Resources */,
  2012. 7D223E1B181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png in Resources */,
  2013. 7AC8629D1765DC560011611A /* style.css in Resources */,
  2014. 7DF1166C176CC69A009EC05C /* volumeballslider.png in Resources */,
  2015. 7DF1166D176CC69A009EC05C /* volumeballslider@2x.png in Resources */,
  2016. A7990064176E9352009E8267 /* libraryBackground.png in Resources */,
  2017. 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */,
  2018. 7D2A34A41805CDBA004078AA /* gradient-cell-ios7.png in Resources */,
  2019. 7DBBF199183AB4300009A339 /* VLCAboutViewController~iphone.xib in Resources */,
  2020. 7DC72D5E17B7E7C7008A26D0 /* download@4x.png in Resources */,
  2021. 7DC72D5F17B7E7C7008A26D0 /* download.png in Resources */,
  2022. 7DC72D6017B7E7C7008A26D0 /* download@2x.png in Resources */,
  2023. 7D16035D17BF9FE600F29B34 /* sudHeaderBg.png in Resources */,
  2024. 7D16035E17BF9FE600F29B34 /* sudHeaderBg@2x.png in Resources */,
  2025. 7DBBF1A0183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib in Resources */,
  2026. 7D16035F17BF9FE600F29B34 /* headerSidebar@2x.png in Resources */,
  2027. 7D16036017BF9FE600F29B34 /* headerSidebar.png in Resources */,
  2028. 7D0699D617CB1FAE00713BEB /* Settings@2x.png in Resources */,
  2029. 7D711ADA18227A490094E4F0 /* GTMOAuth2ViewTouch.xib in Resources */,
  2030. 7D0699D717CB1FAE00713BEB /* TVShows.png in Resources */,
  2031. 7D0699D817CB1FAE00713BEB /* TVShows@2x.png in Resources */,
  2032. 7D0699D917CB1FAE00713BEB /* WifiUp.png in Resources */,
  2033. 7D0699DA17CB1FAE00713BEB /* WifiUp@2x.png in Resources */,
  2034. 7D0699DB17CB1FAE00713BEB /* WifiUpOn.png in Resources */,
  2035. 7D0699DC17CB1FAE00713BEB /* WifiUpOn@2x.png in Resources */,
  2036. 7D0699DD17CB1FAE00713BEB /* Dropbox@2x.png in Resources */,
  2037. 7DBBF19A183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib in Resources */,
  2038. 7D0699DE17CB1FAE00713BEB /* Local.png in Resources */,
  2039. 7D0699DF17CB1FAE00713BEB /* Local@2x.png in Resources */,
  2040. 7D0699E017CB1FAE00713BEB /* MusicAlbums.png in Resources */,
  2041. 7D0699E117CB1FAE00713BEB /* MusicAlbums@2x.png in Resources */,
  2042. 7D0699E217CB1FAE00713BEB /* OpenNetStream.png in Resources */,
  2043. 7D0699E317CB1FAE00713BEB /* OpenNetStream@2x.png in Resources */,
  2044. 7D0699E417CB1FAE00713BEB /* Settings.png in Resources */,
  2045. 7D0699E517CB1FAE00713BEB /* About.png in Resources */,
  2046. 7D0699E617CB1FAE00713BEB /* About@2x.png in Resources */,
  2047. 7D0699E717CB1FAE00713BEB /* AllFiles.png in Resources */,
  2048. 7D0699E817CB1FAE00713BEB /* AllFiles@2x.png in Resources */,
  2049. 7D0699E917CB1FAE00713BEB /* Downloads.png in Resources */,
  2050. 7D0699EA17CB1FAE00713BEB /* Downloads@2x.png in Resources */,
  2051. 7D0699EB17CB1FAE00713BEB /* Dropbox.png in Resources */,
  2052. 7D514D4117F779C6007B960C /* Drive@2x.png in Resources */,
  2053. 7D514D4217F779C6007B960C /* DriveWhite.png in Resources */,
  2054. 7D514D4317F779C6007B960C /* DriveWhite@2x.png in Resources */,
  2055. 7D514D4417F779C6007B960C /* Drive.png in Resources */,
  2056. 7D3784DF183A99D2009EE944 /* papasscode_background.png in Resources */,
  2057. 7D3784E0183A99D2009EE944 /* papasscode_background@2x.png in Resources */,
  2058. 7D3784E1183A99D2009EE944 /* papasscode_failed_bg.png in Resources */,
  2059. 7D3784E2183A99D2009EE944 /* papasscode_failed_bg@2x.png in Resources */,
  2060. 7D3784E3183A99D2009EE944 /* papasscode_marker.png in Resources */,
  2061. 7DBBF1AA183AB4300009A339 /* VLCPlaylistGridView.xib in Resources */,
  2062. 7D3784E4183A99D2009EE944 /* papasscode_marker@2x.png in Resources */,
  2063. 7D3784EC183A9A1E009EE944 /* VLC for iOS-Info.plist in Resources */,
  2064. );
  2065. runOnlyForDeploymentPostprocessing = 0;
  2066. };
  2067. /* End PBXResourcesBuildPhase section */
  2068. /* Begin PBXSourcesBuildPhase section */
  2069. 7D94FCD716DE7D1000F2623B /* Sources */ = {
  2070. isa = PBXSourcesBuildPhase;
  2071. buildActionMask = 2147483647;
  2072. files = (
  2073. 9BE4D1CE183D76950006346C /* VLCCloudStorageTableViewCell.m in Sources */,
  2074. 7DADC55F1704FABF001DAC63 /* OBSlider.m in Sources */,
  2075. 2915540117490A1E00B86CAD /* DDData.m in Sources */,
  2076. 2915540217490A1E00B86CAD /* DDNumber.m in Sources */,
  2077. 2915540317490A1E00B86CAD /* DDRange.m in Sources */,
  2078. 2915540417490A1E00B86CAD /* HTTPAuthenticationRequest.m in Sources */,
  2079. 2915540517490A1E00B86CAD /* HTTPConnection.m in Sources */,
  2080. 2915540617490A1E00B86CAD /* HTTPMessage.m in Sources */,
  2081. 2915540717490A1E00B86CAD /* HTTPServer.m in Sources */,
  2082. 2915540817490A1E00B86CAD /* MultipartFormDataParser.m in Sources */,
  2083. 2915540917490A1E00B86CAD /* MultipartMessageHeader.m in Sources */,
  2084. 2915540A17490A1E00B86CAD /* MultipartMessageHeaderField.m in Sources */,
  2085. 2915542217490A9C00B86CAD /* GCDAsyncSocket.m in Sources */,
  2086. 2915542417490A9C00B86CAD /* DDAbstractDatabaseLogger.m in Sources */,
  2087. 2915542517490A9C00B86CAD /* DDASLLogger.m in Sources */,
  2088. 2915542617490A9C00B86CAD /* DDFileLogger.m in Sources */,
  2089. 2915542717490A9C00B86CAD /* DDLog.m in Sources */,
  2090. 2915542817490A9C00B86CAD /* DDTTYLogger.m in Sources */,
  2091. 2915542917490A9C00B86CAD /* ContextFilterLogFormatter.m in Sources */,
  2092. 2915542A17490A9C00B86CAD /* DispatchQueueLogFormatter.m in Sources */,
  2093. 2915543B17490B9C00B86CAD /* HTTPAsyncFileResponse.m in Sources */,
  2094. 2915543C17490B9C00B86CAD /* HTTPDataResponse.m in Sources */,
  2095. 2915543D17490B9C00B86CAD /* HTTPDynamicFileResponse.m in Sources */,
  2096. 2915543E17490B9C00B86CAD /* HTTPErrorResponse.m in Sources */,
  2097. 2915543F17490B9C00B86CAD /* HTTPFileResponse.m in Sources */,
  2098. 2915544017490B9C00B86CAD /* HTTPRedirectResponse.m in Sources */,
  2099. 2915544117490B9C00B86CAD /* WebSocket.m in Sources */,
  2100. 7D6B08EB174D65B500A05173 /* IASKAppSettingsViewController.m in Sources */,
  2101. 7D6B08EC174D65B500A05173 /* IASKAppSettingsWebViewController.m in Sources */,
  2102. 7D6B08ED174D65B500A05173 /* IASKSpecifierValuesViewController.m in Sources */,
  2103. 7D6B08EE174D65B500A05173 /* IASKSettingsReader.m in Sources */,
  2104. 7D6B08EF174D65B500A05173 /* IASKSettingsStore.m in Sources */,
  2105. 7D6B08F0174D65B500A05173 /* IASKSettingsStoreFile.m in Sources */,
  2106. 7D6B08F1174D65B500A05173 /* IASKSettingsStoreUserDefaults.m in Sources */,
  2107. 7D6B08F2174D65B500A05173 /* IASKSpecifier.m in Sources */,
  2108. 7D6B08F3174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m in Sources */,
  2109. 7D6B08F4174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m in Sources */,
  2110. 7D6B08F5174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m in Sources */,
  2111. 9B5BEF2917FBAEA50016F9CB /* GTLDrive_Sources.m in Sources */,
  2112. 7D6B08F6174D65B500A05173 /* IASKSlider.m in Sources */,
  2113. 7D6B08F7174D65B500A05173 /* IASKSwitch.m in Sources */,
  2114. 7D6B08F8174D65B500A05173 /* IASKTextField.m in Sources */,
  2115. 7D31001D17B64AE100E6516D /* GHRevealViewController.m in Sources */,
  2116. 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */,
  2117. 7D37848F183A98B6009EE944 /* VLCMovieViewController.m in Sources */,
  2118. 7D378492183A98BF009EE944 /* VLCExternalDisplayController.m in Sources */,
  2119. 7D378499183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m in Sources */,
  2120. 7D37849A183A98D1009EE944 /* VLCPlaylistTableViewCell.m in Sources */,
  2121. 7D37849B183A98D1009EE944 /* VLCPlaylistViewController.m in Sources */,
  2122. 7D37849E183A98DD009EE944 /* VLCThumbnailsCache.m in Sources */,
  2123. 7D3784A1183A98EB009EE944 /* VLCBugreporter.m in Sources */,
  2124. 7D3784A6183A98F5009EE944 /* VLCAboutViewController.m in Sources */,
  2125. 7D3784A7183A98F5009EE944 /* VLCSettingsController.m in Sources */,
  2126. 7D3784AD183A9906009EE944 /* VLCDropboxController.m in Sources */,
  2127. 7D3784AE183A9906009EE944 /* VLCDropboxTableViewController.m in Sources */,
  2128. 7D3784BE183A9938009EE944 /* UIBarButtonItem+Theme.m in Sources */,
  2129. 7D3784BF183A9938009EE944 /* UINavigationController+Theme.m in Sources */,
  2130. 7DBBF182183AB3B80009A339 /* VLCAppDelegate.m in Sources */,
  2131. 7D3784C0183A9938009EE944 /* VLCLinearProgressIndicator.m in Sources */,
  2132. 7D3784C1183A9938009EE944 /* VLCMenuButton.m in Sources */,
  2133. 7D3784C2183A9938009EE944 /* VLCSlider.m in Sources */,
  2134. 7D3784C3183A9938009EE944 /* VLCStatusLabel.m in Sources */,
  2135. 7D3784C8183A9972009EE944 /* NSString+SupportedMedia.m in Sources */,
  2136. 7D3784C9183A9972009EE944 /* UIDevice+SpeedCategory.m in Sources */,
  2137. 7D3784CC183A99BA009EE944 /* PAPasscodeViewController.m in Sources */,
  2138. 7D3784E7183A99E1009EE944 /* Reachability.m in Sources */,
  2139. 7D3784E9183A9A15009EE944 /* main.m in Sources */,
  2140. 7D30F3C2183AB24C00FFC021 /* VLCHTTPConnection.m in Sources */,
  2141. 7D30F3C3183AB24C00FFC021 /* VLCHTTPFileDownloader.m in Sources */,
  2142. 7D30F3C4183AB24C00FFC021 /* VLCHTTPUploaderController.m in Sources */,
  2143. 7D30F3C7183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m in Sources */,
  2144. 7D30F3CA183AB27A00FFC021 /* VLCDownloadViewController.m in Sources */,
  2145. 7D30F3CD183AB29300FFC021 /* VLCMenuTableViewController.m in Sources */,
  2146. 7D30F3D0183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m in Sources */,
  2147. 7D30F3D7183AB2F100FFC021 /* VLCLocalNetworkListCell.m in Sources */,
  2148. 7D30F3D8183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m in Sources */,
  2149. 7D30F3D9183AB2F100FFC021 /* VLCLocalServerListViewController.m in Sources */,
  2150. 7D30F3DC183AB2F900FFC021 /* VLCNetworkLoginViewController.m in Sources */,
  2151. 7D30F3DF183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m in Sources */,
  2152. 7D30F3E2183AB33200FFC021 /* VLCSidebarViewCell.m in Sources */,
  2153. 7D30F3EA183AB34200FFC021 /* VLCGoogleDriveController.m in Sources */,
  2154. 9B088308183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m in Sources */,
  2155. 7D30F3EC183AB34200FFC021 /* VLCGoogleDriveTableViewController.m in Sources */,
  2156. );
  2157. runOnlyForDeploymentPostprocessing = 0;
  2158. };
  2159. /* End PBXSourcesBuildPhase section */
  2160. /* Begin PBXVariantGroup section */
  2161. 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */ = {
  2162. isa = PBXVariantGroup;
  2163. children = (
  2164. 7DE1862A175BA9A5006C0173 /* en */,
  2165. 7DE18635175BA9EB006C0173 /* ru */,
  2166. 7DE18639175BAEAF006C0173 /* de */,
  2167. 7DE1863A175BAEB0006C0173 /* fr */,
  2168. 7DE1863B175BAEB0006C0173 /* it */,
  2169. 7DE1863C175BAEB1006C0173 /* ja */,
  2170. 7D4BE734175F82CA00861CD4 /* fi */,
  2171. 7D7DA5301768A53200C7E95D /* id */,
  2172. 7DC222781773AB0900371B5C /* es */,
  2173. 7D5C204917999A64004F9443 /* da */,
  2174. 7D1AB27D179C98BF004CC271 /* he */,
  2175. 7D1AB282179C98CD004CC271 /* nl */,
  2176. 7D1AB287179C98D4004CC271 /* sk */,
  2177. 7D1AB28C179C98DC004CC271 /* tr */,
  2178. 7D1AB291179C98E4004CC271 /* uk */,
  2179. 7D1AB296179C98F4004CC271 /* vi */,
  2180. 7D1AB2A5179C99AE004CC271 /* zh-Hans */,
  2181. CC87147A17A56C05003C7383 /* mr */,
  2182. CC87147F17A56C61003C7383 /* gl */,
  2183. CC87148417A56C85003C7383 /* ca */,
  2184. 7D4C484517ACF982008D228B /* bs */,
  2185. CCBDA19117B2BEB500489D71 /* pt */,
  2186. 7D19492C17C661A300959800 /* el */,
  2187. 7D9B6B0917C9625F00F9425D /* sl */,
  2188. CCAF837F17DE46D800E3578F /* pl */,
  2189. CC75BE3B17DF4BBD00FAC19D /* ar */,
  2190. CC75BE4017DF744400FAC19D /* ko */,
  2191. 7D2AEDE117FB775900B5281E /* sv */,
  2192. 7D2AEDE617FB785200B5281E /* hu */,
  2193. );
  2194. name = "badgeUnread@2x~ipad.png";
  2195. sourceTree = "<group>";
  2196. };
  2197. 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */ = {
  2198. isa = PBXVariantGroup;
  2199. children = (
  2200. 7DE1862D175BA9A9006C0173 /* en */,
  2201. 7DE18637175BA9F9006C0173 /* ru */,
  2202. 7DE1863D175BAEB5006C0173 /* de */,
  2203. 7DE1863E175BAEB6006C0173 /* fr */,
  2204. 7DE1863F175BAEB7006C0173 /* it */,
  2205. 7DE18640175BAEB7006C0173 /* ja */,
  2206. 7D4BE735175F82CA00861CD4 /* fi */,
  2207. 7D7DA5311768A53200C7E95D /* id */,
  2208. 7DC222791773AB0900371B5C /* es */,
  2209. 7D5C204A17999A64004F9443 /* da */,
  2210. 7D1AB27E179C98BF004CC271 /* he */,
  2211. 7D1AB283179C98CD004CC271 /* nl */,
  2212. 7D1AB288179C98D4004CC271 /* sk */,
  2213. 7D1AB28D179C98DC004CC271 /* tr */,
  2214. 7D1AB292179C98E4004CC271 /* uk */,
  2215. 7D1AB297179C98F4004CC271 /* vi */,
  2216. 7D1AB2A6179C99AE004CC271 /* zh-Hans */,
  2217. CC87147B17A56C05003C7383 /* mr */,
  2218. CC87148017A56C61003C7383 /* gl */,
  2219. CC87148517A56C85003C7383 /* ca */,
  2220. 7D4C484617ACF982008D228B /* bs */,
  2221. CCBDA19217B2BEB500489D71 /* pt */,
  2222. 7D19492D17C661A300959800 /* el */,
  2223. 7D9B6B0A17C9626000F9425D /* sl */,
  2224. CCAF838017DE46D800E3578F /* pl */,
  2225. CC75BE3C17DF4BBD00FAC19D /* ar */,
  2226. CC75BE4117DF744500FAC19D /* ko */,
  2227. 7D2AEDE217FB775900B5281E /* sv */,
  2228. 7D2AEDE717FB785200B5281E /* hu */,
  2229. );
  2230. name = "badgeUnread@2x~iphone.png";
  2231. sourceTree = "<group>";
  2232. };
  2233. 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */ = {
  2234. isa = PBXVariantGroup;
  2235. children = (
  2236. 7DE18630175BA9AC006C0173 /* en */,
  2237. 7DE18636175BA9F4006C0173 /* ru */,
  2238. 7DE18645175BAEBF006C0173 /* de */,
  2239. 7DE18646175BAEC0006C0173 /* fr */,
  2240. 7DE18647175BAEC1006C0173 /* it */,
  2241. 7DE18648175BAEC2006C0173 /* ja */,
  2242. 7D4BE736175F82CA00861CD4 /* fi */,
  2243. 7D7DA5321768A53200C7E95D /* id */,
  2244. 7DC2227A1773AB0900371B5C /* es */,
  2245. 7D5C204B17999A64004F9443 /* da */,
  2246. 7D1AB27F179C98C0004CC271 /* he */,
  2247. 7D1AB284179C98CD004CC271 /* nl */,
  2248. 7D1AB289179C98D4004CC271 /* sk */,
  2249. 7D1AB28E179C98DC004CC271 /* tr */,
  2250. 7D1AB293179C98E4004CC271 /* uk */,
  2251. 7D1AB298179C98F4004CC271 /* vi */,
  2252. 7D1AB2A7179C99AE004CC271 /* zh-Hans */,
  2253. CC87147C17A56C05003C7383 /* mr */,
  2254. CC87148117A56C61003C7383 /* gl */,
  2255. CC87148617A56C85003C7383 /* ca */,
  2256. 7D4C484717ACF982008D228B /* bs */,
  2257. CCBDA19317B2BEB600489D71 /* pt */,
  2258. 7D19492E17C661A300959800 /* el */,
  2259. 7D9B6B0B17C9626000F9425D /* sl */,
  2260. CCAF838117DE46D800E3578F /* pl */,
  2261. CC75BE3D17DF4BBD00FAC19D /* ar */,
  2262. CC75BE4217DF744500FAC19D /* ko */,
  2263. 7D2AEDE317FB775900B5281E /* sv */,
  2264. 7D2AEDE817FB785200B5281E /* hu */,
  2265. );
  2266. name = "badgeUnread~ipad.png";
  2267. sourceTree = "<group>";
  2268. };
  2269. 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */ = {
  2270. isa = PBXVariantGroup;
  2271. children = (
  2272. 7DE18633175BA9AF006C0173 /* en */,
  2273. 7DE18638175BA9FC006C0173 /* ru */,
  2274. 7DE18641175BAEBA006C0173 /* de */,
  2275. 7DE18642175BAEBB006C0173 /* it */,
  2276. 7DE18643175BAEBC006C0173 /* fr */,
  2277. 7DE18644175BAEBD006C0173 /* ja */,
  2278. 7D4BE737175F82CA00861CD4 /* fi */,
  2279. 7D7DA5331768A53200C7E95D /* id */,
  2280. 7DC2227B1773AB0900371B5C /* es */,
  2281. 7D5C204C17999A64004F9443 /* da */,
  2282. 7D1AB280179C98C0004CC271 /* he */,
  2283. 7D1AB285179C98CD004CC271 /* nl */,
  2284. 7D1AB28A179C98D4004CC271 /* sk */,
  2285. 7D1AB28F179C98DC004CC271 /* tr */,
  2286. 7D1AB294179C98E4004CC271 /* uk */,
  2287. 7D1AB299179C98F4004CC271 /* vi */,
  2288. 7D1AB2A8179C99AE004CC271 /* zh-Hans */,
  2289. CC87147D17A56C05003C7383 /* mr */,
  2290. CC87148217A56C61003C7383 /* gl */,
  2291. CC87148717A56C85003C7383 /* ca */,
  2292. 7D4C484817ACF982008D228B /* bs */,
  2293. CCBDA19417B2BEB600489D71 /* pt */,
  2294. 7D19492F17C661A300959800 /* el */,
  2295. 7D9B6B0C17C9626000F9425D /* sl */,
  2296. CCAF838217DE46D800E3578F /* pl */,
  2297. CC75BE3E17DF4BBD00FAC19D /* ar */,
  2298. CC75BE4317DF744500FAC19D /* ko */,
  2299. 7D2AEDE417FB775900B5281E /* sv */,
  2300. 7D2AEDE917FB785200B5281E /* hu */,
  2301. );
  2302. name = "badgeUnread~iphone.png";
  2303. sourceTree = "<group>";
  2304. };
  2305. A79246C6170F11DF0036AAF2 /* Localizable.strings */ = {
  2306. isa = PBXVariantGroup;
  2307. children = (
  2308. A79246C7170F11DF0036AAF2 /* en */,
  2309. A79246C9170F11E40036AAF2 /* ru */,
  2310. 7DC87AEF17413634009DC250 /* de */,
  2311. 7DC87AF017413A17009DC250 /* fr */,
  2312. 7D6D13591758D1A00007EA9A /* it */,
  2313. 7D49E178175A47A4002D1450 /* ja */,
  2314. 7D4BE733175F82CA00861CD4 /* fi */,
  2315. 7D7DA52F1768A53200C7E95D /* id */,
  2316. 7DC222771773AB0900371B5C /* es */,
  2317. 7D5C204D17999A74004F9443 /* da */,
  2318. 7D1AB27C179C98BF004CC271 /* he */,
  2319. 7D1AB281179C98CD004CC271 /* nl */,
  2320. 7D1AB286179C98D4004CC271 /* sk */,
  2321. 7D1AB28B179C98DC004CC271 /* tr */,
  2322. 7D1AB290179C98E3004CC271 /* uk */,
  2323. 7D1AB295179C98F4004CC271 /* vi */,
  2324. 7D1AB2A4179C99AE004CC271 /* zh-Hans */,
  2325. CC87147917A56C05003C7383 /* mr */,
  2326. CC87147E17A56C61003C7383 /* gl */,
  2327. CC87148317A56C85003C7383 /* ca */,
  2328. 7D4C484417ACF982008D228B /* bs */,
  2329. CCBDA19017B2BEB500489D71 /* pt */,
  2330. 7D19492B17C661A300959800 /* el */,
  2331. 7D9B6B0817C9625F00F9425D /* sl */,
  2332. CCAF837E17DE46D800E3578F /* pl */,
  2333. CC75BE3A17DF4BBD00FAC19D /* ar */,
  2334. CC75BE3F17DF744400FAC19D /* ko */,
  2335. 7D2AEDE017FB775900B5281E /* sv */,
  2336. 7D2AEDE517FB785100B5281E /* hu */,
  2337. );
  2338. name = Localizable.strings;
  2339. sourceTree = "<group>";
  2340. };
  2341. /* End PBXVariantGroup section */
  2342. /* Begin XCBuildConfiguration section */
  2343. 7D94FD0816DE7D1100F2623B /* Debug */ = {
  2344. isa = XCBuildConfiguration;
  2345. buildSettings = {
  2346. ALWAYS_SEARCH_USER_PATHS = NO;
  2347. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2348. CLANG_CXX_LIBRARY = "libc++";
  2349. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2350. CLANG_WARN_EMPTY_BODY = YES;
  2351. CLANG_WARN_ENUM_CONVERSION = YES;
  2352. CLANG_WARN_INT_CONVERSION = YES;
  2353. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2354. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2355. COPY_PHASE_STRIP = NO;
  2356. GCC_C_LANGUAGE_STANDARD = gnu99;
  2357. GCC_DYNAMIC_NO_PIC = NO;
  2358. GCC_OPTIMIZATION_LEVEL = 0;
  2359. GCC_PREPROCESSOR_DEFINITIONS = (
  2360. "DEBUG=1",
  2361. "$(inherited)",
  2362. );
  2363. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  2364. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2365. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2366. GCC_WARN_UNUSED_VARIABLE = YES;
  2367. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2368. ONLY_ACTIVE_ARCH = YES;
  2369. SDKROOT = iphoneos;
  2370. TARGETED_DEVICE_FAMILY = "1,2";
  2371. };
  2372. name = Debug;
  2373. };
  2374. 7D94FD0916DE7D1100F2623B /* Release */ = {
  2375. isa = XCBuildConfiguration;
  2376. buildSettings = {
  2377. ALWAYS_SEARCH_USER_PATHS = NO;
  2378. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2379. CLANG_CXX_LIBRARY = "libc++";
  2380. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2381. CLANG_WARN_EMPTY_BODY = YES;
  2382. CLANG_WARN_ENUM_CONVERSION = YES;
  2383. CLANG_WARN_INT_CONVERSION = YES;
  2384. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2385. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2386. COPY_PHASE_STRIP = YES;
  2387. GCC_C_LANGUAGE_STANDARD = gnu99;
  2388. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2389. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2390. GCC_WARN_UNUSED_VARIABLE = YES;
  2391. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2392. OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
  2393. SDKROOT = iphoneos;
  2394. TARGETED_DEVICE_FAMILY = "1,2";
  2395. VALIDATE_PRODUCT = YES;
  2396. };
  2397. name = Release;
  2398. };
  2399. 7D94FD0B16DE7D1100F2623B /* Debug */ = {
  2400. isa = XCBuildConfiguration;
  2401. buildSettings = {
  2402. CLANG_ENABLE_OBJC_ARC = YES;
  2403. COPY_PHASE_STRIP = NO;
  2404. DEAD_CODE_STRIPPING = NO;
  2405. EXCLUDED_SOURCE_FILE_NAMES = "";
  2406. FRAMEWORK_SEARCH_PATHS = (
  2407. "$(inherited)",
  2408. "\"$(SRCROOT)/ImportedSources/Dropbox\"",
  2409. );
  2410. GCC_C_LANGUAGE_STANDARD = c99;
  2411. GCC_OPTIMIZATION_LEVEL = 2;
  2412. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2413. GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
  2414. HEADER_SEARCH_PATHS = (
  2415. "$(SRCROOT)/External/MobileVLCKit/include",
  2416. "$(SRCROOT)/External/MediaLibraryKit/include",
  2417. "$(SRCROOT)/ImportedSources/upnpx/src/api",
  2418. "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
  2419. "$(SRCROOT)/ImportedSources/GDrive/**",
  2420. );
  2421. INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
  2422. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2423. LIBRARY_SEARCH_PATHS = (
  2424. "$(inherited)",
  2425. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2426. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2427. "\"$(SRCROOT)/External/upnpx\"",
  2428. "\"$(SRCROOT)/External/gtl\"",
  2429. "\"$(SDKROOT)/usr/lib/system\"",
  2430. );
  2431. ONLY_ACTIVE_ARCH = YES;
  2432. OTHER_LDFLAGS = "-Wl,-no_pie";
  2433. PRODUCT_NAME = "VLC for iOS";
  2434. };
  2435. name = Debug;
  2436. };
  2437. 7D94FD0C16DE7D1100F2623B /* Release */ = {
  2438. isa = XCBuildConfiguration;
  2439. buildSettings = {
  2440. CLANG_ENABLE_OBJC_ARC = YES;
  2441. CODE_SIGN_IDENTITY = "iPhone Distribution";
  2442. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
  2443. COPY_PHASE_STRIP = YES;
  2444. DEAD_CODE_STRIPPING = NO;
  2445. EXCLUDED_SOURCE_FILE_NAMES = "";
  2446. FRAMEWORK_SEARCH_PATHS = (
  2447. "$(inherited)",
  2448. "\"$(SRCROOT)/ImportedSources/Dropbox\"",
  2449. );
  2450. GCC_C_LANGUAGE_STANDARD = c99;
  2451. GCC_OPTIMIZATION_LEVEL = 3;
  2452. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2453. GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
  2454. HEADER_SEARCH_PATHS = (
  2455. "$(SRCROOT)/External/MobileVLCKit/include",
  2456. "$(SRCROOT)/External/MediaLibraryKit/include",
  2457. "$(SRCROOT)/ImportedSources/upnpx/src/api",
  2458. "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
  2459. "$(SRCROOT)/ImportedSources/GDrive/**",
  2460. );
  2461. INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
  2462. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2463. LIBRARY_SEARCH_PATHS = (
  2464. "$(inherited)",
  2465. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2466. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2467. "\"$(SRCROOT)/External/upnpx\"",
  2468. "\"$(SRCROOT)/External/gtl\"",
  2469. "\"$(SDKROOT)/usr/lib/system\"",
  2470. );
  2471. ONLY_ACTIVE_ARCH = NO;
  2472. OTHER_LDFLAGS = "-Wl,-no_pie";
  2473. PRODUCT_NAME = "VLC for iOS";
  2474. PROVISIONING_PROFILE = "";
  2475. "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
  2476. };
  2477. name = Release;
  2478. };
  2479. A7035BBF174519E40057DFA7 /* Distribution */ = {
  2480. isa = XCBuildConfiguration;
  2481. buildSettings = {
  2482. ALWAYS_SEARCH_USER_PATHS = NO;
  2483. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2484. CLANG_CXX_LIBRARY = "libc++";
  2485. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2486. CLANG_WARN_EMPTY_BODY = YES;
  2487. CLANG_WARN_ENUM_CONVERSION = YES;
  2488. CLANG_WARN_INT_CONVERSION = YES;
  2489. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2490. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2491. COPY_PHASE_STRIP = YES;
  2492. GCC_C_LANGUAGE_STANDARD = gnu99;
  2493. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2494. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2495. GCC_WARN_UNUSED_VARIABLE = YES;
  2496. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2497. OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
  2498. SDKROOT = iphoneos;
  2499. TARGETED_DEVICE_FAMILY = "1,2";
  2500. VALIDATE_PRODUCT = YES;
  2501. };
  2502. name = Distribution;
  2503. };
  2504. A7035BC0174519E40057DFA7 /* Distribution */ = {
  2505. isa = XCBuildConfiguration;
  2506. buildSettings = {
  2507. CLANG_ENABLE_OBJC_ARC = YES;
  2508. CODE_SIGN_IDENTITY = "iPhone Distribution";
  2509. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
  2510. COPY_PHASE_STRIP = YES;
  2511. DEAD_CODE_STRIPPING = NO;
  2512. EXCLUDED_SOURCE_FILE_NAMES = "iTunesArtwork*";
  2513. FRAMEWORK_SEARCH_PATHS = (
  2514. "$(inherited)",
  2515. "\"$(SRCROOT)/ImportedSources/Dropbox\"",
  2516. );
  2517. GCC_C_LANGUAGE_STANDARD = c99;
  2518. GCC_OPTIMIZATION_LEVEL = 3;
  2519. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2520. GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
  2521. HEADER_SEARCH_PATHS = (
  2522. "$(SRCROOT)/External/MobileVLCKit/include",
  2523. "$(SRCROOT)/External/MediaLibraryKit/include",
  2524. "$(SRCROOT)/ImportedSources/upnpx/src/api",
  2525. "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
  2526. "$(SRCROOT)/ImportedSources/GDrive/**",
  2527. );
  2528. INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
  2529. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2530. LIBRARY_SEARCH_PATHS = (
  2531. "$(inherited)",
  2532. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2533. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2534. "\"$(SRCROOT)/External/upnpx\"",
  2535. "\"$(SRCROOT)/External/gtl\"",
  2536. "\"$(SDKROOT)/usr/lib/system\"",
  2537. );
  2538. ONLY_ACTIVE_ARCH = NO;
  2539. OTHER_LDFLAGS = "-Wl,-no_pie";
  2540. PRODUCT_NAME = "VLC for iOS";
  2541. PROVISIONING_PROFILE = "";
  2542. "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
  2543. };
  2544. name = Distribution;
  2545. };
  2546. /* End XCBuildConfiguration section */
  2547. /* Begin XCConfigurationList section */
  2548. 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */ = {
  2549. isa = XCConfigurationList;
  2550. buildConfigurations = (
  2551. 7D94FD0816DE7D1100F2623B /* Debug */,
  2552. 7D94FD0916DE7D1100F2623B /* Release */,
  2553. A7035BBF174519E40057DFA7 /* Distribution */,
  2554. );
  2555. defaultConfigurationIsVisible = 0;
  2556. defaultConfigurationName = Release;
  2557. };
  2558. 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */ = {
  2559. isa = XCConfigurationList;
  2560. buildConfigurations = (
  2561. 7D94FD0B16DE7D1100F2623B /* Debug */,
  2562. 7D94FD0C16DE7D1100F2623B /* Release */,
  2563. A7035BC0174519E40057DFA7 /* Distribution */,
  2564. );
  2565. defaultConfigurationIsVisible = 0;
  2566. defaultConfigurationName = Release;
  2567. };
  2568. /* End XCConfigurationList section */
  2569. };
  2570. rootObject = 7D94FCD316DE7D1000F2623B /* Project object */;
  2571. }