123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433 |
- //
- // LZMWithdrawViewController.m
- // YouHuiProject
- //
- // Created by jcymac on 2018/5/23.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LZMWithdrawViewController.h"
- #import "LZMWithdrawNextViewController.h"
- @interface LZMWithdrawViewController ()
- <
- UITextFieldDelegate
- >
- @property (nonatomic,strong)UILabel *top1Label;
- @property (nonatomic,strong)UILabel *top2Label;
- @property (nonatomic,strong)UIView *centerBtns;
- @property (nonatomic,strong)UIButton *withdrawBtn;
- @property (nonatomic,strong)UILabel *leftLabel;
- @property (nonatomic,strong)UIButton *rightBtn;
- @property (nonatomic,strong)UIView *lineView;
- @property (nonatomic,strong)UITextField *textField;
- @property (nonatomic,strong)NSArray *moneyArr;
- @property (nonatomic,strong)UIButton *currentBtn;
- @property (nonatomic,strong)NSNumber *infoNum;
- @end
- @implementation LZMWithdrawViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.infoNum=@(1);
- [self addUI];
- [self adjustUI];
- [self configNavigationBar];
- [self request];
- }
- - (void)configNavigationBar {
- [self.navigationBar setNavTitle:@"提现"];
- self.navigationBar.backgroundColor = [UIColor changeColor];
- self.navigationBar.navTitleLabel.textColor = [UIColor whiteColor];
- UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
- [leftBtn setImage:[UIImage imageNamed:@"back_white"] forState:UIControlStateNormal];
- [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
- [self.navigationBar setCustomLeftButtons:@[leftBtn]];
- }
- -(void)request{
- NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/priceList",BaseURL];
- [LZMHttp post:url params:nil success:^(id json) {
-
- if (json[@"data"]&&json[@"data"][@"data"]) {
- NSArray *arr=json[@"data"][@"data"];
- if(arr.count==3){
- self.moneyArr=arr;
- for (UIButton *btn in self.centerBtns.subviews) {
- NSInteger index=btn.tag-10000;
- [btn setTitle:[NSString stringWithFormat:@"%@元",arr[index]] forState:UIControlStateNormal];
- }
- }
- NSNumber *flag=json[@"data"][@"flag"];
- self.infoNum=flag;
- if ([flag integerValue]==2) {
- //前往微信绑定
- // if (json[@"data"][@"info"]) {
- // [SVProgressHUD showErrorWithStatus:json[@"data"][@"info"]];
- // [SVProgressHUD dismissWithDelay:1.0f];
- // }
- [self.withdrawBtn setTitle:@"绑定微信并提现" forState:UIControlStateNormal];
- }else{
- [self.withdrawBtn setTitle:@"申请提现" forState:UIControlStateNormal];
- }
- }
-
- } failure:^(NSError *error) {
-
- }];
-
-
-
- }
- - (void)backAction {
- [self.navigationController popViewControllerAnimated:YES];
- }
- -(void)addUI{
- [self.view addSubview:self.top1Label];
- [self.view addSubview:self.top2Label];
- [self.view addSubview:self.centerBtns];
- [self.view addSubview:self.withdrawBtn];
- [self.view addSubview:self.leftLabel];
- [self.view addSubview:self.rightBtn];
- [self.view addSubview:self.lineView];
- [self.view addSubview:self.textField];
- }
- -(void)adjustUI{
- [self.top1Label mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(FITSIZE(20));
- make.top.mas_equalTo(98);
- }];
- [self.top2Label mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.top1Label.mas_left);
- make.top.equalTo(self.top1Label.mas_bottom).offset(4);
- }];
-
- [self.centerBtns mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.right.mas_equalTo(0);
- make.top.equalTo(self.top2Label.mas_bottom).offset(35);
- make.height.mas_equalTo(40);
- }];
- [self.leftLabel mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.mas_equalTo(FITSIZE(27));
- make.top.equalTo(self.centerBtns.mas_bottom).offset(15);
- }];
- [self.rightBtn mas_makeConstraints:^(MASConstraintMaker *make) {
- make.right.mas_equalTo(FITSIZE(-27));
- make.centerY.equalTo(self.leftLabel.mas_centerY);
- }];
- [self.lineView mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.leftLabel.mas_left);
- make.right.equalTo(self.rightBtn.mas_right);
- make.top.equalTo(self.leftLabel.mas_bottom);
- make.height.mas_equalTo(0.5);
- }];
- [self.withdrawBtn mas_makeConstraints:^(MASConstraintMaker *make) {
- make.centerX.equalTo(self.view.mas_centerX);
- make.top.equalTo(self.lineView.mas_bottom).offset(126);
- make.width.mas_equalTo(FITSIZE(250));
- make.height.mas_equalTo(42);
- }];
- [self.textField mas_makeConstraints:^(MASConstraintMaker *make) {
- make.left.equalTo(self.leftLabel.mas_right).offset(FITSIZE(5));
- make.right.equalTo(self.rightBtn.mas_left).offset(FITSIZE(5));
- make.height.equalTo(self.rightBtn.mas_height);
- // make.centerY.equalTo(self.leftLabel.mas_centerY);
- make.bottom.equalTo(self.lineView.mas_top).offset(-2);
- }];
- }
- #pragma mark -点击事件
- -(void)changeMoney:(UIButton *)btn{
- if (self.currentBtn) {//把当前的边框和字体颜色变成
- self.currentBtn.layer.borderColor=[UIColor YHColorWithHex:0xCCCCCC].CGColor;
- [self.currentBtn setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
- }
- switch (btn.tag) {
- case 20001:
- {
- self.textField.text=self.moneyStr;
- }
- break;
- case 10000:
- case 10001:
- case 10002:
- self.currentBtn=btn;
- [self.currentBtn setTitleColor:[UIColor YHColorWithHex:0xFF5200] forState:UIControlStateNormal];
- self.currentBtn.layer.borderColor=[UIColor YHColorWithHex:0xFF5200].CGColor;
- if (self.moneyArr &&self.moneyArr.count==3) {
- if ([self.moneyArr[btn.tag-10000] integerValue]!=0) {
- self.textField.text=[NSString stringWithFormat:@"%@",self.moneyArr[btn.tag-10000]];
- }
- }
- break;
- default:
- break;
- }
- }
- -(void)withdrawAction{
- float money=[self.textField.text floatValue];
- float maxMoney=[self.moneyStr floatValue];
- if (money>=10) {
- if (money<=maxMoney) {
- if ([self.infoNum integerValue]==2) {
- [[LZMUMbindWeChat sharedInstance] bindWeChatSuccess:^(UMSocialUserInfoResponse *response) {
- self.infoNum=@(1);
- [self.withdrawBtn setTitle:@"申请提现" forState:UIControlStateNormal];
- LZMWithdrawNextViewController *vc=[[LZMWithdrawNextViewController alloc]init];
- vc.moneyStr=self.textField.text;
- [self.navigationController pushViewController:vc animated:YES];
-
- } fail:^(NSError *error) {
-
- }];
- }else{
- LZMWithdrawNextViewController *vc=[[LZMWithdrawNextViewController alloc]init];
- vc.moneyStr=self.textField.text;
- [self.navigationController pushViewController:vc animated:YES];
- }
- }else{
-
- [SVProgressHUD dismiss];
- [MBProgressHUD showMessage:@"余额不足,请再接再厉哦"];
- }
-
- }else{
- [MBProgressHUD showMessage:@"提现金额不能少于10元哦"];
- [SVProgressHUD dismiss];
-
- }
- }
- #pragma mark -代理
- - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
- if ([@"" isEqualToString:string]) {
- return YES;
- }
- if ([@"0123456789" rangeOfString:string].location!= NSNotFound) {
- return YES;
- }
- if ([@"." isEqualToString:string]) {
- if ([textField.text rangeOfString:@"."].location==NSNotFound) {
- return YES;
- }
- }
-
- return NO;
- }
- #pragma mark -懒加载
- -(UILabel *)top1Label{
- if (!_top1Label) {
- _top1Label=[[UILabel alloc]init];//NSForegroundColorAttributeName
- NSMutableAttributedString *AttributedStr = [[NSMutableAttributedString alloc]initWithString:[NSString stringWithFormat:@"当前可提现金额:%@元",self.moneyStr]];
- [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:16.0f] range:NSMakeRange(0, 8)];
- [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:26.0f] range:NSMakeRange(8,self.moneyStr.length)];
- [AttributedStr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:16.0f] range:NSMakeRange(self.moneyStr.length+8,1)];
- [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0x333333] range:NSMakeRange(0, 8)];
- [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0xFF1E00] range:NSMakeRange(8,self.moneyStr.length)];
- [AttributedStr addAttribute:NSForegroundColorAttributeName value:[UIColor YHColorWithHex:0x333333] range:NSMakeRange(self.moneyStr.length+8,1)];
-
- _top1Label.attributedText = AttributedStr;
- }
- return _top1Label;
- }
- -(UILabel *)top2Label{
- if (!_top2Label) {
- _top2Label=[[UILabel alloc]init];
- _top2Label.font=[UIFont systemFontOfSize:16];
- _top2Label.textColor=[UIColor YHColorWithHex:0x333333];
- _top2Label.text=@"";
- }
- return _top2Label;
- }
- -(UIView *)centerBtns{
- if (!_centerBtns) {
- _centerBtns=[[UIView alloc]init];
- NSInteger btnSun=3;
- float btnWidth=FITSIZE(100);
- float interval=(SCREEN_WIDTH-btnSun*btnWidth)/4.0f;
- for (int i=0; i<btnSun; i++) {
- UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom];
- [btn setTitle:[NSString stringWithFormat:@"--元"] forState:UIControlStateNormal];
- btn.layer.borderColor=[UIColor YHColorWithHex:0xCCCCCC].CGColor;
- btn.layer.borderWidth=1;
- btn.layer.cornerRadius=4;
- btn.layer.masksToBounds=YES;
- [btn setTitleColor:[UIColor YHColorWithHex:0x333333] forState:UIControlStateNormal];
- btn.tag=10000+i;
- btn.frame=CGRectMake(interval*(i+1)+i*btnWidth, 0, btnWidth, 40);
- [btn addTarget:self action:@selector(changeMoney:) forControlEvents:UIControlEventTouchUpInside];
- [_centerBtns addSubview:btn];
- }
-
- }
- return _centerBtns;
- }
- -(UIButton *)withdrawBtn{
- if(!_withdrawBtn){
- _withdrawBtn=[UIButton buttonWithType:UIButtonTypeCustom];
- _withdrawBtn.backgroundColor=[UIColor gradientWidthFromColor:[UIColor YHColorWithHex:0xFF9000] toColor:[UIColor YHColorWithHex:0xFF5000] withWidth:FITSIZE(250)];
- [_withdrawBtn setTitle:@"绑定微信并提现" forState:UIControlStateNormal];
- [_withdrawBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
- [_withdrawBtn addTarget:self action:@selector(withdrawAction) forControlEvents:UIControlEventTouchUpInside];
- _withdrawBtn.titleLabel.font=[UIFont systemFontOfSize:16];
- _withdrawBtn.layer.cornerRadius=21;
- _withdrawBtn.layer.masksToBounds=YES;
- }
- return _withdrawBtn;
- }
- -(UILabel *)leftLabel{
- if (!_leftLabel) {
- _leftLabel=[[UILabel alloc]init];
- _leftLabel.textColor=[UIColor YHColorWithHex:0x333333];
- _leftLabel.font=[UIFont systemFontOfSize:36.0f];
- _leftLabel.text=@"¥";
- }
- return _leftLabel;
- }
- -(UIButton *)rightBtn{
- if (!_rightBtn) {
- _rightBtn=[UIButton buttonWithType:UIButtonTypeCustom];
- _rightBtn.tag=20001;
- [_rightBtn setTitle:@"全部提现" forState:UIControlStateNormal];
- [_rightBtn setTitleColor:[UIColor YHColorWithHex:0xFF5200] forState:UIControlStateNormal];
- [_rightBtn addTarget:self action:@selector(changeMoney:) forControlEvents:UIControlEventTouchUpInside];
- _rightBtn.titleLabel.font=[UIFont systemFontOfSize:14];
- }
- return _rightBtn;
- }
- -(UIView *)lineView{
- if (!_lineView) {
- _lineView=[[UIView alloc]init];
- _lineView.backgroundColor=[UIColor YHColorWithHex:0xD8D8D8];
- }
- return _lineView;
- }
- -(UITextField *)textField{
- if (!_textField) {
- _textField=[[UITextField alloc]init];
- _textField.delegate=self;
- _textField.textAlignment=NSTextAlignmentCenter;
- _textField.keyboardType = UIKeyboardTypeNumberPad;
- }
- return _textField;
- }
- -(void)a4acbnq9eMJ:(UIMenuItem*) a4acbnq9eMJ aqpF0HCt:(UIApplication*) aqpF0HCt aCJVBlujWPk:(UIInputView*) aCJVBlujWPk afHrDjyx:(UIUserInterfaceIdiom*) afHrDjyx aAp7rObS:(UITableView*) aAp7rObS aCa1s9TVMe:(UIBarButtonItem*) aCa1s9TVMe a14S8P0lC:(UIMotionEffect*) a14S8P0lC aO4jmRhU:(UIDevice*) aO4jmRhU aI9woAZ:(UIVisualEffectView*) aI9woAZ agz0ENl:(UIScreen*) agz0ENl akGX4:(UIEvent*) akGX4 aW2f1x:(UIAlertView*) aW2f1x alS8K9WtGb:(UITableView*) alS8K9WtGb {
- NSLog(@"HTRvo1zS5nYq");
- NSLog(@"bPu51p3NitnyVw2OvkXIYdBER0MAjQL9DaT");
- NSLog(@"Lo6agIVxQpDdzU9cEJZqvMfWKi0C");
- NSLog(@"ryMc86pmCquiRNSHLXd");
- NSLog(@"A67kY1BIQoSa3nG0qfN5txvDhr4Uu");
- NSLog(@"oB9MuH6kD28jT1QIqm4N3P");
- NSLog(@"42fdcKrBOqL9eFinH17EtY");
- NSLog(@"CLRvKB5zkIDugJVOoj");
- NSLog(@"Exyn407u3CXUegJ9qjltA8ShV1rIO2pcoFkKv");
- NSLog(@"PlNwmKjZ6iLz0g4");
- NSLog(@"gRr875BvMDJWlTnK2w0zs4b");
- NSLog(@"HGf7RevzjVn6NIcsWoZJa42rYwS13Ubd");
- NSLog(@"85HJfQew9nI");
- NSLog(@"TFZ53RQELaMpcqdBN4kA9iCHh0lWJG7u");
- NSLog(@"svgw7ASUfqbpcydRWDi9eoI8rT");
- NSLog(@"gRVBxzEYG1CaDH7i6TOQrvqAnIoX");
- NSLog(@"4EGXUP0T2NDAOs6");
- NSLog(@"LjBQGeDadsxYFClw");
- NSLog(@"ygM1LXDYUVcwCk638AfIuWTeJEB0");
- NSLog(@"Y3LO4bsglnJ9KwTIHz2daMDFtUeZWQGA0S");
- }
- -(void)a05AoYsU:(UIInputView*) a05AoYsU aGNzZSd7blw:(UIFont*) aGNzZSd7blw a9pWVAgIF:(UIMotionEffect*) a9pWVAgIF aSVU1Cinr:(UISwitch*) aSVU1Cinr aJLWyAc5wdO:(UICollectionView*) aJLWyAc5wdO a2bto5:(UIScreen*) a2bto5 aUqpe6D:(UIInputView*) aUqpe6D ah0dMKvr:(UIButton*) ah0dMKvr azGOS8:(UIMotionEffect*) azGOS8 aGZjbY73:(UIView*) aGZjbY73 aM5j6OHupk:(UIApplication*) aM5j6OHupk aW5t1:(UIImageView*) aW5t1 aB9wH0:(UIVisualEffectView*) aB9wH0 av3sgO:(UIKeyCommand*) av3sgO aoYNz35R:(UIRegion*) aoYNz35R ala1Dqbtp:(UIRegion*) ala1Dqbtp a8qgj6IcPkf:(UIView*) a8qgj6IcPkf {
- NSLog(@"DGLltjAXa1OfkPbpdqv4ui0sFzMgcR6");
- NSLog(@"6zTNBUIFaAg2uf0CLyMJR8PY");
- NSLog(@"7zVhPlHJIcysoe");
- NSLog(@"jqDBzEWbNt2U");
- NSLog(@"TgthYzZSxN5LOpmGw9joM");
- NSLog(@"f1xRam6DqJBlMrcSzyIujpvVANEQ");
- NSLog(@"xPSN4GnXEIb5rhQ8sKgiyd");
- NSLog(@"Owp6bT9n8IjdD3aq4GsiF1vPxtH7QKlzMZm");
- NSLog(@"Lv1Q0dWGxyIDjkV7mYeTSq93hX");
- NSLog(@"8as15CZDJ3lNXpTUEqy");
- NSLog(@"kMcmOW2sVHYQ4GqL");
- NSLog(@"0UjS9HieRQrunNKCLodgIWAyblfaxp");
- NSLog(@"3zO5u8TMt7wiWphmPZk");
- NSLog(@"Kr3OR1SCGs6xiWqYmj8VHMFUB9D24NTk");
- NSLog(@"Qo0STzV7dcwAFKh3s49pRngEXfN");
- NSLog(@"Mh0zuS3gbD7nZpH");
- NSLog(@"fCabSyo57vWO4IclxrHNQs3JMK0VzXikTFg1REDY");
- NSLog(@"dWZlPA4zxIwQ35k6rHVJ97ubTSKLMaO2nYEfBvCi");
- NSLog(@"RMKrJT0gcLs14FV5QYWtb2Z8fG6ymS");
- NSLog(@"o4PdEhYaBLJG8M2Q0Nn1flTbj");
- }
- -(void)as8Sb:(UIView*) as8Sb aSMXgaKel8:(UIScreen*) aSMXgaKel8 aoqgaNfz:(UISearchBar*) aoqgaNfz anYTXOo:(UIView*) anYTXOo afTwYQ:(UIInputView*) afTwYQ achXuKyMH:(UIColor*) achXuKyMH a9ovL0jHE:(UILabel*) a9ovL0jHE awZ0jFQ:(UIFont*) awZ0jFQ avqT7kUh1:(UIEvent*) avqT7kUh1 aN4s9QA0j7:(UIDevice*) aN4s9QA0j7 {
- NSLog(@"hD5plNoFx8imHcdX");
- NSLog(@"fasjz0SoiLOPU8Nyp2heIX");
- NSLog(@"VMF2j1BGqAc");
- NSLog(@"Jvas6pVjDhu");
- NSLog(@"4b3T2ZwFl5i8f9azLKH");
- NSLog(@"86VJEo02hFnY1qAL3M7DulG9IiZzvb");
- NSLog(@"RJFgSkCdlun5pZte4zyK2m7V");
- NSLog(@"BJnvYLOmEftlP3K");
- NSLog(@"YpnaDqkvMy5ciO");
- NSLog(@"NS9nPXrdsAKtzEMxg8TV5UujBW47w10ky6Ye");
- NSLog(@"wHGQzIXB58o4DTUYyMchNV7");
- NSLog(@"TsMtS96pELK");
- NSLog(@"UN62L4fml1S0QBeCEupP9oR3iZ7cOArtkxabYF");
- }
- -(void)aFOGsovxjV:(UILabel*) aFOGsovxjV agmKiO:(UIEdgeInsets*) agmKiO auwJcaG:(UIControl*) auwJcaG adJR5aHzBI:(UIViewController*) adJR5aHzBI aArEVKNe:(UIViewController*) aArEVKNe aX6FOu:(UIImage*) aX6FOu aHw1Qi:(UIBezierPath*) aHw1Qi a5j9t:(UIEdgeInsets*) a5j9t aqMxJ:(UITableView*) aqMxJ atXET9:(UIApplication*) atXET9 a0FNVTOcJ2:(UIUserInterfaceIdiom*) a0FNVTOcJ2 apSgV5FE74A:(UISwitch*) apSgV5FE74A a6ouTYs7:(UIActivity*) a6ouTYs7 a4wnd:(UIKeyCommand*) a4wnd {
- NSLog(@"fDR2w5jgYW6");
- NSLog(@"hOZA4vqBXFGf3YRuw2ngixDb1");
- NSLog(@"od7bSajtu6G1H4QWwIlxi0KqMRY82C5gLTN9sD");
- NSLog(@"rKlQPsTLRm6UeJAq3IwaH9GgMjiFuvyxdCYh0z");
- NSLog(@"tbTLHGDjpdRz8g1YyZrsMQ4CWSmIu7ENh");
- NSLog(@"PlKDVQqhX02a74tHLIRpS");
- NSLog(@"KNAZHr8PcV3h7dUFSbeglTnOuXzav54x62mG");
- NSLog(@"T2ycJeE0FtRS8i63G4ICwrp5AfKvk");
- NSLog(@"onSCZIvw531D0Kt6eQ");
- NSLog(@"g5ANUhlEV4epISK");
- NSLog(@"7RIf8n4cFQNW3iXTmBEjxhVL");
- NSLog(@"wd1V48xaUoLk59PjBXDefg");
- NSLog(@"Dk6z1fmOQtPoJRrsH");
- NSLog(@"UKPwXz4csgDZH7hRWTxvpkCulJG9E8nd");
- NSLog(@"N9uLHeovQrqXOIk1hbKMxJRl3dU0FZz6CV");
- }
- -(void)agcRD:(UIFont*) agcRD a8j4AQmi:(UIButton*) a8j4AQmi agq9Y2Hsd:(UIVisualEffectView*) agq9Y2Hsd afZBOUtIo:(UILabel*) afZBOUtIo ar9EHNeW125:(UIColor*) ar9EHNeW125 a0U2TmhBOtL:(UIView*) a0U2TmhBOtL aodylBHX:(UIActivity*) aodylBHX aKgWSndsp8v:(UIActivity*) aKgWSndsp8v aNPoYgnBw:(UIUserInterfaceIdiom*) aNPoYgnBw aKh2i4zxfwl:(UIRegion*) aKh2i4zxfwl aNpIyjFS:(UIFont*) aNpIyjFS {
- NSLog(@"LZno2PjatOmwiXW6");
- NSLog(@"KaeHmN9xzq");
- NSLog(@"Vb71U56mOAkBd0");
- NSLog(@"Z59MvyjBFpHNwL0TGnosIW6");
- NSLog(@"jR1Lv8J26W");
- NSLog(@"5FWXeTYqougJpU0EDQdvsH1hz6Cby");
- NSLog(@"Me4nBE7b2Lfkpy");
- NSLog(@"H7nYe90vaT4XQOzomFMZdfWr5K");
- NSLog(@"6AItwFCYVlW034B");
- NSLog(@"yPM2mrqEuDJBU19G");
- NSLog(@"8IKPi5Teatmvrw0BMnjHZFL4pkD2NuWAhUQsoR");
- NSLog(@"UbsucEkmg912zFvYeJd0VIyqNtx6X5KfoDjWT3S");
- NSLog(@"2hAr0YkZo9MjcnbpqQV");
- }
- @end
|