project.pbxproj 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 77;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. A80327B02D813A0200AF7878 /* TSTTPSelectStyleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327AF2D8139FC00AF7878 /* TSTTPSelectStyleCell.swift */; };
  10. A80327B32D813D4900AF7878 /* TSTTPInputVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327B22D813D4800AF7878 /* TSTTPInputVC.swift */; };
  11. A80327B62D813D8700AF7878 /* TSTTPInputVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327B52D813D8100AF7878 /* TSTTPInputVM.swift */; };
  12. A80327BF2D81578900AF7878 /* TSPromptTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327BE2D81576C00AF7878 /* TSPromptTextView.swift */; };
  13. A80327C12D8157CB00AF7878 /* TSTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327C02D8157C500AF7878 /* TSTitleView.swift */; };
  14. A80327C32D81581D00AF7878 /* TSTTPStyleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327C22D81580800AF7878 /* TSTTPStyleView.swift */; };
  15. A80327C52D81584500AF7878 /* TSGeneralBtnView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80327C42D81582F00AF7878 /* TSGeneralBtnView.swift */; };
  16. A80E721A2D3F393A00C64288 /* DiyStickerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72192D3F393500C64288 /* DiyStickerModel.swift */; };
  17. A80E721E2D3F3A7500C64288 /* DiyElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E721D2D3F3A7500C64288 /* DiyElement.swift */; };
  18. A80E72202D3F3A8600C64288 /* DiyElementBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E721F2D3F3A8600C64288 /* DiyElementBaseView.swift */; };
  19. A80E72222D3F3A9200C64288 /* DiyStickerElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72212D3F3A9200C64288 /* DiyStickerElement.swift */; };
  20. A80E72262D3F3A9A00C64288 /* HYHAddImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = A80E72252D3F3A9A00C64288 /* HYHAddImageView.m */; };
  21. A80E72272D3F3A9A00C64288 /* DiyTextElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72232D3F3A9A00C64288 /* DiyTextElement.swift */; };
  22. A80E722F2D3F3E1400C64288 /* TSDiyCanvasView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E722E2D3F3E0C00C64288 /* TSDiyCanvasView.swift */; };
  23. A80E72352D3F473400C64288 /* DiyPaperTemplateBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72342D3F473400C64288 /* DiyPaperTemplateBaseView.swift */; };
  24. A80E72362D3F473400C64288 /* DiyPaperTemplate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72332D3F473400C64288 /* DiyPaperTemplate.swift */; };
  25. A80E72382D3F473B00C64288 /* DiyPaperProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72372D3F473B00C64288 /* DiyPaperProtocol.swift */; };
  26. A80E723C2D3F4CAA00C64288 /* Food🍔.json in Resources */ = {isa = PBXBuildFile; fileRef = A80E723B2D3F4CA700C64288 /* Food🍔.json */; };
  27. A80E723F2D3F4D3700C64288 /* Universe🌍.json in Resources */ = {isa = PBXBuildFile; fileRef = A80E723E2D3F4D3000C64288 /* Universe🌍.json */; };
  28. A80E72462D3F4EED00C64288 /* sticker.json in Resources */ = {isa = PBXBuildFile; fileRef = A80E72452D3F4EED00C64288 /* sticker.json */; };
  29. A80E72482D3F4F0A00C64288 /* templates.json in Resources */ = {isa = PBXBuildFile; fileRef = A80E72472D3F4F0500C64288 /* templates.json */; };
  30. A80E724F2D3F6D7F00C64288 /* DiyFixedTextElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E724E2D3F6D6000C64288 /* DiyFixedTextElement.swift */; };
  31. A80E72532D3F985E00C64288 /* TSWallpaperVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72522D3F985D00C64288 /* TSWallpaperVC.swift */; };
  32. A80E72562D3F98D700C64288 /* TSDiyKeyboardViewVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72552D3F98D600C64288 /* TSDiyKeyboardViewVC.swift */; };
  33. A80E72592D3FA67800C64288 /* TSWallpaperViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72582D3FA65E00C64288 /* TSWallpaperViewModel.swift */; };
  34. A80E725C2D3FB09400C64288 /* TSKeyboardView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E725B2D3FB09100C64288 /* TSKeyboardView.swift */; };
  35. A80E72632D40925000C64288 /* TSDiyKeyboardVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72622D40924500C64288 /* TSDiyKeyboardVM.swift */; };
  36. A80E72652D409B0D00C64288 /* DiyStaticElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72642D409B0D00C64288 /* DiyStaticElement.swift */; };
  37. A80E72672D409C7D00C64288 /* Template+More.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72662D409C7D00C64288 /* Template+More.swift */; };
  38. A80E726A2D409E5400C64288 /* TSDiyTLYFlowersView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72692D409D9400C64288 /* TSDiyTLYFlowersView.swift */; };
  39. A80E726C2D409E8300C64288 /* TSDiyTLPinkAnimalView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E726B2D409E8000C64288 /* TSDiyTLPinkAnimalView.swift */; };
  40. A80E726F2D40DE2B00C64288 /* TSWallpaperPreviewVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E726E2D40DE2900C64288 /* TSWallpaperPreviewVC.swift */; };
  41. A80E72722D40F86000C64288 /* TSLaunchVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72712D40F86000C64288 /* TSLaunchVC.swift */; };
  42. A80E72772D41EFF900C64288 /* TSEmojisTutorialsVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72762D41EFF700C64288 /* TSEmojisTutorialsVC.swift */; };
  43. A80E72792D42285500C64288 /* TSBootPageVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E72782D42285500C64288 /* TSBootPageVC.swift */; };
  44. A80E73E12D533E5800C64288 /* TSPurchaseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E73D82D533E5800C64288 /* TSPurchaseVC.swift */; };
  45. A80E73E42D533EB000C64288 /* TSPurchaseManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E73E22D533EB000C64288 /* TSPurchaseManager.swift */; };
  46. A80E73E62D5348D000C64288 /* SettingPurchaseTopView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80E73E52D5348CF00C64288 /* SettingPurchaseTopView.swift */; };
  47. A80EDD032D6C282B003CD332 /* TSMarkDownTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD022D6C281E003CD332 /* TSMarkDownTool.swift */; };
  48. A80EDD462D6C3F82003CD332 /* MarkdownEscaping.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD1B2D6C3F82003CD332 /* MarkdownEscaping.swift */; };
  49. A80EDD472D6C3F82003CD332 /* MarkdownItalic.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD202D6C3F82003CD332 /* MarkdownItalic.swift */; };
  50. A80EDD482D6C3F82003CD332 /* MarkdownBold.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD162D6C3F82003CD332 /* MarkdownBold.swift */; };
  51. A80EDD4A2D6C3F82003CD332 /* MarkdownLevelElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD302D6C3F82003CD332 /* MarkdownLevelElement.swift */; };
  52. A80EDD4B2D6C3F82003CD332 /* MarkdownParser+AppKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD142D6C3F82003CD332 /* MarkdownParser+AppKit.swift */; };
  53. A80EDD4C2D6C3F82003CD332 /* Typealias.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD352D6C3F82003CD332 /* Typealias.swift */; };
  54. A80EDD4D2D6C3F82003CD332 /* MarkdownStrikethrough.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD292D6C3F82003CD332 /* MarkdownStrikethrough.swift */; };
  55. A80EDD4E2D6C3F82003CD332 /* MarkdownUnescaping.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD1C2D6C3F82003CD332 /* MarkdownUnescaping.swift */; };
  56. A80EDD4F2D6C3F82003CD332 /* MarkdownParser+UIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD402D6C3F82003CD332 /* MarkdownParser+UIKit.swift */; };
  57. A80EDD502D6C3F82003CD332 /* MarkdownFont+Traits.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD122D6C3F82003CD332 /* MarkdownFont+Traits.swift */; };
  58. A80EDD512D6C3F82003CD332 /* MarkdownCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD182D6C3F82003CD332 /* MarkdownCode.swift */; };
  59. A80EDD522D6C3F82003CD332 /* MarkdownCode+AppKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD0B2D6C3F82003CD332 /* MarkdownCode+AppKit.swift */; };
  60. A80EDD532D6C3F82003CD332 /* MarkdownHeader.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD1E2D6C3F82003CD332 /* MarkdownHeader.swift */; };
  61. A80EDD542D6C3F82003CD332 /* MarkdownQuote.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD272D6C3F82003CD332 /* MarkdownQuote.swift */; };
  62. A80EDD552D6C3F82003CD332 /* UIFont+Traits.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD3E2D6C3F82003CD332 /* UIFont+Traits.swift */; };
  63. A80EDD562D6C3F82003CD332 /* MarkdownHeader+AppKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD0D2D6C3F82003CD332 /* MarkdownHeader+AppKit.swift */; };
  64. A80EDD572D6C3F82003CD332 /* MarkdownCode+UIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD372D6C3F82003CD332 /* MarkdownCode+UIKit.swift */; };
  65. A80EDD582D6C3F82003CD332 /* String+UTF16.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD2C2D6C3F82003CD332 /* String+UTF16.swift */; };
  66. A80EDD592D6C3F82003CD332 /* MarkdownLink+UIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD3B2D6C3F82003CD332 /* MarkdownLink+UIKit.swift */; };
  67. A80EDD5A2D6C3F82003CD332 /* MarkdownParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD342D6C3F82003CD332 /* MarkdownParser.swift */; };
  68. A80EDD5B2D6C3F82003CD332 /* MarkdownCommonElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD2E2D6C3F82003CD332 /* MarkdownCommonElement.swift */; };
  69. A80EDD5C2D6C3F82003CD332 /* MarkdownList.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD252D6C3F82003CD332 /* MarkdownList.swift */; };
  70. A80EDD5D2D6C3F82003CD332 /* MarkdownCodeEscaping.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD1A2D6C3F82003CD332 /* MarkdownCodeEscaping.swift */; };
  71. A80EDD5E2D6C3F82003CD332 /* MarkdownLinkElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD312D6C3F82003CD332 /* MarkdownLinkElement.swift */; };
  72. A80EDD5F2D6C3F82003CD332 /* MarkdownHeader+UIKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD392D6C3F82003CD332 /* MarkdownHeader+UIKit.swift */; };
  73. A80EDD602D6C3F82003CD332 /* MarkdownElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD2F2D6C3F82003CD332 /* MarkdownElement.swift */; };
  74. A80EDD612D6C3F82003CD332 /* MarkdownLink+AppKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD0F2D6C3F82003CD332 /* MarkdownLink+AppKit.swift */; };
  75. A80EDD622D6C3F82003CD332 /* MarkdownLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD232D6C3F82003CD332 /* MarkdownLink.swift */; };
  76. A80EDD632D6C3F82003CD332 /* MarkdownAutomaticLink.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD222D6C3F82003CD332 /* MarkdownAutomaticLink.swift */; };
  77. A80EDD642D6C3F82003CD332 /* MarkdownStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD322D6C3F82003CD332 /* MarkdownStyle.swift */; };
  78. A80EDD682D6C5098003CD332 /* TSChatMsgBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD672D6C507D003CD332 /* TSChatMsgBaseView.swift */; };
  79. A80EDD6A2D6C518E003CD332 /* TSChatMsgToolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDD692D6C5176003CD332 /* TSChatMsgToolView.swift */; };
  80. A80EDDE02D6EB1B9003CD332 /* TSPTPGeneratorCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDDF2D6EB1B8003CD332 /* TSPTPGeneratorCell.swift */; };
  81. A80EDDE22D6EB8D8003CD332 /* TSPTPUploadCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDE12D6EB8C7003CD332 /* TSPTPUploadCell.swift */; };
  82. A80EDDE42D6EB8FA003CD332 /* TSPTPSelectStyleCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDE32D6EB8DC003CD332 /* TSPTPSelectStyleCell.swift */; };
  83. A80EDDE72D6EBFC1003CD332 /* TSPTPGeneratorVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDE62D6EBFBE003CD332 /* TSPTPGeneratorVM.swift */; };
  84. A80EDDEB2D6EC014003CD332 /* TSPhotoToPhotoVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDEA2D6EC012003CD332 /* TSPhotoToPhotoVC.swift */; };
  85. A80EDDF02D6EC045003CD332 /* TSPTPStyleModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDEF2D6EC044003CD332 /* TSPTPStyleModel.swift */; };
  86. A80EDDF62D6EC1ED003CD332 /* TSPhotoToPhotoVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDF52D6EC1E8003CD332 /* TSPhotoToPhotoVM.swift */; };
  87. A80EDDFD2D6EF34F003CD332 /* photo_to_photo_style.json in Resources */ = {isa = PBXBuildFile; fileRef = A80EDDFC2D6EF34C003CD332 /* photo_to_photo_style.json */; };
  88. A80EDE002D6EFD22003CD332 /* TSPhotoPickerManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDDFF2D6EFD20003CD332 /* TSPhotoPickerManager.swift */; };
  89. A80EDE022D6F1CCD003CD332 /* TSPTPGeneratorVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDE012D6F1CCB003CD332 /* TSPTPGeneratorVC.swift */; };
  90. A80EDE062D6F3491003CD332 /* TSPTPBrowseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80EDE052D6F3490003CD332 /* TSPTPBrowseVC.swift */; };
  91. A80EDE082D700395003CD332 /* rotatingAnimation.gif in Resources */ = {isa = PBXBuildFile; fileRef = A80EDE072D700395003CD332 /* rotatingAnimation.gif */; };
  92. A83404C82D9BEC0E00C140E4 /* UIFont+TSEx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404C72D9BEC0700C140E4 /* UIFont+TSEx.swift */; };
  93. A83404CC2D9BEED800C140E4 /* Poppins-BlackItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A83404CB2D9BEED800C140E4 /* Poppins-BlackItalic.ttf */; };
  94. A83404D12D9D16FA00C140E4 /* TSAIPhotoGeneratorBaseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404D02D9D16F800C140E4 /* TSAIPhotoGeneratorBaseVC.swift */; };
  95. A83404D32D9D23FA00C140E4 /* TSGeneratorloadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404D22D9D23CA00C140E4 /* TSGeneratorloadingView.swift */; };
  96. A83404D52D9D28D700C140E4 /* TSAIPhotoBrowseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404D42D9D28CE00C140E4 /* TSAIPhotoBrowseVC.swift */; };
  97. A83404D82D9D34ED00C140E4 /* Kelsi-fill.otf in Resources */ = {isa = PBXBuildFile; fileRef = A83404D62D9D34ED00C140E4 /* Kelsi-fill.otf */; };
  98. A83404D92D9D34ED00C140E4 /* Kelsi-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = A83404D72D9D34ED00C140E4 /* Kelsi-Regular.otf */; };
  99. A83404DB2D9D382200C140E4 /* AccentURW-Reg.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A83404DA2D9D382200C140E4 /* AccentURW-Reg.ttf */; };
  100. A83404DD2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83404DC2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift */; };
  101. A83404FE2DA35BFE00C140E4 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A83404FC2DA35BFE00C140E4 /* Localizable.strings */; };
  102. A83405032DA35CB700C140E4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = A83405012DA35CB700C140E4 /* InfoPlist.strings */; };
  103. A83405202DA3ADA900C140E4 /* TSPhotoSizeHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A834051F2DA3ADA600C140E4 /* TSPhotoSizeHelper.swift */; };
  104. A85E478F2D67115A0018D62D /* TSTextGeneralPictureVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E478E2D6711590018D62D /* TSTextGeneralPictureVC.swift */; };
  105. A85E47922D6728A00018D62D /* TSTextGeneralPictureVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47912D67289F0018D62D /* TSTextGeneralPictureVM.swift */; };
  106. A85E47962D672ADA0018D62D /* TSTextPicGennerateVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47952D672AD90018D62D /* TSTextPicGennerateVC.swift */; };
  107. A85E47982D672AE70018D62D /* TSTextPicGennerateVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47972D672AE40018D62D /* TSTextPicGennerateVM.swift */; };
  108. A85E479B2D6808C40018D62D /* TSBigIconBrowseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E479A2D6808C30018D62D /* TSBigIconBrowseVC.swift */; };
  109. A85E479D2D6809DC0018D62D /* TSBigIconBrowseCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E479C2D6809DA0018D62D /* TSBigIconBrowseCell.swift */; };
  110. A85E479F2D6859FA0018D62D /* TSRandomTextPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E479E2D6859F80018D62D /* TSRandomTextPicker.swift */; };
  111. A85E47BE2D68999B0018D62D /* ShareActivityItemProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47BD2D68999B0018D62D /* ShareActivityItemProvider.swift */; };
  112. A85E47C02D6961BB0018D62D /* TSChatMessageUIModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47BF2D6961B90018D62D /* TSChatMessageUIModel.swift */; };
  113. A85E47C32D6964A50018D62D /* TSMSGAIDefaultHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85E47C22D69646D0018D62D /* TSMSGAIDefaultHeaderView.swift */; };
  114. A85E47C62D697E750018D62D /* SwiftUIX in Frameworks */ = {isa = PBXBuildFile; productRef = A85E47C52D697E750018D62D /* SwiftUIX */; };
  115. A875870F2D81689A00286A66 /* TSPTPEnterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A875870E2D81689600286A66 /* TSPTPEnterView.swift */; };
  116. A87587122D81702700286A66 /* TSUserDefaultData.swift in Sources */ = {isa = PBXBuildFile; fileRef = A87587102D81702700286A66 /* TSUserDefaultData.swift */; };
  117. A87587162D81734300286A66 /* text_to_photo_style.json in Resources */ = {isa = PBXBuildFile; fileRef = A87587152D81733C00286A66 /* text_to_photo_style.json */; };
  118. A87587182D81814500286A66 /* TSAIThinkingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A87587172D81812C00286A66 /* TSAIThinkingView.swift */; };
  119. A899D34A2D827A0E00AB9C1C /* TSChatThinkingModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A899D3492D8279FB00AB9C1C /* TSChatThinkingModel.swift */; };
  120. A89EA64B2D59A588000EB181 /* MessageKit in Frameworks */ = {isa = PBXBuildFile; productRef = A89EA64A2D59A588000EB181 /* MessageKit */; };
  121. A89EA6542D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA64F2D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift */; };
  122. A89EA6552D59A9F4000EB181 /* TSChatMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6502D59A9F4000EB181 /* TSChatMessage.swift */; };
  123. A89EA6562D59A9F4000EB181 /* TSChatUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6522D59A9F4000EB181 /* TSChatUser.swift */; };
  124. A89EA6582D59A9F4000EB181 /* TSLayoutSizeCalculator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA64E2D59A9F4000EB181 /* TSLayoutSizeCalculator.swift */; };
  125. A89EA6592D59A9F4000EB181 /* CustomMessageFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA64C2D59A9F4000EB181 /* CustomMessageFlowLayout.swift */; };
  126. A89EA65F2D59AA11000EB181 /* TSChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA65E2D59AA11000EB181 /* TSChatViewController.swift */; };
  127. A89EA6692D59AA31000EB181 /* CameraInputBarAccessoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6632D59AA31000EB181 /* CameraInputBarAccessoryView.swift */; };
  128. A89EA66B2D59AA31000EB181 /* TSTextMessageContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6662D59AA31000EB181 /* TSTextMessageContentCell.swift */; };
  129. A89EA66C2D59AA31000EB181 /* TSMessageContentCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6652D59AA31000EB181 /* TSMessageContentCell.swift */; };
  130. A89EA66D2D59AA31000EB181 /* TableViewCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6672D59AA31000EB181 /* TableViewCells.swift */; };
  131. A89EA67A2D59D25F000EB181 /* TSAIChatVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6792D59D248000EB181 /* TSAIChatVM.swift */; };
  132. A89EA67D2D59F1AF000EB181 /* StreamPostRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA67C2D59F1AC000EB181 /* StreamPostRequest.swift */; };
  133. A89EA6832D59F4F9000EB181 /* TSChatViewController+ChatDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6822D59F4F1000EB181 /* TSChatViewController+ChatDelegate.swift */; };
  134. A89EA6982D5B1A01000EB181 /* Butterfly🦋.json in Resources */ = {isa = PBXBuildFile; fileRef = A89EA6972D5B19F0000EB181 /* Butterfly🦋.json */; };
  135. A89EA6A32D5B26E3000EB181 /* TSDBAIChatList.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6A22D5B26E3000EB181 /* TSDBAIChatList.swift */; };
  136. A89EA6AC2D5B3EFB000EB181 /* TSRealmManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6AB2D5B3EFA000EB181 /* TSRealmManager.swift */; };
  137. A89EA6B12D5C9D0C000EB181 /* TSAIChatHistoryVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6B02D5C9D0B000EB181 /* TSAIChatHistoryVC.swift */; };
  138. A89EA6B42D5C9D43000EB181 /* TSAIChatHistoryVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6B32D5C9D3D000EB181 /* TSAIChatHistoryVM.swift */; };
  139. A89EA6B82D5D7EE9000EB181 /* TSAIChatHistoryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6B72D5D7EE4000EB181 /* TSAIChatHistoryModel.swift */; };
  140. A89EA6BA2D5DDE5B000EB181 /* TSPageNullView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6B92D5DDE4E000EB181 /* TSPageNullView.swift */; };
  141. A89EA6BC2D5DFB12000EB181 /* TSViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6BB2D5DFB0D000EB181 /* TSViewController.swift */; };
  142. A89EA6BF2D5E03D6000EB181 /* Notification+Ex.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6BE2D5E03D3000EB181 /* Notification+Ex.swift */; };
  143. A89EA6C12D5ED289000EB181 /* TSChatCellConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C02D5ED278000EB181 /* TSChatCellConfig.swift */; };
  144. A89EA6C42D5F40CC000EB181 /* TSChatInputBarVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C32D5F40CB000EB181 /* TSChatInputBarVC.swift */; };
  145. A89EA6C62D5F5C22000EB181 /* TSChatInputFullScreenVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C52D5F5C21000EB181 /* TSChatInputFullScreenVC.swift */; };
  146. A89EA6C82D6359ED000EB181 /* TSChatViewController+VipView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C72D6359EA000EB181 /* TSChatViewController+VipView.swift */; };
  147. A89EA6CA2D642C0A000EB181 /* TSChatViewController+SendMsg.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6C92D642C03000EB181 /* TSChatViewController+SendMsg.swift */; };
  148. A89EA6CC2D642CE2000EB181 /* TSChatViewController+NaviBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6CB2D642CD4000EB181 /* TSChatViewController+NaviBar.swift */; };
  149. A89EA6CF2D6430F3000EB181 /* TSChatViewController+Keyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = A89EA6CE2D6430EE000EB181 /* TSChatViewController+Keyboard.swift */; };
  150. A8BA763C2DA4C225000B6707 /* SwiftUIX in Frameworks */ = {isa = PBXBuildFile; productRef = A8BA763B2DA4C225000B6707 /* SwiftUIX */; };
  151. A8BA763F2DA4C908000B6707 /* TSPTPInputVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BA763E2DA4C906000B6707 /* TSPTPInputVC.swift */; };
  152. A8BA76422DA4C924000B6707 /* TSPTPInputVM.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BA76412DA4C920000B6707 /* TSPTPInputVM.swift */; };
  153. A8BA76452DA4CB9A000B6707 /* TSPTPUploadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BA76442DA4CB99000B6707 /* TSPTPUploadView.swift */; };
  154. A8BA76472DA4CC70000B6707 /* TSPTPSelectStyleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BA76462DA4CC6C000B6707 /* TSPTPSelectStyleView.swift */; };
  155. A8BA764F2DA50B52000B6707 /* CpuMapManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BA764E2DA50B52000B6707 /* CpuMapManager.swift */; };
  156. A8BA76522DA51600000B6707 /* TSPTPImageHintVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BA76512DA515FF000B6707 /* TSPTPImageHintVC.swift */; };
  157. A8BA76572DA61A00000B6707 /* TSUploadPhotoPrivacyAlertVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BA76562DA619FF000B6707 /* TSUploadPhotoPrivacyAlertVC.swift */; };
  158. A8BA765B2DA63E9C000B6707 /* TSClickableLinkLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8BA765A2DA63E9B000B6707 /* TSClickableLinkLabel.swift */; };
  159. A8EEADD42D3E6C660032C5A0 /* Flower💐.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADD32D3E6C610032C5A0 /* Flower💐.json */; };
  160. A8EEADD62D3E6CD80032C5A0 /* Fish🐠.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADD52D3E6CD30032C5A0 /* Fish🐠.json */; };
  161. A8EEADD82D3E74D20032C5A0 /* Pink🩷.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADD72D3E74CB0032C5A0 /* Pink🩷.json */; };
  162. A8EEADDE2D3E75610032C5A0 /* Fruit🍊.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADDD2D3E755C0032C5A0 /* Fruit🍊.json */; };
  163. A8EEADE02D3E75900032C5A0 /* Crystal🔮.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADDF2D3E75870032C5A0 /* Crystal🔮.json */; };
  164. A8EEADE22D3E76110032C5A0 /* Dog🐕.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADE12D3E760C0032C5A0 /* Dog🐕.json */; };
  165. A8EEADE72D3E76860032C5A0 /* Drink🥤.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADE62D3E767E0032C5A0 /* Drink🥤.json */; };
  166. A8EEADE92D3E76D90032C5A0 /* Beauty👸.json in Resources */ = {isa = PBXBuildFile; fileRef = A8EEADE82D3E76D30032C5A0 /* Beauty👸.json */; };
  167. A8F7748B2D38E8B700AA6E93 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774812D38E8B700AA6E93 /* AppDelegate.swift */; };
  168. A8F7748E2D38E8B700AA6E93 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A8F774822D38E8B700AA6E93 /* Assets.xcassets */; };
  169. A8F774902D38E8B700AA6E93 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A8F774852D38E8B700AA6E93 /* LaunchScreen.storyboard */; };
  170. A8F774E02D38EA8C00AA6E93 /* TSCommonTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774C72D38EA8C00AA6E93 /* TSCommonTool.swift */; };
  171. A8F774E12D38EA8C00AA6E93 /* TSFileManagerTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774CA2D38EA8C00AA6E93 /* TSFileManagerTool.swift */; };
  172. A8F775002D38EA8C00AA6E93 /* WindowHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774CD2D38EA8C00AA6E93 /* WindowHelper.swift */; };
  173. A8F775032D38EA8C00AA6E93 /* GlobalImports.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774B42D38EA8C00AA6E93 /* GlobalImports.swift */; };
  174. A8F7750A2D38EA8C00AA6E93 /* TSNetworkTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F774CB2D38EA8C00AA6E93 /* TSNetworkTool.swift */; };
  175. A8F775172D38EB7400AA6E93 /* TSTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775162D38EB7400AA6E93 /* TSTabBarController.swift */; };
  176. A8F775192D38EC6800AA6E93 /* TSEmojisVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775182D38EC6700AA6E93 /* TSEmojisVC.swift */; };
  177. A8F7751B2D38EC9800AA6E93 /* TSGenmojiVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7751A2D38EC9700AA6E93 /* TSGenmojiVC.swift */; };
  178. A8F775252D38ED8300AA6E93 /* TSConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775232D38ED8300AA6E93 /* TSConfig.swift */; };
  179. A8F775352D38FC9A00AA6E93 /* TSViewTool.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775342D38FC9A00AA6E93 /* TSViewTool.swift */; };
  180. A8F775382D390C3C00AA6E93 /* TSNetworkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775372D390C3C00AA6E93 /* TSNetworkManager.swift */; };
  181. A8F7753B2D3918DE00AA6E93 /* TSNetworkManager+Loading.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7753A2D3918D700AA6E93 /* TSNetworkManager+Loading.swift */; };
  182. A8F7753D2D3918F800AA6E93 /* TSNetWork+Business.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7753C2D3918E200AA6E93 /* TSNetWork+Business.swift */; };
  183. A8F7753F2D39340E00AA6E93 /* TSSetingVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7753E2D39340D00AA6E93 /* TSSetingVC.swift */; };
  184. A8F775432D39346400AA6E93 /* TSSetingModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775422D39346100AA6E93 /* TSSetingModel.swift */; };
  185. A8F775452D39347100AA6E93 /* TSSetingViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775442D39346700AA6E93 /* TSSetingViewModel.swift */; };
  186. A8F775492D3935D600AA6E93 /* TSBusinessWebVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F775472D3935D600AA6E93 /* TSBusinessWebVC.swift */; };
  187. A8F7754B2D39376800AA6E93 /* TSSettingListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7754A2D39376700AA6E93 /* TSSettingListView.swift */; };
  188. A8F7754E2D39E59100AA6E93 /* TSGenmojiModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7754D2D39E58B00AA6E93 /* TSGenmojiModel.swift */; };
  189. A8F775502D39ECED00AA6E93 /* PhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7754F2D39ECED00AA6E93 /* PhotoManager.swift */; };
  190. A8F776212D3A3F0200AA6E93 /* TSEmojisChildVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776202D3A3F0100AA6E93 /* TSEmojisChildVC.swift */; };
  191. A8F7762B2D3A70B200AA6E93 /* PaddedLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7762A2D3A70AF00AA6E93 /* PaddedLabel.swift */; };
  192. A8F7762D2D3A74A100AA6E93 /* TSGenmojiGennerateCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7762C2D3A748800AA6E93 /* TSGenmojiGennerateCell.swift */; };
  193. A8F7762F2D3A765400AA6E93 /* TSGenmojiViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7762E2D3A764E00AA6E93 /* TSGenmojiViewModel.swift */; };
  194. A8F776322D3A771400AA6E93 /* TSGenmojiCollectionViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776312D3A771100AA6E93 /* TSGenmojiCollectionViewModel.swift */; };
  195. A8F776352D3A7C2B00AA6E93 /* TSGenmojiColSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776342D3A7C1C00AA6E93 /* TSGenmojiColSectionView.swift */; };
  196. A8F776372D3A806E00AA6E93 /* TSGenmojiItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776362D3A805700AA6E93 /* TSGenmojiItemCell.swift */; };
  197. A8F776392D3B38E600AA6E93 /* TSGenmojiGennerateVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776382D3B38D600AA6E93 /* TSGenmojiGennerateVC.swift */; };
  198. A8F7763C2D3B429B00AA6E93 /* TSCommonloadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7763B2D3B429A00AA6E93 /* TSCommonloadingView.swift */; };
  199. A8F7763F2D3B68E100AA6E93 /* TSGenmojiGennerateViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7763E2D3B68E000AA6E93 /* TSGenmojiGennerateViewModel.swift */; };
  200. A8F776422D3B75FC00AA6E93 /* TSBottomAlertVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776412D3B75EF00AA6E93 /* TSBottomAlertVC.swift */; };
  201. A8F776452D3DE8A800AA6E93 /* TSSmallIconBrowseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776442D3DE8A600AA6E93 /* TSSmallIconBrowseVC.swift */; };
  202. A8F776482D3DE9F600AA6E93 /* TSSmallIconBrowseCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F776472D3DE9C200AA6E93 /* TSSmallIconBrowseCell.swift */; };
  203. A8F7764B2D3E008500AA6E93 /* TSEmojisChildColViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7764A2D3E007100AA6E93 /* TSEmojisChildColViewModel.swift */; };
  204. A8F7764E2D3E00A800AA6E93 /* TSEmojisColViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8F7764D2D3E00A000AA6E93 /* TSEmojisColViewModel.swift */; };
  205. A8FB02B32D3E39A40031A396 /* TSEmojisModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8FB02B22D3E399F0031A396 /* TSEmojisModel.swift */; };
  206. A8FB02B72D3E3A3D0031A396 /* TSEmojisChildViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8FB02B62D3E3A3B0031A396 /* TSEmojisChildViewModel.swift */; };
  207. A8FB02BA2D3E3BB20031A396 /* TSEmojisCoLItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8FB02B92D3E3BB00031A396 /* TSEmojisCoLItemCell.swift */; };
  208. A8FB02D12D3E6B2A0031A396 /* Cat🐱.json in Resources */ = {isa = PBXBuildFile; fileRef = A8FB02D02D3E6B240031A396 /* Cat🐱.json */; };
  209. D34BB2B8FE0DBF83E06A3FC4 /* Pods_AIEmoji.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86FB4D6AEFDDA7A2017F307C /* Pods_AIEmoji.framework */; };
  210. /* End PBXBuildFile section */
  211. /* Begin PBXFileReference section */
  212. 6E77A292B548CD79E381757E /* Pods-AIEmoji.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AIEmoji.release.xcconfig"; path = "Target Support Files/Pods-AIEmoji/Pods-AIEmoji.release.xcconfig"; sourceTree = "<group>"; };
  213. 86FB4D6AEFDDA7A2017F307C /* Pods_AIEmoji.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AIEmoji.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  214. A80327AF2D8139FC00AF7878 /* TSTTPSelectStyleCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTTPSelectStyleCell.swift; sourceTree = "<group>"; };
  215. A80327B22D813D4800AF7878 /* TSTTPInputVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTTPInputVC.swift; sourceTree = "<group>"; };
  216. A80327B52D813D8100AF7878 /* TSTTPInputVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTTPInputVM.swift; sourceTree = "<group>"; };
  217. A80327BE2D81576C00AF7878 /* TSPromptTextView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPromptTextView.swift; sourceTree = "<group>"; };
  218. A80327C02D8157C500AF7878 /* TSTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTitleView.swift; sourceTree = "<group>"; };
  219. A80327C22D81580800AF7878 /* TSTTPStyleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTTPStyleView.swift; sourceTree = "<group>"; };
  220. A80327C42D81582F00AF7878 /* TSGeneralBtnView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGeneralBtnView.swift; sourceTree = "<group>"; };
  221. A80E72192D3F393500C64288 /* DiyStickerModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyStickerModel.swift; sourceTree = "<group>"; };
  222. A80E721D2D3F3A7500C64288 /* DiyElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyElement.swift; sourceTree = "<group>"; };
  223. A80E721F2D3F3A8600C64288 /* DiyElementBaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyElementBaseView.swift; sourceTree = "<group>"; };
  224. A80E72212D3F3A9200C64288 /* DiyStickerElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyStickerElement.swift; sourceTree = "<group>"; };
  225. A80E72232D3F3A9A00C64288 /* DiyTextElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyTextElement.swift; sourceTree = "<group>"; };
  226. A80E72242D3F3A9A00C64288 /* HYHAddImageView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HYHAddImageView.h; sourceTree = "<group>"; };
  227. A80E72252D3F3A9A00C64288 /* HYHAddImageView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HYHAddImageView.m; sourceTree = "<group>"; };
  228. A80E72282D3F3A9C00C64288 /* AIEmoji-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "AIEmoji-Bridging-Header.h"; sourceTree = "<group>"; };
  229. A80E722E2D3F3E0C00C64288 /* TSDiyCanvasView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyCanvasView.swift; sourceTree = "<group>"; };
  230. A80E72332D3F473400C64288 /* DiyPaperTemplate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyPaperTemplate.swift; sourceTree = "<group>"; };
  231. A80E72342D3F473400C64288 /* DiyPaperTemplateBaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyPaperTemplateBaseView.swift; sourceTree = "<group>"; };
  232. A80E72372D3F473B00C64288 /* DiyPaperProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyPaperProtocol.swift; sourceTree = "<group>"; };
  233. A80E723B2D3F4CA700C64288 /* Food🍔.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Food🍔.json"; sourceTree = "<group>"; };
  234. A80E723E2D3F4D3000C64288 /* Universe🌍.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Universe🌍.json"; sourceTree = "<group>"; };
  235. A80E72452D3F4EED00C64288 /* sticker.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = sticker.json; sourceTree = "<group>"; };
  236. A80E72472D3F4F0500C64288 /* templates.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = templates.json; sourceTree = "<group>"; };
  237. A80E724E2D3F6D6000C64288 /* DiyFixedTextElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyFixedTextElement.swift; sourceTree = "<group>"; };
  238. A80E72522D3F985D00C64288 /* TSWallpaperVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSWallpaperVC.swift; sourceTree = "<group>"; };
  239. A80E72552D3F98D600C64288 /* TSDiyKeyboardViewVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyKeyboardViewVC.swift; sourceTree = "<group>"; };
  240. A80E72582D3FA65E00C64288 /* TSWallpaperViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSWallpaperViewModel.swift; sourceTree = "<group>"; };
  241. A80E725B2D3FB09100C64288 /* TSKeyboardView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSKeyboardView.swift; sourceTree = "<group>"; };
  242. A80E72622D40924500C64288 /* TSDiyKeyboardVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyKeyboardVM.swift; sourceTree = "<group>"; };
  243. A80E72642D409B0D00C64288 /* DiyStaticElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiyStaticElement.swift; sourceTree = "<group>"; };
  244. A80E72662D409C7D00C64288 /* Template+More.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Template+More.swift"; sourceTree = "<group>"; };
  245. A80E72692D409D9400C64288 /* TSDiyTLYFlowersView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyTLYFlowersView.swift; sourceTree = "<group>"; };
  246. A80E726B2D409E8000C64288 /* TSDiyTLPinkAnimalView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDiyTLPinkAnimalView.swift; sourceTree = "<group>"; };
  247. A80E726E2D40DE2900C64288 /* TSWallpaperPreviewVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSWallpaperPreviewVC.swift; sourceTree = "<group>"; };
  248. A80E72712D40F86000C64288 /* TSLaunchVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSLaunchVC.swift; sourceTree = "<group>"; };
  249. A80E72762D41EFF700C64288 /* TSEmojisTutorialsVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisTutorialsVC.swift; sourceTree = "<group>"; };
  250. A80E72782D42285500C64288 /* TSBootPageVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBootPageVC.swift; sourceTree = "<group>"; };
  251. A80E73D82D533E5800C64288 /* TSPurchaseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPurchaseVC.swift; sourceTree = "<group>"; };
  252. A80E73E22D533EB000C64288 /* TSPurchaseManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPurchaseManager.swift; sourceTree = "<group>"; };
  253. A80E73E52D5348CF00C64288 /* SettingPurchaseTopView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingPurchaseTopView.swift; sourceTree = "<group>"; };
  254. A80EDD022D6C281E003CD332 /* TSMarkDownTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSMarkDownTool.swift; sourceTree = "<group>"; };
  255. A80EDD042D6C3F82003CD332 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  256. A80EDD052D6C3F82003CD332 /* MarkdownKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MarkdownKit.h; sourceTree = "<group>"; };
  257. A80EDD072D6C3F82003CD332 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  258. A80EDD082D6C3F82003CD332 /* MarkdownKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MarkdownKit.h; sourceTree = "<group>"; };
  259. A80EDD0B2D6C3F82003CD332 /* MarkdownCode+AppKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownCode+AppKit.swift"; sourceTree = "<group>"; };
  260. A80EDD0D2D6C3F82003CD332 /* MarkdownHeader+AppKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownHeader+AppKit.swift"; sourceTree = "<group>"; };
  261. A80EDD0F2D6C3F82003CD332 /* MarkdownLink+AppKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownLink+AppKit.swift"; sourceTree = "<group>"; };
  262. A80EDD122D6C3F82003CD332 /* MarkdownFont+Traits.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownFont+Traits.swift"; sourceTree = "<group>"; };
  263. A80EDD142D6C3F82003CD332 /* MarkdownParser+AppKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownParser+AppKit.swift"; sourceTree = "<group>"; };
  264. A80EDD162D6C3F82003CD332 /* MarkdownBold.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownBold.swift; sourceTree = "<group>"; };
  265. A80EDD182D6C3F82003CD332 /* MarkdownCode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownCode.swift; sourceTree = "<group>"; };
  266. A80EDD1A2D6C3F82003CD332 /* MarkdownCodeEscaping.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownCodeEscaping.swift; sourceTree = "<group>"; };
  267. A80EDD1B2D6C3F82003CD332 /* MarkdownEscaping.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownEscaping.swift; sourceTree = "<group>"; };
  268. A80EDD1C2D6C3F82003CD332 /* MarkdownUnescaping.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownUnescaping.swift; sourceTree = "<group>"; };
  269. A80EDD1E2D6C3F82003CD332 /* MarkdownHeader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownHeader.swift; sourceTree = "<group>"; };
  270. A80EDD202D6C3F82003CD332 /* MarkdownItalic.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownItalic.swift; sourceTree = "<group>"; };
  271. A80EDD222D6C3F82003CD332 /* MarkdownAutomaticLink.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownAutomaticLink.swift; sourceTree = "<group>"; };
  272. A80EDD232D6C3F82003CD332 /* MarkdownLink.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownLink.swift; sourceTree = "<group>"; };
  273. A80EDD252D6C3F82003CD332 /* MarkdownList.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownList.swift; sourceTree = "<group>"; };
  274. A80EDD272D6C3F82003CD332 /* MarkdownQuote.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownQuote.swift; sourceTree = "<group>"; };
  275. A80EDD292D6C3F82003CD332 /* MarkdownStrikethrough.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownStrikethrough.swift; sourceTree = "<group>"; };
  276. A80EDD2C2D6C3F82003CD332 /* String+UTF16.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+UTF16.swift"; sourceTree = "<group>"; };
  277. A80EDD2E2D6C3F82003CD332 /* MarkdownCommonElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownCommonElement.swift; sourceTree = "<group>"; };
  278. A80EDD2F2D6C3F82003CD332 /* MarkdownElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownElement.swift; sourceTree = "<group>"; };
  279. A80EDD302D6C3F82003CD332 /* MarkdownLevelElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownLevelElement.swift; sourceTree = "<group>"; };
  280. A80EDD312D6C3F82003CD332 /* MarkdownLinkElement.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownLinkElement.swift; sourceTree = "<group>"; };
  281. A80EDD322D6C3F82003CD332 /* MarkdownStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownStyle.swift; sourceTree = "<group>"; };
  282. A80EDD342D6C3F82003CD332 /* MarkdownParser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarkdownParser.swift; sourceTree = "<group>"; };
  283. A80EDD352D6C3F82003CD332 /* Typealias.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Typealias.swift; sourceTree = "<group>"; };
  284. A80EDD372D6C3F82003CD332 /* MarkdownCode+UIKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownCode+UIKit.swift"; sourceTree = "<group>"; };
  285. A80EDD392D6C3F82003CD332 /* MarkdownHeader+UIKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownHeader+UIKit.swift"; sourceTree = "<group>"; };
  286. A80EDD3B2D6C3F82003CD332 /* MarkdownLink+UIKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownLink+UIKit.swift"; sourceTree = "<group>"; };
  287. A80EDD3E2D6C3F82003CD332 /* UIFont+Traits.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIFont+Traits.swift"; sourceTree = "<group>"; };
  288. A80EDD402D6C3F82003CD332 /* MarkdownParser+UIKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "MarkdownParser+UIKit.swift"; sourceTree = "<group>"; };
  289. A80EDD672D6C507D003CD332 /* TSChatMsgBaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatMsgBaseView.swift; sourceTree = "<group>"; };
  290. A80EDD692D6C5176003CD332 /* TSChatMsgToolView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatMsgToolView.swift; sourceTree = "<group>"; };
  291. A80EDDDF2D6EB1B8003CD332 /* TSPTPGeneratorCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPGeneratorCell.swift; sourceTree = "<group>"; };
  292. A80EDDE12D6EB8C7003CD332 /* TSPTPUploadCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPUploadCell.swift; sourceTree = "<group>"; };
  293. A80EDDE32D6EB8DC003CD332 /* TSPTPSelectStyleCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPSelectStyleCell.swift; sourceTree = "<group>"; };
  294. A80EDDE62D6EBFBE003CD332 /* TSPTPGeneratorVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPGeneratorVM.swift; sourceTree = "<group>"; };
  295. A80EDDEA2D6EC012003CD332 /* TSPhotoToPhotoVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPhotoToPhotoVC.swift; sourceTree = "<group>"; };
  296. A80EDDEF2D6EC044003CD332 /* TSPTPStyleModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPStyleModel.swift; sourceTree = "<group>"; };
  297. A80EDDF52D6EC1E8003CD332 /* TSPhotoToPhotoVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPhotoToPhotoVM.swift; sourceTree = "<group>"; };
  298. A80EDDFC2D6EF34C003CD332 /* photo_to_photo_style.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = photo_to_photo_style.json; sourceTree = "<group>"; };
  299. A80EDDFF2D6EFD20003CD332 /* TSPhotoPickerManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPhotoPickerManager.swift; sourceTree = "<group>"; };
  300. A80EDE012D6F1CCB003CD332 /* TSPTPGeneratorVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPGeneratorVC.swift; sourceTree = "<group>"; };
  301. A80EDE052D6F3490003CD332 /* TSPTPBrowseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPBrowseVC.swift; sourceTree = "<group>"; };
  302. A80EDE072D700395003CD332 /* rotatingAnimation.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = rotatingAnimation.gif; sourceTree = "<group>"; };
  303. A83404C72D9BEC0700C140E4 /* UIFont+TSEx.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIFont+TSEx.swift"; sourceTree = "<group>"; };
  304. A83404CB2D9BEED800C140E4 /* Poppins-BlackItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-BlackItalic.ttf"; sourceTree = "<group>"; };
  305. A83404D02D9D16F800C140E4 /* TSAIPhotoGeneratorBaseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIPhotoGeneratorBaseVC.swift; sourceTree = "<group>"; };
  306. A83404D22D9D23CA00C140E4 /* TSGeneratorloadingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGeneratorloadingView.swift; sourceTree = "<group>"; };
  307. A83404D42D9D28CE00C140E4 /* TSAIPhotoBrowseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIPhotoBrowseVC.swift; sourceTree = "<group>"; };
  308. A83404D62D9D34ED00C140E4 /* Kelsi-fill.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Kelsi-fill.otf"; sourceTree = "<group>"; };
  309. A83404D72D9D34ED00C140E4 /* Kelsi-Regular.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Kelsi-Regular.otf"; sourceTree = "<group>"; };
  310. A83404DA2D9D382200C140E4 /* AccentURW-Reg.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "AccentURW-Reg.ttf"; sourceTree = "<group>"; };
  311. A83404DC2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImagesAnimateScrollView.swift; sourceTree = "<group>"; };
  312. A83404FD2DA35BFE00C140E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  313. A83405022DA35CB700C140E4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  314. A83405052DA3717300C140E4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  315. A83405062DA3717300C140E4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  316. A83405072DA3717300C140E4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  317. A83405092DA381A100C140E4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/LaunchScreen.strings; sourceTree = "<group>"; };
  318. A834050A2DA381A100C140E4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  319. A834050B2DA381A100C140E4 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  320. A834050C2DA381AD00C140E4 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/LaunchScreen.strings; sourceTree = "<group>"; };
  321. A834050D2DA381AE00C140E4 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  322. A834050E2DA381AE00C140E4 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  323. A834050F2DA3826000C140E4 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  324. A83405102DA3826000C140E4 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  325. A83405112DA3826000C140E4 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  326. A83405122DA3826600C140E4 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  327. A83405132DA3826600C140E4 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  328. A83405142DA3826600C140E4 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  329. A83405152DA3827C00C140E4 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/LaunchScreen.strings; sourceTree = "<group>"; };
  330. A83405162DA3827C00C140E4 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  331. A83405172DA3827C00C140E4 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
  332. A83405182DA3828E00C140E4 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/LaunchScreen.strings; sourceTree = "<group>"; };
  333. A83405192DA3828E00C140E4 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  334. A834051A2DA3828E00C140E4 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  335. A834051F2DA3ADA600C140E4 /* TSPhotoSizeHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPhotoSizeHelper.swift; sourceTree = "<group>"; };
  336. A85E478E2D6711590018D62D /* TSTextGeneralPictureVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextGeneralPictureVC.swift; sourceTree = "<group>"; };
  337. A85E47912D67289F0018D62D /* TSTextGeneralPictureVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextGeneralPictureVM.swift; sourceTree = "<group>"; };
  338. A85E47952D672AD90018D62D /* TSTextPicGennerateVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextPicGennerateVC.swift; sourceTree = "<group>"; };
  339. A85E47972D672AE40018D62D /* TSTextPicGennerateVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextPicGennerateVM.swift; sourceTree = "<group>"; };
  340. A85E479A2D6808C30018D62D /* TSBigIconBrowseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBigIconBrowseVC.swift; sourceTree = "<group>"; };
  341. A85E479C2D6809DA0018D62D /* TSBigIconBrowseCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBigIconBrowseCell.swift; sourceTree = "<group>"; };
  342. A85E479E2D6859F80018D62D /* TSRandomTextPicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSRandomTextPicker.swift; sourceTree = "<group>"; };
  343. A85E47BD2D68999B0018D62D /* ShareActivityItemProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareActivityItemProvider.swift; sourceTree = "<group>"; };
  344. A85E47BF2D6961B90018D62D /* TSChatMessageUIModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatMessageUIModel.swift; sourceTree = "<group>"; };
  345. A85E47C22D69646D0018D62D /* TSMSGAIDefaultHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSMSGAIDefaultHeaderView.swift; sourceTree = "<group>"; };
  346. A875870E2D81689600286A66 /* TSPTPEnterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPEnterView.swift; sourceTree = "<group>"; };
  347. A87587102D81702700286A66 /* TSUserDefaultData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSUserDefaultData.swift; sourceTree = "<group>"; };
  348. A87587152D81733C00286A66 /* text_to_photo_style.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = text_to_photo_style.json; sourceTree = "<group>"; };
  349. A87587172D81812C00286A66 /* TSAIThinkingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIThinkingView.swift; sourceTree = "<group>"; };
  350. A899D3492D8279FB00AB9C1C /* TSChatThinkingModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatThinkingModel.swift; sourceTree = "<group>"; };
  351. A89EA64C2D59A9F4000EB181 /* CustomMessageFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomMessageFlowLayout.swift; sourceTree = "<group>"; };
  352. A89EA64E2D59A9F4000EB181 /* TSLayoutSizeCalculator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSLayoutSizeCalculator.swift; sourceTree = "<group>"; };
  353. A89EA64F2D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextLayoutSizeCalculator.swift; sourceTree = "<group>"; };
  354. A89EA6502D59A9F4000EB181 /* TSChatMessage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatMessage.swift; sourceTree = "<group>"; };
  355. A89EA6522D59A9F4000EB181 /* TSChatUser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatUser.swift; sourceTree = "<group>"; };
  356. A89EA65E2D59AA11000EB181 /* TSChatViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatViewController.swift; sourceTree = "<group>"; };
  357. A89EA6632D59AA31000EB181 /* CameraInputBarAccessoryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CameraInputBarAccessoryView.swift; sourceTree = "<group>"; };
  358. A89EA6652D59AA31000EB181 /* TSMessageContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSMessageContentCell.swift; sourceTree = "<group>"; };
  359. A89EA6662D59AA31000EB181 /* TSTextMessageContentCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTextMessageContentCell.swift; sourceTree = "<group>"; };
  360. A89EA6672D59AA31000EB181 /* TableViewCells.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TableViewCells.swift; sourceTree = "<group>"; };
  361. A89EA6792D59D248000EB181 /* TSAIChatVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIChatVM.swift; sourceTree = "<group>"; };
  362. A89EA67C2D59F1AC000EB181 /* StreamPostRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StreamPostRequest.swift; sourceTree = "<group>"; };
  363. A89EA6822D59F4F1000EB181 /* TSChatViewController+ChatDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+ChatDelegate.swift"; sourceTree = "<group>"; };
  364. A89EA6972D5B19F0000EB181 /* Butterfly🦋.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Butterfly🦋.json"; sourceTree = "<group>"; };
  365. A89EA6A22D5B26E3000EB181 /* TSDBAIChatList.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSDBAIChatList.swift; sourceTree = "<group>"; };
  366. A89EA6AB2D5B3EFA000EB181 /* TSRealmManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSRealmManager.swift; sourceTree = "<group>"; };
  367. A89EA6B02D5C9D0B000EB181 /* TSAIChatHistoryVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIChatHistoryVC.swift; sourceTree = "<group>"; };
  368. A89EA6B32D5C9D3D000EB181 /* TSAIChatHistoryVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIChatHistoryVM.swift; sourceTree = "<group>"; };
  369. A89EA6B72D5D7EE4000EB181 /* TSAIChatHistoryModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSAIChatHistoryModel.swift; sourceTree = "<group>"; };
  370. A89EA6B92D5DDE4E000EB181 /* TSPageNullView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPageNullView.swift; sourceTree = "<group>"; };
  371. A89EA6BB2D5DFB0D000EB181 /* TSViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSViewController.swift; sourceTree = "<group>"; };
  372. A89EA6BE2D5E03D3000EB181 /* Notification+Ex.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Notification+Ex.swift"; sourceTree = "<group>"; };
  373. A89EA6C02D5ED278000EB181 /* TSChatCellConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatCellConfig.swift; sourceTree = "<group>"; };
  374. A89EA6C32D5F40CB000EB181 /* TSChatInputBarVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatInputBarVC.swift; sourceTree = "<group>"; };
  375. A89EA6C52D5F5C21000EB181 /* TSChatInputFullScreenVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSChatInputFullScreenVC.swift; sourceTree = "<group>"; };
  376. A89EA6C72D6359EA000EB181 /* TSChatViewController+VipView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+VipView.swift"; sourceTree = "<group>"; };
  377. A89EA6C92D642C03000EB181 /* TSChatViewController+SendMsg.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+SendMsg.swift"; sourceTree = "<group>"; };
  378. A89EA6CB2D642CD4000EB181 /* TSChatViewController+NaviBar.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+NaviBar.swift"; sourceTree = "<group>"; };
  379. A89EA6CE2D6430EE000EB181 /* TSChatViewController+Keyboard.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSChatViewController+Keyboard.swift"; sourceTree = "<group>"; };
  380. A8BA763E2DA4C906000B6707 /* TSPTPInputVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPInputVC.swift; sourceTree = "<group>"; };
  381. A8BA76412DA4C920000B6707 /* TSPTPInputVM.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPInputVM.swift; sourceTree = "<group>"; };
  382. A8BA76442DA4CB99000B6707 /* TSPTPUploadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPUploadView.swift; sourceTree = "<group>"; };
  383. A8BA76462DA4CC6C000B6707 /* TSPTPSelectStyleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPSelectStyleView.swift; sourceTree = "<group>"; };
  384. A8BA764A2DA4F689000B6707 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  385. A8BA764B2DA4F689000B6707 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
  386. A8BA764C2DA4F689000B6707 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = "<group>"; };
  387. A8BA764E2DA50B52000B6707 /* CpuMapManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CpuMapManager.swift; sourceTree = "<group>"; };
  388. A8BA76512DA515FF000B6707 /* TSPTPImageHintVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSPTPImageHintVC.swift; sourceTree = "<group>"; };
  389. A8BA76562DA619FF000B6707 /* TSUploadPhotoPrivacyAlertVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSUploadPhotoPrivacyAlertVC.swift; sourceTree = "<group>"; };
  390. A8BA765A2DA63E9B000B6707 /* TSClickableLinkLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSClickableLinkLabel.swift; sourceTree = "<group>"; };
  391. A8EEADD32D3E6C610032C5A0 /* Flower💐.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Flower💐.json"; sourceTree = "<group>"; };
  392. A8EEADD52D3E6CD30032C5A0 /* Fish🐠.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Fish🐠.json"; sourceTree = "<group>"; };
  393. A8EEADD72D3E74CB0032C5A0 /* Pink🩷.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Pink🩷.json"; sourceTree = "<group>"; };
  394. A8EEADDD2D3E755C0032C5A0 /* Fruit🍊.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Fruit🍊.json"; sourceTree = "<group>"; };
  395. A8EEADDF2D3E75870032C5A0 /* Crystal🔮.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Crystal🔮.json"; sourceTree = "<group>"; };
  396. A8EEADE12D3E760C0032C5A0 /* Dog🐕.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Dog🐕.json"; sourceTree = "<group>"; };
  397. A8EEADE62D3E767E0032C5A0 /* Drink🥤.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Drink🥤.json"; sourceTree = "<group>"; };
  398. A8EEADE82D3E76D30032C5A0 /* Beauty👸.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Beauty👸.json"; sourceTree = "<group>"; };
  399. A8F774692D38E8B000AA6E93 /* AIEmoji.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AIEmoji.app; sourceTree = BUILT_PRODUCTS_DIR; };
  400. A8F774812D38E8B700AA6E93 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  401. A8F774822D38E8B700AA6E93 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  402. A8F774832D38E8B700AA6E93 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  403. A8F774842D38E8B700AA6E93 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  404. A8F774B42D38EA8C00AA6E93 /* GlobalImports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GlobalImports.swift; sourceTree = "<group>"; };
  405. A8F774C72D38EA8C00AA6E93 /* TSCommonTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSCommonTool.swift; sourceTree = "<group>"; };
  406. A8F774CA2D38EA8C00AA6E93 /* TSFileManagerTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSFileManagerTool.swift; sourceTree = "<group>"; };
  407. A8F774CB2D38EA8C00AA6E93 /* TSNetworkTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSNetworkTool.swift; sourceTree = "<group>"; };
  408. A8F774CD2D38EA8C00AA6E93 /* WindowHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowHelper.swift; sourceTree = "<group>"; };
  409. A8F775162D38EB7400AA6E93 /* TSTabBarController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSTabBarController.swift; sourceTree = "<group>"; };
  410. A8F775182D38EC6700AA6E93 /* TSEmojisVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisVC.swift; sourceTree = "<group>"; };
  411. A8F7751A2D38EC9700AA6E93 /* TSGenmojiVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiVC.swift; sourceTree = "<group>"; };
  412. A8F775232D38ED8300AA6E93 /* TSConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSConfig.swift; sourceTree = "<group>"; };
  413. A8F775342D38FC9A00AA6E93 /* TSViewTool.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSViewTool.swift; sourceTree = "<group>"; };
  414. A8F775372D390C3C00AA6E93 /* TSNetworkManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSNetworkManager.swift; sourceTree = "<group>"; };
  415. A8F7753A2D3918D700AA6E93 /* TSNetworkManager+Loading.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSNetworkManager+Loading.swift"; sourceTree = "<group>"; };
  416. A8F7753C2D3918E200AA6E93 /* TSNetWork+Business.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "TSNetWork+Business.swift"; sourceTree = "<group>"; };
  417. A8F7753E2D39340D00AA6E93 /* TSSetingVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSetingVC.swift; sourceTree = "<group>"; };
  418. A8F775422D39346100AA6E93 /* TSSetingModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSetingModel.swift; sourceTree = "<group>"; };
  419. A8F775442D39346700AA6E93 /* TSSetingViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSetingViewModel.swift; sourceTree = "<group>"; };
  420. A8F775472D3935D600AA6E93 /* TSBusinessWebVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBusinessWebVC.swift; sourceTree = "<group>"; };
  421. A8F7754A2D39376700AA6E93 /* TSSettingListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSettingListView.swift; sourceTree = "<group>"; };
  422. A8F7754D2D39E58B00AA6E93 /* TSGenmojiModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiModel.swift; sourceTree = "<group>"; };
  423. A8F7754F2D39ECED00AA6E93 /* PhotoManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhotoManager.swift; sourceTree = "<group>"; };
  424. A8F776202D3A3F0100AA6E93 /* TSEmojisChildVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisChildVC.swift; sourceTree = "<group>"; };
  425. A8F7762A2D3A70AF00AA6E93 /* PaddedLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PaddedLabel.swift; sourceTree = "<group>"; };
  426. A8F7762C2D3A748800AA6E93 /* TSGenmojiGennerateCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiGennerateCell.swift; sourceTree = "<group>"; };
  427. A8F7762E2D3A764E00AA6E93 /* TSGenmojiViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiViewModel.swift; sourceTree = "<group>"; };
  428. A8F776312D3A771100AA6E93 /* TSGenmojiCollectionViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiCollectionViewModel.swift; sourceTree = "<group>"; };
  429. A8F776342D3A7C1C00AA6E93 /* TSGenmojiColSectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiColSectionView.swift; sourceTree = "<group>"; };
  430. A8F776362D3A805700AA6E93 /* TSGenmojiItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiItemCell.swift; sourceTree = "<group>"; };
  431. A8F776382D3B38D600AA6E93 /* TSGenmojiGennerateVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiGennerateVC.swift; sourceTree = "<group>"; };
  432. A8F7763B2D3B429A00AA6E93 /* TSCommonloadingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSCommonloadingView.swift; sourceTree = "<group>"; };
  433. A8F7763E2D3B68E000AA6E93 /* TSGenmojiGennerateViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSGenmojiGennerateViewModel.swift; sourceTree = "<group>"; };
  434. A8F776412D3B75EF00AA6E93 /* TSBottomAlertVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSBottomAlertVC.swift; sourceTree = "<group>"; };
  435. A8F776442D3DE8A600AA6E93 /* TSSmallIconBrowseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSmallIconBrowseVC.swift; sourceTree = "<group>"; };
  436. A8F776472D3DE9C200AA6E93 /* TSSmallIconBrowseCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSSmallIconBrowseCell.swift; sourceTree = "<group>"; };
  437. A8F7764A2D3E007100AA6E93 /* TSEmojisChildColViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisChildColViewModel.swift; sourceTree = "<group>"; };
  438. A8F7764D2D3E00A000AA6E93 /* TSEmojisColViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisColViewModel.swift; sourceTree = "<group>"; };
  439. A8FB02B22D3E399F0031A396 /* TSEmojisModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisModel.swift; sourceTree = "<group>"; };
  440. A8FB02B62D3E3A3B0031A396 /* TSEmojisChildViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisChildViewModel.swift; sourceTree = "<group>"; };
  441. A8FB02B92D3E3BB00031A396 /* TSEmojisCoLItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TSEmojisCoLItemCell.swift; sourceTree = "<group>"; };
  442. A8FB02D02D3E6B240031A396 /* Cat🐱.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "Cat🐱.json"; sourceTree = "<group>"; };
  443. CA9B99CBEC45A6004629E790 /* Pods-AIEmoji.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AIEmoji.debug.xcconfig"; path = "Target Support Files/Pods-AIEmoji/Pods-AIEmoji.debug.xcconfig"; sourceTree = "<group>"; };
  444. /* End PBXFileReference section */
  445. /* Begin PBXFrameworksBuildPhase section */
  446. A8F774662D38E8B000AA6E93 /* Frameworks */ = {
  447. isa = PBXFrameworksBuildPhase;
  448. buildActionMask = 2147483647;
  449. files = (
  450. A85E47C62D697E750018D62D /* SwiftUIX in Frameworks */,
  451. A89EA64B2D59A588000EB181 /* MessageKit in Frameworks */,
  452. D34BB2B8FE0DBF83E06A3FC4 /* Pods_AIEmoji.framework in Frameworks */,
  453. A8BA763C2DA4C225000B6707 /* SwiftUIX in Frameworks */,
  454. );
  455. runOnlyForDeploymentPostprocessing = 0;
  456. };
  457. /* End PBXFrameworksBuildPhase section */
  458. /* Begin PBXGroup section */
  459. 406F872E527C21AB2B2F0859 /* Pods */ = {
  460. isa = PBXGroup;
  461. children = (
  462. CA9B99CBEC45A6004629E790 /* Pods-AIEmoji.debug.xcconfig */,
  463. 6E77A292B548CD79E381757E /* Pods-AIEmoji.release.xcconfig */,
  464. );
  465. path = Pods;
  466. sourceTree = "<group>";
  467. };
  468. 97C7E956DF0731529C52523E /* Frameworks */ = {
  469. isa = PBXGroup;
  470. children = (
  471. 86FB4D6AEFDDA7A2017F307C /* Pods_AIEmoji.framework */,
  472. );
  473. name = Frameworks;
  474. sourceTree = "<group>";
  475. };
  476. A80327AE2D8139F200AF7878 /* View */ = {
  477. isa = PBXGroup;
  478. children = (
  479. A80327AF2D8139FC00AF7878 /* TSTTPSelectStyleCell.swift */,
  480. );
  481. path = View;
  482. sourceTree = "<group>";
  483. };
  484. A80327B12D813D1B00AF7878 /* TSTTPInputVC */ = {
  485. isa = PBXGroup;
  486. children = (
  487. A80327BD2D81576700AF7878 /* View */,
  488. A80327B42D813D7900AF7878 /* VM */,
  489. A80327B22D813D4800AF7878 /* TSTTPInputVC.swift */,
  490. );
  491. path = TSTTPInputVC;
  492. sourceTree = "<group>";
  493. };
  494. A80327B42D813D7900AF7878 /* VM */ = {
  495. isa = PBXGroup;
  496. children = (
  497. A80327B52D813D8100AF7878 /* TSTTPInputVM.swift */,
  498. );
  499. path = VM;
  500. sourceTree = "<group>";
  501. };
  502. A80327BD2D81576700AF7878 /* View */ = {
  503. isa = PBXGroup;
  504. children = (
  505. A875870E2D81689600286A66 /* TSPTPEnterView.swift */,
  506. A80327C42D81582F00AF7878 /* TSGeneralBtnView.swift */,
  507. A80327C22D81580800AF7878 /* TSTTPStyleView.swift */,
  508. A80327C02D8157C500AF7878 /* TSTitleView.swift */,
  509. A80327BE2D81576C00AF7878 /* TSPromptTextView.swift */,
  510. );
  511. path = View;
  512. sourceTree = "<group>";
  513. };
  514. A80E72182D3F390A00C64288 /* DiySticker */ = {
  515. isa = PBXGroup;
  516. children = (
  517. A80E72192D3F393500C64288 /* DiyStickerModel.swift */,
  518. );
  519. path = DiySticker;
  520. sourceTree = "<group>";
  521. };
  522. A80E721B2D3F3A3E00C64288 /* DiyWallpaper */ = {
  523. isa = PBXGroup;
  524. children = (
  525. A80E72322D3F471F00C64288 /* Templates */,
  526. A80E721C2D3F3A5600C64288 /* Elemnet */,
  527. A80E72182D3F390A00C64288 /* DiySticker */,
  528. );
  529. path = DiyWallpaper;
  530. sourceTree = "<group>";
  531. };
  532. A80E721C2D3F3A5600C64288 /* Elemnet */ = {
  533. isa = PBXGroup;
  534. children = (
  535. A80E721D2D3F3A7500C64288 /* DiyElement.swift */,
  536. A80E721F2D3F3A8600C64288 /* DiyElementBaseView.swift */,
  537. A80E72642D409B0D00C64288 /* DiyStaticElement.swift */,
  538. A80E72212D3F3A9200C64288 /* DiyStickerElement.swift */,
  539. A80E724E2D3F6D6000C64288 /* DiyFixedTextElement.swift */,
  540. A80E72232D3F3A9A00C64288 /* DiyTextElement.swift */,
  541. A80E72242D3F3A9A00C64288 /* HYHAddImageView.h */,
  542. A80E72252D3F3A9A00C64288 /* HYHAddImageView.m */,
  543. A80E72282D3F3A9C00C64288 /* AIEmoji-Bridging-Header.h */,
  544. );
  545. path = Elemnet;
  546. sourceTree = "<group>";
  547. };
  548. A80E72322D3F471F00C64288 /* Templates */ = {
  549. isa = PBXGroup;
  550. children = (
  551. A80E72682D409D6600C64288 /* StaticTemplates */,
  552. A80E72662D409C7D00C64288 /* Template+More.swift */,
  553. A80E72332D3F473400C64288 /* DiyPaperTemplate.swift */,
  554. A80E72372D3F473B00C64288 /* DiyPaperProtocol.swift */,
  555. A80E72342D3F473400C64288 /* DiyPaperTemplateBaseView.swift */,
  556. );
  557. path = Templates;
  558. sourceTree = "<group>";
  559. };
  560. A80E72442D3F4EDC00C64288 /* Json */ = {
  561. isa = PBXGroup;
  562. children = (
  563. );
  564. path = Json;
  565. sourceTree = "<group>";
  566. };
  567. A80E72512D3F984700C64288 /* TSDiyKeyboardVC */ = {
  568. isa = PBXGroup;
  569. children = (
  570. A80E72572D3FA65400C64288 /* ViewModel */,
  571. A80E72522D3F985D00C64288 /* TSWallpaperVC.swift */,
  572. );
  573. path = TSDiyKeyboardVC;
  574. sourceTree = "<group>";
  575. };
  576. A80E72542D3F98CF00C64288 /* TSDiyKeyboardViewVC */ = {
  577. isa = PBXGroup;
  578. children = (
  579. A80E72612D40924000C64288 /* VM */,
  580. A80E72602D4091FF00C64288 /* View */,
  581. A80E72552D3F98D600C64288 /* TSDiyKeyboardViewVC.swift */,
  582. );
  583. path = TSDiyKeyboardViewVC;
  584. sourceTree = "<group>";
  585. };
  586. A80E72572D3FA65400C64288 /* ViewModel */ = {
  587. isa = PBXGroup;
  588. children = (
  589. A80E72582D3FA65E00C64288 /* TSWallpaperViewModel.swift */,
  590. );
  591. path = ViewModel;
  592. sourceTree = "<group>";
  593. };
  594. A80E72602D4091FF00C64288 /* View */ = {
  595. isa = PBXGroup;
  596. children = (
  597. A80E725B2D3FB09100C64288 /* TSKeyboardView.swift */,
  598. A80E722E2D3F3E0C00C64288 /* TSDiyCanvasView.swift */,
  599. );
  600. path = View;
  601. sourceTree = "<group>";
  602. };
  603. A80E72612D40924000C64288 /* VM */ = {
  604. isa = PBXGroup;
  605. children = (
  606. A80E72622D40924500C64288 /* TSDiyKeyboardVM.swift */,
  607. );
  608. path = VM;
  609. sourceTree = "<group>";
  610. };
  611. A80E72682D409D6600C64288 /* StaticTemplates */ = {
  612. isa = PBXGroup;
  613. children = (
  614. A80E72692D409D9400C64288 /* TSDiyTLYFlowersView.swift */,
  615. A80E726B2D409E8000C64288 /* TSDiyTLPinkAnimalView.swift */,
  616. );
  617. path = StaticTemplates;
  618. sourceTree = "<group>";
  619. };
  620. A80E726D2D40DE0B00C64288 /* TSWallpaperPreviewVC */ = {
  621. isa = PBXGroup;
  622. children = (
  623. A80E726E2D40DE2900C64288 /* TSWallpaperPreviewVC.swift */,
  624. );
  625. path = TSWallpaperPreviewVC;
  626. sourceTree = "<group>";
  627. };
  628. A80E72702D40F85800C64288 /* LaunchVC */ = {
  629. isa = PBXGroup;
  630. children = (
  631. A80E72782D42285500C64288 /* TSBootPageVC.swift */,
  632. A80E72712D40F86000C64288 /* TSLaunchVC.swift */,
  633. );
  634. path = LaunchVC;
  635. sourceTree = "<group>";
  636. };
  637. A80E72752D41EFF000C64288 /* TSEmojisTutorialsVC */ = {
  638. isa = PBXGroup;
  639. children = (
  640. A80E72762D41EFF700C64288 /* TSEmojisTutorialsVC.swift */,
  641. );
  642. path = TSEmojisTutorialsVC;
  643. sourceTree = "<group>";
  644. };
  645. A80E73DD2D533E5800C64288 /* TSPurchaseMembershipVC */ = {
  646. isa = PBXGroup;
  647. children = (
  648. A80E73D82D533E5800C64288 /* TSPurchaseVC.swift */,
  649. );
  650. path = TSPurchaseMembershipVC;
  651. sourceTree = "<group>";
  652. };
  653. A80E73E32D533EB000C64288 /* Purchase */ = {
  654. isa = PBXGroup;
  655. children = (
  656. A80E73E22D533EB000C64288 /* TSPurchaseManager.swift */,
  657. );
  658. path = Purchase;
  659. sourceTree = "<group>";
  660. };
  661. A80E74222D5996BF00C64288 /* AIChat */ = {
  662. isa = PBXGroup;
  663. children = (
  664. A89EA6AF2D5C9861000EB181 /* TSAIChatHistoryVC */,
  665. A89EA6772D59D224000EB181 /* TSChatViewController */,
  666. );
  667. path = AIChat;
  668. sourceTree = "<group>";
  669. };
  670. A80EDD062D6C3F82003CD332 /* iOS */ = {
  671. isa = PBXGroup;
  672. children = (
  673. A80EDD042D6C3F82003CD332 /* Info.plist */,
  674. A80EDD052D6C3F82003CD332 /* MarkdownKit.h */,
  675. );
  676. path = iOS;
  677. sourceTree = "<group>";
  678. };
  679. A80EDD092D6C3F82003CD332 /* macOS */ = {
  680. isa = PBXGroup;
  681. children = (
  682. A80EDD072D6C3F82003CD332 /* Info.plist */,
  683. A80EDD082D6C3F82003CD332 /* MarkdownKit.h */,
  684. );
  685. path = macOS;
  686. sourceTree = "<group>";
  687. };
  688. A80EDD0A2D6C3F82003CD332 /* Resources */ = {
  689. isa = PBXGroup;
  690. children = (
  691. A80EDD062D6C3F82003CD332 /* iOS */,
  692. A80EDD092D6C3F82003CD332 /* macOS */,
  693. );
  694. path = Resources;
  695. sourceTree = "<group>";
  696. };
  697. A80EDD0C2D6C3F82003CD332 /* Code */ = {
  698. isa = PBXGroup;
  699. children = (
  700. A80EDD0B2D6C3F82003CD332 /* MarkdownCode+AppKit.swift */,
  701. );
  702. path = Code;
  703. sourceTree = "<group>";
  704. };
  705. A80EDD0E2D6C3F82003CD332 /* Header */ = {
  706. isa = PBXGroup;
  707. children = (
  708. A80EDD0D2D6C3F82003CD332 /* MarkdownHeader+AppKit.swift */,
  709. );
  710. path = Header;
  711. sourceTree = "<group>";
  712. };
  713. A80EDD102D6C3F82003CD332 /* Link */ = {
  714. isa = PBXGroup;
  715. children = (
  716. A80EDD0F2D6C3F82003CD332 /* MarkdownLink+AppKit.swift */,
  717. );
  718. path = Link;
  719. sourceTree = "<group>";
  720. };
  721. A80EDD112D6C3F82003CD332 /* Elements */ = {
  722. isa = PBXGroup;
  723. children = (
  724. A80EDD0C2D6C3F82003CD332 /* Code */,
  725. A80EDD0E2D6C3F82003CD332 /* Header */,
  726. A80EDD102D6C3F82003CD332 /* Link */,
  727. );
  728. path = Elements;
  729. sourceTree = "<group>";
  730. };
  731. A80EDD132D6C3F82003CD332 /* Extensions */ = {
  732. isa = PBXGroup;
  733. children = (
  734. A80EDD122D6C3F82003CD332 /* MarkdownFont+Traits.swift */,
  735. );
  736. path = Extensions;
  737. sourceTree = "<group>";
  738. };
  739. A80EDD152D6C3F82003CD332 /* AppKit */ = {
  740. isa = PBXGroup;
  741. children = (
  742. A80EDD112D6C3F82003CD332 /* Elements */,
  743. A80EDD132D6C3F82003CD332 /* Extensions */,
  744. A80EDD142D6C3F82003CD332 /* MarkdownParser+AppKit.swift */,
  745. );
  746. path = AppKit;
  747. sourceTree = "<group>";
  748. };
  749. A80EDD172D6C3F82003CD332 /* Bold */ = {
  750. isa = PBXGroup;
  751. children = (
  752. A80EDD162D6C3F82003CD332 /* MarkdownBold.swift */,
  753. );
  754. path = Bold;
  755. sourceTree = "<group>";
  756. };
  757. A80EDD192D6C3F82003CD332 /* Code */ = {
  758. isa = PBXGroup;
  759. children = (
  760. A80EDD182D6C3F82003CD332 /* MarkdownCode.swift */,
  761. );
  762. path = Code;
  763. sourceTree = "<group>";
  764. };
  765. A80EDD1D2D6C3F82003CD332 /* Escaping */ = {
  766. isa = PBXGroup;
  767. children = (
  768. A80EDD1A2D6C3F82003CD332 /* MarkdownCodeEscaping.swift */,
  769. A80EDD1B2D6C3F82003CD332 /* MarkdownEscaping.swift */,
  770. A80EDD1C2D6C3F82003CD332 /* MarkdownUnescaping.swift */,
  771. );
  772. path = Escaping;
  773. sourceTree = "<group>";
  774. };
  775. A80EDD1F2D6C3F82003CD332 /* Header */ = {
  776. isa = PBXGroup;
  777. children = (
  778. A80EDD1E2D6C3F82003CD332 /* MarkdownHeader.swift */,
  779. );
  780. path = Header;
  781. sourceTree = "<group>";
  782. };
  783. A80EDD212D6C3F82003CD332 /* Italic */ = {
  784. isa = PBXGroup;
  785. children = (
  786. A80EDD202D6C3F82003CD332 /* MarkdownItalic.swift */,
  787. );
  788. path = Italic;
  789. sourceTree = "<group>";
  790. };
  791. A80EDD242D6C3F82003CD332 /* Link */ = {
  792. isa = PBXGroup;
  793. children = (
  794. A80EDD222D6C3F82003CD332 /* MarkdownAutomaticLink.swift */,
  795. A80EDD232D6C3F82003CD332 /* MarkdownLink.swift */,
  796. );
  797. path = Link;
  798. sourceTree = "<group>";
  799. };
  800. A80EDD262D6C3F82003CD332 /* List */ = {
  801. isa = PBXGroup;
  802. children = (
  803. A80EDD252D6C3F82003CD332 /* MarkdownList.swift */,
  804. );
  805. path = List;
  806. sourceTree = "<group>";
  807. };
  808. A80EDD282D6C3F82003CD332 /* Quote */ = {
  809. isa = PBXGroup;
  810. children = (
  811. A80EDD272D6C3F82003CD332 /* MarkdownQuote.swift */,
  812. );
  813. path = Quote;
  814. sourceTree = "<group>";
  815. };
  816. A80EDD2A2D6C3F82003CD332 /* Strikethrough */ = {
  817. isa = PBXGroup;
  818. children = (
  819. A80EDD292D6C3F82003CD332 /* MarkdownStrikethrough.swift */,
  820. );
  821. path = Strikethrough;
  822. sourceTree = "<group>";
  823. };
  824. A80EDD2B2D6C3F82003CD332 /* Elements */ = {
  825. isa = PBXGroup;
  826. children = (
  827. A80EDD172D6C3F82003CD332 /* Bold */,
  828. A80EDD192D6C3F82003CD332 /* Code */,
  829. A80EDD1D2D6C3F82003CD332 /* Escaping */,
  830. A80EDD1F2D6C3F82003CD332 /* Header */,
  831. A80EDD212D6C3F82003CD332 /* Italic */,
  832. A80EDD242D6C3F82003CD332 /* Link */,
  833. A80EDD262D6C3F82003CD332 /* List */,
  834. A80EDD282D6C3F82003CD332 /* Quote */,
  835. A80EDD2A2D6C3F82003CD332 /* Strikethrough */,
  836. );
  837. path = Elements;
  838. sourceTree = "<group>";
  839. };
  840. A80EDD2D2D6C3F82003CD332 /* Extensions */ = {
  841. isa = PBXGroup;
  842. children = (
  843. A80EDD2C2D6C3F82003CD332 /* String+UTF16.swift */,
  844. );
  845. path = Extensions;
  846. sourceTree = "<group>";
  847. };
  848. A80EDD332D6C3F82003CD332 /* Protocols */ = {
  849. isa = PBXGroup;
  850. children = (
  851. A80EDD2E2D6C3F82003CD332 /* MarkdownCommonElement.swift */,
  852. A80EDD2F2D6C3F82003CD332 /* MarkdownElement.swift */,
  853. A80EDD302D6C3F82003CD332 /* MarkdownLevelElement.swift */,
  854. A80EDD312D6C3F82003CD332 /* MarkdownLinkElement.swift */,
  855. A80EDD322D6C3F82003CD332 /* MarkdownStyle.swift */,
  856. );
  857. path = Protocols;
  858. sourceTree = "<group>";
  859. };
  860. A80EDD362D6C3F82003CD332 /* Common */ = {
  861. isa = PBXGroup;
  862. children = (
  863. A80EDD2B2D6C3F82003CD332 /* Elements */,
  864. A80EDD2D2D6C3F82003CD332 /* Extensions */,
  865. A80EDD332D6C3F82003CD332 /* Protocols */,
  866. A80EDD342D6C3F82003CD332 /* MarkdownParser.swift */,
  867. A80EDD352D6C3F82003CD332 /* Typealias.swift */,
  868. );
  869. path = Common;
  870. sourceTree = "<group>";
  871. };
  872. A80EDD382D6C3F82003CD332 /* Code */ = {
  873. isa = PBXGroup;
  874. children = (
  875. A80EDD372D6C3F82003CD332 /* MarkdownCode+UIKit.swift */,
  876. );
  877. path = Code;
  878. sourceTree = "<group>";
  879. };
  880. A80EDD3A2D6C3F82003CD332 /* Header */ = {
  881. isa = PBXGroup;
  882. children = (
  883. A80EDD392D6C3F82003CD332 /* MarkdownHeader+UIKit.swift */,
  884. );
  885. path = Header;
  886. sourceTree = "<group>";
  887. };
  888. A80EDD3C2D6C3F82003CD332 /* Link */ = {
  889. isa = PBXGroup;
  890. children = (
  891. A80EDD3B2D6C3F82003CD332 /* MarkdownLink+UIKit.swift */,
  892. );
  893. path = Link;
  894. sourceTree = "<group>";
  895. };
  896. A80EDD3D2D6C3F82003CD332 /* Elements */ = {
  897. isa = PBXGroup;
  898. children = (
  899. A80EDD382D6C3F82003CD332 /* Code */,
  900. A80EDD3A2D6C3F82003CD332 /* Header */,
  901. A80EDD3C2D6C3F82003CD332 /* Link */,
  902. );
  903. path = Elements;
  904. sourceTree = "<group>";
  905. };
  906. A80EDD3F2D6C3F82003CD332 /* Extensions */ = {
  907. isa = PBXGroup;
  908. children = (
  909. A80EDD3E2D6C3F82003CD332 /* UIFont+Traits.swift */,
  910. );
  911. path = Extensions;
  912. sourceTree = "<group>";
  913. };
  914. A80EDD412D6C3F82003CD332 /* UIKit */ = {
  915. isa = PBXGroup;
  916. children = (
  917. A80EDD3D2D6C3F82003CD332 /* Elements */,
  918. A80EDD3F2D6C3F82003CD332 /* Extensions */,
  919. A80EDD402D6C3F82003CD332 /* MarkdownParser+UIKit.swift */,
  920. );
  921. path = UIKit;
  922. sourceTree = "<group>";
  923. };
  924. A80EDD422D6C3F82003CD332 /* Sources */ = {
  925. isa = PBXGroup;
  926. children = (
  927. A80EDD152D6C3F82003CD332 /* AppKit */,
  928. A80EDD362D6C3F82003CD332 /* Common */,
  929. A80EDD412D6C3F82003CD332 /* UIKit */,
  930. );
  931. path = Sources;
  932. sourceTree = "<group>";
  933. };
  934. A80EDD452D6C3F82003CD332 /* MarkdownKit */ = {
  935. isa = PBXGroup;
  936. children = (
  937. A80EDD0A2D6C3F82003CD332 /* Resources */,
  938. A80EDD422D6C3F82003CD332 /* Sources */,
  939. );
  940. path = MarkdownKit;
  941. sourceTree = "<group>";
  942. };
  943. A80EDDDC2D6EB17D003CD332 /* TSPTPGeneratorVC */ = {
  944. isa = PBXGroup;
  945. children = (
  946. A8BA76552DA619DD000B6707 /* TSUploadPhotoPrivacyAlertVC */,
  947. A8BA76502DA515F9000B6707 /* TSPTPImageHintVC */,
  948. A8BA763D2DA4C8F9000B6707 /* TSPTPInputVC */,
  949. A83404CF2D9D16E400C140E4 /* TSAIPhotoGeneratorBaseVC */,
  950. A80EDE042D6F3429003CD332 /* TSPTPBrowseVC */,
  951. A80EDDE92D6EBFF1003CD332 /* TSPhotoToPhotoVC */,
  952. A80EDDDD2D6EB19A003CD332 /* TSPTPGeneratorVC */,
  953. );
  954. path = TSPTPGeneratorVC;
  955. sourceTree = "<group>";
  956. };
  957. A80EDDDD2D6EB19A003CD332 /* TSPTPGeneratorVC */ = {
  958. isa = PBXGroup;
  959. children = (
  960. A80EDE012D6F1CCB003CD332 /* TSPTPGeneratorVC.swift */,
  961. A80EDDE82D6EBFCD003CD332 /* M */,
  962. A80EDDE52D6EBFAE003CD332 /* VM */,
  963. );
  964. path = TSPTPGeneratorVC;
  965. sourceTree = "<group>";
  966. };
  967. A80EDDDE2D6EB1A5003CD332 /* Cell */ = {
  968. isa = PBXGroup;
  969. children = (
  970. A80EDDE32D6EB8DC003CD332 /* TSPTPSelectStyleCell.swift */,
  971. A80EDDE12D6EB8C7003CD332 /* TSPTPUploadCell.swift */,
  972. A80EDDDF2D6EB1B8003CD332 /* TSPTPGeneratorCell.swift */,
  973. );
  974. path = Cell;
  975. sourceTree = "<group>";
  976. };
  977. A80EDDE52D6EBFAE003CD332 /* VM */ = {
  978. isa = PBXGroup;
  979. children = (
  980. A80EDDE62D6EBFBE003CD332 /* TSPTPGeneratorVM.swift */,
  981. );
  982. path = VM;
  983. sourceTree = "<group>";
  984. };
  985. A80EDDE82D6EBFCD003CD332 /* M */ = {
  986. isa = PBXGroup;
  987. children = (
  988. );
  989. path = M;
  990. sourceTree = "<group>";
  991. };
  992. A80EDDE92D6EBFF1003CD332 /* TSPhotoToPhotoVC */ = {
  993. isa = PBXGroup;
  994. children = (
  995. A80EDDED2D6EC020003CD332 /* M */,
  996. A80EDDEC2D6EC01B003CD332 /* VM */,
  997. A80EDDDE2D6EB1A5003CD332 /* Cell */,
  998. A80EDDEA2D6EC012003CD332 /* TSPhotoToPhotoVC.swift */,
  999. );
  1000. path = TSPhotoToPhotoVC;
  1001. sourceTree = "<group>";
  1002. };
  1003. A80EDDEC2D6EC01B003CD332 /* VM */ = {
  1004. isa = PBXGroup;
  1005. children = (
  1006. A80EDDF52D6EC1E8003CD332 /* TSPhotoToPhotoVM.swift */,
  1007. );
  1008. path = VM;
  1009. sourceTree = "<group>";
  1010. };
  1011. A80EDDED2D6EC020003CD332 /* M */ = {
  1012. isa = PBXGroup;
  1013. children = (
  1014. A80EDDEF2D6EC044003CD332 /* TSPTPStyleModel.swift */,
  1015. );
  1016. path = M;
  1017. sourceTree = "<group>";
  1018. };
  1019. A80EDDFE2D6EFD1A003CD332 /* TSPhotoPickerManager */ = {
  1020. isa = PBXGroup;
  1021. children = (
  1022. A80EDDFF2D6EFD20003CD332 /* TSPhotoPickerManager.swift */,
  1023. );
  1024. path = TSPhotoPickerManager;
  1025. sourceTree = "<group>";
  1026. };
  1027. A80EDE042D6F3429003CD332 /* TSPTPBrowseVC */ = {
  1028. isa = PBXGroup;
  1029. children = (
  1030. A80EDE052D6F3490003CD332 /* TSPTPBrowseVC.swift */,
  1031. );
  1032. path = TSPTPBrowseVC;
  1033. sourceTree = "<group>";
  1034. };
  1035. A83404C62D9BEC0300C140E4 /* Ex */ = {
  1036. isa = PBXGroup;
  1037. children = (
  1038. A83404C72D9BEC0700C140E4 /* UIFont+TSEx.swift */,
  1039. );
  1040. path = Ex;
  1041. sourceTree = "<group>";
  1042. };
  1043. A83404CF2D9D16E400C140E4 /* TSAIPhotoGeneratorBaseVC */ = {
  1044. isa = PBXGroup;
  1045. children = (
  1046. A83404D02D9D16F800C140E4 /* TSAIPhotoGeneratorBaseVC.swift */,
  1047. A83404D42D9D28CE00C140E4 /* TSAIPhotoBrowseVC.swift */,
  1048. );
  1049. path = TSAIPhotoGeneratorBaseVC;
  1050. sourceTree = "<group>";
  1051. };
  1052. A85E478D2D670DF10018D62D /* TSTextGeneralPictureVC */ = {
  1053. isa = PBXGroup;
  1054. children = (
  1055. A80327B12D813D1B00AF7878 /* TSTTPInputVC */,
  1056. A85E47942D672AC30018D62D /* TSTextPicGennerateVC */,
  1057. A85E47932D672AB40018D62D /* TSTextGeneralPictureVC */,
  1058. );
  1059. path = TSTextGeneralPictureVC;
  1060. sourceTree = "<group>";
  1061. };
  1062. A85E47902D6728810018D62D /* ViewModel */ = {
  1063. isa = PBXGroup;
  1064. children = (
  1065. A85E47912D67289F0018D62D /* TSTextGeneralPictureVM.swift */,
  1066. );
  1067. path = ViewModel;
  1068. sourceTree = "<group>";
  1069. };
  1070. A85E47932D672AB40018D62D /* TSTextGeneralPictureVC */ = {
  1071. isa = PBXGroup;
  1072. children = (
  1073. A80327AE2D8139F200AF7878 /* View */,
  1074. A85E47902D6728810018D62D /* ViewModel */,
  1075. A85E478E2D6711590018D62D /* TSTextGeneralPictureVC.swift */,
  1076. );
  1077. path = TSTextGeneralPictureVC;
  1078. sourceTree = "<group>";
  1079. };
  1080. A85E47942D672AC30018D62D /* TSTextPicGennerateVC */ = {
  1081. isa = PBXGroup;
  1082. children = (
  1083. A85E47972D672AE40018D62D /* TSTextPicGennerateVM.swift */,
  1084. A85E47952D672AD90018D62D /* TSTextPicGennerateVC.swift */,
  1085. );
  1086. path = TSTextPicGennerateVC;
  1087. sourceTree = "<group>";
  1088. };
  1089. A85E47992D6808B30018D62D /* TSBigIconBrowseVC */ = {
  1090. isa = PBXGroup;
  1091. children = (
  1092. A85E479C2D6809DA0018D62D /* TSBigIconBrowseCell.swift */,
  1093. A85E479A2D6808C30018D62D /* TSBigIconBrowseVC.swift */,
  1094. );
  1095. path = TSBigIconBrowseVC;
  1096. sourceTree = "<group>";
  1097. };
  1098. A85E47C12D6964500018D62D /* TSChatMsgBaseView */ = {
  1099. isa = PBXGroup;
  1100. children = (
  1101. A80EDD672D6C507D003CD332 /* TSChatMsgBaseView.swift */,
  1102. A85E47C22D69646D0018D62D /* TSMSGAIDefaultHeaderView.swift */,
  1103. A80EDD692D6C5176003CD332 /* TSChatMsgToolView.swift */,
  1104. A87587172D81812C00286A66 /* TSAIThinkingView.swift */,
  1105. );
  1106. path = TSChatMsgBaseView;
  1107. sourceTree = "<group>";
  1108. };
  1109. A87587112D81702700286A66 /* Data */ = {
  1110. isa = PBXGroup;
  1111. children = (
  1112. A87587102D81702700286A66 /* TSUserDefaultData.swift */,
  1113. );
  1114. path = Data;
  1115. sourceTree = "<group>";
  1116. };
  1117. A87587192D819F7000286A66 /* TSChatMessageUIModel */ = {
  1118. isa = PBXGroup;
  1119. children = (
  1120. A85E47BF2D6961B90018D62D /* TSChatMessageUIModel.swift */,
  1121. );
  1122. path = TSChatMessageUIModel;
  1123. sourceTree = "<group>";
  1124. };
  1125. A899D3482D8279E500AB9C1C /* CHatMessageModel */ = {
  1126. isa = PBXGroup;
  1127. children = (
  1128. A899D3492D8279FB00AB9C1C /* TSChatThinkingModel.swift */,
  1129. A89EA6502D59A9F4000EB181 /* TSChatMessage.swift */,
  1130. A89EA6522D59A9F4000EB181 /* TSChatUser.swift */,
  1131. );
  1132. path = CHatMessageModel;
  1133. sourceTree = "<group>";
  1134. };
  1135. A89EA64D2D59A9F4000EB181 /* Layout */ = {
  1136. isa = PBXGroup;
  1137. children = (
  1138. A89EA64C2D59A9F4000EB181 /* CustomMessageFlowLayout.swift */,
  1139. );
  1140. path = Layout;
  1141. sourceTree = "<group>";
  1142. };
  1143. A89EA6532D59A9F4000EB181 /* Models */ = {
  1144. isa = PBXGroup;
  1145. children = (
  1146. A899D3482D8279E500AB9C1C /* CHatMessageModel */,
  1147. A87587192D819F7000286A66 /* TSChatMessageUIModel */,
  1148. A89EA6A22D5B26E3000EB181 /* TSDBAIChatList.swift */,
  1149. A89EA6C02D5ED278000EB181 /* TSChatCellConfig.swift */,
  1150. A89EA64E2D59A9F4000EB181 /* TSLayoutSizeCalculator.swift */,
  1151. A89EA64F2D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift */,
  1152. );
  1153. path = Models;
  1154. sourceTree = "<group>";
  1155. };
  1156. A89EA6682D59AA31000EB181 /* Views */ = {
  1157. isa = PBXGroup;
  1158. children = (
  1159. A85E47C12D6964500018D62D /* TSChatMsgBaseView */,
  1160. A89EA6632D59AA31000EB181 /* CameraInputBarAccessoryView.swift */,
  1161. A89EA6662D59AA31000EB181 /* TSTextMessageContentCell.swift */,
  1162. A89EA6652D59AA31000EB181 /* TSMessageContentCell.swift */,
  1163. A89EA6672D59AA31000EB181 /* TableViewCells.swift */,
  1164. );
  1165. path = Views;
  1166. sourceTree = "<group>";
  1167. };
  1168. A89EA6772D59D224000EB181 /* TSChatViewController */ = {
  1169. isa = PBXGroup;
  1170. children = (
  1171. A89EA6D02D64333D000EB181 /* TSChatViewController */,
  1172. A89EA6C22D5F4094000EB181 /* TSChatInputBarVC */,
  1173. A89EA6782D59D238000EB181 /* ViewModel */,
  1174. A89EA6682D59AA31000EB181 /* Views */,
  1175. A89EA64D2D59A9F4000EB181 /* Layout */,
  1176. A89EA6532D59A9F4000EB181 /* Models */,
  1177. );
  1178. path = TSChatViewController;
  1179. sourceTree = "<group>";
  1180. };
  1181. A89EA6782D59D238000EB181 /* ViewModel */ = {
  1182. isa = PBXGroup;
  1183. children = (
  1184. A80EDD022D6C281E003CD332 /* TSMarkDownTool.swift */,
  1185. A89EA6792D59D248000EB181 /* TSAIChatVM.swift */,
  1186. );
  1187. path = ViewModel;
  1188. sourceTree = "<group>";
  1189. };
  1190. A89EA6AA2D5B3EE8000EB181 /* TSRealmManager */ = {
  1191. isa = PBXGroup;
  1192. children = (
  1193. A89EA6AB2D5B3EFA000EB181 /* TSRealmManager.swift */,
  1194. );
  1195. path = TSRealmManager;
  1196. sourceTree = "<group>";
  1197. };
  1198. A89EA6AF2D5C9861000EB181 /* TSAIChatHistoryVC */ = {
  1199. isa = PBXGroup;
  1200. children = (
  1201. A89EA6BB2D5DFB0D000EB181 /* TSViewController.swift */,
  1202. A89EA6B62D5D7ED2000EB181 /* M */,
  1203. A89EA6B22D5C9D36000EB181 /* VM */,
  1204. A89EA6B02D5C9D0B000EB181 /* TSAIChatHistoryVC.swift */,
  1205. );
  1206. path = TSAIChatHistoryVC;
  1207. sourceTree = "<group>";
  1208. };
  1209. A89EA6B22D5C9D36000EB181 /* VM */ = {
  1210. isa = PBXGroup;
  1211. children = (
  1212. A89EA6B32D5C9D3D000EB181 /* TSAIChatHistoryVM.swift */,
  1213. );
  1214. path = VM;
  1215. sourceTree = "<group>";
  1216. };
  1217. A89EA6B62D5D7ED2000EB181 /* M */ = {
  1218. isa = PBXGroup;
  1219. children = (
  1220. A89EA6B72D5D7EE4000EB181 /* TSAIChatHistoryModel.swift */,
  1221. );
  1222. path = M;
  1223. sourceTree = "<group>";
  1224. };
  1225. A89EA6BD2D5E03CD000EB181 /* Ex */ = {
  1226. isa = PBXGroup;
  1227. children = (
  1228. A89EA6BE2D5E03D3000EB181 /* Notification+Ex.swift */,
  1229. );
  1230. path = Ex;
  1231. sourceTree = "<group>";
  1232. };
  1233. A89EA6C22D5F4094000EB181 /* TSChatInputBarVC */ = {
  1234. isa = PBXGroup;
  1235. children = (
  1236. A89EA6C52D5F5C21000EB181 /* TSChatInputFullScreenVC.swift */,
  1237. A89EA6C32D5F40CB000EB181 /* TSChatInputBarVC.swift */,
  1238. );
  1239. path = TSChatInputBarVC;
  1240. sourceTree = "<group>";
  1241. };
  1242. A89EA6D02D64333D000EB181 /* TSChatViewController */ = {
  1243. isa = PBXGroup;
  1244. children = (
  1245. A89EA65E2D59AA11000EB181 /* TSChatViewController.swift */,
  1246. A89EA6822D59F4F1000EB181 /* TSChatViewController+ChatDelegate.swift */,
  1247. A89EA6C72D6359EA000EB181 /* TSChatViewController+VipView.swift */,
  1248. A89EA6C92D642C03000EB181 /* TSChatViewController+SendMsg.swift */,
  1249. A89EA6CB2D642CD4000EB181 /* TSChatViewController+NaviBar.swift */,
  1250. A89EA6CE2D6430EE000EB181 /* TSChatViewController+Keyboard.swift */,
  1251. );
  1252. path = TSChatViewController;
  1253. sourceTree = "<group>";
  1254. };
  1255. A8BA763D2DA4C8F9000B6707 /* TSPTPInputVC */ = {
  1256. isa = PBXGroup;
  1257. children = (
  1258. A8BA76432DA4C927000B6707 /* View */,
  1259. A8BA76402DA4C918000B6707 /* VM */,
  1260. A8BA763E2DA4C906000B6707 /* TSPTPInputVC.swift */,
  1261. );
  1262. path = TSPTPInputVC;
  1263. sourceTree = "<group>";
  1264. };
  1265. A8BA76402DA4C918000B6707 /* VM */ = {
  1266. isa = PBXGroup;
  1267. children = (
  1268. A8BA76412DA4C920000B6707 /* TSPTPInputVM.swift */,
  1269. );
  1270. path = VM;
  1271. sourceTree = "<group>";
  1272. };
  1273. A8BA76432DA4C927000B6707 /* View */ = {
  1274. isa = PBXGroup;
  1275. children = (
  1276. A8BA76462DA4CC6C000B6707 /* TSPTPSelectStyleView.swift */,
  1277. A8BA76442DA4CB99000B6707 /* TSPTPUploadView.swift */,
  1278. );
  1279. path = View;
  1280. sourceTree = "<group>";
  1281. };
  1282. A8BA76502DA515F9000B6707 /* TSPTPImageHintVC */ = {
  1283. isa = PBXGroup;
  1284. children = (
  1285. A8BA76512DA515FF000B6707 /* TSPTPImageHintVC.swift */,
  1286. );
  1287. path = TSPTPImageHintVC;
  1288. sourceTree = "<group>";
  1289. };
  1290. A8BA76552DA619DD000B6707 /* TSUploadPhotoPrivacyAlertVC */ = {
  1291. isa = PBXGroup;
  1292. children = (
  1293. A8BA76562DA619FF000B6707 /* TSUploadPhotoPrivacyAlertVC.swift */,
  1294. );
  1295. path = TSUploadPhotoPrivacyAlertVC;
  1296. sourceTree = "<group>";
  1297. };
  1298. A8F774602D38E8B000AA6E93 = {
  1299. isa = PBXGroup;
  1300. children = (
  1301. A8F7748A2D38E8B700AA6E93 /* AIEmoji */,
  1302. A8F7746A2D38E8B000AA6E93 /* Products */,
  1303. 406F872E527C21AB2B2F0859 /* Pods */,
  1304. 97C7E956DF0731529C52523E /* Frameworks */,
  1305. );
  1306. sourceTree = "<group>";
  1307. };
  1308. A8F7746A2D38E8B000AA6E93 /* Products */ = {
  1309. isa = PBXGroup;
  1310. children = (
  1311. A8F774692D38E8B000AA6E93 /* AIEmoji.app */,
  1312. );
  1313. name = Products;
  1314. sourceTree = "<group>";
  1315. };
  1316. A8F7748A2D38E8B700AA6E93 /* AIEmoji */ = {
  1317. isa = PBXGroup;
  1318. children = (
  1319. A8FB02AE2D3E38FA0031A396 /* Res */,
  1320. A8F7751E2D38ED4500AA6E93 /* DataManger */,
  1321. A8F774922D38EA8C00AA6E93 /* Business */,
  1322. A8F774D82D38EA8C00AA6E93 /* Common */,
  1323. A8F774812D38E8B700AA6E93 /* AppDelegate.swift */,
  1324. A8F774822D38E8B700AA6E93 /* Assets.xcassets */,
  1325. A8F774832D38E8B700AA6E93 /* Info.plist */,
  1326. A83405012DA35CB700C140E4 /* InfoPlist.strings */,
  1327. A83404FC2DA35BFE00C140E4 /* Localizable.strings */,
  1328. A8F774852D38E8B700AA6E93 /* LaunchScreen.storyboard */,
  1329. );
  1330. path = AIEmoji;
  1331. sourceTree = "<group>";
  1332. };
  1333. A8F774922D38EA8C00AA6E93 /* Business */ = {
  1334. isa = PBXGroup;
  1335. children = (
  1336. A87587112D81702700286A66 /* Data */,
  1337. A80EDDDC2D6EB17D003CD332 /* TSPTPGeneratorVC */,
  1338. A85E478D2D670DF10018D62D /* TSTextGeneralPictureVC */,
  1339. A80E74222D5996BF00C64288 /* AIChat */,
  1340. A80E73DD2D533E5800C64288 /* TSPurchaseMembershipVC */,
  1341. A80E72702D40F85800C64288 /* LaunchVC */,
  1342. A8F775142D38EB5300AA6E93 /* TSWallpaperVC */,
  1343. A8F776402D3B75EA00AA6E93 /* General */,
  1344. A8F775332D38FC8E00AA6E93 /* VIewTool */,
  1345. A8F775152D38EB5D00AA6E93 /* TSSetingVC */,
  1346. A8F775132D38EB3F00AA6E93 /* TSGenmojiVC */,
  1347. A8F775112D38EB2800AA6E93 /* TSEmojisVC */,
  1348. A8F775102D38EAE800AA6E93 /* TSTabBarController */,
  1349. );
  1350. path = Business;
  1351. sourceTree = "<group>";
  1352. };
  1353. A8F774B52D38EA8C00AA6E93 /* GlobalImports */ = {
  1354. isa = PBXGroup;
  1355. children = (
  1356. A8F774B42D38EA8C00AA6E93 /* GlobalImports.swift */,
  1357. );
  1358. path = GlobalImports;
  1359. sourceTree = "<group>";
  1360. };
  1361. A8F774B72D38EA8C00AA6E93 /* NetworkManager */ = {
  1362. isa = PBXGroup;
  1363. children = (
  1364. A8F775392D3918A100AA6E93 /* TSNetWork */,
  1365. );
  1366. path = NetworkManager;
  1367. sourceTree = "<group>";
  1368. };
  1369. A8F774C62D38EA8C00AA6E93 /* ThirdParty */ = {
  1370. isa = PBXGroup;
  1371. children = (
  1372. A80EDD452D6C3F82003CD332 /* MarkdownKit */,
  1373. );
  1374. path = ThirdParty;
  1375. sourceTree = "<group>";
  1376. };
  1377. A8F774C82D38EA8C00AA6E93 /* TSCommonTool */ = {
  1378. isa = PBXGroup;
  1379. children = (
  1380. A8F774C72D38EA8C00AA6E93 /* TSCommonTool.swift */,
  1381. );
  1382. path = TSCommonTool;
  1383. sourceTree = "<group>";
  1384. };
  1385. A8F774CE2D38EA8C00AA6E93 /* Tool */ = {
  1386. isa = PBXGroup;
  1387. children = (
  1388. A8BA764E2DA50B52000B6707 /* CpuMapManager.swift */,
  1389. A85E479E2D6859F80018D62D /* TSRandomTextPicker.swift */,
  1390. A8F774C82D38EA8C00AA6E93 /* TSCommonTool */,
  1391. A8F774CA2D38EA8C00AA6E93 /* TSFileManagerTool.swift */,
  1392. A8F7754F2D39ECED00AA6E93 /* PhotoManager.swift */,
  1393. A834051F2DA3ADA600C140E4 /* TSPhotoSizeHelper.swift */,
  1394. A8F774CB2D38EA8C00AA6E93 /* TSNetworkTool.swift */,
  1395. A8F774CD2D38EA8C00AA6E93 /* WindowHelper.swift */,
  1396. );
  1397. path = Tool;
  1398. sourceTree = "<group>";
  1399. };
  1400. A8F774D72D38EA8C00AA6E93 /* View */ = {
  1401. isa = PBXGroup;
  1402. children = (
  1403. A80EDDFE2D6EFD1A003CD332 /* TSPhotoPickerManager */,
  1404. A8F776292D3A70AA00AA6E93 /* UILabel */,
  1405. );
  1406. path = View;
  1407. sourceTree = "<group>";
  1408. };
  1409. A8F774D82D38EA8C00AA6E93 /* Common */ = {
  1410. isa = PBXGroup;
  1411. children = (
  1412. A83404C62D9BEC0300C140E4 /* Ex */,
  1413. A89EA6AA2D5B3EE8000EB181 /* TSRealmManager */,
  1414. A80E73E32D533EB000C64288 /* Purchase */,
  1415. A8F774B52D38EA8C00AA6E93 /* GlobalImports */,
  1416. A8F774B72D38EA8C00AA6E93 /* NetworkManager */,
  1417. A8F774C62D38EA8C00AA6E93 /* ThirdParty */,
  1418. A8F774CE2D38EA8C00AA6E93 /* Tool */,
  1419. A8F774D72D38EA8C00AA6E93 /* View */,
  1420. );
  1421. path = Common;
  1422. sourceTree = "<group>";
  1423. };
  1424. A8F775102D38EAE800AA6E93 /* TSTabBarController */ = {
  1425. isa = PBXGroup;
  1426. children = (
  1427. A8F775162D38EB7400AA6E93 /* TSTabBarController.swift */,
  1428. );
  1429. path = TSTabBarController;
  1430. sourceTree = "<group>";
  1431. };
  1432. A8F775112D38EB2800AA6E93 /* TSEmojisVC */ = {
  1433. isa = PBXGroup;
  1434. children = (
  1435. A80E72752D41EFF000C64288 /* TSEmojisTutorialsVC */,
  1436. A8F7761F2D3A3DBC00AA6E93 /* TSEmojisVC */,
  1437. A8F7761E2D3A3DB400AA6E93 /* TSEmojisChildVC */,
  1438. );
  1439. path = TSEmojisVC;
  1440. sourceTree = "<group>";
  1441. };
  1442. A8F775132D38EB3F00AA6E93 /* TSGenmojiVC */ = {
  1443. isa = PBXGroup;
  1444. children = (
  1445. A8F7763A2D3B38E900AA6E93 /* TSGenmojiGennerateVC */,
  1446. A8F776242D3A6EA100AA6E93 /* TSGenmojiVC */,
  1447. );
  1448. path = TSGenmojiVC;
  1449. sourceTree = "<group>";
  1450. };
  1451. A8F775142D38EB5300AA6E93 /* TSWallpaperVC */ = {
  1452. isa = PBXGroup;
  1453. children = (
  1454. A80E726D2D40DE0B00C64288 /* TSWallpaperPreviewVC */,
  1455. A80E72542D3F98CF00C64288 /* TSDiyKeyboardViewVC */,
  1456. A80E72512D3F984700C64288 /* TSDiyKeyboardVC */,
  1457. A80E72442D3F4EDC00C64288 /* Json */,
  1458. A80E721B2D3F3A3E00C64288 /* DiyWallpaper */,
  1459. );
  1460. path = TSWallpaperVC;
  1461. sourceTree = "<group>";
  1462. };
  1463. A8F775152D38EB5D00AA6E93 /* TSSetingVC */ = {
  1464. isa = PBXGroup;
  1465. children = (
  1466. A8F775482D3935D600AA6E93 /* TSBusinessWebVC */,
  1467. A8F775412D39344A00AA6E93 /* SetingVC */,
  1468. );
  1469. path = TSSetingVC;
  1470. sourceTree = "<group>";
  1471. };
  1472. A8F7751E2D38ED4500AA6E93 /* DataManger */ = {
  1473. isa = PBXGroup;
  1474. children = (
  1475. A8F775242D38ED8300AA6E93 /* Config */,
  1476. );
  1477. path = DataManger;
  1478. sourceTree = "<group>";
  1479. };
  1480. A8F775242D38ED8300AA6E93 /* Config */ = {
  1481. isa = PBXGroup;
  1482. children = (
  1483. A8F775232D38ED8300AA6E93 /* TSConfig.swift */,
  1484. );
  1485. path = Config;
  1486. sourceTree = "<group>";
  1487. };
  1488. A8F775332D38FC8E00AA6E93 /* VIewTool */ = {
  1489. isa = PBXGroup;
  1490. children = (
  1491. A83404DC2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift */,
  1492. A89EA6B92D5DDE4E000EB181 /* TSPageNullView.swift */,
  1493. A8F7763B2D3B429A00AA6E93 /* TSCommonloadingView.swift */,
  1494. A83404D22D9D23CA00C140E4 /* TSGeneratorloadingView.swift */,
  1495. A8F776282D3A709200AA6E93 /* UILabel */,
  1496. A8F775342D38FC9A00AA6E93 /* TSViewTool.swift */,
  1497. );
  1498. path = VIewTool;
  1499. sourceTree = "<group>";
  1500. };
  1501. A8F775392D3918A100AA6E93 /* TSNetWork */ = {
  1502. isa = PBXGroup;
  1503. children = (
  1504. A8F775372D390C3C00AA6E93 /* TSNetworkManager.swift */,
  1505. A8F7753C2D3918E200AA6E93 /* TSNetWork+Business.swift */,
  1506. A8F7753A2D3918D700AA6E93 /* TSNetworkManager+Loading.swift */,
  1507. A89EA67C2D59F1AC000EB181 /* StreamPostRequest.swift */,
  1508. );
  1509. path = TSNetWork;
  1510. sourceTree = "<group>";
  1511. };
  1512. A8F775412D39344A00AA6E93 /* SetingVC */ = {
  1513. isa = PBXGroup;
  1514. children = (
  1515. A8F775462D39348500AA6E93 /* View */,
  1516. A8F775442D39346700AA6E93 /* TSSetingViewModel.swift */,
  1517. A8F775422D39346100AA6E93 /* TSSetingModel.swift */,
  1518. A85E47BD2D68999B0018D62D /* ShareActivityItemProvider.swift */,
  1519. A8F7753E2D39340D00AA6E93 /* TSSetingVC.swift */,
  1520. );
  1521. path = SetingVC;
  1522. sourceTree = "<group>";
  1523. };
  1524. A8F775462D39348500AA6E93 /* View */ = {
  1525. isa = PBXGroup;
  1526. children = (
  1527. A80E73E52D5348CF00C64288 /* SettingPurchaseTopView.swift */,
  1528. A8F7754A2D39376700AA6E93 /* TSSettingListView.swift */,
  1529. );
  1530. path = View;
  1531. sourceTree = "<group>";
  1532. };
  1533. A8F775482D3935D600AA6E93 /* TSBusinessWebVC */ = {
  1534. isa = PBXGroup;
  1535. children = (
  1536. A8F775472D3935D600AA6E93 /* TSBusinessWebVC.swift */,
  1537. );
  1538. path = TSBusinessWebVC;
  1539. sourceTree = "<group>";
  1540. };
  1541. A8F7754C2D39E57B00AA6E93 /* Model */ = {
  1542. isa = PBXGroup;
  1543. children = (
  1544. A8F7754D2D39E58B00AA6E93 /* TSGenmojiModel.swift */,
  1545. );
  1546. path = Model;
  1547. sourceTree = "<group>";
  1548. };
  1549. A8F7761E2D3A3DB400AA6E93 /* TSEmojisChildVC */ = {
  1550. isa = PBXGroup;
  1551. children = (
  1552. A8FB02B82D3E3B970031A396 /* VIew */,
  1553. A8FB02B12D3E39750031A396 /* Model */,
  1554. A8F776492D3E006200AA6E93 /* ViewModel */,
  1555. A8F776202D3A3F0100AA6E93 /* TSEmojisChildVC.swift */,
  1556. );
  1557. path = TSEmojisChildVC;
  1558. sourceTree = "<group>";
  1559. };
  1560. A8F7761F2D3A3DBC00AA6E93 /* TSEmojisVC */ = {
  1561. isa = PBXGroup;
  1562. children = (
  1563. A8F7764C2D3E009A00AA6E93 /* ViewModel */,
  1564. A8F775182D38EC6700AA6E93 /* TSEmojisVC.swift */,
  1565. );
  1566. path = TSEmojisVC;
  1567. sourceTree = "<group>";
  1568. };
  1569. A8F776242D3A6EA100AA6E93 /* TSGenmojiVC */ = {
  1570. isa = PBXGroup;
  1571. children = (
  1572. A8F776302D3A770600AA6E93 /* ViewModel */,
  1573. A8F776252D3A6EAF00AA6E93 /* View */,
  1574. A8F7751A2D38EC9700AA6E93 /* TSGenmojiVC.swift */,
  1575. A8F7754C2D39E57B00AA6E93 /* Model */,
  1576. );
  1577. path = TSGenmojiVC;
  1578. sourceTree = "<group>";
  1579. };
  1580. A8F776252D3A6EAF00AA6E93 /* View */ = {
  1581. isa = PBXGroup;
  1582. children = (
  1583. A8F776342D3A7C1C00AA6E93 /* TSGenmojiColSectionView.swift */,
  1584. A8F7762C2D3A748800AA6E93 /* TSGenmojiGennerateCell.swift */,
  1585. A8F776362D3A805700AA6E93 /* TSGenmojiItemCell.swift */,
  1586. );
  1587. path = View;
  1588. sourceTree = "<group>";
  1589. };
  1590. A8F776282D3A709200AA6E93 /* UILabel */ = {
  1591. isa = PBXGroup;
  1592. children = (
  1593. );
  1594. path = UILabel;
  1595. sourceTree = "<group>";
  1596. };
  1597. A8F776292D3A70AA00AA6E93 /* UILabel */ = {
  1598. isa = PBXGroup;
  1599. children = (
  1600. A8BA765A2DA63E9B000B6707 /* TSClickableLinkLabel.swift */,
  1601. A8F7762A2D3A70AF00AA6E93 /* PaddedLabel.swift */,
  1602. );
  1603. path = UILabel;
  1604. sourceTree = "<group>";
  1605. };
  1606. A8F776302D3A770600AA6E93 /* ViewModel */ = {
  1607. isa = PBXGroup;
  1608. children = (
  1609. A8F776312D3A771100AA6E93 /* TSGenmojiCollectionViewModel.swift */,
  1610. A8F7762E2D3A764E00AA6E93 /* TSGenmojiViewModel.swift */,
  1611. );
  1612. path = ViewModel;
  1613. sourceTree = "<group>";
  1614. };
  1615. A8F7763A2D3B38E900AA6E93 /* TSGenmojiGennerateVC */ = {
  1616. isa = PBXGroup;
  1617. children = (
  1618. A8F7763E2D3B68E000AA6E93 /* TSGenmojiGennerateViewModel.swift */,
  1619. A8F776382D3B38D600AA6E93 /* TSGenmojiGennerateVC.swift */,
  1620. );
  1621. path = TSGenmojiGennerateVC;
  1622. sourceTree = "<group>";
  1623. };
  1624. A8F776402D3B75EA00AA6E93 /* General */ = {
  1625. isa = PBXGroup;
  1626. children = (
  1627. A85E47992D6808B30018D62D /* TSBigIconBrowseVC */,
  1628. A89EA6BD2D5E03CD000EB181 /* Ex */,
  1629. A8F776412D3B75EF00AA6E93 /* TSBottomAlertVC.swift */,
  1630. A8F776432D3DE89900AA6E93 /* TSSmallIconBrowseVC */,
  1631. );
  1632. path = General;
  1633. sourceTree = "<group>";
  1634. };
  1635. A8F776432D3DE89900AA6E93 /* TSSmallIconBrowseVC */ = {
  1636. isa = PBXGroup;
  1637. children = (
  1638. A8F776462D3DE9BD00AA6E93 /* View */,
  1639. A8F776442D3DE8A600AA6E93 /* TSSmallIconBrowseVC.swift */,
  1640. );
  1641. path = TSSmallIconBrowseVC;
  1642. sourceTree = "<group>";
  1643. };
  1644. A8F776462D3DE9BD00AA6E93 /* View */ = {
  1645. isa = PBXGroup;
  1646. children = (
  1647. A8F776472D3DE9C200AA6E93 /* TSSmallIconBrowseCell.swift */,
  1648. );
  1649. path = View;
  1650. sourceTree = "<group>";
  1651. };
  1652. A8F776492D3E006200AA6E93 /* ViewModel */ = {
  1653. isa = PBXGroup;
  1654. children = (
  1655. A8FB02B62D3E3A3B0031A396 /* TSEmojisChildViewModel.swift */,
  1656. A8F7764A2D3E007100AA6E93 /* TSEmojisChildColViewModel.swift */,
  1657. );
  1658. path = ViewModel;
  1659. sourceTree = "<group>";
  1660. };
  1661. A8F7764C2D3E009A00AA6E93 /* ViewModel */ = {
  1662. isa = PBXGroup;
  1663. children = (
  1664. A8F7764D2D3E00A000AA6E93 /* TSEmojisColViewModel.swift */,
  1665. );
  1666. path = ViewModel;
  1667. sourceTree = "<group>";
  1668. };
  1669. A8FB02AE2D3E38FA0031A396 /* Res */ = {
  1670. isa = PBXGroup;
  1671. children = (
  1672. A83404D62D9D34ED00C140E4 /* Kelsi-fill.otf */,
  1673. A83404D72D9D34ED00C140E4 /* Kelsi-Regular.otf */,
  1674. A83404CB2D9BEED800C140E4 /* Poppins-BlackItalic.ttf */,
  1675. A83404DA2D9D382200C140E4 /* AccentURW-Reg.ttf */,
  1676. A80EDE072D700395003CD332 /* rotatingAnimation.gif */,
  1677. A89EA6972D5B19F0000EB181 /* Butterfly🦋.json */,
  1678. A80E723E2D3F4D3000C64288 /* Universe🌍.json */,
  1679. A80E723B2D3F4CA700C64288 /* Food🍔.json */,
  1680. A8EEADE82D3E76D30032C5A0 /* Beauty👸.json */,
  1681. A8EEADE62D3E767E0032C5A0 /* Drink🥤.json */,
  1682. A8EEADDD2D3E755C0032C5A0 /* Fruit🍊.json */,
  1683. A8EEADE12D3E760C0032C5A0 /* Dog🐕.json */,
  1684. A8EEADDF2D3E75870032C5A0 /* Crystal🔮.json */,
  1685. A8EEADD72D3E74CB0032C5A0 /* Pink🩷.json */,
  1686. A8EEADD52D3E6CD30032C5A0 /* Fish🐠.json */,
  1687. A8EEADD32D3E6C610032C5A0 /* Flower💐.json */,
  1688. A8FB02D02D3E6B240031A396 /* Cat🐱.json */,
  1689. A80E72452D3F4EED00C64288 /* sticker.json */,
  1690. A80E72472D3F4F0500C64288 /* templates.json */,
  1691. A80EDDFC2D6EF34C003CD332 /* photo_to_photo_style.json */,
  1692. A87587152D81733C00286A66 /* text_to_photo_style.json */,
  1693. );
  1694. path = Res;
  1695. sourceTree = "<group>";
  1696. };
  1697. A8FB02B12D3E39750031A396 /* Model */ = {
  1698. isa = PBXGroup;
  1699. children = (
  1700. A8FB02B22D3E399F0031A396 /* TSEmojisModel.swift */,
  1701. );
  1702. path = Model;
  1703. sourceTree = "<group>";
  1704. };
  1705. A8FB02B82D3E3B970031A396 /* VIew */ = {
  1706. isa = PBXGroup;
  1707. children = (
  1708. A8FB02B92D3E3BB00031A396 /* TSEmojisCoLItemCell.swift */,
  1709. );
  1710. path = VIew;
  1711. sourceTree = "<group>";
  1712. };
  1713. /* End PBXGroup section */
  1714. /* Begin PBXNativeTarget section */
  1715. A8F774682D38E8B000AA6E93 /* AIEmoji */ = {
  1716. isa = PBXNativeTarget;
  1717. buildConfigurationList = A8F7747C2D38E8B200AA6E93 /* Build configuration list for PBXNativeTarget "AIEmoji" */;
  1718. buildPhases = (
  1719. 8D2F920BECF35527D1C24A4F /* [CP] Check Pods Manifest.lock */,
  1720. A8F774652D38E8B000AA6E93 /* Sources */,
  1721. A8F774662D38E8B000AA6E93 /* Frameworks */,
  1722. A8F774672D38E8B000AA6E93 /* Resources */,
  1723. A6FFE8F95E002D0E705F3EE6 /* [CP] Embed Pods Frameworks */,
  1724. );
  1725. buildRules = (
  1726. );
  1727. dependencies = (
  1728. );
  1729. name = AIEmoji;
  1730. productName = AIEmoji;
  1731. productReference = A8F774692D38E8B000AA6E93 /* AIEmoji.app */;
  1732. productType = "com.apple.product-type.application";
  1733. };
  1734. /* End PBXNativeTarget section */
  1735. /* Begin PBXProject section */
  1736. A8F774612D38E8B000AA6E93 /* Project object */ = {
  1737. isa = PBXProject;
  1738. attributes = {
  1739. BuildIndependentTargetsInParallel = 1;
  1740. LastSwiftUpdateCheck = 1620;
  1741. LastUpgradeCheck = 1620;
  1742. TargetAttributes = {
  1743. A8F774682D38E8B000AA6E93 = {
  1744. CreatedOnToolsVersion = 16.2;
  1745. LastSwiftMigration = 1620;
  1746. };
  1747. };
  1748. };
  1749. buildConfigurationList = A8F774642D38E8B000AA6E93 /* Build configuration list for PBXProject "AIEmoji" */;
  1750. developmentRegion = en;
  1751. hasScannedForEncodings = 0;
  1752. knownRegions = (
  1753. en,
  1754. Base,
  1755. "zh-Hans",
  1756. ko,
  1757. es,
  1758. "pt-BR",
  1759. "pt-PT",
  1760. ja,
  1761. de,
  1762. "zh-Hant",
  1763. );
  1764. mainGroup = A8F774602D38E8B000AA6E93;
  1765. minimizedProjectReferenceProxies = 1;
  1766. packageReferences = (
  1767. A89EA6492D59A588000EB181 /* XCRemoteSwiftPackageReference "MessageKit" */,
  1768. A8BA763A2DA4C225000B6707 /* XCRemoteSwiftPackageReference "SwiftUIX" */,
  1769. );
  1770. preferredProjectObjectVersion = 77;
  1771. productRefGroup = A8F7746A2D38E8B000AA6E93 /* Products */;
  1772. projectDirPath = "";
  1773. projectRoot = "";
  1774. targets = (
  1775. A8F774682D38E8B000AA6E93 /* AIEmoji */,
  1776. );
  1777. };
  1778. /* End PBXProject section */
  1779. /* Begin PBXResourcesBuildPhase section */
  1780. A8F774672D38E8B000AA6E93 /* Resources */ = {
  1781. isa = PBXResourcesBuildPhase;
  1782. buildActionMask = 2147483647;
  1783. files = (
  1784. A83404D82D9D34ED00C140E4 /* Kelsi-fill.otf in Resources */,
  1785. A83404D92D9D34ED00C140E4 /* Kelsi-Regular.otf in Resources */,
  1786. A80E72482D3F4F0A00C64288 /* templates.json in Resources */,
  1787. A83404CC2D9BEED800C140E4 /* Poppins-BlackItalic.ttf in Resources */,
  1788. A87587162D81734300286A66 /* text_to_photo_style.json in Resources */,
  1789. A8EEADD42D3E6C660032C5A0 /* Flower💐.json in Resources */,
  1790. A8EEADE92D3E76D90032C5A0 /* Beauty👸.json in Resources */,
  1791. A89EA6982D5B1A01000EB181 /* Butterfly🦋.json in Resources */,
  1792. A8EEADE02D3E75900032C5A0 /* Crystal🔮.json in Resources */,
  1793. A80E723C2D3F4CAA00C64288 /* Food🍔.json in Resources */,
  1794. A8EEADE72D3E76860032C5A0 /* Drink🥤.json in Resources */,
  1795. A83404DB2D9D382200C140E4 /* AccentURW-Reg.ttf in Resources */,
  1796. A80EDE082D700395003CD332 /* rotatingAnimation.gif in Resources */,
  1797. A83404FE2DA35BFE00C140E4 /* Localizable.strings in Resources */,
  1798. A8FB02D12D3E6B2A0031A396 /* Cat🐱.json in Resources */,
  1799. A80E72462D3F4EED00C64288 /* sticker.json in Resources */,
  1800. A80EDDFD2D6EF34F003CD332 /* photo_to_photo_style.json in Resources */,
  1801. A8EEADD62D3E6CD80032C5A0 /* Fish🐠.json in Resources */,
  1802. A8EEADE22D3E76110032C5A0 /* Dog🐕.json in Resources */,
  1803. A83405032DA35CB700C140E4 /* InfoPlist.strings in Resources */,
  1804. A8EEADD82D3E74D20032C5A0 /* Pink🩷.json in Resources */,
  1805. A80E723F2D3F4D3700C64288 /* Universe🌍.json in Resources */,
  1806. A8EEADDE2D3E75610032C5A0 /* Fruit🍊.json in Resources */,
  1807. A8F7748E2D38E8B700AA6E93 /* Assets.xcassets in Resources */,
  1808. A8F774902D38E8B700AA6E93 /* LaunchScreen.storyboard in Resources */,
  1809. );
  1810. runOnlyForDeploymentPostprocessing = 0;
  1811. };
  1812. /* End PBXResourcesBuildPhase section */
  1813. /* Begin PBXShellScriptBuildPhase section */
  1814. 8D2F920BECF35527D1C24A4F /* [CP] Check Pods Manifest.lock */ = {
  1815. isa = PBXShellScriptBuildPhase;
  1816. buildActionMask = 2147483647;
  1817. files = (
  1818. );
  1819. inputFileListPaths = (
  1820. );
  1821. inputPaths = (
  1822. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1823. "${PODS_ROOT}/Manifest.lock",
  1824. );
  1825. name = "[CP] Check Pods Manifest.lock";
  1826. outputFileListPaths = (
  1827. );
  1828. outputPaths = (
  1829. "$(DERIVED_FILE_DIR)/Pods-AIEmoji-checkManifestLockResult.txt",
  1830. );
  1831. runOnlyForDeploymentPostprocessing = 0;
  1832. shellPath = /bin/sh;
  1833. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1834. showEnvVarsInLog = 0;
  1835. };
  1836. A6FFE8F95E002D0E705F3EE6 /* [CP] Embed Pods Frameworks */ = {
  1837. isa = PBXShellScriptBuildPhase;
  1838. buildActionMask = 2147483647;
  1839. files = (
  1840. );
  1841. inputFileListPaths = (
  1842. "${PODS_ROOT}/Target Support Files/Pods-AIEmoji/Pods-AIEmoji-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1843. );
  1844. name = "[CP] Embed Pods Frameworks";
  1845. outputFileListPaths = (
  1846. "${PODS_ROOT}/Target Support Files/Pods-AIEmoji/Pods-AIEmoji-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1847. );
  1848. runOnlyForDeploymentPostprocessing = 0;
  1849. shellPath = /bin/sh;
  1850. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AIEmoji/Pods-AIEmoji-frameworks.sh\"\n";
  1851. showEnvVarsInLog = 0;
  1852. };
  1853. /* End PBXShellScriptBuildPhase section */
  1854. /* Begin PBXSourcesBuildPhase section */
  1855. A8F774652D38E8B000AA6E93 /* Sources */ = {
  1856. isa = PBXSourcesBuildPhase;
  1857. buildActionMask = 2147483647;
  1858. files = (
  1859. A8F775252D38ED8300AA6E93 /* TSConfig.swift in Sources */,
  1860. A80E726C2D409E8300C64288 /* TSDiyTLPinkAnimalView.swift in Sources */,
  1861. A80E72652D409B0D00C64288 /* DiyStaticElement.swift in Sources */,
  1862. A80EDE002D6EFD22003CD332 /* TSPhotoPickerManager.swift in Sources */,
  1863. A89EA6B42D5C9D43000EB181 /* TSAIChatHistoryVM.swift in Sources */,
  1864. A80E72532D3F985E00C64288 /* TSWallpaperVC.swift in Sources */,
  1865. A8FB02B32D3E39A40031A396 /* TSEmojisModel.swift in Sources */,
  1866. A89EA6542D59A9F4000EB181 /* TSTextLayoutSizeCalculator.swift in Sources */,
  1867. A89EA6552D59A9F4000EB181 /* TSChatMessage.swift in Sources */,
  1868. A89EA6562D59A9F4000EB181 /* TSChatUser.swift in Sources */,
  1869. A80327C12D8157CB00AF7878 /* TSTitleView.swift in Sources */,
  1870. A89EA6582D59A9F4000EB181 /* TSLayoutSizeCalculator.swift in Sources */,
  1871. A83404DD2D9E1D8C00C140E4 /* ImagesAnimateScrollView.swift in Sources */,
  1872. A89EA6592D59A9F4000EB181 /* CustomMessageFlowLayout.swift in Sources */,
  1873. A80E72792D42285500C64288 /* TSBootPageVC.swift in Sources */,
  1874. A80E726A2D409E5400C64288 /* TSDiyTLYFlowersView.swift in Sources */,
  1875. A8F7764E2D3E00A800AA6E93 /* TSEmojisColViewModel.swift in Sources */,
  1876. A89EA6C82D6359ED000EB181 /* TSChatViewController+VipView.swift in Sources */,
  1877. A8BA763F2DA4C908000B6707 /* TSPTPInputVC.swift in Sources */,
  1878. A8F776422D3B75FC00AA6E93 /* TSBottomAlertVC.swift in Sources */,
  1879. A8F775192D38EC6800AA6E93 /* TSEmojisVC.swift in Sources */,
  1880. A80E725C2D3FB09400C64288 /* TSKeyboardView.swift in Sources */,
  1881. A89EA6CC2D642CE2000EB181 /* TSChatViewController+NaviBar.swift in Sources */,
  1882. A8F7753B2D3918DE00AA6E93 /* TSNetworkManager+Loading.swift in Sources */,
  1883. A80E721A2D3F393A00C64288 /* DiyStickerModel.swift in Sources */,
  1884. A80EDDEB2D6EC014003CD332 /* TSPhotoToPhotoVC.swift in Sources */,
  1885. A80E726F2D40DE2B00C64288 /* TSWallpaperPreviewVC.swift in Sources */,
  1886. A8F775492D3935D600AA6E93 /* TSBusinessWebVC.swift in Sources */,
  1887. A8F776392D3B38E600AA6E93 /* TSGenmojiGennerateVC.swift in Sources */,
  1888. A85E47C02D6961BB0018D62D /* TSChatMessageUIModel.swift in Sources */,
  1889. A8F774E02D38EA8C00AA6E93 /* TSCommonTool.swift in Sources */,
  1890. A89EA6BF2D5E03D6000EB181 /* Notification+Ex.swift in Sources */,
  1891. A8F774E12D38EA8C00AA6E93 /* TSFileManagerTool.swift in Sources */,
  1892. A80E73E42D533EB000C64288 /* TSPurchaseManager.swift in Sources */,
  1893. A80327C52D81584500AF7878 /* TSGeneralBtnView.swift in Sources */,
  1894. A8F7762F2D3A765400AA6E93 /* TSGenmojiViewModel.swift in Sources */,
  1895. A8F7751B2D38EC9800AA6E93 /* TSGenmojiVC.swift in Sources */,
  1896. A80EDD462D6C3F82003CD332 /* MarkdownEscaping.swift in Sources */,
  1897. A80EDD472D6C3F82003CD332 /* MarkdownItalic.swift in Sources */,
  1898. A80EDD482D6C3F82003CD332 /* MarkdownBold.swift in Sources */,
  1899. A80EDD4A2D6C3F82003CD332 /* MarkdownLevelElement.swift in Sources */,
  1900. A80EDD4B2D6C3F82003CD332 /* MarkdownParser+AppKit.swift in Sources */,
  1901. A80EDD4C2D6C3F82003CD332 /* Typealias.swift in Sources */,
  1902. A80EDD4D2D6C3F82003CD332 /* MarkdownStrikethrough.swift in Sources */,
  1903. A80EDD4E2D6C3F82003CD332 /* MarkdownUnescaping.swift in Sources */,
  1904. A80EDD4F2D6C3F82003CD332 /* MarkdownParser+UIKit.swift in Sources */,
  1905. A80EDD502D6C3F82003CD332 /* MarkdownFont+Traits.swift in Sources */,
  1906. A80EDD512D6C3F82003CD332 /* MarkdownCode.swift in Sources */,
  1907. A875870F2D81689A00286A66 /* TSPTPEnterView.swift in Sources */,
  1908. A80EDD522D6C3F82003CD332 /* MarkdownCode+AppKit.swift in Sources */,
  1909. A80EDD532D6C3F82003CD332 /* MarkdownHeader.swift in Sources */,
  1910. A80EDD542D6C3F82003CD332 /* MarkdownQuote.swift in Sources */,
  1911. A80EDD552D6C3F82003CD332 /* UIFont+Traits.swift in Sources */,
  1912. A80EDD562D6C3F82003CD332 /* MarkdownHeader+AppKit.swift in Sources */,
  1913. A80EDD572D6C3F82003CD332 /* MarkdownCode+UIKit.swift in Sources */,
  1914. A80EDD582D6C3F82003CD332 /* String+UTF16.swift in Sources */,
  1915. A80EDD592D6C3F82003CD332 /* MarkdownLink+UIKit.swift in Sources */,
  1916. A80EDD5A2D6C3F82003CD332 /* MarkdownParser.swift in Sources */,
  1917. A80EDD5B2D6C3F82003CD332 /* MarkdownCommonElement.swift in Sources */,
  1918. A80EDD682D6C5098003CD332 /* TSChatMsgBaseView.swift in Sources */,
  1919. A8BA764F2DA50B52000B6707 /* CpuMapManager.swift in Sources */,
  1920. A80EDD5C2D6C3F82003CD332 /* MarkdownList.swift in Sources */,
  1921. A80EDD5D2D6C3F82003CD332 /* MarkdownCodeEscaping.swift in Sources */,
  1922. A80EDD5E2D6C3F82003CD332 /* MarkdownLinkElement.swift in Sources */,
  1923. A80EDD5F2D6C3F82003CD332 /* MarkdownHeader+UIKit.swift in Sources */,
  1924. A80EDE062D6F3491003CD332 /* TSPTPBrowseVC.swift in Sources */,
  1925. A80EDD6A2D6C518E003CD332 /* TSChatMsgToolView.swift in Sources */,
  1926. A80EDD602D6C3F82003CD332 /* MarkdownElement.swift in Sources */,
  1927. A80EDD612D6C3F82003CD332 /* MarkdownLink+AppKit.swift in Sources */,
  1928. A80EDD622D6C3F82003CD332 /* MarkdownLink.swift in Sources */,
  1929. A80EDD632D6C3F82003CD332 /* MarkdownAutomaticLink.swift in Sources */,
  1930. A80EDD642D6C3F82003CD332 /* MarkdownStyle.swift in Sources */,
  1931. A89EA6CF2D6430F3000EB181 /* TSChatViewController+Keyboard.swift in Sources */,
  1932. A8F7754E2D39E59100AA6E93 /* TSGenmojiModel.swift in Sources */,
  1933. A8F776452D3DE8A800AA6E93 /* TSSmallIconBrowseVC.swift in Sources */,
  1934. A80E72632D40925000C64288 /* TSDiyKeyboardVM.swift in Sources */,
  1935. A8F775432D39346400AA6E93 /* TSSetingModel.swift in Sources */,
  1936. A89EA6BA2D5DDE5B000EB181 /* TSPageNullView.swift in Sources */,
  1937. A89EA6C12D5ED289000EB181 /* TSChatCellConfig.swift in Sources */,
  1938. A8F775502D39ECED00AA6E93 /* PhotoManager.swift in Sources */,
  1939. A8F7763F2D3B68E100AA6E93 /* TSGenmojiGennerateViewModel.swift in Sources */,
  1940. A80E72352D3F473400C64288 /* DiyPaperTemplateBaseView.swift in Sources */,
  1941. A80E72362D3F473400C64288 /* DiyPaperTemplate.swift in Sources */,
  1942. A80327C32D81581D00AF7878 /* TSTTPStyleView.swift in Sources */,
  1943. A85E47922D6728A00018D62D /* TSTextGeneralPictureVM.swift in Sources */,
  1944. A89EA6B82D5D7EE9000EB181 /* TSAIChatHistoryModel.swift in Sources */,
  1945. A80E72722D40F86000C64288 /* TSLaunchVC.swift in Sources */,
  1946. A8F775352D38FC9A00AA6E93 /* TSViewTool.swift in Sources */,
  1947. A80E72592D3FA67800C64288 /* TSWallpaperViewModel.swift in Sources */,
  1948. A89EA67D2D59F1AF000EB181 /* StreamPostRequest.swift in Sources */,
  1949. A80E722F2D3F3E1400C64288 /* TSDiyCanvasView.swift in Sources */,
  1950. A80E72672D409C7D00C64288 /* Template+More.swift in Sources */,
  1951. A89EA6AC2D5B3EFB000EB181 /* TSRealmManager.swift in Sources */,
  1952. A80EDDE42D6EB8FA003CD332 /* TSPTPSelectStyleCell.swift in Sources */,
  1953. A8F775172D38EB7400AA6E93 /* TSTabBarController.swift in Sources */,
  1954. A80E73E12D533E5800C64288 /* TSPurchaseVC.swift in Sources */,
  1955. A80EDDE02D6EB1B9003CD332 /* TSPTPGeneratorCell.swift in Sources */,
  1956. A8F776352D3A7C2B00AA6E93 /* TSGenmojiColSectionView.swift in Sources */,
  1957. A80327B32D813D4900AF7878 /* TSTTPInputVC.swift in Sources */,
  1958. A80E724F2D3F6D7F00C64288 /* DiyFixedTextElement.swift in Sources */,
  1959. A85E478F2D67115A0018D62D /* TSTextGeneralPictureVC.swift in Sources */,
  1960. A89EA6C42D5F40CC000EB181 /* TSChatInputBarVC.swift in Sources */,
  1961. A8F775452D39347100AA6E93 /* TSSetingViewModel.swift in Sources */,
  1962. A80E72202D3F3A8600C64288 /* DiyElementBaseView.swift in Sources */,
  1963. A8F776212D3A3F0200AA6E93 /* TSEmojisChildVC.swift in Sources */,
  1964. A80E72222D3F3A9200C64288 /* DiyStickerElement.swift in Sources */,
  1965. A85E47C32D6964A50018D62D /* TSMSGAIDefaultHeaderView.swift in Sources */,
  1966. A80EDD032D6C282B003CD332 /* TSMarkDownTool.swift in Sources */,
  1967. A8F775002D38EA8C00AA6E93 /* WindowHelper.swift in Sources */,
  1968. A8F7764B2D3E008500AA6E93 /* TSEmojisChildColViewModel.swift in Sources */,
  1969. A80E72772D41EFF900C64288 /* TSEmojisTutorialsVC.swift in Sources */,
  1970. A83404C82D9BEC0E00C140E4 /* UIFont+TSEx.swift in Sources */,
  1971. A8F776482D3DE9F600AA6E93 /* TSSmallIconBrowseCell.swift in Sources */,
  1972. A8BA765B2DA63E9C000B6707 /* TSClickableLinkLabel.swift in Sources */,
  1973. A8F7753D2D3918F800AA6E93 /* TSNetWork+Business.swift in Sources */,
  1974. A83404D12D9D16FA00C140E4 /* TSAIPhotoGeneratorBaseVC.swift in Sources */,
  1975. A80327BF2D81578900AF7878 /* TSPromptTextView.swift in Sources */,
  1976. A80EDE022D6F1CCD003CD332 /* TSPTPGeneratorVC.swift in Sources */,
  1977. A8BA76572DA61A00000B6707 /* TSUploadPhotoPrivacyAlertVC.swift in Sources */,
  1978. A8BA76452DA4CB9A000B6707 /* TSPTPUploadView.swift in Sources */,
  1979. A85E479F2D6859FA0018D62D /* TSRandomTextPicker.swift in Sources */,
  1980. A8BA76522DA51600000B6707 /* TSPTPImageHintVC.swift in Sources */,
  1981. A80E72262D3F3A9A00C64288 /* HYHAddImageView.m in Sources */,
  1982. A80E72272D3F3A9A00C64288 /* DiyTextElement.swift in Sources */,
  1983. A8FB02BA2D3E3BB20031A396 /* TSEmojisCoLItemCell.swift in Sources */,
  1984. A87587182D81814500286A66 /* TSAIThinkingView.swift in Sources */,
  1985. A85E47962D672ADA0018D62D /* TSTextPicGennerateVC.swift in Sources */,
  1986. A80E72562D3F98D700C64288 /* TSDiyKeyboardViewVC.swift in Sources */,
  1987. A8F775032D38EA8C00AA6E93 /* GlobalImports.swift in Sources */,
  1988. A89EA67A2D59D25F000EB181 /* TSAIChatVM.swift in Sources */,
  1989. A80EDDF02D6EC045003CD332 /* TSPTPStyleModel.swift in Sources */,
  1990. A85E47BE2D68999B0018D62D /* ShareActivityItemProvider.swift in Sources */,
  1991. A8F7763C2D3B429B00AA6E93 /* TSCommonloadingView.swift in Sources */,
  1992. A8F776322D3A771400AA6E93 /* TSGenmojiCollectionViewModel.swift in Sources */,
  1993. A80E721E2D3F3A7500C64288 /* DiyElement.swift in Sources */,
  1994. A83404D32D9D23FA00C140E4 /* TSGeneratorloadingView.swift in Sources */,
  1995. A8F776372D3A806E00AA6E93 /* TSGenmojiItemCell.swift in Sources */,
  1996. A89EA6692D59AA31000EB181 /* CameraInputBarAccessoryView.swift in Sources */,
  1997. A89EA66B2D59AA31000EB181 /* TSTextMessageContentCell.swift in Sources */,
  1998. A83404D52D9D28D700C140E4 /* TSAIPhotoBrowseVC.swift in Sources */,
  1999. A89EA66C2D59AA31000EB181 /* TSMessageContentCell.swift in Sources */,
  2000. A87587122D81702700286A66 /* TSUserDefaultData.swift in Sources */,
  2001. A8BA76422DA4C924000B6707 /* TSPTPInputVM.swift in Sources */,
  2002. A89EA66D2D59AA31000EB181 /* TableViewCells.swift in Sources */,
  2003. A8BA76472DA4CC70000B6707 /* TSPTPSelectStyleView.swift in Sources */,
  2004. A8F7750A2D38EA8C00AA6E93 /* TSNetworkTool.swift in Sources */,
  2005. A8F7762D2D3A74A100AA6E93 /* TSGenmojiGennerateCell.swift in Sources */,
  2006. A89EA6BC2D5DFB12000EB181 /* TSViewController.swift in Sources */,
  2007. A85E479D2D6809DC0018D62D /* TSBigIconBrowseCell.swift in Sources */,
  2008. A89EA6832D59F4F9000EB181 /* TSChatViewController+ChatDelegate.swift in Sources */,
  2009. A89EA6A32D5B26E3000EB181 /* TSDBAIChatList.swift in Sources */,
  2010. A8F7753F2D39340E00AA6E93 /* TSSetingVC.swift in Sources */,
  2011. A8F7762B2D3A70B200AA6E93 /* PaddedLabel.swift in Sources */,
  2012. A80E73E62D5348D000C64288 /* SettingPurchaseTopView.swift in Sources */,
  2013. A899D34A2D827A0E00AB9C1C /* TSChatThinkingModel.swift in Sources */,
  2014. A80EDDE22D6EB8D8003CD332 /* TSPTPUploadCell.swift in Sources */,
  2015. A80EDDF62D6EC1ED003CD332 /* TSPhotoToPhotoVM.swift in Sources */,
  2016. A80E72382D3F473B00C64288 /* DiyPaperProtocol.swift in Sources */,
  2017. A83405202DA3ADA900C140E4 /* TSPhotoSizeHelper.swift in Sources */,
  2018. A8F775382D390C3C00AA6E93 /* TSNetworkManager.swift in Sources */,
  2019. A80EDDE72D6EBFC1003CD332 /* TSPTPGeneratorVM.swift in Sources */,
  2020. A85E47982D672AE70018D62D /* TSTextPicGennerateVM.swift in Sources */,
  2021. A89EA65F2D59AA11000EB181 /* TSChatViewController.swift in Sources */,
  2022. A89EA6C62D5F5C22000EB181 /* TSChatInputFullScreenVC.swift in Sources */,
  2023. A89EA6CA2D642C0A000EB181 /* TSChatViewController+SendMsg.swift in Sources */,
  2024. A85E479B2D6808C40018D62D /* TSBigIconBrowseVC.swift in Sources */,
  2025. A80327B62D813D8700AF7878 /* TSTTPInputVM.swift in Sources */,
  2026. A89EA6B12D5C9D0C000EB181 /* TSAIChatHistoryVC.swift in Sources */,
  2027. A8FB02B72D3E3A3D0031A396 /* TSEmojisChildViewModel.swift in Sources */,
  2028. A8F7754B2D39376800AA6E93 /* TSSettingListView.swift in Sources */,
  2029. A8F7748B2D38E8B700AA6E93 /* AppDelegate.swift in Sources */,
  2030. A80327B02D813A0200AF7878 /* TSTTPSelectStyleCell.swift in Sources */,
  2031. );
  2032. runOnlyForDeploymentPostprocessing = 0;
  2033. };
  2034. /* End PBXSourcesBuildPhase section */
  2035. /* Begin PBXVariantGroup section */
  2036. A83404FC2DA35BFE00C140E4 /* Localizable.strings */ = {
  2037. isa = PBXVariantGroup;
  2038. children = (
  2039. A83404FD2DA35BFE00C140E4 /* en */,
  2040. A83405072DA3717300C140E4 /* zh-Hans */,
  2041. A834050B2DA381A100C140E4 /* ko */,
  2042. A834050E2DA381AE00C140E4 /* es */,
  2043. A83405112DA3826000C140E4 /* pt-BR */,
  2044. A83405142DA3826600C140E4 /* pt-PT */,
  2045. A83405172DA3827C00C140E4 /* ja */,
  2046. A834051A2DA3828E00C140E4 /* de */,
  2047. A8BA764C2DA4F689000B6707 /* zh-Hant */,
  2048. );
  2049. name = Localizable.strings;
  2050. sourceTree = "<group>";
  2051. };
  2052. A83405012DA35CB700C140E4 /* InfoPlist.strings */ = {
  2053. isa = PBXVariantGroup;
  2054. children = (
  2055. A83405022DA35CB700C140E4 /* en */,
  2056. A83405062DA3717300C140E4 /* zh-Hans */,
  2057. A834050A2DA381A100C140E4 /* ko */,
  2058. A834050D2DA381AE00C140E4 /* es */,
  2059. A83405102DA3826000C140E4 /* pt-BR */,
  2060. A83405132DA3826600C140E4 /* pt-PT */,
  2061. A83405162DA3827C00C140E4 /* ja */,
  2062. A83405192DA3828E00C140E4 /* de */,
  2063. A8BA764B2DA4F689000B6707 /* zh-Hant */,
  2064. );
  2065. name = InfoPlist.strings;
  2066. sourceTree = "<group>";
  2067. };
  2068. A8F774852D38E8B700AA6E93 /* LaunchScreen.storyboard */ = {
  2069. isa = PBXVariantGroup;
  2070. children = (
  2071. A8F774842D38E8B700AA6E93 /* Base */,
  2072. A83405052DA3717300C140E4 /* zh-Hans */,
  2073. A83405092DA381A100C140E4 /* ko */,
  2074. A834050C2DA381AD00C140E4 /* es */,
  2075. A834050F2DA3826000C140E4 /* pt-BR */,
  2076. A83405122DA3826600C140E4 /* pt-PT */,
  2077. A83405152DA3827C00C140E4 /* ja */,
  2078. A83405182DA3828E00C140E4 /* de */,
  2079. A8BA764A2DA4F689000B6707 /* zh-Hant */,
  2080. );
  2081. name = LaunchScreen.storyboard;
  2082. sourceTree = "<group>";
  2083. };
  2084. /* End PBXVariantGroup section */
  2085. /* Begin XCBuildConfiguration section */
  2086. A8F7747D2D38E8B200AA6E93 /* Debug */ = {
  2087. isa = XCBuildConfiguration;
  2088. baseConfigurationReference = CA9B99CBEC45A6004629E790 /* Pods-AIEmoji.debug.xcconfig */;
  2089. buildSettings = {
  2090. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2091. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2092. CLANG_ENABLE_MODULES = YES;
  2093. CODE_SIGN_STYLE = Automatic;
  2094. CURRENT_PROJECT_VERSION = 5;
  2095. DEVELOPMENT_TEAM = 65UD255J84;
  2096. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  2097. GENERATE_INFOPLIST_FILE = YES;
  2098. INFOPLIST_FILE = AIEmoji/Info.plist;
  2099. INFOPLIST_KEY_CFBundleDisplayName = Ghiblii;
  2100. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Allow us to access photos to upload your photos to generate new styles.";
  2101. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  2102. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  2103. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  2104. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  2105. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2106. LD_RUNPATH_SEARCH_PATHS = (
  2107. "$(inherited)",
  2108. "@executable_path/Frameworks",
  2109. );
  2110. MARKETING_VERSION = 3.0;
  2111. PRODUCT_BUNDLE_IDENTIFIER = com.girl.music.wallpaper;
  2112. PRODUCT_NAME = "$(TARGET_NAME)";
  2113. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2114. SUPPORTS_MACCATALYST = NO;
  2115. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  2116. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  2117. SWIFT_EMIT_LOC_STRINGS = YES;
  2118. SWIFT_OBJC_BRIDGING_HEADER = "AIEmoji/Business/TSWallpaperVC/DiyWallpaper/Elemnet/AIEmoji-Bridging-Header.h";
  2119. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2120. SWIFT_VERSION = 5.0;
  2121. TARGETED_DEVICE_FAMILY = 1;
  2122. };
  2123. name = Debug;
  2124. };
  2125. A8F7747E2D38E8B200AA6E93 /* Release */ = {
  2126. isa = XCBuildConfiguration;
  2127. baseConfigurationReference = 6E77A292B548CD79E381757E /* Pods-AIEmoji.release.xcconfig */;
  2128. buildSettings = {
  2129. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2130. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2131. CLANG_ENABLE_MODULES = YES;
  2132. CODE_SIGN_STYLE = Automatic;
  2133. CURRENT_PROJECT_VERSION = 5;
  2134. DEVELOPMENT_TEAM = 65UD255J84;
  2135. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  2136. GENERATE_INFOPLIST_FILE = YES;
  2137. INFOPLIST_FILE = AIEmoji/Info.plist;
  2138. INFOPLIST_KEY_CFBundleDisplayName = Ghiblii;
  2139. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "Allow us to access photos to upload your photos to generate new styles.";
  2140. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  2141. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  2142. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  2143. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  2144. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  2145. LD_RUNPATH_SEARCH_PATHS = (
  2146. "$(inherited)",
  2147. "@executable_path/Frameworks",
  2148. );
  2149. MARKETING_VERSION = 3.0;
  2150. PRODUCT_BUNDLE_IDENTIFIER = com.girl.music.wallpaper;
  2151. PRODUCT_NAME = "$(TARGET_NAME)";
  2152. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  2153. SUPPORTS_MACCATALYST = NO;
  2154. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  2155. SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
  2156. SWIFT_EMIT_LOC_STRINGS = YES;
  2157. SWIFT_OBJC_BRIDGING_HEADER = "AIEmoji/Business/TSWallpaperVC/DiyWallpaper/Elemnet/AIEmoji-Bridging-Header.h";
  2158. SWIFT_VERSION = 5.0;
  2159. TARGETED_DEVICE_FAMILY = 1;
  2160. };
  2161. name = Release;
  2162. };
  2163. A8F7747F2D38E8B200AA6E93 /* Debug */ = {
  2164. isa = XCBuildConfiguration;
  2165. buildSettings = {
  2166. ALWAYS_SEARCH_USER_PATHS = NO;
  2167. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2168. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2169. CLANG_ANALYZER_NONNULL = YES;
  2170. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2171. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2172. CLANG_ENABLE_MODULES = YES;
  2173. CLANG_ENABLE_OBJC_ARC = YES;
  2174. CLANG_ENABLE_OBJC_WEAK = YES;
  2175. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2176. CLANG_WARN_BOOL_CONVERSION = YES;
  2177. CLANG_WARN_COMMA = YES;
  2178. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2179. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2180. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2181. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2182. CLANG_WARN_EMPTY_BODY = YES;
  2183. CLANG_WARN_ENUM_CONVERSION = YES;
  2184. CLANG_WARN_INFINITE_RECURSION = YES;
  2185. CLANG_WARN_INT_CONVERSION = YES;
  2186. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2187. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2188. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2189. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2190. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2191. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2192. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2193. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2194. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2195. CLANG_WARN_UNREACHABLE_CODE = YES;
  2196. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2197. COPY_PHASE_STRIP = NO;
  2198. DEBUG_INFORMATION_FORMAT = dwarf;
  2199. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2200. ENABLE_TESTABILITY = YES;
  2201. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2202. GCC_C_LANGUAGE_STANDARD = gnu17;
  2203. GCC_DYNAMIC_NO_PIC = NO;
  2204. GCC_NO_COMMON_BLOCKS = YES;
  2205. GCC_OPTIMIZATION_LEVEL = 0;
  2206. GCC_PREPROCESSOR_DEFINITIONS = (
  2207. "DEBUG=1",
  2208. "$(inherited)",
  2209. );
  2210. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2211. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2212. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2213. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2214. GCC_WARN_UNUSED_FUNCTION = YES;
  2215. GCC_WARN_UNUSED_VARIABLE = YES;
  2216. IPHONEOS_DEPLOYMENT_TARGET = 18.2;
  2217. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2218. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2219. MTL_FAST_MATH = YES;
  2220. ONLY_ACTIVE_ARCH = YES;
  2221. SDKROOT = iphoneos;
  2222. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  2223. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  2224. };
  2225. name = Debug;
  2226. };
  2227. A8F774802D38E8B200AA6E93 /* Release */ = {
  2228. isa = XCBuildConfiguration;
  2229. buildSettings = {
  2230. ALWAYS_SEARCH_USER_PATHS = NO;
  2231. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  2232. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2233. CLANG_ANALYZER_NONNULL = YES;
  2234. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2235. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2236. CLANG_ENABLE_MODULES = YES;
  2237. CLANG_ENABLE_OBJC_ARC = YES;
  2238. CLANG_ENABLE_OBJC_WEAK = YES;
  2239. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2240. CLANG_WARN_BOOL_CONVERSION = YES;
  2241. CLANG_WARN_COMMA = YES;
  2242. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2243. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2244. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2245. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2246. CLANG_WARN_EMPTY_BODY = YES;
  2247. CLANG_WARN_ENUM_CONVERSION = YES;
  2248. CLANG_WARN_INFINITE_RECURSION = YES;
  2249. CLANG_WARN_INT_CONVERSION = YES;
  2250. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2251. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2252. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2253. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2254. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2255. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2256. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2257. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2258. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2259. CLANG_WARN_UNREACHABLE_CODE = YES;
  2260. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2261. COPY_PHASE_STRIP = NO;
  2262. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2263. ENABLE_NS_ASSERTIONS = NO;
  2264. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2265. ENABLE_USER_SCRIPT_SANDBOXING = YES;
  2266. GCC_C_LANGUAGE_STANDARD = gnu17;
  2267. GCC_NO_COMMON_BLOCKS = YES;
  2268. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2269. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2270. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2271. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2272. GCC_WARN_UNUSED_FUNCTION = YES;
  2273. GCC_WARN_UNUSED_VARIABLE = YES;
  2274. IPHONEOS_DEPLOYMENT_TARGET = 18.2;
  2275. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  2276. MTL_ENABLE_DEBUG_INFO = NO;
  2277. MTL_FAST_MATH = YES;
  2278. SDKROOT = iphoneos;
  2279. SWIFT_COMPILATION_MODE = wholemodule;
  2280. VALIDATE_PRODUCT = YES;
  2281. };
  2282. name = Release;
  2283. };
  2284. /* End XCBuildConfiguration section */
  2285. /* Begin XCConfigurationList section */
  2286. A8F774642D38E8B000AA6E93 /* Build configuration list for PBXProject "AIEmoji" */ = {
  2287. isa = XCConfigurationList;
  2288. buildConfigurations = (
  2289. A8F7747F2D38E8B200AA6E93 /* Debug */,
  2290. A8F774802D38E8B200AA6E93 /* Release */,
  2291. );
  2292. defaultConfigurationIsVisible = 0;
  2293. defaultConfigurationName = Release;
  2294. };
  2295. A8F7747C2D38E8B200AA6E93 /* Build configuration list for PBXNativeTarget "AIEmoji" */ = {
  2296. isa = XCConfigurationList;
  2297. buildConfigurations = (
  2298. A8F7747D2D38E8B200AA6E93 /* Debug */,
  2299. A8F7747E2D38E8B200AA6E93 /* Release */,
  2300. );
  2301. defaultConfigurationIsVisible = 0;
  2302. defaultConfigurationName = Release;
  2303. };
  2304. /* End XCConfigurationList section */
  2305. /* Begin XCRemoteSwiftPackageReference section */
  2306. A89EA6492D59A588000EB181 /* XCRemoteSwiftPackageReference "MessageKit" */ = {
  2307. isa = XCRemoteSwiftPackageReference;
  2308. repositoryURL = "https://github.com/MessageKit/MessageKit";
  2309. requirement = {
  2310. kind = upToNextMajorVersion;
  2311. minimumVersion = 5.0.0;
  2312. };
  2313. };
  2314. A8BA763A2DA4C225000B6707 /* XCRemoteSwiftPackageReference "SwiftUIX" */ = {
  2315. isa = XCRemoteSwiftPackageReference;
  2316. repositoryURL = "https://github.com/SwiftUIX/SwiftUIX.git";
  2317. requirement = {
  2318. kind = upToNextMajorVersion;
  2319. minimumVersion = 0.2.3;
  2320. };
  2321. };
  2322. /* End XCRemoteSwiftPackageReference section */
  2323. /* Begin XCSwiftPackageProductDependency section */
  2324. A85E47C52D697E750018D62D /* SwiftUIX */ = {
  2325. isa = XCSwiftPackageProductDependency;
  2326. productName = SwiftUIX;
  2327. };
  2328. A89EA64A2D59A588000EB181 /* MessageKit */ = {
  2329. isa = XCSwiftPackageProductDependency;
  2330. package = A89EA6492D59A588000EB181 /* XCRemoteSwiftPackageReference "MessageKit" */;
  2331. productName = MessageKit;
  2332. };
  2333. A8BA763B2DA4C225000B6707 /* SwiftUIX */ = {
  2334. isa = XCSwiftPackageProductDependency;
  2335. package = A8BA763A2DA4C225000B6707 /* XCRemoteSwiftPackageReference "SwiftUIX" */;
  2336. productName = SwiftUIX;
  2337. };
  2338. /* End XCSwiftPackageProductDependency section */
  2339. };
  2340. rootObject = A8F774612D38E8B000AA6E93 /* Project object */;
  2341. }