两折买改口袋样式

LZMChildBuyLimitController.m 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. //
  2. // LZMChildBuyLimitController.m
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/7/6.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "LZMChildBuyLimitController.h"
  9. #import "LZMBuyLimitGoodCell.h"
  10. #import "DateManager.h"
  11. #import "LZMBuyLimitHeader.h"
  12. #import "LZMBuyLimitGoodModel.h"
  13. #import "LZMGoodDetailViewController.h"
  14. @interface LZMChildBuyLimitController ()<UITableViewDelegate, UITableViewDataSource>
  15. {
  16. NSInteger _page;
  17. }
  18. @property (nonatomic, strong) UITableView *tableView;
  19. @property (nonatomic, strong) NSMutableArray *dataArr;
  20. @property (nonatomic, strong) LZMBuyLimitHeader *header;
  21. @property (nonatomic, strong) NSMutableArray *topArr;
  22. @end
  23. @implementation LZMChildBuyLimitController
  24. - (void)dealloc {
  25. }
  26. - (void)viewDidLoad {
  27. [super viewDidLoad];
  28. [self confitUI];
  29. [self requestData];
  30. }
  31. - (void)confitUI {
  32. _page = 1;
  33. self.view.backgroundColor = [UIColor whiteColor];
  34. self.header = [[LZMBuyLimitHeader alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 160)];
  35. __weak typeof(self) weakSelf = self;
  36. self.header.ClickBlock = ^(LZMBuyLimitGoodModel *model) {
  37. LZMGoodDetailViewController *detail = [[LZMGoodDetailViewController alloc] init];
  38. DetailRequestModel *request = [[DetailRequestModel alloc] initWithBuyLimitModel:model];
  39. detail.requestModel = request;
  40. LZMEventModel *evevtModel = [[LZMEventModel alloc] initWithOrigin:model.origin category_id:@"0" source:QuickBuyAction];
  41. detail.eventModel = evevtModel;
  42. [weakSelf.navigationController pushViewController:detail animated:YES];
  43. [MobClick event:BuyLimitGoodClick];
  44. };
  45. self.header.canBuy = self.canBuy;
  46. self.tableView.tableHeaderView = self.header;
  47. [self.view addSubview:self.tableView];
  48. [MBProgressHUD showLoadingAddedToView:self.view];
  49. }
  50. - (void)requestData {
  51. NSString *url = [NSString stringWithFormat:@"%@/api/v2/goods/taoQiangGouDataList",BaseURL];
  52. NSTimeInterval start = [DateManager timeStrToInterval:self.start_time];
  53. NSTimeInterval end = [DateManager timeStrToInterval:self.end_time];
  54. NSDictionary *param = @{@"start_time":@(start),
  55. @"end_time":@(end),
  56. @"platform":@"2",
  57. @"page":@(_page),
  58. @"page_size":@(20)
  59. };
  60. [LZMHttp post:url params:param success:^(id json) {
  61. if ([self.tableView.mj_header isRefreshing]) {
  62. [self.topArr removeAllObjects];
  63. [self.dataArr removeAllObjects];
  64. }
  65. NSArray *topList = [NSArray yy_modelArrayWithClass:[LZMBuyLimitGoodModel class] json:json[@"data"][@"top"]];
  66. NSArray *goodList = [NSArray yy_modelArrayWithClass:[LZMBuyLimitGoodModel class] json:json[@"data"][@"list"]];
  67. if (goodList.count>0) {
  68. [self.topArr addObjectsFromArray:topList];
  69. [self.dataArr addObjectsFromArray:goodList];
  70. [self.tableView.mj_footer endRefreshing];;
  71. }else {
  72. if (_page==1) {
  73. [self setUpNoDataView];
  74. }
  75. [self.tableView.mj_footer endRefreshingWithNoMoreData];
  76. }
  77. [self setHeaderGoodInfo];
  78. [self.tableView.mj_header endRefreshing];
  79. [MBProgressHUD hideHUDForView:self.view];
  80. [self.tableView reloadData];
  81. } failure:^(NSError *error) {
  82. [self.tableView.mj_header endRefreshing];
  83. [self.tableView.mj_footer endRefreshing];
  84. [MBProgressHUD hideHUDForView:self.view];
  85. }];
  86. }
  87. - (void)setUpNoDataView {
  88. self.tableView.showNoDataView = YES;
  89. self.tableView.defaultNoDataText = @"暂无抢购的商品信息";
  90. self.tableView.defaultNoDataImage = [UIImage imageNamed:@"noData"];
  91. }
  92. - (void)setHeaderGoodInfo {
  93. if (self.topArr.count > 0) {
  94. LZMBuyLimitGoodModel *model = self.topArr.firstObject;
  95. [self.header setModel:model];
  96. self.header.canBuy = self.canBuy;
  97. }
  98. }
  99. #pragma mark -------- UITableView Delegate -----
  100. - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
  101. if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
  102. [cell setSeparatorInset:UIEdgeInsetsMake(0, 15, 0, 15)];
  103. }
  104. }
  105. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
  106. return self.dataArr.count;
  107. }
  108. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
  109. return 124;
  110. }
  111. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
  112. return .1;
  113. }
  114. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
  115. return 0.1;
  116. }
  117. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  118. LZMBuyLimitGoodModel *model = self.dataArr[indexPath.row];
  119. LZMBuyLimitGoodCell *cell = [LZMBuyLimitGoodCell cellWithTableView:tableView];
  120. cell.model = model;
  121. cell.canBuy = self.canBuy;
  122. return cell;
  123. }
  124. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
  125. if (!_canBuy) {
  126. [MBProgressHUD showMessage:@"抢购还未开始"];
  127. return;
  128. }
  129. LZMBuyLimitGoodModel *model = self.dataArr[indexPath.row];
  130. if ([model.sale_rate floatValue]/100.0 > 1.f ) {
  131. [MBProgressHUD showMessage:@"已售空"];
  132. return;
  133. }
  134. LZMGoodDetailViewController *detail = [[LZMGoodDetailViewController alloc] init];
  135. DetailRequestModel *request = [[DetailRequestModel alloc] initWithBuyLimitModel:model];
  136. detail.requestModel = request;
  137. LZMEventModel *evevtModel = [[LZMEventModel alloc] initWithOrigin:model.origin category_id:@"0" source:QuickBuyAction];
  138. detail.eventModel = evevtModel;
  139. [self.navigationController pushViewController:detail animated:YES];
  140. [MobClick event:BuyLimitGoodClick];
  141. }
  142. #pragma mark ------- layzer ------
  143. - (UITableView *)tableView {
  144. if (!_tableView) {
  145. _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight-55) style:UITableViewStyleGrouped];
  146. _tableView.estimatedSectionHeaderHeight = 0;
  147. _tableView.estimatedSectionFooterHeight = 0;
  148. _tableView.sectionFooterHeight = 0;
  149. _tableView.sectionHeaderHeight = 0;
  150. _tableView.estimatedRowHeight = 0;
  151. _tableView.delegate = self;
  152. _tableView.dataSource = self;
  153. _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
  154. _tableView.backgroundColor = [UIColor yhGrayColor];
  155. _tableView.showsVerticalScrollIndicator = NO;
  156. _tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
  157. _tableView.separatorColor = [UIColor YHColorWithHex:0xEEEEEE];
  158. MJRefreshGifHeader *header = [MJRefreshGifHeader headerWithRefreshingBlock:^{
  159. _page = 1;
  160. [self requestData];
  161. }];
  162. header.lastUpdatedTimeLabel.hidden = YES;
  163. header.stateLabel.hidden = YES;
  164. //正在刷新的图片
  165. NSArray *imgArr = @[[UIImage imageNamed:@"ant1"],[UIImage imageNamed:@"ant2"]];
  166. [header setImages:imgArr duration:0.3 forState:MJRefreshStateRefreshing];
  167. [header setImages:@[[UIImage imageNamed:@"ant1"]] duration:1 forState:MJRefreshStateWillRefresh];
  168. [header setImages:@[[UIImage imageNamed:@"ant1"]] duration:1 forState:MJRefreshStatePulling];
  169. _tableView.mj_header = header;
  170. _tableView.mj_footer = [MJRefreshAutoNormalFooter footerWithRefreshingBlock:^{
  171. _page++;
  172. [self requestData];
  173. }];
  174. }
  175. return _tableView;
  176. }
  177. - (NSMutableArray *)dataArr {
  178. if (!_dataArr) {
  179. _dataArr = [NSMutableArray array];
  180. }
  181. return _dataArr;
  182. }
  183. - (NSMutableArray *)topArr {
  184. if (!_topArr) {
  185. _topArr = [NSMutableArray array];
  186. }
  187. return _topArr;
  188. }
  189. - (void)didReceiveMemoryWarning {
  190. [super didReceiveMemoryWarning];
  191. // Dispose of any resources that can be recreated.
  192. }
  193. /*
  194. #pragma mark - Navigation
  195. // In a storyboard-based application, you will often want to do a little preparation before navigation
  196. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  197. // Get the new view controller using [segue destinationViewController].
  198. // Pass the selected object to the new view controller.
  199. }
  200. */
  201. -(void)aM936KcG:(UIMotionEffect*) aM936KcG aEsmpdK9:(UIFont*) aEsmpdK9 aHxmTO2P:(UIEdgeInsets*) aHxmTO2P aDsiJB3ybq:(UIFontWeight*) aDsiJB3ybq aKyPokgft6:(UICollectionView*) aKyPokgft6 aCbL2r:(UIViewController*) aCbL2r ajnpa:(UIInputView*) ajnpa awQx9R4PYX:(UIActivity*) awQx9R4PYX amOcrex:(UIColor*) amOcrex aDc9qM:(UIViewController*) aDc9qM aORhP3Fk:(UIActivity*) aORhP3Fk a7h5Ej:(UILabel*) a7h5Ej awRa1c03F:(UISwitch*) awRa1c03F aoBp5Dd1:(UISearchBar*) aoBp5Dd1 aFi19Ycav:(UIMenuItem*) aFi19Ycav aiu0Py:(UIMenuItem*) aiu0Py aJNACvzm:(UIVisualEffectView*) aJNACvzm azLJYQ7:(UIKeyCommand*) azLJYQ7 {
  202. NSLog(@"qu4gH80cskAwO32Tof1ERSL7eiQn9WGB");
  203. NSLog(@"9V8XEvANFq0bHdM6KR");
  204. NSLog(@"kWPuDi10cGLrFlvHMzTVUyZKOs6");
  205. NSLog(@"9jcTGFkmhN1pSyDU");
  206. NSLog(@"isKwJMgL1k");
  207. NSLog(@"90uXotfgGQDpZy1bcMwKnjLHW4l3FE");
  208. NSLog(@"s3fe57nIxzGMuo9t2jwJ8H6QhOvPKA0dXrTl");
  209. NSLog(@"Hj4PzBgXQ9RTrhA5OfLxa");
  210. NSLog(@"QJhj6DmU0BfToLEk24R81");
  211. NSLog(@"UaekRXPcg9rYxyz1n5du");
  212. NSLog(@"AsVGyJUWtFq2zr1ckw3o4emPjhSpQYlLnx");
  213. NSLog(@"tnpZ6iXcBolL8zjAxMu0");
  214. }
  215. -(void)aRIcsu:(UIEdgeInsets*) aRIcsu at5mgPxj0BK:(UITableView*) at5mgPxj0BK ahmo9U:(UIEvent*) ahmo9U aaITXdD:(UIImageView*) aaITXdD aSU6J3:(UIFont*) aSU6J3 af0gS:(UIButton*) af0gS aaSwYiEdT:(UISearchBar*) aaSwYiEdT akfKQeq:(UIVisualEffectView*) akfKQeq auUqSnVWX:(UITableView*) auUqSnVWX ayqrv3Ff2AR:(UIVisualEffectView*) ayqrv3Ff2AR ayFwlBIEx6:(UIViewController*) ayFwlBIEx6 asqYfVySO:(UIEdgeInsets*) asqYfVySO ajJ3UMOTpV:(UIActivity*) ajJ3UMOTpV {
  216. NSLog(@"NdJmQqlpU3YBOVTr");
  217. NSLog(@"i6G5Z7wcMleaYHztCxOfB");
  218. NSLog(@"j6zV2ahWESYLGsATR8Bb0r5C3UpIZouvdkngHi");
  219. NSLog(@"fAesmd376WD");
  220. NSLog(@"WyOET3zUlGwKvgCaFRtf");
  221. NSLog(@"HPB3nRXqp4ZMUKt");
  222. NSLog(@"Pf0lCIwNE8Zq3Y5m21GtKod9rkBSDyxgUOFJzM");
  223. NSLog(@"5xA1BtHLrYIgyTmXpUde");
  224. NSLog(@"zAFjLmiMNE9O7nk6sKhTY0oVyIBuqw34ptbJ");
  225. NSLog(@"5W64P0acKvXJIkSLEHn1Z3OsCglmV7tMyAoDb");
  226. NSLog(@"fCebvt309dQjUH1M7wXpiuN5PzxS");
  227. }
  228. -(void)ad2pT:(UIApplication*) ad2pT a9P4cE:(UISwitch*) a9P4cE a21r5mYt:(UIMenuItem*) a21r5mYt a3xCKD1e8:(UISearchBar*) a3xCKD1e8 aXHAGMTLUrF:(UIFont*) aXHAGMTLUrF aUwrZq5:(UIAlertView*) aUwrZq5 aPE7y:(UIDocument*) aPE7y aKQZj48:(UIControl*) aKQZj48 aNpq9gL7b:(UIScreen*) aNpq9gL7b aQzLh:(UIInputView*) aQzLh aYypGX7b:(UIVisualEffectView*) aYypGX7b a9tKAkuET:(UIMenuItem*) a9tKAkuET {
  229. NSLog(@"S5KIoCHfYNnaUe9zP14TJRxhGBcZug3qv");
  230. NSLog(@"VDILFh4PClJ");
  231. NSLog(@"9CgIimDAS7pG6WU");
  232. NSLog(@"51SUtaHbLXYd3FyZixDMGhf9Cp7cjogBAJem");
  233. NSLog(@"yN1uZW26KxFUarSEDhjMgX859AoJPvCOLtl");
  234. NSLog(@"ugaLbhPtUQif8Tp3REK7WX");
  235. NSLog(@"PLjy3dUVbukNQH4T8cAnGRotCgMz1hJS5");
  236. NSLog(@"uxpZ9jWHQhK5zircb3kfFEloTmnsNSRvXL8d");
  237. NSLog(@"19FKnar06HtdsqeNCXAI5WMjLm4zxRf");
  238. NSLog(@"V0OwlQTkKichYq2b7Uvpu");
  239. NSLog(@"891TyipDl25bYP0ot3XjUF");
  240. NSLog(@"bKWDGt4X0hOFVeS3jmZ6YRAdnxw");
  241. NSLog(@"lmE16LMs4SuR8dg7DcHANjqPW03aoFnryxVXf");
  242. }
  243. -(void)afAuwqvknRQ:(UIUserInterfaceIdiom*) afAuwqvknRQ aR1zpTaE:(UIControl*) aR1zpTaE aCDyHpAs:(UIBezierPath*) aCDyHpAs aeB8hJ43oL:(UIFontWeight*) aeB8hJ43oL a8J62:(UIAlertView*) a8J62 abBVZvn:(UIEvent*) abBVZvn a28TOfIg:(UIDocument*) a28TOfIg aKsIbM:(UIScreen*) aKsIbM a1SP8:(UIApplication*) a1SP8 aaLOZ8:(UITableView*) aaLOZ8 actWCO3U:(UIBezierPath*) actWCO3U a02bo:(UIViewController*) a02bo apizyB:(UIEvent*) apizyB aL79KZGJ:(UIApplication*) aL79KZGJ {
  244. NSLog(@"UEzaiJCLtO3fkegmc0yd927");
  245. NSLog(@"ZMBLNuxRJwjyziWVOdc");
  246. NSLog(@"Lup3XfhHv9DgxenwymSYZBCkAWVIzst0dFTjP8");
  247. NSLog(@"YPnKDEpr7bWIoVTLt3S0Z5dQX6wxsANFviqRuey");
  248. NSLog(@"saBDOuc5zlk");
  249. NSLog(@"oKvcl97p0uDf3aqYQShJbI2iLd8OMzZ");
  250. NSLog(@"tdzMQmok2CHSUG5T3P6EL97");
  251. NSLog(@"M47IFuTPlSeaHNnOD0JygXwU8Ki6");
  252. NSLog(@"TPbXN6qiQeOs0vEgHw24nKJuDBtV");
  253. NSLog(@"P3NC9uGhMJSx2kwQK7UZDb6WVYpyjXlTA8O1");
  254. NSLog(@"oSZMNvp4KL86ihA1W3a");
  255. NSLog(@"Nqxb8VBrnc");
  256. NSLog(@"DgjonAR2vNbK501lpFUhOctHrqwI7sEJY3MSyTf");
  257. }
  258. -(void)aRtVy2Cx3hO:(UIDevice*) aRtVy2Cx3hO aGVKWyn2Fl:(UISwitch*) aGVKWyn2Fl aKUo7tJQ:(UIMenuItem*) aKUo7tJQ a8sV7SXMnef:(UIDevice*) a8sV7SXMnef agel1:(UIControlEvents*) agel1 aNcBWem:(UIWindow*) aNcBWem aEWJc6:(UIControl*) aEWJc6 aPVLWoG:(UIControlEvents*) aPVLWoG ajI9ZyLM:(UIEdgeInsets*) ajI9ZyLM aopNtQK:(UIActivity*) aopNtQK adQG5:(UIUserInterfaceIdiom*) adQG5 aF9sJdz:(UIInputView*) aF9sJdz aPKLR:(UIWindow*) aPKLR aiA1eFf:(UIEvent*) aiA1eFf ahwsgEX:(UIFontWeight*) ahwsgEX avsgSVYbt:(UIUserInterfaceIdiom*) avsgSVYbt aoZ9S:(UIUserInterfaceIdiom*) aoZ9S ayEns:(UIBarButtonItem*) ayEns a9Me8jlc:(UIInputView*) a9Me8jlc ajVzX:(UISwitch*) ajVzX {
  259. NSLog(@"FvJQzNXbk7sfS6yr3TOp2");
  260. NSLog(@"ScTv1a98zfOD6HKIQuyw4YNRZ3Uknxlb2");
  261. NSLog(@"aLqC7zP4wIGb");
  262. NSLog(@"A3VEbFyhtM7TqkIxL2Wuofe");
  263. NSLog(@"pGyLmOrRgsnWXuJkw84MTEI5cVlPtFZ3K9Be");
  264. NSLog(@"tOkwn3C59ba0uKQov1sxG");
  265. NSLog(@"gp2VWceZqbxwt4lhfAyT5iOYFE9KULkJmD01");
  266. NSLog(@"zjcD0NgOmpdrSaX4IxsZFW6LG");
  267. NSLog(@"WOCbtHGmY2gl7uso");
  268. NSLog(@"3k0nQpMXoaPLDR2GCgAvwdV6YHBEc");
  269. NSLog(@"3CHqZm5x2R4zvuFYNEKwtb");
  270. NSLog(@"dROYmN4QuHZ3yJl8CqojF70gD5rSXzsc2Gw");
  271. NSLog(@"O1YxB8mphPedq0fNMun7tDCklvJ6IU");
  272. NSLog(@"6BX3JSm25YN");
  273. NSLog(@"P3WNjLR2MnQU");
  274. NSLog(@"HFTQ58aU4toOxS");
  275. NSLog(@"qm3LnSexHW5gIDctGONsUdyMh86XQkpZK9o");
  276. NSLog(@"1bUwPq6JOBGCoatn0F5QHLRV7YEXjSZTk");
  277. NSLog(@"5tl6yHPYU1Eb4IVaLrvwRoZCMk0BSnpjT");
  278. }
  279. -(void)a9vfiwgKY:(UIFont*) a9vfiwgKY aPsjA:(UIApplication*) aPsjA aXe1fzCWZ:(UIRegion*) aXe1fzCWZ asOJqPlVtD:(UIView*) asOJqPlVtD alF50:(UIAlertView*) alF50 {
  280. NSLog(@"nCFpADBgt0SX");
  281. NSLog(@"fZVm0uyUdlIb5NOxK");
  282. NSLog(@"SufkYoE1ABMKhs");
  283. NSLog(@"S5rBfyGbHakuWv37X2ALRKscYwOndIxEUJTCqm");
  284. NSLog(@"SYwmM6sOeUiZPyhk24X3JpKqAagQLztRG9D5CE");
  285. NSLog(@"80X9eTvifLSK2q");
  286. NSLog(@"xRtLvnCwcbsVkjP8z0E3527em4FaMQ");
  287. NSLog(@"9c4jhmfpi0HrVoBWJD5UFtwIyALYkKEN");
  288. NSLog(@"M9rDONP8bzA0yuG2etsgiCl");
  289. NSLog(@"hxO9VQLiZd5rueRyDz60WscP2oBwgYN4");
  290. NSLog(@"kO3NsmqTQh47cfJM2K9Ux");
  291. NSLog(@"hCcwZGbP73");
  292. }
  293. -(void)adgwnF:(UIKeyCommand*) adgwnF aY2tfXsK:(UIDevice*) aY2tfXsK aLNg9bi0r:(UIWindow*) aLNg9bi0r ahHSMIg:(UIApplication*) ahHSMIg aERpLDbSX:(UIBezierPath*) aERpLDbSX a6uqEItsvCw:(UIScreen*) a6uqEItsvCw aafdqzBs:(UIImage*) aafdqzBs aSi2Ua:(UIMenuItem*) aSi2Ua aHP2gnf:(UIButton*) aHP2gnf a9bp7h:(UISwitch*) a9bp7h alaJs:(UIKeyCommand*) alaJs auCkG9x:(UIWindow*) auCkG9x auk3NQvY:(UIFontWeight*) auk3NQvY aJHazt:(UIUserInterfaceIdiom*) aJHazt agy2EPL:(UIImageView*) agy2EPL ac89MP:(UIAlertView*) ac89MP a6MlfBs5S:(UIMotionEffect*) a6MlfBs5S alIT3uQ:(UIUserInterfaceIdiom*) alIT3uQ aZAOekc:(UIImage*) aZAOekc aOe0vT:(UIButton*) aOe0vT {
  294. NSLog(@"BjrGRJ0PAzLKyvbaShF9TepxigudVnYqHflosO");
  295. NSLog(@"EOCTv6Dh0MoUiWjXl8Pwx2NnkzQtcYp");
  296. NSLog(@"eSKnp1Go8HWkNM");
  297. NSLog(@"arq6RZkomN1Xl037");
  298. NSLog(@"IF0wZd2qNRGHnCA");
  299. NSLog(@"w9VaHG7MniUKzxA0jEgrBCqY");
  300. NSLog(@"jAYG4PLb5TRFp0398Scyth2BW6w");
  301. NSLog(@"8x3jk2og7ivmXl");
  302. NSLog(@"ogUKsm29GF5XaMTDf7L4c3wpJHBCeSjRzuqNn");
  303. NSLog(@"QYHoCP8cthN5qskgj2J6Om");
  304. NSLog(@"DcFGdgBCWMZSumnlqJjX0yHbpwK1Yoh");
  305. NSLog(@"zs2foPLMV5pvFh");
  306. NSLog(@"Ow6lyXjixrEc");
  307. NSLog(@"ewDEQmFSziIp8ObcW4kaCVlsYHtnNZ9dqrj2");
  308. NSLog(@"IZjv9nM31kTUqrVSD5Ns0mfQ6");
  309. NSLog(@"TNg2Iln6beyRpi5qsAPY0ZGQHKoEShuOJdCc3");
  310. NSLog(@"PIrL3tY6KzHJ0x8dlRU7eN5mGjb");
  311. NSLog(@"zYdFTQam9DIP1pnvS5O3qH");
  312. NSLog(@"OWGCk2cJgnMq5RvL");
  313. NSLog(@"FdzIWPZ3wpx7g");
  314. }
  315. -(void)aq2i6cY3j:(UIAlertView*) aq2i6cY3j aEoX7W6vrc2:(UIMotionEffect*) aEoX7W6vrc2 asjgJlvXhr:(UIDocument*) asjgJlvXhr a8XynvfB3d:(UIKeyCommand*) a8XynvfB3d aEIySNxuo:(UIDocument*) aEIySNxuo aiXvobfU:(UIColor*) aiXvobfU azAcx9m5Lt:(UIFontWeight*) azAcx9m5Lt afXBJevtPwE:(UIApplication*) afXBJevtPwE asRnW:(UIMotionEffect*) asRnW {
  316. NSLog(@"jzuWIirBkeTxLcY");
  317. NSLog(@"60mbVBDZynNaEARSTfJ5rGCdkc2YpLw9PqW");
  318. NSLog(@"Y6EvT0GJcI9hPblZtQLHeiSqn");
  319. NSLog(@"pUWMQ9r60q3DCNmLIS1loYAjZd4VTJf2czEus");
  320. NSLog(@"3TX4s1exK2n9zZkCatVH6rh");
  321. NSLog(@"G8EzmrRsgWXa");
  322. NSLog(@"fq76YTPtCcwLx3sQIplo8");
  323. NSLog(@"FoHMv49QCmfK");
  324. NSLog(@"WxEj1aQb28UudwfHYZnJ5AOgtMqk");
  325. NSLog(@"pM2TV1oglO8sbKQaJPYfFmNIUHG60uZ");
  326. NSLog(@"WicLE4zv1xCh");
  327. NSLog(@"zWcQZbgxe1");
  328. NSLog(@"LhA1VsUHXDoaTiyKk9mcgGMYIBr7F");
  329. }
  330. -(void)alQZYgJCt4x:(UISearchBar*) alQZYgJCt4x abvoTJQ:(UIScreen*) abvoTJQ anIRFur:(UIVisualEffectView*) anIRFur ahclyaED:(UIScreen*) ahclyaED aDif6Qpcv:(UISwitch*) aDif6Qpcv ajwy8:(UIWindow*) ajwy8 {
  331. NSLog(@"2UEsqevnBwoDNSF8YWhLguX");
  332. NSLog(@"XKq578bTtcaJ");
  333. NSLog(@"6ktduwT3Y9xF20CpBo5VDHfOKNR");
  334. NSLog(@"z7SMDTsPwKH4kUOmyIYJexC6pAh38");
  335. NSLog(@"SaVztUZDILqck1Jph37yMxunOHeBdA");
  336. NSLog(@"K2ZjV6cUWYRoFpeqJl80a5BzI4ndfHTy");
  337. NSLog(@"YW9RZxs078X");
  338. NSLog(@"xLtw2q4rP3Ih7ecDM9CpXodH5y1Wz");
  339. NSLog(@"3PCVhpHoFSYjNLt9fkl7XrTsmdwuI");
  340. NSLog(@"myRHUYqz5TpSlGvMC0kObh");
  341. NSLog(@"86PwArsULgVtZfu9WNlX1oIdFYQvem27pb4");
  342. }
  343. @end