project.pbxproj 257 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXAggregateTarget section */
  9. A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */ = {
  10. isa = PBXAggregateTarget;
  11. buildConfigurationList = 047602B1D747C5DFF0A1ABD18044F55F /* Build configuration list for PBXAggregateTarget "TensorFlowLite" */;
  12. buildPhases = (
  13. );
  14. dependencies = (
  15. );
  16. name = TensorFlowLite;
  17. productName = TensorFlowLite;
  18. };
  19. C5B80886873124CEC429CA0591705280 /* OpenCV2 */ = {
  20. isa = PBXAggregateTarget;
  21. buildConfigurationList = BF475B54D4A4AE15FC6C054D619BE835 /* Build configuration list for PBXAggregateTarget "OpenCV2" */;
  22. buildPhases = (
  23. );
  24. dependencies = (
  25. );
  26. name = OpenCV2;
  27. productName = OpenCV2;
  28. };
  29. /* End PBXAggregateTarget section */
  30. /* Begin PBXBuildFile section */
  31. 0457B2F5E5FA69A917BD55A6BE132310 /* PhotoAlbumListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DEB23BC4C9B425782EB31B80062A4C5C /* PhotoAlbumListViewController.m */; };
  32. 0587F7C72A7287CDCBC6AC616902486C /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 36385A4948651DCADD828F5EF6D7A860 /* MASLayoutConstraint.m */; };
  33. 0605FDB23FE0151491E4E0C40CF838D5 /* PhotoListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AD3E1CA688A587B432DA2756E0A3EFF /* PhotoListCellModel.m */; };
  34. 07CE54D7D50859C021FB6619731B22B4 /* PCSMotionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE15512E5F5FB68201632B7707388F8E /* PCSMotionManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  35. 088B9A9D3EDEFF43EA27FA52CD82FAE3 /* NSAttributedString+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9B8AF4ED2B2CE4E42F5526CB19ED56 /* NSAttributedString+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  36. 096AC833B02EE6665001C38162C9DCB9 /* PCSPreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = D2ED954FAD01284D05041067933C7F55 /* PCSPreviewViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  37. 09BDE34800E87D2F47F1E18EF4DEF7D9 /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A8D9791F0CBE7252EBEE929FC9ADBA /* View+MASAdditions.m */; };
  38. 09EF1684670510CCDF5B4DEA6BA230FC /* YYTextKeyboardManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF9CEB1C61C7F8A5B54BD4A7C592B8E /* YYTextKeyboardManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  39. 0AEF0ACFA21DA32D3D5695457BFDD3A2 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E170088911070D57FD1A2B1667B2358 /* MASCompositeConstraint.m */; };
  40. 0C22AF89759ACBDAB924A047CC973FC4 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B102F3E8763449C6DA99024D84CC479 /* MASConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  41. 0D4AAACA484E2811706156CAD3D00FD0 /* assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = EB32F7904EE68C76D11FD574AF55D49D /* assets.xcassets */; };
  42. 0E6B1E48CC6FF34D7BB93B2F320199E3 /* MovieListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C3BC45DCCD22DDB2A1A50D9B95E11CA /* MovieListViewController.m */; };
  43. 0F841877FE6DE7EF12881380F85AC41D /* LenzSDKConstant.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB0CB14031C9B76B03091D5BBF88BC2 /* LenzSDKConstant.h */; settings = {ATTRIBUTES = (Project, ); }; };
  44. 128F39484841CD3BF9A48C11393AC97A /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7B0F9E76BFC703B6AE35CEAED63132 /* MASUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
  45. 13FFFFED0ABC6DFA5773992D4B78A254 /* PCSThemeColorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 38DBB783B0942E39D2BF01F93FF528C6 /* PCSThemeColorManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  46. 18BB76665758898A6300E058C5F5C4EB /* PCSButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 270894F48E0EFD20CBE625C4C518C545 /* PCSButton.m */; };
  47. 18FF59BD85BDE080C251C114E51DD67D /* PhotoCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = 4C4DFBA4A4268406E16254384F37E4B8 /* PhotoCell.xib */; };
  48. 19E573EA615CFFC084E2F6E24920C4CA /* PanoramaOrientationView.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F4D8F00D7D1C4152E06D38B8FE340A /* PanoramaOrientationView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  49. 1A726A089BADF467D195598E60707907 /* Renderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 11995773E721362D45D960C7F36F5FEE /* Renderer.m */; };
  50. 1BAC44FBDE7B94B6235AB67801783C8F /* PhotoAlbumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 737A47B4E0E35EBE6387CB88C7946850 /* PhotoAlbumModel.m */; };
  51. 1E001BE5D56553A9411E49FFE8B7967A /* PreviewSingleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 63B220D48031C35E498E5CFC0D23425F /* PreviewSingleViewController.m */; };
  52. 1E79DE45F1B48C3E1CFC3D358670F6D9 /* ImageCacheLRU.h in Headers */ = {isa = PBXBuildFile; fileRef = C070A2948DBF6ACF51ABB9A525AC0C17 /* ImageCacheLRU.h */; settings = {ATTRIBUTES = (Project, ); }; };
  53. 1F3825ACAAB9A5615C1374E9621DF543 /* PCSPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C68370FBDFD7E1E2D62446A5A107EEE4 /* PCSPreviewViewController.m */; };
  54. 24779718BB22909F42B4DBC337C806E2 /* PhotoAlbumModel.h in Headers */ = {isa = PBXBuildFile; fileRef = FE2672179FA0031452C7C1ADF02565D3 /* PhotoAlbumModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  55. 250BF3C0D691C1155301D6A69DFCC1A9 /* YYLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 211AC6AABF8746373905DC5A809CDE0C /* YYLabel.m */; };
  56. 251ACAE97C5DD23D85F96B75B81DAFDF /* OperationNodeProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 794BF3777CD518DE31D09D74657CFB5F /* OperationNodeProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; };
  57. 251E6E8D4D79D73B433DA7466318A867 /* UIColor+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = CC22AD979B43CF8299D53467D031F41B /* UIColor+JKAdd.m */; };
  58. 25D3AAE31980C3B96BEE99FAF7756BF5 /* TimerLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = DA24CF5A186722511685D53E515B3CB8 /* TimerLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  59. 25FA3C6528B5A11A0E34E4E31EBFB50B /* OperationNodeMultiple.h in Headers */ = {isa = PBXBuildFile; fileRef = 132EF86515ED80C54165D1DFBE19F906 /* OperationNodeMultiple.h */; settings = {ATTRIBUTES = (Project, ); }; };
  60. 272624A016F0ACF2A7D268BBBE3842F9 /* YYTextUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DD7F686389F37BC86D818BBE03C501E /* YYTextUtilities.m */; };
  61. 27FB6D5E61CEEF9662F22FEE4A3B4BE5 /* VC.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 52BB4930B3A773F6833C87F4E518D1CB /* VC.storyboard */; };
  62. 280438A07252996B505A49E128B8C1D9 /* OperationNodePanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = CC1E8A339EEB246A8A4B279954316526 /* OperationNodePanorama.m */; };
  63. 285E5A17EE462D4A1A85C685FDAB4C93 /* LenzDataManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D785BBEA22031EFDAFA81BFFB1F4AF9E /* LenzDataManager.m */; };
  64. 2C267418FF64CF535B50A41839BF3B7C /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = DF49707D0225F15883F4B82A11B0581D /* SVRadialGradientLayer.m */; };
  65. 2C813C52CD7844028859DFA9BF21F8BF /* OperationNodeMovie.m in Sources */ = {isa = PBXBuildFile; fileRef = 61BFBD445E4773577F009B98A0C9F00E /* OperationNodeMovie.m */; };
  66. 2CB5F2C4AF5D8B06C8B58A4D9E2B5CB4 /* YYTextParser.m in Sources */ = {isa = PBXBuildFile; fileRef = FFF6810117FEEF2711F6E9B5437B1204 /* YYTextParser.m */; };
  67. 2D7C246475417FC6A782D046C0D42D25 /* YYTextDebugOption.h in Headers */ = {isa = PBXBuildFile; fileRef = D7209ABED45520DBB15093688385103A /* YYTextDebugOption.h */; settings = {ATTRIBUTES = (Project, ); }; };
  68. 313F958CF7B6CA846B71C93AEFDA4AC3 /* YYTextAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 5602D5A50654D2411340C83206CA742E /* YYTextAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
  69. 354F96934264C813E6C508AD638BE490 /* YYTextAsyncLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 48282D0FCEB41CD6BE0B733B9E3276F2 /* YYTextAsyncLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  70. 35F23426184D09A2B44FF30DC382C853 /* BaseViewTapGestureDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 40ADBC8E9327EC12F7F669F1D5083A90 /* BaseViewTapGestureDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
  71. 382170C92B564C580D8B13EF312CFFC8 /* YYTextSelectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9AA5E4741A4BEDAF6A49F8F9C0186BA /* YYTextSelectionView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  72. 38C022678CC5530FB8471C06B86FD511 /* YYTextAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = D261C8FD88EAB785CE5C9C275FCEC5A3 /* YYTextAttribute.m */; };
  73. 392D2E9824A2C7DA6E59FE1D117C64DA /* YYTextTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 513086AE9B8D8684A33900083C458971 /* YYTextTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; };
  74. 3934266CBA9FE57C6CD5C08D53916425 /* PhotoAlbumListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 441417AE3D7B9532F5670BCDB7B3872D /* PhotoAlbumListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  75. 398C2BE730F388D81749A5F8162B7B0A /* OperationNodeAIPanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A8E65F5922D5E671F7B2AB3C188CC4A /* OperationNodeAIPanorama.m */; };
  76. 3AFEB8BB04F08D9D4D327999DBC9C650 /* YYTextEffectWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F8345A474C4286A6A94325A1C7628EE /* YYTextEffectWindow.m */; };
  77. 3BE27E410EDE32DD238B9F5548FE062C /* UIPasteboard+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = EE288070A3F0D2824F62FC92399210F8 /* UIPasteboard+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  78. 3C95BE4E65D12110783214E777601F0B /* CollectionViewPlayerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2601909B3890525A9FD57BE8C09B21F6 /* CollectionViewPlayerCell.m */; };
  79. 3E6EA3FC28F1F1107C4F4EF7C7E862E2 /* YYTextContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B83909B01724B76CD2AAC540FBDDF96 /* YYTextContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  80. 3F52D30BED8DA231DE30EC8C9D8CFD9E /* VerticalButton.h in Headers */ = {isa = PBXBuildFile; fileRef = C66FEEEB5C9AB8BA4D84C055B0A72D47 /* VerticalButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  81. 3F7B81F374B8346123DD409C3286AB52 /* SVProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = B88175A0D217891D9AE0F5A88BC82630 /* SVProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; };
  82. 400F670FA3884DB51D21ADE0260535A1 /* PCSBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC54D90413C68D66AFC15D59F83D578 /* PCSBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  83. 40C0F9F7D853C5D6ABEF1723408643EA /* CustomModalViewTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = C28F183D9772C443C261382978D5FE59 /* CustomModalViewTransition.m */; };
  84. 41278D4AD72C64ADE4AE4B5519441C87 /* AlbumCounterLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 96204EC60102CDCD85F0001CDDAC3850 /* AlbumCounterLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  85. 41AB40FC1E6D365DD8FEBCCD1B6AFD76 /* PCSModeList.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD73FA80170708A746797CA594F6B28 /* PCSModeList.m */; };
  86. 4441E723F7B8A9AB0D79CF3F0809374E /* PhotoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 46F6CF30AA683165DC263A6F4A36351F /* PhotoCell.m */; };
  87. 450205ADAB70C7D0D617AE10D1AFDD54 /* PanoramaOrientationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D9F54A1478D4F68C029CCCB6BB7CC15 /* PanoramaOrientationView.m */; };
  88. 45E62DD475B57A6F7F90DBB9E7E2F66A /* YYTextWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 088CC7B10130F424D2F0FB6E51DDEB48 /* YYTextWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; };
  89. 49DF137D031584C02D0358D182BFC356 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 32EB214088A160CD9BBDD73798777B90 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  90. 4A4D5B4398AA8842C481BA810C366551 /* NSString+Localization.h in Headers */ = {isa = PBXBuildFile; fileRef = EE69367021FB112B58D82EA16E76222E /* NSString+Localization.h */; settings = {ATTRIBUTES = (Project, ); }; };
  91. 4B0B24C728A66FFB94FDD160A77C331A /* MoviePlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D21E243D3A634A857B5E73A166EBB150 /* MoviePlayerViewController.m */; };
  92. 4C1A8CD62B02DC1C5D557DF6755AB116 /* NSAttributedString+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 3212932ADFECD0AA6DDCCE1AC7015693 /* NSAttributedString+YYText.m */; };
  93. 4E69C73F6A03F1522559E6199D861729 /* YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AB600B687D3D1246EC08397708C05E /* YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  94. 50567A917EA0A48D6F9DF7F98BDD0A47 /* QuitMultipleModeAlertViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C92C83A8B9B067C252530E3C9CF4ED4 /* QuitMultipleModeAlertViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  95. 5074624ED734885134212D8E86DF7978 /* UIView+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8E430D8C35488AC558374EE4BA1474 /* UIView+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
  96. 50AA7506D7AEF6916DE9E346B070D49E /* YYTextContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = B556EF7B503F64AD5CEC85E2A13C5007 /* YYTextContainerView.m */; };
  97. 50D2E0DCD17C9A17AB8A1CF65FF5A70B /* PCSSessionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1905F2890898F5477C5019D7DFD454 /* PCSSessionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  98. 51655225AD2B10D7D9FA62FDF67268FB /* UIView+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 46E835F262CEBF51D5A0A8E520A1C160 /* UIView+YYText.m */; };
  99. 566A0BD4D87F4167E16C6C6F552A265B /* QuitMultipleModeAlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C2115105D1E5CAEB68E18DD1273FDC3B /* QuitMultipleModeAlertViewController.m */; };
  100. 56999FB9D57B1CDF220628D3EF230266 /* YYTextLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 58A56A8842D5A1FEE1A038D18A8C697A /* YYTextLayout.m */; };
  101. 59F84D443222F8EFEDB1F6FE6664EC77 /* NSParagraphStyle+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB1391C0E3CE18BBA966201906336CA /* NSParagraphStyle+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  102. 5A01C67D8035538914014C27435949FB /* YYTextMagnifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 798329F7930D5E2D0BAF2A4392ECD383 /* YYTextMagnifier.m */; };
  103. 5C65312243C01C32249E9EF470D3F576 /* PCSTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B9F19843D637C93ED4EBCB461D9D66C /* PCSTools.m */; };
  104. 5DE003B558DD544DEB2DF108B45540B2 /* PhotoListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA39441D89E3C66B56878E98C94C01D /* PhotoListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  105. 609B2534A1D55B97140F82334EAAF074 /* PCSSessionWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = CB54B514636CC00FD3A2B6DA70EA4A19 /* PCSSessionWrapper.m */; };
  106. 61B755544F3CF8C98AD23BE26FDFD640 /* OperationNodeMultiple.m in Sources */ = {isa = PBXBuildFile; fileRef = 94EE88B7988390139D81189286DCED7A /* OperationNodeMultiple.m */; };
  107. 6657624793EFD42547A5DD697DF45621 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5582002E4734B8D4F2CF285ACDADD796 /* NSArray+MASAdditions.m */; };
  108. 67494A117D518450878B615352E646E6 /* PCSSDF-prefix-header.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AD57B242CFB55F585BD5596FC7ABD87 /* PCSSDF-prefix-header.h */; settings = {ATTRIBUTES = (Project, ); }; };
  109. 6988A5EF8EBD8082E814546D3416FD48 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 35783455FD2B307819356A0F7317E3A2 /* MASViewAttribute.m */; };
  110. 69BE074EBCCD1609B8A3266B9E1BDF51 /* UIPasteboard+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = D18251050252D376DF0B0E328E1456FB /* UIPasteboard+YYText.m */; };
  111. 6A86D88978222FA77364D1DDABE16456 /* YYTextLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 618CA788C56DE22C036E596FBE111E14 /* YYTextLine.m */; };
  112. 6C6C58335B806982952365DB729DFCC1 /* BaseViewTapGestureDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 74B0C7B38FE7DBC6EF188F881134FE16 /* BaseViewTapGestureDelegate.m */; };
  113. 6CFAE66C26C21C2FA294B27FBF920205 /* CollectionViewPlayerCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B8605524B249E1D06FB886576CD11AC9 /* CollectionViewPlayerCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  114. 6F7E1DA85CE6BA0F5A37535B45444C45 /* OperationNodeAIPanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DB390F2F8637ECB1D7D96A822A43E1 /* OperationNodeAIPanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
  115. 7357E7BB21A887C78B7392A03960D404 /* YYTextRunDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 88FAFB718DB7E66A1777F7176F4268AF /* YYTextRunDelegate.m */; };
  116. 74131F906E19DC95DBDB2952FD7AA39D /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 323E11B6F2B40B2A30076A06EFA4ADE9 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Project, ); }; };
  117. 74BD392A50B1B5BC6A40E73DDDB597D3 /* QuitMultipleModeAlertViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2A3C694AF3328B029D5744E8AD11D789 /* QuitMultipleModeAlertViewController.xib */; };
  118. 75E1E9365D489E4BF17660E103176D39 /* UIButton+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = E3B6B440887188DDDED752C654672D90 /* UIButton+Layout.m */; };
  119. 760493D274A9E392B31BEBE5AA0C1253 /* MovieListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C988D03DBBEF4A7C669CD67B41B6E17 /* MovieListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  120. 76BF2819171670B59F38BF1AFFD19C2C /* PCSModeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 78CA6FD07D5923CCDAB3C2A758EF5AE7 /* PCSModeList.h */; settings = {ATTRIBUTES = (Project, ); }; };
  121. 76D687991CE0FF9E13AC69A38CCDDE2A /* PCSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B4B8B83193D79CB893F3146973BD2E8B /* PCSBaseViewController.m */; };
  122. 775662F010A17D291166CE090B61089C /* LenzSDK-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 48C54F1C97D437C71404C5679FD34D98 /* LenzSDK-dummy.m */; };
  123. 77BE3FACF437B245949D29B526B8170E /* AlertView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9852554B70837C421BB1BF372DD480C /* AlertView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  124. 792096B21494CDA91EE9A86FCE39DE26 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = B48AB8CF97AD45F50A994EA915B73369 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
  125. 799AB1E57B2C3E9A54B3ACC8D2E9F90C /* YYTextSelectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C026261DAF6B7FCAAC6266495F4C9E /* YYTextSelectionView.m */; };
  126. 7C7444C5E16A668CBA57BF77AB2081E0 /* MoviePlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 57E8904661BEB271AF282CB3E969BB7D /* MoviePlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  127. 7D43F4B41E0A6FC937A21F2AFB958D8B /* YYTextInput.m in Sources */ = {isa = PBXBuildFile; fileRef = 5139E1B09F2B5848CCD436B04764720B /* YYTextInput.m */; };
  128. 7D62F151B79C1174E57AC62204B7DE97 /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = F1D0BCBD1EAB5B86E9FA822EA39A1C0C /* Localizable.strings */; };
  129. 7E50466763FED5F1FBDD5F747C8D596F /* YYTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C2487CD193E3829F0F4233A6CCB0DC /* YYTextView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  130. 7F0F816CEEFE21E5B99E57E9FB0A2CD2 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B61B2FCBF8E1560AE0A58437888D0F9 /* Masonry-dummy.m */; };
  131. 822B56A21B986609D3EC9C8D70A2A5B1 /* PaddingLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 848D5F84D3D3A5BE00EB4C85731D61E9 /* PaddingLabel.m */; };
  132. 832C6B5FB0052C044659D664E1CF6A3E /* LenzDataManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 24E6FD5645C50D31CAF316183893EED5 /* LenzDataManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  133. 833CF336BDC43BE8CE2CA98721EBFEBA /* SVIndefiniteAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A171F24B8E17DEE3264D323615C52E8 /* SVIndefiniteAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  134. 840911759E9848C6CBF5F6EC2A68E300 /* PanoramaGuideView.m in Sources */ = {isa = PBXBuildFile; fileRef = 382201D83F462FFB7A51D4EA89AB1F1B /* PanoramaGuideView.m */; };
  135. 85132FDD8F6539A1B08A282A537A830E /* YYText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFE967524F3F12E190B1415022D9825 /* YYText-dummy.m */; };
  136. 851DD1BBF564F048C8E44971B99B31E2 /* CustomModalViewTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E8448C1CD71F60B17168F38D5EFCB996 /* CustomModalViewTransition.h */; settings = {ATTRIBUTES = (Project, ); }; };
  137. 8814415DB5B65CA206DF7B0DF90F8AF2 /* OperationNodeMovie.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AACDE67265880AE9089E9C28045E49E /* OperationNodeMovie.h */; settings = {ATTRIBUTES = (Project, ); }; };
  138. 89C4DDB3101019B42FBDF54C56CCBF6F /* YYTextKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D300D3849C0E80A0B48827AFFEA12087 /* YYTextKeyboardManager.m */; };
  139. 8BC94582682DE8C26D4F4D8D527718A0 /* LenzCameraNativeModuleForRN.h in Headers */ = {isa = PBXBuildFile; fileRef = A18B0F43BF8B46398895C484672AA18D /* LenzCameraNativeModuleForRN.h */; settings = {ATTRIBUTES = (Project, ); }; };
  140. 8C0FD0EC7361FAB1D8CDCA33C1397314 /* PhotoCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 05A8554CD5368D1EFF9456BE0ADC1339 /* PhotoCollectionViewCell.m */; };
  141. 8D853B6CFB4AAE6BD4D8834EDE507C52 /* LenzCameraSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BBC9EF8E30EB4D6A88070CA2B6DA9E4 /* LenzCameraSDK.m */; };
  142. 8F0A541C536FEED47B8DFE59B2DFE75F /* YYTextRubyAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 088D76EF02787F533E77623067B6EE35 /* YYTextRubyAnnotation.m */; };
  143. 8F2D0CEF3FE624CFE596897A443C846B /* AlbumCounterLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = AC8C722485B7F2ACD02555DAAA9404AF /* AlbumCounterLabel.m */; };
  144. 907FBCE9C748373E9CE91FC1891861AD /* YYTextEffectWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = D113E44A4699A41E403B4A497E44F2A4 /* YYTextEffectWindow.h */; settings = {ATTRIBUTES = (Project, ); }; };
  145. 910C15522553ABD90952B5D1CBBC06BF /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = DD5004B676A5C04A78B0C779EC6ACDDA /* SVProgressHUD.m */; };
  146. 92F709CBC078ED87404E467276633867 /* CameraTextureRenderPass.m in Sources */ = {isa = PBXBuildFile; fileRef = 54849A70BFAFE633A8C7FC4144ACABC9 /* CameraTextureRenderPass.m */; };
  147. 94A8C44E30FFBC697F014E02281246E4 /* MovieListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 577820CCEA384ECB2388766E1F2BDA7B /* MovieListCellModel.m */; };
  148. 94B8E301F7808095F4A7E499D8AD6994 /* YYTextUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF0C9EDC9FACDAE37FC3FA2964122BD /* YYTextUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
  149. 988BCAE8B19A1595F7067156597A776C /* UIView+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CAD41A57A8B36805097520423BF764A /* UIView+JKAdd.m */; };
  150. 9AEB0DF19C7D2D6C3BCB0E08C9FC6D0C /* PCSRoundButton.m in Sources */ = {isa = PBXBuildFile; fileRef = E8B7780F9EEAE210A6D463AF750A89F2 /* PCSRoundButton.m */; };
  151. 9B134BDBE3BA184F38CF7D76B471F336 /* CameraManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D863BA832EE9AD30846CA7A323A33B3 /* CameraManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  152. 9B167CF3AAD78649616A13D628B25AAE /* YYTextMagnifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7608FDCE402048449721AFAC227E4052 /* YYTextMagnifier.h */; settings = {ATTRIBUTES = (Project, ); }; };
  153. 9CA5B684886A4C68A319B3C23794E8C6 /* PhotoListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 147D82876AA74DD7AF6AC6604C453BF1 /* PhotoListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  154. 9DA267B47F69E7FDCFC821579DE77828 /* UIView+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FD3E27D73EB13273099A8434852078 /* UIView+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  155. 9F57911DFBD411A9BCC84C8CF5D08FAF /* PhotoCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3725E15E9A375B2D95B167EC60B78705 /* PhotoCollectionViewCell.xib */; };
  156. A0A28B9C80B00D7CF3FB3A31D5C7D784 /* QuitMultipleModeAlertViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 2A3C694AF3328B029D5744E8AD11D789 /* QuitMultipleModeAlertViewController.xib */; };
  157. A25511D6D32A5E35CAD7FE41A0D219CE /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E565F5A1FAD79799DA4DD176AD4C23 /* MASViewConstraint.m */; };
  158. A652A1046D4F348E94BEC4B553EE0074 /* NSParagraphStyle+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = F60CB6B0940620E867F47A43C000CEED /* NSParagraphStyle+YYText.m */; };
  159. A8131873ECEDE9FF8C73D75C04D04311 /* YYTextDebugOption.m in Sources */ = {isa = PBXBuildFile; fileRef = 928F19E4450531B0C3B2A304FFBAD967 /* YYTextDebugOption.m */; };
  160. A9C09F6A04785F0791F97BB17411E199 /* YYTextAsyncLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D265818019F4C0A249894FC32A0538E /* YYTextAsyncLayer.m */; };
  161. AA676C8CA53EF4CCE03DDEA40546A53B /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A26A56F9F80ECD3F646B2B727370C7 /* SVProgressAnimatedView.m */; };
  162. AA874CF67D76250D05F1F9880E699100 /* LenzCameraSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = A259ABB2FB8587B25F3CE31A81AF77DB /* LenzCameraSDK.h */; settings = {ATTRIBUTES = (Project, ); }; };
  163. AAEC7A1CA34905CBD81705C1C29BF076 /* YYTextWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = F0091361036E037214A58062DD16AFF7 /* YYTextWeakProxy.m */; };
  164. AC5FB636DBBFEF2D13083145F97397B5 /* VerticalButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A61E40B4EC8B12E481DF288A8056A416 /* VerticalButton.m */; };
  165. AD0E58D1DA61008CC9D2ECA7D99931DF /* Renderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B4EA76A793A36B9A7E2A62BC2290475 /* Renderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  166. AD690FBF82E707502264B5B548C06BAB /* PaddingLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D2A94C29E212D49C7015949F887EE29 /* PaddingLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  167. AE3E6DE2DD4E44743EE245C937A2FD86 /* PhotoCollectionViewCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = 3725E15E9A375B2D95B167EC60B78705 /* PhotoCollectionViewCell.xib */; };
  168. AE918B3D4D898F6E092FC01421675183 /* PreviewSingleViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E6B1EDCBBD3DF2BBC654E0653FED5C /* PreviewSingleViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  169. AF5DF97297858FDF56B74EA9AB537F73 /* PCSTools.h in Headers */ = {isa = PBXBuildFile; fileRef = D97B06C519D5FD968D64BBFA38380A55 /* PCSTools.h */; settings = {ATTRIBUTES = (Project, ); }; };
  170. B21B315F6710F3D7A1F15C316D4C0A8B /* YYTextLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A0134B7DFC892F7D8942843B702EECBF /* YYTextLayout.h */; settings = {ATTRIBUTES = (Project, ); }; };
  171. B24E8CB920E54CB0AB2031DC45E6309C /* PanoramaGuideView.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F7F53531C9AF5E2E79AD7D9A3407E1 /* PanoramaGuideView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  172. B40D47B34F11690E43F035789C5DE8DA /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = C66C450F27C4A5097C9E02DE7DCEF9D1 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  173. B4D7B82D12DEDD2575499CE0BDDEE929 /* PCSThemeColorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4706A525AE4CDF0BE5B7D1D3FC8CD549 /* PCSThemeColorManager.m */; };
  174. B5C891743DDB373C2070045A273DAEFC /* OperationNodeVideoBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 55AE0A7F12C1B365E94D377198CA213C /* OperationNodeVideoBase.m */; };
  175. B6219F1F8E312B2DB1645381C1A0B6C5 /* UIButton+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC5F0EE0C785DD9A6EABC8BB2E8A37F /* UIButton+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; };
  176. B733258720AFD6BDE2CF3D81E480EE68 /* UIImage+name.m in Sources */ = {isa = PBXBuildFile; fileRef = DDA696B09B5BC657EDD9EEF4F23DD670 /* UIImage+name.m */; };
  177. B7818CE6F8AA04A33BF595BBD4A2B145 /* SVRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C514DF69105C042F1AE2ABC91803AF /* SVRadialGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  178. B9F0E9FEC9BBDF63D42118D7A179FD2F /* YYTextArchiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9EF6A811033DF78BBBEC3D0D7B1A06 /* YYTextArchiver.h */; settings = {ATTRIBUTES = (Project, ); }; };
  179. BAB7CEC5429C294ECF410DD57EFBE768 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C0EF01C047A7FEE68E5418B5310DDF5 /* MASConstraint.m */; };
  180. BDADBD43BDC7BECE9C83CBBB7D342EB9 /* NSString+Localization.m in Sources */ = {isa = PBXBuildFile; fileRef = 72D2724FCE108356AFD27AAAA85AD29A /* NSString+Localization.m */; };
  181. BE79602231583FCB73384FC994DCEDE1 /* OperationNodeSingle.h in Headers */ = {isa = PBXBuildFile; fileRef = C95726C7DA3589EBD7FAA2ABEB600403 /* OperationNodeSingle.h */; settings = {ATTRIBUTES = (Project, ); }; };
  182. BEB96124A1C79D9FA310ABFC72BBF3E7 /* PhotoCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3951DFF49E14FD1C04CF8D4E44CDE8 /* PhotoCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  183. C080AB2E977A89F74EA9FDD24F4E1ADA /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = BC674E2B3882A8B024EA11D3EDA96A05 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  184. C32CFA34BB3E878385AA98D711DBE99C /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = A473A64BA4823CEB1B77F1547BD26BBE /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  185. C3C5E8E3FC572F8EBFD4CAE47F323398 /* PCSAutherView.m in Sources */ = {isa = PBXBuildFile; fileRef = 17ECB324C92792CE652F02D80110CB3F /* PCSAutherView.m */; };
  186. C46121A4923B2A765972AB5B5EEF63D2 /* TimerLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = B6F94606FA87D8B2445674226E49FD82 /* TimerLabel.m */; };
  187. C71920F0DB62EC9C637AB90771917713 /* YYTextLine.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE688CB6C22990A9E1CA752BB6AC77F /* YYTextLine.h */; settings = {ATTRIBUTES = (Project, ); }; };
  188. C722F1286E53582414771A11397942F0 /* PCSMotionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 58BF6761F644CCA3A7432CCD6AC62619 /* PCSMotionManager.m */; };
  189. C846394BB0A223F84AAE14657EE82F33 /* PhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 4C4DFBA4A4268406E16254384F37E4B8 /* PhotoCell.xib */; };
  190. C93280D8FD9E51C34EB5B9846E4879E1 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = B6152C74D04927B37768ECA5C413A39D /* MASConstraintMaker.m */; };
  191. CB5E619A4BC229FE3DD2708AD5FBE7F8 /* SVProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACC936729FB445B6079C9113BFB0915 /* SVProgressHUD-dummy.m */; };
  192. CC37AE742280F0B6F00D4D582412D5C1 /* UIImage+ext.h in Headers */ = {isa = PBXBuildFile; fileRef = CF80620DC46E1071703B82C65C4F8691 /* UIImage+ext.h */; settings = {ATTRIBUTES = (Project, ); }; };
  193. CCACD951EBA053A7BDA787A1F7D734A2 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 71D82F32955C03B4BE062D50CBDD63C5 /* Localizable.strings */; };
  194. CCB2FF8B221F0B5FF75BFC167B86F43A /* MovieListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4772D9ED8D1C541CAAE9F38D5D1F4C /* MovieListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  195. CD554FE9A07B0869EC0628051A132B9F /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4422F57F95BCAEE8E0D37ACA7839F1 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  196. CF4F422EDB26E3F0086501FE3AC873F5 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D148391102C9E7C3871EC94238BA859B /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  197. D0D4C0A103A2FFF2E4C3B50DC660C2D6 /* YYTextArchiver.m in Sources */ = {isa = PBXBuildFile; fileRef = 80980F92B228E81481943ACDE0BA1488 /* YYTextArchiver.m */; };
  198. D0D8F3B42D52AE05C8D9C941AD85ACFA /* LenzCachedResourceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = FB7F504F8A524512D202DA7F25483C6C /* LenzCachedResourceModel.m */; };
  199. D23054FF8B3ADB0D5E1A0E9849F33C05 /* OperationNodeVideoBase.h in Headers */ = {isa = PBXBuildFile; fileRef = F267B927DC7BAF6021098E564C3F76D3 /* OperationNodeVideoBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
  200. D23599D90B550B24867AF8160A0351EF /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = CF96F2C7EC4B6437454D8220D5243A97 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  201. D45E969063D160910DB43072B874D272 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 227095F2E2705735D5DD170ACF8443CC /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Project, ); }; };
  202. D6253CD02D2BB961FAA14906DA82D71F /* OperationNodeSingle.m in Sources */ = {isa = PBXBuildFile; fileRef = 222058D5572B27C1FC096C12DA2BD59F /* OperationNodeSingle.m */; };
  203. D6928DE621B2E9421EAADC7C757F8DE1 /* AlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 10539AEE58F0381B6EF07BEFACB22ED9 /* AlertView.m */; };
  204. D6C15833BC3960F13AE42C8A8F69C252 /* YYLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5071D90FBED6EF5030E504AB525E29C3 /* YYLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  205. D75BCF2469DE68D68798BE1FCB3E9977 /* OperationNodePanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F90AD0F5B4B1BF84C6DFECDF847870 /* OperationNodePanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
  206. D7F19B573B53C3D0A84A653955EE8002 /* SDKParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 04FEEFB937242429CBBD1C058A96300B /* SDKParameters.h */; settings = {ATTRIBUTES = (Project, ); }; };
  207. D91EBA9FD87A0B08E91D4C314770740F /* DBManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F804CD80B152A54BC10E41E1A166C91 /* DBManager.m */; };
  208. DE9A01EFFA3A6800B14237E2D5C328B7 /* UIColor+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 65824B0596404B72CF94D81BDEF094BF /* UIColor+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
  209. DEE9832B83940526B41CE15554BEBA3D /* YYTextTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = D8598BA55A6B943918E5F4A3580A8F57 /* YYTextTransaction.m */; };
  210. DF196A4951C976043102E787FE526122 /* PhotoListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED6F71CA8E3F8CF21B9C2771949FFD2 /* PhotoListViewController.m */; };
  211. E0A4CB4297E75C95B32A3B800286A471 /* PCSAutherView.h in Headers */ = {isa = PBXBuildFile; fileRef = 321F26B9FE4C35D5697DD119365010EB /* PCSAutherView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  212. E156AABA1405D11BCFF83B49E30AE097 /* DBManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C4FEF0D34E6832727EC76E4268FB5368 /* DBManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  213. E18DCED10D32A465BDB3E941C12D8AE1 /* CameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 80AD5EA8FE43A2A7559A4C137E94A9F1 /* CameraManager.m */; };
  214. E299759D280604913A22B8449090BBEC /* YYTextParser.h in Headers */ = {isa = PBXBuildFile; fileRef = C7529CDD561B76983A08A7CDB558093D /* YYTextParser.h */; settings = {ATTRIBUTES = (Project, ); }; };
  215. E31A4F93F88E2DC2ABD3BBFE1264BA1A /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CA823439A1050ECE966231061E1230 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  216. E48C457EF5B6E962BC3A5331EB509B06 /* PhotoCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CDDA53C6D1FD9CC26D3E7EE8D241DA4 /* PhotoCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  217. E5878CBD4C58FE01BAA883D16F15A199 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7E70EE65C8B436ADCE623518B16FE6 /* Masonry.h */; settings = {ATTRIBUTES = (Project, ); }; };
  218. E665D3428255198A096907AE60FE4F01 /* LenzHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE3BD74EAD7C908B20106186733CE20 /* LenzHeader.h */; settings = {ATTRIBUTES = (Project, ); }; };
  219. E84BEA0BF2560B3C2AB9F5731593774E /* SDKParameters.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B69F1B64B862CC6F2EFDFF117AA6BED /* SDKParameters.m */; };
  220. E8DA8552870948BF8857AB9F124B0C62 /* LenzCachedResourceModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 790E702C63C46563EC782E05661FC13B /* LenzCachedResourceModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  221. E9240453120F9166C915537A5A24A44B /* CameraTextureRenderPass.h in Headers */ = {isa = PBXBuildFile; fileRef = 02CBBDB78E8D3F8A784AE3BBADD7B4E2 /* CameraTextureRenderPass.h */; settings = {ATTRIBUTES = (Project, ); }; };
  222. E9AF4C2E8C1C00A54B5943CA9CDD11B6 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C8EF7032A09396718DC47C5598B84B /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  223. F09B81C3DB48C216E3E7BB4087B31F4B /* ImageCacheLRU.m in Sources */ = {isa = PBXBuildFile; fileRef = 295D21E3A53E31CD670E1455FF043490 /* ImageCacheLRU.m */; };
  224. F0A69C7C9E3DF84EC370F5735031B52B /* PCSButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A2FC96D2BEB86CD5F7A89A2077CA3D /* PCSButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  225. F11E6E7A084CCBD2C13474F864CB2CF1 /* VC.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 52BB4930B3A773F6833C87F4E518D1CB /* VC.storyboard */; };
  226. F18890AB5B28633B7A72C413558239BB /* PCSRoundButton.h in Headers */ = {isa = PBXBuildFile; fileRef = B5A19982A588A867B82B4E7F1EB11048 /* PCSRoundButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  227. F2F3D949E365BDEFA8D83D84961162CD /* YYTextRunDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CCFC8CF5DE6FD893159815293F71BD5 /* YYTextRunDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
  228. F396A0EEAE27E21AD1956896FB6B39C9 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B59450A36F461CAC82435BFD5079CE /* NSLayoutConstraint+MASDebugAdditions.m */; };
  229. F3AD0A778BAF908C9001EA397E26FB03 /* YYTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = C3D1B99A2AB26B52A0577F0603D10F4D /* YYTextView.m */; };
  230. F986EE522539B0B705EDA954826F2BA4 /* YYTextInput.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B11EAD869D170766C139AAB767FE589 /* YYTextInput.h */; settings = {ATTRIBUTES = (Project, ); }; };
  231. F990DA86F518DAB9F62376CF9C6C8F73 /* UIImage+name.h in Headers */ = {isa = PBXBuildFile; fileRef = BE10F47AF781EB7BBCB9D14B9104B2AB /* UIImage+name.h */; settings = {ATTRIBUTES = (Project, ); }; };
  232. F99C25CEE1765A3DD8823537E0D99508 /* YYTextRubyAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAF7D0AC12DB31F7DA4E118E9B84F30 /* YYTextRubyAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; };
  233. FAC546662980341DCC78A31F421A2FD5 /* moire_mobilenetv2_79.tflite in Resources */ = {isa = PBXBuildFile; fileRef = 492ADF58A3C187F270A845FE2446FD93 /* moire_mobilenetv2_79.tflite */; };
  234. FACCBE7066906AD830F874ACD58F34EB /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */; };
  235. FAF82BD9E4CB9987002D2E7E422AF4DD /* SVProgressAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6127F5AECD4FEB53E4D5751D3D39426B /* SVProgressAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  236. FB4511E5BCE877790E4D938B56B5A3DC /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = 9AD160B158374E1268261DE2F1F95802 /* Localizable.strings */; };
  237. FBDF03171249C2E14271EB02B57D4148 /* UIImage+ext.m in Sources */ = {isa = PBXBuildFile; fileRef = 65DA86D1D31C68B1C53FA936955FD971 /* UIImage+ext.m */; };
  238. FBEB26811C927C71CA08D4FDFB195D13 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87915C9C50FDE9906265DF4122AB7E1F /* SVIndefiniteAnimatedView.m */; };
  239. FFCB1299A6D31C3FF94A83167C8B5B46 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A682665B0F2F184E8E8A631EADACC029 /* ViewController+MASAdditions.m */; };
  240. /* End PBXBuildFile section */
  241. /* Begin PBXContainerItemProxy section */
  242. 0EF8503935C0BA2BED35E06B0E44FCEE /* PBXContainerItemProxy */ = {
  243. isa = PBXContainerItemProxy;
  244. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  245. proxyType = 1;
  246. remoteGlobalIDString = C5B80886873124CEC429CA0591705280;
  247. remoteInfo = OpenCV2;
  248. };
  249. 16275221CBBFA109008751B6F5A26157 /* PBXContainerItemProxy */ = {
  250. isa = PBXContainerItemProxy;
  251. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  252. proxyType = 1;
  253. remoteGlobalIDString = E7EBC84E7AFBA5D0740969B92CA58D87;
  254. remoteInfo = "LenzSDK-LenzCameraNativeModuleForRN";
  255. };
  256. 3219A28A06CCAE15C7E0982EC33C1CA6 /* PBXContainerItemProxy */ = {
  257. isa = PBXContainerItemProxy;
  258. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  259. proxyType = 1;
  260. remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
  261. remoteInfo = YYText;
  262. };
  263. 39DA4FADEA314D649841CB5E46AB9D09 /* PBXContainerItemProxy */ = {
  264. isa = PBXContainerItemProxy;
  265. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  266. proxyType = 1;
  267. remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
  268. remoteInfo = SVProgressHUD;
  269. };
  270. 62DA452E3C9A7586FC9EEB86608AC967 /* PBXContainerItemProxy */ = {
  271. isa = PBXContainerItemProxy;
  272. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  273. proxyType = 1;
  274. remoteGlobalIDString = C5B80886873124CEC429CA0591705280;
  275. remoteInfo = OpenCV2;
  276. };
  277. 9CA2646B7AD6824558C8C9708CA02D96 /* PBXContainerItemProxy */ = {
  278. isa = PBXContainerItemProxy;
  279. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  280. proxyType = 1;
  281. remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
  282. remoteInfo = Masonry;
  283. };
  284. A4B94C48015A92EE1FE8ED4FB086EE7E /* PBXContainerItemProxy */ = {
  285. isa = PBXContainerItemProxy;
  286. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  287. proxyType = 1;
  288. remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
  289. remoteInfo = YYText;
  290. };
  291. AC9443339D7C11C04FE7EAD749BE12BE /* PBXContainerItemProxy */ = {
  292. isa = PBXContainerItemProxy;
  293. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  294. proxyType = 1;
  295. remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
  296. remoteInfo = Masonry;
  297. };
  298. B3E04DD764BA5AD7560240DB9F915748 /* PBXContainerItemProxy */ = {
  299. isa = PBXContainerItemProxy;
  300. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  301. proxyType = 1;
  302. remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
  303. remoteInfo = TensorFlowLite;
  304. };
  305. C1AAE2AB8D33293CE478F8ACB0BC965C /* PBXContainerItemProxy */ = {
  306. isa = PBXContainerItemProxy;
  307. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  308. proxyType = 1;
  309. remoteGlobalIDString = 22955C745E4D0669DBEFF1F1997E3D7E;
  310. remoteInfo = LenzSDK;
  311. };
  312. CE6312AEA23B80FA168B5DD897CE5EC1 /* PBXContainerItemProxy */ = {
  313. isa = PBXContainerItemProxy;
  314. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  315. proxyType = 1;
  316. remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
  317. remoteInfo = TensorFlowLite;
  318. };
  319. D7E742D398E3CE064F53532687D7A783 /* PBXContainerItemProxy */ = {
  320. isa = PBXContainerItemProxy;
  321. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  322. proxyType = 1;
  323. remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
  324. remoteInfo = SVProgressHUD;
  325. };
  326. /* End PBXContainerItemProxy section */
  327. /* Begin PBXFileReference section */
  328. 00912CB6F3380F8736F373DBAE8FA6B1 /* gcompoundkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcompoundkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcompoundkernel.hpp; sourceTree = "<group>"; };
  329. 016835B2CB0F997B18130818A55BF273 /* intrin_forward.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_forward.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_forward.hpp; sourceTree = "<group>"; };
  330. 01A780DB077A4A47F42BDC179AA41478 /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/ocl/imgproc.hpp; sourceTree = "<group>"; };
  331. 02CBBDB78E8D3F8A784AE3BBADD7B4E2 /* CameraTextureRenderPass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraTextureRenderPass.h; sourceTree = "<group>"; };
  332. 0351474B7BF7C6FC5575FF9ADF06D86A /* cuda.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda.inl.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda.inl.hpp; sourceTree = "<group>"; };
  333. 04FEEFB937242429CBBD1C058A96300B /* SDKParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SDKParameters.h; sourceTree = "<group>"; };
  334. 05A47A26AE90A67542B409FED863B461 /* affine.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = affine.hpp; path = opencv2.framework/Versions/A/Headers/core/affine.hpp; sourceTree = "<group>"; };
  335. 05A8554CD5368D1EFF9456BE0ADC1339 /* PhotoCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCollectionViewCell.m; sourceTree = "<group>"; };
  336. 060E98502F6CA9163FD871330D9CD96D /* ml.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ml.hpp; path = opencv2.framework/Versions/A/Headers/ml.hpp; sourceTree = "<group>"; };
  337. 07F2A216767C8D159754726A2A81D675 /* msa_macros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macros.h; path = opencv2.framework/Versions/A/Headers/core/hal/msa_macros.h; sourceTree = "<group>"; };
  338. 082566197EF48E6F7A71E6334ADCAD6C /* simplex_downhill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = simplex_downhill.h; path = opencv2.framework/Versions/A/Headers/flann/simplex_downhill.h; sourceTree = "<group>"; };
  339. 0856197302CEC1F919C5C338BD78CEE8 /* transform.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = transform.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/transform.hpp; sourceTree = "<group>"; };
  340. 088CC7B10130F424D2F0FB6E51DDEB48 /* YYTextWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextWeakProxy.h; path = YYText/Utility/YYTextWeakProxy.h; sourceTree = "<group>"; };
  341. 088D76EF02787F533E77623067B6EE35 /* YYTextRubyAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRubyAnnotation.m; path = YYText/String/YYTextRubyAnnotation.m; sourceTree = "<group>"; };
  342. 08BFCD1C62FCD4506F9DA013F88C7848 /* layer.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = layer.hpp; path = opencv2.framework/Versions/A/Headers/dnn/layer.hpp; sourceTree = "<group>"; };
  343. 0A8E65F5922D5E671F7B2AB3C188CC4A /* OperationNodeAIPanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeAIPanorama.m; sourceTree = "<group>"; };
  344. 0AE4E7473E40F2E5F0F54290ED44474F /* OpenCV2.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenCV2.release.xcconfig; sourceTree = "<group>"; };
  345. 0B5FA1FD5E0D53DA991F2CEA9CC25EF8 /* convert.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = convert.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/convert.hpp; sourceTree = "<group>"; };
  346. 0B9F19843D637C93ED4EBCB461D9D66C /* PCSTools.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSTools.m; sourceTree = "<group>"; };
  347. 0BB309B43F5FCD98B7DDFF51BF91A966 /* nn_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = nn_index.h; path = opencv2.framework/Versions/A/Headers/flann/nn_index.h; sourceTree = "<group>"; };
  348. 0C3BC45DCCD22DDB2A1A50D9B95E11CA /* MovieListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListViewController.m; sourceTree = "<group>"; };
  349. 0C86F1E27973CC9BB8FC5AAEBB3EF03D /* dynamic_bitset.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dynamic_bitset.h; path = opencv2.framework/Versions/A/Headers/flann/dynamic_bitset.h; sourceTree = "<group>"; };
  350. 0CCFF32221DFD12A850133665FAD2D11 /* composite_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = composite_index.h; path = opencv2.framework/Versions/A/Headers/flann/composite_index.h; sourceTree = "<group>"; };
  351. 0D1341154A8F9632231A017F5EF36AAF /* LenzSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.release.xcconfig; sourceTree = "<group>"; };
  352. 0E3951DFF49E14FD1C04CF8D4E44CDE8 /* PhotoCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCollectionViewCell.h; sourceTree = "<group>"; };
  353. 103317BDA0F870667D6439FDE8C7E938 /* exception_ptr.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = exception_ptr.hpp; path = opencv2.framework/Versions/A/Headers/core/detail/exception_ptr.hpp; sourceTree = "<group>"; };
  354. 105074DF368CDD3C8F822A1667300763 /* intrin_sse.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_sse.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_sse.hpp; sourceTree = "<group>"; };
  355. 10539AEE58F0381B6EF07BEFACB22ED9 /* AlertView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlertView.m; sourceTree = "<group>"; };
  356. 106F4EABCF29A7E8C231476B88510999 /* opencl_clamdfft.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_clamdfft.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_clamdfft.hpp; sourceTree = "<group>"; };
  357. 10A011BC26BDCBB5F9647BE315437C7F /* intrin_avx512.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_avx512.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_avx512.hpp; sourceTree = "<group>"; };
  358. 10E8ABCF79BD99BBE04EA3646AAA225F /* allocator_stats.impl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = allocator_stats.impl.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/allocator_stats.impl.hpp; sourceTree = "<group>"; };
  359. 1160A588884958BA14D83256FFE827EA /* optional.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = optional.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/optional.hpp; sourceTree = "<group>"; };
  360. 117EFCF6E7B32E335C9B7CCFD7261E86 /* videoio_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = videoio_c.h; path = opencv2.framework/Versions/A/Headers/videoio/videoio_c.h; sourceTree = "<group>"; };
  361. 11995773E721362D45D960C7F36F5FEE /* Renderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Renderer.m; sourceTree = "<group>"; };
  362. 1201FE7AD08CFBA3A2E4E37F61372E6F /* traits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = traits.hpp; path = opencv2.framework/Versions/A/Headers/core/traits.hpp; sourceTree = "<group>"; };
  363. 12300D1BFF3E3D721D9D7FFA89437B68 /* fast_math.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = fast_math.hpp; path = opencv2.framework/Versions/A/Headers/core/fast_math.hpp; sourceTree = "<group>"; };
  364. 132EF86515ED80C54165D1DFBE19F906 /* OperationNodeMultiple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMultiple.h; sourceTree = "<group>"; };
  365. 13A72F0706564BBBEC05CB216C11039C /* mat.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = mat.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/mat.hpp; sourceTree = "<group>"; };
  366. 13C684D045B3B8191101E814A1AA04B9 /* kmeans_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kmeans_index.h; path = opencv2.framework/Versions/A/Headers/flann/kmeans_index.h; sourceTree = "<group>"; };
  367. 147D82876AA74DD7AF6AC6604C453BF1 /* PhotoListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListViewController.h; sourceTree = "<group>"; };
  368. 15066538C9CE55CCB258E26025B979FB /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/plaidml/core.hpp; sourceTree = "<group>"; };
  369. 15A57DCBCE72C119F39D4358DEA252FA /* variant.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = variant.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/variant.hpp; sourceTree = "<group>"; };
  370. 15D648B64B38A42641E36E6EBBEF005A /* detection_based_tracker.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = detection_based_tracker.hpp; path = opencv2.framework/Versions/A/Headers/objdetect/detection_based_tracker.hpp; sourceTree = "<group>"; };
  371. 15E6B1EDCBBD3DF2BBC654E0653FED5C /* PreviewSingleViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PreviewSingleViewController.h; sourceTree = "<group>"; };
  372. 16CCE46985B1244C60C8BF8A276E3651 /* imgcodecs.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgcodecs.hpp; path = opencv2.framework/Versions/A/Headers/imgcodecs.hpp; sourceTree = "<group>"; };
  373. 17ECB324C92792CE652F02D80110CB3F /* PCSAutherView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSAutherView.m; sourceTree = "<group>"; };
  374. 187E70EDAF9430D74631B4D0D8941B04 /* intrin_msa.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_msa.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_msa.hpp; sourceTree = "<group>"; };
  375. 1889889547A7F4A6AAE37D7FC2436EBD /* logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logger.h; path = opencv2.framework/Versions/A/Headers/flann/logger.h; sourceTree = "<group>"; };
  376. 19B40C19F1226825A99FAFB90C461179 /* objdetect.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = objdetect.hpp; path = opencv2.framework/Versions/A/Headers/objdetect/objdetect.hpp; sourceTree = "<group>"; };
  377. 19C1DCB0EBA4EC9BA68CAF34CE406991 /* LenzSDK-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LenzSDK-prefix.pch"; sourceTree = "<group>"; };
  378. 1AC5F0EE0C785DD9A6EABC8BB2E8A37F /* UIButton+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIButton+Layout.h"; sourceTree = "<group>"; };
  379. 1B11EAD869D170766C139AAB767FE589 /* YYTextInput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextInput.h; path = YYText/Component/YYTextInput.h; sourceTree = "<group>"; };
  380. 1D102FF3F737033574436B4747A787DE /* render.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = render.hpp; path = opencv2.framework/Versions/A/Headers/gapi/render/render.hpp; sourceTree = "<group>"; };
  381. 1D24FBCB23C1AAE6939B6A8FD7BCEE46 /* opencl_svm_hsa_extension.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_svm_hsa_extension.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_svm_hsa_extension.hpp; sourceTree = "<group>"; };
  382. 1D265818019F4C0A249894FC32A0538E /* YYTextAsyncLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAsyncLayer.m; path = YYText/Utility/YYTextAsyncLayer.m; sourceTree = "<group>"; };
  383. 1E55DF1E1567B4469F3A4C6F86BFB770 /* color.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = color.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/color.hpp; sourceTree = "<group>"; };
  384. 1E630D5EB5CF2EC9D607987BD79ECAF8 /* all_indices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = all_indices.h; path = opencv2.framework/Versions/A/Headers/flann/all_indices.h; sourceTree = "<group>"; };
  385. 1F0E00D4EC7DDA5E0F50D373BFD7DBF9 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = "<group>"; };
  386. 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LenzCameraNativeModuleForRN_Example-resources.sh"; sourceTree = "<group>"; };
  387. 1F5FE9E80B7F7F23B4585205FAD6F1AC /* shape_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = shape_utils.hpp; path = opencv2.framework/Versions/A/Headers/dnn/shape_utils.hpp; sourceTree = "<group>"; };
  388. 1FFED36A657123030ABB700256D73F15 /* Masonry */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Masonry; path = libMasonry.a; sourceTree = BUILT_PRODUCTS_DIR; };
  389. 2099448B18D102E15ECD25C39D5D326B /* saturate.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = saturate.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/saturate.hpp; sourceTree = "<group>"; };
  390. 211AC6AABF8746373905DC5A809CDE0C /* YYLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYLabel.m; path = YYText/YYLabel.m; sourceTree = "<group>"; };
  391. 2175890DB000CF76EAEEA45790F88246 /* LenzSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.debug.xcconfig; sourceTree = "<group>"; };
  392. 21A0FB8B4DE60C09AF93D9C6BD016931 /* cv_cpu_dispatch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cv_cpu_dispatch.h; path = opencv2.framework/Versions/A/Headers/core/cv_cpu_dispatch.h; sourceTree = "<group>"; };
  393. 221ABB67735F9CADA80F4021AFFA2132 /* kdtree_single_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kdtree_single_index.h; path = opencv2.framework/Versions/A/Headers/flann/kdtree_single_index.h; sourceTree = "<group>"; };
  394. 222058D5572B27C1FC096C12DA2BD59F /* OperationNodeSingle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeSingle.m; sourceTree = "<group>"; };
  395. 2224DBA15D27B944A3AB7B5B77309434 /* opencl_clamdblas.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_clamdblas.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_clamdblas.hpp; sourceTree = "<group>"; };
  396. 227095F2E2705735D5DD170ACF8443CC /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = "<group>"; };
  397. 23A54F8A83D9258C2C8870DB92717BF5 /* timer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = timer.h; path = opencv2.framework/Versions/A/Headers/flann/timer.h; sourceTree = "<group>"; };
  398. 24E6FD5645C50D31CAF316183893EED5 /* LenzDataManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzDataManager.h; sourceTree = "<group>"; };
  399. 2601909B3890525A9FD57BE8C09B21F6 /* CollectionViewPlayerCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CollectionViewPlayerCell.m; sourceTree = "<group>"; };
  400. 270894F48E0EFD20CBE625C4C518C545 /* PCSButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSButton.m; sourceTree = "<group>"; };
  401. 28ECFDA64C4A2EC421FAF5FC2BA27142 /* autocalib.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = autocalib.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/autocalib.hpp; sourceTree = "<group>"; };
  402. 28F972AC7A75FA6A834F1398B95B240A /* logger.defines.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = logger.defines.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/logger.defines.hpp; sourceTree = "<group>"; };
  403. 295D21E3A53E31CD670E1455FF043490 /* ImageCacheLRU.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ImageCacheLRU.m; sourceTree = "<group>"; };
  404. 29B829673F9D5AB2BD30E5304DB7EEA6 /* miniflann.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = miniflann.hpp; path = opencv2.framework/Versions/A/Headers/flann/miniflann.hpp; sourceTree = "<group>"; };
  405. 2A3C694AF3328B029D5744E8AD11D789 /* QuitMultipleModeAlertViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = QuitMultipleModeAlertViewController.xib; sourceTree = "<group>"; };
  406. 2A4C82A7E53516C57C23D930064D55FA /* limits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = limits.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/limits.hpp; sourceTree = "<group>"; };
  407. 2A892652B2C46866345E169D6F661933 /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/imgproc.hpp; sourceTree = "<group>"; };
  408. 2AACDE67265880AE9089E9C28045E49E /* OperationNodeMovie.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMovie.h; sourceTree = "<group>"; };
  409. 2B69F1B64B862CC6F2EFDFF117AA6BED /* SDKParameters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SDKParameters.m; sourceTree = "<group>"; };
  410. 2B7D9038602BFB625E3B27BDD9183E2C /* opencl_clamdfft.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_clamdfft.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_clamdfft.hpp; sourceTree = "<group>"; };
  411. 2BBC9EF8E30EB4D6A88070CA2B6DA9E4 /* LenzCameraSDK.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCameraSDK.m; sourceTree = "<group>"; };
  412. 2C29C10553586CC809174CAF9DABD25D /* imgproc_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = imgproc_c.h; path = opencv2.framework/Versions/A/Headers/imgproc/imgproc_c.h; sourceTree = "<group>"; };
  413. 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-LenzCameraNativeModuleForRN_Example"; path = "libPods-LenzCameraNativeModuleForRN_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  414. 2CCFC8CF5DE6FD893159815293F71BD5 /* YYTextRunDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRunDelegate.h; path = YYText/String/YYTextRunDelegate.h; sourceTree = "<group>"; };
  415. 2DD3922B8BE4E6C3BAE67ED432CF9885 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = "<group>"; };
  416. 2E170088911070D57FD1A2B1667B2358 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = "<group>"; };
  417. 2E7E70EE65C8B436ADCE623518B16FE6 /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = "<group>"; };
  418. 2ECA98A2345101089E1662579080E586 /* operators.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = operators.hpp; path = opencv2.framework/Versions/A/Headers/gapi/operators.hpp; sourceTree = "<group>"; };
  419. 2ED480DA74C09C19BD2DC140F029FFAF /* version.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = version.hpp; path = opencv2.framework/Versions/A/Headers/core/version.hpp; sourceTree = "<group>"; };
  420. 31A8E6611A0E3EDAE295AE10D3954A13 /* LenzSDK.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = LenzSDK.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  421. 3212932ADFECD0AA6DDCCE1AC7015693 /* NSAttributedString+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+YYText.m"; path = "YYText/Utility/NSAttributedString+YYText.m"; sourceTree = "<group>"; };
  422. 321F26B9FE4C35D5697DD119365010EB /* PCSAutherView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSAutherView.h; sourceTree = "<group>"; };
  423. 323E11B6F2B40B2A30076A06EFA4ADE9 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = "<group>"; };
  424. 32EB214088A160CD9BBDD73798777B90 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
  425. 33293E9BA19D81017A5F0392631C32C8 /* general.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = general.h; path = opencv2.framework/Versions/A/Headers/flann/general.h; sourceTree = "<group>"; };
  426. 34C30A9F02BFEFB974CE2BD19A932D9C /* dict.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dict.hpp; path = opencv2.framework/Versions/A/Headers/dnn/dict.hpp; sourceTree = "<group>"; };
  427. 34D3161F77526AB76CF74AB041515EB8 /* TensorFlowLite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.release.xcconfig; sourceTree = "<group>"; };
  428. 35131FD2ED05FA8D8A6C784E3BD4BD19 /* dnn.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dnn.hpp; path = opencv2.framework/Versions/A/Headers/dnn.hpp; sourceTree = "<group>"; };
  429. 355EAE8E92CDE12FDC04AC24F6E5C7FC /* opencl_gl_wrappers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_gl_wrappers.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_gl_wrappers.hpp; sourceTree = "<group>"; };
  430. 35783455FD2B307819356A0F7317E3A2 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = "<group>"; };
  431. 35A625E4846AF05FAADC93AD3ED50064 /* bindings_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = bindings_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/bindings_utils.hpp; sourceTree = "<group>"; };
  432. 35AB646420DB1798CBF8F5642171846F /* imgcodecs_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = imgcodecs_c.h; path = opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs_c.h; sourceTree = "<group>"; };
  433. 35D84269593E08F6445313658DB6DB04 /* gcomputation.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcomputation.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcomputation.hpp; sourceTree = "<group>"; };
  434. 36385A4948651DCADD828F5EF6D7A860 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = "<group>"; };
  435. 366F129798E72746492C7FADD3532CED /* gcompiled.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcompiled.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcompiled.hpp; sourceTree = "<group>"; };
  436. 3725E15E9A375B2D95B167EC60B78705 /* PhotoCollectionViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCollectionViewCell.xib; sourceTree = "<group>"; };
  437. 374714964311622593B9D492C68BBDB5 /* features2d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = features2d.hpp; path = opencv2.framework/Versions/A/Headers/features2d/features2d.hpp; sourceTree = "<group>"; };
  438. 380AB62A6B53682A270AD795541A47A5 /* trace.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = trace.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/trace.hpp; sourceTree = "<group>"; };
  439. 382201D83F462FFB7A51D4EA89AB1F1B /* PanoramaGuideView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaGuideView.m; sourceTree = "<group>"; };
  440. 38DBB783B0942E39D2BF01F93FF528C6 /* PCSThemeColorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSThemeColorManager.h; sourceTree = "<group>"; };
  441. 38E9EE5C24609F4F6091CCDA1DE0B658 /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/fluid/imgproc.hpp; sourceTree = "<group>"; };
  442. 38F5BAD6613EA2CA23DA573E9591B3A3 /* tracking.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = tracking.hpp; path = opencv2.framework/Versions/A/Headers/video/tracking.hpp; sourceTree = "<group>"; };
  443. 39A89EB028BA0D42AB7436A40F01B72F /* source.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = source.hpp; path = opencv2.framework/Versions/A/Headers/gapi/streaming/source.hpp; sourceTree = "<group>"; };
  444. 39BEA5B8C05CC6AD6AC576AB4E8DAA53 /* params.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = params.h; path = opencv2.framework/Versions/A/Headers/flann/params.h; sourceTree = "<group>"; };
  445. 39C5D4FD92B9169F910BD54B612734E8 /* constants_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants_c.h; path = opencv2.framework/Versions/A/Headers/photo/legacy/constants_c.h; sourceTree = "<group>"; };
  446. 3A9B8AF4ED2B2CE4E42F5526CB19ED56 /* NSAttributedString+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+YYText.h"; path = "YYText/Utility/NSAttributedString+YYText.h"; sourceTree = "<group>"; };
  447. 3B058C3455AE3BB57881004E727D21B5 /* cuda_stream_accessor.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda_stream_accessor.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda_stream_accessor.hpp; sourceTree = "<group>"; };
  448. 3B16CA06D0B97E598725B65CB71FBB95 /* gcompiled_async.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcompiled_async.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcompiled_async.hpp; sourceTree = "<group>"; };
  449. 3BDA405C2F88BCBB1EA9FEFEC7653BD0 /* base.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = base.hpp; path = opencv2.framework/Versions/A/Headers/core/base.hpp; sourceTree = "<group>"; };
  450. 3CBB2BD0B982EF173F246957BE5CC360 /* funcattrib.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = funcattrib.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/funcattrib.hpp; sourceTree = "<group>"; };
  451. 3E44F3E4290CD567610DAC9F45C5D5C1 /* cuda_types.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda_types.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda_types.hpp; sourceTree = "<group>"; };
  452. 3E8029DD0FDBD5F2FCDAE26900F91574 /* opencv2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = opencv2.framework; sourceTree = "<group>"; };
  453. 3ECAF4D12EA721982BC888F626BC4A9C /* intrin_avx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_avx.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_avx.hpp; sourceTree = "<group>"; };
  454. 3ED5A12E879A1EC2A5931370372C355F /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/imgproc/imgproc.hpp; sourceTree = "<group>"; };
  455. 3F67E7EED800E754031EA8727660DE9F /* all_layers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = all_layers.hpp; path = opencv2.framework/Versions/A/Headers/dnn/all_layers.hpp; sourceTree = "<group>"; };
  456. 40ADBC8E9327EC12F7F669F1D5083A90 /* BaseViewTapGestureDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BaseViewTapGestureDelegate.h; sourceTree = "<group>"; };
  457. 4197F3B05BD474A2CE2BB3BFD2CE8280 /* videoio.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = videoio.hpp; path = opencv2.framework/Versions/A/Headers/videoio/videoio.hpp; sourceTree = "<group>"; };
  458. 42015A3BF72FFC1D808FDCDCD641F7CC /* opencv_includes.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencv_includes.hpp; path = opencv2.framework/Versions/A/Headers/gapi/opencv_includes.hpp; sourceTree = "<group>"; };
  459. 42760E920AD4D3A14BFBEED90C3EA76C /* flann.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = flann.hpp; path = opencv2.framework/Versions/A/Headers/flann/flann.hpp; sourceTree = "<group>"; };
  460. 429256013C4DD9212877A5391BB0A3FA /* opengl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opengl.hpp; path = opencv2.framework/Versions/A/Headers/core/opengl.hpp; sourceTree = "<group>"; };
  461. 42A26A56F9F80ECD3F646B2B727370C7 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressAnimatedView.m; path = SVProgressHUD/SVProgressAnimatedView.m; sourceTree = "<group>"; };
  462. 42C328200F0690C56E364FDD73752230 /* functional.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = functional.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/functional.hpp; sourceTree = "<group>"; };
  463. 436045CFDFDC0E250A0F1DD7CBCB1156 /* cvstd.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cvstd.hpp; path = opencv2.framework/Versions/A/Headers/core/cvstd.hpp; sourceTree = "<group>"; };
  464. 437E6AEE76E905A48D18ABD0AE3E4099 /* linear_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = linear_index.h; path = opencv2.framework/Versions/A/Headers/flann/linear_index.h; sourceTree = "<group>"; };
  465. 441417AE3D7B9532F5670BCDB7B3872D /* PhotoAlbumListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumListViewController.h; sourceTree = "<group>"; };
  466. 44380123F9EE4F5EF98E45FEED735536 /* any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = any.h; path = opencv2.framework/Versions/A/Headers/flann/any.h; sourceTree = "<group>"; };
  467. 44A2FC96D2BEB86CD5F7A89A2077CA3D /* PCSButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSButton.h; sourceTree = "<group>"; };
  468. 45C026261DAF6B7FCAAC6266495F4C9E /* YYTextSelectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextSelectionView.m; path = YYText/Component/YYTextSelectionView.m; sourceTree = "<group>"; };
  469. 46E835F262CEBF51D5A0A8E520A1C160 /* UIView+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+YYText.m"; path = "YYText/Utility/UIView+YYText.m"; sourceTree = "<group>"; };
  470. 46F6CF30AA683165DC263A6F4A36351F /* PhotoCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCell.m; sourceTree = "<group>"; };
  471. 4706A525AE4CDF0BE5B7D1D3FC8CD549 /* PCSThemeColorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSThemeColorManager.m; sourceTree = "<group>"; };
  472. 4742B0FF5DE13A610E7222DBCC0C55D6 /* index_testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = index_testing.h; path = opencv2.framework/Versions/A/Headers/flann/index_testing.h; sourceTree = "<group>"; };
  473. 481AA6A896FA27BEF3DF89FE1E1BD2DC /* calib3d_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = calib3d_c.h; path = opencv2.framework/Versions/A/Headers/calib3d/calib3d_c.h; sourceTree = "<group>"; };
  474. 48282D0FCEB41CD6BE0B733B9E3276F2 /* YYTextAsyncLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAsyncLayer.h; path = YYText/Utility/YYTextAsyncLayer.h; sourceTree = "<group>"; };
  475. 48C54F1C97D437C71404C5679FD34D98 /* LenzSDK-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LenzSDK-dummy.m"; sourceTree = "<group>"; };
  476. 48FE8ED54770D374D2F85AF0995815B4 /* color_detail.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = color_detail.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/color_detail.hpp; sourceTree = "<group>"; };
  477. 492ADF58A3C187F270A845FE2446FD93 /* moire_mobilenetv2_79.tflite */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; path = moire_mobilenetv2_79.tflite; sourceTree = "<group>"; };
  478. 49440A3483B1BDF65FF91971D889E7DE /* filesystem.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = filesystem.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/filesystem.hpp; sourceTree = "<group>"; };
  479. 4ACC936729FB445B6079C9113BFB0915 /* SVProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVProgressHUD-dummy.m"; sourceTree = "<group>"; };
  480. 4AD57B242CFB55F585BD5596FC7ABD87 /* PCSSDF-prefix-header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PCSSDF-prefix-header.h"; path = "LenzCameraNativeModuleForRN/Classes/PCSSDF-prefix-header.h"; sourceTree = "<group>"; };
  481. 4B605741B71EAB95088C2C250FC9876D /* gplaidmlkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gplaidmlkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/plaidml/gplaidmlkernel.hpp; sourceTree = "<group>"; };
  482. 4B61B2FCBF8E1560AE0A58437888D0F9 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = "<group>"; };
  483. 4B83909B01724B76CD2AAC540FBDDF96 /* YYTextContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextContainerView.h; path = YYText/Component/YYTextContainerView.h; sourceTree = "<group>"; };
  484. 4C4DFBA4A4268406E16254384F37E4B8 /* PhotoCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCell.xib; sourceTree = "<group>"; };
  485. 4C988D03DBBEF4A7C669CD67B41B6E17 /* MovieListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListCellModel.h; sourceTree = "<group>"; };
  486. 4CCE262AAF8560D058C87F8ED4C393EE /* async_promise.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = async_promise.hpp; path = opencv2.framework/Versions/A/Headers/core/detail/async_promise.hpp; sourceTree = "<group>"; };
  487. 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LenzCameraNativeModuleForRN_Example-dummy.m"; sourceTree = "<group>"; };
  488. 4E1905F2890898F5477C5019D7DFD454 /* PCSSessionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSSessionWrapper.h; sourceTree = "<group>"; };
  489. 4E4772D9ED8D1C541CAAE9F38D5D1F4C /* MovieListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListViewController.h; sourceTree = "<group>"; };
  490. 4ED6F71CA8E3F8CF21B9C2771949FFD2 /* PhotoListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListViewController.m; sourceTree = "<group>"; };
  491. 4F7139EF51E2179A638847803A3F5362 /* va_intel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = va_intel.hpp; path = opencv2.framework/Versions/A/Headers/core/va_intel.hpp; sourceTree = "<group>"; };
  492. 500138008EC2CEE923C9096F6C89D647 /* saturate_cast.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = saturate_cast.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/saturate_cast.hpp; sourceTree = "<group>"; };
  493. 502D1B33CA92533E6A7CB40E255ABDE1 /* inference_engine.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = inference_engine.hpp; path = opencv2.framework/Versions/A/Headers/dnn/utils/inference_engine.hpp; sourceTree = "<group>"; };
  494. 506DF75980870572F4E61E7732AD97A9 /* vec_distance.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vec_distance.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/vec_distance.hpp; sourceTree = "<group>"; };
  495. 5071D90FBED6EF5030E504AB525E29C3 /* YYLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYLabel.h; path = YYText/YYLabel.h; sourceTree = "<group>"; };
  496. 507A2504392C0567854778AE4B6C4D39 /* SVProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.release.xcconfig; sourceTree = "<group>"; };
  497. 50F8F94648B122F50E2F628E22FD3994 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gpu/core.hpp; sourceTree = "<group>"; };
  498. 513086AE9B8D8684A33900083C458971 /* YYTextTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextTransaction.h; path = YYText/Utility/YYTextTransaction.h; sourceTree = "<group>"; };
  499. 5139E1B09F2B5848CCD436B04764720B /* YYTextInput.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextInput.m; path = YYText/Component/YYTextInput.m; sourceTree = "<group>"; };
  500. 528D31D147C7AE87DA1B059D1E547240 /* garray.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = garray.hpp; path = opencv2.framework/Versions/A/Headers/gapi/garray.hpp; sourceTree = "<group>"; };
  501. 52BB4930B3A773F6833C87F4E518D1CB /* VC.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; path = VC.storyboard; sourceTree = "<group>"; };
  502. 52F383E03E8A05773263617366665186 /* hal.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = hal.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/hal.hpp; sourceTree = "<group>"; };
  503. 5418B1F8C4F9318C93DBB87D85FA904D /* check.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = check.hpp; path = opencv2.framework/Versions/A/Headers/core/check.hpp; sourceTree = "<group>"; };
  504. 54849A70BFAFE633A8C7FC4144ACABC9 /* CameraTextureRenderPass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraTextureRenderPass.m; sourceTree = "<group>"; };
  505. 54F7F53531C9AF5E2E79AD7D9A3407E1 /* PanoramaGuideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaGuideView.h; sourceTree = "<group>"; };
  506. 5582002E4734B8D4F2CF285ACDADD796 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = "<group>"; };
  507. 55AE0A7F12C1B365E94D377198CA213C /* OperationNodeVideoBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeVideoBase.m; sourceTree = "<group>"; };
  508. 56017C0169A9FA3B54C4BEEB45C5CBD9 /* result_set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = result_set.h; path = opencv2.framework/Versions/A/Headers/flann/result_set.h; sourceTree = "<group>"; };
  509. 5602D5A50654D2411340C83206CA742E /* YYTextAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAttribute.h; path = YYText/String/YYTextAttribute.h; sourceTree = "<group>"; };
  510. 5669433C89ABD32ADAE50F9067D258AE /* opencl_core_wrappers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_core_wrappers.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_core_wrappers.hpp; sourceTree = "<group>"; };
  511. 5676CE3498BF37D86DEB1A2716A165B0 /* ggpukernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ggpukernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gpu/ggpukernel.hpp; sourceTree = "<group>"; };
  512. 56A656A26215BA22326B0887766676E4 /* ground_truth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ground_truth.h; path = opencv2.framework/Versions/A/Headers/flann/ground_truth.h; sourceTree = "<group>"; };
  513. 577820CCEA384ECB2388766E1F2BDA7B /* MovieListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListCellModel.m; sourceTree = "<group>"; };
  514. 57D34A16F9D50B472939BF5B640BD3C0 /* types_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types_c.h; path = opencv2.framework/Versions/A/Headers/core/types_c.h; sourceTree = "<group>"; };
  515. 57E8904661BEB271AF282CB3E969BB7D /* MoviePlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MoviePlayerViewController.h; sourceTree = "<group>"; };
  516. 58781D7744EE55563FD3DBBA7978FD73 /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist"; sourceTree = "<group>"; };
  517. 58A56A8842D5A1FEE1A038D18A8C697A /* YYTextLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLayout.m; path = YYText/Component/YYTextLayout.m; sourceTree = "<group>"; };
  518. 58BF6761F644CCA3A7432CCD6AC62619 /* PCSMotionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSMotionManager.m; sourceTree = "<group>"; };
  519. 58F629A8AD44C581FDBBD8DCDEFF553E /* cvstd.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cvstd.inl.hpp; path = opencv2.framework/Versions/A/Headers/core/cvstd.inl.hpp; sourceTree = "<group>"; };
  520. 5A83A51243C2D849883D9F1BCD9A4ECE /* warp_reduce.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warp_reduce.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/warp_reduce.hpp; sourceTree = "<group>"; };
  521. 5C0EF01C047A7FEE68E5418B5310DDF5 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = "<group>"; };
  522. 5CF5EB396EBD02DD86AB399DEA4E80FA /* gcommon.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcommon.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcommon.hpp; sourceTree = "<group>"; };
  523. 5D9E84BD2BBCCF9167A83F20D84E9FE3 /* lsh_table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lsh_table.h; path = opencv2.framework/Versions/A/Headers/flann/lsh_table.h; sourceTree = "<group>"; };
  524. 5D9F54A1478D4F68C029CCCB6BB7CC15 /* PanoramaOrientationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaOrientationView.m; sourceTree = "<group>"; };
  525. 5DE9210938E8C36F73748BEBA295CC53 /* vec_traits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vec_traits.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/vec_traits.hpp; sourceTree = "<group>"; };
  526. 5F2499C56FDE4C72A5972393AF272E71 /* mat.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = mat.hpp; path = opencv2.framework/Versions/A/Headers/core/mat.hpp; sourceTree = "<group>"; };
  527. 5F65221BE93CB8EE2FEA24E40AC42A30 /* vsx_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vsx_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/vsx_utils.hpp; sourceTree = "<group>"; };
  528. 5F8345A474C4286A6A94325A1C7628EE /* YYTextEffectWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextEffectWindow.m; path = YYText/Component/YYTextEffectWindow.m; sourceTree = "<group>"; };
  529. 60B5B2B307FC6408DC4D6D6B0351BA8D /* intrin.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin.hpp; sourceTree = "<group>"; };
  530. 6127F5AECD4FEB53E4D5751D3D39426B /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressAnimatedView.h; path = SVProgressHUD/SVProgressAnimatedView.h; sourceTree = "<group>"; };
  531. 618CA788C56DE22C036E596FBE111E14 /* YYTextLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLine.m; path = YYText/Component/YYTextLine.m; sourceTree = "<group>"; };
  532. 61BFBD445E4773577F009B98A0C9F00E /* OperationNodeMovie.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMovie.m; sourceTree = "<group>"; };
  533. 61DA17B36402C9517BBE5BF96880858C /* cvstd_wrapper.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cvstd_wrapper.hpp; path = opencv2.framework/Versions/A/Headers/core/cvstd_wrapper.hpp; sourceTree = "<group>"; };
  534. 61DBD22E5B3C1897522B458A0D2B2302 /* matx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = matx.hpp; path = opencv2.framework/Versions/A/Headers/core/matx.hpp; sourceTree = "<group>"; };
  535. 63461DE6FD2D71529A5BF0FD2BB26A33 /* gapi.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gapi.hpp; path = opencv2.framework/Versions/A/Headers/gapi.hpp; sourceTree = "<group>"; };
  536. 63B220D48031C35E498E5CFC0D23425F /* PreviewSingleViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PreviewSingleViewController.m; sourceTree = "<group>"; };
  537. 6554F1AFA9070B5F367C54FA6ED414A3 /* gmetaarg.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gmetaarg.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gmetaarg.hpp; sourceTree = "<group>"; };
  538. 65824B0596404B72CF94D81BDEF094BF /* UIColor+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+JKAdd.h"; sourceTree = "<group>"; };
  539. 65DA86D1D31C68B1C53FA936955FD971 /* UIImage+ext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ext.m"; sourceTree = "<group>"; };
  540. 671C8641F5DA39B2C758B30203E48E89 /* YYText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.debug.xcconfig; sourceTree = "<group>"; };
  541. 6788C75CE77BB91F37962EF8CFC044A8 /* dummy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dummy.h; path = opencv2.framework/Versions/A/Headers/flann/dummy.h; sourceTree = "<group>"; };
  542. 686810D956F1CE2C81306F2D77D3190E /* exports.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = exports.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/exports.hpp; sourceTree = "<group>"; };
  543. 69369E089F8E885B6C221B1E2273A681 /* vec_math.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vec_math.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/vec_math.hpp; sourceTree = "<group>"; };
  544. 6A8E430D8C35488AC558374EE4BA1474 /* UIView+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+JKAdd.h"; sourceTree = "<group>"; };
  545. 6B102F3E8763449C6DA99024D84CC479 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = "<group>"; };
  546. 6B9EF6A811033DF78BBBEC3D0D7B1A06 /* YYTextArchiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextArchiver.h; path = YYText/String/YYTextArchiver.h; sourceTree = "<group>"; };
  547. 6C92C83A8B9B067C252530E3C9CF4ED4 /* QuitMultipleModeAlertViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = QuitMultipleModeAlertViewController.h; sourceTree = "<group>"; };
  548. 6CDDA53C6D1FD9CC26D3E7EE8D241DA4 /* PhotoCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCell.h; sourceTree = "<group>"; };
  549. 6CEB762647C061E734FD11ECD5DCDD81 /* gstreaming.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gstreaming.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gstreaming.hpp; sourceTree = "<group>"; };
  550. 6D5B65C6116E4E34FFED89E3FF2A7F0E /* ocl_genbase.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ocl_genbase.hpp; path = opencv2.framework/Versions/A/Headers/core/ocl_genbase.hpp; sourceTree = "<group>"; };
  551. 6D863BA832EE9AD30846CA7A323A33B3 /* CameraManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraManager.h; sourceTree = "<group>"; };
  552. 6DD7F686389F37BC86D818BBE03C501E /* YYTextUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextUtilities.m; path = YYText/Utility/YYTextUtilities.m; sourceTree = "<group>"; };
  553. 6E02D156AF78AE77AACD53D87081BAEF /* stitching.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = stitching.hpp; path = opencv2.framework/Versions/A/Headers/stitching.hpp; sourceTree = "<group>"; };
  554. 6F93793A32A19535E981EE3E197C14A8 /* gcpukernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcpukernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/cpu/gcpukernel.hpp; sourceTree = "<group>"; };
  555. 6FCCBC868E908636BC4DC26DFCCB73AC /* gfluidbuffer.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gfluidbuffer.hpp; path = opencv2.framework/Versions/A/Headers/gapi/fluid/gfluidbuffer.hpp; sourceTree = "<group>"; };
  556. 70ACE1B9788ABB4F18A6A434F4DFB523 /* OpenCV2.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenCV2.debug.xcconfig; sourceTree = "<group>"; };
  557. 71762A728913EB440C97D3616D291AF3 /* YYText */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = YYText; path = libYYText.a; sourceTree = BUILT_PRODUCTS_DIR; };
  558. 71BA47BD973926D7D4831F412959C342 /* tls.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = tls.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/tls.hpp; sourceTree = "<group>"; };
  559. 726F9A71E8E7373C88E225FDAFF94F43 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/core/core.hpp; sourceTree = "<group>"; };
  560. 72D2724FCE108356AFD27AAAA85AD29A /* NSString+Localization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSString+Localization.m"; sourceTree = "<group>"; };
  561. 737A47B4E0E35EBE6387CB88C7946850 /* PhotoAlbumModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumModel.m; sourceTree = "<group>"; };
  562. 73F836811E383C73C37E727FB119C47B /* opencv.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencv.hpp; path = opencv2.framework/Versions/A/Headers/opencv.hpp; sourceTree = "<group>"; };
  563. 74B0C7B38FE7DBC6EF188F881134FE16 /* BaseViewTapGestureDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BaseViewTapGestureDelegate.m; sourceTree = "<group>"; };
  564. 74EA6C6F28C49A24D747CFDE314FE330 /* cv_cpu_helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cv_cpu_helper.h; path = opencv2.framework/Versions/A/Headers/core/cv_cpu_helper.h; sourceTree = "<group>"; };
  565. 75B7D03C3F6AD2377438E3E01DBD15A1 /* camera.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = camera.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/camera.hpp; sourceTree = "<group>"; };
  566. 75E7F04302018DAFA9D1A6046A1610A5 /* opencl_clamdblas.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_clamdblas.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_clamdblas.hpp; sourceTree = "<group>"; };
  567. 7608FDCE402048449721AFAC227E4052 /* YYTextMagnifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextMagnifier.h; path = YYText/Component/YYTextMagnifier.h; sourceTree = "<group>"; };
  568. 78A8D9791F0CBE7252EBEE929FC9ADBA /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = "<group>"; };
  569. 78CA6FD07D5923CCDAB3C2A758EF5AE7 /* PCSModeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSModeList.h; sourceTree = "<group>"; };
  570. 790D1D52B16AC22E3A6F4C823CCE83EA /* instrumentation.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = instrumentation.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/instrumentation.hpp; sourceTree = "<group>"; };
  571. 790E702C63C46563EC782E05661FC13B /* LenzCachedResourceModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCachedResourceModel.h; sourceTree = "<group>"; };
  572. 794BF3777CD518DE31D09D74657CFB5F /* OperationNodeProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeProtocol.h; sourceTree = "<group>"; };
  573. 798329F7930D5E2D0BAF2A4392ECD383 /* YYTextMagnifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextMagnifier.m; path = YYText/Component/YYTextMagnifier.m; sourceTree = "<group>"; };
  574. 79BE969CB25933490EED2D43C2D61656 /* world.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = world.hpp; path = opencv2.framework/Versions/A/Headers/world.hpp; sourceTree = "<group>"; };
  575. 79C8778FBF822AC259820E6C7314F0CB /* random.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random.h; path = opencv2.framework/Versions/A/Headers/flann/random.h; sourceTree = "<group>"; };
  576. 7AF0C9EDC9FACDAE37FC3FA2964122BD /* YYTextUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextUtilities.h; path = YYText/Utility/YYTextUtilities.h; sourceTree = "<group>"; };
  577. 7AF13B5C074766CBB721EAA1F9AE6C05 /* highgui_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = highgui_c.h; path = opencv2.framework/Versions/A/Headers/highgui/highgui_c.h; sourceTree = "<group>"; };
  578. 7C76B84B6CAE7F2A7249CE02191B4D39 /* opencl_gl_wrappers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_gl_wrappers.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_gl_wrappers.hpp; sourceTree = "<group>"; };
  579. 7CAD41A57A8B36805097520423BF764A /* UIView+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+JKAdd.m"; sourceTree = "<group>"; };
  580. 7D2A94C29E212D49C7015949F887EE29 /* PaddingLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PaddingLabel.h; sourceTree = "<group>"; };
  581. 7D7B0F9E76BFC703B6AE35CEAED63132 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = "<group>"; };
  582. 7E3429187AF93BC813CEE22D6155E815 /* datamov_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = datamov_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/datamov_utils.hpp; sourceTree = "<group>"; };
  583. 7EF45D86E345243196F685B844912F6F /* operations.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = operations.hpp; path = opencv2.framework/Versions/A/Headers/core/operations.hpp; sourceTree = "<group>"; };
  584. 7F4422F57F95BCAEE8E0D37ACA7839F1 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = "<group>"; };
  585. 80980F92B228E81481943ACDE0BA1488 /* YYTextArchiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextArchiver.m; path = YYText/String/YYTextArchiver.m; sourceTree = "<group>"; };
  586. 80AB600B687D3D1246EC08397708C05E /* YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYText.h; path = YYText/YYText.h; sourceTree = "<group>"; };
  587. 80AD5EA8FE43A2A7559A4C137E94A9F1 /* CameraManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraManager.m; sourceTree = "<group>"; };
  588. 8120EC271D95CB10C91242A65A90E6FE /* version.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = version.hpp; path = opencv2.framework/Versions/A/Headers/dnn/version.hpp; sourceTree = "<group>"; };
  589. 8138F3F15D61C3E3BEB88EB0FF9021E6 /* simd_functions.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = simd_functions.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/simd_functions.hpp; sourceTree = "<group>"; };
  590. 814677B9AC7AC0FD7AB189A97D417CEA /* garg.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = garg.hpp; path = opencv2.framework/Versions/A/Headers/gapi/garg.hpp; sourceTree = "<group>"; };
  591. 817193C08726BD9D6E8E953D305D1130 /* blenders.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = blenders.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/blenders.hpp; sourceTree = "<group>"; };
  592. 8305E651A435A489ACF54DBA847EC7FC /* opencl_svm_definitions.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_svm_definitions.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_svm_definitions.hpp; sourceTree = "<group>"; };
  593. 83A7F9C5B595A5CA3A8442245A96D9A8 /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gpu/imgproc.hpp; sourceTree = "<group>"; };
  594. 848D5F84D3D3A5BE00EB4C85731D61E9 /* PaddingLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PaddingLabel.m; sourceTree = "<group>"; };
  595. 85E641D9B645B2C09962C944477705FB /* softfloat.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = softfloat.hpp; path = opencv2.framework/Versions/A/Headers/core/softfloat.hpp; sourceTree = "<group>"; };
  596. 8705DE23BAB237EB1302B77FF9B3DF38 /* vec_distance_detail.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = vec_distance_detail.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/vec_distance_detail.hpp; sourceTree = "<group>"; };
  597. 8770346476564128E1D95CB54F75F259 /* gcgraph.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcgraph.hpp; path = opencv2.framework/Versions/A/Headers/imgproc/detail/gcgraph.hpp; sourceTree = "<group>"; };
  598. 87915C9C50FDE9906265DF4122AB7E1F /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVIndefiniteAnimatedView.m; path = SVProgressHUD/SVIndefiniteAnimatedView.m; sourceTree = "<group>"; };
  599. 87FB9F6AA326948FF957CDBA9D45E100 /* gasync_context.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gasync_context.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gasync_context.hpp; sourceTree = "<group>"; };
  600. 88FAFB718DB7E66A1777F7176F4268AF /* YYTextRunDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRunDelegate.m; path = YYText/String/YYTextRunDelegate.m; sourceTree = "<group>"; };
  601. 8A171F24B8E17DEE3264D323615C52E8 /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVIndefiniteAnimatedView.h; path = SVProgressHUD/SVIndefiniteAnimatedView.h; sourceTree = "<group>"; };
  602. 8A9D397A98B68E9C6F1E5FA17EE7FDF0 /* gfluidkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gfluidkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/fluid/gfluidkernel.hpp; sourceTree = "<group>"; };
  603. 8AD3E1CA688A587B432DA2756E0A3EFF /* PhotoListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListCellModel.m; sourceTree = "<group>"; };
  604. 8B4DC4759B1098548FAA7403C6442854 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist"; sourceTree = "<group>"; };
  605. 8B4EA76A793A36B9A7E2A62BC2290475 /* Renderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Renderer.h; sourceTree = "<group>"; };
  606. 8BB1391C0E3CE18BBA966201906336CA /* NSParagraphStyle+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSParagraphStyle+YYText.h"; path = "YYText/Utility/NSParagraphStyle+YYText.h"; sourceTree = "<group>"; };
  607. 8BCB57459084C5B584BADA8587189F56 /* scalar.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = scalar.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/scalar.hpp; sourceTree = "<group>"; };
  608. 8C225940EE69D7DEF21626FDB604BB18 /* opencl_gl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_gl.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_gl.hpp; sourceTree = "<group>"; };
  609. 8C56C16991C5341747E75AF473E7A1AA /* photo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = photo.hpp; path = opencv2.framework/Versions/A/Headers/photo/photo.hpp; sourceTree = "<group>"; };
  610. 8C9E1AB15AA2605F71CB4295E60D5F5B /* highgui.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = highgui.hpp; path = opencv2.framework/Versions/A/Headers/highgui/highgui.hpp; sourceTree = "<group>"; };
  611. 8EA39441D89E3C66B56878E98C94C01D /* PhotoListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListCellModel.h; sourceTree = "<group>"; };
  612. 8F804CD80B152A54BC10E41E1A166C91 /* DBManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DBManager.m; sourceTree = "<group>"; };
  613. 8FE3BD74EAD7C908B20106186733CE20 /* LenzHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzHeader.h; sourceTree = "<group>"; };
  614. 90FD3E27D73EB13273099A8434852078 /* UIView+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+YYText.h"; path = "YYText/Utility/UIView+YYText.h"; sourceTree = "<group>"; };
  615. 91350BD7CE2B79E68985176FF23998EF /* hal.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = hal.hpp; path = opencv2.framework/Versions/A/Headers/imgproc/hal/hal.hpp; sourceTree = "<group>"; };
  616. 91BBA521B488F37F35827F34D8F49ACA /* ml.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ml.hpp; path = opencv2.framework/Versions/A/Headers/ml/ml.hpp; sourceTree = "<group>"; };
  617. 91ED9045D03A7EF57F7B42F85C86ACB9 /* SVProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-prefix.pch"; sourceTree = "<group>"; };
  618. 928F19E4450531B0C3B2A304FFBAD967 /* YYTextDebugOption.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextDebugOption.m; path = YYText/Component/YYTextDebugOption.m; sourceTree = "<group>"; };
  619. 92B59450A36F461CAC82435BFD5079CE /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
  620. 93284ED57311215B6CF5B7FFE4BC1EAF /* gkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gkernel.hpp; sourceTree = "<group>"; };
  621. 94EE88B7988390139D81189286DCED7A /* OperationNodeMultiple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMultiple.m; sourceTree = "<group>"; };
  622. 95539590142A8E270823976510EBB555 /* type_traits_detail.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = type_traits_detail.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/type_traits_detail.hpp; sourceTree = "<group>"; };
  623. 95C514DF69105C042F1AE2ABC91803AF /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVRadialGradientLayer.h; path = SVProgressHUD/SVRadialGradientLayer.h; sourceTree = "<group>"; };
  624. 96204EC60102CDCD85F0001CDDAC3850 /* AlbumCounterLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlbumCounterLabel.h; sourceTree = "<group>"; };
  625. 96624A62FA7481915D2DC4A4D67B4314 /* reduce.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reduce.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/reduce.hpp; sourceTree = "<group>"; };
  626. 9677A4464313D9121CA7676958ACD6E5 /* tensorflow_lite.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = tensorflow_lite.framework; path = Frameworks/tensorflow_lite.framework; sourceTree = "<group>"; };
  627. 98826CE10FFBE3EF2D3FC49A3205BD02 /* types.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = types.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/types.hpp; sourceTree = "<group>"; };
  628. 9899019ADC1FB685D4118D0718E0633F /* cuda.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda.hpp; sourceTree = "<group>"; };
  629. 98A9357586FADCBD80343548005D4EA7 /* opencl_svm_20.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_svm_20.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_svm_20.hpp; sourceTree = "<group>"; };
  630. 98C1AF0F7DB8C93922AC41A7C44096EA /* simd_utils.impl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = simd_utils.impl.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/simd_utils.impl.hpp; sourceTree = "<group>"; };
  631. 98CE16341D65A37B84956A181F61893D /* allocator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = allocator.h; path = opencv2.framework/Versions/A/Headers/flann/allocator.h; sourceTree = "<group>"; };
  632. 98DE643BA7638D88F1E1BFA95EB402D1 /* throw.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = throw.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/throw.hpp; sourceTree = "<group>"; };
  633. 99EAC841B5F0DE8BEF1FE49C0D15D8B5 /* common.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = common.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/common.hpp; sourceTree = "<group>"; };
  634. 9A23AB8E954B804243582F168505BC3F /* logger.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = logger.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/logger.hpp; sourceTree = "<group>"; };
  635. 9AD160B158374E1268261DE2F1F95802 /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  636. 9ADAC707073730233795FE46955C1D45 /* intrin_cpp.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_cpp.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_cpp.hpp; sourceTree = "<group>"; };
  637. 9BB74D8D5E596EA2BEDBDBECD4A25A7D /* gopaque.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gopaque.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gopaque.hpp; sourceTree = "<group>"; };
  638. 9C5747FD601D91795F596AFF32D6A13B /* YYText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.release.xcconfig; sourceTree = "<group>"; };
  639. 9C93448467AF0FC5C5C0671BA0DE53BB /* background_segm.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = background_segm.hpp; path = opencv2.framework/Versions/A/Headers/video/background_segm.hpp; sourceTree = "<group>"; };
  640. 9CB0CB14031C9B76B03091D5BBF88BC2 /* LenzSDKConstant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzSDKConstant.h; sourceTree = "<group>"; };
  641. 9CFC1E8A4E3A321EE1F437991322D520 /* opencl_info.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_info.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/opencl_info.hpp; sourceTree = "<group>"; };
  642. 9D93C2C6B8FFB9FD7E2B99FC0F170A8E /* LenzStitchSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzStitchSDK.framework; sourceTree = "<group>"; };
  643. 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  644. 9E71193FBE9AF461922EBB18D9FEECD9 /* gmat.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gmat.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gmat.hpp; sourceTree = "<group>"; };
  645. 9EFE421426409088E0EB26625771165B /* defines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = defines.h; path = opencv2.framework/Versions/A/Headers/flann/defines.h; sourceTree = "<group>"; };
  646. 9F27C16288C79B3F70E10E117CC75C19 /* intrin_neon.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_neon.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_neon.hpp; sourceTree = "<group>"; };
  647. 9FC5F44331640C08011CB985CFA19559 /* opencv_modules.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencv_modules.hpp; path = opencv2.framework/Versions/A/Headers/opencv_modules.hpp; sourceTree = "<group>"; };
  648. 9FF6964B966F1248B2A6D97911737730 /* eigen.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = eigen.hpp; path = opencv2.framework/Versions/A/Headers/core/eigen.hpp; sourceTree = "<group>"; };
  649. A0134B7DFC892F7D8942843B702EECBF /* YYTextLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLayout.h; path = YYText/Component/YYTextLayout.h; sourceTree = "<group>"; };
  650. A0AED7ED98B6B61FD688F6E65C78CC11 /* simd_intrinsics.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = simd_intrinsics.hpp; path = opencv2.framework/Versions/A/Headers/core/simd_intrinsics.hpp; sourceTree = "<group>"; };
  651. A0DB390F2F8637ECB1D7D96A822A43E1 /* OperationNodeAIPanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeAIPanorama.h; sourceTree = "<group>"; };
  652. A0F78C039E9811DEF0C4B22E6766A756 /* allocator_stats.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = allocator_stats.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/allocator_stats.hpp; sourceTree = "<group>"; };
  653. A165F021E066597829F2FB76B1335C44 /* persistence.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = persistence.hpp; path = opencv2.framework/Versions/A/Headers/core/persistence.hpp; sourceTree = "<group>"; };
  654. A172E3F1F28CA8F762FCB88A2CD06EA5 /* ml.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ml.inl.hpp; path = opencv2.framework/Versions/A/Headers/ml/ml.inl.hpp; sourceTree = "<group>"; };
  655. A18B0F43BF8B46398895C484672AA18D /* LenzCameraNativeModuleForRN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraNativeModuleForRN.h; sourceTree = "<group>"; };
  656. A199CBBB283705B1B1E1DFE6950EDA7C /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/fluid/core.hpp; sourceTree = "<group>"; };
  657. A1F079FF6554029FB4F26EC28F5255A7 /* video.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = video.hpp; path = opencv2.framework/Versions/A/Headers/video.hpp; sourceTree = "<group>"; };
  658. A259ABB2FB8587B25F3CE31A81AF77DB /* LenzCameraSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraSDK.h; sourceTree = "<group>"; };
  659. A39DBDDDFF175D6DB5DE1C978EF72BC4 /* object_factory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = object_factory.h; path = opencv2.framework/Versions/A/Headers/flann/object_factory.h; sourceTree = "<group>"; };
  660. A473A64BA4823CEB1B77F1547BD26BBE /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = "<group>"; };
  661. A61E40B4EC8B12E481DF288A8056A416 /* VerticalButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = VerticalButton.m; sourceTree = "<group>"; };
  662. A682665B0F2F184E8E8A631EADACC029 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = "<group>"; };
  663. A6F2DF7B3745DAFEA3B6544A9BF2C528 /* util_inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = util_inl.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/util_inl.hpp; sourceTree = "<group>"; };
  664. A718862A1B1B19BAA2465D13B88CF0E8 /* directx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = directx.hpp; path = opencv2.framework/Versions/A/Headers/core/directx.hpp; sourceTree = "<group>"; };
  665. A9852554B70837C421BB1BF372DD480C /* AlertView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlertView.h; sourceTree = "<group>"; };
  666. ABC22E28433BB89070EB7E08AB010222 /* opencl_svm.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_svm.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/opencl_svm.hpp; sourceTree = "<group>"; };
  667. AC06D2948EA51D189BF32F25DA893136 /* warp_shuffle.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warp_shuffle.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/warp_shuffle.hpp; sourceTree = "<group>"; };
  668. AC582ED78678F09DA000975C330219FB /* transform_detail.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = transform_detail.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/transform_detail.hpp; sourceTree = "<group>"; };
  669. AC622FD6E3183B6889B29FEA20760367 /* ovx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ovx.hpp; path = opencv2.framework/Versions/A/Headers/core/ovx.hpp; sourceTree = "<group>"; };
  670. AC831389DCC6145F466A5C4844859B04 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/cpu/core.hpp; sourceTree = "<group>"; };
  671. AC8C722485B7F2ACD02555DAAA9404AF /* AlbumCounterLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlbumCounterLabel.m; sourceTree = "<group>"; };
  672. AD175395CD4D3CAE091083E3431CC7D7 /* ios.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ios.h; path = opencv2.framework/Versions/A/Headers/imgcodecs/ios.h; sourceTree = "<group>"; };
  673. AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  674. AF5E8B51C4D20186FDD5CBC8B2A5EBDD /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/imgproc.hpp; sourceTree = "<group>"; };
  675. B08AE4F8357BF45AF7A8FC37DC864E20 /* motion_estimators.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = motion_estimators.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/motion_estimators.hpp; sourceTree = "<group>"; };
  676. B0EF2D0C37036265843073E48DD98C54 /* gtransform.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gtransform.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gtransform.hpp; sourceTree = "<group>"; };
  677. B330F958ABF1F7DA12048F8B62C9091B /* gscalar.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gscalar.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gscalar.hpp; sourceTree = "<group>"; };
  678. B48AB8CF97AD45F50A994EA915B73369 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = "<group>"; };
  679. B4B8B83193D79CB893F3146973BD2E8B /* PCSBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSBaseViewController.m; sourceTree = "<group>"; };
  680. B556EF7B503F64AD5CEC85E2A13C5007 /* YYTextContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextContainerView.m; path = YYText/Component/YYTextContainerView.m; sourceTree = "<group>"; };
  681. B5A19982A588A867B82B4E7F1EB11048 /* PCSRoundButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSRoundButton.h; sourceTree = "<group>"; };
  682. B5C2487CD193E3829F0F4233A6CCB0DC /* YYTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextView.h; path = YYText/YYTextView.h; sourceTree = "<group>"; };
  683. B6152C74D04927B37768ECA5C413A39D /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = "<group>"; };
  684. B6A71BBE9EA1E9D012D6BDC37D088333 /* reduce.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reduce.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/reduce.hpp; sourceTree = "<group>"; };
  685. B6F94606FA87D8B2445674226E49FD82 /* TimerLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TimerLabel.m; sourceTree = "<group>"; };
  686. B74A04800F249B0FF9F0C74CB4CD424F /* utility.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = utility.hpp; path = opencv2.framework/Versions/A/Headers/core/utility.hpp; sourceTree = "<group>"; };
  687. B76250D1967991E15334304359890E8A /* logtag.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = logtag.hpp; path = opencv2.framework/Versions/A/Headers/core/utils/logtag.hpp; sourceTree = "<group>"; };
  688. B8605524B249E1D06FB886576CD11AC9 /* CollectionViewPlayerCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CollectionViewPlayerCell.h; sourceTree = "<group>"; };
  689. B88175A0D217891D9AE0F5A88BC82630 /* SVProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressHUD.h; path = SVProgressHUD/SVProgressHUD.h; sourceTree = "<group>"; };
  690. B945FFA193A6A8C5E524FB88BCE25110 /* reduce_key_val.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = reduce_key_val.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/detail/reduce_key_val.hpp; sourceTree = "<group>"; };
  691. B9AA5E4741A4BEDAF6A49F8F9C0186BA /* YYTextSelectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextSelectionView.h; path = YYText/Component/YYTextSelectionView.h; sourceTree = "<group>"; };
  692. B9E10E41D1765BF2A952F34675CFEB8E /* opencl_core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_core.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_core.hpp; sourceTree = "<group>"; };
  693. BB2F83418C0C50EC2C90FECF526160DF /* dynamic_smem.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dynamic_smem.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/dynamic_smem.hpp; sourceTree = "<group>"; };
  694. BB663C341E3A7C3D059BF8FA81EB8EC1 /* objdetect.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = objdetect.hpp; path = opencv2.framework/Versions/A/Headers/objdetect.hpp; sourceTree = "<group>"; };
  695. BBE688CB6C22990A9E1CA752BB6AC77F /* YYTextLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLine.h; path = YYText/Component/YYTextLine.h; sourceTree = "<group>"; };
  696. BC674E2B3882A8B024EA11D3EDA96A05 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = "<group>"; };
  697. BCD73FA80170708A746797CA594F6B28 /* PCSModeList.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSModeList.m; sourceTree = "<group>"; };
  698. BD73058ABC1FEEB46944092BB2A88100 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/ocl/core.hpp; sourceTree = "<group>"; };
  699. BD7EED3F52E1032AC910A9E16B4F611A /* heap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = heap.h; path = opencv2.framework/Versions/A/Headers/flann/heap.h; sourceTree = "<group>"; };
  700. BE10F47AF781EB7BBCB9D14B9104B2AB /* UIImage+name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+name.h"; sourceTree = "<group>"; };
  701. BE518FFFE908DC956869620F7540B0F9 /* calib3d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = calib3d.hpp; path = opencv2.framework/Versions/A/Headers/calib3d.hpp; sourceTree = "<group>"; };
  702. BEFE2A1249730741808D7FFAA5EFF758 /* core_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = core_c.h; path = opencv2.framework/Versions/A/Headers/core/core_c.h; sourceTree = "<group>"; };
  703. C016EC766584EDC55EB394E35EC9DD40 /* exposure_compensate.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = exposure_compensate.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/exposure_compensate.hpp; sourceTree = "<group>"; };
  704. C070A2948DBF6ACF51ABB9A525AC0C17 /* ImageCacheLRU.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ImageCacheLRU.h; sourceTree = "<group>"; };
  705. C1E56964CD994727A70527CD086D20EE /* border_interpolate.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = border_interpolate.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/border_interpolate.hpp; sourceTree = "<group>"; };
  706. C2115105D1E5CAEB68E18DD1273FDC3B /* QuitMultipleModeAlertViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = QuitMultipleModeAlertViewController.m; sourceTree = "<group>"; };
  707. C26ECA886AED40AB6BE048ACEA3863FE /* filters.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = filters.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/filters.hpp; sourceTree = "<group>"; };
  708. C28F183D9772C443C261382978D5FE59 /* CustomModalViewTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CustomModalViewTransition.m; sourceTree = "<group>"; };
  709. C3CFA14268E50F17A24FFD98E2F119A5 /* constants_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants_c.h; path = opencv2.framework/Versions/A/Headers/imgcodecs/legacy/constants_c.h; sourceTree = "<group>"; };
  710. C3D1B99A2AB26B52A0577F0603D10F4D /* YYTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextView.m; path = YYText/YYTextView.m; sourceTree = "<group>"; };
  711. C3F4639AF49CB9726051AFA6D50EEBC1 /* utility.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = utility.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/utility.hpp; sourceTree = "<group>"; };
  712. C3F90AD0F5B4B1BF84C6DFECDF847870 /* OperationNodePanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodePanorama.h; sourceTree = "<group>"; };
  713. C462743524887128AA8CCDBC0FF0C73C /* scan.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = scan.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/scan.hpp; sourceTree = "<group>"; };
  714. C4665699F1207ABD176C6B9B97823A24 /* block.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = block.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/block.hpp; sourceTree = "<group>"; };
  715. C4FEF0D34E6832727EC76E4268FB5368 /* DBManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DBManager.h; sourceTree = "<group>"; };
  716. C54B2A2366E6F64BF4EACFC298DB7DC4 /* sampling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = sampling.h; path = opencv2.framework/Versions/A/Headers/flann/sampling.h; sourceTree = "<group>"; };
  717. C66C450F27C4A5097C9E02DE7DCEF9D1 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
  718. C66FEEEB5C9AB8BA4D84C055B0A72D47 /* VerticalButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = VerticalButton.h; sourceTree = "<group>"; };
  719. C68370FBDFD7E1E2D62446A5A107EEE4 /* PCSPreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSPreviewViewController.m; sourceTree = "<group>"; };
  720. C6AFDFDB3B2500E6F160EC3678234DF0 /* ocl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ocl.hpp; path = opencv2.framework/Versions/A/Headers/core/ocl.hpp; sourceTree = "<group>"; };
  721. C7529CDD561B76983A08A7CDB558093D /* YYTextParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextParser.h; path = YYText/String/YYTextParser.h; sourceTree = "<group>"; };
  722. C7B316A3E513B590F2BB1A681DAFDF90 /* matchers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = matchers.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/matchers.hpp; sourceTree = "<group>"; };
  723. C924B750B5DC3B31E4594E417CF3A55C /* registry.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = registry.hpp; path = opencv2.framework/Versions/A/Headers/videoio/registry.hpp; sourceTree = "<group>"; };
  724. C95726C7DA3589EBD7FAA2ABEB600403 /* OperationNodeSingle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeSingle.h; sourceTree = "<group>"; };
  725. C95DEF97D83E9AC28AD968742BC30CA5 /* saving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = saving.h; path = opencv2.framework/Versions/A/Headers/flann/saving.h; sourceTree = "<group>"; };
  726. C97CB484B194064FD265A8D03B64D8D0 /* types.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = types.hpp; path = opencv2.framework/Versions/A/Headers/core/types.hpp; sourceTree = "<group>"; };
  727. C9CACE7810F6476A24E522C8A228CDA4 /* matrix.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = matrix.h; path = opencv2.framework/Versions/A/Headers/flann/matrix.h; sourceTree = "<group>"; };
  728. CB2A62C8153944112A66474C51452439 /* imgcodecs.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgcodecs.hpp; path = opencv2.framework/Versions/A/Headers/imgcodecs/imgcodecs.hpp; sourceTree = "<group>"; };
  729. CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig"; sourceTree = "<group>"; };
  730. CB482258EAA5F2B676C2CF1214CCA699 /* saturate.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = saturate.hpp; path = opencv2.framework/Versions/A/Headers/core/saturate.hpp; sourceTree = "<group>"; };
  731. CB54B514636CC00FD3A2B6DA70EA4A19 /* PCSSessionWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSSessionWrapper.m; sourceTree = "<group>"; };
  732. CBA4B3D16CA92D4444B7E3A6B8017B1E /* sse_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = sse_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/sse_utils.hpp; sourceTree = "<group>"; };
  733. CBB4B5116A4FF8B9FE4CFA95D75CF6DE /* opencl_core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_core.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/opencl_core.hpp; sourceTree = "<group>"; };
  734. CC1E8A339EEB246A8A4B279954316526 /* OperationNodePanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodePanorama.m; sourceTree = "<group>"; };
  735. CC22AD979B43CF8299D53467D031F41B /* UIColor+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JKAdd.m"; sourceTree = "<group>"; };
  736. CCC2A2D9BE13B566A864D567615045F6 /* LenzCameraNativeModuleForRN.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LenzCameraNativeModuleForRN.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  737. CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = LenzSDK; path = libLenzSDK.a; sourceTree = BUILT_PRODUCTS_DIR; };
  738. CE15512E5F5FB68201632B7707388F8E /* PCSMotionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSMotionManager.h; sourceTree = "<group>"; };
  739. CF59B26AE1E6890008624145EC59E6F5 /* opencl_gl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_gl.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_gl.hpp; sourceTree = "<group>"; };
  740. CF7F875E9F2B8715633857519E741B4A /* warp.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warp.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/warp.hpp; sourceTree = "<group>"; };
  741. CF80620DC46E1071703B82C65C4F8691 /* UIImage+ext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+ext.h"; sourceTree = "<group>"; };
  742. CF96F2C7EC4B6437454D8220D5243A97 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = "<group>"; };
  743. D028A131DFCEFAB3AF9D917070910F8F /* dist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dist.h; path = opencv2.framework/Versions/A/Headers/flann/dist.h; sourceTree = "<group>"; };
  744. D113E44A4699A41E403B4A497E44F2A4 /* YYTextEffectWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextEffectWindow.h; path = YYText/Component/YYTextEffectWindow.h; sourceTree = "<group>"; };
  745. D13327B74EC3AB232A72CA60ED77163F /* videoio.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = videoio.hpp; path = opencv2.framework/Versions/A/Headers/videoio.hpp; sourceTree = "<group>"; };
  746. D148391102C9E7C3871EC94238BA859B /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
  747. D18251050252D376DF0B0E328E1456FB /* UIPasteboard+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIPasteboard+YYText.m"; path = "YYText/Utility/UIPasteboard+YYText.m"; sourceTree = "<group>"; };
  748. D1E565F5A1FAD79799DA4DD176AD4C23 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = "<group>"; };
  749. D212961E3CF998D8217A818E3050C272 /* cap.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cap.hpp; path = opencv2.framework/Versions/A/Headers/gapi/streaming/cap.hpp; sourceTree = "<group>"; };
  750. D2170F14599400B497EE906413E47464 /* opencl_core_wrappers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencl_core_wrappers.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/runtime/autogenerated/opencl_core_wrappers.hpp; sourceTree = "<group>"; };
  751. D21E243D3A634A857B5E73A166EBB150 /* MoviePlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MoviePlayerViewController.m; sourceTree = "<group>"; };
  752. D261C8FD88EAB785CE5C9C275FCEC5A3 /* YYTextAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAttribute.m; path = YYText/String/YYTextAttribute.m; sourceTree = "<group>"; };
  753. D2ED954FAD01284D05041067933C7F55 /* PCSPreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSPreviewViewController.h; sourceTree = "<group>"; };
  754. D2F4D8F00D7D1C4152E06D38B8FE340A /* PanoramaOrientationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaOrientationView.h; sourceTree = "<group>"; };
  755. D300D3849C0E80A0B48827AFFEA12087 /* YYTextKeyboardManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextKeyboardManager.m; path = YYText/Component/YYTextKeyboardManager.m; sourceTree = "<group>"; };
  756. D5985AF22B8E88E492976F08D972FD7E /* interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interface.h; path = opencv2.framework/Versions/A/Headers/core/hal/interface.h; sourceTree = "<group>"; };
  757. D645E54084D664DC389194A8F7DDD813 /* warpers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warpers.hpp; path = opencv2.framework/Versions/A/Headers/stitching/warpers.hpp; sourceTree = "<group>"; };
  758. D6BA7BFFAF8BEDC73C766DC03EA6FF46 /* util.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = util.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/util.hpp; sourceTree = "<group>"; };
  759. D7209ABED45520DBB15093688385103A /* YYTextDebugOption.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextDebugOption.h; path = YYText/Component/YYTextDebugOption.h; sourceTree = "<group>"; };
  760. D785BBEA22031EFDAFA81BFFB1F4AF9E /* LenzDataManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzDataManager.m; sourceTree = "<group>"; };
  761. D79D193FAAA333126EFB4F0BCF0FA167 /* assert.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = assert.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/assert.hpp; sourceTree = "<group>"; };
  762. D8056FFA2DD7767335E466254615571A /* gproto.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gproto.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gproto.hpp; sourceTree = "<group>"; };
  763. D8598BA55A6B943918E5F4A3580A8F57 /* YYTextTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextTransaction.m; path = YYText/Utility/YYTextTransaction.m; sourceTree = "<group>"; };
  764. D8B20D602E73F8DD996A68D408DECF5B /* video.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = video.hpp; path = opencv2.framework/Versions/A/Headers/video/video.hpp; sourceTree = "<group>"; };
  765. D9650143799BB7765F9ED3D122C5F53A /* layer.details.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = layer.details.hpp; path = opencv2.framework/Versions/A/Headers/dnn/layer.details.hpp; sourceTree = "<group>"; };
  766. D97B06C519D5FD968D64BBFA38380A55 /* PCSTools.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSTools.h; sourceTree = "<group>"; };
  767. DA24CF5A186722511685D53E515B3CB8 /* TimerLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TimerLabel.h; sourceTree = "<group>"; };
  768. DA5BD7FFD283E1EB82F17A2FE082E951 /* dnn.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dnn.inl.hpp; path = opencv2.framework/Versions/A/Headers/dnn/dnn.inl.hpp; sourceTree = "<group>"; };
  769. DB9F9F3985AEB210C7DEEB4EFBF7D7DE /* render.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = render.hpp; path = opencv2.framework/Versions/A/Headers/gapi/render.hpp; sourceTree = "<group>"; };
  770. DBC17D3B0D94239D5407F7887BA601BB /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = "<group>"; };
  771. DBCB356B9E9BE36292C2DE940C6CC91B /* util.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = util.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/util.hpp; sourceTree = "<group>"; };
  772. DBFE967524F3F12E190B1415022D9825 /* YYText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YYText-dummy.m"; sourceTree = "<group>"; };
  773. DC555EADD27A4426A617B2150C51586C /* warpers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warpers.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/warpers.hpp; sourceTree = "<group>"; };
  774. DD5004B676A5C04A78B0C779EC6ACDDA /* SVProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressHUD.m; path = SVProgressHUD/SVProgressHUD.m; sourceTree = "<group>"; };
  775. DDA696B09B5BC657EDD9EEF4F23DD670 /* UIImage+name.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+name.m"; sourceTree = "<group>"; };
  776. DDF9CEB1C61C7F8A5B54BD4A7C592B8E /* YYTextKeyboardManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextKeyboardManager.h; path = YYText/Component/YYTextKeyboardManager.h; sourceTree = "<group>"; };
  777. DE2DF9D9180305349F5596B535308774 /* kdtree_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = kdtree_index.h; path = opencv2.framework/Versions/A/Headers/flann/kdtree_index.h; sourceTree = "<group>"; };
  778. DE5A0206ABCD9BA57F5AFE5080E06AAB /* hierarchical_clustering_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hierarchical_clustering_index.h; path = opencv2.framework/Versions/A/Headers/flann/hierarchical_clustering_index.h; sourceTree = "<group>"; };
  779. DEB23BC4C9B425782EB31B80062A4C5C /* PhotoAlbumListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumListViewController.m; sourceTree = "<group>"; };
  780. DED26C99B29D2AA1A69E9862863A59E1 /* YYText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YYText-prefix.pch"; sourceTree = "<group>"; };
  781. DF49707D0225F15883F4B82A11B0581D /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVRadialGradientLayer.m; path = SVProgressHUD/SVRadialGradientLayer.m; sourceTree = "<group>"; };
  782. DF544679131529C2627584DF33DC1F66 /* intrin_vsx.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_vsx.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_vsx.hpp; sourceTree = "<group>"; };
  783. DF883562FF0EC12C0E4E6C4387D0366E /* mat.inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = mat.inl.hpp; path = opencv2.framework/Versions/A/Headers/core/mat.inl.hpp; sourceTree = "<group>"; };
  784. E138D61F861F5196B62CC6D2F17553A0 /* hdf5.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = hdf5.h; path = opencv2.framework/Versions/A/Headers/flann/hdf5.h; sourceTree = "<group>"; };
  785. E2C2465724CD85874DC1CBC5D5190A35 /* gcall.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcall.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcall.hpp; sourceTree = "<group>"; };
  786. E3B6B440887188DDDED752C654672D90 /* UIButton+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Layout.m"; sourceTree = "<group>"; };
  787. E40BC60E8D8849E9F2CBE2D4969C8743 /* plaidml.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = plaidml.hpp; path = opencv2.framework/Versions/A/Headers/gapi/plaidml/plaidml.hpp; sourceTree = "<group>"; };
  788. E4522505269E00C38F1577DC70E63CD3 /* gtype_traits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gtype_traits.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gtype_traits.hpp; sourceTree = "<group>"; };
  789. E4C8EF7032A09396718DC47C5598B84B /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = "<group>"; };
  790. E4CA823439A1050ECE966231061E1230 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = "<group>"; };
  791. E4D6FA1C748F7EB6D29632BFFCC794D3 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SVProgressHUD.bundle; path = SVProgressHUD/SVProgressHUD.bundle; sourceTree = "<group>"; };
  792. E618D46BBC90B64CA85E88D0C0FB2704 /* gcomputation_async.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gcomputation_async.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gcomputation_async.hpp; sourceTree = "<group>"; };
  793. E67659E3BE433227B2F73E9C249BF5E0 /* calib3d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = calib3d.hpp; path = opencv2.framework/Versions/A/Headers/calib3d/calib3d.hpp; sourceTree = "<group>"; };
  794. E6AFE0D98F5A15AE2DD323C5C6ECE4A1 /* cap_ios.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cap_ios.h; path = opencv2.framework/Versions/A/Headers/videoio/cap_ios.h; sourceTree = "<group>"; };
  795. E7A88A239056C1EA3C5E1005EF7E3428 /* interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interface.h; path = opencv2.framework/Versions/A/Headers/features2d/hal/interface.h; sourceTree = "<group>"; };
  796. E8448C1CD71F60B17168F38D5EFCB996 /* CustomModalViewTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CustomModalViewTransition.h; sourceTree = "<group>"; };
  797. E887D7703970DCC7DF001C9AC8B89F33 /* ocl_defs.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ocl_defs.hpp; path = opencv2.framework/Versions/A/Headers/core/opencl/ocl_defs.hpp; sourceTree = "<group>"; };
  798. E8B7780F9EEAE210A6D463AF750A89F2 /* PCSRoundButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSRoundButton.m; sourceTree = "<group>"; };
  799. E93BE0BAE030FB160EFB75E477B69B89 /* SVProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.debug.xcconfig; sourceTree = "<group>"; };
  800. E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SVProgressHUD; path = libSVProgressHUD.a; sourceTree = BUILT_PRODUCTS_DIR; };
  801. EA186BD7831F857B8B44516DABF10502 /* type_traits.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = type_traits.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/type_traits.hpp; sourceTree = "<group>"; };
  802. EADF096CCD7622A3B268A46625271309 /* lsh_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lsh_index.h; path = opencv2.framework/Versions/A/Headers/flann/lsh_index.h; sourceTree = "<group>"; };
  803. EAFF820C80398F13E84B113DFEBAA029 /* seam_finders.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = seam_finders.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/seam_finders.hpp; sourceTree = "<group>"; };
  804. EB32F7904EE68C76D11FD574AF55D49D /* assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; path = assets.xcassets; sourceTree = "<group>"; };
  805. EBD6364BF3A563DECCE3B1C6B4895782 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/core.hpp; sourceTree = "<group>"; };
  806. EC218DC8FD477A027FE92708D07B8578 /* timelapsers.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = timelapsers.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/timelapsers.hpp; sourceTree = "<group>"; };
  807. EC7CD36415A1EE1DDB8CE158873BA076 /* autotuned_index.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = autotuned_index.h; path = opencv2.framework/Versions/A/Headers/flann/autotuned_index.h; sourceTree = "<group>"; };
  808. ECAF7D0AC12DB31F7DA4E118E9B84F30 /* YYTextRubyAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRubyAnnotation.h; path = YYText/String/YYTextRubyAnnotation.h; sourceTree = "<group>"; };
  809. ECB4AFD6EC0159905D68508C413CC2DD /* constants_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants_c.h; path = opencv2.framework/Versions/A/Headers/videoio/legacy/constants_c.h; sourceTree = "<group>"; };
  810. ED0501F07C0855EF9A44458701515C57 /* neon_utils.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = neon_utils.hpp; path = opencv2.framework/Versions/A/Headers/core/neon_utils.hpp; sourceTree = "<group>"; };
  811. ED38B2EC6FB7109F65B45A10C3722011 /* interface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = interface.h; path = opencv2.framework/Versions/A/Headers/imgproc/hal/interface.h; sourceTree = "<group>"; };
  812. ED4F19203EAC96758D908259AB59D732 /* infer.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = infer.hpp; path = opencv2.framework/Versions/A/Headers/gapi/infer.hpp; sourceTree = "<group>"; };
  813. EDF412032B1F77159E7301C433944855 /* cuda.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cuda.hpp; path = opencv2.framework/Versions/A/Headers/photo/cuda.hpp; sourceTree = "<group>"; };
  814. EE288070A3F0D2824F62FC92399210F8 /* UIPasteboard+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIPasteboard+YYText.h"; path = "YYText/Utility/UIPasteboard+YYText.h"; sourceTree = "<group>"; };
  815. EE69367021FB112B58D82EA16E76222E /* NSString+Localization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSString+Localization.h"; sourceTree = "<group>"; };
  816. EEAA76DB65CAD2C944AB72AB41E5EE7B /* bufferpool.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = bufferpool.hpp; path = opencv2.framework/Versions/A/Headers/core/bufferpool.hpp; sourceTree = "<group>"; };
  817. EF90D2733E9CE36A5D76484685FA72D9 /* async.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = async.hpp; path = opencv2.framework/Versions/A/Headers/core/async.hpp; sourceTree = "<group>"; };
  818. F0091361036E037214A58062DD16AFF7 /* YYTextWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextWeakProxy.m; path = YYText/Utility/YYTextWeakProxy.m; sourceTree = "<group>"; };
  819. F037D0F04904A8EE14177C57507D80EB /* ie.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ie.hpp; path = opencv2.framework/Versions/A/Headers/gapi/infer/ie.hpp; sourceTree = "<group>"; };
  820. F0448F5CD5194E1D938300AC96197267 /* cvdefs.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = cvdefs.hpp; path = opencv2.framework/Versions/A/Headers/gapi/own/cvdefs.hpp; sourceTree = "<group>"; };
  821. F11C0A66697CF2CDD1CD4EFE6B9D9066 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/gapi/core.hpp; sourceTree = "<group>"; };
  822. F14932DC855F2968F24BBF2F46809246 /* emulation.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = emulation.hpp; path = opencv2.framework/Versions/A/Headers/core/cuda/emulation.hpp; sourceTree = "<group>"; };
  823. F1D0BCBD1EAB5B86E9FA822EA39A1C0C /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  824. F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig"; sourceTree = "<group>"; };
  825. F267B927DC7BAF6021098E564C3F76D3 /* OperationNodeVideoBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeVideoBase.h; sourceTree = "<group>"; };
  826. F3636E694B618C2302F4A749C08BA14D /* compiler_hints.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = compiler_hints.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/compiler_hints.hpp; sourceTree = "<group>"; };
  827. F36CB994324974A53205939D2FCCF77F /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = opencv2.framework/Versions/A/Headers/flann/config.h; sourceTree = "<group>"; };
  828. F52FBC8379F03FBC7892457EB8667932 /* warpers_inl.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = warpers_inl.hpp; path = opencv2.framework/Versions/A/Headers/stitching/detail/warpers_inl.hpp; sourceTree = "<group>"; };
  829. F59973CA6A1163F42F48C30484664273 /* constants_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = constants_c.h; path = opencv2.framework/Versions/A/Headers/video/legacy/constants_c.h; sourceTree = "<group>"; };
  830. F60CB6B0940620E867F47A43C000CEED /* NSParagraphStyle+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSParagraphStyle+YYText.m"; path = "YYText/Utility/NSParagraphStyle+YYText.m"; sourceTree = "<group>"; };
  831. F638E78D7185C4C6FCC293F6421AF35B /* types_c.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types_c.h; path = opencv2.framework/Versions/A/Headers/imgproc/types_c.h; sourceTree = "<group>"; };
  832. F6A0DE9C046AD6D36E7A16F0E0189710 /* dnn.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dnn.hpp; path = opencv2.framework/Versions/A/Headers/dnn/dnn.hpp; sourceTree = "<group>"; };
  833. F6C5DF7E88724A4663BD93A3067267A9 /* features2d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = features2d.hpp; path = opencv2.framework/Versions/A/Headers/features2d.hpp; sourceTree = "<group>"; };
  834. F6DACAFCA0C694750431ECD1F3504E39 /* any.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = any.hpp; path = opencv2.framework/Versions/A/Headers/gapi/util/any.hpp; sourceTree = "<group>"; };
  835. F6E2D7549154D11D86D951ED2CB555F1 /* cvconfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cvconfig.h; path = opencv2.framework/Versions/A/Headers/cvconfig.h; sourceTree = "<group>"; };
  836. F7BA158CD1964D13E4F4BDDD8452B1AD /* intrin_wasm.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_wasm.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_wasm.hpp; sourceTree = "<group>"; };
  837. F7CBE5C7C6134E200EEFE7CE25709A03 /* cvdef.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cvdef.h; path = opencv2.framework/Versions/A/Headers/core/cvdef.h; sourceTree = "<group>"; };
  838. F83198B7D4D1070C156E523A120B7C5A /* TensorFlowLite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.debug.xcconfig; sourceTree = "<group>"; };
  839. F87692F65E56DA66DC553881A17567C5 /* intrin_sse_em.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = intrin_sse_em.hpp; path = opencv2.framework/Versions/A/Headers/core/hal/intrin_sse_em.hpp; sourceTree = "<group>"; };
  840. F8CC79F52C7C4A4DEEDA9707AE215BB5 /* gtyped.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gtyped.hpp; path = opencv2.framework/Versions/A/Headers/gapi/gtyped.hpp; sourceTree = "<group>"; };
  841. FB0584FC992FE38A106704E1D7B1F80B /* flann.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = flann.hpp; path = opencv2.framework/Versions/A/Headers/flann.hpp; sourceTree = "<group>"; };
  842. FB7F504F8A524512D202DA7F25483C6C /* LenzCachedResourceModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCachedResourceModel.m; sourceTree = "<group>"; };
  843. FCCF967D51CCFA58125B8406F73EEED5 /* goclkernel.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = goclkernel.hpp; path = opencv2.framework/Versions/A/Headers/gapi/ocl/goclkernel.hpp; sourceTree = "<group>"; };
  844. FCF4E794F0A37D3EF3A19709349605A0 /* optim.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = optim.hpp; path = opencv2.framework/Versions/A/Headers/core/optim.hpp; sourceTree = "<group>"; };
  845. FDE14CA3B90A00CE932F87B872B5D127 /* photo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = photo.hpp; path = opencv2.framework/Versions/A/Headers/photo.hpp; sourceTree = "<group>"; };
  846. FE2672179FA0031452C7C1ADF02565D3 /* PhotoAlbumModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumModel.h; sourceTree = "<group>"; };
  847. FE379923F218CB636A04AF62A0EBDD84 /* highgui.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = highgui.hpp; path = opencv2.framework/Versions/A/Headers/highgui.hpp; sourceTree = "<group>"; };
  848. FE73F6BC8C6A5634A88928AE62FBC198 /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/gapi/cpu/imgproc.hpp; sourceTree = "<group>"; };
  849. FEC54D90413C68D66AFC15D59F83D578 /* PCSBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSBaseViewController.h; sourceTree = "<group>"; };
  850. FF10FC30B9EB0C8A2167CDE6E4F176F9 /* LenzTensorFlowSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzTensorFlowSDK.framework; sourceTree = "<group>"; };
  851. FF551BB244756B44BBA909AD6DDFA0D5 /* flann_base.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = flann_base.hpp; path = opencv2.framework/Versions/A/Headers/flann/flann_base.hpp; sourceTree = "<group>"; };
  852. FFF6810117FEEF2711F6E9B5437B1204 /* YYTextParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextParser.m; path = YYText/String/YYTextParser.m; sourceTree = "<group>"; };
  853. /* End PBXFileReference section */
  854. /* Begin PBXFrameworksBuildPhase section */
  855. 292FAA239C3E24827EBE85FC5553635F /* Frameworks */ = {
  856. isa = PBXFrameworksBuildPhase;
  857. buildActionMask = 2147483647;
  858. files = (
  859. );
  860. runOnlyForDeploymentPostprocessing = 0;
  861. };
  862. 6DE85D5D450CA44D841CBEB1357F0291 /* Frameworks */ = {
  863. isa = PBXFrameworksBuildPhase;
  864. buildActionMask = 2147483647;
  865. files = (
  866. );
  867. runOnlyForDeploymentPostprocessing = 0;
  868. };
  869. 772EE93998CC180CD2E107BB4D870AB7 /* Frameworks */ = {
  870. isa = PBXFrameworksBuildPhase;
  871. buildActionMask = 2147483647;
  872. files = (
  873. );
  874. runOnlyForDeploymentPostprocessing = 0;
  875. };
  876. 8EDA85AC7AD34122444A9E44BBC85A9B /* Frameworks */ = {
  877. isa = PBXFrameworksBuildPhase;
  878. buildActionMask = 2147483647;
  879. files = (
  880. );
  881. runOnlyForDeploymentPostprocessing = 0;
  882. };
  883. C7074882ACEAB207A456EF36D5F7B36F /* Frameworks */ = {
  884. isa = PBXFrameworksBuildPhase;
  885. buildActionMask = 2147483647;
  886. files = (
  887. );
  888. runOnlyForDeploymentPostprocessing = 0;
  889. };
  890. CEDC2FA7EBCDCA074E0A85F0C7AB09B2 /* Frameworks */ = {
  891. isa = PBXFrameworksBuildPhase;
  892. buildActionMask = 2147483647;
  893. files = (
  894. );
  895. runOnlyForDeploymentPostprocessing = 0;
  896. };
  897. /* End PBXFrameworksBuildPhase section */
  898. /* Begin PBXGroup section */
  899. 01A22BF41EBE2BD074FE30F6C2799D3D /* Button */ = {
  900. isa = PBXGroup;
  901. children = (
  902. 44A2FC96D2BEB86CD5F7A89A2077CA3D /* PCSButton.h */,
  903. 270894F48E0EFD20CBE625C4C518C545 /* PCSButton.m */,
  904. B5A19982A588A867B82B4E7F1EB11048 /* PCSRoundButton.h */,
  905. E8B7780F9EEAE210A6D463AF750A89F2 /* PCSRoundButton.m */,
  906. C66FEEEB5C9AB8BA4D84C055B0A72D47 /* VerticalButton.h */,
  907. A61E40B4EC8B12E481DF288A8056A416 /* VerticalButton.m */,
  908. );
  909. path = Button;
  910. sourceTree = "<group>";
  911. };
  912. 01C8A734F4C6A1A32CD88C14DDB9C99D /* DBModels */ = {
  913. isa = PBXGroup;
  914. children = (
  915. 790E702C63C46563EC782E05661FC13B /* LenzCachedResourceModel.h */,
  916. FB7F504F8A524512D202DA7F25483C6C /* LenzCachedResourceModel.m */,
  917. );
  918. path = DBModels;
  919. sourceTree = "<group>";
  920. };
  921. 0888EF0D1AFE9714EA5A95FBF3B3ACCC /* YYText */ = {
  922. isa = PBXGroup;
  923. children = (
  924. 3A9B8AF4ED2B2CE4E42F5526CB19ED56 /* NSAttributedString+YYText.h */,
  925. 3212932ADFECD0AA6DDCCE1AC7015693 /* NSAttributedString+YYText.m */,
  926. 8BB1391C0E3CE18BBA966201906336CA /* NSParagraphStyle+YYText.h */,
  927. F60CB6B0940620E867F47A43C000CEED /* NSParagraphStyle+YYText.m */,
  928. EE288070A3F0D2824F62FC92399210F8 /* UIPasteboard+YYText.h */,
  929. D18251050252D376DF0B0E328E1456FB /* UIPasteboard+YYText.m */,
  930. 90FD3E27D73EB13273099A8434852078 /* UIView+YYText.h */,
  931. 46E835F262CEBF51D5A0A8E520A1C160 /* UIView+YYText.m */,
  932. 5071D90FBED6EF5030E504AB525E29C3 /* YYLabel.h */,
  933. 211AC6AABF8746373905DC5A809CDE0C /* YYLabel.m */,
  934. 80AB600B687D3D1246EC08397708C05E /* YYText.h */,
  935. 6B9EF6A811033DF78BBBEC3D0D7B1A06 /* YYTextArchiver.h */,
  936. 80980F92B228E81481943ACDE0BA1488 /* YYTextArchiver.m */,
  937. 48282D0FCEB41CD6BE0B733B9E3276F2 /* YYTextAsyncLayer.h */,
  938. 1D265818019F4C0A249894FC32A0538E /* YYTextAsyncLayer.m */,
  939. 5602D5A50654D2411340C83206CA742E /* YYTextAttribute.h */,
  940. D261C8FD88EAB785CE5C9C275FCEC5A3 /* YYTextAttribute.m */,
  941. 4B83909B01724B76CD2AAC540FBDDF96 /* YYTextContainerView.h */,
  942. B556EF7B503F64AD5CEC85E2A13C5007 /* YYTextContainerView.m */,
  943. D7209ABED45520DBB15093688385103A /* YYTextDebugOption.h */,
  944. 928F19E4450531B0C3B2A304FFBAD967 /* YYTextDebugOption.m */,
  945. D113E44A4699A41E403B4A497E44F2A4 /* YYTextEffectWindow.h */,
  946. 5F8345A474C4286A6A94325A1C7628EE /* YYTextEffectWindow.m */,
  947. 1B11EAD869D170766C139AAB767FE589 /* YYTextInput.h */,
  948. 5139E1B09F2B5848CCD436B04764720B /* YYTextInput.m */,
  949. DDF9CEB1C61C7F8A5B54BD4A7C592B8E /* YYTextKeyboardManager.h */,
  950. D300D3849C0E80A0B48827AFFEA12087 /* YYTextKeyboardManager.m */,
  951. A0134B7DFC892F7D8942843B702EECBF /* YYTextLayout.h */,
  952. 58A56A8842D5A1FEE1A038D18A8C697A /* YYTextLayout.m */,
  953. BBE688CB6C22990A9E1CA752BB6AC77F /* YYTextLine.h */,
  954. 618CA788C56DE22C036E596FBE111E14 /* YYTextLine.m */,
  955. 7608FDCE402048449721AFAC227E4052 /* YYTextMagnifier.h */,
  956. 798329F7930D5E2D0BAF2A4392ECD383 /* YYTextMagnifier.m */,
  957. C7529CDD561B76983A08A7CDB558093D /* YYTextParser.h */,
  958. FFF6810117FEEF2711F6E9B5437B1204 /* YYTextParser.m */,
  959. ECAF7D0AC12DB31F7DA4E118E9B84F30 /* YYTextRubyAnnotation.h */,
  960. 088D76EF02787F533E77623067B6EE35 /* YYTextRubyAnnotation.m */,
  961. 2CCFC8CF5DE6FD893159815293F71BD5 /* YYTextRunDelegate.h */,
  962. 88FAFB718DB7E66A1777F7176F4268AF /* YYTextRunDelegate.m */,
  963. B9AA5E4741A4BEDAF6A49F8F9C0186BA /* YYTextSelectionView.h */,
  964. 45C026261DAF6B7FCAAC6266495F4C9E /* YYTextSelectionView.m */,
  965. 513086AE9B8D8684A33900083C458971 /* YYTextTransaction.h */,
  966. D8598BA55A6B943918E5F4A3580A8F57 /* YYTextTransaction.m */,
  967. 7AF0C9EDC9FACDAE37FC3FA2964122BD /* YYTextUtilities.h */,
  968. 6DD7F686389F37BC86D818BBE03C501E /* YYTextUtilities.m */,
  969. B5C2487CD193E3829F0F4233A6CCB0DC /* YYTextView.h */,
  970. C3D1B99A2AB26B52A0577F0603D10F4D /* YYTextView.m */,
  971. 088CC7B10130F424D2F0FB6E51DDEB48 /* YYTextWeakProxy.h */,
  972. F0091361036E037214A58062DD16AFF7 /* YYTextWeakProxy.m */,
  973. 8F47308E62B7B139E1B38ED2DFBA8AD6 /* Support Files */,
  974. );
  975. path = YYText;
  976. sourceTree = "<group>";
  977. };
  978. 08A8004C49ADCCDF7CD720BB89DB421F /* Pod */ = {
  979. isa = PBXGroup;
  980. children = (
  981. 31A8E6611A0E3EDAE295AE10D3954A13 /* LenzSDK.podspec */,
  982. );
  983. name = Pod;
  984. sourceTree = "<group>";
  985. };
  986. 0F14168F4FCBC5A2EA0AAC55DBCC860E /* Exts */ = {
  987. isa = PBXGroup;
  988. children = (
  989. EE69367021FB112B58D82EA16E76222E /* NSString+Localization.h */,
  990. 72D2724FCE108356AFD27AAAA85AD29A /* NSString+Localization.m */,
  991. 1AC5F0EE0C785DD9A6EABC8BB2E8A37F /* UIButton+Layout.h */,
  992. E3B6B440887188DDDED752C654672D90 /* UIButton+Layout.m */,
  993. CF80620DC46E1071703B82C65C4F8691 /* UIImage+ext.h */,
  994. 65DA86D1D31C68B1C53FA936955FD971 /* UIImage+ext.m */,
  995. );
  996. path = Exts;
  997. sourceTree = "<group>";
  998. };
  999. 0FAC576D59D3720018CBD128C53C00D8 /* Alert */ = {
  1000. isa = PBXGroup;
  1001. children = (
  1002. A9852554B70837C421BB1BF372DD480C /* AlertView.h */,
  1003. 10539AEE58F0381B6EF07BEFACB22ED9 /* AlertView.m */,
  1004. 6C92C83A8B9B067C252530E3C9CF4ED4 /* QuitMultipleModeAlertViewController.h */,
  1005. C2115105D1E5CAEB68E18DD1273FDC3B /* QuitMultipleModeAlertViewController.m */,
  1006. 2A3C694AF3328B029D5744E8AD11D789 /* QuitMultipleModeAlertViewController.xib */,
  1007. );
  1008. path = Alert;
  1009. sourceTree = "<group>";
  1010. };
  1011. 1DB1F972F7C7A78C44E0531B514A1C2E /* color */ = {
  1012. isa = PBXGroup;
  1013. children = (
  1014. 65824B0596404B72CF94D81BDEF094BF /* UIColor+JKAdd.h */,
  1015. CC22AD979B43CF8299D53467D031F41B /* UIColor+JKAdd.m */,
  1016. );
  1017. path = color;
  1018. sourceTree = "<group>";
  1019. };
  1020. 288540350994DEECE2AD580F7D7C80A3 /* Assets */ = {
  1021. isa = PBXGroup;
  1022. children = (
  1023. EB32F7904EE68C76D11FD574AF55D49D /* assets.xcassets */,
  1024. 492ADF58A3C187F270A845FE2446FD93 /* moire_mobilenetv2_79.tflite */,
  1025. );
  1026. name = Assets;
  1027. path = LenzCameraNativeModuleForRN/Assets;
  1028. sourceTree = "<group>";
  1029. };
  1030. 2F8AE3020802E6C5E0534D5250B56F89 /* Cell */ = {
  1031. isa = PBXGroup;
  1032. children = (
  1033. B8605524B249E1D06FB886576CD11AC9 /* CollectionViewPlayerCell.h */,
  1034. 2601909B3890525A9FD57BE8C09B21F6 /* CollectionViewPlayerCell.m */,
  1035. 4C988D03DBBEF4A7C669CD67B41B6E17 /* MovieListCellModel.h */,
  1036. 577820CCEA384ECB2388766E1F2BDA7B /* MovieListCellModel.m */,
  1037. 0E3951DFF49E14FD1C04CF8D4E44CDE8 /* PhotoCollectionViewCell.h */,
  1038. 05A8554CD5368D1EFF9456BE0ADC1339 /* PhotoCollectionViewCell.m */,
  1039. 3725E15E9A375B2D95B167EC60B78705 /* PhotoCollectionViewCell.xib */,
  1040. 8EA39441D89E3C66B56878E98C94C01D /* PhotoListCellModel.h */,
  1041. 8AD3E1CA688A587B432DA2756E0A3EFF /* PhotoListCellModel.m */,
  1042. );
  1043. path = Cell;
  1044. sourceTree = "<group>";
  1045. };
  1046. 3E22DA8E872F8DF4CB5CE8CC3375D11C /* PCSBaseViewController */ = {
  1047. isa = PBXGroup;
  1048. children = (
  1049. FEC54D90413C68D66AFC15D59F83D578 /* PCSBaseViewController.h */,
  1050. B4B8B83193D79CB893F3146973BD2E8B /* PCSBaseViewController.m */,
  1051. D2ED954FAD01284D05041067933C7F55 /* PCSPreviewViewController.h */,
  1052. C68370FBDFD7E1E2D62446A5A107EEE4 /* PCSPreviewViewController.m */,
  1053. 938A119FE066FC2C0EE909E618058B24 /* GestureHandler */,
  1054. );
  1055. path = PCSBaseViewController;
  1056. sourceTree = "<group>";
  1057. };
  1058. 3E7F2165335CAF3865D9FBDA1D770CF6 /* SVProgressHUD */ = {
  1059. isa = PBXGroup;
  1060. children = (
  1061. 8A171F24B8E17DEE3264D323615C52E8 /* SVIndefiniteAnimatedView.h */,
  1062. 87915C9C50FDE9906265DF4122AB7E1F /* SVIndefiniteAnimatedView.m */,
  1063. 6127F5AECD4FEB53E4D5751D3D39426B /* SVProgressAnimatedView.h */,
  1064. 42A26A56F9F80ECD3F646B2B727370C7 /* SVProgressAnimatedView.m */,
  1065. B88175A0D217891D9AE0F5A88BC82630 /* SVProgressHUD.h */,
  1066. DD5004B676A5C04A78B0C779EC6ACDDA /* SVProgressHUD.m */,
  1067. 95C514DF69105C042F1AE2ABC91803AF /* SVRadialGradientLayer.h */,
  1068. DF49707D0225F15883F4B82A11B0581D /* SVRadialGradientLayer.m */,
  1069. A8CAE5AEA0F4BC141EF8BF5692057E13 /* Resources */,
  1070. 578582C15A1258A86F99A3E149B47BC0 /* Support Files */,
  1071. );
  1072. path = SVProgressHUD;
  1073. sourceTree = "<group>";
  1074. };
  1075. 3F99DEB6359C98321E5F8F630DB65E0B /* Frameworks */ = {
  1076. isa = PBXGroup;
  1077. children = (
  1078. 9D93C2C6B8FFB9FD7E2B99FC0F170A8E /* LenzStitchSDK.framework */,
  1079. FF10FC30B9EB0C8A2167CDE6E4F176F9 /* LenzTensorFlowSDK.framework */,
  1080. );
  1081. name = Frameworks;
  1082. sourceTree = "<group>";
  1083. };
  1084. 42E5089EB4AB450650E090EB00F05076 /* UI */ = {
  1085. isa = PBXGroup;
  1086. children = (
  1087. 321F26B9FE4C35D5697DD119365010EB /* PCSAutherView.h */,
  1088. 17ECB324C92792CE652F02D80110CB3F /* PCSAutherView.m */,
  1089. 38DBB783B0942E39D2BF01F93FF528C6 /* PCSThemeColorManager.h */,
  1090. 4706A525AE4CDF0BE5B7D1D3FC8CD549 /* PCSThemeColorManager.m */,
  1091. 01A22BF41EBE2BD074FE30F6C2799D3D /* Button */,
  1092. 1DB1F972F7C7A78C44E0531B514A1C2E /* color */,
  1093. 83875856D4CF69160E2F528DBD555767 /* Label */,
  1094. 5A37DFEC4C024FE59B0307B96AA8AEE8 /* ModeListView */,
  1095. FD8193DB81F23510842E0D80A685F4B3 /* PanoramaGuideView */,
  1096. 947262AE9F7BFC562D39BE527738CF85 /* PanoramaOrientaionView */,
  1097. CAB30AB909BF7A2AD291C417675CB9EB /* Transition */,
  1098. C42023FCFE81BFC742AC9E9701D2A6AB /* UIView+tool */,
  1099. );
  1100. path = UI;
  1101. sourceTree = "<group>";
  1102. };
  1103. 578582C15A1258A86F99A3E149B47BC0 /* Support Files */ = {
  1104. isa = PBXGroup;
  1105. children = (
  1106. 4ACC936729FB445B6079C9113BFB0915 /* SVProgressHUD-dummy.m */,
  1107. 91ED9045D03A7EF57F7B42F85C86ACB9 /* SVProgressHUD-prefix.pch */,
  1108. E93BE0BAE030FB160EFB75E477B69B89 /* SVProgressHUD.debug.xcconfig */,
  1109. 507A2504392C0567854778AE4B6C4D39 /* SVProgressHUD.release.xcconfig */,
  1110. );
  1111. name = "Support Files";
  1112. path = "../Target Support Files/SVProgressHUD";
  1113. sourceTree = "<group>";
  1114. };
  1115. 5A37DFEC4C024FE59B0307B96AA8AEE8 /* ModeListView */ = {
  1116. isa = PBXGroup;
  1117. children = (
  1118. 78CA6FD07D5923CCDAB3C2A758EF5AE7 /* PCSModeList.h */,
  1119. BCD73FA80170708A746797CA594F6B28 /* PCSModeList.m */,
  1120. );
  1121. path = ModeListView;
  1122. sourceTree = "<group>";
  1123. };
  1124. 67A363A478D76722A2B07D1E19041A18 /* LenzSDK */ = {
  1125. isa = PBXGroup;
  1126. children = (
  1127. 4AD57B242CFB55F585BD5596FC7ABD87 /* PCSSDF-prefix-header.h */,
  1128. 288540350994DEECE2AD580F7D7C80A3 /* Assets */,
  1129. 3F99DEB6359C98321E5F8F630DB65E0B /* Frameworks */,
  1130. F913DE2DFAAF24F0F4F890996C813F5D /* headers */,
  1131. CFC4B6F53B32A44D9145E36BD537105D /* inner */,
  1132. 08A8004C49ADCCDF7CD720BB89DB421F /* Pod */,
  1133. D1446D420D7C73D12340A2EADFB1273E /* Support Files */,
  1134. );
  1135. name = LenzSDK;
  1136. path = ../..;
  1137. sourceTree = "<group>";
  1138. };
  1139. 6D432D89D83C5D2F48D64486104B742D /* LRU */ = {
  1140. isa = PBXGroup;
  1141. children = (
  1142. C070A2948DBF6ACF51ABB9A525AC0C17 /* ImageCacheLRU.h */,
  1143. 295D21E3A53E31CD670E1455FF043490 /* ImageCacheLRU.m */,
  1144. );
  1145. path = LRU;
  1146. sourceTree = "<group>";
  1147. };
  1148. 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */ = {
  1149. isa = PBXGroup;
  1150. children = (
  1151. CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */,
  1152. CCC2A2D9BE13B566A864D567615045F6 /* LenzCameraNativeModuleForRN.bundle */,
  1153. 1FFED36A657123030ABB700256D73F15 /* Masonry */,
  1154. 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */,
  1155. E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */,
  1156. 71762A728913EB440C97D3616D291AF3 /* YYText */,
  1157. );
  1158. name = Products;
  1159. sourceTree = "<group>";
  1160. };
  1161. 78E3D5CA530FE0BBE26EF4F634B54B85 /* Support Files */ = {
  1162. isa = PBXGroup;
  1163. children = (
  1164. 70ACE1B9788ABB4F18A6A434F4DFB523 /* OpenCV2.debug.xcconfig */,
  1165. 0AE4E7473E40F2E5F0F54290ED44474F /* OpenCV2.release.xcconfig */,
  1166. );
  1167. name = "Support Files";
  1168. path = "../Target Support Files/OpenCV2";
  1169. sourceTree = "<group>";
  1170. };
  1171. 83875856D4CF69160E2F528DBD555767 /* Label */ = {
  1172. isa = PBXGroup;
  1173. children = (
  1174. 96204EC60102CDCD85F0001CDDAC3850 /* AlbumCounterLabel.h */,
  1175. AC8C722485B7F2ACD02555DAAA9404AF /* AlbumCounterLabel.m */,
  1176. 7D2A94C29E212D49C7015949F887EE29 /* PaddingLabel.h */,
  1177. 848D5F84D3D3A5BE00EB4C85731D61E9 /* PaddingLabel.m */,
  1178. DA24CF5A186722511685D53E515B3CB8 /* TimerLabel.h */,
  1179. B6F94606FA87D8B2445674226E49FD82 /* TimerLabel.m */,
  1180. );
  1181. path = Label;
  1182. sourceTree = "<group>";
  1183. };
  1184. 8F4495DC8A7707DCB486C332023D415C /* CameraManager */ = {
  1185. isa = PBXGroup;
  1186. children = (
  1187. 6D863BA832EE9AD30846CA7A323A33B3 /* CameraManager.h */,
  1188. 80AD5EA8FE43A2A7559A4C137E94A9F1 /* CameraManager.m */,
  1189. );
  1190. path = CameraManager;
  1191. sourceTree = "<group>";
  1192. };
  1193. 8F47308E62B7B139E1B38ED2DFBA8AD6 /* Support Files */ = {
  1194. isa = PBXGroup;
  1195. children = (
  1196. DBFE967524F3F12E190B1415022D9825 /* YYText-dummy.m */,
  1197. DED26C99B29D2AA1A69E9862863A59E1 /* YYText-prefix.pch */,
  1198. 671C8641F5DA39B2C758B30203E48E89 /* YYText.debug.xcconfig */,
  1199. 9C5747FD601D91795F596AFF32D6A13B /* YYText.release.xcconfig */,
  1200. );
  1201. name = "Support Files";
  1202. path = "../Target Support Files/YYText";
  1203. sourceTree = "<group>";
  1204. };
  1205. 91D385D35B351E0698AC14601128BA08 /* PhotoListController */ = {
  1206. isa = PBXGroup;
  1207. children = (
  1208. 4E4772D9ED8D1C541CAAE9F38D5D1F4C /* MovieListViewController.h */,
  1209. 0C3BC45DCCD22DDB2A1A50D9B95E11CA /* MovieListViewController.m */,
  1210. 441417AE3D7B9532F5670BCDB7B3872D /* PhotoAlbumListViewController.h */,
  1211. DEB23BC4C9B425782EB31B80062A4C5C /* PhotoAlbumListViewController.m */,
  1212. 147D82876AA74DD7AF6AC6604C453BF1 /* PhotoListViewController.h */,
  1213. 4ED6F71CA8E3F8CF21B9C2771949FFD2 /* PhotoListViewController.m */,
  1214. 15E6B1EDCBBD3DF2BBC654E0653FED5C /* PreviewSingleViewController.h */,
  1215. 63B220D48031C35E498E5CFC0D23425F /* PreviewSingleViewController.m */,
  1216. 2F8AE3020802E6C5E0534D5250B56F89 /* Cell */,
  1217. F71D6BF42B7421257000118549DC4623 /* CollectionViewCell */,
  1218. );
  1219. path = PhotoListController;
  1220. sourceTree = "<group>";
  1221. };
  1222. 938A119FE066FC2C0EE909E618058B24 /* GestureHandler */ = {
  1223. isa = PBXGroup;
  1224. children = (
  1225. 40ADBC8E9327EC12F7F669F1D5083A90 /* BaseViewTapGestureDelegate.h */,
  1226. 74B0C7B38FE7DBC6EF188F881134FE16 /* BaseViewTapGestureDelegate.m */,
  1227. );
  1228. path = GestureHandler;
  1229. sourceTree = "<group>";
  1230. };
  1231. 947262AE9F7BFC562D39BE527738CF85 /* PanoramaOrientaionView */ = {
  1232. isa = PBXGroup;
  1233. children = (
  1234. D2F4D8F00D7D1C4152E06D38B8FE340A /* PanoramaOrientationView.h */,
  1235. 5D9F54A1478D4F68C029CCCB6BB7CC15 /* PanoramaOrientationView.m */,
  1236. );
  1237. path = PanoramaOrientaionView;
  1238. sourceTree = "<group>";
  1239. };
  1240. 98343A210BF0B03D15CFF9F20CD5FB37 /* Pods */ = {
  1241. isa = PBXGroup;
  1242. children = (
  1243. D2592EDE18483CCAF01D6C08266F50CE /* Masonry */,
  1244. B9A885989CFC579D2D248951C5F7275C /* OpenCV2 */,
  1245. 3E7F2165335CAF3865D9FBDA1D770CF6 /* SVProgressHUD */,
  1246. ADF700408B80AE1F285F84047CF8EB4D /* TensorFlowLite */,
  1247. 0888EF0D1AFE9714EA5A95FBF3B3ACCC /* YYText */,
  1248. );
  1249. name = Pods;
  1250. sourceTree = "<group>";
  1251. };
  1252. A2C97AFCBD52302896DCE3AC8ABFBE5D /* Frameworks */ = {
  1253. isa = PBXGroup;
  1254. children = (
  1255. 9677A4464313D9121CA7676958ACD6E5 /* tensorflow_lite.framework */,
  1256. );
  1257. name = Frameworks;
  1258. sourceTree = "<group>";
  1259. };
  1260. A8CAE5AEA0F4BC141EF8BF5692057E13 /* Resources */ = {
  1261. isa = PBXGroup;
  1262. children = (
  1263. E4D6FA1C748F7EB6D29632BFFCC794D3 /* SVProgressHUD.bundle */,
  1264. );
  1265. name = Resources;
  1266. sourceTree = "<group>";
  1267. };
  1268. AA5651695ECA2551FE4073E9ED3512A9 /* Support Files */ = {
  1269. isa = PBXGroup;
  1270. children = (
  1271. 4B61B2FCBF8E1560AE0A58437888D0F9 /* Masonry-dummy.m */,
  1272. DBC17D3B0D94239D5407F7887BA601BB /* Masonry-prefix.pch */,
  1273. 2DD3922B8BE4E6C3BAE67ED432CF9885 /* Masonry.debug.xcconfig */,
  1274. 1F0E00D4EC7DDA5E0F50D373BFD7DBF9 /* Masonry.release.xcconfig */,
  1275. );
  1276. name = "Support Files";
  1277. path = "../Target Support Files/Masonry";
  1278. sourceTree = "<group>";
  1279. };
  1280. ADF700408B80AE1F285F84047CF8EB4D /* TensorFlowLite */ = {
  1281. isa = PBXGroup;
  1282. children = (
  1283. A2C97AFCBD52302896DCE3AC8ABFBE5D /* Frameworks */,
  1284. F75E56D91EC0B21B205D165DDB5F1B5B /* Support Files */,
  1285. );
  1286. path = TensorFlowLite;
  1287. sourceTree = "<group>";
  1288. };
  1289. B9A885989CFC579D2D248951C5F7275C /* OpenCV2 */ = {
  1290. isa = PBXGroup;
  1291. children = (
  1292. 05A47A26AE90A67542B409FED863B461 /* affine.hpp */,
  1293. 1E630D5EB5CF2EC9D607987BD79ECAF8 /* all_indices.h */,
  1294. 3F67E7EED800E754031EA8727660DE9F /* all_layers.hpp */,
  1295. 98CE16341D65A37B84956A181F61893D /* allocator.h */,
  1296. A0F78C039E9811DEF0C4B22E6766A756 /* allocator_stats.hpp */,
  1297. 10E8ABCF79BD99BBE04EA3646AAA225F /* allocator_stats.impl.hpp */,
  1298. 44380123F9EE4F5EF98E45FEED735536 /* any.h */,
  1299. F6DACAFCA0C694750431ECD1F3504E39 /* any.hpp */,
  1300. D79D193FAAA333126EFB4F0BCF0FA167 /* assert.hpp */,
  1301. EF90D2733E9CE36A5D76484685FA72D9 /* async.hpp */,
  1302. 4CCE262AAF8560D058C87F8ED4C393EE /* async_promise.hpp */,
  1303. 28ECFDA64C4A2EC421FAF5FC2BA27142 /* autocalib.hpp */,
  1304. EC7CD36415A1EE1DDB8CE158873BA076 /* autotuned_index.h */,
  1305. 9C93448467AF0FC5C5C0671BA0DE53BB /* background_segm.hpp */,
  1306. 3BDA405C2F88BCBB1EA9FEFEC7653BD0 /* base.hpp */,
  1307. 35A625E4846AF05FAADC93AD3ED50064 /* bindings_utils.hpp */,
  1308. 817193C08726BD9D6E8E953D305D1130 /* blenders.hpp */,
  1309. C4665699F1207ABD176C6B9B97823A24 /* block.hpp */,
  1310. C1E56964CD994727A70527CD086D20EE /* border_interpolate.hpp */,
  1311. EEAA76DB65CAD2C944AB72AB41E5EE7B /* bufferpool.hpp */,
  1312. BE518FFFE908DC956869620F7540B0F9 /* calib3d.hpp */,
  1313. E67659E3BE433227B2F73E9C249BF5E0 /* calib3d.hpp */,
  1314. 481AA6A896FA27BEF3DF89FE1E1BD2DC /* calib3d_c.h */,
  1315. 75B7D03C3F6AD2377438E3E01DBD15A1 /* camera.hpp */,
  1316. D212961E3CF998D8217A818E3050C272 /* cap.hpp */,
  1317. E6AFE0D98F5A15AE2DD323C5C6ECE4A1 /* cap_ios.h */,
  1318. 5418B1F8C4F9318C93DBB87D85FA904D /* check.hpp */,
  1319. 1E55DF1E1567B4469F3A4C6F86BFB770 /* color.hpp */,
  1320. 48FE8ED54770D374D2F85AF0995815B4 /* color_detail.hpp */,
  1321. 99EAC841B5F0DE8BEF1FE49C0D15D8B5 /* common.hpp */,
  1322. F3636E694B618C2302F4A749C08BA14D /* compiler_hints.hpp */,
  1323. 0CCFF32221DFD12A850133665FAD2D11 /* composite_index.h */,
  1324. F36CB994324974A53205939D2FCCF77F /* config.h */,
  1325. C3CFA14268E50F17A24FFD98E2F119A5 /* constants_c.h */,
  1326. 39C5D4FD92B9169F910BD54B612734E8 /* constants_c.h */,
  1327. F59973CA6A1163F42F48C30484664273 /* constants_c.h */,
  1328. ECB4AFD6EC0159905D68508C413CC2DD /* constants_c.h */,
  1329. 0B5FA1FD5E0D53DA991F2CEA9CC25EF8 /* convert.hpp */,
  1330. EBD6364BF3A563DECCE3B1C6B4895782 /* core.hpp */,
  1331. 726F9A71E8E7373C88E225FDAFF94F43 /* core.hpp */,
  1332. F11C0A66697CF2CDD1CD4EFE6B9D9066 /* core.hpp */,
  1333. AC831389DCC6145F466A5C4844859B04 /* core.hpp */,
  1334. A199CBBB283705B1B1E1DFE6950EDA7C /* core.hpp */,
  1335. 50F8F94648B122F50E2F628E22FD3994 /* core.hpp */,
  1336. BD73058ABC1FEEB46944092BB2A88100 /* core.hpp */,
  1337. 15066538C9CE55CCB258E26025B979FB /* core.hpp */,
  1338. BEFE2A1249730741808D7FFAA5EFF758 /* core_c.h */,
  1339. 9899019ADC1FB685D4118D0718E0633F /* cuda.hpp */,
  1340. EDF412032B1F77159E7301C433944855 /* cuda.hpp */,
  1341. 0351474B7BF7C6FC5575FF9ADF06D86A /* cuda.inl.hpp */,
  1342. 3B058C3455AE3BB57881004E727D21B5 /* cuda_stream_accessor.hpp */,
  1343. 3E44F3E4290CD567610DAC9F45C5D5C1 /* cuda_types.hpp */,
  1344. 21A0FB8B4DE60C09AF93D9C6BD016931 /* cv_cpu_dispatch.h */,
  1345. 74EA6C6F28C49A24D747CFDE314FE330 /* cv_cpu_helper.h */,
  1346. F6E2D7549154D11D86D951ED2CB555F1 /* cvconfig.h */,
  1347. F7CBE5C7C6134E200EEFE7CE25709A03 /* cvdef.h */,
  1348. F0448F5CD5194E1D938300AC96197267 /* cvdefs.hpp */,
  1349. 436045CFDFDC0E250A0F1DD7CBCB1156 /* cvstd.hpp */,
  1350. 58F629A8AD44C581FDBBD8DCDEFF553E /* cvstd.inl.hpp */,
  1351. 61DA17B36402C9517BBE5BF96880858C /* cvstd_wrapper.hpp */,
  1352. 7E3429187AF93BC813CEE22D6155E815 /* datamov_utils.hpp */,
  1353. 9EFE421426409088E0EB26625771165B /* defines.h */,
  1354. 15D648B64B38A42641E36E6EBBEF005A /* detection_based_tracker.hpp */,
  1355. 34C30A9F02BFEFB974CE2BD19A932D9C /* dict.hpp */,
  1356. A718862A1B1B19BAA2465D13B88CF0E8 /* directx.hpp */,
  1357. D028A131DFCEFAB3AF9D917070910F8F /* dist.h */,
  1358. 35131FD2ED05FA8D8A6C784E3BD4BD19 /* dnn.hpp */,
  1359. F6A0DE9C046AD6D36E7A16F0E0189710 /* dnn.hpp */,
  1360. DA5BD7FFD283E1EB82F17A2FE082E951 /* dnn.inl.hpp */,
  1361. 6788C75CE77BB91F37962EF8CFC044A8 /* dummy.h */,
  1362. 0C86F1E27973CC9BB8FC5AAEBB3EF03D /* dynamic_bitset.h */,
  1363. BB2F83418C0C50EC2C90FECF526160DF /* dynamic_smem.hpp */,
  1364. 9FF6964B966F1248B2A6D97911737730 /* eigen.hpp */,
  1365. F14932DC855F2968F24BBF2F46809246 /* emulation.hpp */,
  1366. 103317BDA0F870667D6439FDE8C7E938 /* exception_ptr.hpp */,
  1367. 686810D956F1CE2C81306F2D77D3190E /* exports.hpp */,
  1368. C016EC766584EDC55EB394E35EC9DD40 /* exposure_compensate.hpp */,
  1369. 12300D1BFF3E3D721D9D7FFA89437B68 /* fast_math.hpp */,
  1370. F6C5DF7E88724A4663BD93A3067267A9 /* features2d.hpp */,
  1371. 374714964311622593B9D492C68BBDB5 /* features2d.hpp */,
  1372. 49440A3483B1BDF65FF91971D889E7DE /* filesystem.hpp */,
  1373. C26ECA886AED40AB6BE048ACEA3863FE /* filters.hpp */,
  1374. FB0584FC992FE38A106704E1D7B1F80B /* flann.hpp */,
  1375. 42760E920AD4D3A14BFBEED90C3EA76C /* flann.hpp */,
  1376. FF551BB244756B44BBA909AD6DDFA0D5 /* flann_base.hpp */,
  1377. 3CBB2BD0B982EF173F246957BE5CC360 /* funcattrib.hpp */,
  1378. 42C328200F0690C56E364FDD73752230 /* functional.hpp */,
  1379. 63461DE6FD2D71529A5BF0FD2BB26A33 /* gapi.hpp */,
  1380. 814677B9AC7AC0FD7AB189A97D417CEA /* garg.hpp */,
  1381. 528D31D147C7AE87DA1B059D1E547240 /* garray.hpp */,
  1382. 87FB9F6AA326948FF957CDBA9D45E100 /* gasync_context.hpp */,
  1383. E2C2465724CD85874DC1CBC5D5190A35 /* gcall.hpp */,
  1384. 8770346476564128E1D95CB54F75F259 /* gcgraph.hpp */,
  1385. 5CF5EB396EBD02DD86AB399DEA4E80FA /* gcommon.hpp */,
  1386. 366F129798E72746492C7FADD3532CED /* gcompiled.hpp */,
  1387. 3B16CA06D0B97E598725B65CB71FBB95 /* gcompiled_async.hpp */,
  1388. 00912CB6F3380F8736F373DBAE8FA6B1 /* gcompoundkernel.hpp */,
  1389. 35D84269593E08F6445313658DB6DB04 /* gcomputation.hpp */,
  1390. E618D46BBC90B64CA85E88D0C0FB2704 /* gcomputation_async.hpp */,
  1391. 6F93793A32A19535E981EE3E197C14A8 /* gcpukernel.hpp */,
  1392. 33293E9BA19D81017A5F0392631C32C8 /* general.h */,
  1393. 6FCCBC868E908636BC4DC26DFCCB73AC /* gfluidbuffer.hpp */,
  1394. 8A9D397A98B68E9C6F1E5FA17EE7FDF0 /* gfluidkernel.hpp */,
  1395. 5676CE3498BF37D86DEB1A2716A165B0 /* ggpukernel.hpp */,
  1396. 93284ED57311215B6CF5B7FFE4BC1EAF /* gkernel.hpp */,
  1397. 9E71193FBE9AF461922EBB18D9FEECD9 /* gmat.hpp */,
  1398. 6554F1AFA9070B5F367C54FA6ED414A3 /* gmetaarg.hpp */,
  1399. FCCF967D51CCFA58125B8406F73EEED5 /* goclkernel.hpp */,
  1400. 9BB74D8D5E596EA2BEDBDBECD4A25A7D /* gopaque.hpp */,
  1401. 4B605741B71EAB95088C2C250FC9876D /* gplaidmlkernel.hpp */,
  1402. D8056FFA2DD7767335E466254615571A /* gproto.hpp */,
  1403. 56A656A26215BA22326B0887766676E4 /* ground_truth.h */,
  1404. B330F958ABF1F7DA12048F8B62C9091B /* gscalar.hpp */,
  1405. 6CEB762647C061E734FD11ECD5DCDD81 /* gstreaming.hpp */,
  1406. B0EF2D0C37036265843073E48DD98C54 /* gtransform.hpp */,
  1407. E4522505269E00C38F1577DC70E63CD3 /* gtype_traits.hpp */,
  1408. F8CC79F52C7C4A4DEEDA9707AE215BB5 /* gtyped.hpp */,
  1409. 52F383E03E8A05773263617366665186 /* hal.hpp */,
  1410. 91350BD7CE2B79E68985176FF23998EF /* hal.hpp */,
  1411. E138D61F861F5196B62CC6D2F17553A0 /* hdf5.h */,
  1412. BD7EED3F52E1032AC910A9E16B4F611A /* heap.h */,
  1413. DE5A0206ABCD9BA57F5AFE5080E06AAB /* hierarchical_clustering_index.h */,
  1414. FE379923F218CB636A04AF62A0EBDD84 /* highgui.hpp */,
  1415. 8C9E1AB15AA2605F71CB4295E60D5F5B /* highgui.hpp */,
  1416. 7AF13B5C074766CBB721EAA1F9AE6C05 /* highgui_c.h */,
  1417. F037D0F04904A8EE14177C57507D80EB /* ie.hpp */,
  1418. 16CCE46985B1244C60C8BF8A276E3651 /* imgcodecs.hpp */,
  1419. CB2A62C8153944112A66474C51452439 /* imgcodecs.hpp */,
  1420. 35AB646420DB1798CBF8F5642171846F /* imgcodecs_c.h */,
  1421. FE73F6BC8C6A5634A88928AE62FBC198 /* imgproc.hpp */,
  1422. 38E9EE5C24609F4F6091CCDA1DE0B658 /* imgproc.hpp */,
  1423. 83A7F9C5B595A5CA3A8442245A96D9A8 /* imgproc.hpp */,
  1424. 2A892652B2C46866345E169D6F661933 /* imgproc.hpp */,
  1425. 01A780DB077A4A47F42BDC179AA41478 /* imgproc.hpp */,
  1426. AF5E8B51C4D20186FDD5CBC8B2A5EBDD /* imgproc.hpp */,
  1427. 3ED5A12E879A1EC2A5931370372C355F /* imgproc.hpp */,
  1428. 2C29C10553586CC809174CAF9DABD25D /* imgproc_c.h */,
  1429. 4742B0FF5DE13A610E7222DBCC0C55D6 /* index_testing.h */,
  1430. ED4F19203EAC96758D908259AB59D732 /* infer.hpp */,
  1431. 502D1B33CA92533E6A7CB40E255ABDE1 /* inference_engine.hpp */,
  1432. 790D1D52B16AC22E3A6F4C823CCE83EA /* instrumentation.hpp */,
  1433. D5985AF22B8E88E492976F08D972FD7E /* interface.h */,
  1434. E7A88A239056C1EA3C5E1005EF7E3428 /* interface.h */,
  1435. ED38B2EC6FB7109F65B45A10C3722011 /* interface.h */,
  1436. 60B5B2B307FC6408DC4D6D6B0351BA8D /* intrin.hpp */,
  1437. 3ECAF4D12EA721982BC888F626BC4A9C /* intrin_avx.hpp */,
  1438. 10A011BC26BDCBB5F9647BE315437C7F /* intrin_avx512.hpp */,
  1439. 9ADAC707073730233795FE46955C1D45 /* intrin_cpp.hpp */,
  1440. 016835B2CB0F997B18130818A55BF273 /* intrin_forward.hpp */,
  1441. 187E70EDAF9430D74631B4D0D8941B04 /* intrin_msa.hpp */,
  1442. 9F27C16288C79B3F70E10E117CC75C19 /* intrin_neon.hpp */,
  1443. 105074DF368CDD3C8F822A1667300763 /* intrin_sse.hpp */,
  1444. F87692F65E56DA66DC553881A17567C5 /* intrin_sse_em.hpp */,
  1445. DF544679131529C2627584DF33DC1F66 /* intrin_vsx.hpp */,
  1446. F7BA158CD1964D13E4F4BDDD8452B1AD /* intrin_wasm.hpp */,
  1447. AD175395CD4D3CAE091083E3431CC7D7 /* ios.h */,
  1448. DE2DF9D9180305349F5596B535308774 /* kdtree_index.h */,
  1449. 221ABB67735F9CADA80F4021AFFA2132 /* kdtree_single_index.h */,
  1450. 13C684D045B3B8191101E814A1AA04B9 /* kmeans_index.h */,
  1451. 08BFCD1C62FCD4506F9DA013F88C7848 /* layer.hpp */,
  1452. D9650143799BB7765F9ED3D122C5F53A /* layer.details.hpp */,
  1453. 2A4C82A7E53516C57C23D930064D55FA /* limits.hpp */,
  1454. 437E6AEE76E905A48D18ABD0AE3E4099 /* linear_index.h */,
  1455. 1889889547A7F4A6AAE37D7FC2436EBD /* logger.h */,
  1456. 9A23AB8E954B804243582F168505BC3F /* logger.hpp */,
  1457. 28F972AC7A75FA6A834F1398B95B240A /* logger.defines.hpp */,
  1458. B76250D1967991E15334304359890E8A /* logtag.hpp */,
  1459. EADF096CCD7622A3B268A46625271309 /* lsh_index.h */,
  1460. 5D9E84BD2BBCCF9167A83F20D84E9FE3 /* lsh_table.h */,
  1461. 5F2499C56FDE4C72A5972393AF272E71 /* mat.hpp */,
  1462. 13A72F0706564BBBEC05CB216C11039C /* mat.hpp */,
  1463. DF883562FF0EC12C0E4E6C4387D0366E /* mat.inl.hpp */,
  1464. C7B316A3E513B590F2BB1A681DAFDF90 /* matchers.hpp */,
  1465. C9CACE7810F6476A24E522C8A228CDA4 /* matrix.h */,
  1466. 61DBD22E5B3C1897522B458A0D2B2302 /* matx.hpp */,
  1467. 29B829673F9D5AB2BD30E5304DB7EEA6 /* miniflann.hpp */,
  1468. 060E98502F6CA9163FD871330D9CD96D /* ml.hpp */,
  1469. 91BBA521B488F37F35827F34D8F49ACA /* ml.hpp */,
  1470. A172E3F1F28CA8F762FCB88A2CD06EA5 /* ml.inl.hpp */,
  1471. B08AE4F8357BF45AF7A8FC37DC864E20 /* motion_estimators.hpp */,
  1472. 07F2A216767C8D159754726A2A81D675 /* msa_macros.h */,
  1473. ED0501F07C0855EF9A44458701515C57 /* neon_utils.hpp */,
  1474. 0BB309B43F5FCD98B7DDFF51BF91A966 /* nn_index.h */,
  1475. BB663C341E3A7C3D059BF8FA81EB8EC1 /* objdetect.hpp */,
  1476. 19B40C19F1226825A99FAFB90C461179 /* objdetect.hpp */,
  1477. A39DBDDDFF175D6DB5DE1C978EF72BC4 /* object_factory.h */,
  1478. C6AFDFDB3B2500E6F160EC3678234DF0 /* ocl.hpp */,
  1479. E887D7703970DCC7DF001C9AC8B89F33 /* ocl_defs.hpp */,
  1480. 6D5B65C6116E4E34FFED89E3FF2A7F0E /* ocl_genbase.hpp */,
  1481. 2224DBA15D27B944A3AB7B5B77309434 /* opencl_clamdblas.hpp */,
  1482. 75E7F04302018DAFA9D1A6046A1610A5 /* opencl_clamdblas.hpp */,
  1483. 106F4EABCF29A7E8C231476B88510999 /* opencl_clamdfft.hpp */,
  1484. 2B7D9038602BFB625E3B27BDD9183E2C /* opencl_clamdfft.hpp */,
  1485. B9E10E41D1765BF2A952F34675CFEB8E /* opencl_core.hpp */,
  1486. CBB4B5116A4FF8B9FE4CFA95D75CF6DE /* opencl_core.hpp */,
  1487. D2170F14599400B497EE906413E47464 /* opencl_core_wrappers.hpp */,
  1488. 5669433C89ABD32ADAE50F9067D258AE /* opencl_core_wrappers.hpp */,
  1489. CF59B26AE1E6890008624145EC59E6F5 /* opencl_gl.hpp */,
  1490. 8C225940EE69D7DEF21626FDB604BB18 /* opencl_gl.hpp */,
  1491. 7C76B84B6CAE7F2A7249CE02191B4D39 /* opencl_gl_wrappers.hpp */,
  1492. 355EAE8E92CDE12FDC04AC24F6E5C7FC /* opencl_gl_wrappers.hpp */,
  1493. 9CFC1E8A4E3A321EE1F437991322D520 /* opencl_info.hpp */,
  1494. ABC22E28433BB89070EB7E08AB010222 /* opencl_svm.hpp */,
  1495. 98A9357586FADCBD80343548005D4EA7 /* opencl_svm_20.hpp */,
  1496. 8305E651A435A489ACF54DBA847EC7FC /* opencl_svm_definitions.hpp */,
  1497. 1D24FBCB23C1AAE6939B6A8FD7BCEE46 /* opencl_svm_hsa_extension.hpp */,
  1498. 73F836811E383C73C37E727FB119C47B /* opencv.hpp */,
  1499. 42015A3BF72FFC1D808FDCDCD641F7CC /* opencv_includes.hpp */,
  1500. 9FC5F44331640C08011CB985CFA19559 /* opencv_modules.hpp */,
  1501. 429256013C4DD9212877A5391BB0A3FA /* opengl.hpp */,
  1502. 7EF45D86E345243196F685B844912F6F /* operations.hpp */,
  1503. 2ECA98A2345101089E1662579080E586 /* operators.hpp */,
  1504. FCF4E794F0A37D3EF3A19709349605A0 /* optim.hpp */,
  1505. 1160A588884958BA14D83256FFE827EA /* optional.hpp */,
  1506. AC622FD6E3183B6889B29FEA20760367 /* ovx.hpp */,
  1507. 39BEA5B8C05CC6AD6AC576AB4E8DAA53 /* params.h */,
  1508. A165F021E066597829F2FB76B1335C44 /* persistence.hpp */,
  1509. FDE14CA3B90A00CE932F87B872B5D127 /* photo.hpp */,
  1510. 8C56C16991C5341747E75AF473E7A1AA /* photo.hpp */,
  1511. E40BC60E8D8849E9F2CBE2D4969C8743 /* plaidml.hpp */,
  1512. 79C8778FBF822AC259820E6C7314F0CB /* random.h */,
  1513. 96624A62FA7481915D2DC4A4D67B4314 /* reduce.hpp */,
  1514. B6A71BBE9EA1E9D012D6BDC37D088333 /* reduce.hpp */,
  1515. B945FFA193A6A8C5E524FB88BCE25110 /* reduce_key_val.hpp */,
  1516. C924B750B5DC3B31E4594E417CF3A55C /* registry.hpp */,
  1517. DB9F9F3985AEB210C7DEEB4EFBF7D7DE /* render.hpp */,
  1518. 1D102FF3F737033574436B4747A787DE /* render.hpp */,
  1519. 56017C0169A9FA3B54C4BEEB45C5CBD9 /* result_set.h */,
  1520. C54B2A2366E6F64BF4EACFC298DB7DC4 /* sampling.h */,
  1521. CB482258EAA5F2B676C2CF1214CCA699 /* saturate.hpp */,
  1522. 2099448B18D102E15ECD25C39D5D326B /* saturate.hpp */,
  1523. 500138008EC2CEE923C9096F6C89D647 /* saturate_cast.hpp */,
  1524. C95DEF97D83E9AC28AD968742BC30CA5 /* saving.h */,
  1525. 8BCB57459084C5B584BADA8587189F56 /* scalar.hpp */,
  1526. C462743524887128AA8CCDBC0FF0C73C /* scan.hpp */,
  1527. EAFF820C80398F13E84B113DFEBAA029 /* seam_finders.hpp */,
  1528. 1F5FE9E80B7F7F23B4585205FAD6F1AC /* shape_utils.hpp */,
  1529. 8138F3F15D61C3E3BEB88EB0FF9021E6 /* simd_functions.hpp */,
  1530. A0AED7ED98B6B61FD688F6E65C78CC11 /* simd_intrinsics.hpp */,
  1531. 98C1AF0F7DB8C93922AC41A7C44096EA /* simd_utils.impl.hpp */,
  1532. 082566197EF48E6F7A71E6334ADCAD6C /* simplex_downhill.h */,
  1533. 85E641D9B645B2C09962C944477705FB /* softfloat.hpp */,
  1534. 39A89EB028BA0D42AB7436A40F01B72F /* source.hpp */,
  1535. CBA4B3D16CA92D4444B7E3A6B8017B1E /* sse_utils.hpp */,
  1536. 6E02D156AF78AE77AACD53D87081BAEF /* stitching.hpp */,
  1537. 98DE643BA7638D88F1E1BFA95EB402D1 /* throw.hpp */,
  1538. EC218DC8FD477A027FE92708D07B8578 /* timelapsers.hpp */,
  1539. 23A54F8A83D9258C2C8870DB92717BF5 /* timer.h */,
  1540. 71BA47BD973926D7D4831F412959C342 /* tls.hpp */,
  1541. 380AB62A6B53682A270AD795541A47A5 /* trace.hpp */,
  1542. 38F5BAD6613EA2CA23DA573E9591B3A3 /* tracking.hpp */,
  1543. 1201FE7AD08CFBA3A2E4E37F61372E6F /* traits.hpp */,
  1544. 0856197302CEC1F919C5C338BD78CEE8 /* transform.hpp */,
  1545. AC582ED78678F09DA000975C330219FB /* transform_detail.hpp */,
  1546. EA186BD7831F857B8B44516DABF10502 /* type_traits.hpp */,
  1547. 95539590142A8E270823976510EBB555 /* type_traits_detail.hpp */,
  1548. C97CB484B194064FD265A8D03B64D8D0 /* types.hpp */,
  1549. 98826CE10FFBE3EF2D3FC49A3205BD02 /* types.hpp */,
  1550. 57D34A16F9D50B472939BF5B640BD3C0 /* types_c.h */,
  1551. F638E78D7185C4C6FCC293F6421AF35B /* types_c.h */,
  1552. DBCB356B9E9BE36292C2DE940C6CC91B /* util.hpp */,
  1553. D6BA7BFFAF8BEDC73C766DC03EA6FF46 /* util.hpp */,
  1554. A6F2DF7B3745DAFEA3B6544A9BF2C528 /* util_inl.hpp */,
  1555. C3F4639AF49CB9726051AFA6D50EEBC1 /* utility.hpp */,
  1556. B74A04800F249B0FF9F0C74CB4CD424F /* utility.hpp */,
  1557. 4F7139EF51E2179A638847803A3F5362 /* va_intel.hpp */,
  1558. 15A57DCBCE72C119F39D4358DEA252FA /* variant.hpp */,
  1559. 506DF75980870572F4E61E7732AD97A9 /* vec_distance.hpp */,
  1560. 8705DE23BAB237EB1302B77FF9B3DF38 /* vec_distance_detail.hpp */,
  1561. 69369E089F8E885B6C221B1E2273A681 /* vec_math.hpp */,
  1562. 5DE9210938E8C36F73748BEBA295CC53 /* vec_traits.hpp */,
  1563. 2ED480DA74C09C19BD2DC140F029FFAF /* version.hpp */,
  1564. 8120EC271D95CB10C91242A65A90E6FE /* version.hpp */,
  1565. A1F079FF6554029FB4F26EC28F5255A7 /* video.hpp */,
  1566. D8B20D602E73F8DD996A68D408DECF5B /* video.hpp */,
  1567. D13327B74EC3AB232A72CA60ED77163F /* videoio.hpp */,
  1568. 4197F3B05BD474A2CE2BB3BFD2CE8280 /* videoio.hpp */,
  1569. 117EFCF6E7B32E335C9B7CCFD7261E86 /* videoio_c.h */,
  1570. 5F65221BE93CB8EE2FEA24E40AC42A30 /* vsx_utils.hpp */,
  1571. CF7F875E9F2B8715633857519E741B4A /* warp.hpp */,
  1572. 5A83A51243C2D849883D9F1BCD9A4ECE /* warp_reduce.hpp */,
  1573. AC06D2948EA51D189BF32F25DA893136 /* warp_shuffle.hpp */,
  1574. DC555EADD27A4426A617B2150C51586C /* warpers.hpp */,
  1575. D645E54084D664DC389194A8F7DDD813 /* warpers.hpp */,
  1576. F52FBC8379F03FBC7892457EB8667932 /* warpers_inl.hpp */,
  1577. 79BE969CB25933490EED2D43C2D61656 /* world.hpp */,
  1578. EFF942BBE0F3DD7A22178A31416D2DDF /* Frameworks */,
  1579. 78E3D5CA530FE0BBE26EF4F634B54B85 /* Support Files */,
  1580. );
  1581. path = OpenCV2;
  1582. sourceTree = "<group>";
  1583. };
  1584. C3C4C7B49F50209AEC33735F6F5E7715 /* Renderer */ = {
  1585. isa = PBXGroup;
  1586. children = (
  1587. 02CBBDB78E8D3F8A784AE3BBADD7B4E2 /* CameraTextureRenderPass.h */,
  1588. 54849A70BFAFE633A8C7FC4144ACABC9 /* CameraTextureRenderPass.m */,
  1589. 8B4EA76A793A36B9A7E2A62BC2290475 /* Renderer.h */,
  1590. 11995773E721362D45D960C7F36F5FEE /* Renderer.m */,
  1591. );
  1592. path = Renderer;
  1593. sourceTree = "<group>";
  1594. };
  1595. C42023FCFE81BFC742AC9E9701D2A6AB /* UIView+tool */ = {
  1596. isa = PBXGroup;
  1597. children = (
  1598. BE10F47AF781EB7BBCB9D14B9104B2AB /* UIImage+name.h */,
  1599. DDA696B09B5BC657EDD9EEF4F23DD670 /* UIImage+name.m */,
  1600. 6A8E430D8C35488AC558374EE4BA1474 /* UIView+JKAdd.h */,
  1601. 7CAD41A57A8B36805097520423BF764A /* UIView+JKAdd.m */,
  1602. );
  1603. path = "UIView+tool";
  1604. sourceTree = "<group>";
  1605. };
  1606. CAB30AB909BF7A2AD291C417675CB9EB /* Transition */ = {
  1607. isa = PBXGroup;
  1608. children = (
  1609. E8448C1CD71F60B17168F38D5EFCB996 /* CustomModalViewTransition.h */,
  1610. C28F183D9772C443C261382978D5FE59 /* CustomModalViewTransition.m */,
  1611. );
  1612. path = Transition;
  1613. sourceTree = "<group>";
  1614. };
  1615. CF1408CF629C7361332E53B88F7BD30C = {
  1616. isa = PBXGroup;
  1617. children = (
  1618. 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  1619. DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */,
  1620. D89477F20FB1DE18A04690586D7808C4 /* Frameworks */,
  1621. 98343A210BF0B03D15CFF9F20CD5FB37 /* Pods */,
  1622. 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */,
  1623. E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */,
  1624. );
  1625. sourceTree = "<group>";
  1626. };
  1627. CFC4B6F53B32A44D9145E36BD537105D /* inner */ = {
  1628. isa = PBXGroup;
  1629. children = (
  1630. 8FE3BD74EAD7C908B20106186733CE20 /* LenzHeader.h */,
  1631. 71D82F32955C03B4BE062D50CBDD63C5 /* Localizable.strings */,
  1632. 4E1905F2890898F5477C5019D7DFD454 /* PCSSessionWrapper.h */,
  1633. CB54B514636CC00FD3A2B6DA70EA4A19 /* PCSSessionWrapper.m */,
  1634. D97B06C519D5FD968D64BBFA38380A55 /* PCSTools.h */,
  1635. 0B9F19843D637C93ED4EBCB461D9D66C /* PCSTools.m */,
  1636. 2B69F1B64B862CC6F2EFDFF117AA6BED /* SDKParameters.m */,
  1637. 52BB4930B3A773F6833C87F4E518D1CB /* VC.storyboard */,
  1638. 0FAC576D59D3720018CBD128C53C00D8 /* Alert */,
  1639. 8F4495DC8A7707DCB486C332023D415C /* CameraManager */,
  1640. DBBF3BB8A44E655709A90F67E98E2B20 /* DB */,
  1641. 0F14168F4FCBC5A2EA0AAC55DBCC860E /* Exts */,
  1642. 6D432D89D83C5D2F48D64486104B742D /* LRU */,
  1643. EA13332B2D06042FF8A189A30124EF40 /* MoviePlayerViewController */,
  1644. E94E3D21D273B2D60DC7F391B39ABC52 /* OperationNode */,
  1645. 3E22DA8E872F8DF4CB5CE8CC3375D11C /* PCSBaseViewController */,
  1646. 91D385D35B351E0698AC14601128BA08 /* PhotoListController */,
  1647. C3C4C7B49F50209AEC33735F6F5E7715 /* Renderer */,
  1648. 42E5089EB4AB450650E090EB00F05076 /* UI */,
  1649. );
  1650. name = inner;
  1651. path = LenzCameraNativeModuleForRN/Classes/inner;
  1652. sourceTree = "<group>";
  1653. };
  1654. D1446D420D7C73D12340A2EADFB1273E /* Support Files */ = {
  1655. isa = PBXGroup;
  1656. children = (
  1657. 48C54F1C97D437C71404C5679FD34D98 /* LenzSDK-dummy.m */,
  1658. 19C1DCB0EBA4EC9BA68CAF34CE406991 /* LenzSDK-prefix.pch */,
  1659. 2175890DB000CF76EAEEA45790F88246 /* LenzSDK.debug.xcconfig */,
  1660. 0D1341154A8F9632231A017F5EF36AAF /* LenzSDK.release.xcconfig */,
  1661. 58781D7744EE55563FD3DBBA7978FD73 /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */,
  1662. );
  1663. name = "Support Files";
  1664. path = "Example/Pods/Target Support Files/LenzSDK";
  1665. sourceTree = "<group>";
  1666. };
  1667. D2592EDE18483CCAF01D6C08266F50CE /* Masonry */ = {
  1668. isa = PBXGroup;
  1669. children = (
  1670. BC674E2B3882A8B024EA11D3EDA96A05 /* MASCompositeConstraint.h */,
  1671. 2E170088911070D57FD1A2B1667B2358 /* MASCompositeConstraint.m */,
  1672. 6B102F3E8763449C6DA99024D84CC479 /* MASConstraint.h */,
  1673. 5C0EF01C047A7FEE68E5418B5310DDF5 /* MASConstraint.m */,
  1674. 227095F2E2705735D5DD170ACF8443CC /* MASConstraint+Private.h */,
  1675. 323E11B6F2B40B2A30076A06EFA4ADE9 /* MASConstraintMaker.h */,
  1676. B6152C74D04927B37768ECA5C413A39D /* MASConstraintMaker.m */,
  1677. CF96F2C7EC4B6437454D8220D5243A97 /* MASLayoutConstraint.h */,
  1678. 36385A4948651DCADD828F5EF6D7A860 /* MASLayoutConstraint.m */,
  1679. 2E7E70EE65C8B436ADCE623518B16FE6 /* Masonry.h */,
  1680. 7D7B0F9E76BFC703B6AE35CEAED63132 /* MASUtilities.h */,
  1681. B48AB8CF97AD45F50A994EA915B73369 /* MASViewAttribute.h */,
  1682. 35783455FD2B307819356A0F7317E3A2 /* MASViewAttribute.m */,
  1683. A473A64BA4823CEB1B77F1547BD26BBE /* MASViewConstraint.h */,
  1684. D1E565F5A1FAD79799DA4DD176AD4C23 /* MASViewConstraint.m */,
  1685. 7F4422F57F95BCAEE8E0D37ACA7839F1 /* NSArray+MASAdditions.h */,
  1686. 5582002E4734B8D4F2CF285ACDADD796 /* NSArray+MASAdditions.m */,
  1687. D148391102C9E7C3871EC94238BA859B /* NSArray+MASShorthandAdditions.h */,
  1688. 32EB214088A160CD9BBDD73798777B90 /* NSLayoutConstraint+MASDebugAdditions.h */,
  1689. 92B59450A36F461CAC82435BFD5079CE /* NSLayoutConstraint+MASDebugAdditions.m */,
  1690. E4C8EF7032A09396718DC47C5598B84B /* View+MASAdditions.h */,
  1691. 78A8D9791F0CBE7252EBEE929FC9ADBA /* View+MASAdditions.m */,
  1692. C66C450F27C4A5097C9E02DE7DCEF9D1 /* View+MASShorthandAdditions.h */,
  1693. E4CA823439A1050ECE966231061E1230 /* ViewController+MASAdditions.h */,
  1694. A682665B0F2F184E8E8A631EADACC029 /* ViewController+MASAdditions.m */,
  1695. AA5651695ECA2551FE4073E9ED3512A9 /* Support Files */,
  1696. );
  1697. path = Masonry;
  1698. sourceTree = "<group>";
  1699. };
  1700. D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = {
  1701. isa = PBXGroup;
  1702. children = (
  1703. );
  1704. name = Frameworks;
  1705. sourceTree = "<group>";
  1706. };
  1707. DBBF3BB8A44E655709A90F67E98E2B20 /* DB */ = {
  1708. isa = PBXGroup;
  1709. children = (
  1710. C4FEF0D34E6832727EC76E4268FB5368 /* DBManager.h */,
  1711. 8F804CD80B152A54BC10E41E1A166C91 /* DBManager.m */,
  1712. 24E6FD5645C50D31CAF316183893EED5 /* LenzDataManager.h */,
  1713. D785BBEA22031EFDAFA81BFFB1F4AF9E /* LenzDataManager.m */,
  1714. 01C8A734F4C6A1A32CD88C14DDB9C99D /* DBModels */,
  1715. );
  1716. path = DB;
  1717. sourceTree = "<group>";
  1718. };
  1719. DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */ = {
  1720. isa = PBXGroup;
  1721. children = (
  1722. 67A363A478D76722A2B07D1E19041A18 /* LenzSDK */,
  1723. );
  1724. name = "Development Pods";
  1725. sourceTree = "<group>";
  1726. };
  1727. E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */ = {
  1728. isa = PBXGroup;
  1729. children = (
  1730. FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */,
  1731. );
  1732. name = "Targets Support Files";
  1733. sourceTree = "<group>";
  1734. };
  1735. E94E3D21D273B2D60DC7F391B39ABC52 /* OperationNode */ = {
  1736. isa = PBXGroup;
  1737. children = (
  1738. A0DB390F2F8637ECB1D7D96A822A43E1 /* OperationNodeAIPanorama.h */,
  1739. 0A8E65F5922D5E671F7B2AB3C188CC4A /* OperationNodeAIPanorama.m */,
  1740. 2AACDE67265880AE9089E9C28045E49E /* OperationNodeMovie.h */,
  1741. 61BFBD445E4773577F009B98A0C9F00E /* OperationNodeMovie.m */,
  1742. 132EF86515ED80C54165D1DFBE19F906 /* OperationNodeMultiple.h */,
  1743. 94EE88B7988390139D81189286DCED7A /* OperationNodeMultiple.m */,
  1744. C3F90AD0F5B4B1BF84C6DFECDF847870 /* OperationNodePanorama.h */,
  1745. CC1E8A339EEB246A8A4B279954316526 /* OperationNodePanorama.m */,
  1746. 794BF3777CD518DE31D09D74657CFB5F /* OperationNodeProtocol.h */,
  1747. C95726C7DA3589EBD7FAA2ABEB600403 /* OperationNodeSingle.h */,
  1748. 222058D5572B27C1FC096C12DA2BD59F /* OperationNodeSingle.m */,
  1749. F267B927DC7BAF6021098E564C3F76D3 /* OperationNodeVideoBase.h */,
  1750. 55AE0A7F12C1B365E94D377198CA213C /* OperationNodeVideoBase.m */,
  1751. FFD8745AD0ACB02BADC27DFADBA337D9 /* PCSMotionManager */,
  1752. );
  1753. path = OperationNode;
  1754. sourceTree = "<group>";
  1755. };
  1756. EA13332B2D06042FF8A189A30124EF40 /* MoviePlayerViewController */ = {
  1757. isa = PBXGroup;
  1758. children = (
  1759. 57E8904661BEB271AF282CB3E969BB7D /* MoviePlayerViewController.h */,
  1760. D21E243D3A634A857B5E73A166EBB150 /* MoviePlayerViewController.m */,
  1761. );
  1762. path = MoviePlayerViewController;
  1763. sourceTree = "<group>";
  1764. };
  1765. EFF942BBE0F3DD7A22178A31416D2DDF /* Frameworks */ = {
  1766. isa = PBXGroup;
  1767. children = (
  1768. 3E8029DD0FDBD5F2FCDAE26900F91574 /* opencv2.framework */,
  1769. );
  1770. name = Frameworks;
  1771. sourceTree = "<group>";
  1772. };
  1773. F71D6BF42B7421257000118549DC4623 /* CollectionViewCell */ = {
  1774. isa = PBXGroup;
  1775. children = (
  1776. FE2672179FA0031452C7C1ADF02565D3 /* PhotoAlbumModel.h */,
  1777. 737A47B4E0E35EBE6387CB88C7946850 /* PhotoAlbumModel.m */,
  1778. 6CDDA53C6D1FD9CC26D3E7EE8D241DA4 /* PhotoCell.h */,
  1779. 46F6CF30AA683165DC263A6F4A36351F /* PhotoCell.m */,
  1780. 4C4DFBA4A4268406E16254384F37E4B8 /* PhotoCell.xib */,
  1781. );
  1782. path = CollectionViewCell;
  1783. sourceTree = "<group>";
  1784. };
  1785. F75E56D91EC0B21B205D165DDB5F1B5B /* Support Files */ = {
  1786. isa = PBXGroup;
  1787. children = (
  1788. F83198B7D4D1070C156E523A120B7C5A /* TensorFlowLite.debug.xcconfig */,
  1789. 34D3161F77526AB76CF74AB041515EB8 /* TensorFlowLite.release.xcconfig */,
  1790. );
  1791. name = "Support Files";
  1792. path = "../Target Support Files/TensorFlowLite";
  1793. sourceTree = "<group>";
  1794. };
  1795. F913DE2DFAAF24F0F4F890996C813F5D /* headers */ = {
  1796. isa = PBXGroup;
  1797. children = (
  1798. A18B0F43BF8B46398895C484672AA18D /* LenzCameraNativeModuleForRN.h */,
  1799. A259ABB2FB8587B25F3CE31A81AF77DB /* LenzCameraSDK.h */,
  1800. 2BBC9EF8E30EB4D6A88070CA2B6DA9E4 /* LenzCameraSDK.m */,
  1801. 9CB0CB14031C9B76B03091D5BBF88BC2 /* LenzSDKConstant.h */,
  1802. 04FEEFB937242429CBBD1C058A96300B /* SDKParameters.h */,
  1803. );
  1804. name = headers;
  1805. path = LenzCameraNativeModuleForRN/Classes/headers;
  1806. sourceTree = "<group>";
  1807. };
  1808. FD8193DB81F23510842E0D80A685F4B3 /* PanoramaGuideView */ = {
  1809. isa = PBXGroup;
  1810. children = (
  1811. 54F7F53531C9AF5E2E79AD7D9A3407E1 /* PanoramaGuideView.h */,
  1812. 382201D83F462FFB7A51D4EA89AB1F1B /* PanoramaGuideView.m */,
  1813. );
  1814. path = PanoramaGuideView;
  1815. sourceTree = "<group>";
  1816. };
  1817. FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
  1818. isa = PBXGroup;
  1819. children = (
  1820. AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */,
  1821. 8B4DC4759B1098548FAA7403C6442854 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist */,
  1822. 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */,
  1823. 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */,
  1824. CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */,
  1825. F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */,
  1826. );
  1827. name = "Pods-LenzCameraNativeModuleForRN_Example";
  1828. path = "Target Support Files/Pods-LenzCameraNativeModuleForRN_Example";
  1829. sourceTree = "<group>";
  1830. };
  1831. FFD8745AD0ACB02BADC27DFADBA337D9 /* PCSMotionManager */ = {
  1832. isa = PBXGroup;
  1833. children = (
  1834. CE15512E5F5FB68201632B7707388F8E /* PCSMotionManager.h */,
  1835. 58BF6761F644CCA3A7432CCD6AC62619 /* PCSMotionManager.m */,
  1836. );
  1837. path = PCSMotionManager;
  1838. sourceTree = "<group>";
  1839. };
  1840. /* End PBXGroup section */
  1841. /* Begin PBXHeadersBuildPhase section */
  1842. 4B8DA9E6ECB84106E4C65942CD0DB8CF /* Headers */ = {
  1843. isa = PBXHeadersBuildPhase;
  1844. buildActionMask = 2147483647;
  1845. files = (
  1846. 088B9A9D3EDEFF43EA27FA52CD82FAE3 /* NSAttributedString+YYText.h in Headers */,
  1847. 59F84D443222F8EFEDB1F6FE6664EC77 /* NSParagraphStyle+YYText.h in Headers */,
  1848. 3BE27E410EDE32DD238B9F5548FE062C /* UIPasteboard+YYText.h in Headers */,
  1849. 9DA267B47F69E7FDCFC821579DE77828 /* UIView+YYText.h in Headers */,
  1850. D6C15833BC3960F13AE42C8A8F69C252 /* YYLabel.h in Headers */,
  1851. 4E69C73F6A03F1522559E6199D861729 /* YYText.h in Headers */,
  1852. B9F0E9FEC9BBDF63D42118D7A179FD2F /* YYTextArchiver.h in Headers */,
  1853. 354F96934264C813E6C508AD638BE490 /* YYTextAsyncLayer.h in Headers */,
  1854. 313F958CF7B6CA846B71C93AEFDA4AC3 /* YYTextAttribute.h in Headers */,
  1855. 3E6EA3FC28F1F1107C4F4EF7C7E862E2 /* YYTextContainerView.h in Headers */,
  1856. 2D7C246475417FC6A782D046C0D42D25 /* YYTextDebugOption.h in Headers */,
  1857. 907FBCE9C748373E9CE91FC1891861AD /* YYTextEffectWindow.h in Headers */,
  1858. F986EE522539B0B705EDA954826F2BA4 /* YYTextInput.h in Headers */,
  1859. 09EF1684670510CCDF5B4DEA6BA230FC /* YYTextKeyboardManager.h in Headers */,
  1860. B21B315F6710F3D7A1F15C316D4C0A8B /* YYTextLayout.h in Headers */,
  1861. C71920F0DB62EC9C637AB90771917713 /* YYTextLine.h in Headers */,
  1862. 9B167CF3AAD78649616A13D628B25AAE /* YYTextMagnifier.h in Headers */,
  1863. E299759D280604913A22B8449090BBEC /* YYTextParser.h in Headers */,
  1864. F99C25CEE1765A3DD8823537E0D99508 /* YYTextRubyAnnotation.h in Headers */,
  1865. F2F3D949E365BDEFA8D83D84961162CD /* YYTextRunDelegate.h in Headers */,
  1866. 382170C92B564C580D8B13EF312CFFC8 /* YYTextSelectionView.h in Headers */,
  1867. 392D2E9824A2C7DA6E59FE1D117C64DA /* YYTextTransaction.h in Headers */,
  1868. 94B8E301F7808095F4A7E499D8AD6994 /* YYTextUtilities.h in Headers */,
  1869. 7E50466763FED5F1FBDD5F747C8D596F /* YYTextView.h in Headers */,
  1870. 45E62DD475B57A6F7F90DBB9E7E2F66A /* YYTextWeakProxy.h in Headers */,
  1871. );
  1872. runOnlyForDeploymentPostprocessing = 0;
  1873. };
  1874. 9A9B9271BD0E97E9DF8FD07D8DFBC22C /* Headers */ = {
  1875. isa = PBXHeadersBuildPhase;
  1876. buildActionMask = 2147483647;
  1877. files = (
  1878. );
  1879. runOnlyForDeploymentPostprocessing = 0;
  1880. };
  1881. AE6E29E7E88CF4710C1EE0B5AA33AB46 /* Headers */ = {
  1882. isa = PBXHeadersBuildPhase;
  1883. buildActionMask = 2147483647;
  1884. files = (
  1885. C080AB2E977A89F74EA9FDD24F4E1ADA /* MASCompositeConstraint.h in Headers */,
  1886. 0C22AF89759ACBDAB924A047CC973FC4 /* MASConstraint.h in Headers */,
  1887. D45E969063D160910DB43072B874D272 /* MASConstraint+Private.h in Headers */,
  1888. 74131F906E19DC95DBDB2952FD7AA39D /* MASConstraintMaker.h in Headers */,
  1889. D23599D90B550B24867AF8160A0351EF /* MASLayoutConstraint.h in Headers */,
  1890. E5878CBD4C58FE01BAA883D16F15A199 /* Masonry.h in Headers */,
  1891. 128F39484841CD3BF9A48C11393AC97A /* MASUtilities.h in Headers */,
  1892. 792096B21494CDA91EE9A86FCE39DE26 /* MASViewAttribute.h in Headers */,
  1893. C32CFA34BB3E878385AA98D711DBE99C /* MASViewConstraint.h in Headers */,
  1894. CD554FE9A07B0869EC0628051A132B9F /* NSArray+MASAdditions.h in Headers */,
  1895. CF4F422EDB26E3F0086501FE3AC873F5 /* NSArray+MASShorthandAdditions.h in Headers */,
  1896. 49DF137D031584C02D0358D182BFC356 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */,
  1897. E9AF4C2E8C1C00A54B5943CA9CDD11B6 /* View+MASAdditions.h in Headers */,
  1898. B40D47B34F11690E43F035789C5DE8DA /* View+MASShorthandAdditions.h in Headers */,
  1899. E31A4F93F88E2DC2ABD3BBFE1264BA1A /* ViewController+MASAdditions.h in Headers */,
  1900. );
  1901. runOnlyForDeploymentPostprocessing = 0;
  1902. };
  1903. C4E9556C468B1C60BD609AFCBEEA4B1C /* Headers */ = {
  1904. isa = PBXHeadersBuildPhase;
  1905. buildActionMask = 2147483647;
  1906. files = (
  1907. 41278D4AD72C64ADE4AE4B5519441C87 /* AlbumCounterLabel.h in Headers */,
  1908. 77BE3FACF437B245949D29B526B8170E /* AlertView.h in Headers */,
  1909. 35F23426184D09A2B44FF30DC382C853 /* BaseViewTapGestureDelegate.h in Headers */,
  1910. 9B134BDBE3BA184F38CF7D76B471F336 /* CameraManager.h in Headers */,
  1911. E9240453120F9166C915537A5A24A44B /* CameraTextureRenderPass.h in Headers */,
  1912. 6CFAE66C26C21C2FA294B27FBF920205 /* CollectionViewPlayerCell.h in Headers */,
  1913. 851DD1BBF564F048C8E44971B99B31E2 /* CustomModalViewTransition.h in Headers */,
  1914. E156AABA1405D11BCFF83B49E30AE097 /* DBManager.h in Headers */,
  1915. 1E79DE45F1B48C3E1CFC3D358670F6D9 /* ImageCacheLRU.h in Headers */,
  1916. E8DA8552870948BF8857AB9F124B0C62 /* LenzCachedResourceModel.h in Headers */,
  1917. 8BC94582682DE8C26D4F4D8D527718A0 /* LenzCameraNativeModuleForRN.h in Headers */,
  1918. AA874CF67D76250D05F1F9880E699100 /* LenzCameraSDK.h in Headers */,
  1919. 832C6B5FB0052C044659D664E1CF6A3E /* LenzDataManager.h in Headers */,
  1920. E665D3428255198A096907AE60FE4F01 /* LenzHeader.h in Headers */,
  1921. 0F841877FE6DE7EF12881380F85AC41D /* LenzSDKConstant.h in Headers */,
  1922. 760493D274A9E392B31BEBE5AA0C1253 /* MovieListCellModel.h in Headers */,
  1923. CCB2FF8B221F0B5FF75BFC167B86F43A /* MovieListViewController.h in Headers */,
  1924. 7C7444C5E16A668CBA57BF77AB2081E0 /* MoviePlayerViewController.h in Headers */,
  1925. 4A4D5B4398AA8842C481BA810C366551 /* NSString+Localization.h in Headers */,
  1926. 6F7E1DA85CE6BA0F5A37535B45444C45 /* OperationNodeAIPanorama.h in Headers */,
  1927. 8814415DB5B65CA206DF7B0DF90F8AF2 /* OperationNodeMovie.h in Headers */,
  1928. 25FA3C6528B5A11A0E34E4E31EBFB50B /* OperationNodeMultiple.h in Headers */,
  1929. D75BCF2469DE68D68798BE1FCB3E9977 /* OperationNodePanorama.h in Headers */,
  1930. 251ACAE97C5DD23D85F96B75B81DAFDF /* OperationNodeProtocol.h in Headers */,
  1931. BE79602231583FCB73384FC994DCEDE1 /* OperationNodeSingle.h in Headers */,
  1932. D23054FF8B3ADB0D5E1A0E9849F33C05 /* OperationNodeVideoBase.h in Headers */,
  1933. AD690FBF82E707502264B5B548C06BAB /* PaddingLabel.h in Headers */,
  1934. B24E8CB920E54CB0AB2031DC45E6309C /* PanoramaGuideView.h in Headers */,
  1935. 19E573EA615CFFC084E2F6E24920C4CA /* PanoramaOrientationView.h in Headers */,
  1936. E0A4CB4297E75C95B32A3B800286A471 /* PCSAutherView.h in Headers */,
  1937. 400F670FA3884DB51D21ADE0260535A1 /* PCSBaseViewController.h in Headers */,
  1938. F0A69C7C9E3DF84EC370F5735031B52B /* PCSButton.h in Headers */,
  1939. 76BF2819171670B59F38BF1AFFD19C2C /* PCSModeList.h in Headers */,
  1940. 07CE54D7D50859C021FB6619731B22B4 /* PCSMotionManager.h in Headers */,
  1941. 096AC833B02EE6665001C38162C9DCB9 /* PCSPreviewViewController.h in Headers */,
  1942. F18890AB5B28633B7A72C413558239BB /* PCSRoundButton.h in Headers */,
  1943. 67494A117D518450878B615352E646E6 /* PCSSDF-prefix-header.h in Headers */,
  1944. 50D2E0DCD17C9A17AB8A1CF65FF5A70B /* PCSSessionWrapper.h in Headers */,
  1945. 13FFFFED0ABC6DFA5773992D4B78A254 /* PCSThemeColorManager.h in Headers */,
  1946. AF5DF97297858FDF56B74EA9AB537F73 /* PCSTools.h in Headers */,
  1947. 3934266CBA9FE57C6CD5C08D53916425 /* PhotoAlbumListViewController.h in Headers */,
  1948. 24779718BB22909F42B4DBC337C806E2 /* PhotoAlbumModel.h in Headers */,
  1949. E48C457EF5B6E962BC3A5331EB509B06 /* PhotoCell.h in Headers */,
  1950. BEB96124A1C79D9FA310ABFC72BBF3E7 /* PhotoCollectionViewCell.h in Headers */,
  1951. 5DE003B558DD544DEB2DF108B45540B2 /* PhotoListCellModel.h in Headers */,
  1952. 9CA5B684886A4C68A319B3C23794E8C6 /* PhotoListViewController.h in Headers */,
  1953. AE918B3D4D898F6E092FC01421675183 /* PreviewSingleViewController.h in Headers */,
  1954. 50567A917EA0A48D6F9DF7F98BDD0A47 /* QuitMultipleModeAlertViewController.h in Headers */,
  1955. AD0E58D1DA61008CC9D2ECA7D99931DF /* Renderer.h in Headers */,
  1956. D7F19B573B53C3D0A84A653955EE8002 /* SDKParameters.h in Headers */,
  1957. 25D3AAE31980C3B96BEE99FAF7756BF5 /* TimerLabel.h in Headers */,
  1958. B6219F1F8E312B2DB1645381C1A0B6C5 /* UIButton+Layout.h in Headers */,
  1959. DE9A01EFFA3A6800B14237E2D5C328B7 /* UIColor+JKAdd.h in Headers */,
  1960. CC37AE742280F0B6F00D4D582412D5C1 /* UIImage+ext.h in Headers */,
  1961. F990DA86F518DAB9F62376CF9C6C8F73 /* UIImage+name.h in Headers */,
  1962. 5074624ED734885134212D8E86DF7978 /* UIView+JKAdd.h in Headers */,
  1963. 3F52D30BED8DA231DE30EC8C9D8CFD9E /* VerticalButton.h in Headers */,
  1964. );
  1965. runOnlyForDeploymentPostprocessing = 0;
  1966. };
  1967. FD98A8A61C09566827BAA7DB12870194 /* Headers */ = {
  1968. isa = PBXHeadersBuildPhase;
  1969. buildActionMask = 2147483647;
  1970. files = (
  1971. 833CF336BDC43BE8CE2CA98721EBFEBA /* SVIndefiniteAnimatedView.h in Headers */,
  1972. FAF82BD9E4CB9987002D2E7E422AF4DD /* SVProgressAnimatedView.h in Headers */,
  1973. 3F7B81F374B8346123DD409C3286AB52 /* SVProgressHUD.h in Headers */,
  1974. B7818CE6F8AA04A33BF595BBD4A2B145 /* SVRadialGradientLayer.h in Headers */,
  1975. );
  1976. runOnlyForDeploymentPostprocessing = 0;
  1977. };
  1978. /* End PBXHeadersBuildPhase section */
  1979. /* Begin PBXNativeTarget section */
  1980. 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */ = {
  1981. isa = PBXNativeTarget;
  1982. buildConfigurationList = 92D723CF9631DCDCF0E7C08C6A0BEAFF /* Build configuration list for PBXNativeTarget "SVProgressHUD" */;
  1983. buildPhases = (
  1984. FD98A8A61C09566827BAA7DB12870194 /* Headers */,
  1985. CDBECCFC3E7D37BF23F3C631D61F695E /* Sources */,
  1986. 8EDA85AC7AD34122444A9E44BBC85A9B /* Frameworks */,
  1987. );
  1988. buildRules = (
  1989. );
  1990. dependencies = (
  1991. );
  1992. name = SVProgressHUD;
  1993. productName = SVProgressHUD;
  1994. productReference = E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */;
  1995. productType = "com.apple.product-type.library.static";
  1996. };
  1997. 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */ = {
  1998. isa = PBXNativeTarget;
  1999. buildConfigurationList = 4AD4DC7A052F8025BF9DEC8F58E364BA /* Build configuration list for PBXNativeTarget "LenzSDK" */;
  2000. buildPhases = (
  2001. C4E9556C468B1C60BD609AFCBEEA4B1C /* Headers */,
  2002. A21AE1F09A48A4E2A387F56D42293FCE /* Sources */,
  2003. CEDC2FA7EBCDCA074E0A85F0C7AB09B2 /* Frameworks */,
  2004. );
  2005. buildRules = (
  2006. );
  2007. dependencies = (
  2008. 869BAD418CA659384824A346B077F380 /* PBXTargetDependency */,
  2009. AEAD3F754AF1E43EF02EFC348838D4D4 /* PBXTargetDependency */,
  2010. E816E097E5F2A36C974D574AFA25E474 /* PBXTargetDependency */,
  2011. BA71F479B81951355631934F77B7C197 /* PBXTargetDependency */,
  2012. C447E7D2905FC852F64BCB5EAA67CACF /* PBXTargetDependency */,
  2013. 4FC5FF01C53AB56DD14804DC1DF27B7C /* PBXTargetDependency */,
  2014. );
  2015. name = LenzSDK;
  2016. productName = LenzSDK;
  2017. productReference = CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */;
  2018. productType = "com.apple.product-type.library.static";
  2019. };
  2020. 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */ = {
  2021. isa = PBXNativeTarget;
  2022. buildConfigurationList = EBA64DD41964761EB00683385E0773D6 /* Build configuration list for PBXNativeTarget "Masonry" */;
  2023. buildPhases = (
  2024. AE6E29E7E88CF4710C1EE0B5AA33AB46 /* Headers */,
  2025. 660A3C7403AC8461B1EBFB60347CA748 /* Sources */,
  2026. C7074882ACEAB207A456EF36D5F7B36F /* Frameworks */,
  2027. );
  2028. buildRules = (
  2029. );
  2030. dependencies = (
  2031. );
  2032. name = Masonry;
  2033. productName = Masonry;
  2034. productReference = 1FFED36A657123030ABB700256D73F15 /* Masonry */;
  2035. productType = "com.apple.product-type.library.static";
  2036. };
  2037. 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */ = {
  2038. isa = PBXNativeTarget;
  2039. buildConfigurationList = BE0BFA291909BB66E60FBAE9A310BEDE /* Build configuration list for PBXNativeTarget "YYText" */;
  2040. buildPhases = (
  2041. 4B8DA9E6ECB84106E4C65942CD0DB8CF /* Headers */,
  2042. A0F337818484D44C0995AA8AC8913053 /* Sources */,
  2043. 772EE93998CC180CD2E107BB4D870AB7 /* Frameworks */,
  2044. );
  2045. buildRules = (
  2046. );
  2047. dependencies = (
  2048. );
  2049. name = YYText;
  2050. productName = YYText;
  2051. productReference = 71762A728913EB440C97D3616D291AF3 /* YYText */;
  2052. productType = "com.apple.product-type.library.static";
  2053. };
  2054. 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
  2055. isa = PBXNativeTarget;
  2056. buildConfigurationList = F5B1A9A154E057A572D998FC4B110EE7 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */;
  2057. buildPhases = (
  2058. 9A9B9271BD0E97E9DF8FD07D8DFBC22C /* Headers */,
  2059. A22A0614627F92ADC43E9C0B362EB116 /* Sources */,
  2060. 6DE85D5D450CA44D841CBEB1357F0291 /* Frameworks */,
  2061. );
  2062. buildRules = (
  2063. );
  2064. dependencies = (
  2065. 4D1D32528B49B6A3166BC39611164491 /* PBXTargetDependency */,
  2066. 5297586790A7A458AD14966482DF33D3 /* PBXTargetDependency */,
  2067. 2FBCEAF0C0141BE04AD45CDFF09C724B /* PBXTargetDependency */,
  2068. CE8FE5A770C14445F5637869061AEE7C /* PBXTargetDependency */,
  2069. E8A939381536781AF7129AA96E6B97EB /* PBXTargetDependency */,
  2070. 843FF56B5B160642DE3F83F2F02322AE /* PBXTargetDependency */,
  2071. );
  2072. name = "Pods-LenzCameraNativeModuleForRN_Example";
  2073. productName = "Pods-LenzCameraNativeModuleForRN_Example";
  2074. productReference = 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */;
  2075. productType = "com.apple.product-type.library.static";
  2076. };
  2077. E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */ = {
  2078. isa = PBXNativeTarget;
  2079. buildConfigurationList = 989CB66DA0E7872BBC4295E9FAB562A6 /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */;
  2080. buildPhases = (
  2081. 10DAF6E0717003754BE5E1CC7996B907 /* Sources */,
  2082. 292FAA239C3E24827EBE85FC5553635F /* Frameworks */,
  2083. 395190A4A22436637B383CCB7862C610 /* Resources */,
  2084. );
  2085. buildRules = (
  2086. );
  2087. dependencies = (
  2088. );
  2089. name = "LenzSDK-LenzCameraNativeModuleForRN";
  2090. productName = LenzCameraNativeModuleForRN;
  2091. productReference = CCC2A2D9BE13B566A864D567615045F6 /* LenzCameraNativeModuleForRN.bundle */;
  2092. productType = "com.apple.product-type.bundle";
  2093. };
  2094. /* End PBXNativeTarget section */
  2095. /* Begin PBXProject section */
  2096. BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
  2097. isa = PBXProject;
  2098. attributes = {
  2099. LastSwiftUpdateCheck = 1300;
  2100. LastUpgradeCheck = 1300;
  2101. TargetAttributes = {
  2102. E7EBC84E7AFBA5D0740969B92CA58D87 = {
  2103. DevelopmentTeam = 75H2833F9T;
  2104. };
  2105. };
  2106. };
  2107. buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
  2108. compatibilityVersion = "Xcode 3.2";
  2109. developmentRegion = en;
  2110. hasScannedForEncodings = 0;
  2111. knownRegions = (
  2112. Base,
  2113. en,
  2114. "zh-Hans",
  2115. );
  2116. mainGroup = CF1408CF629C7361332E53B88F7BD30C;
  2117. productRefGroup = 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */;
  2118. projectDirPath = "";
  2119. projectRoot = "";
  2120. targets = (
  2121. 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */,
  2122. E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */,
  2123. 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */,
  2124. C5B80886873124CEC429CA0591705280 /* OpenCV2 */,
  2125. 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */,
  2126. 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */,
  2127. A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */,
  2128. 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */,
  2129. );
  2130. };
  2131. /* End PBXProject section */
  2132. /* Begin PBXResourcesBuildPhase section */
  2133. 395190A4A22436637B383CCB7862C610 /* Resources */ = {
  2134. isa = PBXResourcesBuildPhase;
  2135. buildActionMask = 2147483647;
  2136. files = (
  2137. 0D4AAACA484E2811706156CAD3D00FD0 /* assets.xcassets in Resources */,
  2138. CCACD951EBA053A7BDA787A1F7D734A2 /* Localizable.strings in Resources */,
  2139. FAC546662980341DCC78A31F421A2FD5 /* moire_mobilenetv2_79.tflite in Resources */,
  2140. C846394BB0A223F84AAE14657EE82F33 /* PhotoCell.xib in Resources */,
  2141. 9F57911DFBD411A9BCC84C8CF5D08FAF /* PhotoCollectionViewCell.xib in Resources */,
  2142. 74BD392A50B1B5BC6A40E73DDDB597D3 /* QuitMultipleModeAlertViewController.xib in Resources */,
  2143. F11E6E7A084CCBD2C13474F864CB2CF1 /* VC.storyboard in Resources */,
  2144. );
  2145. runOnlyForDeploymentPostprocessing = 0;
  2146. };
  2147. /* End PBXResourcesBuildPhase section */
  2148. /* Begin PBXSourcesBuildPhase section */
  2149. 10DAF6E0717003754BE5E1CC7996B907 /* Sources */ = {
  2150. isa = PBXSourcesBuildPhase;
  2151. buildActionMask = 2147483647;
  2152. files = (
  2153. );
  2154. runOnlyForDeploymentPostprocessing = 0;
  2155. };
  2156. 660A3C7403AC8461B1EBFB60347CA748 /* Sources */ = {
  2157. isa = PBXSourcesBuildPhase;
  2158. buildActionMask = 2147483647;
  2159. files = (
  2160. 0AEF0ACFA21DA32D3D5695457BFDD3A2 /* MASCompositeConstraint.m in Sources */,
  2161. BAB7CEC5429C294ECF410DD57EFBE768 /* MASConstraint.m in Sources */,
  2162. C93280D8FD9E51C34EB5B9846E4879E1 /* MASConstraintMaker.m in Sources */,
  2163. 0587F7C72A7287CDCBC6AC616902486C /* MASLayoutConstraint.m in Sources */,
  2164. 7F0F816CEEFE21E5B99E57E9FB0A2CD2 /* Masonry-dummy.m in Sources */,
  2165. 6988A5EF8EBD8082E814546D3416FD48 /* MASViewAttribute.m in Sources */,
  2166. A25511D6D32A5E35CAD7FE41A0D219CE /* MASViewConstraint.m in Sources */,
  2167. 6657624793EFD42547A5DD697DF45621 /* NSArray+MASAdditions.m in Sources */,
  2168. F396A0EEAE27E21AD1956896FB6B39C9 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
  2169. 09BDE34800E87D2F47F1E18EF4DEF7D9 /* View+MASAdditions.m in Sources */,
  2170. FFCB1299A6D31C3FF94A83167C8B5B46 /* ViewController+MASAdditions.m in Sources */,
  2171. );
  2172. runOnlyForDeploymentPostprocessing = 0;
  2173. };
  2174. A0F337818484D44C0995AA8AC8913053 /* Sources */ = {
  2175. isa = PBXSourcesBuildPhase;
  2176. buildActionMask = 2147483647;
  2177. files = (
  2178. 4C1A8CD62B02DC1C5D557DF6755AB116 /* NSAttributedString+YYText.m in Sources */,
  2179. A652A1046D4F348E94BEC4B553EE0074 /* NSParagraphStyle+YYText.m in Sources */,
  2180. 69BE074EBCCD1609B8A3266B9E1BDF51 /* UIPasteboard+YYText.m in Sources */,
  2181. 51655225AD2B10D7D9FA62FDF67268FB /* UIView+YYText.m in Sources */,
  2182. 250BF3C0D691C1155301D6A69DFCC1A9 /* YYLabel.m in Sources */,
  2183. 85132FDD8F6539A1B08A282A537A830E /* YYText-dummy.m in Sources */,
  2184. D0D4C0A103A2FFF2E4C3B50DC660C2D6 /* YYTextArchiver.m in Sources */,
  2185. A9C09F6A04785F0791F97BB17411E199 /* YYTextAsyncLayer.m in Sources */,
  2186. 38C022678CC5530FB8471C06B86FD511 /* YYTextAttribute.m in Sources */,
  2187. 50AA7506D7AEF6916DE9E346B070D49E /* YYTextContainerView.m in Sources */,
  2188. A8131873ECEDE9FF8C73D75C04D04311 /* YYTextDebugOption.m in Sources */,
  2189. 3AFEB8BB04F08D9D4D327999DBC9C650 /* YYTextEffectWindow.m in Sources */,
  2190. 7D43F4B41E0A6FC937A21F2AFB958D8B /* YYTextInput.m in Sources */,
  2191. 89C4DDB3101019B42FBDF54C56CCBF6F /* YYTextKeyboardManager.m in Sources */,
  2192. 56999FB9D57B1CDF220628D3EF230266 /* YYTextLayout.m in Sources */,
  2193. 6A86D88978222FA77364D1DDABE16456 /* YYTextLine.m in Sources */,
  2194. 5A01C67D8035538914014C27435949FB /* YYTextMagnifier.m in Sources */,
  2195. 2CB5F2C4AF5D8B06C8B58A4D9E2B5CB4 /* YYTextParser.m in Sources */,
  2196. 8F0A541C536FEED47B8DFE59B2DFE75F /* YYTextRubyAnnotation.m in Sources */,
  2197. 7357E7BB21A887C78B7392A03960D404 /* YYTextRunDelegate.m in Sources */,
  2198. 799AB1E57B2C3E9A54B3ACC8D2E9F90C /* YYTextSelectionView.m in Sources */,
  2199. DEE9832B83940526B41CE15554BEBA3D /* YYTextTransaction.m in Sources */,
  2200. 272624A016F0ACF2A7D268BBBE3842F9 /* YYTextUtilities.m in Sources */,
  2201. F3AD0A778BAF908C9001EA397E26FB03 /* YYTextView.m in Sources */,
  2202. AAEC7A1CA34905CBD81705C1C29BF076 /* YYTextWeakProxy.m in Sources */,
  2203. );
  2204. runOnlyForDeploymentPostprocessing = 0;
  2205. };
  2206. A21AE1F09A48A4E2A387F56D42293FCE /* Sources */ = {
  2207. isa = PBXSourcesBuildPhase;
  2208. buildActionMask = 2147483647;
  2209. files = (
  2210. 8F2D0CEF3FE624CFE596897A443C846B /* AlbumCounterLabel.m in Sources */,
  2211. D6928DE621B2E9421EAADC7C757F8DE1 /* AlertView.m in Sources */,
  2212. 6C6C58335B806982952365DB729DFCC1 /* BaseViewTapGestureDelegate.m in Sources */,
  2213. E18DCED10D32A465BDB3E941C12D8AE1 /* CameraManager.m in Sources */,
  2214. 92F709CBC078ED87404E467276633867 /* CameraTextureRenderPass.m in Sources */,
  2215. 3C95BE4E65D12110783214E777601F0B /* CollectionViewPlayerCell.m in Sources */,
  2216. 40C0F9F7D853C5D6ABEF1723408643EA /* CustomModalViewTransition.m in Sources */,
  2217. D91EBA9FD87A0B08E91D4C314770740F /* DBManager.m in Sources */,
  2218. F09B81C3DB48C216E3E7BB4087B31F4B /* ImageCacheLRU.m in Sources */,
  2219. D0D8F3B42D52AE05C8D9C941AD85ACFA /* LenzCachedResourceModel.m in Sources */,
  2220. 8D853B6CFB4AAE6BD4D8834EDE507C52 /* LenzCameraSDK.m in Sources */,
  2221. 285E5A17EE462D4A1A85C685FDAB4C93 /* LenzDataManager.m in Sources */,
  2222. 775662F010A17D291166CE090B61089C /* LenzSDK-dummy.m in Sources */,
  2223. FB4511E5BCE877790E4D938B56B5A3DC /* Localizable.strings in Sources */,
  2224. 7D62F151B79C1174E57AC62204B7DE97 /* Localizable.strings in Sources */,
  2225. 94A8C44E30FFBC697F014E02281246E4 /* MovieListCellModel.m in Sources */,
  2226. 0E6B1E48CC6FF34D7BB93B2F320199E3 /* MovieListViewController.m in Sources */,
  2227. 4B0B24C728A66FFB94FDD160A77C331A /* MoviePlayerViewController.m in Sources */,
  2228. BDADBD43BDC7BECE9C83CBBB7D342EB9 /* NSString+Localization.m in Sources */,
  2229. 398C2BE730F388D81749A5F8162B7B0A /* OperationNodeAIPanorama.m in Sources */,
  2230. 2C813C52CD7844028859DFA9BF21F8BF /* OperationNodeMovie.m in Sources */,
  2231. 61B755544F3CF8C98AD23BE26FDFD640 /* OperationNodeMultiple.m in Sources */,
  2232. 280438A07252996B505A49E128B8C1D9 /* OperationNodePanorama.m in Sources */,
  2233. D6253CD02D2BB961FAA14906DA82D71F /* OperationNodeSingle.m in Sources */,
  2234. B5C891743DDB373C2070045A273DAEFC /* OperationNodeVideoBase.m in Sources */,
  2235. 822B56A21B986609D3EC9C8D70A2A5B1 /* PaddingLabel.m in Sources */,
  2236. 840911759E9848C6CBF5F6EC2A68E300 /* PanoramaGuideView.m in Sources */,
  2237. 450205ADAB70C7D0D617AE10D1AFDD54 /* PanoramaOrientationView.m in Sources */,
  2238. C3C5E8E3FC572F8EBFD4CAE47F323398 /* PCSAutherView.m in Sources */,
  2239. 76D687991CE0FF9E13AC69A38CCDDE2A /* PCSBaseViewController.m in Sources */,
  2240. 18BB76665758898A6300E058C5F5C4EB /* PCSButton.m in Sources */,
  2241. 41AB40FC1E6D365DD8FEBCCD1B6AFD76 /* PCSModeList.m in Sources */,
  2242. C722F1286E53582414771A11397942F0 /* PCSMotionManager.m in Sources */,
  2243. 1F3825ACAAB9A5615C1374E9621DF543 /* PCSPreviewViewController.m in Sources */,
  2244. 9AEB0DF19C7D2D6C3BCB0E08C9FC6D0C /* PCSRoundButton.m in Sources */,
  2245. 609B2534A1D55B97140F82334EAAF074 /* PCSSessionWrapper.m in Sources */,
  2246. B4D7B82D12DEDD2575499CE0BDDEE929 /* PCSThemeColorManager.m in Sources */,
  2247. 5C65312243C01C32249E9EF470D3F576 /* PCSTools.m in Sources */,
  2248. 0457B2F5E5FA69A917BD55A6BE132310 /* PhotoAlbumListViewController.m in Sources */,
  2249. 1BAC44FBDE7B94B6235AB67801783C8F /* PhotoAlbumModel.m in Sources */,
  2250. 4441E723F7B8A9AB0D79CF3F0809374E /* PhotoCell.m in Sources */,
  2251. 18FF59BD85BDE080C251C114E51DD67D /* PhotoCell.xib in Sources */,
  2252. 8C0FD0EC7361FAB1D8CDCA33C1397314 /* PhotoCollectionViewCell.m in Sources */,
  2253. AE3E6DE2DD4E44743EE245C937A2FD86 /* PhotoCollectionViewCell.xib in Sources */,
  2254. 0605FDB23FE0151491E4E0C40CF838D5 /* PhotoListCellModel.m in Sources */,
  2255. DF196A4951C976043102E787FE526122 /* PhotoListViewController.m in Sources */,
  2256. 1E001BE5D56553A9411E49FFE8B7967A /* PreviewSingleViewController.m in Sources */,
  2257. 566A0BD4D87F4167E16C6C6F552A265B /* QuitMultipleModeAlertViewController.m in Sources */,
  2258. A0A28B9C80B00D7CF3FB3A31D5C7D784 /* QuitMultipleModeAlertViewController.xib in Sources */,
  2259. 1A726A089BADF467D195598E60707907 /* Renderer.m in Sources */,
  2260. E84BEA0BF2560B3C2AB9F5731593774E /* SDKParameters.m in Sources */,
  2261. C46121A4923B2A765972AB5B5EEF63D2 /* TimerLabel.m in Sources */,
  2262. 75E1E9365D489E4BF17660E103176D39 /* UIButton+Layout.m in Sources */,
  2263. 251E6E8D4D79D73B433DA7466318A867 /* UIColor+JKAdd.m in Sources */,
  2264. FBDF03171249C2E14271EB02B57D4148 /* UIImage+ext.m in Sources */,
  2265. B733258720AFD6BDE2CF3D81E480EE68 /* UIImage+name.m in Sources */,
  2266. 988BCAE8B19A1595F7067156597A776C /* UIView+JKAdd.m in Sources */,
  2267. 27FB6D5E61CEEF9662F22FEE4A3B4BE5 /* VC.storyboard in Sources */,
  2268. AC5FB636DBBFEF2D13083145F97397B5 /* VerticalButton.m in Sources */,
  2269. );
  2270. runOnlyForDeploymentPostprocessing = 0;
  2271. };
  2272. A22A0614627F92ADC43E9C0B362EB116 /* Sources */ = {
  2273. isa = PBXSourcesBuildPhase;
  2274. buildActionMask = 2147483647;
  2275. files = (
  2276. FACCBE7066906AD830F874ACD58F34EB /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */,
  2277. );
  2278. runOnlyForDeploymentPostprocessing = 0;
  2279. };
  2280. CDBECCFC3E7D37BF23F3C631D61F695E /* Sources */ = {
  2281. isa = PBXSourcesBuildPhase;
  2282. buildActionMask = 2147483647;
  2283. files = (
  2284. FBEB26811C927C71CA08D4FDFB195D13 /* SVIndefiniteAnimatedView.m in Sources */,
  2285. AA676C8CA53EF4CCE03DDEA40546A53B /* SVProgressAnimatedView.m in Sources */,
  2286. 910C15522553ABD90952B5D1CBBC06BF /* SVProgressHUD.m in Sources */,
  2287. CB5E619A4BC229FE3DD2708AD5FBE7F8 /* SVProgressHUD-dummy.m in Sources */,
  2288. 2C267418FF64CF535B50A41839BF3B7C /* SVRadialGradientLayer.m in Sources */,
  2289. );
  2290. runOnlyForDeploymentPostprocessing = 0;
  2291. };
  2292. /* End PBXSourcesBuildPhase section */
  2293. /* Begin PBXTargetDependency section */
  2294. 2FBCEAF0C0141BE04AD45CDFF09C724B /* PBXTargetDependency */ = {
  2295. isa = PBXTargetDependency;
  2296. name = OpenCV2;
  2297. target = C5B80886873124CEC429CA0591705280 /* OpenCV2 */;
  2298. targetProxy = 0EF8503935C0BA2BED35E06B0E44FCEE /* PBXContainerItemProxy */;
  2299. };
  2300. 4D1D32528B49B6A3166BC39611164491 /* PBXTargetDependency */ = {
  2301. isa = PBXTargetDependency;
  2302. name = LenzSDK;
  2303. target = 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */;
  2304. targetProxy = C1AAE2AB8D33293CE478F8ACB0BC965C /* PBXContainerItemProxy */;
  2305. };
  2306. 4FC5FF01C53AB56DD14804DC1DF27B7C /* PBXTargetDependency */ = {
  2307. isa = PBXTargetDependency;
  2308. name = YYText;
  2309. target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
  2310. targetProxy = 3219A28A06CCAE15C7E0982EC33C1CA6 /* PBXContainerItemProxy */;
  2311. };
  2312. 5297586790A7A458AD14966482DF33D3 /* PBXTargetDependency */ = {
  2313. isa = PBXTargetDependency;
  2314. name = Masonry;
  2315. target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
  2316. targetProxy = 9CA2646B7AD6824558C8C9708CA02D96 /* PBXContainerItemProxy */;
  2317. };
  2318. 843FF56B5B160642DE3F83F2F02322AE /* PBXTargetDependency */ = {
  2319. isa = PBXTargetDependency;
  2320. name = YYText;
  2321. target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
  2322. targetProxy = A4B94C48015A92EE1FE8ED4FB086EE7E /* PBXContainerItemProxy */;
  2323. };
  2324. 869BAD418CA659384824A346B077F380 /* PBXTargetDependency */ = {
  2325. isa = PBXTargetDependency;
  2326. name = "LenzSDK-LenzCameraNativeModuleForRN";
  2327. target = E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */;
  2328. targetProxy = 16275221CBBFA109008751B6F5A26157 /* PBXContainerItemProxy */;
  2329. };
  2330. AEAD3F754AF1E43EF02EFC348838D4D4 /* PBXTargetDependency */ = {
  2331. isa = PBXTargetDependency;
  2332. name = Masonry;
  2333. target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
  2334. targetProxy = AC9443339D7C11C04FE7EAD749BE12BE /* PBXContainerItemProxy */;
  2335. };
  2336. BA71F479B81951355631934F77B7C197 /* PBXTargetDependency */ = {
  2337. isa = PBXTargetDependency;
  2338. name = SVProgressHUD;
  2339. target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
  2340. targetProxy = 39DA4FADEA314D649841CB5E46AB9D09 /* PBXContainerItemProxy */;
  2341. };
  2342. C447E7D2905FC852F64BCB5EAA67CACF /* PBXTargetDependency */ = {
  2343. isa = PBXTargetDependency;
  2344. name = TensorFlowLite;
  2345. target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
  2346. targetProxy = B3E04DD764BA5AD7560240DB9F915748 /* PBXContainerItemProxy */;
  2347. };
  2348. CE8FE5A770C14445F5637869061AEE7C /* PBXTargetDependency */ = {
  2349. isa = PBXTargetDependency;
  2350. name = SVProgressHUD;
  2351. target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
  2352. targetProxy = D7E742D398E3CE064F53532687D7A783 /* PBXContainerItemProxy */;
  2353. };
  2354. E816E097E5F2A36C974D574AFA25E474 /* PBXTargetDependency */ = {
  2355. isa = PBXTargetDependency;
  2356. name = OpenCV2;
  2357. target = C5B80886873124CEC429CA0591705280 /* OpenCV2 */;
  2358. targetProxy = 62DA452E3C9A7586FC9EEB86608AC967 /* PBXContainerItemProxy */;
  2359. };
  2360. E8A939381536781AF7129AA96E6B97EB /* PBXTargetDependency */ = {
  2361. isa = PBXTargetDependency;
  2362. name = TensorFlowLite;
  2363. target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
  2364. targetProxy = CE6312AEA23B80FA168B5DD897CE5EC1 /* PBXContainerItemProxy */;
  2365. };
  2366. /* End PBXTargetDependency section */
  2367. /* Begin PBXVariantGroup section */
  2368. 71D82F32955C03B4BE062D50CBDD63C5 /* Localizable.strings */ = {
  2369. isa = PBXVariantGroup;
  2370. children = (
  2371. 9AD160B158374E1268261DE2F1F95802 /* Localizable.strings */,
  2372. F1D0BCBD1EAB5B86E9FA822EA39A1C0C /* Localizable.strings */,
  2373. );
  2374. name = Localizable.strings;
  2375. path = .;
  2376. sourceTree = "<group>";
  2377. };
  2378. /* End PBXVariantGroup section */
  2379. /* Begin XCBuildConfiguration section */
  2380. 2259B80BC7FFCD4DF24F8DB6CCDC3EF9 /* Debug */ = {
  2381. isa = XCBuildConfiguration;
  2382. baseConfigurationReference = 70ACE1B9788ABB4F18A6A434F4DFB523 /* OpenCV2.debug.xcconfig */;
  2383. buildSettings = {
  2384. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2385. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2386. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2387. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2388. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2389. SDKROOT = iphoneos;
  2390. TARGETED_DEVICE_FAMILY = "1,2";
  2391. };
  2392. name = Debug;
  2393. };
  2394. 22C9D42DF5659D02C15F95B451113D96 /* Release */ = {
  2395. isa = XCBuildConfiguration;
  2396. baseConfigurationReference = F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */;
  2397. buildSettings = {
  2398. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2399. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2400. CLANG_ENABLE_OBJC_WEAK = NO;
  2401. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2402. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2403. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2404. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2405. MACH_O_TYPE = staticlib;
  2406. OTHER_LDFLAGS = "";
  2407. OTHER_LIBTOOLFLAGS = "";
  2408. PODS_ROOT = "$(SRCROOT)";
  2409. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2410. SDKROOT = iphoneos;
  2411. SKIP_INSTALL = YES;
  2412. TARGETED_DEVICE_FAMILY = "1,2";
  2413. VALIDATE_PRODUCT = YES;
  2414. };
  2415. name = Release;
  2416. };
  2417. 2B9E26EAE2CD392AD762421F663075A1 /* Debug */ = {
  2418. isa = XCBuildConfiguration;
  2419. buildSettings = {
  2420. ALWAYS_SEARCH_USER_PATHS = NO;
  2421. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2422. CLANG_ANALYZER_NONNULL = YES;
  2423. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2424. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2425. CLANG_CXX_LIBRARY = "libc++";
  2426. CLANG_ENABLE_MODULES = YES;
  2427. CLANG_ENABLE_OBJC_ARC = YES;
  2428. CLANG_ENABLE_OBJC_WEAK = YES;
  2429. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2430. CLANG_WARN_BOOL_CONVERSION = YES;
  2431. CLANG_WARN_COMMA = YES;
  2432. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2433. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2434. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2435. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2436. CLANG_WARN_EMPTY_BODY = YES;
  2437. CLANG_WARN_ENUM_CONVERSION = YES;
  2438. CLANG_WARN_INFINITE_RECURSION = YES;
  2439. CLANG_WARN_INT_CONVERSION = YES;
  2440. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2441. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2442. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2443. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2444. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2445. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2446. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2447. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2448. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2449. CLANG_WARN_UNREACHABLE_CODE = YES;
  2450. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2451. COPY_PHASE_STRIP = NO;
  2452. DEBUG_INFORMATION_FORMAT = dwarf;
  2453. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2454. ENABLE_TESTABILITY = YES;
  2455. GCC_C_LANGUAGE_STANDARD = gnu11;
  2456. GCC_DYNAMIC_NO_PIC = NO;
  2457. GCC_NO_COMMON_BLOCKS = YES;
  2458. GCC_OPTIMIZATION_LEVEL = 0;
  2459. GCC_PREPROCESSOR_DEFINITIONS = (
  2460. "POD_CONFIGURATION_DEBUG=1",
  2461. "DEBUG=1",
  2462. "$(inherited)",
  2463. );
  2464. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2465. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2466. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2467. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2468. GCC_WARN_UNUSED_FUNCTION = YES;
  2469. GCC_WARN_UNUSED_VARIABLE = YES;
  2470. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2471. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2472. MTL_FAST_MATH = YES;
  2473. ONLY_ACTIVE_ARCH = YES;
  2474. PRODUCT_NAME = "$(TARGET_NAME)";
  2475. STRIP_INSTALLED_PRODUCT = NO;
  2476. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2477. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2478. SWIFT_VERSION = 5.0;
  2479. SYMROOT = "${SRCROOT}/../build";
  2480. };
  2481. name = Debug;
  2482. };
  2483. 4C3ADE697413DF2A4CA29E2C2B7B5639 /* Release */ = {
  2484. isa = XCBuildConfiguration;
  2485. baseConfigurationReference = 9C5747FD601D91795F596AFF32D6A13B /* YYText.release.xcconfig */;
  2486. buildSettings = {
  2487. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2488. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2489. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2490. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2491. GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
  2492. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2493. OTHER_LDFLAGS = "";
  2494. OTHER_LIBTOOLFLAGS = "";
  2495. PRIVATE_HEADERS_FOLDER_PATH = "";
  2496. PRODUCT_MODULE_NAME = YYText;
  2497. PRODUCT_NAME = YYText;
  2498. PUBLIC_HEADERS_FOLDER_PATH = "";
  2499. SDKROOT = iphoneos;
  2500. SKIP_INSTALL = YES;
  2501. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2502. SWIFT_VERSION = 4.0;
  2503. TARGETED_DEVICE_FAMILY = "1,2";
  2504. VALIDATE_PRODUCT = YES;
  2505. };
  2506. name = Release;
  2507. };
  2508. 4F6E29E7B2B62877A366D4BE1A87F148 /* Debug */ = {
  2509. isa = XCBuildConfiguration;
  2510. baseConfigurationReference = E93BE0BAE030FB160EFB75E477B69B89 /* SVProgressHUD.debug.xcconfig */;
  2511. buildSettings = {
  2512. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2513. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2514. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2515. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2516. GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
  2517. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2518. OTHER_LDFLAGS = "";
  2519. OTHER_LIBTOOLFLAGS = "";
  2520. PRIVATE_HEADERS_FOLDER_PATH = "";
  2521. PRODUCT_MODULE_NAME = SVProgressHUD;
  2522. PRODUCT_NAME = SVProgressHUD;
  2523. PUBLIC_HEADERS_FOLDER_PATH = "";
  2524. SDKROOT = iphoneos;
  2525. SKIP_INSTALL = YES;
  2526. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2527. SWIFT_VERSION = 4.0;
  2528. TARGETED_DEVICE_FAMILY = "1,2";
  2529. };
  2530. name = Debug;
  2531. };
  2532. 51D80C6718AFC4E07248B9E2293F91F6 /* Debug */ = {
  2533. isa = XCBuildConfiguration;
  2534. baseConfigurationReference = 2175890DB000CF76EAEEA45790F88246 /* LenzSDK.debug.xcconfig */;
  2535. buildSettings = {
  2536. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
  2537. DEVELOPMENT_TEAM = 75H2833F9T;
  2538. IBSC_MODULE = LenzSDK;
  2539. INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
  2540. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2541. PRODUCT_NAME = LenzCameraNativeModuleForRN;
  2542. SDKROOT = iphoneos;
  2543. SKIP_INSTALL = YES;
  2544. TARGETED_DEVICE_FAMILY = "1,2";
  2545. WRAPPER_EXTENSION = bundle;
  2546. };
  2547. name = Debug;
  2548. };
  2549. 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = {
  2550. isa = XCBuildConfiguration;
  2551. buildSettings = {
  2552. ALWAYS_SEARCH_USER_PATHS = NO;
  2553. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2554. CLANG_ANALYZER_NONNULL = YES;
  2555. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2556. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2557. CLANG_CXX_LIBRARY = "libc++";
  2558. CLANG_ENABLE_MODULES = YES;
  2559. CLANG_ENABLE_OBJC_ARC = YES;
  2560. CLANG_ENABLE_OBJC_WEAK = YES;
  2561. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2562. CLANG_WARN_BOOL_CONVERSION = YES;
  2563. CLANG_WARN_COMMA = YES;
  2564. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2565. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2566. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2567. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2568. CLANG_WARN_EMPTY_BODY = YES;
  2569. CLANG_WARN_ENUM_CONVERSION = YES;
  2570. CLANG_WARN_INFINITE_RECURSION = YES;
  2571. CLANG_WARN_INT_CONVERSION = YES;
  2572. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2573. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2574. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2575. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2576. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2577. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2578. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2579. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2580. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2581. CLANG_WARN_UNREACHABLE_CODE = YES;
  2582. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2583. COPY_PHASE_STRIP = NO;
  2584. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2585. ENABLE_NS_ASSERTIONS = NO;
  2586. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2587. GCC_C_LANGUAGE_STANDARD = gnu11;
  2588. GCC_NO_COMMON_BLOCKS = YES;
  2589. GCC_PREPROCESSOR_DEFINITIONS = (
  2590. "POD_CONFIGURATION_RELEASE=1",
  2591. "$(inherited)",
  2592. );
  2593. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2594. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2595. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2596. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2597. GCC_WARN_UNUSED_FUNCTION = YES;
  2598. GCC_WARN_UNUSED_VARIABLE = YES;
  2599. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2600. MTL_ENABLE_DEBUG_INFO = NO;
  2601. MTL_FAST_MATH = YES;
  2602. PRODUCT_NAME = "$(TARGET_NAME)";
  2603. STRIP_INSTALLED_PRODUCT = NO;
  2604. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  2605. SWIFT_VERSION = 5.0;
  2606. SYMROOT = "${SRCROOT}/../build";
  2607. };
  2608. name = Release;
  2609. };
  2610. 6418C2BEBB1313C454513905FF76E460 /* Debug */ = {
  2611. isa = XCBuildConfiguration;
  2612. baseConfigurationReference = F83198B7D4D1070C156E523A120B7C5A /* TensorFlowLite.debug.xcconfig */;
  2613. buildSettings = {
  2614. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2615. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2616. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2617. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2618. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2619. SDKROOT = iphoneos;
  2620. TARGETED_DEVICE_FAMILY = "1,2";
  2621. };
  2622. name = Debug;
  2623. };
  2624. 6BBED7C10FF70D5181DF7358E038CEBB /* Debug */ = {
  2625. isa = XCBuildConfiguration;
  2626. baseConfigurationReference = 2DD3922B8BE4E6C3BAE67ED432CF9885 /* Masonry.debug.xcconfig */;
  2627. buildSettings = {
  2628. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2629. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2630. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2631. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2632. GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
  2633. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2634. OTHER_LDFLAGS = "";
  2635. OTHER_LIBTOOLFLAGS = "";
  2636. PRIVATE_HEADERS_FOLDER_PATH = "";
  2637. PRODUCT_MODULE_NAME = Masonry;
  2638. PRODUCT_NAME = Masonry;
  2639. PUBLIC_HEADERS_FOLDER_PATH = "";
  2640. SDKROOT = iphoneos;
  2641. SKIP_INSTALL = YES;
  2642. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2643. SWIFT_VERSION = 4.0;
  2644. TARGETED_DEVICE_FAMILY = "1,2";
  2645. };
  2646. name = Debug;
  2647. };
  2648. 88CC7EA238F72425F0EBC3533CAB4CE1 /* Release */ = {
  2649. isa = XCBuildConfiguration;
  2650. baseConfigurationReference = 0D1341154A8F9632231A017F5EF36AAF /* LenzSDK.release.xcconfig */;
  2651. buildSettings = {
  2652. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
  2653. DEVELOPMENT_TEAM = 75H2833F9T;
  2654. IBSC_MODULE = LenzSDK;
  2655. INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
  2656. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2657. PRODUCT_NAME = LenzCameraNativeModuleForRN;
  2658. SDKROOT = iphoneos;
  2659. SKIP_INSTALL = YES;
  2660. TARGETED_DEVICE_FAMILY = "1,2";
  2661. WRAPPER_EXTENSION = bundle;
  2662. };
  2663. name = Release;
  2664. };
  2665. 9326BC2F8360650FBBE845C1A17FDA78 /* Release */ = {
  2666. isa = XCBuildConfiguration;
  2667. baseConfigurationReference = 0AE4E7473E40F2E5F0F54290ED44474F /* OpenCV2.release.xcconfig */;
  2668. buildSettings = {
  2669. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2670. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2671. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2672. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2673. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2674. SDKROOT = iphoneos;
  2675. TARGETED_DEVICE_FAMILY = "1,2";
  2676. VALIDATE_PRODUCT = YES;
  2677. };
  2678. name = Release;
  2679. };
  2680. BE9062EA9AE5BCE50FEE6807FA910072 /* Release */ = {
  2681. isa = XCBuildConfiguration;
  2682. baseConfigurationReference = 507A2504392C0567854778AE4B6C4D39 /* SVProgressHUD.release.xcconfig */;
  2683. buildSettings = {
  2684. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2685. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2686. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2687. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2688. GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
  2689. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2690. OTHER_LDFLAGS = "";
  2691. OTHER_LIBTOOLFLAGS = "";
  2692. PRIVATE_HEADERS_FOLDER_PATH = "";
  2693. PRODUCT_MODULE_NAME = SVProgressHUD;
  2694. PRODUCT_NAME = SVProgressHUD;
  2695. PUBLIC_HEADERS_FOLDER_PATH = "";
  2696. SDKROOT = iphoneos;
  2697. SKIP_INSTALL = YES;
  2698. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2699. SWIFT_VERSION = 4.0;
  2700. TARGETED_DEVICE_FAMILY = "1,2";
  2701. VALIDATE_PRODUCT = YES;
  2702. };
  2703. name = Release;
  2704. };
  2705. DA11F923B509765F18F7FDB287835DB3 /* Debug */ = {
  2706. isa = XCBuildConfiguration;
  2707. baseConfigurationReference = 671C8641F5DA39B2C758B30203E48E89 /* YYText.debug.xcconfig */;
  2708. buildSettings = {
  2709. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2710. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2711. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2712. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2713. GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
  2714. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2715. OTHER_LDFLAGS = "";
  2716. OTHER_LIBTOOLFLAGS = "";
  2717. PRIVATE_HEADERS_FOLDER_PATH = "";
  2718. PRODUCT_MODULE_NAME = YYText;
  2719. PRODUCT_NAME = YYText;
  2720. PUBLIC_HEADERS_FOLDER_PATH = "";
  2721. SDKROOT = iphoneos;
  2722. SKIP_INSTALL = YES;
  2723. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2724. SWIFT_VERSION = 4.0;
  2725. TARGETED_DEVICE_FAMILY = "1,2";
  2726. };
  2727. name = Debug;
  2728. };
  2729. E308265C26A7151C0D82BF95B327E39B /* Debug */ = {
  2730. isa = XCBuildConfiguration;
  2731. baseConfigurationReference = 2175890DB000CF76EAEEA45790F88246 /* LenzSDK.debug.xcconfig */;
  2732. buildSettings = {
  2733. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2734. CLANG_ENABLE_OBJC_WEAK = NO;
  2735. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2736. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2737. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2738. GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
  2739. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2740. OTHER_LDFLAGS = "";
  2741. OTHER_LIBTOOLFLAGS = "";
  2742. PRIVATE_HEADERS_FOLDER_PATH = "";
  2743. PRODUCT_MODULE_NAME = LenzSDK;
  2744. PRODUCT_NAME = LenzSDK;
  2745. PUBLIC_HEADERS_FOLDER_PATH = "";
  2746. SDKROOT = iphoneos;
  2747. SKIP_INSTALL = YES;
  2748. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2749. SWIFT_VERSION = 4.0;
  2750. TARGETED_DEVICE_FAMILY = "1,2";
  2751. };
  2752. name = Debug;
  2753. };
  2754. E34A9DA404B236F4841C2293DE976E1D /* Release */ = {
  2755. isa = XCBuildConfiguration;
  2756. baseConfigurationReference = 34D3161F77526AB76CF74AB041515EB8 /* TensorFlowLite.release.xcconfig */;
  2757. buildSettings = {
  2758. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2759. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2760. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2761. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2762. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2763. SDKROOT = iphoneos;
  2764. TARGETED_DEVICE_FAMILY = "1,2";
  2765. VALIDATE_PRODUCT = YES;
  2766. };
  2767. name = Release;
  2768. };
  2769. E6042C70BA6F0C8AEDBC5A9FF9373654 /* Release */ = {
  2770. isa = XCBuildConfiguration;
  2771. baseConfigurationReference = 1F0E00D4EC7DDA5E0F50D373BFD7DBF9 /* Masonry.release.xcconfig */;
  2772. buildSettings = {
  2773. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2774. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2775. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2776. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2777. GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
  2778. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2779. OTHER_LDFLAGS = "";
  2780. OTHER_LIBTOOLFLAGS = "";
  2781. PRIVATE_HEADERS_FOLDER_PATH = "";
  2782. PRODUCT_MODULE_NAME = Masonry;
  2783. PRODUCT_NAME = Masonry;
  2784. PUBLIC_HEADERS_FOLDER_PATH = "";
  2785. SDKROOT = iphoneos;
  2786. SKIP_INSTALL = YES;
  2787. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2788. SWIFT_VERSION = 4.0;
  2789. TARGETED_DEVICE_FAMILY = "1,2";
  2790. VALIDATE_PRODUCT = YES;
  2791. };
  2792. name = Release;
  2793. };
  2794. EBBCD9C8777BDD157C56A128520B05DB /* Debug */ = {
  2795. isa = XCBuildConfiguration;
  2796. baseConfigurationReference = CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */;
  2797. buildSettings = {
  2798. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2799. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2800. CLANG_ENABLE_OBJC_WEAK = NO;
  2801. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2802. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2803. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2804. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2805. MACH_O_TYPE = staticlib;
  2806. OTHER_LDFLAGS = "";
  2807. OTHER_LIBTOOLFLAGS = "";
  2808. PODS_ROOT = "$(SRCROOT)";
  2809. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2810. SDKROOT = iphoneos;
  2811. SKIP_INSTALL = YES;
  2812. TARGETED_DEVICE_FAMILY = "1,2";
  2813. };
  2814. name = Debug;
  2815. };
  2816. FCEE96C53A0875E17B3451F80E76DD2C /* Release */ = {
  2817. isa = XCBuildConfiguration;
  2818. baseConfigurationReference = 0D1341154A8F9632231A017F5EF36AAF /* LenzSDK.release.xcconfig */;
  2819. buildSettings = {
  2820. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2821. CLANG_ENABLE_OBJC_WEAK = NO;
  2822. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2823. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2824. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2825. GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
  2826. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2827. OTHER_LDFLAGS = "";
  2828. OTHER_LIBTOOLFLAGS = "";
  2829. PRIVATE_HEADERS_FOLDER_PATH = "";
  2830. PRODUCT_MODULE_NAME = LenzSDK;
  2831. PRODUCT_NAME = LenzSDK;
  2832. PUBLIC_HEADERS_FOLDER_PATH = "";
  2833. SDKROOT = iphoneos;
  2834. SKIP_INSTALL = YES;
  2835. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2836. SWIFT_VERSION = 4.0;
  2837. TARGETED_DEVICE_FAMILY = "1,2";
  2838. VALIDATE_PRODUCT = YES;
  2839. };
  2840. name = Release;
  2841. };
  2842. /* End XCBuildConfiguration section */
  2843. /* Begin XCConfigurationList section */
  2844. 047602B1D747C5DFF0A1ABD18044F55F /* Build configuration list for PBXAggregateTarget "TensorFlowLite" */ = {
  2845. isa = XCConfigurationList;
  2846. buildConfigurations = (
  2847. 6418C2BEBB1313C454513905FF76E460 /* Debug */,
  2848. E34A9DA404B236F4841C2293DE976E1D /* Release */,
  2849. );
  2850. defaultConfigurationIsVisible = 0;
  2851. defaultConfigurationName = Release;
  2852. };
  2853. 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
  2854. isa = XCConfigurationList;
  2855. buildConfigurations = (
  2856. 2B9E26EAE2CD392AD762421F663075A1 /* Debug */,
  2857. 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */,
  2858. );
  2859. defaultConfigurationIsVisible = 0;
  2860. defaultConfigurationName = Release;
  2861. };
  2862. 4AD4DC7A052F8025BF9DEC8F58E364BA /* Build configuration list for PBXNativeTarget "LenzSDK" */ = {
  2863. isa = XCConfigurationList;
  2864. buildConfigurations = (
  2865. E308265C26A7151C0D82BF95B327E39B /* Debug */,
  2866. FCEE96C53A0875E17B3451F80E76DD2C /* Release */,
  2867. );
  2868. defaultConfigurationIsVisible = 0;
  2869. defaultConfigurationName = Release;
  2870. };
  2871. 92D723CF9631DCDCF0E7C08C6A0BEAFF /* Build configuration list for PBXNativeTarget "SVProgressHUD" */ = {
  2872. isa = XCConfigurationList;
  2873. buildConfigurations = (
  2874. 4F6E29E7B2B62877A366D4BE1A87F148 /* Debug */,
  2875. BE9062EA9AE5BCE50FEE6807FA910072 /* Release */,
  2876. );
  2877. defaultConfigurationIsVisible = 0;
  2878. defaultConfigurationName = Release;
  2879. };
  2880. 989CB66DA0E7872BBC4295E9FAB562A6 /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */ = {
  2881. isa = XCConfigurationList;
  2882. buildConfigurations = (
  2883. 51D80C6718AFC4E07248B9E2293F91F6 /* Debug */,
  2884. 88CC7EA238F72425F0EBC3533CAB4CE1 /* Release */,
  2885. );
  2886. defaultConfigurationIsVisible = 0;
  2887. defaultConfigurationName = Release;
  2888. };
  2889. BE0BFA291909BB66E60FBAE9A310BEDE /* Build configuration list for PBXNativeTarget "YYText" */ = {
  2890. isa = XCConfigurationList;
  2891. buildConfigurations = (
  2892. DA11F923B509765F18F7FDB287835DB3 /* Debug */,
  2893. 4C3ADE697413DF2A4CA29E2C2B7B5639 /* Release */,
  2894. );
  2895. defaultConfigurationIsVisible = 0;
  2896. defaultConfigurationName = Release;
  2897. };
  2898. BF475B54D4A4AE15FC6C054D619BE835 /* Build configuration list for PBXAggregateTarget "OpenCV2" */ = {
  2899. isa = XCConfigurationList;
  2900. buildConfigurations = (
  2901. 2259B80BC7FFCD4DF24F8DB6CCDC3EF9 /* Debug */,
  2902. 9326BC2F8360650FBBE845C1A17FDA78 /* Release */,
  2903. );
  2904. defaultConfigurationIsVisible = 0;
  2905. defaultConfigurationName = Release;
  2906. };
  2907. EBA64DD41964761EB00683385E0773D6 /* Build configuration list for PBXNativeTarget "Masonry" */ = {
  2908. isa = XCConfigurationList;
  2909. buildConfigurations = (
  2910. 6BBED7C10FF70D5181DF7358E038CEBB /* Debug */,
  2911. E6042C70BA6F0C8AEDBC5A9FF9373654 /* Release */,
  2912. );
  2913. defaultConfigurationIsVisible = 0;
  2914. defaultConfigurationName = Release;
  2915. };
  2916. F5B1A9A154E057A572D998FC4B110EE7 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */ = {
  2917. isa = XCConfigurationList;
  2918. buildConfigurations = (
  2919. EBBCD9C8777BDD157C56A128520B05DB /* Debug */,
  2920. 22C9D42DF5659D02C15F95B451113D96 /* Release */,
  2921. );
  2922. defaultConfigurationIsVisible = 0;
  2923. defaultConfigurationName = Release;
  2924. };
  2925. /* End XCConfigurationList section */
  2926. };
  2927. rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  2928. }