Pods-jiaPei-acknowledgements.plist 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>PreferenceSpecifiers</key>
  6. <array>
  7. <dict>
  8. <key>FooterText</key>
  9. <string>This application makes use of the following third party libraries:</string>
  10. <key>Title</key>
  11. <string>Acknowledgements</string>
  12. <key>Type</key>
  13. <string>PSGroupSpecifier</string>
  14. </dict>
  15. <dict>
  16. <key>FooterText</key>
  17. <string>MIT License
  18. Copyright (c) 2022 ADSuyi_Kit
  19. Permission is hereby granted, free of charge, to any person obtaining a copy
  20. of this software and associated documentation files (the "Software"), to deal
  21. in the Software without restriction, including without limitation the rights
  22. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  23. copies of the Software, and to permit persons to whom the Software is
  24. furnished to do so, subject to the following conditions:
  25. The above copyright notice and this permission notice shall be included in all
  26. copies or substantial portions of the Software.
  27. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  28. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  29. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  30. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  31. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  32. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  33. SOFTWARE.
  34. </string>
  35. <key>License</key>
  36. <string>MIT</string>
  37. <key>Title</key>
  38. <string>ADSuyiKit</string>
  39. <key>Type</key>
  40. <string>PSGroupSpecifier</string>
  41. </dict>
  42. <dict>
  43. <key>FooterText</key>
  44. <string>MIT License
  45. Copyright (c) 2022 ADSuyi_Kit
  46. Permission is hereby granted, free of charge, to any person obtaining a copy
  47. of this software and associated documentation files (the "Software"), to deal
  48. in the Software without restriction, including without limitation the rights
  49. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  50. copies of the Software, and to permit persons to whom the Software is
  51. furnished to do so, subject to the following conditions:
  52. The above copyright notice and this permission notice shall be included in all
  53. copies or substantial portions of the Software.
  54. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  55. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  56. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  57. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  58. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  59. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  60. SOFTWARE.
  61. </string>
  62. <key>License</key>
  63. <string>MIT</string>
  64. <key>Title</key>
  65. <string>ADSuyiLocationManager</string>
  66. <key>Type</key>
  67. <string>PSGroupSpecifier</string>
  68. </dict>
  69. <dict>
  70. <key>FooterText</key>
  71. <string>MIT License
  72. Copyright (c) 2022 ADSuyi_Kit
  73. Permission is hereby granted, free of charge, to any person obtaining a copy
  74. of this software and associated documentation files (the "Software"), to deal
  75. in the Software without restriction, including without limitation the rights
  76. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  77. copies of the Software, and to permit persons to whom the Software is
  78. furnished to do so, subject to the following conditions:
  79. The above copyright notice and this permission notice shall be included in all
  80. copies or substantial portions of the Software.
  81. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  82. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  83. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  84. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  85. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  86. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  87. SOFTWARE.
  88. </string>
  89. <key>License</key>
  90. <string>MIT</string>
  91. <key>Title</key>
  92. <string>ADSuyiSDK</string>
  93. <key>Type</key>
  94. <string>PSGroupSpecifier</string>
  95. </dict>
  96. <dict>
  97. <key>FooterText</key>
  98. <string>Copyright (c) 2011-2020 Alamofire Software Foundation (http://alamofire.org/)
  99. Permission is hereby granted, free of charge, to any person obtaining a copy
  100. of this software and associated documentation files (the "Software"), to deal
  101. in the Software without restriction, including without limitation the rights
  102. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  103. copies of the Software, and to permit persons to whom the Software is
  104. furnished to do so, subject to the following conditions:
  105. The above copyright notice and this permission notice shall be included in
  106. all copies or substantial portions of the Software.
  107. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  108. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  109. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  110. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  111. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  112. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  113. THE SOFTWARE.
  114. </string>
  115. <key>License</key>
  116. <string>MIT</string>
  117. <key>Title</key>
  118. <string>AFNetworking</string>
  119. <key>Type</key>
  120. <string>PSGroupSpecifier</string>
  121. </dict>
  122. <dict>
  123. <key>FooterText</key>
  124. <string>MIT License
  125. Copyright (c) 2018 Bytedance Inc.
  126. Permission is hereby granted, free of charge, to any person obtaining a copy
  127. of this software and associated documentation files (the "Software"), to deal
  128. in the Software without restriction, including without limitation the rights
  129. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  130. copies of the Software, and to permit persons to whom the Software is
  131. furnished to do so, subject to the following conditions:
  132. The above copyright notice and this permission notice shall be included in all
  133. copies or substantial portions of the Software.
  134. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  135. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  136. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  137. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  138. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  139. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  140. SOFTWARE.
  141. </string>
  142. <key>License</key>
  143. <string>MIT</string>
  144. <key>Title</key>
  145. <string>Ads-CN</string>
  146. <key>Type</key>
  147. <string>PSGroupSpecifier</string>
  148. </dict>
  149. <dict>
  150. <key>FooterText</key>
  151. <string>MIT License
  152. Copyright (c) 2018 Antfin
  153. Permission is hereby granted, free of charge, to any person obtaining a copy
  154. of this software and associated documentation files (the "Software"), to deal
  155. in the Software without restriction, including without limitation the rights
  156. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  157. copies of the Software, and to permit persons to whom the Software is
  158. furnished to do so, subject to the following conditions:
  159. The above copyright notice and this permission notice shall be included in all
  160. copies or substantial portions of the Software.
  161. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  162. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  163. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  164. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  165. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  166. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  167. SOFTWARE.
  168. </string>
  169. <key>License</key>
  170. <string>MIT</string>
  171. <key>Title</key>
  172. <string>AlipaySDK-iOS</string>
  173. <key>Type</key>
  174. <string>PSGroupSpecifier</string>
  175. </dict>
  176. <dict>
  177. <key>FooterText</key>
  178. <string>Copyright (c) 2020 BaiduLBS</string>
  179. <key>License</key>
  180. <string>Copyright</string>
  181. <key>Title</key>
  182. <string>BMKLocationKit</string>
  183. <key>Type</key>
  184. <string>PSGroupSpecifier</string>
  185. </dict>
  186. <dict>
  187. <key>FooterText</key>
  188. <string>Copyright (c) 2015 BaiduLBS</string>
  189. <key>License</key>
  190. <string>Copyright</string>
  191. <key>Title</key>
  192. <string>BaiduMapKit</string>
  193. <key>Type</key>
  194. <string>PSGroupSpecifier</string>
  195. </dict>
  196. <dict>
  197. <key>FooterText</key>
  198. <string>Copyright (C) 2017 Tencent Bugly, Inc. All rights reserved.
  199. </string>
  200. <key>License</key>
  201. <string>Copyright</string>
  202. <key>Title</key>
  203. <string>Bugly</string>
  204. <key>Type</key>
  205. <string>PSGroupSpecifier</string>
  206. </dict>
  207. <dict>
  208. <key>FooterText</key>
  209. <string>MIT License
  210. Copyright (c) 2019 974794055
  211. Permission is hereby granted, free of charge, to any person obtaining a copy
  212. of this software and associated documentation files (the "Software"), to deal
  213. in the Software without restriction, including without limitation the rights
  214. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  215. copies of the Software, and to permit persons to whom the Software is
  216. furnished to do so, subject to the following conditions:
  217. The above copyright notice and this permission notice shall be included in all
  218. copies or substantial portions of the Software.
  219. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  220. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  221. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  222. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  223. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  224. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  225. SOFTWARE.
  226. </string>
  227. <key>License</key>
  228. <string>MIT</string>
  229. <key>Title</key>
  230. <string>CGXVerticalMenuView-OC</string>
  231. <key>Type</key>
  232. <string>PSGroupSpecifier</string>
  233. </dict>
  234. <dict>
  235. <key>FooterText</key>
  236. <string>Public Domain License
  237. The CocoaAsyncSocket project is in the public domain.
  238. The original TCP version (AsyncSocket) was created by Dustin Voss in January 2003.
  239. Updated and maintained by Deusty LLC and the Apple development community.
  240. </string>
  241. <key>License</key>
  242. <string>public domain</string>
  243. <key>Title</key>
  244. <string>CocoaAsyncSocket</string>
  245. <key>Type</key>
  246. <string>PSGroupSpecifier</string>
  247. </dict>
  248. <dict>
  249. <key>FooterText</key>
  250. <string>The MIT License (MIT)
  251. Copyright (c) 2013 Kelp https://github.com/kelp404
  252. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  253. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  254. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  255. </string>
  256. <key>License</key>
  257. <string>MIT</string>
  258. <key>Title</key>
  259. <string>CocoaSecurity</string>
  260. <key>Type</key>
  261. <string>PSGroupSpecifier</string>
  262. </dict>
  263. <dict>
  264. <key>FooterText</key>
  265. <string># License
  266. ## MIT License
  267. Copyright (c) 2013 Daniel Amitay (http://danielamitay.com)
  268. Permission is hereby granted, free of charge, to any person obtaining a copy
  269. of this software and associated documentation files (the "Software"), to deal
  270. in the Software without restriction, including without limitation the rights
  271. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  272. copies of the Software, and to permit persons to whom the Software is
  273. furnished to do so, subject to the following conditions:
  274. The above copyright notice and this permission notice shall be included in
  275. all copies or substantial portions of the Software.
  276. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  277. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  278. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  279. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  280. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  281. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  282. THE SOFTWARE.</string>
  283. <key>License</key>
  284. <string>MIT</string>
  285. <key>Title</key>
  286. <string>DACircularProgress</string>
  287. <key>Type</key>
  288. <string>PSGroupSpecifier</string>
  289. </dict>
  290. <dict>
  291. <key>FooterText</key>
  292. <string>Copyright (c) 2013-2016, Douban Inc. &lt;http://www.douban.com/&gt;
  293. All rights reserved.
  294. Redistribution and use in source and binary forms, with or without
  295. modification, are permitted provided that the following conditions are
  296. met:
  297. * Redistributions of source code must retain the above copyright
  298. notice, this list of conditions and the following disclaimer.
  299. * Redistributions in binary form must reproduce the above
  300. copyright notice, this list of conditions and the following disclaimer
  301. in the documentation and/or other materials provided with the
  302. distribution.
  303. * Neither the name of the Douban Inc. nor the names of its
  304. contributors may be used to endorse or promote products derived from
  305. this software without specific prior written permission.
  306. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  307. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  308. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  309. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  310. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  311. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  312. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  313. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  314. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  315. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  316. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  317. </string>
  318. <key>License</key>
  319. <string>BSD</string>
  320. <key>Title</key>
  321. <string>DOUAudioStreamer</string>
  322. <key>Type</key>
  323. <string>PSGroupSpecifier</string>
  324. </dict>
  325. <dict>
  326. <key>FooterText</key>
  327. <string>License
  328. For FBRetainCycleDetector software
  329. Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
  330. Redistribution and use in source and binary forms, with or without modification,
  331. are permitted provided that the following conditions are met:
  332. * Redistributions of source code must retain the above copyright notice, this
  333. list of conditions and the following disclaimer.
  334. * Redistributions in binary form must reproduce the above copyright notice,
  335. this list of conditions and the following disclaimer in the documentation
  336. and/or other materials provided with the distribution.
  337. * Neither the name Facebook nor the names of its contributors may be used to
  338. endorse or promote products derived from this software without specific
  339. prior written permission.
  340. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  341. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  342. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  343. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  344. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  345. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  346. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  347. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  348. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  349. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  350. </string>
  351. <key>License</key>
  352. <string>BSD</string>
  353. <key>Title</key>
  354. <string>FBRetainCycleDetector</string>
  355. <key>Type</key>
  356. <string>PSGroupSpecifier</string>
  357. </dict>
  358. <dict>
  359. <key>FooterText</key>
  360. <string>The MIT License (MIT)
  361. Copyright (c) 2016 Fabio Caccamo - fabio.caccamo@gmail.com
  362. Permission is hereby granted, free of charge, to any person obtaining a copy
  363. of this software and associated documentation files (the "Software"), to deal
  364. in the Software without restriction, including without limitation the rights
  365. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  366. copies of the Software, and to permit persons to whom the Software is
  367. furnished to do so, subject to the following conditions:
  368. The above copyright notice and this permission notice shall be included in
  369. all copies or substantial portions of the Software.
  370. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  371. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  372. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  373. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  374. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  375. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  376. THE SOFTWARE.
  377. </string>
  378. <key>License</key>
  379. <string>MIT</string>
  380. <key>Title</key>
  381. <string>FCUUID</string>
  382. <key>Type</key>
  383. <string>PSGroupSpecifier</string>
  384. </dict>
  385. <dict>
  386. <key>FooterText</key>
  387. <string>The MIT License (MIT)
  388. Copyright (c) 2015
  389. Permission is hereby granted, free of charge, to any person obtaining a copy
  390. of this software and associated documentation files (the "Software"), to deal
  391. in the Software without restriction, including without limitation the rights
  392. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  393. copies of the Software, and to permit persons to whom the Software is
  394. furnished to do so, subject to the following conditions:
  395. The above copyright notice and this permission notice shall be included in all
  396. copies or substantial portions of the Software.
  397. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  398. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  399. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  400. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  401. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  402. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  403. SOFTWARE.
  404. </string>
  405. <key>License</key>
  406. <string>MIT</string>
  407. <key>Title</key>
  408. <string>FDFullscreenPopGesture</string>
  409. <key>Type</key>
  410. <string>PSGroupSpecifier</string>
  411. </dict>
  412. <dict>
  413. <key>FooterText</key>
  414. <string>The MIT License (MIT)
  415. Copyright (c) 2014-2016 Flipboard
  416. Permission is hereby granted, free of charge, to any person obtaining a copy
  417. of this software and associated documentation files (the "Software"), to deal
  418. in the Software without restriction, including without limitation the rights
  419. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  420. copies of the Software, and to permit persons to whom the Software is
  421. furnished to do so, subject to the following conditions:
  422. The above copyright notice and this permission notice shall be included in all
  423. copies or substantial portions of the Software.
  424. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  425. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  426. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  427. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  428. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  429. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  430. SOFTWARE.
  431. </string>
  432. <key>License</key>
  433. <string>MIT</string>
  434. <key>Title</key>
  435. <string>FLAnimatedImage</string>
  436. <key>Type</key>
  437. <string>PSGroupSpecifier</string>
  438. </dict>
  439. <dict>
  440. <key>FooterText</key>
  441. <string>If you are using FMDB in your project, I'd love to hear about it. Let Gus know
  442. by sending an email to gus@flyingmeat.com.
  443. And if you happen to come across either Gus Mueller or Rob Ryan in a bar, you
  444. might consider purchasing a drink of their choosing if FMDB has been useful to
  445. you.
  446. Finally, and shortly, this is the MIT License.
  447. Copyright (c) 2008-2014 Flying Meat Inc.
  448. Permission is hereby granted, free of charge, to any person obtaining a copy
  449. of this software and associated documentation files (the "Software"), to deal
  450. in the Software without restriction, including without limitation the rights
  451. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  452. copies of the Software, and to permit persons to whom the Software is
  453. furnished to do so, subject to the following conditions:
  454. The above copyright notice and this permission notice shall be included in
  455. all copies or substantial portions of the Software.
  456. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  457. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  458. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  459. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  460. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  461. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  462. THE SOFTWARE.</string>
  463. <key>License</key>
  464. <string>MIT</string>
  465. <key>Title</key>
  466. <string>FMDB</string>
  467. <key>Type</key>
  468. <string>PSGroupSpecifier</string>
  469. </dict>
  470. <dict>
  471. <key>FooterText</key>
  472. <string>Copyright 2017 Tencent Inc. All Rights Reserved.</string>
  473. <key>License</key>
  474. <string>Copyright</string>
  475. <key>Title</key>
  476. <string>GDTMobSDK</string>
  477. <key>Type</key>
  478. <string>PSGroupSpecifier</string>
  479. </dict>
  480. <dict>
  481. <key>FooterText</key>
  482. <string>MIT License
  483. Copyright (c) 2017 高坤
  484. Permission is hereby granted, free of charge, to any person obtaining a copy
  485. of this software and associated documentation files (the "Software"), to deal
  486. in the Software without restriction, including without limitation the rights
  487. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  488. copies of the Software, and to permit persons to whom the Software is
  489. furnished to do so, subject to the following conditions:
  490. The above copyright notice and this permission notice shall be included in all
  491. copies or substantial portions of the Software.
  492. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  493. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  494. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  495. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  496. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  497. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  498. SOFTWARE.
  499. </string>
  500. <key>License</key>
  501. <string>MIT</string>
  502. <key>Title</key>
  503. <string>GKPhotoBrowser</string>
  504. <key>Type</key>
  505. <string>PSGroupSpecifier</string>
  506. </dict>
  507. <dict>
  508. <key>FooterText</key>
  509. <string>Copyright (c) 2020 1094887059@qq.com &lt;1094887059@qq.com&gt;
  510. Permission is hereby granted, free of charge, to any person obtaining a copy
  511. of this software and associated documentation files (the "Software"), to deal
  512. in the Software without restriction, including without limitation the rights
  513. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  514. copies of the Software, and to permit persons to whom the Software is
  515. furnished to do so, subject to the following conditions:
  516. The above copyright notice and this permission notice shall be included in
  517. all copies or substantial portions of the Software.
  518. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  519. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  520. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  521. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  522. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  523. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  524. THE SOFTWARE.
  525. </string>
  526. <key>License</key>
  527. <string>MIT</string>
  528. <key>Title</key>
  529. <string>GKSliderView</string>
  530. <key>Type</key>
  531. <string>PSGroupSpecifier</string>
  532. </dict>
  533. <dict>
  534. <key>FooterText</key>
  535. <string>MIT License
  536. Copyright (c) 2020 个推实验室
  537. Permission is hereby granted, free of charge, to any person obtaining a copy
  538. of this software and associated documentation files (the "Software"), to deal
  539. in the Software without restriction, including without limitation the rights
  540. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  541. copies of the Software, and to permit persons to whom the Software is
  542. furnished to do so, subject to the following conditions:
  543. The above copyright notice and this permission notice shall be included in all
  544. copies or substantial portions of the Software.
  545. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  546. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  547. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  548. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  549. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  550. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  551. SOFTWARE.
  552. </string>
  553. <key>License</key>
  554. <string>MIT</string>
  555. <key>Title</key>
  556. <string>GTCommonSDK</string>
  557. <key>Type</key>
  558. <string>PSGroupSpecifier</string>
  559. </dict>
  560. <dict>
  561. <key>FooterText</key>
  562. <string>The MIT License (MIT)
  563. Copyright (c) 2015 个推实验室
  564. Permission is hereby granted, free of charge, to any person obtaining a copy
  565. of this software and associated documentation files (the "Software"), to deal
  566. in the Software without restriction, including without limitation the rights
  567. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  568. copies of the Software, and to permit persons to whom the Software is
  569. furnished to do so, subject to the following conditions:
  570. The above copyright notice and this permission notice shall be included in all
  571. copies or substantial portions of the Software.
  572. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  573. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  574. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  575. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  576. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  577. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  578. SOFTWARE.
  579. </string>
  580. <key>License</key>
  581. <string>MIT</string>
  582. <key>Title</key>
  583. <string>GTSDK</string>
  584. <key>Type</key>
  585. <string>PSGroupSpecifier</string>
  586. </dict>
  587. <dict>
  588. <key>FooterText</key>
  589. <string>MIT License
  590. Copyright (c) 2019 Heath Wang
  591. Permission is hereby granted, free of charge, to any person obtaining a copy
  592. of this software and associated documentation files (the "Software"), to deal
  593. in the Software without restriction, including without limitation the rights
  594. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  595. copies of the Software, and to permit persons to whom the Software is
  596. furnished to do so, subject to the following conditions:
  597. The above copyright notice and this permission notice shall be included in all
  598. copies or substantial portions of the Software.
  599. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  600. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  601. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  602. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  603. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  604. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  605. SOFTWARE.
  606. </string>
  607. <key>License</key>
  608. <string>MIT</string>
  609. <key>Title</key>
  610. <string>HWPanModal</string>
  611. <key>Type</key>
  612. <string>PSGroupSpecifier</string>
  613. </dict>
  614. <dict>
  615. <key>FooterText</key>
  616. <string>The MIT License (MIT)
  617. Copyright (c) 2011-2019 qiniu.com
  618. Permission is hereby granted, free of charge, to any person obtaining a copy
  619. of this software and associated documentation files (the "Software"), to deal
  620. in the Software without restriction, including without limitation the rights
  621. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  622. copies of the Software, and to permit persons to whom the Software is
  623. furnished to do so, subject to the following conditions:
  624. The above copyright notice and this permission notice shall be included in
  625. all copies or substantial portions of the Software.
  626. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  627. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  628. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  629. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  630. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  631. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  632. THE SOFTWARE.
  633. </string>
  634. <key>License</key>
  635. <string>MIT</string>
  636. <key>Title</key>
  637. <string>HappyDNS</string>
  638. <key>Type</key>
  639. <string>PSGroupSpecifier</string>
  640. </dict>
  641. <dict>
  642. <key>FooterText</key>
  643. <string>The MIT License (MIT)
  644. Copyright (c) 2015 Ideais Mobile
  645. Permission is hereby granted, free of charge, to any person obtaining a copy
  646. of this software and associated documentation files (the "Software"), to deal
  647. in the Software without restriction, including without limitation the rights
  648. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  649. copies of the Software, and to permit persons to whom the Software is
  650. furnished to do so, subject to the following conditions:
  651. The above copyright notice and this permission notice shall be included in
  652. all copies or substantial portions of the Software.
  653. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  654. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  655. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  656. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  657. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  658. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  659. THE SOFTWARE.</string>
  660. <key>License</key>
  661. <string>MIT</string>
  662. <key>Title</key>
  663. <string>IDMPhotoBrowser</string>
  664. <key>Type</key>
  665. <string>PSGroupSpecifier</string>
  666. </dict>
  667. <dict>
  668. <key>FooterText</key>
  669. <string>Copyright (c) 2018 任子丰 &lt;459643690@qq.com&gt;
  670. Permission is hereby granted, free of charge, to any person obtaining a copy
  671. of this software and associated documentation files (the "Software"), to deal
  672. in the Software without restriction, including without limitation the rights
  673. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  674. copies of the Software, and to permit persons to whom the Software is
  675. furnished to do so, subject to the following conditions:
  676. The above copyright notice and this permission notice shall be included in
  677. all copies or substantial portions of the Software.
  678. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  679. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  680. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  681. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  682. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  683. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  684. THE SOFTWARE.
  685. </string>
  686. <key>License</key>
  687. <string>MIT</string>
  688. <key>Title</key>
  689. <string>IJKMediaFramework</string>
  690. <key>Type</key>
  691. <string>PSGroupSpecifier</string>
  692. </dict>
  693. <dict>
  694. <key>FooterText</key>
  695. <string>MIT License
  696. Copyright (c) 2013-2017 Iftekhar Qurashi
  697. Permission is hereby granted, free of charge, to any person obtaining a copy
  698. of this software and associated documentation files (the "Software"), to deal
  699. in the Software without restriction, including without limitation the rights
  700. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  701. copies of the Software, and to permit persons to whom the Software is
  702. furnished to do so, subject to the following conditions:
  703. The above copyright notice and this permission notice shall be included in all
  704. copies or substantial portions of the Software.
  705. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  706. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  707. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  708. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  709. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  710. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  711. SOFTWARE.
  712. </string>
  713. <key>License</key>
  714. <string>MIT</string>
  715. <key>Title</key>
  716. <string>IQKeyboardManager</string>
  717. <key>Type</key>
  718. <string>PSGroupSpecifier</string>
  719. </dict>
  720. <dict>
  721. <key>FooterText</key>
  722. <string>Copyright (c) 2012-2016 Marin Todorov and JSONModel contributors
  723. Permission is hereby granted, free of charge, to any person obtaining a copy of
  724. this software and associated documentation files (the "Software"), to deal in
  725. the Software without restriction, including without limitation the rights to
  726. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  727. the Software, and to permit persons to whom the Software is furnished to do so,
  728. subject to the following conditions:
  729. The above copyright notice and this permission notice shall be included in all
  730. copies or substantial portions of the Software.
  731. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  732. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  733. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  734. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  735. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  736. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  737. </string>
  738. <key>License</key>
  739. <string>MIT</string>
  740. <key>Title</key>
  741. <string>JSONModel</string>
  742. <key>Type</key>
  743. <string>PSGroupSpecifier</string>
  744. </dict>
  745. <dict>
  746. <key>FooterText</key>
  747. <string>MIT License
  748. Copyright (c) 2018 暴走的鑫鑫
  749. Permission is hereby granted, free of charge, to any person obtaining a copy
  750. of this software and associated documentation files (the "Software"), to deal
  751. in the Software without restriction, including without limitation the rights
  752. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  753. copies of the Software, and to permit persons to whom the Software is
  754. furnished to do so, subject to the following conditions:
  755. The above copyright notice and this permission notice shall be included in all
  756. copies or substantial portions of the Software.
  757. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  758. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  759. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  760. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  761. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  762. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  763. SOFTWARE.
  764. </string>
  765. <key>License</key>
  766. <string>MIT</string>
  767. <key>Title</key>
  768. <string>JXCategoryView</string>
  769. <key>Type</key>
  770. <string>PSGroupSpecifier</string>
  771. </dict>
  772. <dict>
  773. <key>FooterText</key>
  774. <string>MIT License
  775. Copyright (c) 2018 暴走的鑫鑫
  776. Permission is hereby granted, free of charge, to any person obtaining a copy
  777. of this software and associated documentation files (the "Software"), to deal
  778. in the Software without restriction, including without limitation the rights
  779. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  780. copies of the Software, and to permit persons to whom the Software is
  781. furnished to do so, subject to the following conditions:
  782. The above copyright notice and this permission notice shall be included in all
  783. copies or substantial portions of the Software.
  784. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  785. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  786. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  787. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  788. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  789. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  790. SOFTWARE.
  791. </string>
  792. <key>License</key>
  793. <string>MIT</string>
  794. <key>Title</key>
  795. <string>JXPagingView</string>
  796. <key>Type</key>
  797. <string>PSGroupSpecifier</string>
  798. </dict>
  799. <dict>
  800. <key>FooterText</key>
  801. <string>MIT License
  802. Copyright (c) 2018 唱吧
  803. Permission is hereby granted, free of charge, to any person obtaining a copy
  804. of this software and associated documentation files (the "Software"), to deal
  805. in the Software without restriction, including without limitation the rights
  806. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  807. copies of the Software, and to permit persons to whom the Software is
  808. furnished to do so, subject to the following conditions:
  809. The above copyright notice and this permission notice shall be included in all
  810. copies or substantial portions of the Software.
  811. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  812. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  813. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  814. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  815. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  816. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  817. SOFTWARE.
  818. </string>
  819. <key>License</key>
  820. <string>MIT</string>
  821. <key>Title</key>
  822. <string>KTVCocoaHTTPServer</string>
  823. <key>Type</key>
  824. <string>PSGroupSpecifier</string>
  825. </dict>
  826. <dict>
  827. <key>FooterText</key>
  828. <string>MIT License
  829. Copyright (c) 2017 Single
  830. Permission is hereby granted, free of charge, to any person obtaining a copy
  831. of this software and associated documentation files (the "Software"), to deal
  832. in the Software without restriction, including without limitation the rights
  833. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  834. copies of the Software, and to permit persons to whom the Software is
  835. furnished to do so, subject to the following conditions:
  836. The above copyright notice and this permission notice shall be included in all
  837. copies or substantial portions of the Software.
  838. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  839. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  840. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  841. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  842. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  843. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  844. SOFTWARE.
  845. </string>
  846. <key>License</key>
  847. <string>MIT</string>
  848. <key>Title</key>
  849. <string>KTVHTTPCache</string>
  850. <key>Type</key>
  851. <string>PSGroupSpecifier</string>
  852. </dict>
  853. <dict>
  854. <key>FooterText</key>
  855. <string> GNU GENERAL PUBLIC LICENSE
  856. Version 3, 29 June 2007
  857. Copyright (C) 2007 Free Software Foundation, Inc. &lt;https://fsf.org/&gt;
  858. Everyone is permitted to copy and distribute verbatim copies
  859. of this license document, but changing it is not allowed.
  860. Preamble
  861. The GNU General Public License is a free, copyleft license for
  862. software and other kinds of works.
  863. The licenses for most software and other practical works are designed
  864. to take away your freedom to share and change the works. By contrast,
  865. the GNU General Public License is intended to guarantee your freedom to
  866. share and change all versions of a program--to make sure it remains free
  867. software for all its users. We, the Free Software Foundation, use the
  868. GNU General Public License for most of our software; it applies also to
  869. any other work released this way by its authors. You can apply it to
  870. your programs, too.
  871. When we speak of free software, we are referring to freedom, not
  872. price. Our General Public Licenses are designed to make sure that you
  873. have the freedom to distribute copies of free software (and charge for
  874. them if you wish), that you receive source code or can get it if you
  875. want it, that you can change the software or use pieces of it in new
  876. free programs, and that you know you can do these things.
  877. To protect your rights, we need to prevent others from denying you
  878. these rights or asking you to surrender the rights. Therefore, you have
  879. certain responsibilities if you distribute copies of the software, or if
  880. you modify it: responsibilities to respect the freedom of others.
  881. For example, if you distribute copies of such a program, whether
  882. gratis or for a fee, you must pass on to the recipients the same
  883. freedoms that you received. You must make sure that they, too, receive
  884. or can get the source code. And you must show them these terms so they
  885. know their rights.
  886. Developers that use the GNU GPL protect your rights with two steps:
  887. (1) assert copyright on the software, and (2) offer you this License
  888. giving you legal permission to copy, distribute and/or modify it.
  889. For the developers' and authors' protection, the GPL clearly explains
  890. that there is no warranty for this free software. For both users' and
  891. authors' sake, the GPL requires that modified versions be marked as
  892. changed, so that their problems will not be attributed erroneously to
  893. authors of previous versions.
  894. Some devices are designed to deny users access to install or run
  895. modified versions of the software inside them, although the manufacturer
  896. can do so. This is fundamentally incompatible with the aim of
  897. protecting users' freedom to change the software. The systematic
  898. pattern of such abuse occurs in the area of products for individuals to
  899. use, which is precisely where it is most unacceptable. Therefore, we
  900. have designed this version of the GPL to prohibit the practice for those
  901. products. If such problems arise substantially in other domains, we
  902. stand ready to extend this provision to those domains in future versions
  903. of the GPL, as needed to protect the freedom of users.
  904. Finally, every program is threatened constantly by software patents.
  905. States should not allow patents to restrict development and use of
  906. software on general-purpose computers, but in those that do, we wish to
  907. avoid the special danger that patents applied to a free program could
  908. make it effectively proprietary. To prevent this, the GPL assures that
  909. patents cannot be used to render the program non-free.
  910. The precise terms and conditions for copying, distribution and
  911. modification follow.
  912. TERMS AND CONDITIONS
  913. 0. Definitions.
  914. "This License" refers to version 3 of the GNU General Public License.
  915. "Copyright" also means copyright-like laws that apply to other kinds of
  916. works, such as semiconductor masks.
  917. "The Program" refers to any copyrightable work licensed under this
  918. License. Each licensee is addressed as "you". "Licensees" and
  919. "recipients" may be individuals or organizations.
  920. To "modify" a work means to copy from or adapt all or part of the work
  921. in a fashion requiring copyright permission, other than the making of an
  922. exact copy. The resulting work is called a "modified version" of the
  923. earlier work or a work "based on" the earlier work.
  924. A "covered work" means either the unmodified Program or a work based
  925. on the Program.
  926. To "propagate" a work means to do anything with it that, without
  927. permission, would make you directly or secondarily liable for
  928. infringement under applicable copyright law, except executing it on a
  929. computer or modifying a private copy. Propagation includes copying,
  930. distribution (with or without modification), making available to the
  931. public, and in some countries other activities as well.
  932. To "convey" a work means any kind of propagation that enables other
  933. parties to make or receive copies. Mere interaction with a user through
  934. a computer network, with no transfer of a copy, is not conveying.
  935. An interactive user interface displays "Appropriate Legal Notices"
  936. to the extent that it includes a convenient and prominently visible
  937. feature that (1) displays an appropriate copyright notice, and (2)
  938. tells the user that there is no warranty for the work (except to the
  939. extent that warranties are provided), that licensees may convey the
  940. work under this License, and how to view a copy of this License. If
  941. the interface presents a list of user commands or options, such as a
  942. menu, a prominent item in the list meets this criterion.
  943. 1. Source Code.
  944. The "source code" for a work means the preferred form of the work
  945. for making modifications to it. "Object code" means any non-source
  946. form of a work.
  947. A "Standard Interface" means an interface that either is an official
  948. standard defined by a recognized standards body, or, in the case of
  949. interfaces specified for a particular programming language, one that
  950. is widely used among developers working in that language.
  951. The "System Libraries" of an executable work include anything, other
  952. than the work as a whole, that (a) is included in the normal form of
  953. packaging a Major Component, but which is not part of that Major
  954. Component, and (b) serves only to enable use of the work with that
  955. Major Component, or to implement a Standard Interface for which an
  956. implementation is available to the public in source code form. A
  957. "Major Component", in this context, means a major essential component
  958. (kernel, window system, and so on) of the specific operating system
  959. (if any) on which the executable work runs, or a compiler used to
  960. produce the work, or an object code interpreter used to run it.
  961. The "Corresponding Source" for a work in object code form means all
  962. the source code needed to generate, install, and (for an executable
  963. work) run the object code and to modify the work, including scripts to
  964. control those activities. However, it does not include the work's
  965. System Libraries, or general-purpose tools or generally available free
  966. programs which are used unmodified in performing those activities but
  967. which are not part of the work. For example, Corresponding Source
  968. includes interface definition files associated with source files for
  969. the work, and the source code for shared libraries and dynamically
  970. linked subprograms that the work is specifically designed to require,
  971. such as by intimate data communication or control flow between those
  972. subprograms and other parts of the work.
  973. The Corresponding Source need not include anything that users
  974. can regenerate automatically from other parts of the Corresponding
  975. Source.
  976. The Corresponding Source for a work in source code form is that
  977. same work.
  978. 2. Basic Permissions.
  979. All rights granted under this License are granted for the term of
  980. copyright on the Program, and are irrevocable provided the stated
  981. conditions are met. This License explicitly affirms your unlimited
  982. permission to run the unmodified Program. The output from running a
  983. covered work is covered by this License only if the output, given its
  984. content, constitutes a covered work. This License acknowledges your
  985. rights of fair use or other equivalent, as provided by copyright law.
  986. You may make, run and propagate covered works that you do not
  987. convey, without conditions so long as your license otherwise remains
  988. in force. You may convey covered works to others for the sole purpose
  989. of having them make modifications exclusively for you, or provide you
  990. with facilities for running those works, provided that you comply with
  991. the terms of this License in conveying all material for which you do
  992. not control copyright. Those thus making or running the covered works
  993. for you must do so exclusively on your behalf, under your direction
  994. and control, on terms that prohibit them from making any copies of
  995. your copyrighted material outside their relationship with you.
  996. Conveying under any other circumstances is permitted solely under
  997. the conditions stated below. Sublicensing is not allowed; section 10
  998. makes it unnecessary.
  999. 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
  1000. No covered work shall be deemed part of an effective technological
  1001. measure under any applicable law fulfilling obligations under article
  1002. 11 of the WIPO copyright treaty adopted on 20 December 1996, or
  1003. similar laws prohibiting or restricting circumvention of such
  1004. measures.
  1005. When you convey a covered work, you waive any legal power to forbid
  1006. circumvention of technological measures to the extent such circumvention
  1007. is effected by exercising rights under this License with respect to
  1008. the covered work, and you disclaim any intention to limit operation or
  1009. modification of the work as a means of enforcing, against the work's
  1010. users, your or third parties' legal rights to forbid circumvention of
  1011. technological measures.
  1012. 4. Conveying Verbatim Copies.
  1013. You may convey verbatim copies of the Program's source code as you
  1014. receive it, in any medium, provided that you conspicuously and
  1015. appropriately publish on each copy an appropriate copyright notice;
  1016. keep intact all notices stating that this License and any
  1017. non-permissive terms added in accord with section 7 apply to the code;
  1018. keep intact all notices of the absence of any warranty; and give all
  1019. recipients a copy of this License along with the Program.
  1020. You may charge any price or no price for each copy that you convey,
  1021. and you may offer support or warranty protection for a fee.
  1022. 5. Conveying Modified Source Versions.
  1023. You may convey a work based on the Program, or the modifications to
  1024. produce it from the Program, in the form of source code under the
  1025. terms of section 4, provided that you also meet all of these conditions:
  1026. a) The work must carry prominent notices stating that you modified
  1027. it, and giving a relevant date.
  1028. b) The work must carry prominent notices stating that it is
  1029. released under this License and any conditions added under section
  1030. 7. This requirement modifies the requirement in section 4 to
  1031. "keep intact all notices".
  1032. c) You must license the entire work, as a whole, under this
  1033. License to anyone who comes into possession of a copy. This
  1034. License will therefore apply, along with any applicable section 7
  1035. additional terms, to the whole of the work, and all its parts,
  1036. regardless of how they are packaged. This License gives no
  1037. permission to license the work in any other way, but it does not
  1038. invalidate such permission if you have separately received it.
  1039. d) If the work has interactive user interfaces, each must display
  1040. Appropriate Legal Notices; however, if the Program has interactive
  1041. interfaces that do not display Appropriate Legal Notices, your
  1042. work need not make them do so.
  1043. A compilation of a covered work with other separate and independent
  1044. works, which are not by their nature extensions of the covered work,
  1045. and which are not combined with it such as to form a larger program,
  1046. in or on a volume of a storage or distribution medium, is called an
  1047. "aggregate" if the compilation and its resulting copyright are not
  1048. used to limit the access or legal rights of the compilation's users
  1049. beyond what the individual works permit. Inclusion of a covered work
  1050. in an aggregate does not cause this License to apply to the other
  1051. parts of the aggregate.
  1052. 6. Conveying Non-Source Forms.
  1053. You may convey a covered work in object code form under the terms
  1054. of sections 4 and 5, provided that you also convey the
  1055. machine-readable Corresponding Source under the terms of this License,
  1056. in one of these ways:
  1057. a) Convey the object code in, or embodied in, a physical product
  1058. (including a physical distribution medium), accompanied by the
  1059. Corresponding Source fixed on a durable physical medium
  1060. customarily used for software interchange.
  1061. b) Convey the object code in, or embodied in, a physical product
  1062. (including a physical distribution medium), accompanied by a
  1063. written offer, valid for at least three years and valid for as
  1064. long as you offer spare parts or customer support for that product
  1065. model, to give anyone who possesses the object code either (1) a
  1066. copy of the Corresponding Source for all the software in the
  1067. product that is covered by this License, on a durable physical
  1068. medium customarily used for software interchange, for a price no
  1069. more than your reasonable cost of physically performing this
  1070. conveying of source, or (2) access to copy the
  1071. Corresponding Source from a network server at no charge.
  1072. c) Convey individual copies of the object code with a copy of the
  1073. written offer to provide the Corresponding Source. This
  1074. alternative is allowed only occasionally and noncommercially, and
  1075. only if you received the object code with such an offer, in accord
  1076. with subsection 6b.
  1077. d) Convey the object code by offering access from a designated
  1078. place (gratis or for a charge), and offer equivalent access to the
  1079. Corresponding Source in the same way through the same place at no
  1080. further charge. You need not require recipients to copy the
  1081. Corresponding Source along with the object code. If the place to
  1082. copy the object code is a network server, the Corresponding Source
  1083. may be on a different server (operated by you or a third party)
  1084. that supports equivalent copying facilities, provided you maintain
  1085. clear directions next to the object code saying where to find the
  1086. Corresponding Source. Regardless of what server hosts the
  1087. Corresponding Source, you remain obligated to ensure that it is
  1088. available for as long as needed to satisfy these requirements.
  1089. e) Convey the object code using peer-to-peer transmission, provided
  1090. you inform other peers where the object code and Corresponding
  1091. Source of the work are being offered to the general public at no
  1092. charge under subsection 6d.
  1093. A separable portion of the object code, whose source code is excluded
  1094. from the Corresponding Source as a System Library, need not be
  1095. included in conveying the object code work.
  1096. A "User Product" is either (1) a "consumer product", which means any
  1097. tangible personal property which is normally used for personal, family,
  1098. or household purposes, or (2) anything designed or sold for incorporation
  1099. into a dwelling. In determining whether a product is a consumer product,
  1100. doubtful cases shall be resolved in favor of coverage. For a particular
  1101. product received by a particular user, "normally used" refers to a
  1102. typical or common use of that class of product, regardless of the status
  1103. of the particular user or of the way in which the particular user
  1104. actually uses, or expects or is expected to use, the product. A product
  1105. is a consumer product regardless of whether the product has substantial
  1106. commercial, industrial or non-consumer uses, unless such uses represent
  1107. the only significant mode of use of the product.
  1108. "Installation Information" for a User Product means any methods,
  1109. procedures, authorization keys, or other information required to install
  1110. and execute modified versions of a covered work in that User Product from
  1111. a modified version of its Corresponding Source. The information must
  1112. suffice to ensure that the continued functioning of the modified object
  1113. code is in no case prevented or interfered with solely because
  1114. modification has been made.
  1115. If you convey an object code work under this section in, or with, or
  1116. specifically for use in, a User Product, and the conveying occurs as
  1117. part of a transaction in which the right of possession and use of the
  1118. User Product is transferred to the recipient in perpetuity or for a
  1119. fixed term (regardless of how the transaction is characterized), the
  1120. Corresponding Source conveyed under this section must be accompanied
  1121. by the Installation Information. But this requirement does not apply
  1122. if neither you nor any third party retains the ability to install
  1123. modified object code on the User Product (for example, the work has
  1124. been installed in ROM).
  1125. The requirement to provide Installation Information does not include a
  1126. requirement to continue to provide support service, warranty, or updates
  1127. for a work that has been modified or installed by the recipient, or for
  1128. the User Product in which it has been modified or installed. Access to a
  1129. network may be denied when the modification itself materially and
  1130. adversely affects the operation of the network or violates the rules and
  1131. protocols for communication across the network.
  1132. Corresponding Source conveyed, and Installation Information provided,
  1133. in accord with this section must be in a format that is publicly
  1134. documented (and with an implementation available to the public in
  1135. source code form), and must require no special password or key for
  1136. unpacking, reading or copying.
  1137. 7. Additional Terms.
  1138. "Additional permissions" are terms that supplement the terms of this
  1139. License by making exceptions from one or more of its conditions.
  1140. Additional permissions that are applicable to the entire Program shall
  1141. be treated as though they were included in this License, to the extent
  1142. that they are valid under applicable law. If additional permissions
  1143. apply only to part of the Program, that part may be used separately
  1144. under those permissions, but the entire Program remains governed by
  1145. this License without regard to the additional permissions.
  1146. When you convey a copy of a covered work, you may at your option
  1147. remove any additional permissions from that copy, or from any part of
  1148. it. (Additional permissions may be written to require their own
  1149. removal in certain cases when you modify the work.) You may place
  1150. additional permissions on material, added by you to a covered work,
  1151. for which you have or can give appropriate copyright permission.
  1152. Notwithstanding any other provision of this License, for material you
  1153. add to a covered work, you may (if authorized by the copyright holders of
  1154. that material) supplement the terms of this License with terms:
  1155. a) Disclaiming warranty or limiting liability differently from the
  1156. terms of sections 15 and 16 of this License; or
  1157. b) Requiring preservation of specified reasonable legal notices or
  1158. author attributions in that material or in the Appropriate Legal
  1159. Notices displayed by works containing it; or
  1160. c) Prohibiting misrepresentation of the origin of that material, or
  1161. requiring that modified versions of such material be marked in
  1162. reasonable ways as different from the original version; or
  1163. d) Limiting the use for publicity purposes of names of licensors or
  1164. authors of the material; or
  1165. e) Declining to grant rights under trademark law for use of some
  1166. trade names, trademarks, or service marks; or
  1167. f) Requiring indemnification of licensors and authors of that
  1168. material by anyone who conveys the material (or modified versions of
  1169. it) with contractual assumptions of liability to the recipient, for
  1170. any liability that these contractual assumptions directly impose on
  1171. those licensors and authors.
  1172. All other non-permissive additional terms are considered "further
  1173. restrictions" within the meaning of section 10. If the Program as you
  1174. received it, or any part of it, contains a notice stating that it is
  1175. governed by this License along with a term that is a further
  1176. restriction, you may remove that term. If a license document contains
  1177. a further restriction but permits relicensing or conveying under this
  1178. License, you may add to a covered work material governed by the terms
  1179. of that license document, provided that the further restriction does
  1180. not survive such relicensing or conveying.
  1181. If you add terms to a covered work in accord with this section, you
  1182. must place, in the relevant source files, a statement of the
  1183. additional terms that apply to those files, or a notice indicating
  1184. where to find the applicable terms.
  1185. Additional terms, permissive or non-permissive, may be stated in the
  1186. form of a separately written license, or stated as exceptions;
  1187. the above requirements apply either way.
  1188. 8. Termination.
  1189. You may not propagate or modify a covered work except as expressly
  1190. provided under this License. Any attempt otherwise to propagate or
  1191. modify it is void, and will automatically terminate your rights under
  1192. this License (including any patent licenses granted under the third
  1193. paragraph of section 11).
  1194. However, if you cease all violation of this License, then your
  1195. license from a particular copyright holder is reinstated (a)
  1196. provisionally, unless and until the copyright holder explicitly and
  1197. finally terminates your license, and (b) permanently, if the copyright
  1198. holder fails to notify you of the violation by some reasonable means
  1199. prior to 60 days after the cessation.
  1200. Moreover, your license from a particular copyright holder is
  1201. reinstated permanently if the copyright holder notifies you of the
  1202. violation by some reasonable means, this is the first time you have
  1203. received notice of violation of this License (for any work) from that
  1204. copyright holder, and you cure the violation prior to 30 days after
  1205. your receipt of the notice.
  1206. Termination of your rights under this section does not terminate the
  1207. licenses of parties who have received copies or rights from you under
  1208. this License. If your rights have been terminated and not permanently
  1209. reinstated, you do not qualify to receive new licenses for the same
  1210. material under section 10.
  1211. 9. Acceptance Not Required for Having Copies.
  1212. You are not required to accept this License in order to receive or
  1213. run a copy of the Program. Ancillary propagation of a covered work
  1214. occurring solely as a consequence of using peer-to-peer transmission
  1215. to receive a copy likewise does not require acceptance. However,
  1216. nothing other than this License grants you permission to propagate or
  1217. modify any covered work. These actions infringe copyright if you do
  1218. not accept this License. Therefore, by modifying or propagating a
  1219. covered work, you indicate your acceptance of this License to do so.
  1220. 10. Automatic Licensing of Downstream Recipients.
  1221. Each time you convey a covered work, the recipient automatically
  1222. receives a license from the original licensors, to run, modify and
  1223. propagate that work, subject to this License. You are not responsible
  1224. for enforcing compliance by third parties with this License.
  1225. An "entity transaction" is a transaction transferring control of an
  1226. organization, or substantially all assets of one, or subdividing an
  1227. organization, or merging organizations. If propagation of a covered
  1228. work results from an entity transaction, each party to that
  1229. transaction who receives a copy of the work also receives whatever
  1230. licenses to the work the party's predecessor in interest had or could
  1231. give under the previous paragraph, plus a right to possession of the
  1232. Corresponding Source of the work from the predecessor in interest, if
  1233. the predecessor has it or can get it with reasonable efforts.
  1234. You may not impose any further restrictions on the exercise of the
  1235. rights granted or affirmed under this License. For example, you may
  1236. not impose a license fee, royalty, or other charge for exercise of
  1237. rights granted under this License, and you may not initiate litigation
  1238. (including a cross-claim or counterclaim in a lawsuit) alleging that
  1239. any patent claim is infringed by making, using, selling, offering for
  1240. sale, or importing the Program or any portion of it.
  1241. 11. Patents.
  1242. A "contributor" is a copyright holder who authorizes use under this
  1243. License of the Program or a work on which the Program is based. The
  1244. work thus licensed is called the contributor's "contributor version".
  1245. A contributor's "essential patent claims" are all patent claims
  1246. owned or controlled by the contributor, whether already acquired or
  1247. hereafter acquired, that would be infringed by some manner, permitted
  1248. by this License, of making, using, or selling its contributor version,
  1249. but do not include claims that would be infringed only as a
  1250. consequence of further modification of the contributor version. For
  1251. purposes of this definition, "control" includes the right to grant
  1252. patent sublicenses in a manner consistent with the requirements of
  1253. this License.
  1254. Each contributor grants you a non-exclusive, worldwide, royalty-free
  1255. patent license under the contributor's essential patent claims, to
  1256. make, use, sell, offer for sale, import and otherwise run, modify and
  1257. propagate the contents of its contributor version.
  1258. In the following three paragraphs, a "patent license" is any express
  1259. agreement or commitment, however denominated, not to enforce a patent
  1260. (such as an express permission to practice a patent or covenant not to
  1261. sue for patent infringement). To "grant" such a patent license to a
  1262. party means to make such an agreement or commitment not to enforce a
  1263. patent against the party.
  1264. If you convey a covered work, knowingly relying on a patent license,
  1265. and the Corresponding Source of the work is not available for anyone
  1266. to copy, free of charge and under the terms of this License, through a
  1267. publicly available network server or other readily accessible means,
  1268. then you must either (1) cause the Corresponding Source to be so
  1269. available, or (2) arrange to deprive yourself of the benefit of the
  1270. patent license for this particular work, or (3) arrange, in a manner
  1271. consistent with the requirements of this License, to extend the patent
  1272. license to downstream recipients. "Knowingly relying" means you have
  1273. actual knowledge that, but for the patent license, your conveying the
  1274. covered work in a country, or your recipient's use of the covered work
  1275. in a country, would infringe one or more identifiable patents in that
  1276. country that you have reason to believe are valid.
  1277. If, pursuant to or in connection with a single transaction or
  1278. arrangement, you convey, or propagate by procuring conveyance of, a
  1279. covered work, and grant a patent license to some of the parties
  1280. receiving the covered work authorizing them to use, propagate, modify
  1281. or convey a specific copy of the covered work, then the patent license
  1282. you grant is automatically extended to all recipients of the covered
  1283. work and works based on it.
  1284. A patent license is "discriminatory" if it does not include within
  1285. the scope of its coverage, prohibits the exercise of, or is
  1286. conditioned on the non-exercise of one or more of the rights that are
  1287. specifically granted under this License. You may not convey a covered
  1288. work if you are a party to an arrangement with a third party that is
  1289. in the business of distributing software, under which you make payment
  1290. to the third party based on the extent of your activity of conveying
  1291. the work, and under which the third party grants, to any of the
  1292. parties who would receive the covered work from you, a discriminatory
  1293. patent license (a) in connection with copies of the covered work
  1294. conveyed by you (or copies made from those copies), or (b) primarily
  1295. for and in connection with specific products or compilations that
  1296. contain the covered work, unless you entered into that arrangement,
  1297. or that patent license was granted, prior to 28 March 2007.
  1298. Nothing in this License shall be construed as excluding or limiting
  1299. any implied license or other defenses to infringement that may
  1300. otherwise be available to you under applicable patent law.
  1301. 12. No Surrender of Others' Freedom.
  1302. If conditions are imposed on you (whether by court order, agreement or
  1303. otherwise) that contradict the conditions of this License, they do not
  1304. excuse you from the conditions of this License. If you cannot convey a
  1305. covered work so as to satisfy simultaneously your obligations under this
  1306. License and any other pertinent obligations, then as a consequence you may
  1307. not convey it at all. For example, if you agree to terms that obligate you
  1308. to collect a royalty for further conveying from those to whom you convey
  1309. the Program, the only way you could satisfy both those terms and this
  1310. License would be to refrain entirely from conveying the Program.
  1311. 13. Use with the GNU Affero General Public License.
  1312. Notwithstanding any other provision of this License, you have
  1313. permission to link or combine any covered work with a work licensed
  1314. under version 3 of the GNU Affero General Public License into a single
  1315. combined work, and to convey the resulting work. The terms of this
  1316. License will continue to apply to the part which is the covered work,
  1317. but the special requirements of the GNU Affero General Public License,
  1318. section 13, concerning interaction through a network will apply to the
  1319. combination as such.
  1320. 14. Revised Versions of this License.
  1321. The Free Software Foundation may publish revised and/or new versions of
  1322. the GNU General Public License from time to time. Such new versions will
  1323. be similar in spirit to the present version, but may differ in detail to
  1324. address new problems or concerns.
  1325. Each version is given a distinguishing version number. If the
  1326. Program specifies that a certain numbered version of the GNU General
  1327. Public License "or any later version" applies to it, you have the
  1328. option of following the terms and conditions either of that numbered
  1329. version or of any later version published by the Free Software
  1330. Foundation. If the Program does not specify a version number of the
  1331. GNU General Public License, you may choose any version ever published
  1332. by the Free Software Foundation.
  1333. If the Program specifies that a proxy can decide which future
  1334. versions of the GNU General Public License can be used, that proxy's
  1335. public statement of acceptance of a version permanently authorizes you
  1336. to choose that version for the Program.
  1337. Later license versions may give you additional or different
  1338. permissions. However, no additional obligations are imposed on any
  1339. author or copyright holder as a result of your choosing to follow a
  1340. later version.
  1341. 15. Disclaimer of Warranty.
  1342. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
  1343. APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
  1344. HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
  1345. OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
  1346. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1347. PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
  1348. IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
  1349. ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  1350. 16. Limitation of Liability.
  1351. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
  1352. WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
  1353. THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
  1354. GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
  1355. USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
  1356. DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
  1357. PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
  1358. EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
  1359. SUCH DAMAGES.
  1360. 17. Interpretation of Sections 15 and 16.
  1361. If the disclaimer of warranty and limitation of liability provided
  1362. above cannot be given local legal effect according to their terms,
  1363. reviewing courts shall apply local law that most closely approximates
  1364. an absolute waiver of all civil liability in connection with the
  1365. Program, unless a warranty or assumption of liability accompanies a
  1366. copy of the Program in return for a fee.
  1367. END OF TERMS AND CONDITIONS
  1368. How to Apply These Terms to Your New Programs
  1369. If you develop a new program, and you want it to be of the greatest
  1370. possible use to the public, the best way to achieve this is to make it
  1371. free software which everyone can redistribute and change under these terms.
  1372. To do so, attach the following notices to the program. It is safest
  1373. to attach them to the start of each source file to most effectively
  1374. state the exclusion of warranty; and each file should have at least
  1375. the "copyright" line and a pointer to where the full notice is found.
  1376. &lt;one line to give the program's name and a brief idea of what it does.&gt;
  1377. Copyright (C) &lt;year&gt; &lt;name of author&gt;
  1378. This program is free software: you can redistribute it and/or modify
  1379. it under the terms of the GNU General Public License as published by
  1380. the Free Software Foundation, either version 3 of the License, or
  1381. (at your option) any later version.
  1382. This program is distributed in the hope that it will be useful,
  1383. but WITHOUT ANY WARRANTY; without even the implied warranty of
  1384. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  1385. GNU General Public License for more details.
  1386. You should have received a copy of the GNU General Public License
  1387. along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.
  1388. Also add information on how to contact you by electronic and paper mail.
  1389. If the program does terminal interaction, make it output a short
  1390. notice like this when it starts in an interactive mode:
  1391. &lt;program&gt; Copyright (C) &lt;year&gt; &lt;name of author&gt;
  1392. This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
  1393. This is free software, and you are welcome to redistribute it
  1394. under certain conditions; type `show c' for details.
  1395. The hypothetical commands `show w' and `show c' should show the appropriate
  1396. parts of the General Public License. Of course, your program's commands
  1397. might be different; for a GUI interface, you would use an "about box".
  1398. You should also get your employer (if you work as a programmer) or school,
  1399. if any, to sign a "copyright disclaimer" for the program, if necessary.
  1400. For more information on this, and how to apply and follow the GNU GPL, see
  1401. &lt;https://www.gnu.org/licenses/&gt;.
  1402. The GNU General Public License does not permit incorporating your program
  1403. into proprietary programs. If your program is a subroutine library, you
  1404. may consider it more useful to permit linking proprietary applications with
  1405. the library. If this is what you want to do, use the GNU Lesser General
  1406. Public License instead of this License. But first, please read
  1407. &lt;https://www.gnu.org/licenses/why-not-lgpl.html&gt;.
  1408. </string>
  1409. <key>License</key>
  1410. <string>GPL-3.0</string>
  1411. <key>Title</key>
  1412. <string>LookinServer</string>
  1413. <key>Type</key>
  1414. <string>PSGroupSpecifier</string>
  1415. </dict>
  1416. <dict>
  1417. <key>FooterText</key>
  1418. <string>Copyright © 2009-2020 Matej Bukovinski
  1419. Permission is hereby granted, free of charge, to any person obtaining a copy
  1420. of this software and associated documentation files (the "Software"), to deal
  1421. in the Software without restriction, including without limitation the rights
  1422. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1423. copies of the Software, and to permit persons to whom the Software is
  1424. furnished to do so, subject to the following conditions:
  1425. The above copyright notice and this permission notice shall be included in
  1426. all copies or substantial portions of the Software.
  1427. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1428. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1429. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1430. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1431. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1432. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1433. THE SOFTWARE.</string>
  1434. <key>License</key>
  1435. <string>MIT</string>
  1436. <key>Title</key>
  1437. <string>MBProgressHUD</string>
  1438. <key>Type</key>
  1439. <string>PSGroupSpecifier</string>
  1440. </dict>
  1441. <dict>
  1442. <key>FooterText</key>
  1443. <string>Copyright (c) 2013-2019 MJExtension (https://github.com/CoderMJLee/MJExtension)
  1444. Permission is hereby granted, free of charge, to any person obtaining a copy
  1445. of this software and associated documentation files (the "Software"), to deal
  1446. in the Software without restriction, including without limitation the rights
  1447. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1448. copies of the Software, and to permit persons to whom the Software is
  1449. furnished to do so, subject to the following conditions:
  1450. The above copyright notice and this permission notice shall be included in
  1451. all copies or substantial portions of the Software.
  1452. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1453. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1454. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1455. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1456. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1457. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1458. THE SOFTWARE.
  1459. </string>
  1460. <key>License</key>
  1461. <string>MIT</string>
  1462. <key>Title</key>
  1463. <string>MJExtension</string>
  1464. <key>Type</key>
  1465. <string>PSGroupSpecifier</string>
  1466. </dict>
  1467. <dict>
  1468. <key>FooterText</key>
  1469. <string>Copyright (c) 2013-2015 MJRefresh (https://github.com/CoderMJLee/MJRefresh)
  1470. Permission is hereby granted, free of charge, to any person obtaining a copy
  1471. of this software and associated documentation files (the "Software"), to deal
  1472. in the Software without restriction, including without limitation the rights
  1473. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1474. copies of the Software, and to permit persons to whom the Software is
  1475. furnished to do so, subject to the following conditions:
  1476. The above copyright notice and this permission notice shall be included in
  1477. all copies or substantial portions of the Software.
  1478. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1479. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1480. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1481. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1482. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1483. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1484. THE SOFTWARE.
  1485. </string>
  1486. <key>License</key>
  1487. <string>MIT</string>
  1488. <key>Title</key>
  1489. <string>MJRefresh</string>
  1490. <key>Type</key>
  1491. <string>PSGroupSpecifier</string>
  1492. </dict>
  1493. <dict>
  1494. <key>FooterText</key>
  1495. <string>The MIT License (MIT)
  1496. Copyright (c) 2014 molon
  1497. Permission is hereby granted, free of charge, to any person obtaining a copy
  1498. of this software and associated documentation files (the "Software"), to deal
  1499. in the Software without restriction, including without limitation the rights
  1500. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1501. copies of the Software, and to permit persons to whom the Software is
  1502. furnished to do so, subject to the following conditions:
  1503. The above copyright notice and this permission notice shall be included in all
  1504. copies or substantial portions of the Software.
  1505. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1506. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1507. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1508. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1509. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1510. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1511. SOFTWARE.</string>
  1512. <key>License</key>
  1513. <string>MIT</string>
  1514. <key>Title</key>
  1515. <string>MLEmojiLabel</string>
  1516. <key>Type</key>
  1517. <string>PSGroupSpecifier</string>
  1518. </dict>
  1519. <dict>
  1520. <key>FooterText</key>
  1521. <string>Tencent is pleased to support the open source community by making MLeaksFinder available.
  1522. Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved.
  1523. If you have downloaded a copy of the MLeaksFinder binary from Tencent, please note that the MLeaksFinder binary is licensed under the BSD 3-Clause License.
  1524. If you have downloaded a copy of the MLeaksFinder source code from Tencent, please note that MLeaksFinder source code is licensed under the BSD 3-Clause License. Your integration of MLeaksFinder into your own projects may require compliance with the BSD 3-Clause License.
  1525. A copy of the BSD 3-Clause License is included in this file.
  1526. Terms of the BSD 3-Clause License:
  1527. --------------------------------------------------------------------
  1528. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  1529. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  1530. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  1531. Neither the name of [copyright holder] nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
  1532. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</string>
  1533. <key>License</key>
  1534. <string>MIT</string>
  1535. <key>Title</key>
  1536. <string>MLeaksFinder</string>
  1537. <key>Type</key>
  1538. <string>PSGroupSpecifier</string>
  1539. </dict>
  1540. <dict>
  1541. <key>FooterText</key>
  1542. <string>Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry
  1543. Permission is hereby granted, free of charge, to any person obtaining a copy
  1544. of this software and associated documentation files (the "Software"), to deal
  1545. in the Software without restriction, including without limitation the rights
  1546. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1547. copies of the Software, and to permit persons to whom the Software is
  1548. furnished to do so, subject to the following conditions:
  1549. The above copyright notice and this permission notice shall be included in
  1550. all copies or substantial portions of the Software.
  1551. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1552. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1553. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1554. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1555. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1556. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1557. THE SOFTWARE.</string>
  1558. <key>License</key>
  1559. <string>MIT</string>
  1560. <key>Title</key>
  1561. <string>Masonry</string>
  1562. <key>Type</key>
  1563. <string>PSGroupSpecifier</string>
  1564. </dict>
  1565. <dict>
  1566. <key>FooterText</key>
  1567. <string>
  1568. LICENSE ISSUES
  1569. ==============
  1570. The OpenSSL toolkit stays under a dual license, i.e. both the conditions of
  1571. the OpenSSL License and the original SSLeay license apply to the toolkit.
  1572. See below for the actual license texts. Actually both licenses are BSD-style
  1573. Open Source licenses. In case of any license issues related to OpenSSL
  1574. please contact openssl-core@openssl.org.
  1575. OpenSSL License
  1576. ---------------
  1577. /* ====================================================================
  1578. * Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved.
  1579. *
  1580. * Redistribution and use in source and binary forms, with or without
  1581. * modification, are permitted provided that the following conditions
  1582. * are met:
  1583. *
  1584. * 1. Redistributions of source code must retain the above copyright
  1585. * notice, this list of conditions and the following disclaimer.
  1586. *
  1587. * 2. Redistributions in binary form must reproduce the above copyright
  1588. * notice, this list of conditions and the following disclaimer in
  1589. * the documentation and/or other materials provided with the
  1590. * distribution.
  1591. *
  1592. * 3. All advertising materials mentioning features or use of this
  1593. * software must display the following acknowledgment:
  1594. * "This product includes software developed by the OpenSSL Project
  1595. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  1596. *
  1597. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  1598. * endorse or promote products derived from this software without
  1599. * prior written permission. For written permission, please contact
  1600. * openssl-core@openssl.org.
  1601. *
  1602. * 5. Products derived from this software may not be called "OpenSSL"
  1603. * nor may "OpenSSL" appear in their names without prior written
  1604. * permission of the OpenSSL Project.
  1605. *
  1606. * 6. Redistributions of any form whatsoever must retain the following
  1607. * acknowledgment:
  1608. * "This product includes software developed by the OpenSSL Project
  1609. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  1610. *
  1611. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  1612. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1613. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  1614. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  1615. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1616. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  1617. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  1618. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1619. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  1620. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  1621. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  1622. * OF THE POSSIBILITY OF SUCH DAMAGE.
  1623. * ====================================================================
  1624. *
  1625. * This product includes cryptographic software written by Eric Young
  1626. * (eay@cryptsoft.com). This product includes software written by Tim
  1627. * Hudson (tjh@cryptsoft.com).
  1628. *
  1629. */
  1630. Original SSLeay License
  1631. -----------------------
  1632. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  1633. * All rights reserved.
  1634. *
  1635. * This package is an SSL implementation written
  1636. * by Eric Young (eay@cryptsoft.com).
  1637. * The implementation was written so as to conform with Netscapes SSL.
  1638. *
  1639. * This library is free for commercial and non-commercial use as long as
  1640. * the following conditions are aheared to. The following conditions
  1641. * apply to all code found in this distribution, be it the RC4, RSA,
  1642. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  1643. * included with this distribution is covered by the same copyright terms
  1644. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  1645. *
  1646. * Copyright remains Eric Young's, and as such any Copyright notices in
  1647. * the code are not to be removed.
  1648. * If this package is used in a product, Eric Young should be given attribution
  1649. * as the author of the parts of the library used.
  1650. * This can be in the form of a textual message at program startup or
  1651. * in documentation (online or textual) provided with the package.
  1652. *
  1653. * Redistribution and use in source and binary forms, with or without
  1654. * modification, are permitted provided that the following conditions
  1655. * are met:
  1656. * 1. Redistributions of source code must retain the copyright
  1657. * notice, this list of conditions and the following disclaimer.
  1658. * 2. Redistributions in binary form must reproduce the above copyright
  1659. * notice, this list of conditions and the following disclaimer in the
  1660. * documentation and/or other materials provided with the distribution.
  1661. * 3. All advertising materials mentioning features or use of this software
  1662. * must display the following acknowledgement:
  1663. * "This product includes cryptographic software written by
  1664. * Eric Young (eay@cryptsoft.com)"
  1665. * The word 'cryptographic' can be left out if the rouines from the library
  1666. * being used are not cryptographic related :-).
  1667. * 4. If you include any Windows specific code (or a derivative thereof) from
  1668. * the apps directory (application code) you must include an acknowledgement:
  1669. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  1670. *
  1671. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  1672. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1673. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  1674. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  1675. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  1676. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  1677. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1678. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  1679. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  1680. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  1681. * SUCH DAMAGE.
  1682. *
  1683. * The licence and distribution terms for any publically available version or
  1684. * derivative of this code cannot be changed. i.e. this code cannot simply be
  1685. * copied and put under another distribution licence
  1686. * [including the GNU Public Licence.]
  1687. */
  1688. </string>
  1689. <key>License</key>
  1690. <string>OpenSSL (OpenSSL/SSLeay)</string>
  1691. <key>Title</key>
  1692. <string>OpenSSL-Universal</string>
  1693. <key>Type</key>
  1694. <string>PSGroupSpecifier</string>
  1695. </dict>
  1696. <dict>
  1697. <key>FooterText</key>
  1698. <string>MIT License
  1699. Copyright (c) 2022 北京容联七陌科技有限公司
  1700. Permission is hereby granted, free of charge, to any person obtaining a copy
  1701. of this software and associated documentation files (the "Software"), to deal
  1702. in the Software without restriction, including without limitation the rights
  1703. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1704. copies of the Software, and to permit persons to whom the Software is
  1705. furnished to do so, subject to the following conditions:
  1706. The above copyright notice and this permission notice shall be included in all
  1707. copies or substantial portions of the Software.
  1708. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1709. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1710. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1711. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1712. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1713. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1714. SOFTWARE.
  1715. </string>
  1716. <key>License</key>
  1717. <string>MIT</string>
  1718. <key>Title</key>
  1719. <string>QMBaseLib</string>
  1720. <key>Type</key>
  1721. <string>PSGroupSpecifier</string>
  1722. </dict>
  1723. <dict>
  1724. <key>FooterText</key>
  1725. <string>MIT License
  1726. Copyright (c) 2021 北京容联七陌科技有限公司
  1727. Permission is hereby granted, free of charge, to any person obtaining a copy
  1728. of this software and associated documentation files (the "Software"), to deal
  1729. in the Software without restriction, including without limitation the rights
  1730. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1731. copies of the Software, and to permit persons to whom the Software is
  1732. furnished to do so, subject to the following conditions:
  1733. The above copyright notice and this permission notice shall be included in all
  1734. copies or substantial portions of the Software.
  1735. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1736. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1737. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1738. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1739. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1740. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1741. SOFTWARE.
  1742. </string>
  1743. <key>License</key>
  1744. <string>MIT</string>
  1745. <key>Title</key>
  1746. <string>QMLineSDK</string>
  1747. <key>Type</key>
  1748. <string>PSGroupSpecifier</string>
  1749. </dict>
  1750. <dict>
  1751. <key>FooterText</key>
  1752. <string>Tencent is pleased to support the open source community by making QMUI_iOS available.
  1753. Copyright (C) 2016-2021 THL A29 Limited, a Tencent company. All rights reserved.
  1754. If you have downloaded a copy of the QMUI_iOS binary from Tencent, please note that the QMUI_iOS binary is licensed under the MIT License.
  1755. If you have downloaded a copy of the QMUI_iOS source code from Tencent, please note that QMUI_iOS source code is licensed under the MIT License. Your integration of QMUI_iOS into your own projects may require compliance with the MIT License.
  1756. A copy of the MIT License is included in this file.
  1757. Terms of the MIT License:
  1758. ---------------------------------------------------
  1759. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  1760. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  1761. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1762. </string>
  1763. <key>License</key>
  1764. <string>MIT</string>
  1765. <key>Title</key>
  1766. <string>QMUIKit</string>
  1767. <key>Type</key>
  1768. <string>PSGroupSpecifier</string>
  1769. </dict>
  1770. <dict>
  1771. <key>FooterText</key>
  1772. <string>The MIT License (MIT)
  1773. Copyright (c) 2011-2020 qiniu.com
  1774. Permission is hereby granted, free of charge, to any person obtaining a copy
  1775. of this software and associated documentation files (the "Software"), to deal
  1776. in the Software without restriction, including without limitation the rights
  1777. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1778. copies of the Software, and to permit persons to whom the Software is
  1779. furnished to do so, subject to the following conditions:
  1780. The above copyright notice and this permission notice shall be included in
  1781. all copies or substantial portions of the Software.
  1782. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1783. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1784. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1785. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1786. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1787. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1788. THE SOFTWARE.
  1789. </string>
  1790. <key>License</key>
  1791. <string>MIT</string>
  1792. <key>Title</key>
  1793. <string>Qiniu</string>
  1794. <key>Type</key>
  1795. <string>PSGroupSpecifier</string>
  1796. </dict>
  1797. <dict>
  1798. <key>FooterText</key>
  1799. <string>**Copyright (c) 2012 - 2016, GitHub, Inc.**
  1800. **All rights reserved.**
  1801. Permission is hereby granted, free of charge, to any person obtaining a copy of
  1802. this software and associated documentation files (the "Software"), to deal in
  1803. the Software without restriction, including without limitation the rights to
  1804. use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
  1805. the Software, and to permit persons to whom the Software is furnished to do so,
  1806. subject to the following conditions:
  1807. The above copyright notice and this permission notice shall be included in all
  1808. copies or substantial portions of the Software.
  1809. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1810. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
  1811. FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
  1812. COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  1813. IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  1814. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1815. </string>
  1816. <key>License</key>
  1817. <string>MIT</string>
  1818. <key>Title</key>
  1819. <string>ReactiveObjC</string>
  1820. <key>Type</key>
  1821. <string>PSGroupSpecifier</string>
  1822. </dict>
  1823. <dict>
  1824. <key>FooterText</key>
  1825. <string>The MIT License (MIT)
  1826. Copyright (c) 2016 Dustturtle openglnewbee@163.com
  1827. Permission is hereby granted, free of charge, to any person obtaining a copy
  1828. of this software and associated documentation files (the "Software"), to deal
  1829. in the Software without restriction, including without limitation the rights
  1830. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1831. copies of the Software, and to permit persons to whom the Software is
  1832. furnished to do so, subject to the following conditions:
  1833. The above copyright notice and this permission notice shall be included in all
  1834. copies or substantial portions of the Software.
  1835. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1836. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1837. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1838. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1839. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1840. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1841. SOFTWARE.
  1842. </string>
  1843. <key>License</key>
  1844. <string>MIT</string>
  1845. <key>Title</key>
  1846. <string>RealReachability</string>
  1847. <key>Type</key>
  1848. <string>PSGroupSpecifier</string>
  1849. </dict>
  1850. <dict>
  1851. <key>FooterText</key>
  1852. <string>Copyright (c) 2010-2016 Sam Soffes, http://soff.es
  1853. Permission is hereby granted, free of charge, to any person obtaining
  1854. a copy of this software and associated documentation files (the
  1855. "Software"), to deal in the Software without restriction, including
  1856. without limitation the rights to use, copy, modify, merge, publish,
  1857. distribute, sublicense, and/or sell copies of the Software, and to
  1858. permit persons to whom the Software is furnished to do so, subject to
  1859. the following conditions:
  1860. The above copyright notice and this permission notice shall be
  1861. included in all copies or substantial portions of the Software.
  1862. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  1863. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  1864. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  1865. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  1866. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  1867. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  1868. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  1869. </string>
  1870. <key>License</key>
  1871. <string>MIT</string>
  1872. <key>Title</key>
  1873. <string>SAMKeychain</string>
  1874. <key>Type</key>
  1875. <string>PSGroupSpecifier</string>
  1876. </dict>
  1877. <dict>
  1878. <key>FooterText</key>
  1879. <string>Copyright (c) 2013-2014 SCLAlertView-Objective-C by Diogo Autilio
  1880. Permission is hereby granted, free of charge, to any person obtaining a copy
  1881. of this software and associated documentation files (the "Software"), to deal
  1882. in the Software without restriction, including without limitation the rights
  1883. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1884. copies of the Software, and to permit persons to whom the Software is
  1885. furnished to do so, subject to the following conditions:
  1886. The above copyright notice and this permission notice shall be included in
  1887. all copies or substantial portions of the Software.
  1888. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1889. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1890. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1891. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1892. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1893. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1894. THE SOFTWARE.</string>
  1895. <key>License</key>
  1896. <string>MIT</string>
  1897. <key>Title</key>
  1898. <string>SCLAlertView-Objective-C</string>
  1899. <key>Type</key>
  1900. <string>PSGroupSpecifier</string>
  1901. </dict>
  1902. <dict>
  1903. <key>FooterText</key>
  1904. <string>The MIT License (MIT)
  1905. Copyright (c) 2015 GSD_iOS
  1906. Permission is hereby granted, free of charge, to any person obtaining a copy
  1907. of this software and associated documentation files (the "Software"), to deal
  1908. in the Software without restriction, including without limitation the rights
  1909. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1910. copies of the Software, and to permit persons to whom the Software is
  1911. furnished to do so, subject to the following conditions:
  1912. The above copyright notice and this permission notice shall be included in all
  1913. copies or substantial portions of the Software.
  1914. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1915. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1916. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1917. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1918. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1919. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  1920. SOFTWARE.
  1921. </string>
  1922. <key>License</key>
  1923. <string>MIT</string>
  1924. <key>Title</key>
  1925. <string>SDCycleScrollView</string>
  1926. <key>Type</key>
  1927. <string>PSGroupSpecifier</string>
  1928. </dict>
  1929. <dict>
  1930. <key>FooterText</key>
  1931. <string>Copyright (c) 2009-2020 Olivier Poitrey rs@dailymotion.com
  1932. Permission is hereby granted, free of charge, to any person obtaining a copy
  1933. of this software and associated documentation files (the "Software"), to deal
  1934. in the Software without restriction, including without limitation the rights
  1935. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1936. copies of the Software, and to permit persons to whom the Software is furnished
  1937. to do so, subject to the following conditions:
  1938. The above copyright notice and this permission notice shall be included in all
  1939. copies or substantial portions of the Software.
  1940. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1941. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1942. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1943. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1944. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1945. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1946. THE SOFTWARE.
  1947. </string>
  1948. <key>License</key>
  1949. <string>MIT</string>
  1950. <key>Title</key>
  1951. <string>SDWebImage</string>
  1952. <key>Type</key>
  1953. <string>PSGroupSpecifier</string>
  1954. </dict>
  1955. <dict>
  1956. <key>FooterText</key>
  1957. <string>Copyright (c) 2018 Bogdan Poplauschi
  1958. Permission is hereby granted, free of charge, to any person obtaining a copy
  1959. of this software and associated documentation files (the "Software"), to deal
  1960. in the Software without restriction, including without limitation the rights
  1961. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  1962. copies of the Software, and to permit persons to whom the Software is
  1963. furnished to do so, subject to the following conditions:
  1964. The above copyright notice and this permission notice shall be included in
  1965. all copies or substantial portions of the Software.
  1966. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  1967. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  1968. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  1969. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  1970. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  1971. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  1972. THE SOFTWARE.
  1973. </string>
  1974. <key>License</key>
  1975. <string>MIT</string>
  1976. <key>Title</key>
  1977. <string>SDWebImageWebPCoder</string>
  1978. <key>Type</key>
  1979. <string>PSGroupSpecifier</string>
  1980. </dict>
  1981. <dict>
  1982. <key>FooterText</key>
  1983. <string> Apache License
  1984. Version 2.0, January 2004
  1985. http://www.apache.org/licenses/
  1986. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  1987. 1. Definitions.
  1988. "License" shall mean the terms and conditions for use, reproduction,
  1989. and distribution as defined by Sections 1 through 9 of this document.
  1990. "Licensor" shall mean the copyright owner or entity authorized by
  1991. the copyright owner that is granting the License.
  1992. "Legal Entity" shall mean the union of the acting entity and all
  1993. other entities that control, are controlled by, or are under common
  1994. control with that entity. For the purposes of this definition,
  1995. "control" means (i) the power, direct or indirect, to cause the
  1996. direction or management of such entity, whether by contract or
  1997. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  1998. outstanding shares, or (iii) beneficial ownership of such entity.
  1999. "You" (or "Your") shall mean an individual or Legal Entity
  2000. exercising permissions granted by this License.
  2001. "Source" form shall mean the preferred form for making modifications,
  2002. including but not limited to software source code, documentation
  2003. source, and configuration files.
  2004. "Object" form shall mean any form resulting from mechanical
  2005. transformation or translation of a Source form, including but
  2006. not limited to compiled object code, generated documentation,
  2007. and conversions to other media types.
  2008. "Work" shall mean the work of authorship, whether in Source or
  2009. Object form, made available under the License, as indicated by a
  2010. copyright notice that is included in or attached to the work
  2011. (an example is provided in the Appendix below).
  2012. "Derivative Works" shall mean any work, whether in Source or Object
  2013. form, that is based on (or derived from) the Work and for which the
  2014. editorial revisions, annotations, elaborations, or other modifications
  2015. represent, as a whole, an original work of authorship. For the purposes
  2016. of this License, Derivative Works shall not include works that remain
  2017. separable from, or merely link (or bind by name) to the interfaces of,
  2018. the Work and Derivative Works thereof.
  2019. "Contribution" shall mean any work of authorship, including
  2020. the original version of the Work and any modifications or additions
  2021. to that Work or Derivative Works thereof, that is intentionally
  2022. submitted to Licensor for inclusion in the Work by the copyright owner
  2023. or by an individual or Legal Entity authorized to submit on behalf of
  2024. the copyright owner. For the purposes of this definition, "submitted"
  2025. means any form of electronic, verbal, or written communication sent
  2026. to the Licensor or its representatives, including but not limited to
  2027. communication on electronic mailing lists, source code control systems,
  2028. and issue tracking systems that are managed by, or on behalf of, the
  2029. Licensor for the purpose of discussing and improving the Work, but
  2030. excluding communication that is conspicuously marked or otherwise
  2031. designated in writing by the copyright owner as "Not a Contribution."
  2032. "Contributor" shall mean Licensor and any individual or Legal Entity
  2033. on behalf of whom a Contribution has been received by Licensor and
  2034. subsequently incorporated within the Work.
  2035. 2. Grant of Copyright License. Subject to the terms and conditions of
  2036. this License, each Contributor hereby grants to You a perpetual,
  2037. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  2038. copyright license to reproduce, prepare Derivative Works of,
  2039. publicly display, publicly perform, sublicense, and distribute the
  2040. Work and such Derivative Works in Source or Object form.
  2041. 3. Grant of Patent License. Subject to the terms and conditions of
  2042. this License, each Contributor hereby grants to You a perpetual,
  2043. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  2044. (except as stated in this section) patent license to make, have made,
  2045. use, offer to sell, sell, import, and otherwise transfer the Work,
  2046. where such license applies only to those patent claims licensable
  2047. by such Contributor that are necessarily infringed by their
  2048. Contribution(s) alone or by combination of their Contribution(s)
  2049. with the Work to which such Contribution(s) was submitted. If You
  2050. institute patent litigation against any entity (including a
  2051. cross-claim or counterclaim in a lawsuit) alleging that the Work
  2052. or a Contribution incorporated within the Work constitutes direct
  2053. or contributory patent infringement, then any patent licenses
  2054. granted to You under this License for that Work shall terminate
  2055. as of the date such litigation is filed.
  2056. 4. Redistribution. You may reproduce and distribute copies of the
  2057. Work or Derivative Works thereof in any medium, with or without
  2058. modifications, and in Source or Object form, provided that You
  2059. meet the following conditions:
  2060. (a) You must give any other recipients of the Work or
  2061. Derivative Works a copy of this License; and
  2062. (b) You must cause any modified files to carry prominent notices
  2063. stating that You changed the files; and
  2064. (c) You must retain, in the Source form of any Derivative Works
  2065. that You distribute, all copyright, patent, trademark, and
  2066. attribution notices from the Source form of the Work,
  2067. excluding those notices that do not pertain to any part of
  2068. the Derivative Works; and
  2069. (d) If the Work includes a "NOTICE" text file as part of its
  2070. distribution, then any Derivative Works that You distribute must
  2071. include a readable copy of the attribution notices contained
  2072. within such NOTICE file, excluding those notices that do not
  2073. pertain to any part of the Derivative Works, in at least one
  2074. of the following places: within a NOTICE text file distributed
  2075. as part of the Derivative Works; within the Source form or
  2076. documentation, if provided along with the Derivative Works; or,
  2077. within a display generated by the Derivative Works, if and
  2078. wherever such third-party notices normally appear. The contents
  2079. of the NOTICE file are for informational purposes only and
  2080. do not modify the License. You may add Your own attribution
  2081. notices within Derivative Works that You distribute, alongside
  2082. or as an addendum to the NOTICE text from the Work, provided
  2083. that such additional attribution notices cannot be construed
  2084. as modifying the License.
  2085. You may add Your own copyright statement to Your modifications and
  2086. may provide additional or different license terms and conditions
  2087. for use, reproduction, or distribution of Your modifications, or
  2088. for any such Derivative Works as a whole, provided Your use,
  2089. reproduction, and distribution of the Work otherwise complies with
  2090. the conditions stated in this License.
  2091. 5. Submission of Contributions. Unless You explicitly state otherwise,
  2092. any Contribution intentionally submitted for inclusion in the Work
  2093. by You to the Licensor shall be under the terms and conditions of
  2094. this License, without any additional terms or conditions.
  2095. Notwithstanding the above, nothing herein shall supersede or modify
  2096. the terms of any separate license agreement you may have executed
  2097. with Licensor regarding such Contributions.
  2098. 6. Trademarks. This License does not grant permission to use the trade
  2099. names, trademarks, service marks, or product names of the Licensor,
  2100. except as required for reasonable and customary use in describing the
  2101. origin of the Work and reproducing the content of the NOTICE file.
  2102. 7. Disclaimer of Warranty. Unless required by applicable law or
  2103. agreed to in writing, Licensor provides the Work (and each
  2104. Contributor provides its Contributions) on an "AS IS" BASIS,
  2105. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  2106. implied, including, without limitation, any warranties or conditions
  2107. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  2108. PARTICULAR PURPOSE. You are solely responsible for determining the
  2109. appropriateness of using or redistributing the Work and assume any
  2110. risks associated with Your exercise of permissions under this License.
  2111. 8. Limitation of Liability. In no event and under no legal theory,
  2112. whether in tort (including negligence), contract, or otherwise,
  2113. unless required by applicable law (such as deliberate and grossly
  2114. negligent acts) or agreed to in writing, shall any Contributor be
  2115. liable to You for damages, including any direct, indirect, special,
  2116. incidental, or consequential damages of any character arising as a
  2117. result of this License or out of the use or inability to use the
  2118. Work (including but not limited to damages for loss of goodwill,
  2119. work stoppage, computer failure or malfunction, or any and all
  2120. other commercial damages or losses), even if such Contributor
  2121. has been advised of the possibility of such damages.
  2122. 9. Accepting Warranty or Additional Liability. While redistributing
  2123. the Work or Derivative Works thereof, You may choose to offer,
  2124. and charge a fee for, acceptance of support, warranty, indemnity,
  2125. or other liability obligations and/or rights consistent with this
  2126. License. However, in accepting such obligations, You may act only
  2127. on Your own behalf and on Your sole responsibility, not on behalf
  2128. of any other Contributor, and only if You agree to indemnify,
  2129. defend, and hold each Contributor harmless for any liability
  2130. incurred by, or claims asserted against, such Contributor by reason
  2131. of your accepting any such warranty or additional liability.
  2132. END OF TERMS AND CONDITIONS
  2133. APPENDIX: How to apply the Apache License to your work.
  2134. To apply the Apache License to your work, attach the following
  2135. boilerplate notice, with the fields enclosed by brackets "{}"
  2136. replaced with your own identifying information. (Don't include
  2137. the brackets!) The text should be enclosed in the appropriate
  2138. comment syntax for the file format. We also recommend that a
  2139. file or class name and description of purpose be included on the
  2140. same "printed page" as the copyright notice for easier
  2141. identification within third-party archives.
  2142. Copyright {yyyy} {name of copyright owner}
  2143. Licensed under the Apache License, Version 2.0 (the "License");
  2144. you may not use this file except in compliance with the License.
  2145. You may obtain a copy of the License at
  2146. http://www.apache.org/licenses/LICENSE-2.0
  2147. Unless required by applicable law or agreed to in writing, software
  2148. distributed under the License is distributed on an "AS IS" BASIS,
  2149. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  2150. See the License for the specific language governing permissions and
  2151. limitations under the License.
  2152. </string>
  2153. <key>License</key>
  2154. <string>Apache-2.0</string>
  2155. <key>Title</key>
  2156. <string>SGQRCode</string>
  2157. <key>Type</key>
  2158. <string>PSGroupSpecifier</string>
  2159. </dict>
  2160. <dict>
  2161. <key>FooterText</key>
  2162. <string>BSD License
  2163. For SocketRocket software
  2164. Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
  2165. Redistribution and use in source and binary forms, with or without modification,
  2166. are permitted provided that the following conditions are met:
  2167. * Redistributions of source code must retain the above copyright notice, this
  2168. list of conditions and the following disclaimer.
  2169. * Redistributions in binary form must reproduce the above copyright notice,
  2170. this list of conditions and the following disclaimer in the documentation
  2171. and/or other materials provided with the distribution.
  2172. * Neither the name Facebook nor the names of its contributors may be used to
  2173. endorse or promote products derived from this software without specific
  2174. prior written permission.
  2175. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  2176. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  2177. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  2178. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  2179. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2180. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  2181. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  2182. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2183. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  2184. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</string>
  2185. <key>License</key>
  2186. <string>BSD</string>
  2187. <key>Title</key>
  2188. <string>SocketRocket</string>
  2189. <key>Type</key>
  2190. <string>PSGroupSpecifier</string>
  2191. </dict>
  2192. <dict>
  2193. <key>FooterText</key>
  2194. <string>Copyright (c) 2011 Mattt Thompson (http://mattt.me/)
  2195. Permission is hereby granted, free of charge, to any person obtaining a copy
  2196. of this software and associated documentation files (the "Software"), to deal
  2197. in the Software without restriction, including without limitation the rights
  2198. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2199. copies of the Software, and to permit persons to whom the Software is
  2200. furnished to do so, subject to the following conditions:
  2201. The above copyright notice and this permission notice shall be included in
  2202. all copies or substantial portions of the Software.
  2203. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2204. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2205. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2206. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2207. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2208. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  2209. THE SOFTWARE.
  2210. </string>
  2211. <key>License</key>
  2212. <string>MIT</string>
  2213. <key>Title</key>
  2214. <string>TTTAttributedLabel</string>
  2215. <key>Type</key>
  2216. <string>PSGroupSpecifier</string>
  2217. </dict>
  2218. <dict>
  2219. <key>FooterText</key>
  2220. <string>The MIT License (MIT)
  2221. Copyright (c) 2016 Zhen Tan
  2222. Permission is hereby granted, free of charge, to any person obtaining a copy
  2223. of this software and associated documentation files (the "Software"), to deal
  2224. in the Software without restriction, including without limitation the rights
  2225. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2226. copies of the Software, and to permit persons to whom the Software is
  2227. furnished to do so, subject to the following conditions:
  2228. The above copyright notice and this permission notice shall be included in all
  2229. copies or substantial portions of the Software.
  2230. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2231. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2232. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2233. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2234. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2235. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2236. SOFTWARE.
  2237. </string>
  2238. <key>License</key>
  2239. <string>MIT</string>
  2240. <key>Title</key>
  2241. <string>TZImagePickerController</string>
  2242. <key>Type</key>
  2243. <string>PSGroupSpecifier</string>
  2244. </dict>
  2245. <dict>
  2246. <key>FooterText</key>
  2247. <string>MIT License
  2248. Copyright (c) 2022 ADSuyi_Kit
  2249. Permission is hereby granted, free of charge, to any person obtaining a copy
  2250. of this software and associated documentation files (the "Software"), to deal
  2251. in the Software without restriction, including without limitation the rights
  2252. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2253. copies of the Software, and to permit persons to whom the Software is
  2254. furnished to do so, subject to the following conditions:
  2255. The above copyright notice and this permission notice shall be included in all
  2256. copies or substantial portions of the Software.
  2257. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2258. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2259. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2260. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2261. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2262. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2263. SOFTWARE.
  2264. </string>
  2265. <key>License</key>
  2266. <string>MIT</string>
  2267. <key>Title</key>
  2268. <string>TianmuSDK</string>
  2269. <key>Type</key>
  2270. <string>PSGroupSpecifier</string>
  2271. </dict>
  2272. <dict>
  2273. <key>FooterText</key>
  2274. <string>The MIT License
  2275. Copyright (c) 2011 kishikawa katsumi
  2276. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  2277. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  2278. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</string>
  2279. <key>License</key>
  2280. <string>MIT</string>
  2281. <key>Title</key>
  2282. <string>UICKeyChainStore</string>
  2283. <key>Type</key>
  2284. <string>PSGroupSpecifier</string>
  2285. </dict>
  2286. <dict>
  2287. <key>FooterText</key>
  2288. <string>Copyright (c) 2011-2015 Marcus Westin, Antoine Lagadec
  2289. Permission is hereby granted, free of charge, to any person
  2290. obtaining a copy of this software and associated documentation
  2291. files (the "Software"), to deal in the Software without
  2292. restriction, including without limitation the rights to use,
  2293. copy, modify, merge, publish, distribute, sublicense, and/or sell
  2294. copies of the Software, and to permit persons to whom the
  2295. Software is furnished to do so, subject to the following
  2296. conditions:
  2297. The above copyright notice and this permission notice shall be
  2298. included in all copies or substantial portions of the Software.
  2299. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  2300. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  2301. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  2302. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  2303. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  2304. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  2305. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  2306. OTHER DEALINGS IN THE SOFTWARE.
  2307. </string>
  2308. <key>License</key>
  2309. <string>MIT</string>
  2310. <key>Title</key>
  2311. <string>WebViewJavascriptBridge</string>
  2312. <key>Type</key>
  2313. <string>PSGroupSpecifier</string>
  2314. </dict>
  2315. <dict>
  2316. <key>FooterText</key>
  2317. <string>Copyright 2020 tencent.com. All rights reserved.
  2318. </string>
  2319. <key>License</key>
  2320. <string>Copyright</string>
  2321. <key>Title</key>
  2322. <string>WechatOpenSDK</string>
  2323. <key>Type</key>
  2324. <string>PSGroupSpecifier</string>
  2325. </dict>
  2326. <dict>
  2327. <key>FooterText</key>
  2328. <string>The MIT License (MIT)
  2329. Copyright (c) 2016 XHLaunchAd (https://github.com/CoderZhuXH/XHLaunchAd)
  2330. Permission is hereby granted, free of charge, to any person obtaining a copy
  2331. of this software and associated documentation files (the "Software"), to deal
  2332. in the Software without restriction, including without limitation the rights
  2333. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2334. copies of the Software, and to permit persons to whom the Software is
  2335. furnished to do so, subject to the following conditions:
  2336. The above copyright notice and this permission notice shall be included in
  2337. all copies or substantial portions of the Software.
  2338. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2339. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2340. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2341. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2342. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2343. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  2344. THE SOFTWARE.
  2345. </string>
  2346. <key>License</key>
  2347. <string>MIT</string>
  2348. <key>Title</key>
  2349. <string>XHLaunchAd</string>
  2350. <key>Type</key>
  2351. <string>PSGroupSpecifier</string>
  2352. </dict>
  2353. <dict>
  2354. <key>FooterText</key>
  2355. <string>The MIT License (MIT)
  2356. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2357. Permission is hereby granted, free of charge, to any person obtaining a copy
  2358. of this software and associated documentation files (the "Software"), to deal
  2359. in the Software without restriction, including without limitation the rights
  2360. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2361. copies of the Software, and to permit persons to whom the Software is
  2362. furnished to do so, subject to the following conditions:
  2363. The above copyright notice and this permission notice shall be included in all
  2364. copies or substantial portions of the Software.
  2365. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2366. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2367. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2368. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2369. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2370. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2371. SOFTWARE.
  2372. </string>
  2373. <key>License</key>
  2374. <string>MIT</string>
  2375. <key>Title</key>
  2376. <string>YYCache</string>
  2377. <key>Type</key>
  2378. <string>PSGroupSpecifier</string>
  2379. </dict>
  2380. <dict>
  2381. <key>FooterText</key>
  2382. <string>The MIT License (MIT)
  2383. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2384. Permission is hereby granted, free of charge, to any person obtaining a copy
  2385. of this software and associated documentation files (the "Software"), to deal
  2386. in the Software without restriction, including without limitation the rights
  2387. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2388. copies of the Software, and to permit persons to whom the Software is
  2389. furnished to do so, subject to the following conditions:
  2390. The above copyright notice and this permission notice shall be included in all
  2391. copies or substantial portions of the Software.
  2392. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2393. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2394. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2395. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2396. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2397. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2398. SOFTWARE.
  2399. </string>
  2400. <key>License</key>
  2401. <string>MIT</string>
  2402. <key>Title</key>
  2403. <string>YYImage</string>
  2404. <key>Type</key>
  2405. <string>PSGroupSpecifier</string>
  2406. </dict>
  2407. <dict>
  2408. <key>FooterText</key>
  2409. <string>The MIT License (MIT)
  2410. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2411. Permission is hereby granted, free of charge, to any person obtaining a copy
  2412. of this software and associated documentation files (the "Software"), to deal
  2413. in the Software without restriction, including without limitation the rights
  2414. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2415. copies of the Software, and to permit persons to whom the Software is
  2416. furnished to do so, subject to the following conditions:
  2417. The above copyright notice and this permission notice shall be included in all
  2418. copies or substantial portions of the Software.
  2419. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2420. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2421. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2422. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2423. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2424. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2425. SOFTWARE.
  2426. </string>
  2427. <key>License</key>
  2428. <string>MIT</string>
  2429. <key>Title</key>
  2430. <string>YYModel</string>
  2431. <key>Type</key>
  2432. <string>PSGroupSpecifier</string>
  2433. </dict>
  2434. <dict>
  2435. <key>FooterText</key>
  2436. <string>The MIT License (MIT)
  2437. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2438. Permission is hereby granted, free of charge, to any person obtaining a copy
  2439. of this software and associated documentation files (the "Software"), to deal
  2440. in the Software without restriction, including without limitation the rights
  2441. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2442. copies of the Software, and to permit persons to whom the Software is
  2443. furnished to do so, subject to the following conditions:
  2444. The above copyright notice and this permission notice shall be included in all
  2445. copies or substantial portions of the Software.
  2446. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2447. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2448. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2449. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2450. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2451. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2452. SOFTWARE.
  2453. </string>
  2454. <key>License</key>
  2455. <string>MIT</string>
  2456. <key>Title</key>
  2457. <string>YYText</string>
  2458. <key>Type</key>
  2459. <string>PSGroupSpecifier</string>
  2460. </dict>
  2461. <dict>
  2462. <key>FooterText</key>
  2463. <string>The MIT License (MIT)
  2464. Copyright (c) 2015 ibireme &lt;ibireme@gmail.com&gt;
  2465. Permission is hereby granted, free of charge, to any person obtaining a copy
  2466. of this software and associated documentation files (the "Software"), to deal
  2467. in the Software without restriction, including without limitation the rights
  2468. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2469. copies of the Software, and to permit persons to whom the Software is
  2470. furnished to do so, subject to the following conditions:
  2471. The above copyright notice and this permission notice shall be included in all
  2472. copies or substantial portions of the Software.
  2473. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2474. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2475. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2476. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2477. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2478. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  2479. SOFTWARE.
  2480. </string>
  2481. <key>License</key>
  2482. <string>MIT</string>
  2483. <key>Title</key>
  2484. <string>YYWebImage</string>
  2485. <key>Type</key>
  2486. <string>PSGroupSpecifier</string>
  2487. </dict>
  2488. <dict>
  2489. <key>FooterText</key>
  2490. <string>Copyright (c) 2018 renzifeng &lt;zifeng1300@gmail.com&gt;
  2491. Permission is hereby granted, free of charge, to any person obtaining a copy
  2492. of this software and associated documentation files (the "Software"), to deal
  2493. in the Software without restriction, including without limitation the rights
  2494. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  2495. copies of the Software, and to permit persons to whom the Software is
  2496. furnished to do so, subject to the following conditions:
  2497. The above copyright notice and this permission notice shall be included in
  2498. all copies or substantial portions of the Software.
  2499. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  2500. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  2501. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  2502. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  2503. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  2504. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  2505. THE SOFTWARE.
  2506. </string>
  2507. <key>License</key>
  2508. <string>MIT</string>
  2509. <key>Title</key>
  2510. <string>ZFPlayer</string>
  2511. <key>Type</key>
  2512. <string>PSGroupSpecifier</string>
  2513. </dict>
  2514. <dict>
  2515. <key>FooterText</key>
  2516. <string>Copyright (c) 2010, Google Inc. All rights reserved.
  2517. Redistribution and use in source and binary forms, with or without
  2518. modification, are permitted provided that the following conditions are
  2519. met:
  2520. * Redistributions of source code must retain the above copyright
  2521. notice, this list of conditions and the following disclaimer.
  2522. * Redistributions in binary form must reproduce the above copyright
  2523. notice, this list of conditions and the following disclaimer in
  2524. the documentation and/or other materials provided with the
  2525. distribution.
  2526. * Neither the name of Google nor the names of its contributors may
  2527. be used to endorse or promote products derived from this software
  2528. without specific prior written permission.
  2529. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  2530. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  2531. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  2532. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  2533. HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  2534. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  2535. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  2536. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  2537. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2538. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  2539. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  2540. </string>
  2541. <key>License</key>
  2542. <string>BSD</string>
  2543. <key>Title</key>
  2544. <string>libwebp</string>
  2545. <key>Type</key>
  2546. <string>PSGroupSpecifier</string>
  2547. </dict>
  2548. <dict>
  2549. <key>FooterText</key>
  2550. <string>BSD License
  2551. For Pop software
  2552. Copyright (c) 2014, Facebook, Inc. All rights reserved.
  2553. Redistribution and use in source and binary forms, with or without modification,
  2554. are permitted provided that the following conditions are met:
  2555. * Redistributions of source code must retain the above copyright notice, this
  2556. list of conditions and the following disclaimer.
  2557. * Redistributions in binary form must reproduce the above copyright notice,
  2558. this list of conditions and the following disclaimer in the documentation
  2559. and/or other materials provided with the distribution.
  2560. * Neither the name Facebook nor the names of its contributors may be used to
  2561. endorse or promote products derived from this software without specific
  2562. prior written permission.
  2563. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  2564. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  2565. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  2566. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
  2567. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  2568. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  2569. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  2570. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  2571. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  2572. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  2573. </string>
  2574. <key>License</key>
  2575. <string>BSD</string>
  2576. <key>Title</key>
  2577. <string>pop</string>
  2578. <key>Type</key>
  2579. <string>PSGroupSpecifier</string>
  2580. </dict>
  2581. <dict>
  2582. <key>FooterText</key>
  2583. <string>Generated by CocoaPods - https://cocoapods.org</string>
  2584. <key>Title</key>
  2585. <string></string>
  2586. <key>Type</key>
  2587. <string>PSGroupSpecifier</string>
  2588. </dict>
  2589. </array>
  2590. <key>StringsTable</key>
  2591. <string>Acknowledgements</string>
  2592. <key>Title</key>
  2593. <string>Acknowledgements</string>
  2594. </dict>
  2595. </plist>