project.pbxproj 286 KB

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