project.pbxproj 260 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970
  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 = 2F4F62A7384161367B24720F87E9E7C0 /* 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 = 3E25DED46731B53F35C13B12FBA20010 /* 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. 00F2B695B65C1A5F0A5C3509CF80EEF1 /* PreviewSingleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D33C5808A112DC170446B14B628C3A2 /* PreviewSingleViewController.m */; };
  32. 0274785F8DA56A194A23E794DB556D6A /* PanoramaGuideView.h in Headers */ = {isa = PBXBuildFile; fileRef = AC2E3E7E3794C6BE58DFE72E2B8B0363 /* PanoramaGuideView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  33. 02A6F4E5798B2688705C52EC3F041332 /* PCSRoundButton.m in Sources */ = {isa = PBXBuildFile; fileRef = FB9B3C11102965A6E460965A3F603608 /* PCSRoundButton.m */; };
  34. 057B5258CDD07278595F169BF1F6DFD4 /* PhotoCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 366D47B840FF3E1B5BE44A2C981C123C /* PhotoCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  35. 061B03727504D40A13617C281B8DF476 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C8EF7032A09396718DC47C5598B84B /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  36. 065B0ABE59D827DBA550D56D93C686FE /* PhotoListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 69CBF88ABBBBC462CA5D1C449D145791 /* PhotoListCellModel.m */; };
  37. 0AA3AEBE363066190766CE595C644B2A /* TensorFlowWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8905E06243ADA18E17E2B2D83FE17D91 /* TensorFlowWrapper.m */; };
  38. 0AB943E2B82A14FDAEEA0597AE3F5CEF /* QuitMultipleModeAlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F7D9819B5149B23177924CF7F309F765 /* QuitMultipleModeAlertViewController.m */; };
  39. 0B424ECCF0861C6CB7479B9DEF7D9E2A /* LenzCachedResourceModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 403FBB31E50BF7D8F0B08CC66A2EDCC6 /* LenzCachedResourceModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  40. 0C0C5CB8F1113EDFA043CF82E51B4997 /* YYTextContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = B556EF7B503F64AD5CEC85E2A13C5007 /* YYTextContainerView.m */; };
  41. 0C13638EA19D0AAABC3C65752019871A /* YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AB600B687D3D1246EC08397708C05E /* YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  42. 0FC1201915EE57C499240C27946217E7 /* PCSModeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B1001037DEC018BCD5F7ADB9D38AFB5 /* PCSModeList.h */; settings = {ATTRIBUTES = (Project, ); }; };
  43. 113854EC31195A7FE7F0FC272C4911D6 /* YYTextMagnifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7608FDCE402048449721AFAC227E4052 /* YYTextMagnifier.h */; settings = {ATTRIBUTES = (Project, ); }; };
  44. 11D58B61F68CD95A861A22BB9B897094 /* VerticalButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D660DACAFE1FE48CFD4EAD7E90D9ABC /* VerticalButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  45. 130C0069D6C36572D6B7E605C8AE22A2 /* YYTextKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D300D3849C0E80A0B48827AFFEA12087 /* YYTextKeyboardManager.m */; };
  46. 148E409E3FE484F98B0FC48912F071A2 /* DBManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 943CE9CC2B7AE015731778F1B82F8007 /* DBManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  47. 1492A6B18F1CABDA3372AA400A575019 /* UIColor+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 24C466DCD5D26F8F1A95AFE5E7A10616 /* UIColor+JKAdd.m */; };
  48. 15890A6396F1000552211DB8AC1EA977 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7B0F9E76BFC703B6AE35CEAED63132 /* MASUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
  49. 1705036BACF9710F1729FA3A3D6EB6B3 /* PanoramaGuideView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D4020EFF5D912EE82E03D562C9B5A45 /* PanoramaGuideView.m */; };
  50. 201EFEB21237B18E52925007D39AC1F7 /* assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = ACBCC52EFB48E66C9EF45EF550B878C2 /* assets.xcassets */; };
  51. 2243254801BD1818146D1BE595ED0093 /* LenzCachedResourceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D84C280CB71B838D2C2DE8305349F7F3 /* LenzCachedResourceModel.m */; };
  52. 23FCB4C898907953BA230B8E125A5E29 /* UIView+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D3326A3007D874205B40893EA3CFE62 /* UIView+JKAdd.m */; };
  53. 2565FE65BD419766FF705CA2D965D251 /* QuitMultipleModeAlertViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = 6CEE913F5B1E591BC40A0FD8D95D001F /* QuitMultipleModeAlertViewController.xib */; };
  54. 25EA7583CE3812A48A56E34D5E418E6A /* DBManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E0C667632E9A4E34CD3D6D97902BB116 /* DBManager.m */; };
  55. 261227B03D25F8923276B9AC00382BF2 /* AVCapturePhotoOutput+VersionAdaptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4897CCF734748D33CD69777E4973C69A /* AVCapturePhotoOutput+VersionAdaptor.h */; settings = {ATTRIBUTES = (Project, ); }; };
  56. 264848AA48C9735953B42B52E83E9A46 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A682665B0F2F184E8E8A631EADACC029 /* ViewController+MASAdditions.m */; };
  57. 27BC1246EA9551436EF0797243AC5C27 /* YYTextSelectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C026261DAF6B7FCAAC6266495F4C9E /* YYTextSelectionView.m */; };
  58. 27F35D4A18FADDD901AF200E8648887C /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C0EF01C047A7FEE68E5418B5310DDF5 /* MASConstraint.m */; };
  59. 285870722D6D6254EA4B07B08C5A4292 /* LenzCameraSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = CFB95D9EF4BA34266DEE96A5088A1D0E /* LenzCameraSDK.m */; };
  60. 2955D10229E5126B00304514 /* PCSAutherView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2955D10029E5126B00304514 /* PCSAutherView.h */; };
  61. 2955D10329E5126B00304514 /* PCSAutherView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2955D10129E5126B00304514 /* PCSAutherView.m */; };
  62. 29E64B53874873E9185F4C4A371E6ED6 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 35783455FD2B307819356A0F7317E3A2 /* MASViewAttribute.m */; };
  63. 2A82C8DF4D809ECE5A7B1E90F7CAE77F /* YYTextLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 58A56A8842D5A1FEE1A038D18A8C697A /* YYTextLayout.m */; };
  64. 2AD796924433EC645003FB24019C32FC /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E565F5A1FAD79799DA4DD176AD4C23 /* MASViewConstraint.m */; };
  65. 2B58CEE4C0F6C7144DD20B113713544C /* MoviePlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A3FC769F1E5DE4CC64C4DF481839D065 /* MoviePlayerViewController.m */; };
  66. 2C48AC6EA97D25DF8A8A695409C6AD26 /* YYTextRunDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 88FAFB718DB7E66A1777F7176F4268AF /* YYTextRunDelegate.m */; };
  67. 2C4D2582543C5EB22E605DC5AC08D222 /* YYTextEffectWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = D113E44A4699A41E403B4A497E44F2A4 /* YYTextEffectWindow.h */; settings = {ATTRIBUTES = (Project, ); }; };
  68. 2DD96EAD6CF73ADC87C1B6C866EA9BBD /* VerticalButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F974FA918443DCB35A0B7EE08207B908 /* VerticalButton.m */; };
  69. 2ECBF28B8D7A308C6F1AB50A80643542 /* MovieListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = AACE60EFC1A660CF10C691A6C1F191AB /* MovieListCellModel.m */; };
  70. 2F3B238702F735BAB272C8138C076BAC /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E170088911070D57FD1A2B1667B2358 /* MASCompositeConstraint.m */; };
  71. 302A29ADD3A36CE078F8B369F2C53E3B /* OperationNodeAIPanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = 82FE5BA64CC88E28E8D9DE4C5A4B17A3 /* OperationNodeAIPanorama.m */; };
  72. 33DC178FC90D26E22B2A4687C0093CA8 /* NSAttributedString+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9B8AF4ED2B2CE4E42F5526CB19ED56 /* NSAttributedString+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  73. 35049D2E5AE23EBB5D0D9B3AA72BBA0F /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = DF49707D0225F15883F4B82A11B0581D /* SVRadialGradientLayer.m */; };
  74. 371EA32057E8ECBF29637955B1181A3D /* PhotoCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = D631405D079AA018794E5D9BAEE301F1 /* PhotoCell.xib */; };
  75. 394FFC703A5D160496EBF0FF31B06C95 /* CustomModalViewTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 18EE38B627F5098F5ACCD9BD7DC1A6A6 /* CustomModalViewTransition.h */; settings = {ATTRIBUTES = (Project, ); }; };
  76. 3A54989AB21F5430486306CCE824EF49 /* PanoramaOrientationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B658456B1B2984F39BB79AE0C29A7BC /* PanoramaOrientationView.m */; };
  77. 3B88A84C1F4EEC98FFEF49A8D9B4BABC /* YYTextRubyAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAF7D0AC12DB31F7DA4E118E9B84F30 /* YYTextRubyAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; };
  78. 3C601362C1B68BFB587D4354E2789E01 /* CameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 16DB214179794264262709A1A5BA8B2F /* CameraManager.m */; };
  79. 3C66AEDB38AF67017EA552B9A129CA3A /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 323E11B6F2B40B2A30076A06EFA4ADE9 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Project, ); }; };
  80. 3C7901770E13AF97357EAB80E849C235 /* PhotoListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 67CFD1C0BEF630FF3A2F44D4A5BF1E64 /* PhotoListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  81. 3C84222B8D2A5E56ED421593D0DB3C4E /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D148391102C9E7C3871EC94238BA859B /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  82. 3CF1D79B62FF5BA0395AD25E7E090D48 /* OperationNodeVideoBase.m in Sources */ = {isa = PBXBuildFile; fileRef = B4D25A57720FED5D490B8329026D9542 /* OperationNodeVideoBase.m */; };
  83. 3E8EF5E5F03C23E3BB972FCDC110B85B /* UIColor+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 70286A4FEC98F83D0036EEDE95BC6F4E /* UIColor+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
  84. 3ECE551C861C381EBBD366428C3B4ED6 /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A26A56F9F80ECD3F646B2B727370C7 /* SVProgressAnimatedView.m */; };
  85. 3F293231507716BDE08498EA65B304EF /* OperationNodePanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = 564A29FF535E410732D3A5728BE51A41 /* OperationNodePanorama.m */; };
  86. 3FF2341E3641F61D3908B6C9AF045466 /* PCSSDF-prefix-header.h in Headers */ = {isa = PBXBuildFile; fileRef = 353865ECF8E88ADC9CC53960A6AD4F42 /* PCSSDF-prefix-header.h */; settings = {ATTRIBUTES = (Project, ); }; };
  87. 43E779B393D13AC254CAE03AB19131B2 /* YYLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5071D90FBED6EF5030E504AB525E29C3 /* YYLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  88. 446E0D3FB9DBF3A9B573EF467B50E857 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F4422F57F95BCAEE8E0D37ACA7839F1 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  89. 46B5FE62C20A0B343B3570028C05D6B5 /* PCSThemeColorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BED18EC37FF6BB406B8A328F952809E /* PCSThemeColorManager.m */; };
  90. 46BEF10F4A3AB0DF8E7ABD90100CB00B /* PhotoAlbumListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A976605A3EBE01C3354D9E6195DDB0E8 /* PhotoAlbumListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  91. 47CD7A77BCA83B80F313DF29DB55FF27 /* NSString+Localization.m in Sources */ = {isa = PBXBuildFile; fileRef = 9233F03217EE52DE54B723939D946CA9 /* NSString+Localization.m */; };
  92. 48B69BE8D90EFA84DBB9D2B89756ADD3 /* YYTextKeyboardManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF9CEB1C61C7F8A5B54BD4A7C592B8E /* YYTextKeyboardManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  93. 4AB2278C416C6C7A40A4802EFAB0CA5B /* SVProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ACC936729FB445B6079C9113BFB0915 /* SVProgressHUD-dummy.m */; };
  94. 4AE823185658F5B92E7B1B0F2508684D /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 36385A4948651DCADD828F5EF6D7A860 /* MASLayoutConstraint.m */; };
  95. 4F7945911D6DD7CFA19A92EF1D40FA78 /* QuitMultipleModeAlertViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4B0C90EF3198FDCDE5FE43D134BA0C /* QuitMultipleModeAlertViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  96. 5096EB1DA6ACB958BFD86C6BF46477AA /* UIImage+ext.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E3D8540C60144CED386A442155ED9CF /* UIImage+ext.m */; };
  97. 52A118F4387F2B171B0C9F776374ECE6 /* PaddingLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = ED44023185F9EB737206205EA5B9DBA5 /* PaddingLabel.m */; };
  98. 52AE2CB13C2CBA6E3A5B22F6389A46E4 /* YYTextInput.m in Sources */ = {isa = PBXBuildFile; fileRef = 5139E1B09F2B5848CCD436B04764720B /* YYTextInput.m */; };
  99. 537D372F20BC447BC8FD77DF3E683CC7 /* MoviePlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EEE0F0023FF9FAEF51DA382DF5A400 /* MoviePlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  100. 538FBD660BC38808F16106EE57E7BC45 /* YYText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFE967524F3F12E190B1415022D9825 /* YYText-dummy.m */; };
  101. 5439D002DC50FC7345D62296AA3B62A2 /* YYTextWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 088CC7B10130F424D2F0FB6E51DDEB48 /* YYTextWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; };
  102. 554F1F2B6AA13F38A2DBDBD2B5A2BBE7 /* NSParagraphStyle+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB1391C0E3CE18BBA966201906336CA /* NSParagraphStyle+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  103. 55EBD1F344E6F861D8E4E226224A4D08 /* CollectionViewPlayerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = ECAF351E914D9B3F844880605E87E22E /* CollectionViewPlayerCell.m */; };
  104. 55F28088910D83F6C23BBD716329F1F5 /* UIButton+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 359265DD4F6A9D6D02481DC2330B4DF7 /* UIButton+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; };
  105. 5698FC591C39D66250A789F6109EF055 /* CameraManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBEE7B89746528F0C2DCFB43020260E /* CameraManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  106. 5770E3AE0175C57ACE5A7DD0D663F7F0 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = C66C450F27C4A5097C9E02DE7DCEF9D1 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  107. 594A60CAB2100448D10CBC52433AA8FB /* YYTextLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A0134B7DFC892F7D8942843B702EECBF /* YYTextLayout.h */; settings = {ATTRIBUTES = (Project, ); }; };
  108. 5A4EC55BD355DC4DC75E95FEF3A588D8 /* SVIndefiniteAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A171F24B8E17DEE3264D323615C52E8 /* SVIndefiniteAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  109. 5B931F9784BE81FF50D2A6C5F5BB7ECB /* PCSThemeColorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F249E1100744D6BACF4222EC15E8C25 /* PCSThemeColorManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  110. 5C39022B8FB5C123D74C534BB7EA7AEE /* ImageCacheLRU.m in Sources */ = {isa = PBXBuildFile; fileRef = 173B90865B6A5496A853C37DC81AD581 /* ImageCacheLRU.m */; };
  111. 5C8E0021BB2280FF92B0A429F9364373 /* AlbumCounterLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = EB02DDECF9AAD2D808C4F616A591448C /* AlbumCounterLabel.m */; };
  112. 5E9F867FA590BD75F20B4B5AA64A5940 /* PCSSessionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F33E64BDBD3C7814437202B8508BBFCD /* PCSSessionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  113. 5FB8C4B243A2FC3896C583C9DDDCDD75 /* UIPasteboard+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = D18251050252D376DF0B0E328E1456FB /* UIPasteboard+YYText.m */; };
  114. 6015E28BA383FD06AAA2BF083E010487 /* Renderer.m in Sources */ = {isa = PBXBuildFile; fileRef = D8EB35B2380C806D37146184BA831DD3 /* Renderer.m */; };
  115. 60795258D5A8C1B2B4DBBB82D22BE5B7 /* UIImage+name.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FAC40062851544DC5A19BEAA745F82F /* UIImage+name.h */; settings = {ATTRIBUTES = (Project, ); }; };
  116. 60AF125C526CA2F7B1D126293ED06CDB /* SVProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = B88175A0D217891D9AE0F5A88BC82630 /* SVProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; };
  117. 659FDAB4EDADD841B474EA0999E4F8C4 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B102F3E8763449C6DA99024D84CC479 /* MASConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  118. 66A2C9A63B49B9AA3E8940682DCD5E5B /* OperationNodeVideoBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 528F6E7C75647AB494E0848A29609C44 /* OperationNodeVideoBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
  119. 678BF2ACC9ACB312F33606BC671D2605 /* CustomModalViewTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = E4DBE241924BDFED99EC4B2344074FB9 /* CustomModalViewTransition.m */; };
  120. 68D11EC4E87DD1E987BF3F24AB3EAC34 /* PCSRoundButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B436BDACAA3B3BEC13A3EC3179AC1E3 /* PCSRoundButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  121. 6A6423FD1E62FDFFD30029C7C060355A /* UIPasteboard+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = EE288070A3F0D2824F62FC92399210F8 /* UIPasteboard+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  122. 6B9FDC76937E93AB2CB7A6CB85559D88 /* YYTextDebugOption.m in Sources */ = {isa = PBXBuildFile; fileRef = 928F19E4450531B0C3B2A304FFBAD967 /* YYTextDebugOption.m */; };
  123. 6D4409E7EDA143F4EAE2598B19393B14 /* PhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D631405D079AA018794E5D9BAEE301F1 /* PhotoCell.xib */; };
  124. 6E83FE2F2EB2F62EFB834A92021633F3 /* YYTextLine.h in Headers */ = {isa = PBXBuildFile; fileRef = BBE688CB6C22990A9E1CA752BB6AC77F /* YYTextLine.h */; settings = {ATTRIBUTES = (Project, ); }; };
  125. 727C041CD11BAD13DA3B55D19720645F /* PCSSessionWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB055653E760A3FD13BF5BB12FFA28D /* PCSSessionWrapper.m */; };
  126. 75850F8E0030510F520DD5C79A750307 /* NSString+Localization.h in Headers */ = {isa = PBXBuildFile; fileRef = 91579DA43E5DCE2B63663FAB64C69EF3 /* NSString+Localization.h */; settings = {ATTRIBUTES = (Project, ); }; };
  127. 75CC2A1A3BB19DFF9A38FCEC5EA377FC /* YYTextTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = D8598BA55A6B943918E5F4A3580A8F57 /* YYTextTransaction.m */; };
  128. 7660327D2F549F18D5F2985E7A6989C2 /* OperationNodeProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = D988855D6139CFDCDA1967D6EBC102DA /* OperationNodeProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; };
  129. 76962A252DC73B78B007D0B13454C5EE /* YYTextTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 513086AE9B8D8684A33900083C458971 /* YYTextTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; };
  130. 76C0D08B39E053C068DBA1E3B066203D /* YYTextEffectWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F8345A474C4286A6A94325A1C7628EE /* YYTextEffectWindow.m */; };
  131. 78B0CA2A069F6FCD50700DDE2FD526FA /* YYTextRunDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CCFC8CF5DE6FD893159815293F71BD5 /* YYTextRunDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
  132. 793BCB55D35F6BBA202FC0BE8E4A2569 /* LenzHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D245B027BF5A3E65FB560D34D469B0D /* LenzHeader.h */; settings = {ATTRIBUTES = (Project, ); }; };
  133. 7CB59C095A80B611E7FEA0238981B5B0 /* LenzSDK-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0C448537CD7A8178AFE592DE1219E1B /* LenzSDK-dummy.m */; };
  134. 7CD17A14AB33914C9949BC9FF0F24DFF /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7E70EE65C8B436ADCE623518B16FE6 /* Masonry.h */; settings = {ATTRIBUTES = (Project, ); }; };
  135. 7D47B0F2A83D429E3B0E05813ADBC8D4 /* YYTextRubyAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 088D76EF02787F533E77623067B6EE35 /* YYTextRubyAnnotation.m */; };
  136. 7D5DA5994FF0B32A4EFF344C41A4C905 /* LenzDataManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B59A7FC6AD30E9F5A7DCE730EAB7C76 /* LenzDataManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  137. 7D9883909DC186545FD4922AEC77BA74 /* CameraTextureRenderPass.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B12E2C053D854C65108D5F9EA7DCA93 /* CameraTextureRenderPass.m */; };
  138. 7DFF5F3C3209179C8154363FC35F9F0A /* MovieListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 09016F6A4D9FAB1147E99A047BF1D042 /* MovieListViewController.m */; };
  139. 7E57D6F087EEEF87D2F566146F2C738A /* YYTextSelectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = B9AA5E4741A4BEDAF6A49F8F9C0186BA /* YYTextSelectionView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  140. 7FD3E80B231552D03D2628C5BE314CA0 /* PhotoCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 93E4628F0B1C2B9707F19BD2692D45F4 /* PhotoCollectionViewCell.m */; };
  141. 7FE3A17A9C5DFE7FC9B97ABEFE6B52F2 /* OperationNodeSingle.m in Sources */ = {isa = PBXBuildFile; fileRef = EE6CA2393154AFA4308498FC23B6EADD /* OperationNodeSingle.m */; };
  142. 8098E6911E21F4890686B1D102FA71B4 /* SVProgressAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6127F5AECD4FEB53E4D5751D3D39426B /* SVProgressAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  143. 8180E096D11A76473326620639EE3E6C /* UIView+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 46E835F262CEBF51D5A0A8E520A1C160 /* UIView+YYText.m */; };
  144. 81C1B07E0A02DC8F34134C97AE3565CC /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5582002E4734B8D4F2CF285ACDADD796 /* NSArray+MASAdditions.m */; };
  145. 831D01D603567354A49375CD9E7F686B /* YYTextParser.m in Sources */ = {isa = PBXBuildFile; fileRef = FFF6810117FEEF2711F6E9B5437B1204 /* YYTextParser.m */; };
  146. 837A8E8C4E51F469F40B1DAE4A25C870 /* AlertView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C423B22136CAB788F9B5B427613156C /* AlertView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  147. 8455BC795264E85AD7AC4E0791E6FF0B /* LenzDataManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 99925C528BCDAEDA82E6BE0F19F34EBA /* LenzDataManager.m */; };
  148. 8456A6E14A16CB42A8F0EE1389C91F06 /* NSAttributedString+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 3212932ADFECD0AA6DDCCE1AC7015693 /* NSAttributedString+YYText.m */; };
  149. 8812E7809EA01418F468D78294ECED67 /* VC.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D6CB9977AF26F326E5904EDE6AD4FAF6 /* VC.storyboard */; };
  150. 8A13D22DC927A461982D123084B872BA /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CA823439A1050ECE966231061E1230 /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  151. 8A4A11E0F81E86AF94DBBA5F0A1F56FD /* OperationNodeMultiple.m in Sources */ = {isa = PBXBuildFile; fileRef = FC6AACC39400CB1BF59CC968D6C57827 /* OperationNodeMultiple.m */; };
  152. 8AF59E16A6968D27E6DC10EE325DBFD4 /* PhotoAlbumModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7629584E7CE713C1F06C6C1C751E6F /* PhotoAlbumModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  153. 8E21D35BFE57461C5F9C6E0BA504B338 /* PanoramaOrientationView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C656E596AEEAD88C7CF6F16C1D1F431 /* PanoramaOrientationView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  154. 8EC1702A255D3EFA5FAC469FE422772A /* YYTextParser.h in Headers */ = {isa = PBXBuildFile; fileRef = C7529CDD561B76983A08A7CDB558093D /* YYTextParser.h */; settings = {ATTRIBUTES = (Project, ); }; };
  155. 8FF0FD8B45CD298A202B937EAB056CFB /* YYTextMagnifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 798329F7930D5E2D0BAF2A4392ECD383 /* YYTextMagnifier.m */; };
  156. 9005EB12E1E0A714BADC0F0437C6B133 /* PCSButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 80233A2CD4A8B084D120801BA43798F4 /* PCSButton.m */; };
  157. 9068713B84BBA11F5D266E90E39F929B /* PCSMotionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 036CF813B01C669F91FB05F209C4069F /* PCSMotionManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  158. 90EC1C801997F93FAC2CEE8C80941219 /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = C2A41FD6D8CB70757C482150D322A596 /* Localizable.strings */; };
  159. 94FE5179C3A3C1204C91752D464C8CBC /* YYTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C2487CD193E3829F0F4233A6CCB0DC /* YYTextView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  160. 95664B648F3D5B81114D9D821518A49C /* OperationNodeMovie.m in Sources */ = {isa = PBXBuildFile; fileRef = 518B0C813AB5B652B34DFAE64AD3A7D8 /* OperationNodeMovie.m */; };
  161. 965DFE96C7B7939DDCE457A1E251731B /* Renderer.h in Headers */ = {isa = PBXBuildFile; fileRef = B315AC7DD4C969A0E9AAB9244C3B3E8E /* Renderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  162. 9720B62D415EB4616AF3AF0382CC530E /* PreviewSingleViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A15751988390396E74688102A400EAD3 /* PreviewSingleViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  163. 98F97E0776940E3699D994B6B7B3592E /* PCSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C85B7AF2317FFF862B75185D0AC0EEBE /* PCSBaseViewController.m */; };
  164. 9A8F6E730EEF04AE48FEB6495E1E99D7 /* YYTextInput.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B11EAD869D170766C139AAB767FE589 /* YYTextInput.h */; settings = {ATTRIBUTES = (Project, ); }; };
  165. 9D2A459748A24D26505CCEA15966AB0A /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = B48AB8CF97AD45F50A994EA915B73369 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
  166. 9F4094427E3DE83DAE19210CD123F492 /* MovieListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = D2A3CBDF329493CD8E47BFA2DC39C85D /* MovieListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  167. 9F66C8A05C3B8D60003DFAA88EA8DC9F /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A8D9791F0CBE7252EBEE929FC9ADBA /* View+MASAdditions.m */; };
  168. 9F8B1AFD74B76A41360BC22B12DEE371 /* NSParagraphStyle+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = F60CB6B0940620E867F47A43C000CEED /* NSParagraphStyle+YYText.m */; };
  169. A16DA3AADB14CE4B1EE32D01BFB1981E /* QuitMultipleModeAlertViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 6CEE913F5B1E591BC40A0FD8D95D001F /* QuitMultipleModeAlertViewController.xib */; };
  170. A280F9BA2EB288CF917C13902CD5EE7A /* PhotoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D3D72F49864D574ED2F4DE64A528B138 /* PhotoCell.m */; };
  171. A41056E1C85E5009B05BF510FC923356 /* YYTextAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = D261C8FD88EAB785CE5C9C275FCEC5A3 /* YYTextAttribute.m */; };
  172. A53E61FDF71657F72FB46647634A1176 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 227095F2E2705735D5DD170ACF8443CC /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Project, ); }; };
  173. A76BC55C0D512B10829B5D625180FABC /* UIView+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4B266BD585D4F5133D6E588A82DA70 /* UIView+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
  174. A9C0023BBA219D4638026CC476A8A343 /* UIButton+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 0561C7F44ADA7D8A61F33BC09AB9CB05 /* UIButton+Layout.m */; };
  175. AD72E0FAC162319BA59EA0EEF5AF2955 /* TimerLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 0270589F18C4470D0CBC3AE8D21164FB /* TimerLabel.m */; };
  176. AE5415227EB32EC70A262266DF881995 /* cpp-headers.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F13257ED383441DBB46890EC97FBA53 /* cpp-headers.h */; settings = {ATTRIBUTES = (Project, ); }; };
  177. AF7568B87D50F86818C28F9EDA42103E /* YYTextWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = F0091361036E037214A58062DD16AFF7 /* YYTextWeakProxy.m */; };
  178. AFAFC3A1A7DDB3B2F0B380730AAC8BE9 /* UIView+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 90FD3E27D73EB13273099A8434852078 /* UIView+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  179. B07D00912507F0B68CFEA99FC9808344 /* YYLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 211AC6AABF8746373905DC5A809CDE0C /* YYLabel.m */; };
  180. B242E4120703F000F6CD61FDDF368841 /* YYTextUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF0C9EDC9FACDAE37FC3FA2964122BD /* YYTextUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
  181. B349F13FAD12A197DE3EDD86946C6D86 /* PCSMotionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1429441378D663A8079FAB74C47D421E /* PCSMotionManager.m */; };
  182. B3B3DC810D95B1AF3062A7A4C1865B42 /* LenzCameraNativeModuleForRN.h in Headers */ = {isa = PBXBuildFile; fileRef = AD478DA4425DB3DE0896700EAA4E138A /* LenzCameraNativeModuleForRN.h */; settings = {ATTRIBUTES = (Project, ); }; };
  183. B40F0D0B2A273F8265C618DDF8A6CB20 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 32EB214088A160CD9BBDD73798777B90 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  184. B5E7E90CCD393A3AE39E55601C1D865F /* moire_mobilenetv2_79.tflite in Resources */ = {isa = PBXBuildFile; fileRef = 7B18E9434BD29D9BCC4A19B17A989C67 /* moire_mobilenetv2_79.tflite */; };
  185. B5F927BED4545F8EF83103E6DF31EC21 /* SVRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 95C514DF69105C042F1AE2ABC91803AF /* SVRadialGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  186. B6C858CAC2092695A0EC842B5E29E082 /* PhotoAlbumListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 70D9509E43B2638ED3DDD8096D0067BB /* PhotoAlbumListViewController.m */; };
  187. B84C067C3225D52FEFF2B1D0BFAE0DBC /* AlbumCounterLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AB4BD42A34CA091C813150550049E7C /* AlbumCounterLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  188. B9246136CFBE2F8486A56E5D792C071F /* LenzSDKConstant.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F64A5CD4E2F704B26155E46C9A03FF /* LenzSDKConstant.h */; settings = {ATTRIBUTES = (Project, ); }; };
  189. BA673CB3E499A64318B669B79B08D94E /* YYTextLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 618CA788C56DE22C036E596FBE111E14 /* YYTextLine.m */; };
  190. BD6B1778D84B26DF2FE6883D95DD5EF8 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = B6152C74D04927B37768ECA5C413A39D /* MASConstraintMaker.m */; };
  191. C2F122FEEB121F7F9B5C423642C168E3 /* YYTextAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 5602D5A50654D2411340C83206CA742E /* YYTextAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
  192. C35576B0274E807265FF10C7EF8BDD04 /* OperationNodeAIPanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = B5519972391B27A2FF0BBE81EF60C27B /* OperationNodeAIPanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
  193. C38DF8458B89E5C3898037450A470284 /* UIImage+name.m in Sources */ = {isa = PBXBuildFile; fileRef = 813CEAF8C0694E102EF96B7F0BD0F555 /* UIImage+name.m */; };
  194. C5C75D9A93EDD5D02D3CB5E9DC0B338E /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B61B2FCBF8E1560AE0A58437888D0F9 /* Masonry-dummy.m */; };
  195. C6AD32D6F4EF6A576CE185536B7AC095 /* PCSTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 296E0AAD4A2D8A00C7F05EFE783BD524 /* PCSTools.m */; };
  196. C8349F4FE1BE8B1C1D56587B5D34023E /* OperationNodePanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = EF49DB53D5B5754545C5C036453ABB76 /* OperationNodePanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
  197. C92B654187A8621F31C93E51DA725080 /* cpp-headers.mm in Sources */ = {isa = PBXBuildFile; fileRef = A9F5B1F945F4C5B0A7018A0A2387B101 /* cpp-headers.mm */; };
  198. C9802A18B04074A3ED503EC370FAD348 /* YYTextUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DD7F686389F37BC86D818BBE03C501E /* YYTextUtilities.m */; };
  199. CA884A2FB671F3B1D1DF194CD072E1CF /* LenzCameraSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = CB0EBA6AC7D23639484E03DB32EA18D6 /* LenzCameraSDK.h */; settings = {ATTRIBUTES = (Project, ); }; };
  200. CADE5209CA9E30CC4C6ECED44C59354A /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = BC674E2B3882A8B024EA11D3EDA96A05 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  201. CBE602893E1591013496196D1378268E /* YYTextArchiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B9EF6A811033DF78BBBEC3D0D7B1A06 /* YYTextArchiver.h */; settings = {ATTRIBUTES = (Project, ); }; };
  202. CCC5707F321773926AFFD51E23CED255 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = A473A64BA4823CEB1B77F1547BD26BBE /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  203. CCD0407A85A7EEAD4B91B2F6FF9B5577 /* UIImage+ext.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CD46B6F9B531364668CE7368C934081 /* UIImage+ext.h */; settings = {ATTRIBUTES = (Project, ); }; };
  204. CE37FEA495CB7228E50E66CA11B06307 /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = 8C830EEEFBC67534C907401B5A887ED5 /* Localizable.strings */; };
  205. D1854A7CA6D5A7BC65484B5B8708B5DB /* OperationNodeMultiple.h in Headers */ = {isa = PBXBuildFile; fileRef = 341487D2B454FC2C1164894570EF1099 /* OperationNodeMultiple.h */; settings = {ATTRIBUTES = (Project, ); }; };
  206. D25555E3D2BC1983C3F10A97C2D7F8D6 /* CameraTextureRenderPass.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC9098915DC19838197C1EBB975198D /* CameraTextureRenderPass.h */; settings = {ATTRIBUTES = (Project, ); }; };
  207. D5A4F36ABF17BCC99A33EBBC0A4CDEB9 /* PCSBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E46D974EE5BBAAF397E8E6E8B5F10E /* PCSBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  208. D6DA3EAE339B7778D6E4116EADE28EE9 /* CollectionViewPlayerCell.h in Headers */ = {isa = PBXBuildFile; fileRef = A279A6E1C9F0B403AA2A239D07587E2B /* CollectionViewPlayerCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  209. D8B30ACFC72C3247C553F5A5003BD189 /* SDKParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B418D2DD7FF80A74980679E76F735BB /* SDKParameters.h */; settings = {ATTRIBUTES = (Project, ); }; };
  210. D93729A6DCE2D00B44CC19B359D07C7F /* PhotoCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 0C40785BF512D7C3EED3E9864F13A918 /* PhotoCollectionViewCell.xib */; };
  211. DA0B75A6754EA3E3F4C82E68F1410E16 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87915C9C50FDE9906265DF4122AB7E1F /* SVIndefiniteAnimatedView.m */; };
  212. DB12BA3166665DD0A05CE44D151F1CAD /* PCSTools.h in Headers */ = {isa = PBXBuildFile; fileRef = E9291F041450ACC675D8A947818D5AEE /* PCSTools.h */; settings = {ATTRIBUTES = (Project, ); }; };
  213. DB64D72495EA1F55647CF2FA45482422 /* AVCapturePhotoOutput+VersionAdaptor.m in Sources */ = {isa = PBXBuildFile; fileRef = C3D412D67C159CA9F7E399E95E2D0AD0 /* AVCapturePhotoOutput+VersionAdaptor.m */; };
  214. DC31EC9DCD16DDB506C51752571E66BB /* OperationNodeMovie.h in Headers */ = {isa = PBXBuildFile; fileRef = 07C8D911330ED9F9288765DCC2CDC5CC /* OperationNodeMovie.h */; settings = {ATTRIBUTES = (Project, ); }; };
  215. DC7EFDCC405DD5A07DDC0EFE0845D59D /* AlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FD8AA25B7A41DFEE38F199AC8F28178 /* AlertView.m */; };
  216. DDC9734B5CB18339D45AB39BF1D4B6E3 /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = DD5004B676A5C04A78B0C779EC6ACDDA /* SVProgressHUD.m */; };
  217. DE62A5781F7C4C27DBC34E5C85193860 /* ImageCacheLRU.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E9A4CFE1E806FB27FF48B0A51F8FA29 /* ImageCacheLRU.h */; settings = {ATTRIBUTES = (Project, ); }; };
  218. DFDC2EC26FE93D5D4BD8841D1A1864BF /* TimerLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A4051AB02912D5A48F9B1DB7AC62AE1 /* TimerLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  219. E0A6D7358A01FA38E0FD0905041B5E26 /* PCSModeList.m in Sources */ = {isa = PBXBuildFile; fileRef = 97B43859FBFAFDCFDF6436E952BAFDB3 /* PCSModeList.m */; };
  220. E129083EEBDD0A44DD8EE539CEAD3F72 /* YYTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = C3D1B99A2AB26B52A0577F0603D10F4D /* YYTextView.m */; };
  221. E142F492909473C5F1539D65AD434AA4 /* SDKParameters.m in Sources */ = {isa = PBXBuildFile; fileRef = 50C12594C6FDE1C4E16933A167A9E0CF /* SDKParameters.m */; };
  222. E2265AAA8D5732834254B2225373744E /* PhotoCell.h in Headers */ = {isa = PBXBuildFile; fileRef = DF226FB1411E21FB949B7FBD9B0A2A2C /* PhotoCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  223. E45ABE874420598077883D66A1A32AE6 /* PCSPreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD696EDA1F0D8ED0A3A4457C8C898C0 /* PCSPreviewViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  224. E5C9D8E6C97A9D132CDD859EE61571AF /* YYTextAsyncLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D265818019F4C0A249894FC32A0538E /* YYTextAsyncLayer.m */; };
  225. E67367A5612D88DD3FBD3F419DB60B7F /* PaddingLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B8BFBAF8DEF654F040AAB63F5E35DAE /* PaddingLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  226. E7B7B6A8AFD3BF727BFD4CBE5DA70AAD /* PhotoAlbumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A7FA1FD7A64BD7439EDE019F7FF831F4 /* PhotoAlbumModel.m */; };
  227. E7E5372F3D4891B5AFDCD49799590DCC /* OperationNodeSingle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3747C05859F2B17BBFD65FB58F922D88 /* OperationNodeSingle.h */; settings = {ATTRIBUTES = (Project, ); }; };
  228. EC1199DB892CE34BF5CCCD9B606D6BD3 /* YYTextArchiver.m in Sources */ = {isa = PBXBuildFile; fileRef = 80980F92B228E81481943ACDE0BA1488 /* YYTextArchiver.m */; };
  229. EE08AC2AAE35FE24202DFFD4D65FCAA0 /* PCSPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CDD371E99332E22FBD8D51F8409095B /* PCSPreviewViewController.m */; };
  230. EEC77832F208505D9935D66E34F99720 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B59450A36F461CAC82435BFD5079CE /* NSLayoutConstraint+MASDebugAdditions.m */; };
  231. EEE29BDF3224FDCE0C38ADFE8AA7ACC8 /* YYTextAsyncLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 48282D0FCEB41CD6BE0B733B9E3276F2 /* YYTextAsyncLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  232. EF350D999E6E89EDB03D9948636EEF7D /* YYTextContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B83909B01724B76CD2AAC540FBDDF96 /* YYTextContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  233. F309C0E7BA320A4CD7C24EE90724771B /* PhotoListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B5862482717FFD0C8E2D6496D3D70E8 /* PhotoListViewController.m */; };
  234. F51BA7583EBD4B2CBD703E1A77767698 /* MovieListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = BABDE7052AB6F4E608354144AD8DE6F1 /* MovieListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  235. F58EBCCB1FBCE03BDA5AC996CEB3F91D /* TensorFlowWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F4CBA73D909FAFBA52B0D5E1066F4E3 /* TensorFlowWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  236. F9EE002A84258F990F83F2D22A2A8B44 /* VC.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = D6CB9977AF26F326E5904EDE6AD4FAF6 /* VC.storyboard */; };
  237. FACCBE7066906AD830F874ACD58F34EB /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */; };
  238. FB1F7478CC3A061B73250AC3C8007D2B /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = CF96F2C7EC4B6437454D8220D5243A97 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  239. FD2E6B478AA250CEF0BBB056991D52D6 /* PhotoListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = A4A786175AE33E5AE54203E6345C794B /* PhotoListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  240. FD795DD08A2B8709572EAB977E95DFED /* PCSButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 66CD11C01CE0B1F5460D070127494577 /* PCSButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  241. FD87D70E553F6285297C5FD4B3163124 /* YYTextDebugOption.h in Headers */ = {isa = PBXBuildFile; fileRef = D7209ABED45520DBB15093688385103A /* YYTextDebugOption.h */; settings = {ATTRIBUTES = (Project, ); }; };
  242. FDE822A0ABD9425763E221168DBEC50D /* BaseViewTapGestureDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5356D4198E190C400B23CF0C0124ABEE /* BaseViewTapGestureDelegate.m */; };
  243. FDFBE77A5A1DFE64142A979D00C3758F /* BaseViewTapGestureDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 945A93D2704FC5124F096FD0C01E5BEB /* BaseViewTapGestureDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
  244. FF69E6C0ABF2CE90B3B729B50704FBC1 /* PhotoCollectionViewCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = 0C40785BF512D7C3EED3E9864F13A918 /* PhotoCollectionViewCell.xib */; };
  245. FFCB5CAEDAFE21E2AF3CDA743E919E96 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 1186B356C442E84D3503F4FD2221FE2E /* Localizable.strings */; };
  246. /* End PBXBuildFile section */
  247. /* Begin PBXContainerItemProxy section */
  248. 45302710827338E5BC6F14E0CEFA9CC1 /* PBXContainerItemProxy */ = {
  249. isa = PBXContainerItemProxy;
  250. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  251. proxyType = 1;
  252. remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
  253. remoteInfo = TensorFlowLite;
  254. };
  255. 5DF88860627482186A32AB3247175680 /* PBXContainerItemProxy */ = {
  256. isa = PBXContainerItemProxy;
  257. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  258. proxyType = 1;
  259. remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
  260. remoteInfo = SVProgressHUD;
  261. };
  262. 658D0847C8DF4E2BCE61121CBA96B857 /* PBXContainerItemProxy */ = {
  263. isa = PBXContainerItemProxy;
  264. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  265. proxyType = 1;
  266. remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
  267. remoteInfo = Masonry;
  268. };
  269. 6BD0A45CB3F420CFCB12E7831CA7310F /* PBXContainerItemProxy */ = {
  270. isa = PBXContainerItemProxy;
  271. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  272. proxyType = 1;
  273. remoteGlobalIDString = C5B80886873124CEC429CA0591705280;
  274. remoteInfo = OpenCV2;
  275. };
  276. 6D4BC9816DE928351C3C1A2731D1E65A /* PBXContainerItemProxy */ = {
  277. isa = PBXContainerItemProxy;
  278. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  279. proxyType = 1;
  280. remoteGlobalIDString = 22955C745E4D0669DBEFF1F1997E3D7E;
  281. remoteInfo = LenzSDK;
  282. };
  283. 9303254802AAEA02F3E7AD3A290EF270 /* PBXContainerItemProxy */ = {
  284. isa = PBXContainerItemProxy;
  285. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  286. proxyType = 1;
  287. remoteGlobalIDString = E7EBC84E7AFBA5D0740969B92CA58D87;
  288. remoteInfo = "LenzSDK-LenzCameraNativeModuleForRN";
  289. };
  290. 9C7F81C34ABA3DF2F241F01220984DFE /* PBXContainerItemProxy */ = {
  291. isa = PBXContainerItemProxy;
  292. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  293. proxyType = 1;
  294. remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
  295. remoteInfo = TensorFlowLite;
  296. };
  297. D23C8653D6E16037191DEC366A60D2F0 /* PBXContainerItemProxy */ = {
  298. isa = PBXContainerItemProxy;
  299. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  300. proxyType = 1;
  301. remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
  302. remoteInfo = YYText;
  303. };
  304. D3B21D720D533371D15619DD9A19CF2F /* PBXContainerItemProxy */ = {
  305. isa = PBXContainerItemProxy;
  306. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  307. proxyType = 1;
  308. remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
  309. remoteInfo = SVProgressHUD;
  310. };
  311. D5D2F536A43D4527BCFABC05BA4BCE40 /* PBXContainerItemProxy */ = {
  312. isa = PBXContainerItemProxy;
  313. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  314. proxyType = 1;
  315. remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
  316. remoteInfo = Masonry;
  317. };
  318. F321A272A8EEE4EAC4785ADA333D5407 /* PBXContainerItemProxy */ = {
  319. isa = PBXContainerItemProxy;
  320. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  321. proxyType = 1;
  322. remoteGlobalIDString = C5B80886873124CEC429CA0591705280;
  323. remoteInfo = OpenCV2;
  324. };
  325. F7630B04BF5F767F8E3C3F6559270C56 /* PBXContainerItemProxy */ = {
  326. isa = PBXContainerItemProxy;
  327. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  328. proxyType = 1;
  329. remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
  330. remoteInfo = YYText;
  331. };
  332. /* End PBXContainerItemProxy section */
  333. /* Begin PBXFileReference section */
  334. 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>"; };
  335. 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>"; };
  336. 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>"; };
  337. 0270589F18C4470D0CBC3AE8D21164FB /* TimerLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TimerLabel.m; sourceTree = "<group>"; };
  338. 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>"; };
  339. 036CF813B01C669F91FB05F209C4069F /* PCSMotionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSMotionManager.h; sourceTree = "<group>"; };
  340. 0561C7F44ADA7D8A61F33BC09AB9CB05 /* UIButton+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Layout.m"; sourceTree = "<group>"; };
  341. 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>"; };
  342. 060E98502F6CA9163FD871330D9CD96D /* ml.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = ml.hpp; path = opencv2.framework/Versions/A/Headers/ml.hpp; sourceTree = "<group>"; };
  343. 07C8D911330ED9F9288765DCC2CDC5CC /* OperationNodeMovie.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMovie.h; sourceTree = "<group>"; };
  344. 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>"; };
  345. 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>"; };
  346. 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>"; };
  347. 088CC7B10130F424D2F0FB6E51DDEB48 /* YYTextWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextWeakProxy.h; path = YYText/Utility/YYTextWeakProxy.h; sourceTree = "<group>"; };
  348. 088D76EF02787F533E77623067B6EE35 /* YYTextRubyAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRubyAnnotation.m; path = YYText/String/YYTextRubyAnnotation.m; sourceTree = "<group>"; };
  349. 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>"; };
  350. 09016F6A4D9FAB1147E99A047BF1D042 /* MovieListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListViewController.m; sourceTree = "<group>"; };
  351. 0AE4E7473E40F2E5F0F54290ED44474F /* OpenCV2.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenCV2.release.xcconfig; sourceTree = "<group>"; };
  352. 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>"; };
  353. 0B658456B1B2984F39BB79AE0C29A7BC /* PanoramaOrientationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaOrientationView.m; sourceTree = "<group>"; };
  354. 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>"; };
  355. 0C40785BF512D7C3EED3E9864F13A918 /* PhotoCollectionViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCollectionViewCell.xib; sourceTree = "<group>"; };
  356. 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>"; };
  357. 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>"; };
  358. 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>"; };
  359. 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>"; };
  360. 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>"; };
  361. 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>"; };
  362. 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>"; };
  363. 10EEE0F0023FF9FAEF51DA382DF5A400 /* MoviePlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MoviePlayerViewController.h; sourceTree = "<group>"; };
  364. 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>"; };
  365. 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>"; };
  366. 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>"; };
  367. 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>"; };
  368. 12E46D974EE5BBAAF397E8E6E8B5F10E /* PCSBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSBaseViewController.h; sourceTree = "<group>"; };
  369. 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>"; };
  370. 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>"; };
  371. 1429441378D663A8079FAB74C47D421E /* PCSMotionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSMotionManager.m; sourceTree = "<group>"; };
  372. 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>"; };
  373. 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>"; };
  374. 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>"; };
  375. 16CCE46985B1244C60C8BF8A276E3651 /* imgcodecs.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgcodecs.hpp; path = opencv2.framework/Versions/A/Headers/imgcodecs.hpp; sourceTree = "<group>"; };
  376. 16DB214179794264262709A1A5BA8B2F /* CameraManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraManager.m; sourceTree = "<group>"; };
  377. 173B90865B6A5496A853C37DC81AD581 /* ImageCacheLRU.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ImageCacheLRU.m; sourceTree = "<group>"; };
  378. 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>"; };
  379. 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>"; };
  380. 18EE38B627F5098F5ACCD9BD7DC1A6A6 /* CustomModalViewTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CustomModalViewTransition.h; sourceTree = "<group>"; };
  381. 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>"; };
  382. 1B11EAD869D170766C139AAB767FE589 /* YYTextInput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextInput.h; path = YYText/Component/YYTextInput.h; sourceTree = "<group>"; };
  383. 1B59A7FC6AD30E9F5A7DCE730EAB7C76 /* LenzDataManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzDataManager.h; sourceTree = "<group>"; };
  384. 1CD46B6F9B531364668CE7368C934081 /* UIImage+ext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+ext.h"; sourceTree = "<group>"; };
  385. 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>"; };
  386. 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>"; };
  387. 1D265818019F4C0A249894FC32A0538E /* YYTextAsyncLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAsyncLayer.m; path = YYText/Utility/YYTextAsyncLayer.m; sourceTree = "<group>"; };
  388. 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>"; };
  389. 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>"; };
  390. 1F0E00D4EC7DDA5E0F50D373BFD7DBF9 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = "<group>"; };
  391. 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LenzCameraNativeModuleForRN_Example-resources.sh"; sourceTree = "<group>"; };
  392. 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>"; };
  393. 1FFED36A657123030ABB700256D73F15 /* Masonry */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Masonry; path = libMasonry.a; sourceTree = BUILT_PRODUCTS_DIR; };
  394. 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>"; };
  395. 211AC6AABF8746373905DC5A809CDE0C /* YYLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYLabel.m; path = YYText/YYLabel.m; sourceTree = "<group>"; };
  396. 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>"; };
  397. 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>"; };
  398. 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>"; };
  399. 227095F2E2705735D5DD170ACF8443CC /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = "<group>"; };
  400. 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>"; };
  401. 24C466DCD5D26F8F1A95AFE5E7A10616 /* UIColor+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JKAdd.m"; sourceTree = "<group>"; };
  402. 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>"; };
  403. 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>"; };
  404. 2955D10029E5126B00304514 /* PCSAutherView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PCSAutherView.h; sourceTree = "<group>"; };
  405. 2955D10129E5126B00304514 /* PCSAutherView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PCSAutherView.m; sourceTree = "<group>"; };
  406. 296E0AAD4A2D8A00C7F05EFE783BD524 /* PCSTools.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSTools.m; sourceTree = "<group>"; };
  407. 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>"; };
  408. 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>"; };
  409. 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>"; };
  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. 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>"; };
  412. 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-LenzCameraNativeModuleForRN_Example"; path = "libPods-LenzCameraNativeModuleForRN_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  413. 2CCFC8CF5DE6FD893159815293F71BD5 /* YYTextRunDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRunDelegate.h; path = YYText/String/YYTextRunDelegate.h; sourceTree = "<group>"; };
  414. 2CD696EDA1F0D8ED0A3A4457C8C898C0 /* PCSPreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSPreviewViewController.h; sourceTree = "<group>"; };
  415. 2D245B027BF5A3E65FB560D34D469B0D /* LenzHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzHeader.h; sourceTree = "<group>"; };
  416. 2DC9098915DC19838197C1EBB975198D /* CameraTextureRenderPass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraTextureRenderPass.h; sourceTree = "<group>"; };
  417. 2DD3922B8BE4E6C3BAE67ED432CF9885 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = "<group>"; };
  418. 2E170088911070D57FD1A2B1667B2358 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = "<group>"; };
  419. 2E7E70EE65C8B436ADCE623518B16FE6 /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = "<group>"; };
  420. 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>"; };
  421. 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>"; };
  422. 2FAC40062851544DC5A19BEAA745F82F /* UIImage+name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+name.h"; sourceTree = "<group>"; };
  423. 2FD8AA25B7A41DFEE38F199AC8F28178 /* AlertView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlertView.m; sourceTree = "<group>"; };
  424. 3212932ADFECD0AA6DDCCE1AC7015693 /* NSAttributedString+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+YYText.m"; path = "YYText/Utility/NSAttributedString+YYText.m"; sourceTree = "<group>"; };
  425. 323E11B6F2B40B2A30076A06EFA4ADE9 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = "<group>"; };
  426. 32EB214088A160CD9BBDD73798777B90 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
  427. 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>"; };
  428. 341487D2B454FC2C1164894570EF1099 /* OperationNodeMultiple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMultiple.h; sourceTree = "<group>"; };
  429. 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>"; };
  430. 34D3161F77526AB76CF74AB041515EB8 /* TensorFlowLite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.release.xcconfig; sourceTree = "<group>"; };
  431. 35131FD2ED05FA8D8A6C784E3BD4BD19 /* dnn.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = dnn.hpp; path = opencv2.framework/Versions/A/Headers/dnn.hpp; sourceTree = "<group>"; };
  432. 353865ECF8E88ADC9CC53960A6AD4F42 /* 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>"; };
  433. 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>"; };
  434. 35783455FD2B307819356A0F7317E3A2 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = "<group>"; };
  435. 359265DD4F6A9D6D02481DC2330B4DF7 /* UIButton+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIButton+Layout.h"; sourceTree = "<group>"; };
  436. 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>"; };
  437. 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>"; };
  438. 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>"; };
  439. 36385A4948651DCADD828F5EF6D7A860 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = "<group>"; };
  440. 366D47B840FF3E1B5BE44A2C981C123C /* PhotoCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCollectionViewCell.h; sourceTree = "<group>"; };
  441. 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>"; };
  442. 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>"; };
  443. 3747C05859F2B17BBFD65FB58F922D88 /* OperationNodeSingle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeSingle.h; sourceTree = "<group>"; };
  444. 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>"; };
  445. 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>"; };
  446. 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>"; };
  447. 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>"; };
  448. 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>"; };
  449. 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>"; };
  450. 3A4051AB02912D5A48F9B1DB7AC62AE1 /* TimerLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TimerLabel.h; sourceTree = "<group>"; };
  451. 3A9B8AF4ED2B2CE4E42F5526CB19ED56 /* NSAttributedString+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+YYText.h"; path = "YYText/Utility/NSAttributedString+YYText.h"; sourceTree = "<group>"; };
  452. 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>"; };
  453. 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>"; };
  454. 3B5862482717FFD0C8E2D6496D3D70E8 /* PhotoListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListViewController.m; sourceTree = "<group>"; };
  455. 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>"; };
  456. 3C656E596AEEAD88C7CF6F16C1D1F431 /* PanoramaOrientationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaOrientationView.h; sourceTree = "<group>"; };
  457. 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>"; };
  458. 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>"; };
  459. 3E8029DD0FDBD5F2FCDAE26900F91574 /* opencv2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = opencv2.framework; sourceTree = "<group>"; };
  460. 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>"; };
  461. 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>"; };
  462. 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>"; };
  463. 403FBB31E50BF7D8F0B08CC66A2EDCC6 /* LenzCachedResourceModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCachedResourceModel.h; sourceTree = "<group>"; };
  464. 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>"; };
  465. 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>"; };
  466. 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>"; };
  467. 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>"; };
  468. 42A26A56F9F80ECD3F646B2B727370C7 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressAnimatedView.m; path = SVProgressHUD/SVProgressAnimatedView.m; sourceTree = "<group>"; };
  469. 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>"; };
  470. 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>"; };
  471. 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>"; };
  472. 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>"; };
  473. 45C026261DAF6B7FCAAC6266495F4C9E /* YYTextSelectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextSelectionView.m; path = YYText/Component/YYTextSelectionView.m; sourceTree = "<group>"; };
  474. 46E835F262CEBF51D5A0A8E520A1C160 /* UIView+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+YYText.m"; path = "YYText/Utility/UIView+YYText.m"; sourceTree = "<group>"; };
  475. 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>"; };
  476. 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>"; };
  477. 48282D0FCEB41CD6BE0B733B9E3276F2 /* YYTextAsyncLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAsyncLayer.h; path = YYText/Utility/YYTextAsyncLayer.h; sourceTree = "<group>"; };
  478. 4897CCF734748D33CD69777E4973C69A /* AVCapturePhotoOutput+VersionAdaptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AVCapturePhotoOutput+VersionAdaptor.h"; sourceTree = "<group>"; };
  479. 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>"; };
  480. 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>"; };
  481. 4ACC936729FB445B6079C9113BFB0915 /* SVProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVProgressHUD-dummy.m"; sourceTree = "<group>"; };
  482. 4B436BDACAA3B3BEC13A3EC3179AC1E3 /* PCSRoundButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSRoundButton.h; sourceTree = "<group>"; };
  483. 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>"; };
  484. 4B61B2FCBF8E1560AE0A58437888D0F9 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = "<group>"; };
  485. 4B83909B01724B76CD2AAC540FBDDF96 /* YYTextContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextContainerView.h; path = YYText/Component/YYTextContainerView.h; sourceTree = "<group>"; };
  486. 4C423B22136CAB788F9B5B427613156C /* AlertView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlertView.h; sourceTree = "<group>"; };
  487. 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>"; };
  488. 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LenzCameraNativeModuleForRN_Example-dummy.m"; sourceTree = "<group>"; };
  489. 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>"; };
  490. 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>"; };
  491. 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>"; };
  492. 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>"; };
  493. 5071D90FBED6EF5030E504AB525E29C3 /* YYLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYLabel.h; path = YYText/YYLabel.h; sourceTree = "<group>"; };
  494. 507A2504392C0567854778AE4B6C4D39 /* SVProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.release.xcconfig; sourceTree = "<group>"; };
  495. 50C12594C6FDE1C4E16933A167A9E0CF /* SDKParameters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SDKParameters.m; sourceTree = "<group>"; };
  496. 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>"; };
  497. 513086AE9B8D8684A33900083C458971 /* YYTextTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextTransaction.h; path = YYText/Utility/YYTextTransaction.h; sourceTree = "<group>"; };
  498. 5139E1B09F2B5848CCD436B04764720B /* YYTextInput.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextInput.m; path = YYText/Component/YYTextInput.m; sourceTree = "<group>"; };
  499. 518B0C813AB5B652B34DFAE64AD3A7D8 /* OperationNodeMovie.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMovie.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. 528F6E7C75647AB494E0848A29609C44 /* OperationNodeVideoBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeVideoBase.h; 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. 5356D4198E190C400B23CF0C0124ABEE /* BaseViewTapGestureDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BaseViewTapGestureDelegate.m; sourceTree = "<group>"; };
  504. 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>"; };
  505. 5582002E4734B8D4F2CF285ACDADD796 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = "<group>"; };
  506. 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>"; };
  507. 5602D5A50654D2411340C83206CA742E /* YYTextAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAttribute.h; path = YYText/String/YYTextAttribute.h; sourceTree = "<group>"; };
  508. 564A29FF535E410732D3A5728BE51A41 /* OperationNodePanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodePanorama.m; sourceTree = "<group>"; };
  509. 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>"; };
  510. 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>"; };
  511. 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>"; };
  512. 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>"; };
  513. 58A56A8842D5A1FEE1A038D18A8C697A /* YYTextLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLayout.m; path = YYText/Component/YYTextLayout.m; sourceTree = "<group>"; };
  514. 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>"; };
  515. 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>"; };
  516. 5B1001037DEC018BCD5F7ADB9D38AFB5 /* PCSModeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSModeList.h; sourceTree = "<group>"; };
  517. 5C0EF01C047A7FEE68E5418B5310DDF5 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = "<group>"; };
  518. 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>"; };
  519. 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>"; };
  520. 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>"; };
  521. 5E4B266BD585D4F5133D6E588A82DA70 /* UIView+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+JKAdd.h"; sourceTree = "<group>"; };
  522. 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>"; };
  523. 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>"; };
  524. 5F8345A474C4286A6A94325A1C7628EE /* YYTextEffectWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextEffectWindow.m; path = YYText/Component/YYTextEffectWindow.m; sourceTree = "<group>"; };
  525. 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>"; };
  526. 6127F5AECD4FEB53E4D5751D3D39426B /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressAnimatedView.h; path = SVProgressHUD/SVProgressAnimatedView.h; sourceTree = "<group>"; };
  527. 618CA788C56DE22C036E596FBE111E14 /* YYTextLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLine.m; path = YYText/Component/YYTextLine.m; sourceTree = "<group>"; };
  528. 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>"; };
  529. 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>"; };
  530. 63461DE6FD2D71529A5BF0FD2BB26A33 /* gapi.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = gapi.hpp; path = opencv2.framework/Versions/A/Headers/gapi.hpp; sourceTree = "<group>"; };
  531. 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>"; };
  532. 66CD11C01CE0B1F5460D070127494577 /* PCSButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSButton.h; sourceTree = "<group>"; };
  533. 671C8641F5DA39B2C758B30203E48E89 /* YYText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.debug.xcconfig; sourceTree = "<group>"; };
  534. 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>"; };
  535. 67CFD1C0BEF630FF3A2F44D4A5BF1E64 /* PhotoListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListViewController.h; sourceTree = "<group>"; };
  536. 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>"; };
  537. 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>"; };
  538. 69CBF88ABBBBC462CA5D1C449D145791 /* PhotoListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListCellModel.m; sourceTree = "<group>"; };
  539. 6B102F3E8763449C6DA99024D84CC479 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = "<group>"; };
  540. 6B12E2C053D854C65108D5F9EA7DCA93 /* CameraTextureRenderPass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraTextureRenderPass.m; sourceTree = "<group>"; };
  541. 6B418D2DD7FF80A74980679E76F735BB /* SDKParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SDKParameters.h; sourceTree = "<group>"; };
  542. 6B9EF6A811033DF78BBBEC3D0D7B1A06 /* YYTextArchiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextArchiver.h; path = YYText/String/YYTextArchiver.h; sourceTree = "<group>"; };
  543. 6CDD371E99332E22FBD8D51F8409095B /* PCSPreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSPreviewViewController.m; sourceTree = "<group>"; };
  544. 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>"; };
  545. 6CEE913F5B1E591BC40A0FD8D95D001F /* QuitMultipleModeAlertViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = QuitMultipleModeAlertViewController.xib; sourceTree = "<group>"; };
  546. 6D33C5808A112DC170446B14B628C3A2 /* PreviewSingleViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PreviewSingleViewController.m; sourceTree = "<group>"; };
  547. 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>"; };
  548. 6DD7F686389F37BC86D818BBE03C501E /* YYTextUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextUtilities.m; path = YYText/Utility/YYTextUtilities.m; sourceTree = "<group>"; };
  549. 6E02D156AF78AE77AACD53D87081BAEF /* stitching.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = stitching.hpp; path = opencv2.framework/Versions/A/Headers/stitching.hpp; sourceTree = "<group>"; };
  550. 6F249E1100744D6BACF4222EC15E8C25 /* PCSThemeColorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSThemeColorManager.h; sourceTree = "<group>"; };
  551. 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>"; };
  552. 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>"; };
  553. 70286A4FEC98F83D0036EEDE95BC6F4E /* UIColor+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+JKAdd.h"; sourceTree = "<group>"; };
  554. 70ACE1B9788ABB4F18A6A434F4DFB523 /* OpenCV2.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenCV2.debug.xcconfig; sourceTree = "<group>"; };
  555. 70D9509E43B2638ED3DDD8096D0067BB /* PhotoAlbumListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumListViewController.m; sourceTree = "<group>"; };
  556. 71762A728913EB440C97D3616D291AF3 /* YYText */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = YYText; path = libYYText.a; sourceTree = BUILT_PRODUCTS_DIR; };
  557. 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>"; };
  558. 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>"; };
  559. 73E8F3F8F08C78922A11CA005EDCFDD7 /* LenzSDK-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LenzSDK-prefix.pch"; sourceTree = "<group>"; };
  560. 73F836811E383C73C37E727FB119C47B /* opencv.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = opencv.hpp; path = opencv2.framework/Versions/A/Headers/opencv.hpp; sourceTree = "<group>"; };
  561. 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>"; };
  562. 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>"; };
  563. 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>"; };
  564. 7608FDCE402048449721AFAC227E4052 /* YYTextMagnifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextMagnifier.h; path = YYText/Component/YYTextMagnifier.h; sourceTree = "<group>"; };
  565. 78A8D9791F0CBE7252EBEE929FC9ADBA /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = "<group>"; };
  566. 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>"; };
  567. 798329F7930D5E2D0BAF2A4392ECD383 /* YYTextMagnifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextMagnifier.m; path = YYText/Component/YYTextMagnifier.m; sourceTree = "<group>"; };
  568. 79BE969CB25933490EED2D43C2D61656 /* world.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = world.hpp; path = opencv2.framework/Versions/A/Headers/world.hpp; sourceTree = "<group>"; };
  569. 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>"; };
  570. 7AF0C9EDC9FACDAE37FC3FA2964122BD /* YYTextUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextUtilities.h; path = YYText/Utility/YYTextUtilities.h; sourceTree = "<group>"; };
  571. 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>"; };
  572. 7B18E9434BD29D9BCC4A19B17A989C67 /* moire_mobilenetv2_79.tflite */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; path = moire_mobilenetv2_79.tflite; sourceTree = "<group>"; };
  573. 7B8BFBAF8DEF654F040AAB63F5E35DAE /* PaddingLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PaddingLabel.h; sourceTree = "<group>"; };
  574. 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>"; };
  575. 7D660DACAFE1FE48CFD4EAD7E90D9ABC /* VerticalButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = VerticalButton.h; sourceTree = "<group>"; };
  576. 7D7B0F9E76BFC703B6AE35CEAED63132 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = "<group>"; };
  577. 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>"; };
  578. 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>"; };
  579. 7F4422F57F95BCAEE8E0D37ACA7839F1 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = "<group>"; };
  580. 80233A2CD4A8B084D120801BA43798F4 /* PCSButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSButton.m; sourceTree = "<group>"; };
  581. 804CC49D71F590C1DA6D21ABBDA4D01D /* LenzStitchSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzStitchSDK.framework; sourceTree = "<group>"; };
  582. 80980F92B228E81481943ACDE0BA1488 /* YYTextArchiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextArchiver.m; path = YYText/String/YYTextArchiver.m; sourceTree = "<group>"; };
  583. 80AB600B687D3D1246EC08397708C05E /* YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYText.h; path = YYText/YYText.h; sourceTree = "<group>"; };
  584. 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>"; };
  585. 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>"; };
  586. 813CEAF8C0694E102EF96B7F0BD0F555 /* UIImage+name.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+name.m"; sourceTree = "<group>"; };
  587. 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>"; };
  588. 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>"; };
  589. 82FE5BA64CC88E28E8D9DE4C5A4B17A3 /* OperationNodeAIPanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeAIPanorama.m; sourceTree = "<group>"; };
  590. 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>"; };
  591. 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>"; };
  592. 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>"; };
  593. 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>"; };
  594. 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>"; };
  595. 87915C9C50FDE9906265DF4122AB7E1F /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVIndefiniteAnimatedView.m; path = SVProgressHUD/SVIndefiniteAnimatedView.m; sourceTree = "<group>"; };
  596. 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>"; };
  597. 88176509FCAB6B36F316AC04B84446BE /* LenzSDK.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = LenzSDK.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  598. 88FAFB718DB7E66A1777F7176F4268AF /* YYTextRunDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRunDelegate.m; path = YYText/String/YYTextRunDelegate.m; sourceTree = "<group>"; };
  599. 8905E06243ADA18E17E2B2D83FE17D91 /* TensorFlowWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TensorFlowWrapper.m; sourceTree = "<group>"; };
  600. 8A171F24B8E17DEE3264D323615C52E8 /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVIndefiniteAnimatedView.h; path = SVProgressHUD/SVIndefiniteAnimatedView.h; sourceTree = "<group>"; };
  601. 8A7629584E7CE713C1F06C6C1C751E6F /* PhotoAlbumModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumModel.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. 8AB4BD42A34CA091C813150550049E7C /* AlbumCounterLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlbumCounterLabel.h; 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. 8BB1391C0E3CE18BBA966201906336CA /* NSParagraphStyle+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSParagraphStyle+YYText.h"; path = "YYText/Utility/NSParagraphStyle+YYText.h"; sourceTree = "<group>"; };
  606. 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>"; };
  607. 8BED18EC37FF6BB406B8A328F952809E /* PCSThemeColorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSThemeColorManager.m; 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. 8C830EEEFBC67534C907401B5A887ED5 /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  611. 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>"; };
  612. 8D4020EFF5D912EE82E03D562C9B5A45 /* PanoramaGuideView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaGuideView.m; sourceTree = "<group>"; };
  613. 8F13257ED383441DBB46890EC97FBA53 /* cpp-headers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "cpp-headers.h"; sourceTree = "<group>"; };
  614. 8F4CBA73D909FAFBA52B0D5E1066F4E3 /* TensorFlowWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TensorFlowWrapper.h; sourceTree = "<group>"; };
  615. 90FD3E27D73EB13273099A8434852078 /* UIView+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+YYText.h"; path = "YYText/Utility/UIView+YYText.h"; sourceTree = "<group>"; };
  616. 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>"; };
  617. 91579DA43E5DCE2B63663FAB64C69EF3 /* NSString+Localization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSString+Localization.h"; sourceTree = "<group>"; };
  618. 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>"; };
  619. 91ED9045D03A7EF57F7B42F85C86ACB9 /* SVProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-prefix.pch"; sourceTree = "<group>"; };
  620. 9233F03217EE52DE54B723939D946CA9 /* NSString+Localization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSString+Localization.m"; sourceTree = "<group>"; };
  621. 928F19E4450531B0C3B2A304FFBAD967 /* YYTextDebugOption.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextDebugOption.m; path = YYText/Component/YYTextDebugOption.m; sourceTree = "<group>"; };
  622. 92B59450A36F461CAC82435BFD5079CE /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
  623. 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>"; };
  624. 93E4628F0B1C2B9707F19BD2692D45F4 /* PhotoCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCollectionViewCell.m; sourceTree = "<group>"; };
  625. 943CE9CC2B7AE015731778F1B82F8007 /* DBManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DBManager.h; sourceTree = "<group>"; };
  626. 945A93D2704FC5124F096FD0C01E5BEB /* BaseViewTapGestureDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BaseViewTapGestureDelegate.h; sourceTree = "<group>"; };
  627. 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>"; };
  628. 95C514DF69105C042F1AE2ABC91803AF /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVRadialGradientLayer.h; path = SVProgressHUD/SVRadialGradientLayer.h; sourceTree = "<group>"; };
  629. 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>"; };
  630. 9677A4464313D9121CA7676958ACD6E5 /* tensorflow_lite.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = tensorflow_lite.framework; path = Frameworks/tensorflow_lite.framework; sourceTree = "<group>"; };
  631. 97B43859FBFAFDCFDF6436E952BAFDB3 /* PCSModeList.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSModeList.m; sourceTree = "<group>"; };
  632. 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>"; };
  633. 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>"; };
  634. 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>"; };
  635. 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>"; };
  636. 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>"; };
  637. 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>"; };
  638. 99925C528BCDAEDA82E6BE0F19F34EBA /* LenzDataManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzDataManager.m; sourceTree = "<group>"; };
  639. 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>"; };
  640. 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>"; };
  641. 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>"; };
  642. 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>"; };
  643. 9BBEE7B89746528F0C2DCFB43020260E /* CameraManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraManager.h; sourceTree = "<group>"; };
  644. 9C5747FD601D91795F596AFF32D6A13B /* YYText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.release.xcconfig; sourceTree = "<group>"; };
  645. 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>"; };
  646. 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>"; };
  647. 9D3326A3007D874205B40893EA3CFE62 /* UIView+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+JKAdd.m"; sourceTree = "<group>"; };
  648. 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; };
  649. 9E3D8540C60144CED386A442155ED9CF /* UIImage+ext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ext.m"; sourceTree = "<group>"; };
  650. 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>"; };
  651. 9E9A4CFE1E806FB27FF48B0A51F8FA29 /* ImageCacheLRU.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ImageCacheLRU.h; sourceTree = "<group>"; };
  652. 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>"; };
  653. 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>"; };
  654. 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>"; };
  655. 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>"; };
  656. A0134B7DFC892F7D8942843B702EECBF /* YYTextLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLayout.h; path = YYText/Component/YYTextLayout.h; sourceTree = "<group>"; };
  657. 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>"; };
  658. 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>"; };
  659. A15751988390396E74688102A400EAD3 /* PreviewSingleViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PreviewSingleViewController.h; sourceTree = "<group>"; };
  660. 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>"; };
  661. 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>"; };
  662. 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>"; };
  663. A1F079FF6554029FB4F26EC28F5255A7 /* video.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = video.hpp; path = opencv2.framework/Versions/A/Headers/video.hpp; sourceTree = "<group>"; };
  664. A279A6E1C9F0B403AA2A239D07587E2B /* CollectionViewPlayerCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CollectionViewPlayerCell.h; sourceTree = "<group>"; };
  665. 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>"; };
  666. A3FC769F1E5DE4CC64C4DF481839D065 /* MoviePlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MoviePlayerViewController.m; sourceTree = "<group>"; };
  667. A473A64BA4823CEB1B77F1547BD26BBE /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = "<group>"; };
  668. A4A786175AE33E5AE54203E6345C794B /* PhotoListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListCellModel.h; sourceTree = "<group>"; };
  669. A682665B0F2F184E8E8A631EADACC029 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = "<group>"; };
  670. 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>"; };
  671. 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>"; };
  672. A7FA1FD7A64BD7439EDE019F7FF831F4 /* PhotoAlbumModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumModel.m; sourceTree = "<group>"; };
  673. A976605A3EBE01C3354D9E6195DDB0E8 /* PhotoAlbumListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumListViewController.h; sourceTree = "<group>"; };
  674. A9F5B1F945F4C5B0A7018A0A2387B101 /* cpp-headers.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; path = "cpp-headers.mm"; sourceTree = "<group>"; };
  675. AACE60EFC1A660CF10C691A6C1F191AB /* MovieListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListCellModel.m; sourceTree = "<group>"; };
  676. 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>"; };
  677. 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>"; };
  678. AC2E3E7E3794C6BE58DFE72E2B8B0363 /* PanoramaGuideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaGuideView.h; sourceTree = "<group>"; };
  679. 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>"; };
  680. 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>"; };
  681. 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>"; };
  682. ACBCC52EFB48E66C9EF45EF550B878C2 /* assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; path = assets.xcassets; sourceTree = "<group>"; };
  683. 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>"; };
  684. AD478DA4425DB3DE0896700EAA4E138A /* LenzCameraNativeModuleForRN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraNativeModuleForRN.h; sourceTree = "<group>"; };
  685. AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  686. AF5E8B51C4D20186FDD5CBC8B2A5EBDD /* imgproc.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = imgproc.hpp; path = opencv2.framework/Versions/A/Headers/imgproc.hpp; sourceTree = "<group>"; };
  687. 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>"; };
  688. 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>"; };
  689. B315AC7DD4C969A0E9AAB9244C3B3E8E /* Renderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Renderer.h; sourceTree = "<group>"; };
  690. 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>"; };
  691. B48AB8CF97AD45F50A994EA915B73369 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = "<group>"; };
  692. B4D25A57720FED5D490B8329026D9542 /* OperationNodeVideoBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeVideoBase.m; sourceTree = "<group>"; };
  693. B5519972391B27A2FF0BBE81EF60C27B /* OperationNodeAIPanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeAIPanorama.h; sourceTree = "<group>"; };
  694. B556EF7B503F64AD5CEC85E2A13C5007 /* YYTextContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextContainerView.m; path = YYText/Component/YYTextContainerView.m; sourceTree = "<group>"; };
  695. B5C2487CD193E3829F0F4233A6CCB0DC /* YYTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextView.h; path = YYText/YYTextView.h; sourceTree = "<group>"; };
  696. B6152C74D04927B37768ECA5C413A39D /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = "<group>"; };
  697. 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>"; };
  698. 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>"; };
  699. 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>"; };
  700. B88175A0D217891D9AE0F5A88BC82630 /* SVProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressHUD.h; path = SVProgressHUD/SVProgressHUD.h; sourceTree = "<group>"; };
  701. B8CCB96205C1411EE87A23F83553279A /* LenzTensorFlowSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzTensorFlowSDK.framework; sourceTree = "<group>"; };
  702. 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>"; };
  703. B9AA5E4741A4BEDAF6A49F8F9C0186BA /* YYTextSelectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextSelectionView.h; path = YYText/Component/YYTextSelectionView.h; sourceTree = "<group>"; };
  704. 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>"; };
  705. BABDE7052AB6F4E608354144AD8DE6F1 /* MovieListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListViewController.h; sourceTree = "<group>"; };
  706. 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>"; };
  707. BB663C341E3A7C3D059BF8FA81EB8EC1 /* objdetect.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = objdetect.hpp; path = opencv2.framework/Versions/A/Headers/objdetect.hpp; sourceTree = "<group>"; };
  708. BBE688CB6C22990A9E1CA752BB6AC77F /* YYTextLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLine.h; path = YYText/Component/YYTextLine.h; sourceTree = "<group>"; };
  709. BC674E2B3882A8B024EA11D3EDA96A05 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = "<group>"; };
  710. 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>"; };
  711. 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>"; };
  712. BE518FFFE908DC956869620F7540B0F9 /* calib3d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = calib3d.hpp; path = opencv2.framework/Versions/A/Headers/calib3d.hpp; sourceTree = "<group>"; };
  713. 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>"; };
  714. 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>"; };
  715. 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>"; };
  716. 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>"; };
  717. C2A41FD6D8CB70757C482150D322A596 /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  718. 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>"; };
  719. C3D1B99A2AB26B52A0577F0603D10F4D /* YYTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextView.m; path = YYText/YYTextView.m; sourceTree = "<group>"; };
  720. C3D412D67C159CA9F7E399E95E2D0AD0 /* AVCapturePhotoOutput+VersionAdaptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AVCapturePhotoOutput+VersionAdaptor.m"; sourceTree = "<group>"; };
  721. 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>"; };
  722. 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>"; };
  723. 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>"; };
  724. 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>"; };
  725. C66C450F27C4A5097C9E02DE7DCEF9D1 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
  726. 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>"; };
  727. C7529CDD561B76983A08A7CDB558093D /* YYTextParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextParser.h; path = YYText/String/YYTextParser.h; sourceTree = "<group>"; };
  728. 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>"; };
  729. C85B7AF2317FFF862B75185D0AC0EEBE /* PCSBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSBaseViewController.m; sourceTree = "<group>"; };
  730. 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>"; };
  731. 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>"; };
  732. 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>"; };
  733. 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>"; };
  734. CB0EBA6AC7D23639484E03DB32EA18D6 /* LenzCameraSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraSDK.h; sourceTree = "<group>"; };
  735. 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>"; };
  736. CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig"; sourceTree = "<group>"; };
  737. 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>"; };
  738. 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>"; };
  739. 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>"; };
  740. CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "LenzSDK-LenzCameraNativeModuleForRN"; path = LenzCameraNativeModuleForRN.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  741. CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = LenzSDK; path = libLenzSDK.a; sourceTree = BUILT_PRODUCTS_DIR; };
  742. 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>"; };
  743. 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>"; };
  744. CF96F2C7EC4B6437454D8220D5243A97 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = "<group>"; };
  745. CFB95D9EF4BA34266DEE96A5088A1D0E /* LenzCameraSDK.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCameraSDK.m; sourceTree = "<group>"; };
  746. 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>"; };
  747. D113E44A4699A41E403B4A497E44F2A4 /* YYTextEffectWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextEffectWindow.h; path = YYText/Component/YYTextEffectWindow.h; sourceTree = "<group>"; };
  748. D13327B74EC3AB232A72CA60ED77163F /* videoio.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = videoio.hpp; path = opencv2.framework/Versions/A/Headers/videoio.hpp; sourceTree = "<group>"; };
  749. D148391102C9E7C3871EC94238BA859B /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
  750. D18251050252D376DF0B0E328E1456FB /* UIPasteboard+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIPasteboard+YYText.m"; path = "YYText/Utility/UIPasteboard+YYText.m"; sourceTree = "<group>"; };
  751. D1E565F5A1FAD79799DA4DD176AD4C23 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = "<group>"; };
  752. 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>"; };
  753. 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>"; };
  754. D261C8FD88EAB785CE5C9C275FCEC5A3 /* YYTextAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAttribute.m; path = YYText/String/YYTextAttribute.m; sourceTree = "<group>"; };
  755. D2A3CBDF329493CD8E47BFA2DC39C85D /* MovieListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListCellModel.h; sourceTree = "<group>"; };
  756. D2F64A5CD4E2F704B26155E46C9A03FF /* LenzSDKConstant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzSDKConstant.h; sourceTree = "<group>"; };
  757. D300D3849C0E80A0B48827AFFEA12087 /* YYTextKeyboardManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextKeyboardManager.m; path = YYText/Component/YYTextKeyboardManager.m; sourceTree = "<group>"; };
  758. D3D72F49864D574ED2F4DE64A528B138 /* PhotoCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCell.m; sourceTree = "<group>"; };
  759. 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>"; };
  760. D631405D079AA018794E5D9BAEE301F1 /* PhotoCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCell.xib; sourceTree = "<group>"; };
  761. 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>"; };
  762. 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>"; };
  763. D6CB9977AF26F326E5904EDE6AD4FAF6 /* VC.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; path = VC.storyboard; sourceTree = "<group>"; };
  764. D7209ABED45520DBB15093688385103A /* YYTextDebugOption.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextDebugOption.h; path = YYText/Component/YYTextDebugOption.h; sourceTree = "<group>"; };
  765. 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>"; };
  766. 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>"; };
  767. D84C280CB71B838D2C2DE8305349F7F3 /* LenzCachedResourceModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCachedResourceModel.m; sourceTree = "<group>"; };
  768. D8598BA55A6B943918E5F4A3580A8F57 /* YYTextTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextTransaction.m; path = YYText/Utility/YYTextTransaction.m; sourceTree = "<group>"; };
  769. 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>"; };
  770. D8EB35B2380C806D37146184BA831DD3 /* Renderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Renderer.m; sourceTree = "<group>"; };
  771. 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>"; };
  772. D988855D6139CFDCDA1967D6EBC102DA /* OperationNodeProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeProtocol.h; sourceTree = "<group>"; };
  773. 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>"; };
  774. 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>"; };
  775. DBC17D3B0D94239D5407F7887BA601BB /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = "<group>"; };
  776. 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>"; };
  777. DBFE967524F3F12E190B1415022D9825 /* YYText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YYText-dummy.m"; sourceTree = "<group>"; };
  778. 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>"; };
  779. DD5004B676A5C04A78B0C779EC6ACDDA /* SVProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressHUD.m; path = SVProgressHUD/SVProgressHUD.m; sourceTree = "<group>"; };
  780. DDF9CEB1C61C7F8A5B54BD4A7C592B8E /* YYTextKeyboardManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextKeyboardManager.h; path = YYText/Component/YYTextKeyboardManager.h; sourceTree = "<group>"; };
  781. 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>"; };
  782. 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>"; };
  783. DED26C99B29D2AA1A69E9862863A59E1 /* YYText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YYText-prefix.pch"; sourceTree = "<group>"; };
  784. DF226FB1411E21FB949B7FBD9B0A2A2C /* PhotoCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCell.h; sourceTree = "<group>"; };
  785. DF49707D0225F15883F4B82A11B0581D /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVRadialGradientLayer.m; path = SVProgressHUD/SVRadialGradientLayer.m; sourceTree = "<group>"; };
  786. 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>"; };
  787. 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>"; };
  788. E0C448537CD7A8178AFE592DE1219E1B /* LenzSDK-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LenzSDK-dummy.m"; sourceTree = "<group>"; };
  789. E0C667632E9A4E34CD3D6D97902BB116 /* DBManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DBManager.m; sourceTree = "<group>"; };
  790. 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>"; };
  791. 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>"; };
  792. 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>"; };
  793. 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>"; };
  794. E4C8EF7032A09396718DC47C5598B84B /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = "<group>"; };
  795. E4CA823439A1050ECE966231061E1230 /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = "<group>"; };
  796. E4D6FA1C748F7EB6D29632BFFCC794D3 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SVProgressHUD.bundle; path = SVProgressHUD/SVProgressHUD.bundle; sourceTree = "<group>"; };
  797. E4DBE241924BDFED99EC4B2344074FB9 /* CustomModalViewTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CustomModalViewTransition.m; sourceTree = "<group>"; };
  798. 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>"; };
  799. 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>"; };
  800. 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>"; };
  801. 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>"; };
  802. 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>"; };
  803. E9291F041450ACC675D8A947818D5AEE /* PCSTools.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSTools.h; sourceTree = "<group>"; };
  804. E93BE0BAE030FB160EFB75E477B69B89 /* SVProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.debug.xcconfig; sourceTree = "<group>"; };
  805. E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SVProgressHUD; path = libSVProgressHUD.a; sourceTree = BUILT_PRODUCTS_DIR; };
  806. 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>"; };
  807. EAB055653E760A3FD13BF5BB12FFA28D /* PCSSessionWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSSessionWrapper.m; sourceTree = "<group>"; };
  808. 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>"; };
  809. 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>"; };
  810. EB02DDECF9AAD2D808C4F616A591448C /* AlbumCounterLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlbumCounterLabel.m; sourceTree = "<group>"; };
  811. EBD6364BF3A563DECCE3B1C6B4895782 /* core.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = core.hpp; path = opencv2.framework/Versions/A/Headers/core.hpp; sourceTree = "<group>"; };
  812. 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>"; };
  813. 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>"; };
  814. ECAF351E914D9B3F844880605E87E22E /* CollectionViewPlayerCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CollectionViewPlayerCell.m; sourceTree = "<group>"; };
  815. ECAF7D0AC12DB31F7DA4E118E9B84F30 /* YYTextRubyAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRubyAnnotation.h; path = YYText/String/YYTextRubyAnnotation.h; sourceTree = "<group>"; };
  816. 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>"; };
  817. 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>"; };
  818. 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>"; };
  819. ED44023185F9EB737206205EA5B9DBA5 /* PaddingLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PaddingLabel.m; sourceTree = "<group>"; };
  820. 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>"; };
  821. 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>"; };
  822. EE288070A3F0D2824F62FC92399210F8 /* UIPasteboard+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIPasteboard+YYText.h"; path = "YYText/Utility/UIPasteboard+YYText.h"; sourceTree = "<group>"; };
  823. EE6CA2393154AFA4308498FC23B6EADD /* OperationNodeSingle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeSingle.m; sourceTree = "<group>"; };
  824. 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>"; };
  825. EF49DB53D5B5754545C5C036453ABB76 /* OperationNodePanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodePanorama.h; sourceTree = "<group>"; };
  826. 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>"; };
  827. F0091361036E037214A58062DD16AFF7 /* YYTextWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextWeakProxy.m; path = YYText/Utility/YYTextWeakProxy.m; sourceTree = "<group>"; };
  828. 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>"; };
  829. 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>"; };
  830. 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>"; };
  831. 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>"; };
  832. F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig"; sourceTree = "<group>"; };
  833. F33E64BDBD3C7814437202B8508BBFCD /* PCSSessionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSSessionWrapper.h; sourceTree = "<group>"; };
  834. 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>"; };
  835. 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>"; };
  836. F525E9FAE91A0EB612D852BA1CBD0B3B /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist"; sourceTree = "<group>"; };
  837. 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>"; };
  838. 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>"; };
  839. F60CB6B0940620E867F47A43C000CEED /* NSParagraphStyle+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSParagraphStyle+YYText.m"; path = "YYText/Utility/NSParagraphStyle+YYText.m"; sourceTree = "<group>"; };
  840. 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>"; };
  841. 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>"; };
  842. F6C5DF7E88724A4663BD93A3067267A9 /* features2d.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = features2d.hpp; path = opencv2.framework/Versions/A/Headers/features2d.hpp; sourceTree = "<group>"; };
  843. 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>"; };
  844. F6E2D7549154D11D86D951ED2CB555F1 /* cvconfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cvconfig.h; path = opencv2.framework/Versions/A/Headers/cvconfig.h; sourceTree = "<group>"; };
  845. 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>"; };
  846. 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>"; };
  847. F7D9819B5149B23177924CF7F309F765 /* QuitMultipleModeAlertViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = QuitMultipleModeAlertViewController.m; sourceTree = "<group>"; };
  848. F83198B7D4D1070C156E523A120B7C5A /* TensorFlowLite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.debug.xcconfig; sourceTree = "<group>"; };
  849. 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>"; };
  850. 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>"; };
  851. F914F9872A221B8E8FE3944FF61E4B76 /* LenzSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.debug.xcconfig; sourceTree = "<group>"; };
  852. F974FA918443DCB35A0B7EE08207B908 /* VerticalButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = VerticalButton.m; sourceTree = "<group>"; };
  853. FB0584FC992FE38A106704E1D7B1F80B /* flann.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = flann.hpp; path = opencv2.framework/Versions/A/Headers/flann.hpp; sourceTree = "<group>"; };
  854. FB9B3C11102965A6E460965A3F603608 /* PCSRoundButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSRoundButton.m; sourceTree = "<group>"; };
  855. FC6AACC39400CB1BF59CC968D6C57827 /* OperationNodeMultiple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMultiple.m; sourceTree = "<group>"; };
  856. FC980317F5359DFBBB40B36D55F53C24 /* LenzSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.release.xcconfig; sourceTree = "<group>"; };
  857. 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>"; };
  858. 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>"; };
  859. FD4B0C90EF3198FDCDE5FE43D134BA0C /* QuitMultipleModeAlertViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = QuitMultipleModeAlertViewController.h; sourceTree = "<group>"; };
  860. FDE14CA3B90A00CE932F87B872B5D127 /* photo.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = photo.hpp; path = opencv2.framework/Versions/A/Headers/photo.hpp; sourceTree = "<group>"; };
  861. FE379923F218CB636A04AF62A0EBDD84 /* highgui.hpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.h; name = highgui.hpp; path = opencv2.framework/Versions/A/Headers/highgui.hpp; sourceTree = "<group>"; };
  862. 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>"; };
  863. 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>"; };
  864. FFF6810117FEEF2711F6E9B5437B1204 /* YYTextParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextParser.m; path = YYText/String/YYTextParser.m; sourceTree = "<group>"; };
  865. /* End PBXFileReference section */
  866. /* Begin PBXFrameworksBuildPhase section */
  867. 1653F92B8F3C6BA33E414AE122ECB366 /* Frameworks */ = {
  868. isa = PBXFrameworksBuildPhase;
  869. buildActionMask = 2147483647;
  870. files = (
  871. );
  872. runOnlyForDeploymentPostprocessing = 0;
  873. };
  874. 38B42FA32BD8CC655758612D517E5638 /* Frameworks */ = {
  875. isa = PBXFrameworksBuildPhase;
  876. buildActionMask = 2147483647;
  877. files = (
  878. );
  879. runOnlyForDeploymentPostprocessing = 0;
  880. };
  881. 6DE85D5D450CA44D841CBEB1357F0291 /* Frameworks */ = {
  882. isa = PBXFrameworksBuildPhase;
  883. buildActionMask = 2147483647;
  884. files = (
  885. );
  886. runOnlyForDeploymentPostprocessing = 0;
  887. };
  888. 7CE294024B9AAD632A89EE2263CF3017 /* Frameworks */ = {
  889. isa = PBXFrameworksBuildPhase;
  890. buildActionMask = 2147483647;
  891. files = (
  892. );
  893. runOnlyForDeploymentPostprocessing = 0;
  894. };
  895. B63666AF83E239AD2BDE97A2BD2F993C /* Frameworks */ = {
  896. isa = PBXFrameworksBuildPhase;
  897. buildActionMask = 2147483647;
  898. files = (
  899. );
  900. runOnlyForDeploymentPostprocessing = 0;
  901. };
  902. F1A344A6607DB85CDF64DB32CADC0206 /* Frameworks */ = {
  903. isa = PBXFrameworksBuildPhase;
  904. buildActionMask = 2147483647;
  905. files = (
  906. );
  907. runOnlyForDeploymentPostprocessing = 0;
  908. };
  909. /* End PBXFrameworksBuildPhase section */
  910. /* Begin PBXGroup section */
  911. 020F31974C34C83C7CE7B9C5E9DBDE14 /* GestureHandler */ = {
  912. isa = PBXGroup;
  913. children = (
  914. 945A93D2704FC5124F096FD0C01E5BEB /* BaseViewTapGestureDelegate.h */,
  915. 5356D4198E190C400B23CF0C0124ABEE /* BaseViewTapGestureDelegate.m */,
  916. );
  917. path = GestureHandler;
  918. sourceTree = "<group>";
  919. };
  920. 0888EF0D1AFE9714EA5A95FBF3B3ACCC /* YYText */ = {
  921. isa = PBXGroup;
  922. children = (
  923. 3A9B8AF4ED2B2CE4E42F5526CB19ED56 /* NSAttributedString+YYText.h */,
  924. 3212932ADFECD0AA6DDCCE1AC7015693 /* NSAttributedString+YYText.m */,
  925. 8BB1391C0E3CE18BBA966201906336CA /* NSParagraphStyle+YYText.h */,
  926. F60CB6B0940620E867F47A43C000CEED /* NSParagraphStyle+YYText.m */,
  927. EE288070A3F0D2824F62FC92399210F8 /* UIPasteboard+YYText.h */,
  928. D18251050252D376DF0B0E328E1456FB /* UIPasteboard+YYText.m */,
  929. 90FD3E27D73EB13273099A8434852078 /* UIView+YYText.h */,
  930. 46E835F262CEBF51D5A0A8E520A1C160 /* UIView+YYText.m */,
  931. 5071D90FBED6EF5030E504AB525E29C3 /* YYLabel.h */,
  932. 211AC6AABF8746373905DC5A809CDE0C /* YYLabel.m */,
  933. 80AB600B687D3D1246EC08397708C05E /* YYText.h */,
  934. 6B9EF6A811033DF78BBBEC3D0D7B1A06 /* YYTextArchiver.h */,
  935. 80980F92B228E81481943ACDE0BA1488 /* YYTextArchiver.m */,
  936. 48282D0FCEB41CD6BE0B733B9E3276F2 /* YYTextAsyncLayer.h */,
  937. 1D265818019F4C0A249894FC32A0538E /* YYTextAsyncLayer.m */,
  938. 5602D5A50654D2411340C83206CA742E /* YYTextAttribute.h */,
  939. D261C8FD88EAB785CE5C9C275FCEC5A3 /* YYTextAttribute.m */,
  940. 4B83909B01724B76CD2AAC540FBDDF96 /* YYTextContainerView.h */,
  941. B556EF7B503F64AD5CEC85E2A13C5007 /* YYTextContainerView.m */,
  942. D7209ABED45520DBB15093688385103A /* YYTextDebugOption.h */,
  943. 928F19E4450531B0C3B2A304FFBAD967 /* YYTextDebugOption.m */,
  944. D113E44A4699A41E403B4A497E44F2A4 /* YYTextEffectWindow.h */,
  945. 5F8345A474C4286A6A94325A1C7628EE /* YYTextEffectWindow.m */,
  946. 1B11EAD869D170766C139AAB767FE589 /* YYTextInput.h */,
  947. 5139E1B09F2B5848CCD436B04764720B /* YYTextInput.m */,
  948. DDF9CEB1C61C7F8A5B54BD4A7C592B8E /* YYTextKeyboardManager.h */,
  949. D300D3849C0E80A0B48827AFFEA12087 /* YYTextKeyboardManager.m */,
  950. A0134B7DFC892F7D8942843B702EECBF /* YYTextLayout.h */,
  951. 58A56A8842D5A1FEE1A038D18A8C697A /* YYTextLayout.m */,
  952. BBE688CB6C22990A9E1CA752BB6AC77F /* YYTextLine.h */,
  953. 618CA788C56DE22C036E596FBE111E14 /* YYTextLine.m */,
  954. 7608FDCE402048449721AFAC227E4052 /* YYTextMagnifier.h */,
  955. 798329F7930D5E2D0BAF2A4392ECD383 /* YYTextMagnifier.m */,
  956. C7529CDD561B76983A08A7CDB558093D /* YYTextParser.h */,
  957. FFF6810117FEEF2711F6E9B5437B1204 /* YYTextParser.m */,
  958. ECAF7D0AC12DB31F7DA4E118E9B84F30 /* YYTextRubyAnnotation.h */,
  959. 088D76EF02787F533E77623067B6EE35 /* YYTextRubyAnnotation.m */,
  960. 2CCFC8CF5DE6FD893159815293F71BD5 /* YYTextRunDelegate.h */,
  961. 88FAFB718DB7E66A1777F7176F4268AF /* YYTextRunDelegate.m */,
  962. B9AA5E4741A4BEDAF6A49F8F9C0186BA /* YYTextSelectionView.h */,
  963. 45C026261DAF6B7FCAAC6266495F4C9E /* YYTextSelectionView.m */,
  964. 513086AE9B8D8684A33900083C458971 /* YYTextTransaction.h */,
  965. D8598BA55A6B943918E5F4A3580A8F57 /* YYTextTransaction.m */,
  966. 7AF0C9EDC9FACDAE37FC3FA2964122BD /* YYTextUtilities.h */,
  967. 6DD7F686389F37BC86D818BBE03C501E /* YYTextUtilities.m */,
  968. B5C2487CD193E3829F0F4233A6CCB0DC /* YYTextView.h */,
  969. C3D1B99A2AB26B52A0577F0603D10F4D /* YYTextView.m */,
  970. 088CC7B10130F424D2F0FB6E51DDEB48 /* YYTextWeakProxy.h */,
  971. F0091361036E037214A58062DD16AFF7 /* YYTextWeakProxy.m */,
  972. 8F47308E62B7B139E1B38ED2DFBA8AD6 /* Support Files */,
  973. );
  974. path = YYText;
  975. sourceTree = "<group>";
  976. };
  977. 0DEBB0179A0EE249DF6CDFE0E51FC325 /* PanoramaOrientaionView */ = {
  978. isa = PBXGroup;
  979. children = (
  980. 3C656E596AEEAD88C7CF6F16C1D1F431 /* PanoramaOrientationView.h */,
  981. 0B658456B1B2984F39BB79AE0C29A7BC /* PanoramaOrientationView.m */,
  982. );
  983. path = PanoramaOrientaionView;
  984. sourceTree = "<group>";
  985. };
  986. 0E9ECDF1010EFDC97B119CD20C5948A5 /* UI */ = {
  987. isa = PBXGroup;
  988. children = (
  989. 2955D10029E5126B00304514 /* PCSAutherView.h */,
  990. 2955D10129E5126B00304514 /* PCSAutherView.m */,
  991. 6F249E1100744D6BACF4222EC15E8C25 /* PCSThemeColorManager.h */,
  992. 8BED18EC37FF6BB406B8A328F952809E /* PCSThemeColorManager.m */,
  993. 2330847AEB56748182D67A8683573C01 /* Button */,
  994. 4026954C9A87E20E48003C374DE3525D /* color */,
  995. 946ED1D95711E0FD2A8DDA4C6A68D915 /* Label */,
  996. 1FA5F150A24ECDB6019F0E5BDAB0E717 /* ModeListView */,
  997. 5A1D4D78EDD31A7977D81B3A1FEDF21C /* PanoramaGuideView */,
  998. 0DEBB0179A0EE249DF6CDFE0E51FC325 /* PanoramaOrientaionView */,
  999. F4CB69216E852E5BE1E86B0CEBF1C694 /* Transition */,
  1000. 19CEE5653968049C3E8561993E3513A6 /* UIView+tool */,
  1001. );
  1002. path = UI;
  1003. sourceTree = "<group>";
  1004. };
  1005. 19CEE5653968049C3E8561993E3513A6 /* UIView+tool */ = {
  1006. isa = PBXGroup;
  1007. children = (
  1008. 2FAC40062851544DC5A19BEAA745F82F /* UIImage+name.h */,
  1009. 813CEAF8C0694E102EF96B7F0BD0F555 /* UIImage+name.m */,
  1010. 5E4B266BD585D4F5133D6E588A82DA70 /* UIView+JKAdd.h */,
  1011. 9D3326A3007D874205B40893EA3CFE62 /* UIView+JKAdd.m */,
  1012. );
  1013. path = "UIView+tool";
  1014. sourceTree = "<group>";
  1015. };
  1016. 1FA5F150A24ECDB6019F0E5BDAB0E717 /* ModeListView */ = {
  1017. isa = PBXGroup;
  1018. children = (
  1019. 5B1001037DEC018BCD5F7ADB9D38AFB5 /* PCSModeList.h */,
  1020. 97B43859FBFAFDCFDF6436E952BAFDB3 /* PCSModeList.m */,
  1021. );
  1022. path = ModeListView;
  1023. sourceTree = "<group>";
  1024. };
  1025. 2330847AEB56748182D67A8683573C01 /* Button */ = {
  1026. isa = PBXGroup;
  1027. children = (
  1028. 66CD11C01CE0B1F5460D070127494577 /* PCSButton.h */,
  1029. 80233A2CD4A8B084D120801BA43798F4 /* PCSButton.m */,
  1030. 4B436BDACAA3B3BEC13A3EC3179AC1E3 /* PCSRoundButton.h */,
  1031. FB9B3C11102965A6E460965A3F603608 /* PCSRoundButton.m */,
  1032. 7D660DACAFE1FE48CFD4EAD7E90D9ABC /* VerticalButton.h */,
  1033. F974FA918443DCB35A0B7EE08207B908 /* VerticalButton.m */,
  1034. );
  1035. path = Button;
  1036. sourceTree = "<group>";
  1037. };
  1038. 28FED511CE3A71B36616F6CF373C1E11 /* OperationNode */ = {
  1039. isa = PBXGroup;
  1040. children = (
  1041. B5519972391B27A2FF0BBE81EF60C27B /* OperationNodeAIPanorama.h */,
  1042. 82FE5BA64CC88E28E8D9DE4C5A4B17A3 /* OperationNodeAIPanorama.m */,
  1043. 07C8D911330ED9F9288765DCC2CDC5CC /* OperationNodeMovie.h */,
  1044. 518B0C813AB5B652B34DFAE64AD3A7D8 /* OperationNodeMovie.m */,
  1045. 341487D2B454FC2C1164894570EF1099 /* OperationNodeMultiple.h */,
  1046. FC6AACC39400CB1BF59CC968D6C57827 /* OperationNodeMultiple.m */,
  1047. EF49DB53D5B5754545C5C036453ABB76 /* OperationNodePanorama.h */,
  1048. 564A29FF535E410732D3A5728BE51A41 /* OperationNodePanorama.m */,
  1049. D988855D6139CFDCDA1967D6EBC102DA /* OperationNodeProtocol.h */,
  1050. 3747C05859F2B17BBFD65FB58F922D88 /* OperationNodeSingle.h */,
  1051. EE6CA2393154AFA4308498FC23B6EADD /* OperationNodeSingle.m */,
  1052. 528F6E7C75647AB494E0848A29609C44 /* OperationNodeVideoBase.h */,
  1053. B4D25A57720FED5D490B8329026D9542 /* OperationNodeVideoBase.m */,
  1054. C0C275FD48BA9BAC5B3CE5349CED3412 /* PCSMotionManager */,
  1055. );
  1056. path = OperationNode;
  1057. sourceTree = "<group>";
  1058. };
  1059. 2AADFA81D9F51B63E0374EA73C4913A3 /* Renderer */ = {
  1060. isa = PBXGroup;
  1061. children = (
  1062. 2DC9098915DC19838197C1EBB975198D /* CameraTextureRenderPass.h */,
  1063. 6B12E2C053D854C65108D5F9EA7DCA93 /* CameraTextureRenderPass.m */,
  1064. B315AC7DD4C969A0E9AAB9244C3B3E8E /* Renderer.h */,
  1065. D8EB35B2380C806D37146184BA831DD3 /* Renderer.m */,
  1066. );
  1067. path = Renderer;
  1068. sourceTree = "<group>";
  1069. };
  1070. 2FF88AEE3089DB4B555ABBD232DEBA23 /* MoviePlayerViewController */ = {
  1071. isa = PBXGroup;
  1072. children = (
  1073. 10EEE0F0023FF9FAEF51DA382DF5A400 /* MoviePlayerViewController.h */,
  1074. A3FC769F1E5DE4CC64C4DF481839D065 /* MoviePlayerViewController.m */,
  1075. );
  1076. path = MoviePlayerViewController;
  1077. sourceTree = "<group>";
  1078. };
  1079. 303CFE644CC59869846DC9A69AA5E0A4 /* PCSBaseViewController */ = {
  1080. isa = PBXGroup;
  1081. children = (
  1082. 12E46D974EE5BBAAF397E8E6E8B5F10E /* PCSBaseViewController.h */,
  1083. C85B7AF2317FFF862B75185D0AC0EEBE /* PCSBaseViewController.m */,
  1084. 2CD696EDA1F0D8ED0A3A4457C8C898C0 /* PCSPreviewViewController.h */,
  1085. 6CDD371E99332E22FBD8D51F8409095B /* PCSPreviewViewController.m */,
  1086. 020F31974C34C83C7CE7B9C5E9DBDE14 /* GestureHandler */,
  1087. );
  1088. path = PCSBaseViewController;
  1089. sourceTree = "<group>";
  1090. };
  1091. 304545218894F13A3505CDAAC32A94DE /* Frameworks */ = {
  1092. isa = PBXGroup;
  1093. children = (
  1094. 804CC49D71F590C1DA6D21ABBDA4D01D /* LenzStitchSDK.framework */,
  1095. B8CCB96205C1411EE87A23F83553279A /* LenzTensorFlowSDK.framework */,
  1096. );
  1097. name = Frameworks;
  1098. sourceTree = "<group>";
  1099. };
  1100. 3E7F2165335CAF3865D9FBDA1D770CF6 /* SVProgressHUD */ = {
  1101. isa = PBXGroup;
  1102. children = (
  1103. 8A171F24B8E17DEE3264D323615C52E8 /* SVIndefiniteAnimatedView.h */,
  1104. 87915C9C50FDE9906265DF4122AB7E1F /* SVIndefiniteAnimatedView.m */,
  1105. 6127F5AECD4FEB53E4D5751D3D39426B /* SVProgressAnimatedView.h */,
  1106. 42A26A56F9F80ECD3F646B2B727370C7 /* SVProgressAnimatedView.m */,
  1107. B88175A0D217891D9AE0F5A88BC82630 /* SVProgressHUD.h */,
  1108. DD5004B676A5C04A78B0C779EC6ACDDA /* SVProgressHUD.m */,
  1109. 95C514DF69105C042F1AE2ABC91803AF /* SVRadialGradientLayer.h */,
  1110. DF49707D0225F15883F4B82A11B0581D /* SVRadialGradientLayer.m */,
  1111. A8CAE5AEA0F4BC141EF8BF5692057E13 /* Resources */,
  1112. 578582C15A1258A86F99A3E149B47BC0 /* Support Files */,
  1113. );
  1114. path = SVProgressHUD;
  1115. sourceTree = "<group>";
  1116. };
  1117. 4026954C9A87E20E48003C374DE3525D /* color */ = {
  1118. isa = PBXGroup;
  1119. children = (
  1120. 70286A4FEC98F83D0036EEDE95BC6F4E /* UIColor+JKAdd.h */,
  1121. 24C466DCD5D26F8F1A95AFE5E7A10616 /* UIColor+JKAdd.m */,
  1122. );
  1123. path = color;
  1124. sourceTree = "<group>";
  1125. };
  1126. 4A29E9FBFDB48F235DB25519F567CE6D /* DB */ = {
  1127. isa = PBXGroup;
  1128. children = (
  1129. 943CE9CC2B7AE015731778F1B82F8007 /* DBManager.h */,
  1130. E0C667632E9A4E34CD3D6D97902BB116 /* DBManager.m */,
  1131. 1B59A7FC6AD30E9F5A7DCE730EAB7C76 /* LenzDataManager.h */,
  1132. 99925C528BCDAEDA82E6BE0F19F34EBA /* LenzDataManager.m */,
  1133. BD5012888E163CD600AA02A99C5E8BE0 /* DBModels */,
  1134. );
  1135. path = DB;
  1136. sourceTree = "<group>";
  1137. };
  1138. 4EB83484C73C604C72485C0A68680C1B /* TensorFlow */ = {
  1139. isa = PBXGroup;
  1140. children = (
  1141. 8F4CBA73D909FAFBA52B0D5E1066F4E3 /* TensorFlowWrapper.h */,
  1142. 8905E06243ADA18E17E2B2D83FE17D91 /* TensorFlowWrapper.m */,
  1143. );
  1144. path = TensorFlow;
  1145. sourceTree = "<group>";
  1146. };
  1147. 50A24F06C87252C965DB1B3C7B81DD26 /* CameraManager */ = {
  1148. isa = PBXGroup;
  1149. children = (
  1150. 9BBEE7B89746528F0C2DCFB43020260E /* CameraManager.h */,
  1151. 16DB214179794264262709A1A5BA8B2F /* CameraManager.m */,
  1152. );
  1153. path = CameraManager;
  1154. sourceTree = "<group>";
  1155. };
  1156. 53A5E1BC2D580BA7659F52508992F307 /* PhotoListController */ = {
  1157. isa = PBXGroup;
  1158. children = (
  1159. BABDE7052AB6F4E608354144AD8DE6F1 /* MovieListViewController.h */,
  1160. 09016F6A4D9FAB1147E99A047BF1D042 /* MovieListViewController.m */,
  1161. A976605A3EBE01C3354D9E6195DDB0E8 /* PhotoAlbumListViewController.h */,
  1162. 70D9509E43B2638ED3DDD8096D0067BB /* PhotoAlbumListViewController.m */,
  1163. 67CFD1C0BEF630FF3A2F44D4A5BF1E64 /* PhotoListViewController.h */,
  1164. 3B5862482717FFD0C8E2D6496D3D70E8 /* PhotoListViewController.m */,
  1165. A15751988390396E74688102A400EAD3 /* PreviewSingleViewController.h */,
  1166. 6D33C5808A112DC170446B14B628C3A2 /* PreviewSingleViewController.m */,
  1167. D2A129A0F73F0ADC986E1CB525B62E70 /* Cell */,
  1168. ED28808F8317651380EDB5DE87978946 /* CollectionViewCell */,
  1169. );
  1170. path = PhotoListController;
  1171. sourceTree = "<group>";
  1172. };
  1173. 578582C15A1258A86F99A3E149B47BC0 /* Support Files */ = {
  1174. isa = PBXGroup;
  1175. children = (
  1176. 4ACC936729FB445B6079C9113BFB0915 /* SVProgressHUD-dummy.m */,
  1177. 91ED9045D03A7EF57F7B42F85C86ACB9 /* SVProgressHUD-prefix.pch */,
  1178. E93BE0BAE030FB160EFB75E477B69B89 /* SVProgressHUD.debug.xcconfig */,
  1179. 507A2504392C0567854778AE4B6C4D39 /* SVProgressHUD.release.xcconfig */,
  1180. );
  1181. name = "Support Files";
  1182. path = "../Target Support Files/SVProgressHUD";
  1183. sourceTree = "<group>";
  1184. };
  1185. 5A1D4D78EDD31A7977D81B3A1FEDF21C /* PanoramaGuideView */ = {
  1186. isa = PBXGroup;
  1187. children = (
  1188. AC2E3E7E3794C6BE58DFE72E2B8B0363 /* PanoramaGuideView.h */,
  1189. 8D4020EFF5D912EE82E03D562C9B5A45 /* PanoramaGuideView.m */,
  1190. );
  1191. path = PanoramaGuideView;
  1192. sourceTree = "<group>";
  1193. };
  1194. 5DC9D624FE88AFD994E09F4D5BAA5A61 /* Alert */ = {
  1195. isa = PBXGroup;
  1196. children = (
  1197. 4C423B22136CAB788F9B5B427613156C /* AlertView.h */,
  1198. 2FD8AA25B7A41DFEE38F199AC8F28178 /* AlertView.m */,
  1199. FD4B0C90EF3198FDCDE5FE43D134BA0C /* QuitMultipleModeAlertViewController.h */,
  1200. F7D9819B5149B23177924CF7F309F765 /* QuitMultipleModeAlertViewController.m */,
  1201. 6CEE913F5B1E591BC40A0FD8D95D001F /* QuitMultipleModeAlertViewController.xib */,
  1202. );
  1203. path = Alert;
  1204. sourceTree = "<group>";
  1205. };
  1206. 62516359DE02D61F5A6462F82F17C93B /* Pod */ = {
  1207. isa = PBXGroup;
  1208. children = (
  1209. 88176509FCAB6B36F316AC04B84446BE /* LenzSDK.podspec */,
  1210. );
  1211. name = Pod;
  1212. sourceTree = "<group>";
  1213. };
  1214. 7660FE044DD027A8E2A4E2DF4F450CDE /* inner */ = {
  1215. isa = PBXGroup;
  1216. children = (
  1217. 8F13257ED383441DBB46890EC97FBA53 /* cpp-headers.h */,
  1218. A9F5B1F945F4C5B0A7018A0A2387B101 /* cpp-headers.mm */,
  1219. 2D245B027BF5A3E65FB560D34D469B0D /* LenzHeader.h */,
  1220. 1186B356C442E84D3503F4FD2221FE2E /* Localizable.strings */,
  1221. F33E64BDBD3C7814437202B8508BBFCD /* PCSSessionWrapper.h */,
  1222. EAB055653E760A3FD13BF5BB12FFA28D /* PCSSessionWrapper.m */,
  1223. E9291F041450ACC675D8A947818D5AEE /* PCSTools.h */,
  1224. 296E0AAD4A2D8A00C7F05EFE783BD524 /* PCSTools.m */,
  1225. 50C12594C6FDE1C4E16933A167A9E0CF /* SDKParameters.m */,
  1226. D6CB9977AF26F326E5904EDE6AD4FAF6 /* VC.storyboard */,
  1227. 5DC9D624FE88AFD994E09F4D5BAA5A61 /* Alert */,
  1228. 50A24F06C87252C965DB1B3C7B81DD26 /* CameraManager */,
  1229. 4A29E9FBFDB48F235DB25519F567CE6D /* DB */,
  1230. BC904EBFF7DC29FCBEEB86C294E3ECE0 /* Exts */,
  1231. 9D1A276DED0347E822C4990E51AD5D5F /* LRU */,
  1232. 2FF88AEE3089DB4B555ABBD232DEBA23 /* MoviePlayerViewController */,
  1233. 28FED511CE3A71B36616F6CF373C1E11 /* OperationNode */,
  1234. 303CFE644CC59869846DC9A69AA5E0A4 /* PCSBaseViewController */,
  1235. 53A5E1BC2D580BA7659F52508992F307 /* PhotoListController */,
  1236. 2AADFA81D9F51B63E0374EA73C4913A3 /* Renderer */,
  1237. 4EB83484C73C604C72485C0A68680C1B /* TensorFlow */,
  1238. 0E9ECDF1010EFDC97B119CD20C5948A5 /* UI */,
  1239. );
  1240. name = inner;
  1241. path = LenzCameraNativeModuleForRN/Classes/inner;
  1242. sourceTree = "<group>";
  1243. };
  1244. 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */ = {
  1245. isa = PBXGroup;
  1246. children = (
  1247. CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */,
  1248. CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */,
  1249. 1FFED36A657123030ABB700256D73F15 /* Masonry */,
  1250. 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */,
  1251. E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */,
  1252. 71762A728913EB440C97D3616D291AF3 /* YYText */,
  1253. );
  1254. name = Products;
  1255. sourceTree = "<group>";
  1256. };
  1257. 782C6E3B0D79B2D499DC6ECF24FCEE7C /* headers */ = {
  1258. isa = PBXGroup;
  1259. children = (
  1260. AD478DA4425DB3DE0896700EAA4E138A /* LenzCameraNativeModuleForRN.h */,
  1261. CB0EBA6AC7D23639484E03DB32EA18D6 /* LenzCameraSDK.h */,
  1262. CFB95D9EF4BA34266DEE96A5088A1D0E /* LenzCameraSDK.m */,
  1263. D2F64A5CD4E2F704B26155E46C9A03FF /* LenzSDKConstant.h */,
  1264. 6B418D2DD7FF80A74980679E76F735BB /* SDKParameters.h */,
  1265. );
  1266. name = headers;
  1267. path = LenzCameraNativeModuleForRN/Classes/headers;
  1268. sourceTree = "<group>";
  1269. };
  1270. 78E3D5CA530FE0BBE26EF4F634B54B85 /* Support Files */ = {
  1271. isa = PBXGroup;
  1272. children = (
  1273. 70ACE1B9788ABB4F18A6A434F4DFB523 /* OpenCV2.debug.xcconfig */,
  1274. 0AE4E7473E40F2E5F0F54290ED44474F /* OpenCV2.release.xcconfig */,
  1275. );
  1276. name = "Support Files";
  1277. path = "../Target Support Files/OpenCV2";
  1278. sourceTree = "<group>";
  1279. };
  1280. 8F47308E62B7B139E1B38ED2DFBA8AD6 /* Support Files */ = {
  1281. isa = PBXGroup;
  1282. children = (
  1283. DBFE967524F3F12E190B1415022D9825 /* YYText-dummy.m */,
  1284. DED26C99B29D2AA1A69E9862863A59E1 /* YYText-prefix.pch */,
  1285. 671C8641F5DA39B2C758B30203E48E89 /* YYText.debug.xcconfig */,
  1286. 9C5747FD601D91795F596AFF32D6A13B /* YYText.release.xcconfig */,
  1287. );
  1288. name = "Support Files";
  1289. path = "../Target Support Files/YYText";
  1290. sourceTree = "<group>";
  1291. };
  1292. 946ED1D95711E0FD2A8DDA4C6A68D915 /* Label */ = {
  1293. isa = PBXGroup;
  1294. children = (
  1295. 8AB4BD42A34CA091C813150550049E7C /* AlbumCounterLabel.h */,
  1296. EB02DDECF9AAD2D808C4F616A591448C /* AlbumCounterLabel.m */,
  1297. 7B8BFBAF8DEF654F040AAB63F5E35DAE /* PaddingLabel.h */,
  1298. ED44023185F9EB737206205EA5B9DBA5 /* PaddingLabel.m */,
  1299. 3A4051AB02912D5A48F9B1DB7AC62AE1 /* TimerLabel.h */,
  1300. 0270589F18C4470D0CBC3AE8D21164FB /* TimerLabel.m */,
  1301. );
  1302. path = Label;
  1303. sourceTree = "<group>";
  1304. };
  1305. 98343A210BF0B03D15CFF9F20CD5FB37 /* Pods */ = {
  1306. isa = PBXGroup;
  1307. children = (
  1308. D2592EDE18483CCAF01D6C08266F50CE /* Masonry */,
  1309. B9A885989CFC579D2D248951C5F7275C /* OpenCV2 */,
  1310. 3E7F2165335CAF3865D9FBDA1D770CF6 /* SVProgressHUD */,
  1311. ADF700408B80AE1F285F84047CF8EB4D /* TensorFlowLite */,
  1312. 0888EF0D1AFE9714EA5A95FBF3B3ACCC /* YYText */,
  1313. );
  1314. name = Pods;
  1315. sourceTree = "<group>";
  1316. };
  1317. 9D1A276DED0347E822C4990E51AD5D5F /* LRU */ = {
  1318. isa = PBXGroup;
  1319. children = (
  1320. 9E9A4CFE1E806FB27FF48B0A51F8FA29 /* ImageCacheLRU.h */,
  1321. 173B90865B6A5496A853C37DC81AD581 /* ImageCacheLRU.m */,
  1322. );
  1323. path = LRU;
  1324. sourceTree = "<group>";
  1325. };
  1326. A0263873495F78C514E01B9BD5A99205 /* LenzSDK */ = {
  1327. isa = PBXGroup;
  1328. children = (
  1329. 353865ECF8E88ADC9CC53960A6AD4F42 /* PCSSDF-prefix-header.h */,
  1330. C3BB902EB99A93BBB8A7B9D0C53E5B04 /* Assets */,
  1331. 304545218894F13A3505CDAAC32A94DE /* Frameworks */,
  1332. 782C6E3B0D79B2D499DC6ECF24FCEE7C /* headers */,
  1333. 7660FE044DD027A8E2A4E2DF4F450CDE /* inner */,
  1334. 62516359DE02D61F5A6462F82F17C93B /* Pod */,
  1335. E701C706BCC92A5A8DE0FDCF9D353767 /* Support Files */,
  1336. );
  1337. name = LenzSDK;
  1338. path = ../..;
  1339. sourceTree = "<group>";
  1340. };
  1341. A2C97AFCBD52302896DCE3AC8ABFBE5D /* Frameworks */ = {
  1342. isa = PBXGroup;
  1343. children = (
  1344. 9677A4464313D9121CA7676958ACD6E5 /* tensorflow_lite.framework */,
  1345. );
  1346. name = Frameworks;
  1347. sourceTree = "<group>";
  1348. };
  1349. A8CAE5AEA0F4BC141EF8BF5692057E13 /* Resources */ = {
  1350. isa = PBXGroup;
  1351. children = (
  1352. E4D6FA1C748F7EB6D29632BFFCC794D3 /* SVProgressHUD.bundle */,
  1353. );
  1354. name = Resources;
  1355. sourceTree = "<group>";
  1356. };
  1357. AA5651695ECA2551FE4073E9ED3512A9 /* Support Files */ = {
  1358. isa = PBXGroup;
  1359. children = (
  1360. 4B61B2FCBF8E1560AE0A58437888D0F9 /* Masonry-dummy.m */,
  1361. DBC17D3B0D94239D5407F7887BA601BB /* Masonry-prefix.pch */,
  1362. 2DD3922B8BE4E6C3BAE67ED432CF9885 /* Masonry.debug.xcconfig */,
  1363. 1F0E00D4EC7DDA5E0F50D373BFD7DBF9 /* Masonry.release.xcconfig */,
  1364. );
  1365. name = "Support Files";
  1366. path = "../Target Support Files/Masonry";
  1367. sourceTree = "<group>";
  1368. };
  1369. ADF700408B80AE1F285F84047CF8EB4D /* TensorFlowLite */ = {
  1370. isa = PBXGroup;
  1371. children = (
  1372. A2C97AFCBD52302896DCE3AC8ABFBE5D /* Frameworks */,
  1373. F75E56D91EC0B21B205D165DDB5F1B5B /* Support Files */,
  1374. );
  1375. path = TensorFlowLite;
  1376. sourceTree = "<group>";
  1377. };
  1378. B9A885989CFC579D2D248951C5F7275C /* OpenCV2 */ = {
  1379. isa = PBXGroup;
  1380. children = (
  1381. 05A47A26AE90A67542B409FED863B461 /* affine.hpp */,
  1382. 1E630D5EB5CF2EC9D607987BD79ECAF8 /* all_indices.h */,
  1383. 3F67E7EED800E754031EA8727660DE9F /* all_layers.hpp */,
  1384. 98CE16341D65A37B84956A181F61893D /* allocator.h */,
  1385. A0F78C039E9811DEF0C4B22E6766A756 /* allocator_stats.hpp */,
  1386. 10E8ABCF79BD99BBE04EA3646AAA225F /* allocator_stats.impl.hpp */,
  1387. 44380123F9EE4F5EF98E45FEED735536 /* any.h */,
  1388. F6DACAFCA0C694750431ECD1F3504E39 /* any.hpp */,
  1389. D79D193FAAA333126EFB4F0BCF0FA167 /* assert.hpp */,
  1390. EF90D2733E9CE36A5D76484685FA72D9 /* async.hpp */,
  1391. 4CCE262AAF8560D058C87F8ED4C393EE /* async_promise.hpp */,
  1392. 28ECFDA64C4A2EC421FAF5FC2BA27142 /* autocalib.hpp */,
  1393. EC7CD36415A1EE1DDB8CE158873BA076 /* autotuned_index.h */,
  1394. 9C93448467AF0FC5C5C0671BA0DE53BB /* background_segm.hpp */,
  1395. 3BDA405C2F88BCBB1EA9FEFEC7653BD0 /* base.hpp */,
  1396. 35A625E4846AF05FAADC93AD3ED50064 /* bindings_utils.hpp */,
  1397. 817193C08726BD9D6E8E953D305D1130 /* blenders.hpp */,
  1398. C4665699F1207ABD176C6B9B97823A24 /* block.hpp */,
  1399. C1E56964CD994727A70527CD086D20EE /* border_interpolate.hpp */,
  1400. EEAA76DB65CAD2C944AB72AB41E5EE7B /* bufferpool.hpp */,
  1401. BE518FFFE908DC956869620F7540B0F9 /* calib3d.hpp */,
  1402. E67659E3BE433227B2F73E9C249BF5E0 /* calib3d.hpp */,
  1403. 481AA6A896FA27BEF3DF89FE1E1BD2DC /* calib3d_c.h */,
  1404. 75B7D03C3F6AD2377438E3E01DBD15A1 /* camera.hpp */,
  1405. D212961E3CF998D8217A818E3050C272 /* cap.hpp */,
  1406. E6AFE0D98F5A15AE2DD323C5C6ECE4A1 /* cap_ios.h */,
  1407. 5418B1F8C4F9318C93DBB87D85FA904D /* check.hpp */,
  1408. 1E55DF1E1567B4469F3A4C6F86BFB770 /* color.hpp */,
  1409. 48FE8ED54770D374D2F85AF0995815B4 /* color_detail.hpp */,
  1410. 99EAC841B5F0DE8BEF1FE49C0D15D8B5 /* common.hpp */,
  1411. F3636E694B618C2302F4A749C08BA14D /* compiler_hints.hpp */,
  1412. 0CCFF32221DFD12A850133665FAD2D11 /* composite_index.h */,
  1413. F36CB994324974A53205939D2FCCF77F /* config.h */,
  1414. C3CFA14268E50F17A24FFD98E2F119A5 /* constants_c.h */,
  1415. 39C5D4FD92B9169F910BD54B612734E8 /* constants_c.h */,
  1416. F59973CA6A1163F42F48C30484664273 /* constants_c.h */,
  1417. ECB4AFD6EC0159905D68508C413CC2DD /* constants_c.h */,
  1418. 0B5FA1FD5E0D53DA991F2CEA9CC25EF8 /* convert.hpp */,
  1419. EBD6364BF3A563DECCE3B1C6B4895782 /* core.hpp */,
  1420. 726F9A71E8E7373C88E225FDAFF94F43 /* core.hpp */,
  1421. F11C0A66697CF2CDD1CD4EFE6B9D9066 /* core.hpp */,
  1422. AC831389DCC6145F466A5C4844859B04 /* core.hpp */,
  1423. A199CBBB283705B1B1E1DFE6950EDA7C /* core.hpp */,
  1424. 50F8F94648B122F50E2F628E22FD3994 /* core.hpp */,
  1425. BD73058ABC1FEEB46944092BB2A88100 /* core.hpp */,
  1426. 15066538C9CE55CCB258E26025B979FB /* core.hpp */,
  1427. BEFE2A1249730741808D7FFAA5EFF758 /* core_c.h */,
  1428. 9899019ADC1FB685D4118D0718E0633F /* cuda.hpp */,
  1429. EDF412032B1F77159E7301C433944855 /* cuda.hpp */,
  1430. 0351474B7BF7C6FC5575FF9ADF06D86A /* cuda.inl.hpp */,
  1431. 3B058C3455AE3BB57881004E727D21B5 /* cuda_stream_accessor.hpp */,
  1432. 3E44F3E4290CD567610DAC9F45C5D5C1 /* cuda_types.hpp */,
  1433. 21A0FB8B4DE60C09AF93D9C6BD016931 /* cv_cpu_dispatch.h */,
  1434. 74EA6C6F28C49A24D747CFDE314FE330 /* cv_cpu_helper.h */,
  1435. F6E2D7549154D11D86D951ED2CB555F1 /* cvconfig.h */,
  1436. F7CBE5C7C6134E200EEFE7CE25709A03 /* cvdef.h */,
  1437. F0448F5CD5194E1D938300AC96197267 /* cvdefs.hpp */,
  1438. 436045CFDFDC0E250A0F1DD7CBCB1156 /* cvstd.hpp */,
  1439. 58F629A8AD44C581FDBBD8DCDEFF553E /* cvstd.inl.hpp */,
  1440. 61DA17B36402C9517BBE5BF96880858C /* cvstd_wrapper.hpp */,
  1441. 7E3429187AF93BC813CEE22D6155E815 /* datamov_utils.hpp */,
  1442. 9EFE421426409088E0EB26625771165B /* defines.h */,
  1443. 15D648B64B38A42641E36E6EBBEF005A /* detection_based_tracker.hpp */,
  1444. 34C30A9F02BFEFB974CE2BD19A932D9C /* dict.hpp */,
  1445. A718862A1B1B19BAA2465D13B88CF0E8 /* directx.hpp */,
  1446. D028A131DFCEFAB3AF9D917070910F8F /* dist.h */,
  1447. 35131FD2ED05FA8D8A6C784E3BD4BD19 /* dnn.hpp */,
  1448. F6A0DE9C046AD6D36E7A16F0E0189710 /* dnn.hpp */,
  1449. DA5BD7FFD283E1EB82F17A2FE082E951 /* dnn.inl.hpp */,
  1450. 6788C75CE77BB91F37962EF8CFC044A8 /* dummy.h */,
  1451. 0C86F1E27973CC9BB8FC5AAEBB3EF03D /* dynamic_bitset.h */,
  1452. BB2F83418C0C50EC2C90FECF526160DF /* dynamic_smem.hpp */,
  1453. 9FF6964B966F1248B2A6D97911737730 /* eigen.hpp */,
  1454. F14932DC855F2968F24BBF2F46809246 /* emulation.hpp */,
  1455. 103317BDA0F870667D6439FDE8C7E938 /* exception_ptr.hpp */,
  1456. 686810D956F1CE2C81306F2D77D3190E /* exports.hpp */,
  1457. C016EC766584EDC55EB394E35EC9DD40 /* exposure_compensate.hpp */,
  1458. 12300D1BFF3E3D721D9D7FFA89437B68 /* fast_math.hpp */,
  1459. F6C5DF7E88724A4663BD93A3067267A9 /* features2d.hpp */,
  1460. 374714964311622593B9D492C68BBDB5 /* features2d.hpp */,
  1461. 49440A3483B1BDF65FF91971D889E7DE /* filesystem.hpp */,
  1462. C26ECA886AED40AB6BE048ACEA3863FE /* filters.hpp */,
  1463. FB0584FC992FE38A106704E1D7B1F80B /* flann.hpp */,
  1464. 42760E920AD4D3A14BFBEED90C3EA76C /* flann.hpp */,
  1465. FF551BB244756B44BBA909AD6DDFA0D5 /* flann_base.hpp */,
  1466. 3CBB2BD0B982EF173F246957BE5CC360 /* funcattrib.hpp */,
  1467. 42C328200F0690C56E364FDD73752230 /* functional.hpp */,
  1468. 63461DE6FD2D71529A5BF0FD2BB26A33 /* gapi.hpp */,
  1469. 814677B9AC7AC0FD7AB189A97D417CEA /* garg.hpp */,
  1470. 528D31D147C7AE87DA1B059D1E547240 /* garray.hpp */,
  1471. 87FB9F6AA326948FF957CDBA9D45E100 /* gasync_context.hpp */,
  1472. E2C2465724CD85874DC1CBC5D5190A35 /* gcall.hpp */,
  1473. 8770346476564128E1D95CB54F75F259 /* gcgraph.hpp */,
  1474. 5CF5EB396EBD02DD86AB399DEA4E80FA /* gcommon.hpp */,
  1475. 366F129798E72746492C7FADD3532CED /* gcompiled.hpp */,
  1476. 3B16CA06D0B97E598725B65CB71FBB95 /* gcompiled_async.hpp */,
  1477. 00912CB6F3380F8736F373DBAE8FA6B1 /* gcompoundkernel.hpp */,
  1478. 35D84269593E08F6445313658DB6DB04 /* gcomputation.hpp */,
  1479. E618D46BBC90B64CA85E88D0C0FB2704 /* gcomputation_async.hpp */,
  1480. 6F93793A32A19535E981EE3E197C14A8 /* gcpukernel.hpp */,
  1481. 33293E9BA19D81017A5F0392631C32C8 /* general.h */,
  1482. 6FCCBC868E908636BC4DC26DFCCB73AC /* gfluidbuffer.hpp */,
  1483. 8A9D397A98B68E9C6F1E5FA17EE7FDF0 /* gfluidkernel.hpp */,
  1484. 5676CE3498BF37D86DEB1A2716A165B0 /* ggpukernel.hpp */,
  1485. 93284ED57311215B6CF5B7FFE4BC1EAF /* gkernel.hpp */,
  1486. 9E71193FBE9AF461922EBB18D9FEECD9 /* gmat.hpp */,
  1487. 6554F1AFA9070B5F367C54FA6ED414A3 /* gmetaarg.hpp */,
  1488. FCCF967D51CCFA58125B8406F73EEED5 /* goclkernel.hpp */,
  1489. 9BB74D8D5E596EA2BEDBDBECD4A25A7D /* gopaque.hpp */,
  1490. 4B605741B71EAB95088C2C250FC9876D /* gplaidmlkernel.hpp */,
  1491. D8056FFA2DD7767335E466254615571A /* gproto.hpp */,
  1492. 56A656A26215BA22326B0887766676E4 /* ground_truth.h */,
  1493. B330F958ABF1F7DA12048F8B62C9091B /* gscalar.hpp */,
  1494. 6CEB762647C061E734FD11ECD5DCDD81 /* gstreaming.hpp */,
  1495. B0EF2D0C37036265843073E48DD98C54 /* gtransform.hpp */,
  1496. E4522505269E00C38F1577DC70E63CD3 /* gtype_traits.hpp */,
  1497. F8CC79F52C7C4A4DEEDA9707AE215BB5 /* gtyped.hpp */,
  1498. 52F383E03E8A05773263617366665186 /* hal.hpp */,
  1499. 91350BD7CE2B79E68985176FF23998EF /* hal.hpp */,
  1500. E138D61F861F5196B62CC6D2F17553A0 /* hdf5.h */,
  1501. BD7EED3F52E1032AC910A9E16B4F611A /* heap.h */,
  1502. DE5A0206ABCD9BA57F5AFE5080E06AAB /* hierarchical_clustering_index.h */,
  1503. FE379923F218CB636A04AF62A0EBDD84 /* highgui.hpp */,
  1504. 8C9E1AB15AA2605F71CB4295E60D5F5B /* highgui.hpp */,
  1505. 7AF13B5C074766CBB721EAA1F9AE6C05 /* highgui_c.h */,
  1506. F037D0F04904A8EE14177C57507D80EB /* ie.hpp */,
  1507. 16CCE46985B1244C60C8BF8A276E3651 /* imgcodecs.hpp */,
  1508. CB2A62C8153944112A66474C51452439 /* imgcodecs.hpp */,
  1509. 35AB646420DB1798CBF8F5642171846F /* imgcodecs_c.h */,
  1510. FE73F6BC8C6A5634A88928AE62FBC198 /* imgproc.hpp */,
  1511. 38E9EE5C24609F4F6091CCDA1DE0B658 /* imgproc.hpp */,
  1512. 83A7F9C5B595A5CA3A8442245A96D9A8 /* imgproc.hpp */,
  1513. 2A892652B2C46866345E169D6F661933 /* imgproc.hpp */,
  1514. 01A780DB077A4A47F42BDC179AA41478 /* imgproc.hpp */,
  1515. AF5E8B51C4D20186FDD5CBC8B2A5EBDD /* imgproc.hpp */,
  1516. 3ED5A12E879A1EC2A5931370372C355F /* imgproc.hpp */,
  1517. 2C29C10553586CC809174CAF9DABD25D /* imgproc_c.h */,
  1518. 4742B0FF5DE13A610E7222DBCC0C55D6 /* index_testing.h */,
  1519. ED4F19203EAC96758D908259AB59D732 /* infer.hpp */,
  1520. 502D1B33CA92533E6A7CB40E255ABDE1 /* inference_engine.hpp */,
  1521. 790D1D52B16AC22E3A6F4C823CCE83EA /* instrumentation.hpp */,
  1522. D5985AF22B8E88E492976F08D972FD7E /* interface.h */,
  1523. E7A88A239056C1EA3C5E1005EF7E3428 /* interface.h */,
  1524. ED38B2EC6FB7109F65B45A10C3722011 /* interface.h */,
  1525. 60B5B2B307FC6408DC4D6D6B0351BA8D /* intrin.hpp */,
  1526. 3ECAF4D12EA721982BC888F626BC4A9C /* intrin_avx.hpp */,
  1527. 10A011BC26BDCBB5F9647BE315437C7F /* intrin_avx512.hpp */,
  1528. 9ADAC707073730233795FE46955C1D45 /* intrin_cpp.hpp */,
  1529. 016835B2CB0F997B18130818A55BF273 /* intrin_forward.hpp */,
  1530. 187E70EDAF9430D74631B4D0D8941B04 /* intrin_msa.hpp */,
  1531. 9F27C16288C79B3F70E10E117CC75C19 /* intrin_neon.hpp */,
  1532. 105074DF368CDD3C8F822A1667300763 /* intrin_sse.hpp */,
  1533. F87692F65E56DA66DC553881A17567C5 /* intrin_sse_em.hpp */,
  1534. DF544679131529C2627584DF33DC1F66 /* intrin_vsx.hpp */,
  1535. F7BA158CD1964D13E4F4BDDD8452B1AD /* intrin_wasm.hpp */,
  1536. AD175395CD4D3CAE091083E3431CC7D7 /* ios.h */,
  1537. DE2DF9D9180305349F5596B535308774 /* kdtree_index.h */,
  1538. 221ABB67735F9CADA80F4021AFFA2132 /* kdtree_single_index.h */,
  1539. 13C684D045B3B8191101E814A1AA04B9 /* kmeans_index.h */,
  1540. 08BFCD1C62FCD4506F9DA013F88C7848 /* layer.hpp */,
  1541. D9650143799BB7765F9ED3D122C5F53A /* layer.details.hpp */,
  1542. 2A4C82A7E53516C57C23D930064D55FA /* limits.hpp */,
  1543. 437E6AEE76E905A48D18ABD0AE3E4099 /* linear_index.h */,
  1544. 1889889547A7F4A6AAE37D7FC2436EBD /* logger.h */,
  1545. 9A23AB8E954B804243582F168505BC3F /* logger.hpp */,
  1546. 28F972AC7A75FA6A834F1398B95B240A /* logger.defines.hpp */,
  1547. B76250D1967991E15334304359890E8A /* logtag.hpp */,
  1548. EADF096CCD7622A3B268A46625271309 /* lsh_index.h */,
  1549. 5D9E84BD2BBCCF9167A83F20D84E9FE3 /* lsh_table.h */,
  1550. 5F2499C56FDE4C72A5972393AF272E71 /* mat.hpp */,
  1551. 13A72F0706564BBBEC05CB216C11039C /* mat.hpp */,
  1552. DF883562FF0EC12C0E4E6C4387D0366E /* mat.inl.hpp */,
  1553. C7B316A3E513B590F2BB1A681DAFDF90 /* matchers.hpp */,
  1554. C9CACE7810F6476A24E522C8A228CDA4 /* matrix.h */,
  1555. 61DBD22E5B3C1897522B458A0D2B2302 /* matx.hpp */,
  1556. 29B829673F9D5AB2BD30E5304DB7EEA6 /* miniflann.hpp */,
  1557. 060E98502F6CA9163FD871330D9CD96D /* ml.hpp */,
  1558. 91BBA521B488F37F35827F34D8F49ACA /* ml.hpp */,
  1559. A172E3F1F28CA8F762FCB88A2CD06EA5 /* ml.inl.hpp */,
  1560. B08AE4F8357BF45AF7A8FC37DC864E20 /* motion_estimators.hpp */,
  1561. 07F2A216767C8D159754726A2A81D675 /* msa_macros.h */,
  1562. ED0501F07C0855EF9A44458701515C57 /* neon_utils.hpp */,
  1563. 0BB309B43F5FCD98B7DDFF51BF91A966 /* nn_index.h */,
  1564. BB663C341E3A7C3D059BF8FA81EB8EC1 /* objdetect.hpp */,
  1565. 19B40C19F1226825A99FAFB90C461179 /* objdetect.hpp */,
  1566. A39DBDDDFF175D6DB5DE1C978EF72BC4 /* object_factory.h */,
  1567. C6AFDFDB3B2500E6F160EC3678234DF0 /* ocl.hpp */,
  1568. E887D7703970DCC7DF001C9AC8B89F33 /* ocl_defs.hpp */,
  1569. 6D5B65C6116E4E34FFED89E3FF2A7F0E /* ocl_genbase.hpp */,
  1570. 2224DBA15D27B944A3AB7B5B77309434 /* opencl_clamdblas.hpp */,
  1571. 75E7F04302018DAFA9D1A6046A1610A5 /* opencl_clamdblas.hpp */,
  1572. 106F4EABCF29A7E8C231476B88510999 /* opencl_clamdfft.hpp */,
  1573. 2B7D9038602BFB625E3B27BDD9183E2C /* opencl_clamdfft.hpp */,
  1574. B9E10E41D1765BF2A952F34675CFEB8E /* opencl_core.hpp */,
  1575. CBB4B5116A4FF8B9FE4CFA95D75CF6DE /* opencl_core.hpp */,
  1576. D2170F14599400B497EE906413E47464 /* opencl_core_wrappers.hpp */,
  1577. 5669433C89ABD32ADAE50F9067D258AE /* opencl_core_wrappers.hpp */,
  1578. CF59B26AE1E6890008624145EC59E6F5 /* opencl_gl.hpp */,
  1579. 8C225940EE69D7DEF21626FDB604BB18 /* opencl_gl.hpp */,
  1580. 7C76B84B6CAE7F2A7249CE02191B4D39 /* opencl_gl_wrappers.hpp */,
  1581. 355EAE8E92CDE12FDC04AC24F6E5C7FC /* opencl_gl_wrappers.hpp */,
  1582. 9CFC1E8A4E3A321EE1F437991322D520 /* opencl_info.hpp */,
  1583. ABC22E28433BB89070EB7E08AB010222 /* opencl_svm.hpp */,
  1584. 98A9357586FADCBD80343548005D4EA7 /* opencl_svm_20.hpp */,
  1585. 8305E651A435A489ACF54DBA847EC7FC /* opencl_svm_definitions.hpp */,
  1586. 1D24FBCB23C1AAE6939B6A8FD7BCEE46 /* opencl_svm_hsa_extension.hpp */,
  1587. 73F836811E383C73C37E727FB119C47B /* opencv.hpp */,
  1588. 42015A3BF72FFC1D808FDCDCD641F7CC /* opencv_includes.hpp */,
  1589. 9FC5F44331640C08011CB985CFA19559 /* opencv_modules.hpp */,
  1590. 429256013C4DD9212877A5391BB0A3FA /* opengl.hpp */,
  1591. 7EF45D86E345243196F685B844912F6F /* operations.hpp */,
  1592. 2ECA98A2345101089E1662579080E586 /* operators.hpp */,
  1593. FCF4E794F0A37D3EF3A19709349605A0 /* optim.hpp */,
  1594. 1160A588884958BA14D83256FFE827EA /* optional.hpp */,
  1595. AC622FD6E3183B6889B29FEA20760367 /* ovx.hpp */,
  1596. 39BEA5B8C05CC6AD6AC576AB4E8DAA53 /* params.h */,
  1597. A165F021E066597829F2FB76B1335C44 /* persistence.hpp */,
  1598. FDE14CA3B90A00CE932F87B872B5D127 /* photo.hpp */,
  1599. 8C56C16991C5341747E75AF473E7A1AA /* photo.hpp */,
  1600. E40BC60E8D8849E9F2CBE2D4969C8743 /* plaidml.hpp */,
  1601. 79C8778FBF822AC259820E6C7314F0CB /* random.h */,
  1602. 96624A62FA7481915D2DC4A4D67B4314 /* reduce.hpp */,
  1603. B6A71BBE9EA1E9D012D6BDC37D088333 /* reduce.hpp */,
  1604. B945FFA193A6A8C5E524FB88BCE25110 /* reduce_key_val.hpp */,
  1605. C924B750B5DC3B31E4594E417CF3A55C /* registry.hpp */,
  1606. DB9F9F3985AEB210C7DEEB4EFBF7D7DE /* render.hpp */,
  1607. 1D102FF3F737033574436B4747A787DE /* render.hpp */,
  1608. 56017C0169A9FA3B54C4BEEB45C5CBD9 /* result_set.h */,
  1609. C54B2A2366E6F64BF4EACFC298DB7DC4 /* sampling.h */,
  1610. CB482258EAA5F2B676C2CF1214CCA699 /* saturate.hpp */,
  1611. 2099448B18D102E15ECD25C39D5D326B /* saturate.hpp */,
  1612. 500138008EC2CEE923C9096F6C89D647 /* saturate_cast.hpp */,
  1613. C95DEF97D83E9AC28AD968742BC30CA5 /* saving.h */,
  1614. 8BCB57459084C5B584BADA8587189F56 /* scalar.hpp */,
  1615. C462743524887128AA8CCDBC0FF0C73C /* scan.hpp */,
  1616. EAFF820C80398F13E84B113DFEBAA029 /* seam_finders.hpp */,
  1617. 1F5FE9E80B7F7F23B4585205FAD6F1AC /* shape_utils.hpp */,
  1618. 8138F3F15D61C3E3BEB88EB0FF9021E6 /* simd_functions.hpp */,
  1619. A0AED7ED98B6B61FD688F6E65C78CC11 /* simd_intrinsics.hpp */,
  1620. 98C1AF0F7DB8C93922AC41A7C44096EA /* simd_utils.impl.hpp */,
  1621. 082566197EF48E6F7A71E6334ADCAD6C /* simplex_downhill.h */,
  1622. 85E641D9B645B2C09962C944477705FB /* softfloat.hpp */,
  1623. 39A89EB028BA0D42AB7436A40F01B72F /* source.hpp */,
  1624. CBA4B3D16CA92D4444B7E3A6B8017B1E /* sse_utils.hpp */,
  1625. 6E02D156AF78AE77AACD53D87081BAEF /* stitching.hpp */,
  1626. 98DE643BA7638D88F1E1BFA95EB402D1 /* throw.hpp */,
  1627. EC218DC8FD477A027FE92708D07B8578 /* timelapsers.hpp */,
  1628. 23A54F8A83D9258C2C8870DB92717BF5 /* timer.h */,
  1629. 71BA47BD973926D7D4831F412959C342 /* tls.hpp */,
  1630. 380AB62A6B53682A270AD795541A47A5 /* trace.hpp */,
  1631. 38F5BAD6613EA2CA23DA573E9591B3A3 /* tracking.hpp */,
  1632. 1201FE7AD08CFBA3A2E4E37F61372E6F /* traits.hpp */,
  1633. 0856197302CEC1F919C5C338BD78CEE8 /* transform.hpp */,
  1634. AC582ED78678F09DA000975C330219FB /* transform_detail.hpp */,
  1635. EA186BD7831F857B8B44516DABF10502 /* type_traits.hpp */,
  1636. 95539590142A8E270823976510EBB555 /* type_traits_detail.hpp */,
  1637. C97CB484B194064FD265A8D03B64D8D0 /* types.hpp */,
  1638. 98826CE10FFBE3EF2D3FC49A3205BD02 /* types.hpp */,
  1639. 57D34A16F9D50B472939BF5B640BD3C0 /* types_c.h */,
  1640. F638E78D7185C4C6FCC293F6421AF35B /* types_c.h */,
  1641. DBCB356B9E9BE36292C2DE940C6CC91B /* util.hpp */,
  1642. D6BA7BFFAF8BEDC73C766DC03EA6FF46 /* util.hpp */,
  1643. A6F2DF7B3745DAFEA3B6544A9BF2C528 /* util_inl.hpp */,
  1644. C3F4639AF49CB9726051AFA6D50EEBC1 /* utility.hpp */,
  1645. B74A04800F249B0FF9F0C74CB4CD424F /* utility.hpp */,
  1646. 4F7139EF51E2179A638847803A3F5362 /* va_intel.hpp */,
  1647. 15A57DCBCE72C119F39D4358DEA252FA /* variant.hpp */,
  1648. 506DF75980870572F4E61E7732AD97A9 /* vec_distance.hpp */,
  1649. 8705DE23BAB237EB1302B77FF9B3DF38 /* vec_distance_detail.hpp */,
  1650. 69369E089F8E885B6C221B1E2273A681 /* vec_math.hpp */,
  1651. 5DE9210938E8C36F73748BEBA295CC53 /* vec_traits.hpp */,
  1652. 2ED480DA74C09C19BD2DC140F029FFAF /* version.hpp */,
  1653. 8120EC271D95CB10C91242A65A90E6FE /* version.hpp */,
  1654. A1F079FF6554029FB4F26EC28F5255A7 /* video.hpp */,
  1655. D8B20D602E73F8DD996A68D408DECF5B /* video.hpp */,
  1656. D13327B74EC3AB232A72CA60ED77163F /* videoio.hpp */,
  1657. 4197F3B05BD474A2CE2BB3BFD2CE8280 /* videoio.hpp */,
  1658. 117EFCF6E7B32E335C9B7CCFD7261E86 /* videoio_c.h */,
  1659. 5F65221BE93CB8EE2FEA24E40AC42A30 /* vsx_utils.hpp */,
  1660. CF7F875E9F2B8715633857519E741B4A /* warp.hpp */,
  1661. 5A83A51243C2D849883D9F1BCD9A4ECE /* warp_reduce.hpp */,
  1662. AC06D2948EA51D189BF32F25DA893136 /* warp_shuffle.hpp */,
  1663. DC555EADD27A4426A617B2150C51586C /* warpers.hpp */,
  1664. D645E54084D664DC389194A8F7DDD813 /* warpers.hpp */,
  1665. F52FBC8379F03FBC7892457EB8667932 /* warpers_inl.hpp */,
  1666. 79BE969CB25933490EED2D43C2D61656 /* world.hpp */,
  1667. EFF942BBE0F3DD7A22178A31416D2DDF /* Frameworks */,
  1668. 78E3D5CA530FE0BBE26EF4F634B54B85 /* Support Files */,
  1669. );
  1670. path = OpenCV2;
  1671. sourceTree = "<group>";
  1672. };
  1673. BC904EBFF7DC29FCBEEB86C294E3ECE0 /* Exts */ = {
  1674. isa = PBXGroup;
  1675. children = (
  1676. 4897CCF734748D33CD69777E4973C69A /* AVCapturePhotoOutput+VersionAdaptor.h */,
  1677. C3D412D67C159CA9F7E399E95E2D0AD0 /* AVCapturePhotoOutput+VersionAdaptor.m */,
  1678. 91579DA43E5DCE2B63663FAB64C69EF3 /* NSString+Localization.h */,
  1679. 9233F03217EE52DE54B723939D946CA9 /* NSString+Localization.m */,
  1680. 359265DD4F6A9D6D02481DC2330B4DF7 /* UIButton+Layout.h */,
  1681. 0561C7F44ADA7D8A61F33BC09AB9CB05 /* UIButton+Layout.m */,
  1682. 1CD46B6F9B531364668CE7368C934081 /* UIImage+ext.h */,
  1683. 9E3D8540C60144CED386A442155ED9CF /* UIImage+ext.m */,
  1684. );
  1685. path = Exts;
  1686. sourceTree = "<group>";
  1687. };
  1688. BD5012888E163CD600AA02A99C5E8BE0 /* DBModels */ = {
  1689. isa = PBXGroup;
  1690. children = (
  1691. 403FBB31E50BF7D8F0B08CC66A2EDCC6 /* LenzCachedResourceModel.h */,
  1692. D84C280CB71B838D2C2DE8305349F7F3 /* LenzCachedResourceModel.m */,
  1693. );
  1694. path = DBModels;
  1695. sourceTree = "<group>";
  1696. };
  1697. C0C275FD48BA9BAC5B3CE5349CED3412 /* PCSMotionManager */ = {
  1698. isa = PBXGroup;
  1699. children = (
  1700. 036CF813B01C669F91FB05F209C4069F /* PCSMotionManager.h */,
  1701. 1429441378D663A8079FAB74C47D421E /* PCSMotionManager.m */,
  1702. );
  1703. path = PCSMotionManager;
  1704. sourceTree = "<group>";
  1705. };
  1706. C3BB902EB99A93BBB8A7B9D0C53E5B04 /* Assets */ = {
  1707. isa = PBXGroup;
  1708. children = (
  1709. ACBCC52EFB48E66C9EF45EF550B878C2 /* assets.xcassets */,
  1710. 7B18E9434BD29D9BCC4A19B17A989C67 /* moire_mobilenetv2_79.tflite */,
  1711. );
  1712. name = Assets;
  1713. path = LenzCameraNativeModuleForRN/Assets;
  1714. sourceTree = "<group>";
  1715. };
  1716. CF1408CF629C7361332E53B88F7BD30C = {
  1717. isa = PBXGroup;
  1718. children = (
  1719. 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  1720. DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */,
  1721. D89477F20FB1DE18A04690586D7808C4 /* Frameworks */,
  1722. 98343A210BF0B03D15CFF9F20CD5FB37 /* Pods */,
  1723. 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */,
  1724. E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */,
  1725. );
  1726. sourceTree = "<group>";
  1727. };
  1728. D2592EDE18483CCAF01D6C08266F50CE /* Masonry */ = {
  1729. isa = PBXGroup;
  1730. children = (
  1731. BC674E2B3882A8B024EA11D3EDA96A05 /* MASCompositeConstraint.h */,
  1732. 2E170088911070D57FD1A2B1667B2358 /* MASCompositeConstraint.m */,
  1733. 6B102F3E8763449C6DA99024D84CC479 /* MASConstraint.h */,
  1734. 5C0EF01C047A7FEE68E5418B5310DDF5 /* MASConstraint.m */,
  1735. 227095F2E2705735D5DD170ACF8443CC /* MASConstraint+Private.h */,
  1736. 323E11B6F2B40B2A30076A06EFA4ADE9 /* MASConstraintMaker.h */,
  1737. B6152C74D04927B37768ECA5C413A39D /* MASConstraintMaker.m */,
  1738. CF96F2C7EC4B6437454D8220D5243A97 /* MASLayoutConstraint.h */,
  1739. 36385A4948651DCADD828F5EF6D7A860 /* MASLayoutConstraint.m */,
  1740. 2E7E70EE65C8B436ADCE623518B16FE6 /* Masonry.h */,
  1741. 7D7B0F9E76BFC703B6AE35CEAED63132 /* MASUtilities.h */,
  1742. B48AB8CF97AD45F50A994EA915B73369 /* MASViewAttribute.h */,
  1743. 35783455FD2B307819356A0F7317E3A2 /* MASViewAttribute.m */,
  1744. A473A64BA4823CEB1B77F1547BD26BBE /* MASViewConstraint.h */,
  1745. D1E565F5A1FAD79799DA4DD176AD4C23 /* MASViewConstraint.m */,
  1746. 7F4422F57F95BCAEE8E0D37ACA7839F1 /* NSArray+MASAdditions.h */,
  1747. 5582002E4734B8D4F2CF285ACDADD796 /* NSArray+MASAdditions.m */,
  1748. D148391102C9E7C3871EC94238BA859B /* NSArray+MASShorthandAdditions.h */,
  1749. 32EB214088A160CD9BBDD73798777B90 /* NSLayoutConstraint+MASDebugAdditions.h */,
  1750. 92B59450A36F461CAC82435BFD5079CE /* NSLayoutConstraint+MASDebugAdditions.m */,
  1751. E4C8EF7032A09396718DC47C5598B84B /* View+MASAdditions.h */,
  1752. 78A8D9791F0CBE7252EBEE929FC9ADBA /* View+MASAdditions.m */,
  1753. C66C450F27C4A5097C9E02DE7DCEF9D1 /* View+MASShorthandAdditions.h */,
  1754. E4CA823439A1050ECE966231061E1230 /* ViewController+MASAdditions.h */,
  1755. A682665B0F2F184E8E8A631EADACC029 /* ViewController+MASAdditions.m */,
  1756. AA5651695ECA2551FE4073E9ED3512A9 /* Support Files */,
  1757. );
  1758. path = Masonry;
  1759. sourceTree = "<group>";
  1760. };
  1761. D2A129A0F73F0ADC986E1CB525B62E70 /* Cell */ = {
  1762. isa = PBXGroup;
  1763. children = (
  1764. A279A6E1C9F0B403AA2A239D07587E2B /* CollectionViewPlayerCell.h */,
  1765. ECAF351E914D9B3F844880605E87E22E /* CollectionViewPlayerCell.m */,
  1766. D2A3CBDF329493CD8E47BFA2DC39C85D /* MovieListCellModel.h */,
  1767. AACE60EFC1A660CF10C691A6C1F191AB /* MovieListCellModel.m */,
  1768. 366D47B840FF3E1B5BE44A2C981C123C /* PhotoCollectionViewCell.h */,
  1769. 93E4628F0B1C2B9707F19BD2692D45F4 /* PhotoCollectionViewCell.m */,
  1770. 0C40785BF512D7C3EED3E9864F13A918 /* PhotoCollectionViewCell.xib */,
  1771. A4A786175AE33E5AE54203E6345C794B /* PhotoListCellModel.h */,
  1772. 69CBF88ABBBBC462CA5D1C449D145791 /* PhotoListCellModel.m */,
  1773. );
  1774. path = Cell;
  1775. sourceTree = "<group>";
  1776. };
  1777. D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = {
  1778. isa = PBXGroup;
  1779. children = (
  1780. );
  1781. name = Frameworks;
  1782. sourceTree = "<group>";
  1783. };
  1784. DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */ = {
  1785. isa = PBXGroup;
  1786. children = (
  1787. A0263873495F78C514E01B9BD5A99205 /* LenzSDK */,
  1788. );
  1789. name = "Development Pods";
  1790. sourceTree = "<group>";
  1791. };
  1792. E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */ = {
  1793. isa = PBXGroup;
  1794. children = (
  1795. FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */,
  1796. );
  1797. name = "Targets Support Files";
  1798. sourceTree = "<group>";
  1799. };
  1800. E701C706BCC92A5A8DE0FDCF9D353767 /* Support Files */ = {
  1801. isa = PBXGroup;
  1802. children = (
  1803. E0C448537CD7A8178AFE592DE1219E1B /* LenzSDK-dummy.m */,
  1804. 73E8F3F8F08C78922A11CA005EDCFDD7 /* LenzSDK-prefix.pch */,
  1805. F914F9872A221B8E8FE3944FF61E4B76 /* LenzSDK.debug.xcconfig */,
  1806. FC980317F5359DFBBB40B36D55F53C24 /* LenzSDK.release.xcconfig */,
  1807. F525E9FAE91A0EB612D852BA1CBD0B3B /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */,
  1808. );
  1809. name = "Support Files";
  1810. path = "Example/Pods/Target Support Files/LenzSDK";
  1811. sourceTree = "<group>";
  1812. };
  1813. ED28808F8317651380EDB5DE87978946 /* CollectionViewCell */ = {
  1814. isa = PBXGroup;
  1815. children = (
  1816. 8A7629584E7CE713C1F06C6C1C751E6F /* PhotoAlbumModel.h */,
  1817. A7FA1FD7A64BD7439EDE019F7FF831F4 /* PhotoAlbumModel.m */,
  1818. DF226FB1411E21FB949B7FBD9B0A2A2C /* PhotoCell.h */,
  1819. D3D72F49864D574ED2F4DE64A528B138 /* PhotoCell.m */,
  1820. D631405D079AA018794E5D9BAEE301F1 /* PhotoCell.xib */,
  1821. );
  1822. path = CollectionViewCell;
  1823. sourceTree = "<group>";
  1824. };
  1825. EFF942BBE0F3DD7A22178A31416D2DDF /* Frameworks */ = {
  1826. isa = PBXGroup;
  1827. children = (
  1828. 3E8029DD0FDBD5F2FCDAE26900F91574 /* opencv2.framework */,
  1829. );
  1830. name = Frameworks;
  1831. sourceTree = "<group>";
  1832. };
  1833. F4CB69216E852E5BE1E86B0CEBF1C694 /* Transition */ = {
  1834. isa = PBXGroup;
  1835. children = (
  1836. 18EE38B627F5098F5ACCD9BD7DC1A6A6 /* CustomModalViewTransition.h */,
  1837. E4DBE241924BDFED99EC4B2344074FB9 /* CustomModalViewTransition.m */,
  1838. );
  1839. path = Transition;
  1840. sourceTree = "<group>";
  1841. };
  1842. F75E56D91EC0B21B205D165DDB5F1B5B /* Support Files */ = {
  1843. isa = PBXGroup;
  1844. children = (
  1845. F83198B7D4D1070C156E523A120B7C5A /* TensorFlowLite.debug.xcconfig */,
  1846. 34D3161F77526AB76CF74AB041515EB8 /* TensorFlowLite.release.xcconfig */,
  1847. );
  1848. name = "Support Files";
  1849. path = "../Target Support Files/TensorFlowLite";
  1850. sourceTree = "<group>";
  1851. };
  1852. FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
  1853. isa = PBXGroup;
  1854. children = (
  1855. AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */,
  1856. 8B4DC4759B1098548FAA7403C6442854 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist */,
  1857. 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */,
  1858. 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */,
  1859. CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */,
  1860. F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */,
  1861. );
  1862. name = "Pods-LenzCameraNativeModuleForRN_Example";
  1863. path = "Target Support Files/Pods-LenzCameraNativeModuleForRN_Example";
  1864. sourceTree = "<group>";
  1865. };
  1866. /* End PBXGroup section */
  1867. /* Begin PBXHeadersBuildPhase section */
  1868. 10C30EEB37CFE10DE8D0163D8B3AF1F3 /* Headers */ = {
  1869. isa = PBXHeadersBuildPhase;
  1870. buildActionMask = 2147483647;
  1871. files = (
  1872. B84C067C3225D52FEFF2B1D0BFAE0DBC /* AlbumCounterLabel.h in Headers */,
  1873. 837A8E8C4E51F469F40B1DAE4A25C870 /* AlertView.h in Headers */,
  1874. 261227B03D25F8923276B9AC00382BF2 /* AVCapturePhotoOutput+VersionAdaptor.h in Headers */,
  1875. FDFBE77A5A1DFE64142A979D00C3758F /* BaseViewTapGestureDelegate.h in Headers */,
  1876. 5698FC591C39D66250A789F6109EF055 /* CameraManager.h in Headers */,
  1877. D25555E3D2BC1983C3F10A97C2D7F8D6 /* CameraTextureRenderPass.h in Headers */,
  1878. D6DA3EAE339B7778D6E4116EADE28EE9 /* CollectionViewPlayerCell.h in Headers */,
  1879. AE5415227EB32EC70A262266DF881995 /* cpp-headers.h in Headers */,
  1880. 394FFC703A5D160496EBF0FF31B06C95 /* CustomModalViewTransition.h in Headers */,
  1881. 148E409E3FE484F98B0FC48912F071A2 /* DBManager.h in Headers */,
  1882. DE62A5781F7C4C27DBC34E5C85193860 /* ImageCacheLRU.h in Headers */,
  1883. 0B424ECCF0861C6CB7479B9DEF7D9E2A /* LenzCachedResourceModel.h in Headers */,
  1884. B3B3DC810D95B1AF3062A7A4C1865B42 /* LenzCameraNativeModuleForRN.h in Headers */,
  1885. CA884A2FB671F3B1D1DF194CD072E1CF /* LenzCameraSDK.h in Headers */,
  1886. 7D5DA5994FF0B32A4EFF344C41A4C905 /* LenzDataManager.h in Headers */,
  1887. 793BCB55D35F6BBA202FC0BE8E4A2569 /* LenzHeader.h in Headers */,
  1888. B9246136CFBE2F8486A56E5D792C071F /* LenzSDKConstant.h in Headers */,
  1889. 9F4094427E3DE83DAE19210CD123F492 /* MovieListCellModel.h in Headers */,
  1890. F51BA7583EBD4B2CBD703E1A77767698 /* MovieListViewController.h in Headers */,
  1891. 537D372F20BC447BC8FD77DF3E683CC7 /* MoviePlayerViewController.h in Headers */,
  1892. 75850F8E0030510F520DD5C79A750307 /* NSString+Localization.h in Headers */,
  1893. C35576B0274E807265FF10C7EF8BDD04 /* OperationNodeAIPanorama.h in Headers */,
  1894. DC31EC9DCD16DDB506C51752571E66BB /* OperationNodeMovie.h in Headers */,
  1895. D1854A7CA6D5A7BC65484B5B8708B5DB /* OperationNodeMultiple.h in Headers */,
  1896. C8349F4FE1BE8B1C1D56587B5D34023E /* OperationNodePanorama.h in Headers */,
  1897. 7660327D2F549F18D5F2985E7A6989C2 /* OperationNodeProtocol.h in Headers */,
  1898. E7E5372F3D4891B5AFDCD49799590DCC /* OperationNodeSingle.h in Headers */,
  1899. 66A2C9A63B49B9AA3E8940682DCD5E5B /* OperationNodeVideoBase.h in Headers */,
  1900. E67367A5612D88DD3FBD3F419DB60B7F /* PaddingLabel.h in Headers */,
  1901. 0274785F8DA56A194A23E794DB556D6A /* PanoramaGuideView.h in Headers */,
  1902. 8E21D35BFE57461C5F9C6E0BA504B338 /* PanoramaOrientationView.h in Headers */,
  1903. D5A4F36ABF17BCC99A33EBBC0A4CDEB9 /* PCSBaseViewController.h in Headers */,
  1904. FD795DD08A2B8709572EAB977E95DFED /* PCSButton.h in Headers */,
  1905. 0FC1201915EE57C499240C27946217E7 /* PCSModeList.h in Headers */,
  1906. 9068713B84BBA11F5D266E90E39F929B /* PCSMotionManager.h in Headers */,
  1907. E45ABE874420598077883D66A1A32AE6 /* PCSPreviewViewController.h in Headers */,
  1908. 68D11EC4E87DD1E987BF3F24AB3EAC34 /* PCSRoundButton.h in Headers */,
  1909. 3FF2341E3641F61D3908B6C9AF045466 /* PCSSDF-prefix-header.h in Headers */,
  1910. 5E9F867FA590BD75F20B4B5AA64A5940 /* PCSSessionWrapper.h in Headers */,
  1911. 2955D10229E5126B00304514 /* PCSAutherView.h in Headers */,
  1912. 5B931F9784BE81FF50D2A6C5F5BB7ECB /* PCSThemeColorManager.h in Headers */,
  1913. DB12BA3166665DD0A05CE44D151F1CAD /* PCSTools.h in Headers */,
  1914. 46BEF10F4A3AB0DF8E7ABD90100CB00B /* PhotoAlbumListViewController.h in Headers */,
  1915. 8AF59E16A6968D27E6DC10EE325DBFD4 /* PhotoAlbumModel.h in Headers */,
  1916. E2265AAA8D5732834254B2225373744E /* PhotoCell.h in Headers */,
  1917. 057B5258CDD07278595F169BF1F6DFD4 /* PhotoCollectionViewCell.h in Headers */,
  1918. FD2E6B478AA250CEF0BBB056991D52D6 /* PhotoListCellModel.h in Headers */,
  1919. 3C7901770E13AF97357EAB80E849C235 /* PhotoListViewController.h in Headers */,
  1920. 9720B62D415EB4616AF3AF0382CC530E /* PreviewSingleViewController.h in Headers */,
  1921. 4F7945911D6DD7CFA19A92EF1D40FA78 /* QuitMultipleModeAlertViewController.h in Headers */,
  1922. 965DFE96C7B7939DDCE457A1E251731B /* Renderer.h in Headers */,
  1923. D8B30ACFC72C3247C553F5A5003BD189 /* SDKParameters.h in Headers */,
  1924. F58EBCCB1FBCE03BDA5AC996CEB3F91D /* TensorFlowWrapper.h in Headers */,
  1925. DFDC2EC26FE93D5D4BD8841D1A1864BF /* TimerLabel.h in Headers */,
  1926. 55F28088910D83F6C23BBD716329F1F5 /* UIButton+Layout.h in Headers */,
  1927. 3E8EF5E5F03C23E3BB972FCDC110B85B /* UIColor+JKAdd.h in Headers */,
  1928. CCD0407A85A7EEAD4B91B2F6FF9B5577 /* UIImage+ext.h in Headers */,
  1929. 60795258D5A8C1B2B4DBBB82D22BE5B7 /* UIImage+name.h in Headers */,
  1930. A76BC55C0D512B10829B5D625180FABC /* UIView+JKAdd.h in Headers */,
  1931. 11D58B61F68CD95A861A22BB9B897094 /* VerticalButton.h in Headers */,
  1932. );
  1933. runOnlyForDeploymentPostprocessing = 0;
  1934. };
  1935. 302FE4629A7E86AFE05899567B7473A6 /* Headers */ = {
  1936. isa = PBXHeadersBuildPhase;
  1937. buildActionMask = 2147483647;
  1938. files = (
  1939. CADE5209CA9E30CC4C6ECED44C59354A /* MASCompositeConstraint.h in Headers */,
  1940. 659FDAB4EDADD841B474EA0999E4F8C4 /* MASConstraint.h in Headers */,
  1941. A53E61FDF71657F72FB46647634A1176 /* MASConstraint+Private.h in Headers */,
  1942. 3C66AEDB38AF67017EA552B9A129CA3A /* MASConstraintMaker.h in Headers */,
  1943. FB1F7478CC3A061B73250AC3C8007D2B /* MASLayoutConstraint.h in Headers */,
  1944. 7CD17A14AB33914C9949BC9FF0F24DFF /* Masonry.h in Headers */,
  1945. 15890A6396F1000552211DB8AC1EA977 /* MASUtilities.h in Headers */,
  1946. 9D2A459748A24D26505CCEA15966AB0A /* MASViewAttribute.h in Headers */,
  1947. CCC5707F321773926AFFD51E23CED255 /* MASViewConstraint.h in Headers */,
  1948. 446E0D3FB9DBF3A9B573EF467B50E857 /* NSArray+MASAdditions.h in Headers */,
  1949. 3C84222B8D2A5E56ED421593D0DB3C4E /* NSArray+MASShorthandAdditions.h in Headers */,
  1950. B40F0D0B2A273F8265C618DDF8A6CB20 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */,
  1951. 061B03727504D40A13617C281B8DF476 /* View+MASAdditions.h in Headers */,
  1952. 5770E3AE0175C57ACE5A7DD0D663F7F0 /* View+MASShorthandAdditions.h in Headers */,
  1953. 8A13D22DC927A461982D123084B872BA /* ViewController+MASAdditions.h in Headers */,
  1954. );
  1955. runOnlyForDeploymentPostprocessing = 0;
  1956. };
  1957. 37CAA25F1DCDA1A968183CACBB8AD0F1 /* Headers */ = {
  1958. isa = PBXHeadersBuildPhase;
  1959. buildActionMask = 2147483647;
  1960. files = (
  1961. 33DC178FC90D26E22B2A4687C0093CA8 /* NSAttributedString+YYText.h in Headers */,
  1962. 554F1F2B6AA13F38A2DBDBD2B5A2BBE7 /* NSParagraphStyle+YYText.h in Headers */,
  1963. 6A6423FD1E62FDFFD30029C7C060355A /* UIPasteboard+YYText.h in Headers */,
  1964. AFAFC3A1A7DDB3B2F0B380730AAC8BE9 /* UIView+YYText.h in Headers */,
  1965. 43E779B393D13AC254CAE03AB19131B2 /* YYLabel.h in Headers */,
  1966. 0C13638EA19D0AAABC3C65752019871A /* YYText.h in Headers */,
  1967. CBE602893E1591013496196D1378268E /* YYTextArchiver.h in Headers */,
  1968. EEE29BDF3224FDCE0C38ADFE8AA7ACC8 /* YYTextAsyncLayer.h in Headers */,
  1969. C2F122FEEB121F7F9B5C423642C168E3 /* YYTextAttribute.h in Headers */,
  1970. EF350D999E6E89EDB03D9948636EEF7D /* YYTextContainerView.h in Headers */,
  1971. FD87D70E553F6285297C5FD4B3163124 /* YYTextDebugOption.h in Headers */,
  1972. 2C4D2582543C5EB22E605DC5AC08D222 /* YYTextEffectWindow.h in Headers */,
  1973. 9A8F6E730EEF04AE48FEB6495E1E99D7 /* YYTextInput.h in Headers */,
  1974. 48B69BE8D90EFA84DBB9D2B89756ADD3 /* YYTextKeyboardManager.h in Headers */,
  1975. 594A60CAB2100448D10CBC52433AA8FB /* YYTextLayout.h in Headers */,
  1976. 6E83FE2F2EB2F62EFB834A92021633F3 /* YYTextLine.h in Headers */,
  1977. 113854EC31195A7FE7F0FC272C4911D6 /* YYTextMagnifier.h in Headers */,
  1978. 8EC1702A255D3EFA5FAC469FE422772A /* YYTextParser.h in Headers */,
  1979. 3B88A84C1F4EEC98FFEF49A8D9B4BABC /* YYTextRubyAnnotation.h in Headers */,
  1980. 78B0CA2A069F6FCD50700DDE2FD526FA /* YYTextRunDelegate.h in Headers */,
  1981. 7E57D6F087EEEF87D2F566146F2C738A /* YYTextSelectionView.h in Headers */,
  1982. 76962A252DC73B78B007D0B13454C5EE /* YYTextTransaction.h in Headers */,
  1983. B242E4120703F000F6CD61FDDF368841 /* YYTextUtilities.h in Headers */,
  1984. 94FE5179C3A3C1204C91752D464C8CBC /* YYTextView.h in Headers */,
  1985. 5439D002DC50FC7345D62296AA3B62A2 /* YYTextWeakProxy.h in Headers */,
  1986. );
  1987. runOnlyForDeploymentPostprocessing = 0;
  1988. };
  1989. 9A9B9271BD0E97E9DF8FD07D8DFBC22C /* Headers */ = {
  1990. isa = PBXHeadersBuildPhase;
  1991. buildActionMask = 2147483647;
  1992. files = (
  1993. );
  1994. runOnlyForDeploymentPostprocessing = 0;
  1995. };
  1996. BA30A935382E7990FE0A043A432A0D15 /* Headers */ = {
  1997. isa = PBXHeadersBuildPhase;
  1998. buildActionMask = 2147483647;
  1999. files = (
  2000. 5A4EC55BD355DC4DC75E95FEF3A588D8 /* SVIndefiniteAnimatedView.h in Headers */,
  2001. 8098E6911E21F4890686B1D102FA71B4 /* SVProgressAnimatedView.h in Headers */,
  2002. 60AF125C526CA2F7B1D126293ED06CDB /* SVProgressHUD.h in Headers */,
  2003. B5F927BED4545F8EF83103E6DF31EC21 /* SVRadialGradientLayer.h in Headers */,
  2004. );
  2005. runOnlyForDeploymentPostprocessing = 0;
  2006. };
  2007. /* End PBXHeadersBuildPhase section */
  2008. /* Begin PBXNativeTarget section */
  2009. 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */ = {
  2010. isa = PBXNativeTarget;
  2011. buildConfigurationList = 9F0A9122566E5429E4F296A93D75683A /* Build configuration list for PBXNativeTarget "SVProgressHUD" */;
  2012. buildPhases = (
  2013. BA30A935382E7990FE0A043A432A0D15 /* Headers */,
  2014. A9CF97FCC15F0FF7B5271220D3A1AEA7 /* Sources */,
  2015. 1653F92B8F3C6BA33E414AE122ECB366 /* Frameworks */,
  2016. );
  2017. buildRules = (
  2018. );
  2019. dependencies = (
  2020. );
  2021. name = SVProgressHUD;
  2022. productName = SVProgressHUD;
  2023. productReference = E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */;
  2024. productType = "com.apple.product-type.library.static";
  2025. };
  2026. 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */ = {
  2027. isa = PBXNativeTarget;
  2028. buildConfigurationList = 64E9CEA37E7FE1D592EB9259636C902D /* Build configuration list for PBXNativeTarget "LenzSDK" */;
  2029. buildPhases = (
  2030. 10C30EEB37CFE10DE8D0163D8B3AF1F3 /* Headers */,
  2031. 3DCBD6008C290C00AFD2FC1474E4DAD6 /* Sources */,
  2032. F1A344A6607DB85CDF64DB32CADC0206 /* Frameworks */,
  2033. );
  2034. buildRules = (
  2035. );
  2036. dependencies = (
  2037. 4DAE2897013D77EEAA4C40D824FDCABB /* PBXTargetDependency */,
  2038. DEBE192AEC24DA5DCC2208C97C8A0191 /* PBXTargetDependency */,
  2039. E48BFC49F136D40F43D45BAF26B32B69 /* PBXTargetDependency */,
  2040. 039F0DC6F09171A4983611D9263AF6CF /* PBXTargetDependency */,
  2041. 8766260BE37D3176A6D5BA6BFDAAF4F9 /* PBXTargetDependency */,
  2042. 2D15F91F4961C5F98CAF3B6CA7B7C408 /* PBXTargetDependency */,
  2043. );
  2044. name = LenzSDK;
  2045. productName = LenzSDK;
  2046. productReference = CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */;
  2047. productType = "com.apple.product-type.library.static";
  2048. };
  2049. 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */ = {
  2050. isa = PBXNativeTarget;
  2051. buildConfigurationList = AC71D14B543AAB9F260C8AFF03D394C4 /* Build configuration list for PBXNativeTarget "Masonry" */;
  2052. buildPhases = (
  2053. 302FE4629A7E86AFE05899567B7473A6 /* Headers */,
  2054. 03D84C020093D97DBDD375D889AFE9B1 /* Sources */,
  2055. 7CE294024B9AAD632A89EE2263CF3017 /* Frameworks */,
  2056. );
  2057. buildRules = (
  2058. );
  2059. dependencies = (
  2060. );
  2061. name = Masonry;
  2062. productName = Masonry;
  2063. productReference = 1FFED36A657123030ABB700256D73F15 /* Masonry */;
  2064. productType = "com.apple.product-type.library.static";
  2065. };
  2066. 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */ = {
  2067. isa = PBXNativeTarget;
  2068. buildConfigurationList = 0E7DE98C1932B44C864A104754068948 /* Build configuration list for PBXNativeTarget "YYText" */;
  2069. buildPhases = (
  2070. 37CAA25F1DCDA1A968183CACBB8AD0F1 /* Headers */,
  2071. C318BB0C9B8DB0143ECA7415F4F3B58A /* Sources */,
  2072. B63666AF83E239AD2BDE97A2BD2F993C /* Frameworks */,
  2073. );
  2074. buildRules = (
  2075. );
  2076. dependencies = (
  2077. );
  2078. name = YYText;
  2079. productName = YYText;
  2080. productReference = 71762A728913EB440C97D3616D291AF3 /* YYText */;
  2081. productType = "com.apple.product-type.library.static";
  2082. };
  2083. 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
  2084. isa = PBXNativeTarget;
  2085. buildConfigurationList = F5B1A9A154E057A572D998FC4B110EE7 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */;
  2086. buildPhases = (
  2087. 9A9B9271BD0E97E9DF8FD07D8DFBC22C /* Headers */,
  2088. A22A0614627F92ADC43E9C0B362EB116 /* Sources */,
  2089. 6DE85D5D450CA44D841CBEB1357F0291 /* Frameworks */,
  2090. );
  2091. buildRules = (
  2092. );
  2093. dependencies = (
  2094. A916E0B5FFBB7EBEF9709C50D984EED0 /* PBXTargetDependency */,
  2095. AF7F57A13A3F86EAC18C92916DAE9405 /* PBXTargetDependency */,
  2096. 75B8694440CD84D0331447372C85A2C8 /* PBXTargetDependency */,
  2097. D28CDFAD0A801F1AE5481B2FE0697DC7 /* PBXTargetDependency */,
  2098. 3305A70078D971D9174C99939B7C9565 /* PBXTargetDependency */,
  2099. 053C3CA03387BD6AD7DD100D3A814E70 /* PBXTargetDependency */,
  2100. );
  2101. name = "Pods-LenzCameraNativeModuleForRN_Example";
  2102. productName = "Pods-LenzCameraNativeModuleForRN_Example";
  2103. productReference = 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */;
  2104. productType = "com.apple.product-type.library.static";
  2105. };
  2106. E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */ = {
  2107. isa = PBXNativeTarget;
  2108. buildConfigurationList = C142FBE47636B8BEBE32829445A372CC /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */;
  2109. buildPhases = (
  2110. D1F25E4BB87324C9B1A478A74CA3448D /* Sources */,
  2111. 38B42FA32BD8CC655758612D517E5638 /* Frameworks */,
  2112. E0E3CBDA70D9C8F462729244A70534BE /* Resources */,
  2113. );
  2114. buildRules = (
  2115. );
  2116. dependencies = (
  2117. );
  2118. name = "LenzSDK-LenzCameraNativeModuleForRN";
  2119. productName = LenzCameraNativeModuleForRN;
  2120. productReference = CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */;
  2121. productType = "com.apple.product-type.bundle";
  2122. };
  2123. /* End PBXNativeTarget section */
  2124. /* Begin PBXProject section */
  2125. BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
  2126. isa = PBXProject;
  2127. attributes = {
  2128. LastSwiftUpdateCheck = 1300;
  2129. LastUpgradeCheck = 1300;
  2130. };
  2131. buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
  2132. compatibilityVersion = "Xcode 3.2";
  2133. developmentRegion = en;
  2134. hasScannedForEncodings = 0;
  2135. knownRegions = (
  2136. Base,
  2137. en,
  2138. "zh-Hans",
  2139. );
  2140. mainGroup = CF1408CF629C7361332E53B88F7BD30C;
  2141. productRefGroup = 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */;
  2142. projectDirPath = "";
  2143. projectRoot = "";
  2144. targets = (
  2145. 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */,
  2146. E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */,
  2147. 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */,
  2148. C5B80886873124CEC429CA0591705280 /* OpenCV2 */,
  2149. 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */,
  2150. 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */,
  2151. A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */,
  2152. 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */,
  2153. );
  2154. };
  2155. /* End PBXProject section */
  2156. /* Begin PBXResourcesBuildPhase section */
  2157. E0E3CBDA70D9C8F462729244A70534BE /* Resources */ = {
  2158. isa = PBXResourcesBuildPhase;
  2159. buildActionMask = 2147483647;
  2160. files = (
  2161. 201EFEB21237B18E52925007D39AC1F7 /* assets.xcassets in Resources */,
  2162. FFCB5CAEDAFE21E2AF3CDA743E919E96 /* Localizable.strings in Resources */,
  2163. B5E7E90CCD393A3AE39E55601C1D865F /* moire_mobilenetv2_79.tflite in Resources */,
  2164. 6D4409E7EDA143F4EAE2598B19393B14 /* PhotoCell.xib in Resources */,
  2165. D93729A6DCE2D00B44CC19B359D07C7F /* PhotoCollectionViewCell.xib in Resources */,
  2166. A16DA3AADB14CE4B1EE32D01BFB1981E /* QuitMultipleModeAlertViewController.xib in Resources */,
  2167. 8812E7809EA01418F468D78294ECED67 /* VC.storyboard in Resources */,
  2168. );
  2169. runOnlyForDeploymentPostprocessing = 0;
  2170. };
  2171. /* End PBXResourcesBuildPhase section */
  2172. /* Begin PBXSourcesBuildPhase section */
  2173. 03D84C020093D97DBDD375D889AFE9B1 /* Sources */ = {
  2174. isa = PBXSourcesBuildPhase;
  2175. buildActionMask = 2147483647;
  2176. files = (
  2177. 2F3B238702F735BAB272C8138C076BAC /* MASCompositeConstraint.m in Sources */,
  2178. 27F35D4A18FADDD901AF200E8648887C /* MASConstraint.m in Sources */,
  2179. BD6B1778D84B26DF2FE6883D95DD5EF8 /* MASConstraintMaker.m in Sources */,
  2180. 4AE823185658F5B92E7B1B0F2508684D /* MASLayoutConstraint.m in Sources */,
  2181. C5C75D9A93EDD5D02D3CB5E9DC0B338E /* Masonry-dummy.m in Sources */,
  2182. 29E64B53874873E9185F4C4A371E6ED6 /* MASViewAttribute.m in Sources */,
  2183. 2AD796924433EC645003FB24019C32FC /* MASViewConstraint.m in Sources */,
  2184. 81C1B07E0A02DC8F34134C97AE3565CC /* NSArray+MASAdditions.m in Sources */,
  2185. EEC77832F208505D9935D66E34F99720 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
  2186. 9F66C8A05C3B8D60003DFAA88EA8DC9F /* View+MASAdditions.m in Sources */,
  2187. 264848AA48C9735953B42B52E83E9A46 /* ViewController+MASAdditions.m in Sources */,
  2188. );
  2189. runOnlyForDeploymentPostprocessing = 0;
  2190. };
  2191. 3DCBD6008C290C00AFD2FC1474E4DAD6 /* Sources */ = {
  2192. isa = PBXSourcesBuildPhase;
  2193. buildActionMask = 2147483647;
  2194. files = (
  2195. 5C8E0021BB2280FF92B0A429F9364373 /* AlbumCounterLabel.m in Sources */,
  2196. DC7EFDCC405DD5A07DDC0EFE0845D59D /* AlertView.m in Sources */,
  2197. DB64D72495EA1F55647CF2FA45482422 /* AVCapturePhotoOutput+VersionAdaptor.m in Sources */,
  2198. FDE822A0ABD9425763E221168DBEC50D /* BaseViewTapGestureDelegate.m in Sources */,
  2199. 3C601362C1B68BFB587D4354E2789E01 /* CameraManager.m in Sources */,
  2200. 7D9883909DC186545FD4922AEC77BA74 /* CameraTextureRenderPass.m in Sources */,
  2201. 55EBD1F344E6F861D8E4E226224A4D08 /* CollectionViewPlayerCell.m in Sources */,
  2202. C92B654187A8621F31C93E51DA725080 /* cpp-headers.mm in Sources */,
  2203. 678BF2ACC9ACB312F33606BC671D2605 /* CustomModalViewTransition.m in Sources */,
  2204. 25EA7583CE3812A48A56E34D5E418E6A /* DBManager.m in Sources */,
  2205. 5C39022B8FB5C123D74C534BB7EA7AEE /* ImageCacheLRU.m in Sources */,
  2206. 2243254801BD1818146D1BE595ED0093 /* LenzCachedResourceModel.m in Sources */,
  2207. 285870722D6D6254EA4B07B08C5A4292 /* LenzCameraSDK.m in Sources */,
  2208. 8455BC795264E85AD7AC4E0791E6FF0B /* LenzDataManager.m in Sources */,
  2209. 2955D10329E5126B00304514 /* PCSAutherView.m in Sources */,
  2210. 7CB59C095A80B611E7FEA0238981B5B0 /* LenzSDK-dummy.m in Sources */,
  2211. CE37FEA495CB7228E50E66CA11B06307 /* Localizable.strings in Sources */,
  2212. 90EC1C801997F93FAC2CEE8C80941219 /* Localizable.strings in Sources */,
  2213. 2ECBF28B8D7A308C6F1AB50A80643542 /* MovieListCellModel.m in Sources */,
  2214. 7DFF5F3C3209179C8154363FC35F9F0A /* MovieListViewController.m in Sources */,
  2215. 2B58CEE4C0F6C7144DD20B113713544C /* MoviePlayerViewController.m in Sources */,
  2216. 47CD7A77BCA83B80F313DF29DB55FF27 /* NSString+Localization.m in Sources */,
  2217. 302A29ADD3A36CE078F8B369F2C53E3B /* OperationNodeAIPanorama.m in Sources */,
  2218. 95664B648F3D5B81114D9D821518A49C /* OperationNodeMovie.m in Sources */,
  2219. 8A4A11E0F81E86AF94DBBA5F0A1F56FD /* OperationNodeMultiple.m in Sources */,
  2220. 3F293231507716BDE08498EA65B304EF /* OperationNodePanorama.m in Sources */,
  2221. 7FE3A17A9C5DFE7FC9B97ABEFE6B52F2 /* OperationNodeSingle.m in Sources */,
  2222. 3CF1D79B62FF5BA0395AD25E7E090D48 /* OperationNodeVideoBase.m in Sources */,
  2223. 52A118F4387F2B171B0C9F776374ECE6 /* PaddingLabel.m in Sources */,
  2224. 1705036BACF9710F1729FA3A3D6EB6B3 /* PanoramaGuideView.m in Sources */,
  2225. 3A54989AB21F5430486306CCE824EF49 /* PanoramaOrientationView.m in Sources */,
  2226. 98F97E0776940E3699D994B6B7B3592E /* PCSBaseViewController.m in Sources */,
  2227. 9005EB12E1E0A714BADC0F0437C6B133 /* PCSButton.m in Sources */,
  2228. E0A6D7358A01FA38E0FD0905041B5E26 /* PCSModeList.m in Sources */,
  2229. B349F13FAD12A197DE3EDD86946C6D86 /* PCSMotionManager.m in Sources */,
  2230. EE08AC2AAE35FE24202DFFD4D65FCAA0 /* PCSPreviewViewController.m in Sources */,
  2231. 02A6F4E5798B2688705C52EC3F041332 /* PCSRoundButton.m in Sources */,
  2232. 727C041CD11BAD13DA3B55D19720645F /* PCSSessionWrapper.m in Sources */,
  2233. 46B5FE62C20A0B343B3570028C05D6B5 /* PCSThemeColorManager.m in Sources */,
  2234. C6AD32D6F4EF6A576CE185536B7AC095 /* PCSTools.m in Sources */,
  2235. B6C858CAC2092695A0EC842B5E29E082 /* PhotoAlbumListViewController.m in Sources */,
  2236. E7B7B6A8AFD3BF727BFD4CBE5DA70AAD /* PhotoAlbumModel.m in Sources */,
  2237. A280F9BA2EB288CF917C13902CD5EE7A /* PhotoCell.m in Sources */,
  2238. 371EA32057E8ECBF29637955B1181A3D /* PhotoCell.xib in Sources */,
  2239. 7FD3E80B231552D03D2628C5BE314CA0 /* PhotoCollectionViewCell.m in Sources */,
  2240. FF69E6C0ABF2CE90B3B729B50704FBC1 /* PhotoCollectionViewCell.xib in Sources */,
  2241. 065B0ABE59D827DBA550D56D93C686FE /* PhotoListCellModel.m in Sources */,
  2242. F309C0E7BA320A4CD7C24EE90724771B /* PhotoListViewController.m in Sources */,
  2243. 00F2B695B65C1A5F0A5C3509CF80EEF1 /* PreviewSingleViewController.m in Sources */,
  2244. 0AB943E2B82A14FDAEEA0597AE3F5CEF /* QuitMultipleModeAlertViewController.m in Sources */,
  2245. 2565FE65BD419766FF705CA2D965D251 /* QuitMultipleModeAlertViewController.xib in Sources */,
  2246. 6015E28BA383FD06AAA2BF083E010487 /* Renderer.m in Sources */,
  2247. E142F492909473C5F1539D65AD434AA4 /* SDKParameters.m in Sources */,
  2248. 0AA3AEBE363066190766CE595C644B2A /* TensorFlowWrapper.m in Sources */,
  2249. AD72E0FAC162319BA59EA0EEF5AF2955 /* TimerLabel.m in Sources */,
  2250. A9C0023BBA219D4638026CC476A8A343 /* UIButton+Layout.m in Sources */,
  2251. 1492A6B18F1CABDA3372AA400A575019 /* UIColor+JKAdd.m in Sources */,
  2252. 5096EB1DA6ACB958BFD86C6BF46477AA /* UIImage+ext.m in Sources */,
  2253. C38DF8458B89E5C3898037450A470284 /* UIImage+name.m in Sources */,
  2254. 23FCB4C898907953BA230B8E125A5E29 /* UIView+JKAdd.m in Sources */,
  2255. F9EE002A84258F990F83F2D22A2A8B44 /* VC.storyboard in Sources */,
  2256. 2DD96EAD6CF73ADC87C1B6C866EA9BBD /* VerticalButton.m in Sources */,
  2257. );
  2258. runOnlyForDeploymentPostprocessing = 0;
  2259. };
  2260. A22A0614627F92ADC43E9C0B362EB116 /* Sources */ = {
  2261. isa = PBXSourcesBuildPhase;
  2262. buildActionMask = 2147483647;
  2263. files = (
  2264. FACCBE7066906AD830F874ACD58F34EB /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */,
  2265. );
  2266. runOnlyForDeploymentPostprocessing = 0;
  2267. };
  2268. A9CF97FCC15F0FF7B5271220D3A1AEA7 /* Sources */ = {
  2269. isa = PBXSourcesBuildPhase;
  2270. buildActionMask = 2147483647;
  2271. files = (
  2272. DA0B75A6754EA3E3F4C82E68F1410E16 /* SVIndefiniteAnimatedView.m in Sources */,
  2273. 3ECE551C861C381EBBD366428C3B4ED6 /* SVProgressAnimatedView.m in Sources */,
  2274. DDC9734B5CB18339D45AB39BF1D4B6E3 /* SVProgressHUD.m in Sources */,
  2275. 4AB2278C416C6C7A40A4802EFAB0CA5B /* SVProgressHUD-dummy.m in Sources */,
  2276. 35049D2E5AE23EBB5D0D9B3AA72BBA0F /* SVRadialGradientLayer.m in Sources */,
  2277. );
  2278. runOnlyForDeploymentPostprocessing = 0;
  2279. };
  2280. C318BB0C9B8DB0143ECA7415F4F3B58A /* Sources */ = {
  2281. isa = PBXSourcesBuildPhase;
  2282. buildActionMask = 2147483647;
  2283. files = (
  2284. 8456A6E14A16CB42A8F0EE1389C91F06 /* NSAttributedString+YYText.m in Sources */,
  2285. 9F8B1AFD74B76A41360BC22B12DEE371 /* NSParagraphStyle+YYText.m in Sources */,
  2286. 5FB8C4B243A2FC3896C583C9DDDCDD75 /* UIPasteboard+YYText.m in Sources */,
  2287. 8180E096D11A76473326620639EE3E6C /* UIView+YYText.m in Sources */,
  2288. B07D00912507F0B68CFEA99FC9808344 /* YYLabel.m in Sources */,
  2289. 538FBD660BC38808F16106EE57E7BC45 /* YYText-dummy.m in Sources */,
  2290. EC1199DB892CE34BF5CCCD9B606D6BD3 /* YYTextArchiver.m in Sources */,
  2291. E5C9D8E6C97A9D132CDD859EE61571AF /* YYTextAsyncLayer.m in Sources */,
  2292. A41056E1C85E5009B05BF510FC923356 /* YYTextAttribute.m in Sources */,
  2293. 0C0C5CB8F1113EDFA043CF82E51B4997 /* YYTextContainerView.m in Sources */,
  2294. 6B9FDC76937E93AB2CB7A6CB85559D88 /* YYTextDebugOption.m in Sources */,
  2295. 76C0D08B39E053C068DBA1E3B066203D /* YYTextEffectWindow.m in Sources */,
  2296. 52AE2CB13C2CBA6E3A5B22F6389A46E4 /* YYTextInput.m in Sources */,
  2297. 130C0069D6C36572D6B7E605C8AE22A2 /* YYTextKeyboardManager.m in Sources */,
  2298. 2A82C8DF4D809ECE5A7B1E90F7CAE77F /* YYTextLayout.m in Sources */,
  2299. BA673CB3E499A64318B669B79B08D94E /* YYTextLine.m in Sources */,
  2300. 8FF0FD8B45CD298A202B937EAB056CFB /* YYTextMagnifier.m in Sources */,
  2301. 831D01D603567354A49375CD9E7F686B /* YYTextParser.m in Sources */,
  2302. 7D47B0F2A83D429E3B0E05813ADBC8D4 /* YYTextRubyAnnotation.m in Sources */,
  2303. 2C48AC6EA97D25DF8A8A695409C6AD26 /* YYTextRunDelegate.m in Sources */,
  2304. 27BC1246EA9551436EF0797243AC5C27 /* YYTextSelectionView.m in Sources */,
  2305. 75CC2A1A3BB19DFF9A38FCEC5EA377FC /* YYTextTransaction.m in Sources */,
  2306. C9802A18B04074A3ED503EC370FAD348 /* YYTextUtilities.m in Sources */,
  2307. E129083EEBDD0A44DD8EE539CEAD3F72 /* YYTextView.m in Sources */,
  2308. AF7568B87D50F86818C28F9EDA42103E /* YYTextWeakProxy.m in Sources */,
  2309. );
  2310. runOnlyForDeploymentPostprocessing = 0;
  2311. };
  2312. D1F25E4BB87324C9B1A478A74CA3448D /* Sources */ = {
  2313. isa = PBXSourcesBuildPhase;
  2314. buildActionMask = 2147483647;
  2315. files = (
  2316. );
  2317. runOnlyForDeploymentPostprocessing = 0;
  2318. };
  2319. /* End PBXSourcesBuildPhase section */
  2320. /* Begin PBXTargetDependency section */
  2321. 039F0DC6F09171A4983611D9263AF6CF /* PBXTargetDependency */ = {
  2322. isa = PBXTargetDependency;
  2323. name = SVProgressHUD;
  2324. target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
  2325. targetProxy = D3B21D720D533371D15619DD9A19CF2F /* PBXContainerItemProxy */;
  2326. };
  2327. 053C3CA03387BD6AD7DD100D3A814E70 /* PBXTargetDependency */ = {
  2328. isa = PBXTargetDependency;
  2329. name = YYText;
  2330. target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
  2331. targetProxy = F7630B04BF5F767F8E3C3F6559270C56 /* PBXContainerItemProxy */;
  2332. };
  2333. 2D15F91F4961C5F98CAF3B6CA7B7C408 /* PBXTargetDependency */ = {
  2334. isa = PBXTargetDependency;
  2335. name = YYText;
  2336. target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
  2337. targetProxy = D23C8653D6E16037191DEC366A60D2F0 /* PBXContainerItemProxy */;
  2338. };
  2339. 3305A70078D971D9174C99939B7C9565 /* PBXTargetDependency */ = {
  2340. isa = PBXTargetDependency;
  2341. name = TensorFlowLite;
  2342. target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
  2343. targetProxy = 9C7F81C34ABA3DF2F241F01220984DFE /* PBXContainerItemProxy */;
  2344. };
  2345. 4DAE2897013D77EEAA4C40D824FDCABB /* PBXTargetDependency */ = {
  2346. isa = PBXTargetDependency;
  2347. name = "LenzSDK-LenzCameraNativeModuleForRN";
  2348. target = E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */;
  2349. targetProxy = 9303254802AAEA02F3E7AD3A290EF270 /* PBXContainerItemProxy */;
  2350. };
  2351. 75B8694440CD84D0331447372C85A2C8 /* PBXTargetDependency */ = {
  2352. isa = PBXTargetDependency;
  2353. name = OpenCV2;
  2354. target = C5B80886873124CEC429CA0591705280 /* OpenCV2 */;
  2355. targetProxy = 6BD0A45CB3F420CFCB12E7831CA7310F /* PBXContainerItemProxy */;
  2356. };
  2357. 8766260BE37D3176A6D5BA6BFDAAF4F9 /* PBXTargetDependency */ = {
  2358. isa = PBXTargetDependency;
  2359. name = TensorFlowLite;
  2360. target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
  2361. targetProxy = 45302710827338E5BC6F14E0CEFA9CC1 /* PBXContainerItemProxy */;
  2362. };
  2363. A916E0B5FFBB7EBEF9709C50D984EED0 /* PBXTargetDependency */ = {
  2364. isa = PBXTargetDependency;
  2365. name = LenzSDK;
  2366. target = 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */;
  2367. targetProxy = 6D4BC9816DE928351C3C1A2731D1E65A /* PBXContainerItemProxy */;
  2368. };
  2369. AF7F57A13A3F86EAC18C92916DAE9405 /* PBXTargetDependency */ = {
  2370. isa = PBXTargetDependency;
  2371. name = Masonry;
  2372. target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
  2373. targetProxy = D5D2F536A43D4527BCFABC05BA4BCE40 /* PBXContainerItemProxy */;
  2374. };
  2375. D28CDFAD0A801F1AE5481B2FE0697DC7 /* PBXTargetDependency */ = {
  2376. isa = PBXTargetDependency;
  2377. name = SVProgressHUD;
  2378. target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
  2379. targetProxy = 5DF88860627482186A32AB3247175680 /* PBXContainerItemProxy */;
  2380. };
  2381. DEBE192AEC24DA5DCC2208C97C8A0191 /* PBXTargetDependency */ = {
  2382. isa = PBXTargetDependency;
  2383. name = Masonry;
  2384. target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
  2385. targetProxy = 658D0847C8DF4E2BCE61121CBA96B857 /* PBXContainerItemProxy */;
  2386. };
  2387. E48BFC49F136D40F43D45BAF26B32B69 /* PBXTargetDependency */ = {
  2388. isa = PBXTargetDependency;
  2389. name = OpenCV2;
  2390. target = C5B80886873124CEC429CA0591705280 /* OpenCV2 */;
  2391. targetProxy = F321A272A8EEE4EAC4785ADA333D5407 /* PBXContainerItemProxy */;
  2392. };
  2393. /* End PBXTargetDependency section */
  2394. /* Begin PBXVariantGroup section */
  2395. 1186B356C442E84D3503F4FD2221FE2E /* Localizable.strings */ = {
  2396. isa = PBXVariantGroup;
  2397. children = (
  2398. 8C830EEEFBC67534C907401B5A887ED5 /* Localizable.strings */,
  2399. C2A41FD6D8CB70757C482150D322A596 /* Localizable.strings */,
  2400. );
  2401. name = Localizable.strings;
  2402. path = .;
  2403. sourceTree = "<group>";
  2404. };
  2405. /* End PBXVariantGroup section */
  2406. /* Begin XCBuildConfiguration section */
  2407. 1B486B87A1DA1BC727DE2D0604EE2935 /* Release */ = {
  2408. isa = XCBuildConfiguration;
  2409. baseConfigurationReference = 0AE4E7473E40F2E5F0F54290ED44474F /* OpenCV2.release.xcconfig */;
  2410. buildSettings = {
  2411. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2412. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2413. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2414. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2415. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2416. SDKROOT = iphoneos;
  2417. TARGETED_DEVICE_FAMILY = "1,2";
  2418. VALIDATE_PRODUCT = YES;
  2419. };
  2420. name = Release;
  2421. };
  2422. 22C9D42DF5659D02C15F95B451113D96 /* Release */ = {
  2423. isa = XCBuildConfiguration;
  2424. baseConfigurationReference = F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */;
  2425. buildSettings = {
  2426. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2427. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2428. CLANG_ENABLE_OBJC_WEAK = NO;
  2429. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2430. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2431. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2432. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2433. MACH_O_TYPE = staticlib;
  2434. OTHER_LDFLAGS = "";
  2435. OTHER_LIBTOOLFLAGS = "";
  2436. PODS_ROOT = "$(SRCROOT)";
  2437. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2438. SDKROOT = iphoneos;
  2439. SKIP_INSTALL = YES;
  2440. TARGETED_DEVICE_FAMILY = "1,2";
  2441. VALIDATE_PRODUCT = YES;
  2442. };
  2443. name = Release;
  2444. };
  2445. 28B12C589942696F4C6C3F4589E10E70 /* Release */ = {
  2446. isa = XCBuildConfiguration;
  2447. baseConfigurationReference = FC980317F5359DFBBB40B36D55F53C24 /* LenzSDK.release.xcconfig */;
  2448. buildSettings = {
  2449. CODE_SIGNING_ALLOWED = NO;
  2450. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
  2451. IBSC_MODULE = LenzSDK;
  2452. INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
  2453. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2454. PRODUCT_NAME = LenzCameraNativeModuleForRN;
  2455. SDKROOT = iphoneos;
  2456. SKIP_INSTALL = YES;
  2457. TARGETED_DEVICE_FAMILY = "1,2";
  2458. WRAPPER_EXTENSION = bundle;
  2459. };
  2460. name = Release;
  2461. };
  2462. 2B9E26EAE2CD392AD762421F663075A1 /* Debug */ = {
  2463. isa = XCBuildConfiguration;
  2464. buildSettings = {
  2465. ALWAYS_SEARCH_USER_PATHS = NO;
  2466. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2467. CLANG_ANALYZER_NONNULL = YES;
  2468. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2469. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2470. CLANG_CXX_LIBRARY = "libc++";
  2471. CLANG_ENABLE_MODULES = YES;
  2472. CLANG_ENABLE_OBJC_ARC = YES;
  2473. CLANG_ENABLE_OBJC_WEAK = YES;
  2474. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2475. CLANG_WARN_BOOL_CONVERSION = YES;
  2476. CLANG_WARN_COMMA = YES;
  2477. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2478. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2479. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2480. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2481. CLANG_WARN_EMPTY_BODY = YES;
  2482. CLANG_WARN_ENUM_CONVERSION = YES;
  2483. CLANG_WARN_INFINITE_RECURSION = YES;
  2484. CLANG_WARN_INT_CONVERSION = YES;
  2485. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2486. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2487. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2488. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2489. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2490. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2491. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2492. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2493. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2494. CLANG_WARN_UNREACHABLE_CODE = YES;
  2495. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2496. COPY_PHASE_STRIP = NO;
  2497. DEBUG_INFORMATION_FORMAT = dwarf;
  2498. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2499. ENABLE_TESTABILITY = YES;
  2500. GCC_C_LANGUAGE_STANDARD = gnu11;
  2501. GCC_DYNAMIC_NO_PIC = NO;
  2502. GCC_NO_COMMON_BLOCKS = YES;
  2503. GCC_OPTIMIZATION_LEVEL = 0;
  2504. GCC_PREPROCESSOR_DEFINITIONS = (
  2505. "POD_CONFIGURATION_DEBUG=1",
  2506. "DEBUG=1",
  2507. "$(inherited)",
  2508. );
  2509. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2510. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2511. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2512. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2513. GCC_WARN_UNUSED_FUNCTION = YES;
  2514. GCC_WARN_UNUSED_VARIABLE = YES;
  2515. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2516. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2517. MTL_FAST_MATH = YES;
  2518. ONLY_ACTIVE_ARCH = YES;
  2519. PRODUCT_NAME = "$(TARGET_NAME)";
  2520. STRIP_INSTALLED_PRODUCT = NO;
  2521. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2522. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2523. SWIFT_VERSION = 5.0;
  2524. SYMROOT = "${SRCROOT}/../build";
  2525. };
  2526. name = Debug;
  2527. };
  2528. 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = {
  2529. isa = XCBuildConfiguration;
  2530. buildSettings = {
  2531. ALWAYS_SEARCH_USER_PATHS = NO;
  2532. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2533. CLANG_ANALYZER_NONNULL = YES;
  2534. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2535. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2536. CLANG_CXX_LIBRARY = "libc++";
  2537. CLANG_ENABLE_MODULES = YES;
  2538. CLANG_ENABLE_OBJC_ARC = YES;
  2539. CLANG_ENABLE_OBJC_WEAK = YES;
  2540. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2541. CLANG_WARN_BOOL_CONVERSION = YES;
  2542. CLANG_WARN_COMMA = YES;
  2543. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2544. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2545. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2546. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2547. CLANG_WARN_EMPTY_BODY = YES;
  2548. CLANG_WARN_ENUM_CONVERSION = YES;
  2549. CLANG_WARN_INFINITE_RECURSION = YES;
  2550. CLANG_WARN_INT_CONVERSION = YES;
  2551. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2552. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2553. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2554. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2555. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2556. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2557. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2558. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2559. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2560. CLANG_WARN_UNREACHABLE_CODE = YES;
  2561. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2562. COPY_PHASE_STRIP = NO;
  2563. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2564. ENABLE_NS_ASSERTIONS = NO;
  2565. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2566. GCC_C_LANGUAGE_STANDARD = gnu11;
  2567. GCC_NO_COMMON_BLOCKS = YES;
  2568. GCC_PREPROCESSOR_DEFINITIONS = (
  2569. "POD_CONFIGURATION_RELEASE=1",
  2570. "$(inherited)",
  2571. );
  2572. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2573. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2574. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2575. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2576. GCC_WARN_UNUSED_FUNCTION = YES;
  2577. GCC_WARN_UNUSED_VARIABLE = YES;
  2578. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2579. MTL_ENABLE_DEBUG_INFO = NO;
  2580. MTL_FAST_MATH = YES;
  2581. PRODUCT_NAME = "$(TARGET_NAME)";
  2582. STRIP_INSTALLED_PRODUCT = NO;
  2583. SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
  2584. SWIFT_VERSION = 5.0;
  2585. SYMROOT = "${SRCROOT}/../build";
  2586. };
  2587. name = Release;
  2588. };
  2589. 6D65152A510609CB751595B9A29EEA56 /* Debug */ = {
  2590. isa = XCBuildConfiguration;
  2591. baseConfigurationReference = 70ACE1B9788ABB4F18A6A434F4DFB523 /* OpenCV2.debug.xcconfig */;
  2592. buildSettings = {
  2593. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2594. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2595. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2596. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2597. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2598. SDKROOT = iphoneos;
  2599. TARGETED_DEVICE_FAMILY = "1,2";
  2600. };
  2601. name = Debug;
  2602. };
  2603. 7DCA2F1E2C84C258E23998299D4754B6 /* Release */ = {
  2604. isa = XCBuildConfiguration;
  2605. baseConfigurationReference = 1F0E00D4EC7DDA5E0F50D373BFD7DBF9 /* Masonry.release.xcconfig */;
  2606. buildSettings = {
  2607. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2608. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2609. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2610. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2611. GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
  2612. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2613. OTHER_LDFLAGS = "";
  2614. OTHER_LIBTOOLFLAGS = "";
  2615. PRIVATE_HEADERS_FOLDER_PATH = "";
  2616. PRODUCT_MODULE_NAME = Masonry;
  2617. PRODUCT_NAME = Masonry;
  2618. PUBLIC_HEADERS_FOLDER_PATH = "";
  2619. SDKROOT = iphoneos;
  2620. SKIP_INSTALL = YES;
  2621. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2622. SWIFT_VERSION = 4.0;
  2623. TARGETED_DEVICE_FAMILY = "1,2";
  2624. VALIDATE_PRODUCT = YES;
  2625. };
  2626. name = Release;
  2627. };
  2628. 8B799E69BB5C85BDE59EA8D739183BB4 /* Debug */ = {
  2629. isa = XCBuildConfiguration;
  2630. baseConfigurationReference = F914F9872A221B8E8FE3944FF61E4B76 /* LenzSDK.debug.xcconfig */;
  2631. buildSettings = {
  2632. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2633. CLANG_ENABLE_OBJC_WEAK = NO;
  2634. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2635. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2636. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2637. GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
  2638. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2639. OTHER_LDFLAGS = "";
  2640. OTHER_LIBTOOLFLAGS = "";
  2641. PRIVATE_HEADERS_FOLDER_PATH = "";
  2642. PRODUCT_MODULE_NAME = LenzSDK;
  2643. PRODUCT_NAME = LenzSDK;
  2644. PUBLIC_HEADERS_FOLDER_PATH = "";
  2645. SDKROOT = iphoneos;
  2646. SKIP_INSTALL = YES;
  2647. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2648. SWIFT_VERSION = 4.0;
  2649. TARGETED_DEVICE_FAMILY = "1,2";
  2650. };
  2651. name = Debug;
  2652. };
  2653. 8FE74F912911F26492DA2ACE2311CE92 /* Release */ = {
  2654. isa = XCBuildConfiguration;
  2655. baseConfigurationReference = 34D3161F77526AB76CF74AB041515EB8 /* TensorFlowLite.release.xcconfig */;
  2656. buildSettings = {
  2657. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2658. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2659. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2660. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2661. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2662. SDKROOT = iphoneos;
  2663. TARGETED_DEVICE_FAMILY = "1,2";
  2664. VALIDATE_PRODUCT = YES;
  2665. };
  2666. name = Release;
  2667. };
  2668. 9B92006A1EE70BC5C33DEE3CEB597D63 /* Debug */ = {
  2669. isa = XCBuildConfiguration;
  2670. baseConfigurationReference = E93BE0BAE030FB160EFB75E477B69B89 /* SVProgressHUD.debug.xcconfig */;
  2671. buildSettings = {
  2672. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2673. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2674. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2675. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2676. GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
  2677. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2678. OTHER_LDFLAGS = "";
  2679. OTHER_LIBTOOLFLAGS = "";
  2680. PRIVATE_HEADERS_FOLDER_PATH = "";
  2681. PRODUCT_MODULE_NAME = SVProgressHUD;
  2682. PRODUCT_NAME = SVProgressHUD;
  2683. PUBLIC_HEADERS_FOLDER_PATH = "";
  2684. SDKROOT = iphoneos;
  2685. SKIP_INSTALL = YES;
  2686. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2687. SWIFT_VERSION = 4.0;
  2688. TARGETED_DEVICE_FAMILY = "1,2";
  2689. };
  2690. name = Debug;
  2691. };
  2692. A02049E90299E06D9E0C17938310D7F3 /* Debug */ = {
  2693. isa = XCBuildConfiguration;
  2694. baseConfigurationReference = F914F9872A221B8E8FE3944FF61E4B76 /* LenzSDK.debug.xcconfig */;
  2695. buildSettings = {
  2696. CODE_SIGNING_ALLOWED = NO;
  2697. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
  2698. IBSC_MODULE = LenzSDK;
  2699. INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
  2700. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2701. PRODUCT_NAME = LenzCameraNativeModuleForRN;
  2702. SDKROOT = iphoneos;
  2703. SKIP_INSTALL = YES;
  2704. TARGETED_DEVICE_FAMILY = "1,2";
  2705. WRAPPER_EXTENSION = bundle;
  2706. };
  2707. name = Debug;
  2708. };
  2709. C3B8CB6A2083DE7033CFA61F396DE597 /* Debug */ = {
  2710. isa = XCBuildConfiguration;
  2711. baseConfigurationReference = 671C8641F5DA39B2C758B30203E48E89 /* YYText.debug.xcconfig */;
  2712. buildSettings = {
  2713. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2714. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2715. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2716. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2717. GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
  2718. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2719. OTHER_LDFLAGS = "";
  2720. OTHER_LIBTOOLFLAGS = "";
  2721. PRIVATE_HEADERS_FOLDER_PATH = "";
  2722. PRODUCT_MODULE_NAME = YYText;
  2723. PRODUCT_NAME = YYText;
  2724. PUBLIC_HEADERS_FOLDER_PATH = "";
  2725. SDKROOT = iphoneos;
  2726. SKIP_INSTALL = YES;
  2727. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2728. SWIFT_VERSION = 4.0;
  2729. TARGETED_DEVICE_FAMILY = "1,2";
  2730. };
  2731. name = Debug;
  2732. };
  2733. D7380775B18AFB86363875625875D756 /* Release */ = {
  2734. isa = XCBuildConfiguration;
  2735. baseConfigurationReference = FC980317F5359DFBBB40B36D55F53C24 /* LenzSDK.release.xcconfig */;
  2736. buildSettings = {
  2737. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2738. CLANG_ENABLE_OBJC_WEAK = NO;
  2739. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2740. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2741. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2742. GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
  2743. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2744. OTHER_LDFLAGS = "";
  2745. OTHER_LIBTOOLFLAGS = "";
  2746. PRIVATE_HEADERS_FOLDER_PATH = "";
  2747. PRODUCT_MODULE_NAME = LenzSDK;
  2748. PRODUCT_NAME = LenzSDK;
  2749. PUBLIC_HEADERS_FOLDER_PATH = "";
  2750. SDKROOT = iphoneos;
  2751. SKIP_INSTALL = YES;
  2752. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2753. SWIFT_VERSION = 4.0;
  2754. TARGETED_DEVICE_FAMILY = "1,2";
  2755. VALIDATE_PRODUCT = YES;
  2756. };
  2757. name = Release;
  2758. };
  2759. E47AEFBA86C9C0E43332ECCF7406F23A /* Debug */ = {
  2760. isa = XCBuildConfiguration;
  2761. baseConfigurationReference = 2DD3922B8BE4E6C3BAE67ED432CF9885 /* Masonry.debug.xcconfig */;
  2762. buildSettings = {
  2763. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2764. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2765. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2766. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2767. GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
  2768. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2769. OTHER_LDFLAGS = "";
  2770. OTHER_LIBTOOLFLAGS = "";
  2771. PRIVATE_HEADERS_FOLDER_PATH = "";
  2772. PRODUCT_MODULE_NAME = Masonry;
  2773. PRODUCT_NAME = Masonry;
  2774. PUBLIC_HEADERS_FOLDER_PATH = "";
  2775. SDKROOT = iphoneos;
  2776. SKIP_INSTALL = YES;
  2777. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2778. SWIFT_VERSION = 4.0;
  2779. TARGETED_DEVICE_FAMILY = "1,2";
  2780. };
  2781. name = Debug;
  2782. };
  2783. E6ABE00E91512B96471D7EBC58880FA0 /* Release */ = {
  2784. isa = XCBuildConfiguration;
  2785. baseConfigurationReference = 9C5747FD601D91795F596AFF32D6A13B /* YYText.release.xcconfig */;
  2786. buildSettings = {
  2787. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2788. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2789. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2790. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2791. GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
  2792. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2793. OTHER_LDFLAGS = "";
  2794. OTHER_LIBTOOLFLAGS = "";
  2795. PRIVATE_HEADERS_FOLDER_PATH = "";
  2796. PRODUCT_MODULE_NAME = YYText;
  2797. PRODUCT_NAME = YYText;
  2798. PUBLIC_HEADERS_FOLDER_PATH = "";
  2799. SDKROOT = iphoneos;
  2800. SKIP_INSTALL = YES;
  2801. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2802. SWIFT_VERSION = 4.0;
  2803. TARGETED_DEVICE_FAMILY = "1,2";
  2804. VALIDATE_PRODUCT = YES;
  2805. };
  2806. name = Release;
  2807. };
  2808. EBBCD9C8777BDD157C56A128520B05DB /* Debug */ = {
  2809. isa = XCBuildConfiguration;
  2810. baseConfigurationReference = CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */;
  2811. buildSettings = {
  2812. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2813. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2814. CLANG_ENABLE_OBJC_WEAK = NO;
  2815. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2816. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2817. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2818. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2819. MACH_O_TYPE = staticlib;
  2820. OTHER_LDFLAGS = "";
  2821. OTHER_LIBTOOLFLAGS = "";
  2822. PODS_ROOT = "$(SRCROOT)";
  2823. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2824. SDKROOT = iphoneos;
  2825. SKIP_INSTALL = YES;
  2826. TARGETED_DEVICE_FAMILY = "1,2";
  2827. };
  2828. name = Debug;
  2829. };
  2830. F5EDC9AD98CDBB6F4FE5F7BE82BF7926 /* Release */ = {
  2831. isa = XCBuildConfiguration;
  2832. baseConfigurationReference = 507A2504392C0567854778AE4B6C4D39 /* SVProgressHUD.release.xcconfig */;
  2833. buildSettings = {
  2834. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2835. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2836. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2837. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2838. GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
  2839. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2840. OTHER_LDFLAGS = "";
  2841. OTHER_LIBTOOLFLAGS = "";
  2842. PRIVATE_HEADERS_FOLDER_PATH = "";
  2843. PRODUCT_MODULE_NAME = SVProgressHUD;
  2844. PRODUCT_NAME = SVProgressHUD;
  2845. PUBLIC_HEADERS_FOLDER_PATH = "";
  2846. SDKROOT = iphoneos;
  2847. SKIP_INSTALL = YES;
  2848. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2849. SWIFT_VERSION = 4.0;
  2850. TARGETED_DEVICE_FAMILY = "1,2";
  2851. VALIDATE_PRODUCT = YES;
  2852. };
  2853. name = Release;
  2854. };
  2855. F8753B4066F5F169D456FB05C7D98FD6 /* Debug */ = {
  2856. isa = XCBuildConfiguration;
  2857. baseConfigurationReference = F83198B7D4D1070C156E523A120B7C5A /* TensorFlowLite.debug.xcconfig */;
  2858. buildSettings = {
  2859. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2860. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2861. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2862. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2863. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2864. SDKROOT = iphoneos;
  2865. TARGETED_DEVICE_FAMILY = "1,2";
  2866. };
  2867. name = Debug;
  2868. };
  2869. /* End XCBuildConfiguration section */
  2870. /* Begin XCConfigurationList section */
  2871. 0E7DE98C1932B44C864A104754068948 /* Build configuration list for PBXNativeTarget "YYText" */ = {
  2872. isa = XCConfigurationList;
  2873. buildConfigurations = (
  2874. C3B8CB6A2083DE7033CFA61F396DE597 /* Debug */,
  2875. E6ABE00E91512B96471D7EBC58880FA0 /* Release */,
  2876. );
  2877. defaultConfigurationIsVisible = 0;
  2878. defaultConfigurationName = Release;
  2879. };
  2880. 2F4F62A7384161367B24720F87E9E7C0 /* Build configuration list for PBXAggregateTarget "TensorFlowLite" */ = {
  2881. isa = XCConfigurationList;
  2882. buildConfigurations = (
  2883. F8753B4066F5F169D456FB05C7D98FD6 /* Debug */,
  2884. 8FE74F912911F26492DA2ACE2311CE92 /* Release */,
  2885. );
  2886. defaultConfigurationIsVisible = 0;
  2887. defaultConfigurationName = Release;
  2888. };
  2889. 3E25DED46731B53F35C13B12FBA20010 /* Build configuration list for PBXAggregateTarget "OpenCV2" */ = {
  2890. isa = XCConfigurationList;
  2891. buildConfigurations = (
  2892. 6D65152A510609CB751595B9A29EEA56 /* Debug */,
  2893. 1B486B87A1DA1BC727DE2D0604EE2935 /* Release */,
  2894. );
  2895. defaultConfigurationIsVisible = 0;
  2896. defaultConfigurationName = Release;
  2897. };
  2898. 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
  2899. isa = XCConfigurationList;
  2900. buildConfigurations = (
  2901. 2B9E26EAE2CD392AD762421F663075A1 /* Debug */,
  2902. 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */,
  2903. );
  2904. defaultConfigurationIsVisible = 0;
  2905. defaultConfigurationName = Release;
  2906. };
  2907. 64E9CEA37E7FE1D592EB9259636C902D /* Build configuration list for PBXNativeTarget "LenzSDK" */ = {
  2908. isa = XCConfigurationList;
  2909. buildConfigurations = (
  2910. 8B799E69BB5C85BDE59EA8D739183BB4 /* Debug */,
  2911. D7380775B18AFB86363875625875D756 /* Release */,
  2912. );
  2913. defaultConfigurationIsVisible = 0;
  2914. defaultConfigurationName = Release;
  2915. };
  2916. 9F0A9122566E5429E4F296A93D75683A /* Build configuration list for PBXNativeTarget "SVProgressHUD" */ = {
  2917. isa = XCConfigurationList;
  2918. buildConfigurations = (
  2919. 9B92006A1EE70BC5C33DEE3CEB597D63 /* Debug */,
  2920. F5EDC9AD98CDBB6F4FE5F7BE82BF7926 /* Release */,
  2921. );
  2922. defaultConfigurationIsVisible = 0;
  2923. defaultConfigurationName = Release;
  2924. };
  2925. AC71D14B543AAB9F260C8AFF03D394C4 /* Build configuration list for PBXNativeTarget "Masonry" */ = {
  2926. isa = XCConfigurationList;
  2927. buildConfigurations = (
  2928. E47AEFBA86C9C0E43332ECCF7406F23A /* Debug */,
  2929. 7DCA2F1E2C84C258E23998299D4754B6 /* Release */,
  2930. );
  2931. defaultConfigurationIsVisible = 0;
  2932. defaultConfigurationName = Release;
  2933. };
  2934. C142FBE47636B8BEBE32829445A372CC /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */ = {
  2935. isa = XCConfigurationList;
  2936. buildConfigurations = (
  2937. A02049E90299E06D9E0C17938310D7F3 /* Debug */,
  2938. 28B12C589942696F4C6C3F4589E10E70 /* Release */,
  2939. );
  2940. defaultConfigurationIsVisible = 0;
  2941. defaultConfigurationName = Release;
  2942. };
  2943. F5B1A9A154E057A572D998FC4B110EE7 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */ = {
  2944. isa = XCConfigurationList;
  2945. buildConfigurations = (
  2946. EBBCD9C8777BDD157C56A128520B05DB /* Debug */,
  2947. 22C9D42DF5659D02C15F95B451113D96 /* Release */,
  2948. );
  2949. defaultConfigurationIsVisible = 0;
  2950. defaultConfigurationName = Release;
  2951. };
  2952. /* End XCConfigurationList section */
  2953. };
  2954. rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  2955. }