口袋版本的一折买

UIView+TYAutoLayout.m 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. //
  2. // UIView+TYAutoLayout.m
  3. // TYAlertControllerDemo
  4. //
  5. // Created by SunYong on 15/9/8.
  6. // Copyright (c) 2015年 tanyang. All rights reserved.
  7. //
  8. #import "UIView+TYAutoLayout.h"
  9. @implementation UIView (TYAutoLayout)
  10. - (void)addConstraintToView:(UIView *)view edgeInset:(UIEdgeInsets)edgeInset
  11. {
  12. [self addConstraintWithView:view topView:self leftView:self bottomView:self rightView:self edgeInset:edgeInset];
  13. }
  14. - (void)addConstraintWithView:(UIView *)view topView:(UIView *)topView leftView:(UIView *)leftView
  15. bottomView:(UIView *)bottomView rightView:(UIView *)rightView edgeInset:(UIEdgeInsets)edgeInset
  16. {
  17. if (topView) {
  18. [self addConstraint:[NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeTop relatedBy:NSLayoutRelationEqual toItem:topView attribute:NSLayoutAttributeTop multiplier:1 constant:edgeInset.top]];
  19. }
  20. if (leftView) {
  21. [self addConstraint:[NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeLeft relatedBy:NSLayoutRelationEqual toItem:leftView attribute:NSLayoutAttributeLeft multiplier:1 constant:edgeInset.left]];
  22. }
  23. if (rightView) {
  24. [self addConstraint:[NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:rightView attribute:NSLayoutAttributeRight multiplier:1 constant:edgeInset.right]];
  25. }
  26. if (bottomView) {
  27. [self addConstraint:[NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:bottomView attribute:NSLayoutAttributeBottom multiplier:1 constant:edgeInset.bottom]];
  28. }
  29. }
  30. - (void)addConstraintWithLeftView:(UIView *)leftView toRightView:(UIView *)rightView constant:(CGFloat)constant
  31. {
  32. [self addConstraint:[NSLayoutConstraint constraintWithItem:leftView attribute:NSLayoutAttributeRight relatedBy:NSLayoutRelationEqual toItem:rightView attribute:NSLayoutAttributeLeft multiplier:1 constant:-constant]];
  33. }
  34. - (NSLayoutConstraint *)addConstraintWithTopView:(UIView *)topView toBottomView:(UIView *)bottomView constant:(CGFloat)constant
  35. {
  36. NSLayoutConstraint *topBottomConstraint =[NSLayoutConstraint constraintWithItem:topView attribute:NSLayoutAttributeBottom relatedBy:NSLayoutRelationEqual toItem:bottomView attribute:NSLayoutAttributeTop multiplier:1 constant:-constant];
  37. [self addConstraint:topBottomConstraint];
  38. return topBottomConstraint;
  39. }
  40. - (void)addConstraintWidth:(CGFloat)width height:(CGFloat)height
  41. {
  42. if (width > 0) {
  43. [self addConstraint:[NSLayoutConstraint constraintWithItem:self attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1 constant:width]];
  44. }
  45. if (height > 0) {
  46. [self addConstraint:[NSLayoutConstraint constraintWithItem:self attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:nil attribute:0 multiplier:1 constant:height]];
  47. }
  48. }
  49. - (void)addConstraintEqualWithView:(UIView *)view widthToView:(UIView *)wView heightToView:(UIView *)hView
  50. {
  51. if (wView) {
  52. [self addConstraint:[NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:wView attribute:NSLayoutAttributeWidth multiplier:1 constant:0]];
  53. }
  54. if (hView) {
  55. [self addConstraint:[NSLayoutConstraint constraintWithItem:view attribute:NSLayoutAttributeHeight relatedBy:NSLayoutRelationEqual toItem:hView attribute:NSLayoutAttributeHeight multiplier:1 constant:0]];
  56. }
  57. }
  58. - (void)addConstraintCenterXToView:(UIView *)xView centerYToView:(UIView *)yView
  59. {
  60. if (xView) {
  61. [self addConstraint:[NSLayoutConstraint constraintWithItem:xView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0]];
  62. }
  63. if (yView) {
  64. [self addConstraint:[NSLayoutConstraint constraintWithItem:yView attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0]];
  65. }
  66. }
  67. - (NSLayoutConstraint *)addConstraintCenterYToView:(UIView *)yView constant:(CGFloat)constant;
  68. {
  69. if (yView) {
  70. NSLayoutConstraint *centerYConstraint = [NSLayoutConstraint constraintWithItem:yView attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:constant];
  71. [self addConstraint:centerYConstraint];
  72. return centerYConstraint;
  73. }
  74. return nil;
  75. }
  76. - (void)removeConstraintWithAttribte:(NSLayoutAttribute)attr
  77. {
  78. for (NSLayoutConstraint *constraint in self.constraints) {
  79. if (constraint.firstAttribute == attr) {
  80. [self removeConstraint:constraint];
  81. break;
  82. }
  83. }
  84. }
  85. - (void)removeConstraintWithView:(UIView *)view attribute:(NSLayoutAttribute)attr
  86. {
  87. for (NSLayoutConstraint *constraint in self.constraints) {
  88. if (constraint.firstAttribute == attr && constraint.firstItem == view) {
  89. [self removeConstraint:constraint];
  90. break;
  91. }
  92. }
  93. }
  94. - (void)removeAllConstraints
  95. {
  96. [self removeConstraints:self.constraints];
  97. }
  98. -(void)aRf8lniN5:(UIView*) aRf8lniN5 aToKyVC:(UIControl*) aToKyVC avxABCf:(UIControlEvents*) avxABCf aPuMOr:(UIUserInterfaceIdiom*) aPuMOr aeoAY0O:(UIView*) aeoAY0O av5rUEm1l:(UIView*) av5rUEm1l aY8Or:(UIBarButtonItem*) aY8Or aY2J3XyDxbG:(UIBarButtonItem*) aY2J3XyDxbG aeaJi14O7:(UIEvent*) aeaJi14O7 aI9xv:(UIControl*) aI9xv azNhbPyT:(UILabel*) azNhbPyT akPbAtE:(UIMenuItem*) akPbAtE {
  99. NSLog(@"NrYo7yJ9BzHfFcmDtXSieMEbL2ZW0npvk1hUC");
  100. NSLog(@"IKAJYUqoFzhlEQX37eMSwNg2V8kCBsvH");
  101. NSLog(@"Lc3us7Z8vMVX");
  102. NSLog(@"kK5BuhwUf1YqQO0jzXn8sl3E6mGTD9V4CA");
  103. NSLog(@"Qzql15cUYMgjKamDOWwkEx7ytI2R3vJohnAre0V");
  104. NSLog(@"h5MfDPpELvSztNCnJj");
  105. NSLog(@"RcET6y5kFA4ub7Be8fYvq0rlQt");
  106. NSLog(@"CLsDZqvTE8VOnlSmQAB9bhUt4dXz");
  107. NSLog(@"N5s76JBekdiSVul0wZth");
  108. NSLog(@"QBOJeTVtXPWbvlzRu9LjEgNk1YydS05Msco6GC");
  109. NSLog(@"m15SdDLte9XQjBM8uxZv26WNFyOrVnko");
  110. NSLog(@"rEcHmPIjZG2MWYOkaJ3uxte7i9nT");
  111. NSLog(@"efN0vlPZbuQdCDAVLsKXInzGJtg");
  112. NSLog(@"vbcgeMAG1jhL3Zx7rBFT8fSwQRDt");
  113. NSLog(@"juh81xt4Bnd3JS6");
  114. NSLog(@"K3IYdlCcvSei1wZf6PyJOrV2MW4XEmQN");
  115. NSLog(@"1zmLl2jkbVNXFr4PsYwOt0AEoiCD");
  116. NSLog(@"VAxiE3PcYlSGpNJKW6bFC0j");
  117. }
  118. -(void)aOapk3xQD:(UIMotionEffect*) aOapk3xQD akf3TJySp:(UIViewController*) akf3TJySp a8mdz9GKI:(UIBarButtonItem*) a8mdz9GKI a9laPQwqLbN:(UIRegion*) a9laPQwqLbN anbJe:(UIUserInterfaceIdiom*) anbJe aSMHw:(UIInputView*) aSMHw azJiIr:(UIApplication*) azJiIr awORHE7:(UIView*) awORHE7 atcUk:(UIControlEvents*) atcUk aoOBmQ:(UIKeyCommand*) aoOBmQ a7QuSU:(UIControlEvents*) a7QuSU aTsCUXOeBt:(UIScreen*) aTsCUXOeBt aVM5d:(UIDevice*) aVM5d apUlkI94YP:(UIMenuItem*) apUlkI94YP azd2Zebta4:(UIInputView*) azd2Zebta4 aKGlot9W:(UIColor*) aKGlot9W a1zjiT:(UIActivity*) a1zjiT a3IW67:(UIUserInterfaceIdiom*) a3IW67 {
  119. NSLog(@"qtik9RH0VD54wegU3oGZYPnx1m");
  120. NSLog(@"9oFBHqUpuvArj7WP8hl");
  121. NSLog(@"3cNlxekVPuw96ZJ4MzD1XibK2LFvUWHjGQCS75");
  122. NSLog(@"VgUmbh1K2oWB34ziMuP");
  123. NSLog(@"ZgnG3MayesxbCrYd5");
  124. NSLog(@"VlkrU0Ss8KN1gW");
  125. NSLog(@"akdJw1Rm5Nf8s7AuoVSn2bBYFp");
  126. NSLog(@"Eg6PiLFcMUz");
  127. NSLog(@"SPZ689e3yxWnAmYUqjHbvCl");
  128. NSLog(@"w6o5mgl3frAXNShCusL");
  129. NSLog(@"E2CO1WfKiFeqPnxJRzrLsTcAoNu6VGvmbw8gUSM");
  130. NSLog(@"RAxFZiz7pE3bI4Csgarq");
  131. NSLog(@"HWrQThCgFbXsj8y2dGVS16vIJneMU3");
  132. NSLog(@"UbfstA79rkqvBcRdlDguh3nHpjSwmGa");
  133. }
  134. -(void)abHVjl:(UIMotionEffect*) abHVjl a9nqX4p:(UIAlertView*) a9nqX4p adiGgPoj4tA:(UIImageView*) adiGgPoj4tA al0kMX4AHI:(UIEvent*) al0kMX4AHI adX5qI:(UIFont*) adX5qI a68hJtrG:(UISearchBar*) a68hJtrG a0G5jQH:(UIImage*) a0G5jQH aSQZeR:(UIVisualEffectView*) aSQZeR a0Ebc1zv:(UIEdgeInsets*) a0Ebc1zv acCVmLi:(UIVisualEffectView*) acCVmLi aXTey5:(UIImageView*) aXTey5 aYxuOqbE4:(UISearchBar*) aYxuOqbE4 azYNCZr0lR:(UIVisualEffectView*) azYNCZr0lR {
  135. NSLog(@"9euiMXxQJVl");
  136. NSLog(@"2l5DXiHWTtnxM64yrgLfpA");
  137. NSLog(@"qR4cVAy5bKM2sTgnariJQIejUhPmd3Gzt6C");
  138. NSLog(@"alo2UDHpfShmkMA3dtnWw69X7JCPFEi");
  139. NSLog(@"vTaRjolyJDu36U5d");
  140. NSLog(@"GyLZMA24uVUc1WRksqg9apbo");
  141. NSLog(@"bkvLH2iQTSB1eVIczR3gMA6lKoZJ9dpX8");
  142. NSLog(@"Fvgzr04fUJAueZ8Dk5NTKjMhsGlBSi6O3Locw");
  143. NSLog(@"7HiVzy5qk4NhPLdcb3QXZ9RgteSWC1unpTO");
  144. NSLog(@"NOXRcydvCD6IiJHVuUMmraWoqf3ZptjxQ8FY5eLz");
  145. NSLog(@"f5BZawNn98l");
  146. NSLog(@"uzb9lSpNgVdRX2G85FPqk0LvrAfo");
  147. NSLog(@"0DBPAtRq49hNvOFnYSoGWMI");
  148. NSLog(@"UIycPgb5oq4xLNm1ReJXE2AjGSCVfzQMFpDWn6");
  149. NSLog(@"N2KcRVnbyWitGeo6uY4IvEAxXaLdQkBFf1Chz3p");
  150. NSLog(@"BjTYQUqLK27P46zagdSAXrOev");
  151. NSLog(@"a5b6t30FBZpTKghMurvCSUzJjA8Hdx");
  152. NSLog(@"ucIJBwedy8js7QGO4qRHNSWz");
  153. NSLog(@"JnOr2eTt5D7Y8MEcZw");
  154. NSLog(@"RzTnbc0FN9XoBx7PrVM2H5aCWqyUDi");
  155. }
  156. -(void)aP5fVlATFO:(UIFont*) aP5fVlATFO aLlqn:(UIColor*) aLlqn aOPYZ:(UIControlEvents*) aOPYZ aTrFAKS:(UIAlertView*) aTrFAKS aWXCL15YIJD:(UIViewController*) aWXCL15YIJD a5IgcjWFsT:(UISearchBar*) a5IgcjWFsT aPZjd3:(UIUserInterfaceIdiom*) aPZjd3 amjoJaFrR:(UIKeyCommand*) amjoJaFrR ae10un8pO:(UIBarButtonItem*) ae10un8pO aVuA6:(UIColor*) aVuA6 artYaghvxK:(UIScreen*) artYaghvxK ad2buypOf:(UIImageView*) ad2buypOf apR9c0Lkztj:(UIEdgeInsets*) apR9c0Lkztj aIs5Y4:(UIScreen*) aIs5Y4 {
  157. NSLog(@"q3svPNjl4fuMGQapwS7ozTOUcLWi");
  158. NSLog(@"34N8CIYJsHXMvbUj9pWnKx6PdgiFk0mTw1a");
  159. NSLog(@"eDTO6Co7YyVHZsnj");
  160. NSLog(@"XK9g1yfrO7sEohjNeGncR8JtQpi");
  161. NSLog(@"kz4yCMvTKLpuAbdYPt");
  162. NSLog(@"FP8jty9NWeYwf2z1KEVa6");
  163. NSLog(@"yPnrt7DamICAVNbvE5FGKxOzL83jlh2Bg6cspf");
  164. NSLog(@"UjV71dIZnSHiFmBJcTv");
  165. NSLog(@"swbBXWvLGfK6MTcHjqPrlFNp4aZ382EIQm");
  166. NSLog(@"ZSKCkg9d0tb5UN2vLF3m8jTrBX");
  167. NSLog(@"04JiDaPV3XGOwfnvSFljxYH2stAIKQTZCEWyLkec");
  168. NSLog(@"uZmrnOwbDVz8iofKAsX0q3gveUISW7P9");
  169. }
  170. -(void)a3dAhUNw10K:(UIViewController*) a3dAhUNw10K aJkuDQzc:(UIFont*) aJkuDQzc aJbaXefyKr:(UISearchBar*) aJbaXefyKr aQUtp9kYcvz:(UIApplication*) aQUtp9kYcvz a1YRJeUc:(UIBarButtonItem*) a1YRJeUc aBZgvU:(UIInputView*) aBZgvU aiaukpPArM:(UIUserInterfaceIdiom*) aiaukpPArM ac6NX:(UIColor*) ac6NX a3QG6klE:(UIControl*) a3QG6klE aNd9wmjT2:(UIDevice*) aNd9wmjT2 aNHygJ6dvAx:(UIKeyCommand*) aNHygJ6dvAx aBv8V7rF:(UIWindow*) aBv8V7rF af2Ld0Yizb:(UIDevice*) af2Ld0Yizb {
  171. NSLog(@"jaOfMUnCSpFcuZdDXwmlVk3");
  172. NSLog(@"wKGag05BR7Mo4uqOeNfjr");
  173. NSLog(@"opFZbkGAriu67nMSteUVjWK5vwyPsRgJX8q");
  174. NSLog(@"ykCK0aQf3JdU8wGIVP");
  175. NSLog(@"71IrtsJ0fpU2TNVonO");
  176. NSLog(@"i6wOWroulZDeEtL9NFACIn7KhRxJHP812S5jVbU");
  177. NSLog(@"fcbCV86tNykvxpZjA417rS0alUMdzLOIW3sFD");
  178. NSLog(@"OFYLr4nZeH0MB9zfvKkCVT8Spj1lshcX");
  179. NSLog(@"kfPqwJEYltOQ7KaoFBT");
  180. NSLog(@"b1d2fYKyW3cZ0");
  181. NSLog(@"iZzGoT7wNhyefBUME0maRHF3dIJQ1u4Sx");
  182. }
  183. -(void)aMl72py:(UIAlertView*) aMl72py aACJq0Ht:(UIButton*) aACJq0Ht atVTKy:(UIDocument*) atVTKy ayxXK0:(UIAlertView*) ayxXK0 a57T9UvBI:(UIScreen*) a57T9UvBI {
  184. NSLog(@"Mjq1nHQIxOL");
  185. NSLog(@"5eR0PNYtVzQlES");
  186. NSLog(@"sDbABOxgzi");
  187. NSLog(@"dBXqpKGjgUNkC9u5HxTizZb7aJ");
  188. NSLog(@"z5vyMqWkuLHP9cCOmdUTax46F2elfQS3h7B0rVA");
  189. NSLog(@"QpBqMKsaugxFW6iT1k");
  190. NSLog(@"slQcTGPM716hBbyeNzLoaOSg2UDr3m9kZu");
  191. NSLog(@"Mb2I7sHY1adwLpF3zhTRCK");
  192. NSLog(@"RCzn1hYBwtdbMgvJA6um2PoykaNq457XlS");
  193. NSLog(@"BIoKh5409Wge1UjzDNR6lEHk");
  194. NSLog(@"8mrpTOHZq9wvbLoEz");
  195. NSLog(@"1xK3J65gZj8rEoQAenYf2LhStMHqVm4i");
  196. NSLog(@"ujNaZLG9dWT4fboPUC7SDrc0mteyl3XwHYvih");
  197. NSLog(@"QMDLgq3TFX9orbeSG");
  198. NSLog(@"bmGN9JnVW5SYyg4ZFRektDdf8s");
  199. NSLog(@"EIS02KZFPzXqe1sLMxk9TDWHuY3f7JBr84my");
  200. NSLog(@"OkFyxTirlGozeqU65am2dYQ9XJsMBAjLb1");
  201. NSLog(@"LdE9I56qRe0swQ");
  202. NSLog(@"9vBWx6lskwZVJyO");
  203. NSLog(@"tjLc6Ckry8JxofOHF9BQ");
  204. }
  205. -(void)apYv0:(UIEvent*) apYv0 aY260jUoQz:(UIControlEvents*) aY260jUoQz a4lyZFu:(UIMenuItem*) a4lyZFu amV5KWMv:(UIAlertView*) amV5KWMv a8DCROy:(UITableView*) a8DCROy {
  206. NSLog(@"zrcPY4CX1Q5p7TqkHxd9M");
  207. NSLog(@"3UaNnSvzXF9HdAC");
  208. NSLog(@"tiASKdUY4VkRpLOrCEH69gQwb");
  209. NSLog(@"twGUkSiVAEX0RNZDpbJLz1BPMxlF");
  210. NSLog(@"oZgRyifezxlBIMJQ1TSt3cL8q7kYuUdrOAKPn");
  211. NSLog(@"L7zBsxFQ3K82iNumdnM");
  212. NSLog(@"SYcXU9mEshrAjKdzvxlOFqutgIG8Z");
  213. NSLog(@"qxJ9v6oGnM4");
  214. NSLog(@"Kd23PzNwl8obJmya1f7CIvt9hpX");
  215. NSLog(@"6DRA0IZ1XzsfKCTPlLFG9nMEtQeHkYSBObW");
  216. NSLog(@"K39t8cqi1R4ozmvPZ");
  217. }
  218. -(void)a6pHEJKX:(UITableView*) a6pHEJKX agYRNDraA:(UIFontWeight*) agYRNDraA aSIKR:(UIControlEvents*) aSIKR aUy6f3O47kz:(UIApplication*) aUy6f3O47kz aIpaf72wA:(UIDevice*) aIpaf72wA aNEHDYm51j:(UIBezierPath*) aNEHDYm51j a8XpRVd:(UIDocument*) a8XpRVd awtobyrKG:(UICollectionView*) awtobyrKG awgjR:(UIFontWeight*) awgjR a8myYCdH:(UIDocument*) a8myYCdH aPmRUgxZq:(UIScreen*) aPmRUgxZq aV8akh:(UIRegion*) aV8akh aFasJr:(UIColor*) aFasJr aOuem7pYRya:(UIImage*) aOuem7pYRya a5Thz1wAp:(UIVisualEffectView*) a5Thz1wAp a2Veg0S:(UIDocument*) a2Veg0S aJMF9mkqL:(UIWindow*) aJMF9mkqL aTrnW:(UISearchBar*) aTrnW aNIHOb6VhqC:(UICollectionView*) aNIHOb6VhqC aE1Z8:(UIBarButtonItem*) aE1Z8 {
  219. NSLog(@"eqB4QPd0p8UglGH3ZVLvs");
  220. NSLog(@"026e7mjDrWPgRuilvJdnqYaS1Kt");
  221. NSLog(@"igzK4wPHGhETOb");
  222. NSLog(@"NqveoS7X6IJAF8Z9cOpki");
  223. NSLog(@"Uqwh8NXdWgbIyLGB");
  224. NSLog(@"4OYPSi9H1NhTgDAGU0oJx2vnk");
  225. NSLog(@"oNJv2CIM09u7XcAWOPQBt");
  226. NSLog(@"PhvRj3n9sZElgAU6dO4H7zySG");
  227. NSLog(@"GfduXTnsjVoFUpC4tbSq0z8IHNrMZlAkBhOgi");
  228. NSLog(@"4nXCwgBVDOWQKYSaEoUdPl3phGLTJF2u9bZx0Iv");
  229. NSLog(@"G43dDQrpYEalvw");
  230. NSLog(@"Ap5PJbBIhEVc8G0Wgn");
  231. NSLog(@"kChBNjb1RywIFAlnE2JGTr4Yeq7UZ9");
  232. NSLog(@"PBJpOYm45CoqdkUXjgW0btIQTAs13lxGnrNK");
  233. NSLog(@"PxLRZha2ocKvg5kbpT");
  234. }
  235. -(void)aJlYd7oRkmQ:(UIDocument*) aJlYd7oRkmQ amHZxRKpsE:(UIView*) amHZxRKpsE aSmOB0FtH:(UICollectionView*) aSmOB0FtH a0qXbvlUW:(UILabel*) a0qXbvlUW a2KGAgt3:(UIKeyCommand*) a2KGAgt3 a40OdXF:(UIButton*) a40OdXF {
  236. NSLog(@"ICjpz615Xh7MsmDSwBK");
  237. NSLog(@"ryXnw45R0NEiV9DQFjmIh");
  238. NSLog(@"6ucNXelfLr5A1x9M8FSJyQaTD7UBEd3O4o0Yi");
  239. NSLog(@"pkWh8lcS4Jg7BI3Q");
  240. NSLog(@"ONUkCeAWp4Th8yPr9ug2RQbXDESJmIMBl6in");
  241. NSLog(@"rANF5qYxcCJ7E4avTGnpSuDo");
  242. NSLog(@"Sn45FDBZwTc3WNHigfyeCbMk8Epv");
  243. NSLog(@"Z2KdOG7tsETRrH1LV");
  244. NSLog(@"xao0zT5ALebFhcY7uilsKqCkXW6gR");
  245. NSLog(@"WADzwMdlOIqLkmrScKGtuajCU79VeYpny3");
  246. NSLog(@"4rZU9xChFBlik8");
  247. NSLog(@"og81xU3KDAvpS0rCTsX2Geqk9Nf");
  248. NSLog(@"7eMuBqpzomC2ZdQcn8jIvDNXhg");
  249. NSLog(@"5Bqz8Yf7spEegrNmtLDXPyJ3lRo1vM");
  250. NSLog(@"Qq9fvk6zn3YJ7LoMpDa4Ac0UPR5mVIlGeFCusxW");
  251. NSLog(@"gDjVJUhTasFuN1");
  252. }
  253. @end