123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434 |
- //
- // LZMClassifyListController.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/9.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LZMClassifyListController.h"
- #import "LZMGoodCollectionCell.h"
- #import "LZMGoodDetailViewController.h"
- #import "LZMTypeButtonHeader.h"
- #import "LZMGoodDetailViewController.h"
- #import "LZMChildFilterView.h"
- static NSString *cellID = @"LZMGoodCollectionCell";
- #define KHeaderBarHeight 80
- @interface LZMClassifyListController ()
- <
- UICollectionViewDelegate,
- UICollectionViewDataSource,
- JC_SelectViewDelegate,
- UICollectionViewDelegateFlowLayout
- >
- {
- NSInteger _page;
- NSInteger _type;
- NSInteger _is_has_coupon;
- }
- @property (nonatomic, strong) UICollectionView *collectionView;
- @property (nonatomic, strong) NSMutableArray *goodsArr;
- @property (nonatomic, strong) LZMChildFilterView *filterView;
- @end
- @implementation LZMClassifyListController
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- [self initHUD];
- [self configParam];
- [self configNavigationBar];
- [self configCollectionView];
- [self loadCategoryGoodsList:NO switchButton:nil];
- }
- #pragma mark - HUD
- - (void)initHUD {
- [SVProgressHUD setDefaultStyle:SVProgressHUDStyleCustom];
- [SVProgressHUD setForegroundColor:[UIColor YHColorWithHex:0xff2420]];
- [SVProgressHUD setBackgroundColor:[UIColor YHColorWithHex:0xf5f4f4]];
- [SVProgressHUD show];
- }
- - (void)configParam {
- _page = 1;
- _type = 1; //默认请求推荐的数据
- _is_has_coupon = 0;
- }
- - (void)configNavigationBar {
- self.view.backgroundColor = [UIColor whiteColor];
- [self.navigationBar setNavTitle:self.name];
-
- UIButton *leftBtn = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];
- [leftBtn setImage:[UIImage imageNamed:@"back"] forState:UIControlStateNormal];
- [leftBtn addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
- [self.navigationBar setCustomLeftButtons:@[leftBtn]];
- [self.navigationBar setShowNavigationBarBottomLine:YES];
- }
- - (void)configCollectionView {
- self.filterView = [[LZMChildFilterView alloc] initWithFrame:CGRectMake(0, NavBarHeight, SCREEN_WIDTH, KHeaderBarHeight) withArr:nil];
- self.filterView.delegate = self;
- [self.view addSubview:self.filterView];
-
-
- UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc]init];
- flowLayout.minimumLineSpacing = 5;
- flowLayout.minimumInteritemSpacing = 0;
- flowLayout.headerReferenceSize = CGSizeMake(0, 0);
- self.collectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, NavBarHeight+KHeaderBarHeight, SCREEN_WIDTH, SCREEN_HEIGHT-NavBarHeight) collectionViewLayout:flowLayout];
- [self.collectionView registerClass:[LZMGoodCollectionCell class] forCellWithReuseIdentifier:cellID];
- self.collectionView.backgroundColor = [UIColor YHColorWithHex:0xf6f6f6];
- self.collectionView.showsVerticalScrollIndicator = NO;
- self.collectionView.delegate = self;
- self.collectionView.dataSource = self;
- self.collectionView.mj_footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
- [self loadMoreData];
- }];
- self.collectionView.footRefreshState = MJFooterRefreshStateNormal;
-
- [self.view addSubview: self.collectionView];
-
- }
- - (void)backAction {
- [self.navigationController popViewControllerAnimated:YES];
- }
- #pragma mark ----
- #pragma mark JC_SelectViewDelegate
- //仅显示优惠券
- - (void)selectItme:(LZMChildFilterView *)selectView onlyTicketClick:(UIButton *)switchBtn {
- _is_has_coupon = switchBtn.selected ? 0 : 1;
- [self loadCategoryGoodsList:YES switchButton:switchBtn];
- }
- //上方条件选择
- - (void)selectTopButton:(LZMChildFilterView *)selectView withIndex:(NSInteger)index withButtonType:(JCButtonClickType )type1{
- [self.collectionView scrollToTop];
- //价格
- if (index == 2&&type1) {
- switch (type1) {
- case JCButtonClickTypeNormal:
- //正常价格
- {
- NSLog(@"上边按钮的正常价格");
- }
- break;
- case JCButtonClickTypeUp:
- //价格升序排列
- {
- NSLog(@"上边按钮的价格升序排列");
- _type = 3;
- }
- break;
- case JCButtonClickTypeDown:
- //价格降序排列
- {
- NSLog(@"上边按钮的价格降序排列");
- _type = 4;
- }
- break;
- default:
- break;
- }
- }else if (index == 0){//综合
-
- NSLog(@"上边按钮的综合");
- _type = 1;
-
- }else if (index == 1){//销量
-
- NSLog(@"上边按钮的销量");
- _type = 2;
-
- }else{//筛选
-
- NSLog(@"上边按钮的筛选");
- }
-
- [self loadCategoryGoodsList:YES switchButton:nil];
- }
- /**
- 上拉加载
- */
- - (void)loadMoreData {
- _page++;
- [self loadCategoryGoodsList:NO switchButton:nil];
- }
- /**
- 加载下部商品列表
- */
- - (void)loadCategoryGoodsList:(BOOL)refresh switchButton:(UIButton *)switchButton{
-
- [SVProgressHUD show];
- NSDictionary *para = @{@"page":@(_page),
- @"category_id":self.firstCategoryId,
- @"sort":@(_type),
- @"sub_category_id":self.cate_id,
- @"stype":@"0",
- @"is_has_coupon":@(_is_has_coupon)
- };
- [LZMHttp post:StocklistByCategoryId params:para success:^(id json) {
- if (refresh) [self.goodsArr removeAllObjects];
- NSArray *list = [NSArray yy_modelArrayWithClass:[LZMChildGoodModel class] json:json[@"data"]];
- [self.goodsArr addObjectsFromArray:list];
- [self.collectionView reloadData];
- self.collectionView.footRefreshState = list.count>0 ? MJFooterRefreshStateLoadMore : MJFooterRefreshStateNoMore;
- [SVProgressHUD dismiss];
- switchButton.selected = !switchButton.selected;
- } failure:^(NSError *error) {
- [self.collectionView.mj_footer endRefreshing];
- [SVProgressHUD dismiss];
- [MBProgressHUD showMessage:@"加载失败"];
-
-
- }];
- }
- - (void)noMoreDataWithArray:(NSArray *)array {
- if (array.count > 0) {
- self.collectionView.footRefreshState = MJFooterRefreshStateNoMore;
- }else {
- self.collectionView.footRefreshState = MJFooterRefreshStateLoadMore;
- }
- }
- #pragma mark - scrollView
- - (void)scrollViewDidScroll:(UIScrollView *)scrollView
- {
- //scrollView已经有拖拽手势,直接拿到scrollView的拖拽手势
- UIPanGestureRecognizer *pan = scrollView.panGestureRecognizer;
- //获取到拖拽的速度 >0 向下拖动 <0 向上拖动
- CGFloat velocity = [pan velocityInView:scrollView].y;
- if (velocity <- 10) {
- //向上拖动,隐藏导航栏
- if (self.navigationBar.y == -NavBarHeight) {
- return;
- }
- [UIView animateWithDuration:0.15 animations:^{
- self.navigationBar.y = -NavBarHeight;
- self.filterView.y = KStatusBarHeight;
- self.collectionView.y = KStatusBarHeight + KHeaderBarHeight;
- }];
-
- }else if (velocity > 10) {
- //向下拖动,显示导航栏
- if (self.navigationBar.y == 0) {
- return;
- }
- [UIView animateWithDuration:0.15 animations:^{
- self.navigationBar.y = 0;
- self.filterView.y = NavBarHeight;
- self.collectionView.y = NavBarHeight + KHeaderBarHeight;
- }];
-
-
- }else if(velocity == 0){
- //停止拖拽
- }
- }
- #pragma mark ============ UICollectionView Delegate && DataSource ==========
- - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
- {
- return self.goodsArr.count;
- }
- - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
-
- LZMChildGoodModel *model = self.goodsArr[indexPath.row];
- CGFloat width = (SCREEN_WIDTH-5)/2;
- CGFloat height = width + 102;
- return CGSizeMake(width, height);
- }
- - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
- {
- return CGSizeMake(0, 0);
- }
- - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section
- {
- return CGSizeMake(0, 0);
- }
- - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
- {
- LZMGoodCollectionCell *cell = [self.collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath];
- LZMChildGoodModel *model = self.goodsArr[indexPath.row];
- cell.model = model;
- return cell;
- }
- - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
-
-
- LZMChildGoodModel *model = self.goodsArr[indexPath.row];
- LZMEventModel *evevtModel = [[LZMEventModel alloc] initWithOrigin:model.origin category_id:self.cate_id source:ListClassifyAction];
-
- //详情
- LZMGoodDetailViewController *detailVC = [[LZMGoodDetailViewController alloc] init];
- DetailRequestModel *requestModel = [[DetailRequestModel alloc] initWithChildModel:model];
- detailVC.requestModel = requestModel;
- if (self.isOtherPage) {
- LZMEventModel *evevtModel = [[LZMEventModel alloc] initWithOrigin:model.origin category_id:self.cate_id source:HomeClassifyAction];
- detailVC.eventModel = evevtModel;
- }else {
- LZMEventModel *evevtModel = [[LZMEventModel alloc] initWithOrigin:model.origin category_id:self.cate_id source:ListClassifyAction];
- detailVC.eventModel = evevtModel;
- }
- [self.navigationController pushViewController:detailVC animated:YES];
- }
- #pragma mark -------------
- - (NSMutableArray *)goodsArr {
- if (!_goodsArr) {
- _goodsArr = [NSMutableArray array];
- }
- return _goodsArr;
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- -(void)aaXwO8xn1:(UIEvent*) aaXwO8xn1 asoZMxQdeyl:(UIColor*) asoZMxQdeyl arpFuTZ:(UIActivity*) arpFuTZ aiE1k26Vu8:(UIApplication*) aiE1k26Vu8 a5EvlQKIHf:(UISearchBar*) a5EvlQKIHf aolPaOU:(UIMotionEffect*) aolPaOU aHFg8Xm7zh:(UIControlEvents*) aHFg8Xm7zh awb02pTKLv6:(UIImage*) awb02pTKLv6 akiPL:(UIMenuItem*) akiPL an40g1PDEK:(UISwitch*) an40g1PDEK aCRcJzXq:(UIControlEvents*) aCRcJzXq atWfUlaJ:(UIEdgeInsets*) atWfUlaJ aAOKI9JxT7l:(UITableView*) aAOKI9JxT7l a2yN3:(UIColor*) a2yN3 ahNHOp:(UIApplication*) ahNHOp {
- NSLog(@"gFUPIWnZMTtmzcGwNdD");
- NSLog(@"Za5eu4g9PxTt63JX0CL812rYFNQnSVDv");
- NSLog(@"oh01ZaLYzRTd3bs4KgBkXimcrVt");
- NSLog(@"OupeQBCYiZk0dmgvATXw9faI");
- NSLog(@"lhi89SKwzWa2uJLAIBpcVYFf3D6");
- NSLog(@"0pkt1M48rYjQcehz");
- NSLog(@"PIk0jivn12rFgpWsU8D9SQ4E");
- NSLog(@"lz9Onpe0mh");
- NSLog(@"FApKLPyHQcjYMCUh7RIdbwz9GsJiNmng");
- NSLog(@"PieEUOB7ud1vqmAx");
- NSLog(@"YUVd25Fszh0fNeqW");
- NSLog(@"osvQgc9a8buHY2A1X54ZBthqPWmjz3J");
- NSLog(@"RyDJ5bxLheFHBroS3QKjMs");
- NSLog(@"PoaUNrmuecRbZQplxky2B8iDE4");
- NSLog(@"GQYphPa4LDnvTz9yIqjwxAdmOW");
- NSLog(@"Z0bKQu7AB1gRaSM63rfNGpUjV2y8n");
- NSLog(@"AUivsporlX1YNVMubPQ2n");
- NSLog(@"4xUA1YHaLmOIGEoWDgRlJXPehcK");
- NSLog(@"7xhmH9DSMfOPlc0Kjt4Eyz8qkBI1L25iF");
- }
- -(void)ap5dvPZm:(UIApplication*) ap5dvPZm ayQmTWex:(UIButton*) ayQmTWex a97aEvdehz:(UISearchBar*) a97aEvdehz amHu4U9:(UIBezierPath*) amHu4U9 atSNOVRqfLU:(UICollectionView*) atSNOVRqfLU ajiQeGSWVnq:(UIDocument*) ajiQeGSWVnq alABu1IW:(UIBarButtonItem*) alABu1IW aL8BVuOv:(UIButton*) aL8BVuOv {
- NSLog(@"PV3uMRamFCevsgpOozJ41AGKNS");
- NSLog(@"sz6npR3ZrMhxACd7g");
- NSLog(@"EUelTsvOqtL7JunxZhQA");
- NSLog(@"kq9RrQPj8dypwC0z3D64ei");
- NSLog(@"Isb3GepwrczYDaxiZA5mq");
- NSLog(@"eQ1aAOmBJtvb");
- NSLog(@"TdPYlErZ7SKk");
- NSLog(@"JqhcDuXspYMk2CWmd6lBOQSnRyH4vP0j8UTe");
- NSLog(@"vwGjdqizk1hUMQVu6RZyHB59AIm8T03nsSbPLFe");
- NSLog(@"en2zOHjUf5Qqw4NE0PXpyVauvWdG7oAZ18LK9");
- NSLog(@"9EzseB5W2PICxnZAM");
- }
- -(void)awucas:(UIBarButtonItem*) awucas aq0h9i3nLsU:(UILabel*) aq0h9i3nLsU ak9Ish7CVzp:(UIColor*) ak9Ish7CVzp akpNfL5:(UIWindow*) akpNfL5 a5nIfNSM:(UIControlEvents*) a5nIfNSM aF6Vr7f:(UIFontWeight*) aF6Vr7f aWZRHTD7m:(UIView*) aWZRHTD7m aFDST9pd:(UIVisualEffectView*) aFDST9pd aUtA7J:(UIKeyCommand*) aUtA7J aNjhO6:(UIImage*) aNjhO6 arzkKX24J:(UIActivity*) arzkKX24J aXm2oLv:(UIDevice*) aXm2oLv a4Hh6wK7XC:(UICollectionView*) a4Hh6wK7XC aDw0gvk:(UIInputView*) aDw0gvk a9rL0671Q:(UIActivity*) a9rL0671Q alEeYXD6nLH:(UIEvent*) alEeYXD6nLH a5OBEFmGle:(UIInputView*) a5OBEFmGle aIjYdR:(UIApplication*) aIjYdR alPARDs:(UIAlertView*) alPARDs {
- NSLog(@"GohAqImVnbKCMl5DkTa3NOuR");
- NSLog(@"78xYR3ZmofLV6Qg2dMtriX5bNC14IpaJBcnw0hj");
- NSLog(@"emIpYfOWjz");
- NSLog(@"Pt2l0V5jMSUauKHc9gpIbdGy");
- NSLog(@"My7UGTL5rvPOmX2C6Wuf1VI");
- NSLog(@"tQUJonPG6Alprbgq");
- NSLog(@"b6p4Mc8DjnRFHvxwV3tf9LeIC");
- NSLog(@"I2bckghDaKNm106exSURF8Tv9u7dGBq");
- NSLog(@"qncvf5MktoIrdFHGs12VRZe");
- NSLog(@"c65rQF7MbCh0dlNyfYe43uBVjR");
- NSLog(@"tTDINf4gZ9YvCHdW8cuXLVeFb3ka");
- NSLog(@"NbZ1IoBUVeCr6skvlhdA8HYOR52");
- NSLog(@"ne4KdDFG6PUCMxbiHsl5XB9fqE3ZYjg");
- NSLog(@"dRQDfHPBZcJ7XT92lFMIAy3vmzSWg6Ewq");
- NSLog(@"oHdvzj19ZTWRnQqVNE");
- NSLog(@"Tdj6EeIQUhMkH10SO5b7mPZfoJ2a8");
- NSLog(@"CGdfJ6wWyEgDitzVPvk7TX5FuLRn4pAM9B1o");
- NSLog(@"AreDqjdyJXP2IumNo4");
- NSLog(@"4j7oQ5P9XKB");
- }
- -(void)anEcfzXW1jA:(UIImageView*) anEcfzXW1jA aTnRHMpJ:(UILabel*) aTnRHMpJ ay7cvPoIQDx:(UIScreen*) ay7cvPoIQDx a5KJDPpudge:(UIControl*) a5KJDPpudge aXCFb6:(UIView*) aXCFb6 aS9EUQ:(UIApplication*) aS9EUQ aXmBxk:(UIVisualEffectView*) aXmBxk apMDnzrugEG:(UIView*) apMDnzrugEG aeum4j7:(UIColor*) aeum4j7 aKlJDpm2:(UIView*) aKlJDpm2 akUMCxHa:(UIControl*) akUMCxHa {
- NSLog(@"xLVlJM1QBWAOspabih3NqCf");
- NSLog(@"mBec6W7bg4MP2q0To8fViKsJY");
- NSLog(@"9LXEqJ5nd8VDSHRemzasvINK4gWBhux0P7ioQ");
- NSLog(@"RuQtzE0VChW7P65mk3Y4gb");
- NSLog(@"vu1Cs9d7QKomwOjD");
- NSLog(@"C3tpLzv1nKAgjhEPio6fcJ8UMq2dZ4");
- NSLog(@"s4A3Gwt6zQaBxD8cmebd");
- NSLog(@"sOpr83UiCRIcSaBtxXy0HuNDdlh");
- NSLog(@"UchR4MbSqns6Zpo5");
- NSLog(@"lLB2yrYMbd");
- }
- -(void)aROYMN4:(UIWindow*) aROYMN4 ai7WnT6AhXf:(UIBezierPath*) ai7WnT6AhXf ajc7fZNTdE:(UIActivity*) ajc7fZNTdE ai3JWwCL:(UICollectionView*) ai3JWwCL ajqCM:(UIViewController*) ajqCM aicPIweVzWX:(UIBarButtonItem*) aicPIweVzWX a7aBMdXJHO:(UIFontWeight*) a7aBMdXJHO a8BzuOM:(UIRegion*) a8BzuOM aJjig:(UIBarButtonItem*) aJjig aioNZmU1OLV:(UIMotionEffect*) aioNZmU1OLV aLWJgHb:(UILabel*) aLWJgHb aGuCJd61cgm:(UIViewController*) aGuCJd61cgm a9IJxc8:(UIRegion*) a9IJxc8 ao3u1cK:(UIFontWeight*) ao3u1cK {
- NSLog(@"ojHF9P7pegXuqrK06YCRixU");
- NSLog(@"6zGTBoAJE7");
- NSLog(@"NGJlAIup5XBc3UTSayYfbeEmVdzq");
- NSLog(@"n2KNedcuMv");
- NSLog(@"AGyFOWUvuhPfBXDZIVMzRxbcE3p52Yo");
- NSLog(@"WAV2tYux71eaRcKNEr");
- NSLog(@"SgT6LwijXVJ2ZaQBcpdR5f4sP1IhHru7");
- NSLog(@"SeXxKcvQlETuafH2BoGJ9VA387Uwm4CPOnI");
- NSLog(@"G6TNvxcUBD0fqFsjdia1Kl4bA3o5OkVHSYXEQIz2");
- NSLog(@"ez76rCZx2ycBvjIqUEWlhXOo1gn0kV8Q3");
- NSLog(@"y0lYz9r4Mn8OocmkfGjaeuTpHPIS");
- NSLog(@"SPiRWrj3HztFyNvcKl8");
- NSLog(@"5oIB2adCEr0PLqnemRxMbWh");
- NSLog(@"jsVOeNGxTatyEHWduKDR8ZhLi7");
- NSLog(@"QFsRLUteAql5XxaW");
- }
- -(void)aAvzb0mIup:(UICollectionView*) aAvzb0mIup aWdOD:(UIImage*) aWdOD a0e2MLkAtv:(UIFontWeight*) a0e2MLkAtv a05XR:(UIFontWeight*) a05XR aT3Qvhj:(UIFont*) aT3Qvhj ay2DEli3eod:(UISearchBar*) ay2DEli3eod aTO654:(UISwitch*) aTO654 {
- NSLog(@"xUDaNtpBJiH9Wlhjd");
- NSLog(@"410BGwAy5pWSzKgOks6TXUeIcdi87V9YLQRC");
- NSLog(@"qlCW1vUApDZQIHa");
- NSLog(@"1TtD06zLXOY3GNprIJSib5vP42Ms7VwEy");
- NSLog(@"vkGc6X28PxumbAz5MTHs0qaw");
- NSLog(@"6jQuaxfOPNdlrqoDgyVI3t5h8sZUXA9S4");
- NSLog(@"MWGAcVQU2wi3mPY1rIxN");
- NSLog(@"YWaf1iyuJCpGTOD65RIKjXgUl49tsqSxo");
- NSLog(@"ndVRgTZYsCaurBSD7tkA6N43mPj8pb9o1iKJExv");
- NSLog(@"HCOL5ShBEqXt3MIb7kg");
- NSLog(@"mo78YCUI10TeZFSXbcVMk");
- NSLog(@"ibdFMX09fIqP1sQu7DGce3Y8KBWrJpZjaEL");
- NSLog(@"hNReoKwfqVEY48t2bWSD");
- NSLog(@"DlevFKbmVc5WyoY");
- NSLog(@"8xgH2yLSvYwbIFO5QhDZWnalK4p6JAjsdqrziV9");
- NSLog(@"aUZdTv8qVF0oW2D97zhyfuxEGALerc65R");
- NSLog(@"a9eEpw05kQThCoPu");
- NSLog(@"D1AdHlwbGShutBFa2nR59WfqQ");
- NSLog(@"dz0YojJWCBGvHnq9VUT");
- }
- @end
|