ETH Price: $3,286.12 (-0.81%)
Gas: 6 Gwei

Token

Clown World ($CLNWLD)
 

Overview

Max Total Supply

555,555,555,555 $CLNWLD

Holders

133

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
12,205,055.601306948506456297 $CLNWLD

Value
$0.00
0xa882cf637523bd6d23e44ec32a553bf6bbe04b7d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ClownWorld

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : ClownWorld.sol
/**

    Website: ClownWorldMeme.com
    Twitter: https://twitter.com/clownworldmeme?s=21&t=hrx2uHtzdW-ylt0Px2z0KQ
    Telegram: https://t.me/ClownWorldMeme 
    TikTok: https://www.tiktok.com/@clownworldmeme?_t=8anlQHaFduk&_r=1
     
**/

pragma solidity 0.8.2;

// SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

interface IUniswapV2Factory {
   function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router {
   function factory() external pure returns (address);
   function WETH() external pure returns (address);
   function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
   function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
}

contract ClownWorld is Ownable, ERC20 {
	using SafeMath for uint256;
	
    mapping (address => uint256) public _rOwned;
    mapping (address => uint256) public _tOwned;
    mapping (address => bool) public _isExcludedFromFee;
	mapping (address => bool) public _isExcludedFromMaxTokenPerWallet;
    mapping (address => bool) public _isExcludedFromReward;
	mapping (address => bool) public _automatedMarketMakerPairs;
	
    address[] private _excluded;
	
	address public constant burnWallet = address(0x000000000000000000000000000000000000dEaD);
	address public marketingWallet = payable(0x5B384bc26bC46A9D5bFC4dCFF8FC8CEf37d57E82);
	
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 555555555555 * (10**18);
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
	
	uint256 public liquidityFeeTotal;
    uint256 public marketingFeeTotal;
	
	uint256[] public liquidityFee;
	uint256[] public marketingFee;
	uint256[] public reflectionFee;
	uint256[] public burnFee;
	
	uint256 private _liquidityFee;
	uint256 private _marketingFee;
	uint256 private _reflectionFee;
	uint256 private _burnFee;
	
    IUniswapV2Router public uniswapV2Router;
    address public uniswapV2Pair;
	
	bool private swapping;
	bool public swapAndLiquifyEnabled;
	
    uint256 public swapTokensAtAmount = 555555 * (10**18);
	uint256 public maxTokenPerWallet = 5555555555 * (10**18);
	
	event SwapTokensAmountUpdated(uint256 amount);
	event MarketingWalletUpdated(address newWallet);
	event SwapAndLiquifyStatusUpdated(bool status);
	event AutomatedMarketMakerPairUpdated(address pair, bool status);
	event MigrateTokens(address token, address receiver, uint256 amount);
	event TransferETH(address recipient, uint256 amount);
	event LiquidityFeeUpdated(uint256 buy, uint256 sell, uint256 p2p);
	event MarketingFeeUpdated(uint256 buy, uint256 sell, uint256 p2p);
	event ReflectionFeeUpdated(uint256 buy, uint256 sell, uint256 p2p);
	event BurnFeeUpdated(uint256 buy, uint256 sell, uint256 p2p);
	
    constructor (address owner) ERC20("Clown World", "$CLNWLD") {
        _rOwned[owner] = _rTotal;
        
        uniswapV2Router = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

		_setAutomatedMarketMakerPair(uniswapV2Pair, true);
		
        _isExcludedFromFee[owner] = true;
        _isExcludedFromFee[address(this)] = true;
		
		_isExcludedFromMaxTokenPerWallet[address(uniswapV2Pair)] = true;
		_isExcludedFromMaxTokenPerWallet[address(this)] = true;
		_isExcludedFromMaxTokenPerWallet[owner] = true;
		
		liquidityFee.push(200);
		liquidityFee.push(200);
		liquidityFee.push(0);
		
		marketingFee.push(200);
		marketingFee.push(200);
		marketingFee.push(0);

		reflectionFee.push(200);
		reflectionFee.push(200);
		reflectionFee.push(0);
		
		burnFee.push(200);
		burnFee.push(200);
		burnFee.push(0);
		
		_excludeFromReward(address(burnWallet));
		_excludeFromReward(address(uniswapV2Pair));
		_excludeFromReward(address(this));
		
        emit Transfer(address(0), owner, _tTotal);
    }
	
	receive() external payable {}

    function totalSupply() public override pure returns (uint256) {
        return _tTotal;
    }
	
	function excludeFromFee(address account, bool status) external onlyOwner {
	    require(_isExcludedFromFee[account] != status, "Account is already the value of 'status'");
	    _isExcludedFromFee[account] = status;
	}
	
	function excludeFromMaxTokenPerWallet(address account, bool status) external onlyOwner {
	    require(_isExcludedFromMaxTokenPerWallet[account] != status, "Account is already the value of 'status'");
	    _isExcludedFromMaxTokenPerWallet[account] = status;
	}
	
	function excludeFromReward(address account) public onlyOwner() {
        require(!_isExcludedFromReward[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcludedFromReward[account] = true;
        _excluded.push(account);
    }
	
    function includeInReward(address account) external onlyOwner() {
        require(_isExcludedFromReward[account], "Account is already included");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcludedFromReward[account] = false;
                _excluded.pop();
                break;
            }
        }
    }
	
	function setSwapTokensAtAmount(uint256 amount) external onlyOwner {
  	    require(amount <= totalSupply(), "Amount cannot be over the total supply.");
		
		swapTokensAtAmount = amount;
		emit SwapTokensAmountUpdated(amount);
  	}
	
	function setMarketingWallet(address payable _marketingWallet) external onlyOwner{
	   require(_marketingWallet != address(0), "Zero address");
	   
	   marketingWallet = _marketingWallet;
	   emit MarketingWalletUpdated(_marketingWallet);
    }
	
	function setSwapAndLiquifyEnabled(bool status) external onlyOwner {
        require(swapAndLiquifyEnabled != status, "Account is already the value of 'status'");
		
		swapAndLiquifyEnabled = status;
		emit SwapAndLiquifyStatusUpdated(status);
    }
	
	function setAutomatedMarketMakerPair(address pair, bool status) external onlyOwner {
        require(_automatedMarketMakerPairs[pair] != status, "Automated market maker pair is already set to that value");
        require(pair != address(uniswapV2Pair), "The pair cannot be removed from automatedMarketMakerPairs");
		
		_automatedMarketMakerPairs[address(pair)] = status;
		emit AutomatedMarketMakerPairUpdated(pair, status);
    }
	
	function setLiquidityFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner {
	    require(marketingFee[0] + reflectionFee[0] + burnFee[0] + buy  <= 2500 , "Max fee limit reached for 'BUY'");
		require(marketingFee[1] + reflectionFee[1] + burnFee[1] + sell <= 2500 , "Max fee limit reached for 'SELL'");
		require(marketingFee[2] + reflectionFee[2] + burnFee[2] + p2p  <= 2500 , "Max fee limit reached for 'P2P'");
		
		liquidityFee[0] = buy;
		liquidityFee[1] = sell;
		liquidityFee[2] = p2p;
		
		emit LiquidityFeeUpdated(buy, sell, p2p);
	}
	
	function setMarketingFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner {
	    require(liquidityFee[0] + reflectionFee[0] + burnFee[0] + buy  <= 2500 , "Max fee limit reached for 'BUY'");
		require(liquidityFee[1] + reflectionFee[1] + burnFee[1] + sell <= 2500 , "Max fee limit reached for 'SELL'");
		require(liquidityFee[2] + reflectionFee[2] + burnFee[2] + p2p  <= 2500 , "Max fee limit reached for 'P2P'");
		
		marketingFee[0] = buy;
		marketingFee[1] = sell;
		marketingFee[2] = p2p;
		
		emit MarketingFeeUpdated(buy, sell, p2p);
	}
	
	function setReflectionFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner {
	    require(liquidityFee[0] + marketingFee[0] + burnFee[0] + buy  <= 2500 , "Max fee limit reached for 'BUY'");
		require(liquidityFee[1] + marketingFee[1] + burnFee[1] + sell <= 2500 , "Max fee limit reached for 'SELL'");
		require(liquidityFee[2] + marketingFee[2] + burnFee[2] + p2p  <= 2500 , "Max fee limit reached for 'P2P'");
		
		reflectionFee[0] = buy;
		reflectionFee[1] = sell;
		reflectionFee[2] = p2p;
		
		emit ReflectionFeeUpdated(buy, sell, p2p);
	}
	
	function setBurnFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner {
	    require(liquidityFee[0] + marketingFee[0] + reflectionFee[0] + buy  <= 2500 , "Max fee limit reached for 'BUY'");
		require(liquidityFee[1] + marketingFee[1] + reflectionFee[1] + sell <= 2500 , "Max fee limit reached for 'SELL'");
		require(liquidityFee[2] + marketingFee[2] + reflectionFee[2] + p2p  <= 2500 , "Max fee limit reached for 'P2P'");
		
		burnFee[0] = buy;
		burnFee[1] = sell;
		burnFee[2] = p2p;
		
		emit BurnFeeUpdated(buy, sell, p2p);
	}
	
    function balanceOf(address account) public override view returns (uint256) {
        if (_isExcludedFromReward[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }
	
    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }
	
	function _excludeFromReward(address account) internal {
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcludedFromReward[account] = true;
        _excluded.push(account);
    }
	
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(_automatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value");
        _automatedMarketMakerPairs[pair] = value;
    }
	
    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }
	
    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tMarketing);
    }
	
    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) {
		uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tMarketing = calculateMarketingFee(tAmount);
		
		uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(tMarketing);
        return (tTransferAmount, tFee, tLiquidity, tMarketing);
    }
	
    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rMarketing = tMarketing.mul(currentRate);
		
		uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rMarketing);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }
	
    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
	
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcludedFromReward[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
	
    function _takeMarketing(uint256 tMarketing) private {
        uint256 currentRate =  _getRate();
        uint256 rMarketing = tMarketing.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        if(_isExcludedFromReward[address(this)])
           _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing);
    }
	
	function _takeBurn(uint256 tBurn) private {
        uint256 currentRate =  _getRate();
        uint256 rBurn = tBurn.mul(currentRate);
        _rOwned[burnWallet] = _rOwned[burnWallet].add(rBurn);
        if(_isExcludedFromReward[burnWallet])
            _tOwned[burnWallet] = _tOwned[burnWallet].add(tBurn);
    }
	
    function calculateReflectionFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_reflectionFee).div(10000);
    }
	
    function calculateMarketingFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_marketingFee).div(10000);
    }
	
    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee).div(10000);
    }
	
	function calculateBurnFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_burnFee).div(10000);
    }
	
    function removeAllFee() private {
       _reflectionFee = 0;
       _marketingFee = 0;
       _liquidityFee = 0;
	   _burnFee = 0;
    }
	
    function applyBuyFee() private {
	   _reflectionFee = reflectionFee[0];
       _marketingFee = marketingFee[0];
       _liquidityFee = liquidityFee[0];
	   _burnFee = burnFee[0];
    }
	
	function applySellFee() private {
	   _reflectionFee = reflectionFee[1];
       _marketingFee = marketingFee[1];
       _liquidityFee = liquidityFee[1];
	   _burnFee = burnFee[1];
    }
	
	function applyP2PFee() private {
	   _reflectionFee = reflectionFee[2];
       _marketingFee = marketingFee[2];
       _liquidityFee = liquidityFee[2];
	   _burnFee = burnFee[2];
    }
	
    function _transfer(address from, address to, uint256 amount) internal override{
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
		
		if(!_isExcludedFromMaxTokenPerWallet[to])
		{
            uint256 balanceRecepient = balanceOf(to);
            require(balanceRecepient + amount <= maxTokenPerWallet, "Exceeds maximum token per wallet limit");
        }
		
        uint256 contractTokenBalance = balanceOf(address(this));
		bool canSwap = contractTokenBalance >= swapTokensAtAmount;
		
        if (canSwap && !swapping && _automatedMarketMakerPairs[to] && swapAndLiquifyEnabled) 
		{
		    uint256 tokenToLiqudity = liquidityFeeTotal.div(2);
			uint256 tokenToMarketing = marketingFeeTotal;
			uint256 tokenToSwap = tokenToLiqudity.add(tokenToMarketing);
			
			if(tokenToSwap >= swapTokensAtAmount) 
			{
			    swapping = true;
				
				uint256 initialBalance = address(this).balance;
				swapTokensForETH(swapTokensAtAmount);
				uint256 newBalance = address(this).balance.sub(initialBalance);
				
				uint256 liqudityPart = newBalance.mul(tokenToLiqudity).div(tokenToSwap);
				uint256 marketingPart = newBalance - liqudityPart;
				
				if(liqudityPart > 0)
				{
				    uint256 liqudityToken = swapTokensAtAmount.mul(tokenToLiqudity).div(tokenToSwap);
					addLiquidity(liqudityToken, liqudityPart);
					liquidityFeeTotal = liquidityFeeTotal.sub(liqudityToken).sub(liqudityToken);
				}
				if(marketingPart > 0) 
				{
				    payable(marketingWallet).transfer(marketingPart);
					marketingFeeTotal = marketingFeeTotal.sub(swapTokensAtAmount.mul(tokenToMarketing).div(tokenToSwap));
				}
				swapping = false;
			}
        }
		
        bool takeFee = true;
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to])
		{
            takeFee = false;
        }
        _tokenTransfer(from, to, amount, takeFee);
    }
	
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
		
		if(!takeFee) 
		{
		    removeAllFee();
		}
		else if(!_automatedMarketMakerPairs[sender] && !_automatedMarketMakerPairs[recipient])
		{
		    applyP2PFee();
		}
		else if(_automatedMarketMakerPairs[recipient])
		{
		    applySellFee();
		}
		else
		{
		    applyBuyFee();
		}
		
		uint256 tBurn = calculateBurnFee(amount);
		if(tBurn > 0)
		{
		   _takeBurn(tBurn);
		   emit Transfer(sender, address(burnWallet), tBurn);
		}
		
        if (_isExcludedFromReward[sender] && !_isExcludedFromReward[recipient]) 
		{
            _transferFromExcluded(sender, recipient, amount, tBurn);
        } 
		else if (!_isExcludedFromReward[sender] && _isExcludedFromReward[recipient]) 
		{
            _transferToExcluded(sender, recipient, amount, tBurn);
        } 
		else if (!_isExcludedFromReward[sender] && !_isExcludedFromReward[recipient]) 
		{
            _transferStandard(sender, recipient, amount, tBurn);
        } 
		else if (_isExcludedFromReward[sender] && _isExcludedFromReward[recipient]) 
		{
            _transferBothExcluded(sender, recipient, amount, tBurn);
        } 
		else 
		{
            _transferStandard(sender, recipient, amount, tBurn);
        }
    }
	
    function _transferStandard(address sender, address recipient, uint256 tAmount, uint256 tBurn) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        
		tTransferAmount = tTransferAmount.sub(tBurn);
		rTransferAmount = rTransferAmount.sub(tBurn.mul(_getRate()));
		
		_rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
		
		liquidityFeeTotal += tLiquidity;
        marketingFeeTotal += tMarketing;
		
		if(tMarketing.add(tLiquidity) > 0)
		{
		    emit Transfer(sender, address(this), tMarketing.add(tLiquidity));
		}
        emit Transfer(sender, recipient, tTransferAmount);
    }
	
    function _transferToExcluded(address sender, address recipient, uint256 tAmount, uint256 tBurn) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        
		tTransferAmount = tTransferAmount.sub(tBurn);
		rTransferAmount = rTransferAmount.sub(tBurn.mul(_getRate()));
		
		_rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
		
		liquidityFeeTotal += tLiquidity;
        marketingFeeTotal += tMarketing;
		
		if(tMarketing.add(tLiquidity) > 0)
		{
		    emit Transfer(sender, address(this), tMarketing.add(tLiquidity));
		}
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount, uint256 tBurn) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        
		tTransferAmount = tTransferAmount.sub(tBurn);
		rTransferAmount = rTransferAmount.sub(tBurn.mul(_getRate()));
		
		_tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
		
		liquidityFeeTotal += tLiquidity;
        marketingFeeTotal += tMarketing;
		
		if(tMarketing.add(tLiquidity) > 0)
		{
		    emit Transfer(sender, address(this), tMarketing.add(tLiquidity));
		}
        emit Transfer(sender, recipient, tTransferAmount);
    }
	
	function _transferBothExcluded(address sender, address recipient, uint256 tAmount, uint256 tBurn) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        
		tTransferAmount = tTransferAmount.sub(tBurn);
		rTransferAmount = rTransferAmount.sub(tBurn.mul(_getRate()));
		
		_tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
        _takeLiquidity(tLiquidity);
        _takeMarketing(tMarketing);
        _reflectFee(rFee, tFee);
		
		liquidityFeeTotal += tLiquidity;
        marketingFeeTotal += tMarketing;
		
		if(tMarketing.add(tLiquidity) > 0)
		{
		    emit Transfer(sender, address(this), tMarketing.add(tLiquidity));
		}
        emit Transfer(sender, recipient, tTransferAmount);
    }
	
	function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
		
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
	
	function addLiquidity(uint256 tokenAmount, uint256 ETHAmount) private{
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ETHAmount}(
            address(this),
            tokenAmount,
            0, 
            0,
            address(this),
            block.timestamp
        );
    }
	
	function migrateTokens(address token, address receiver, uint256 amount) external onlyOwner{
       require(token != address(0), "Zero address");
	   require(receiver != address(0), "Zero address");
	   if(address(token) == address(this))
	   {
	       require(IERC20(address(this)).balanceOf(address(this)).sub(liquidityFeeTotal).sub(marketingFeeTotal) >= amount, "Insufficient balance on contract");
	   }
	   else
	   {
	       require(IERC20(token).balanceOf(address(this)) >= amount, "Insufficient balance on contract");
	   }
	   IERC20(token).transfer(address(receiver), amount);
       emit MigrateTokens(token, receiver, amount);
    }
	
	function migrateETH(address payable recipient) external onlyOwner{
	   require(recipient != address(0), "Zero address");
	   
	   emit TransferETH(recipient, address(this).balance);
       recipient.transfer(address(this).balance);
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 5 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"AutomatedMarketMakerPairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"BurnFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"LiquidityFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"MarketingFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MigrateTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"ReflectionFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SwapAndLiquifyStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferETH","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromMaxTokenPerWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_rOwned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_tOwned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"excludeFromMaxTokenPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"migrateETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"migrateTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reflectionFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setLiquidityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setReflectionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600d80546001600160a01b031916735b384bc26bc46a9d5bfc4dcff8fc8cef37d57e82179055620000456c070318c8e574c41eac8dac000060001962000b8f565b620000539060001962000b1a565b600e556975a4b267d3758aac0000601c556b11f372a61ad09bd21dac0000601d553480156200008157600080fd5b5060405162004abb38038062004abb833981016040819052620000a49162000ada565b6040518060400160405280600b81526020016a10db1bdddb8815dbdc9b1960aa1b815250604051806040016040528060078152602001660910d31395d31160ca1b81525062000102620000fc6200054f60201b60201c565b62000553565b81516200011790600490602085019062000a34565b5080516200012d90600590602084019062000a34565b5050600e546001600160a01b0380841660009081526006602090815260409182902093909355601a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790819055815163c45a015560e01b815291519216935063c45a0155926004808301939192829003018186803b158015620001b057600080fd5b505afa158015620001c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001eb919062000ada565b6001600160a01b031663c9c6539630601a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024957600080fd5b505afa1580156200025e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000284919062000ada565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002cd57600080fd5b505af1158015620002e2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000308919062000ada565b601b80546001600160a01b0319166001600160a01b0392831617908190556200033491166001620005a3565b6001600160a01b0381811660008181526008602090815260408083208054600160ff199182168117909255308086528386208054831684179055601b5490971685526009909352818420805484168217905594835280832080548316861790559282529181208054909216831790915560128054808401825560c87fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444918201819055825480860184558201819055825480860190935591018290556013805480850182557f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0909081018390558154808601835581018390558154808601909255018290556014805480850182557fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec9081018390558154808601835581018390558154808601909255018290556015805480850182558184527f55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec47590810183905581548086018355810192909255805493840190559190910155620004d861dead62000669565b601b54620004ef906001600160a01b031662000669565b620004fa3062000669565b6040516c070318c8e574c41eac8dac000081526001600160a01b038216906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35062000bd2565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600b602052604090205460ff16151581151514156200063e5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b03811660009081526006602052604090205415620006c6576001600160a01b038116600090815260066020526040902054620006ac906200072c565b6001600160a01b0382166000908152600760205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b6000600e54821115620007955760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840162000635565b6000620007a1620007c4565b9050620007bd8184620007f760201b620023c71790919060201c565b9392505050565b60008080620007d262000805565b91509150620007f08183620007f760201b620023c71790919060201c565b9250505090565b6000620007bd828462000b03565b600e5460009081906c070318c8e574c41eac8dac0000825b600c54811015620009cd578260066000600c84815481106200084f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180620008ca57508160076000600c8481548110620008a357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15620008ee57600e546c070318c8e574c41eac8dac00009450945050505062000a22565b6200095160066000600c84815481106200091857634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528281019390935260409091019020548591620023da62000a26821b17901c565b9250620009b660076000600c84815481106200097d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528281019390935260409091019020548491620023da62000a26821b17901c565b915080620009c48162000b71565b9150506200081d565b50620009f76c070318c8e574c41eac8dac0000600e54620007f760201b620023c71790919060201c565b82101562000a1c57600e546c070318c8e574c41eac8dac000093509350505062000a22565b90925090505b9091565b6000620007bd828462000b1a565b82805462000a429062000b34565b90600052602060002090601f01602090048101928262000a66576000855562000ab1565b82601f1062000a8157805160ff191683800117855562000ab1565b8280016001018555821562000ab1579182015b8281111562000ab157825182559160200191906001019062000a94565b5062000abf92915062000ac3565b5090565b5b8082111562000abf576000815560010162000ac4565b60006020828403121562000aec578081fd5b81516001600160a01b0381168114620007bd578182fd5b60008262000b155762000b1562000bbc565b500490565b60008282101562000b2f5762000b2f62000ba6565b500390565b60028104600182168062000b4957607f821691505b6020821081141562000b6b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000b885762000b8862000ba6565b5060010190565b60008262000ba15762000ba162000bbc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b613ed98062000be26000396000f3fe6080604052600436106102975760003560e01c806374da7cd81161015a578063a918299c116100c1578063dd62ed3e1161007a578063dd62ed3e14610839578063df8408fe14610859578063e2f4560514610879578063ea0a605f1461088f578063f2fde38b146108af578063fcef8867146108cf5761029e565b8063a918299c14610769578063a9b232d914610789578063afa4f3b2146107b9578063b4f500dd146107d9578063c065d7f0146107f9578063c49b9a80146108195761029e565b8063957537f911610113578063957537f9146106b457806395d89b41146106d45780639a7a23d6146106e9578063a046bc7814610709578063a457c2d714610729578063a9059cbb146107495761029e565b806374da7cd8146105f057806375f0a87414610610578063768dc710146106305780637a8baf521461066057806382fb7119146106765780638da5cb5b146106965761029e565b806339509351116101fe57806352390c02116101b757806352390c021461054f5780635d098b381461056f5780636ba5b8b81461058f57806370a08231146105a5578063715018a6146105c5578063735039d1146105da5761029e565b806339509351146104715780633b7e6d4a146104915780633c6ca5c1146104be57806349ae028a146104ee57806349bd5a5e1461050e5780634a74bb021461052e5761029e565b806318160ddd1161025057806318160ddd146103a557806323b872dd146103c557806328e6c7e7146103e55780632d83811914610415578063313ce567146104355780633685d419146104515761029e565b806301d7532d146102a357806306228749146102c557806306fdde03146102f8578063095ea7b31461031a5780630cfc15f91461034a5780631694505e146103855761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102c36102be366004613aba565b6108ef565b005b3480156102d157600080fd5b506102db61dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561030457600080fd5b5061030d61096a565b6040516102ef9190613bd2565b34801561032657600080fd5b5061033a610335366004613ae7565b6109fc565b60405190151581526020016102ef565b34801561035657600080fd5b50610377610365366004613a0a565b60066020526000908152604090205481565b6040519081526020016102ef565b34801561039157600080fd5b50601a546102db906001600160a01b031681565b3480156103b157600080fd5b506c070318c8e574c41eac8dac0000610377565b3480156103d157600080fd5b5061033a6103e0366004613a7a565b610a14565b3480156103f157600080fd5b5061033a610400366004613a0a565b60096020526000908152604090205460ff1681565b34801561042157600080fd5b50610377610430366004613b4a565b610a38565b34801561044157600080fd5b50604051601281526020016102ef565b34801561045d57600080fd5b506102c361046c366004613a0a565b610abe565b34801561047d57600080fd5b5061033a61048c366004613ae7565b610c8c565b34801561049d57600080fd5b506103776104ac366004613a0a565b60076020526000908152604090205481565b3480156104ca57600080fd5b5061033a6104d9366004613a0a565b600a6020526000908152604090205460ff1681565b3480156104fa57600080fd5b50610377610509366004613b4a565b610cae565b34801561051a57600080fd5b50601b546102db906001600160a01b031681565b34801561053a57600080fd5b50601b5461033a90600160a81b900460ff1681565b34801561055b57600080fd5b506102c361056a366004613a0a565b610ccf565b34801561057b57600080fd5b506102c361058a366004613a0a565b610e00565b34801561059b57600080fd5b5061037760105481565b3480156105b157600080fd5b506103776105c0366004613a0a565b610e83565b3480156105d157600080fd5b506102c3610eeb565b3480156105e657600080fd5b5061037760115481565b3480156105fc57600080fd5b506102c361060b366004613a0a565b610eff565b34801561061c57600080fd5b50600d546102db906001600160a01b031681565b34801561063c57600080fd5b5061033a61064b366004613a0a565b60086020526000908152604090205460ff1681565b34801561066c57600080fd5b50610377601d5481565b34801561068257600080fd5b50610377610691366004613b4a565b610fa3565b3480156106a257600080fd5b506000546001600160a01b03166102db565b3480156106c057600080fd5b506102c36106cf366004613a7a565b610fb3565b3480156106e057600080fd5b5061030d61128d565b3480156106f557600080fd5b506102c3610704366004613aba565b61129c565b34801561071557600080fd5b50610377610724366004613b4a565b611420565b34801561073557600080fd5b5061033a610744366004613ae7565b611430565b34801561075557600080fd5b5061033a610764366004613ae7565b6114ab565b34801561077557600080fd5b506102c3610784366004613b7a565b6114b9565b34801561079557600080fd5b5061033a6107a4366004613a0a565b600b6020526000908152604090205460ff1681565b3480156107c557600080fd5b506102c36107d4366004613b4a565b6117e7565b3480156107e557600080fd5b506102c36107f4366004613b7a565b611891565b34801561080557600080fd5b506102c3610814366004613b7a565b611bbf565b34801561082557600080fd5b506102c3610834366004613b12565b611eed565b34801561084557600080fd5b50610377610854366004613a42565b611f73565b34801561086557600080fd5b506102c3610874366004613aba565b611f9e565b34801561088557600080fd5b50610377601c5481565b34801561089b57600080fd5b506102c36108aa366004613b7a565b612010565b3480156108bb57600080fd5b506102c36108ca366004613a0a565b61233e565b3480156108db57600080fd5b506103776108ea366004613b4a565b6123b7565b6108f76123e6565b6001600160a01b03821660009081526009602052604090205460ff161515811515141561093f5760405162461bcd60e51b815260040161093690613cb9565b60405180910390fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60606004805461097990613e14565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590613e14565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b600033610a0a818585612440565b5060019392505050565b600033610a22858285612564565b610a2d8585856125de565b506001949350505050565b6000600e54821115610a9f5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610936565b6000610aa96129b7565b9050610ab583826123c7565b9150505b919050565b610ac66123e6565b6001600160a01b0381166000908152600a602052604090205460ff16610b2e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610936565b60005b600c54811015610c8857816001600160a01b0316600c8281548110610b6657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c7657600c8054610b9190600190613dfd565b81548110610baf57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600c80546001600160a01b039092169183908110610be957634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600782526040808220829055600a90925220805460ff19169055600c805480610c4f57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610c88565b80610c8081613e4f565b915050610b31565b5050565b600033610a0a818585610c9f8383611f73565b610ca99190613da6565b612440565b60158181548110610cbe57600080fd5b600091825260209091200154905081565b610cd76123e6565b6001600160a01b0381166000908152600a602052604090205460ff1615610d405760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610936565b6001600160a01b03811660009081526006602052604090205415610d9a576001600160a01b038116600090815260066020526040902054610d8090610a38565b6001600160a01b0382166000908152600760205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b610e086123e6565b6001600160a01b038116610e2e5760405162461bcd60e51b815260040161093690613c5c565b600d80546001600160a01b0319166001600160a01b0383169081179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e7906020015b60405180910390a150565b6001600160a01b0381166000908152600a602052604081205460ff1615610ec357506001600160a01b038116600090815260076020526040902054610ab9565b6001600160a01b038216600090815260066020526040902054610ee590610a38565b92915050565b610ef36123e6565b610efd60006129da565b565b610f076123e6565b6001600160a01b038116610f2d5760405162461bcd60e51b815260040161093690613c5c565b604080516001600160a01b03831681524760208201527ffd69c215b8b91dab5e96ff0bcbaf5dc372919948eea2003ae16481c036f816f8910160405180910390a16040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610c88573d6000803e3d6000fd5b60138181548110610cbe57600080fd5b610fbb6123e6565b6001600160a01b038316610fe15760405162461bcd60e51b815260040161093690613c5c565b6001600160a01b0382166110075760405162461bcd60e51b815260040161093690613c5c565b6001600160a01b0383163014156110f2576011546010546040516370a0823160e01b81523060048201819052849361109f93909261109992906370a082319060240160206040518083038186803b15801561106157600080fd5b505afa158015611075573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110999190613b62565b906123da565b10156110ed5760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742062616c616e6365206f6e20636f6e74726163746044820152606401610936565b6111b9565b6040516370a0823160e01b815230600482015281906001600160a01b038516906370a082319060240160206040518083038186803b15801561113357600080fd5b505afa158015611147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116b9190613b62565b10156111b95760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742062616c616e6365206f6e20636f6e74726163746044820152606401610936565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b15801561120357600080fd5b505af1158015611217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123b9190613b2e565b50604080516001600160a01b038086168252841660208201529081018290527fc7372460dc9d750a8e86aab4229750d8df3d2d3a19784820f83c00c986e00611906060015b60405180910390a1505050565b60606005805461097990613e14565b6112a46123e6565b6001600160a01b0382166000908152600b602052604090205460ff16151581151514156113395760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610936565b601b546001600160a01b03838116911614156113bd5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610936565b6001600160a01b0382166000818152600b6020908152604091829020805460ff19168515159081179091558251938452908301527fef0b71f3a695ce5a89064cc2745d0c503cf766ed985e781607660be6010b8e90910160405180910390a15050565b60128181548110610cbe57600080fd5b6000338161143e8286611f73565b90508381101561149e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610936565b610a2d8286868403612440565b600033610a0a8185856125de565b6114c16123e6565b6109c48360156000815481106114e757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601460008154811061151457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601260008154811061154157634e487b7160e01b600052603260045260246000fd5b90600052602060002001546115569190613da6565b6115609190613da6565b61156a9190613da6565b11156115885760405162461bcd60e51b815260040161093690613c25565b6109c48260156001815481106115ae57634e487b7160e01b600052603260045260246000fd5b906000526020600020015460146001815481106115db57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601260018154811061160857634e487b7160e01b600052603260045260246000fd5b906000526020600020015461161d9190613da6565b6116279190613da6565b6116319190613da6565b111561164f5760405162461bcd60e51b815260040161093690613d01565b6109c481601560028154811061167557634e487b7160e01b600052603260045260246000fd5b906000526020600020015460146002815481106116a257634e487b7160e01b600052603260045260246000fd5b906000526020600020015460126002815481106116cf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546116e49190613da6565b6116ee9190613da6565b6116f89190613da6565b11156117165760405162461bcd60e51b815260040161093690613c82565b82601360008154811061173957634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555081601360018154811061176a57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555080601360028154811061179b57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527f3044b38769c2aa50acc652d2a51ec6a0712bb556a8cb713ee35dcf2ef3f0507590606001611280565b6117ef6123e6565b6c070318c8e574c41eac8dac000081111561185c5760405162461bcd60e51b815260206004820152602760248201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060448201526639bab838363c9760c91b6064820152608401610936565b601c8190556040518181527f28ea3a80049e637c2f1bf658d47a07f688bea6e931f3c1930cf4a4daf97b186090602001610e78565b6118996123e6565b6109c48360146000815481106118bf57634e487b7160e01b600052603260045260246000fd5b906000526020600020015460136000815481106118ec57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601260008154811061191957634e487b7160e01b600052603260045260246000fd5b906000526020600020015461192e9190613da6565b6119389190613da6565b6119429190613da6565b11156119605760405162461bcd60e51b815260040161093690613c25565b6109c482601460018154811061198657634e487b7160e01b600052603260045260246000fd5b906000526020600020015460136001815481106119b357634e487b7160e01b600052603260045260246000fd5b906000526020600020015460126001815481106119e057634e487b7160e01b600052603260045260246000fd5b90600052602060002001546119f59190613da6565b6119ff9190613da6565b611a099190613da6565b1115611a275760405162461bcd60e51b815260040161093690613d01565b6109c4816014600281548110611a4d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546013600281548110611a7a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546012600281548110611aa757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611abc9190613da6565b611ac69190613da6565b611ad09190613da6565b1115611aee5760405162461bcd60e51b815260040161093690613c82565b826015600081548110611b1157634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550816015600181548110611b4257634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806015600281548110611b7357634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527fdb668637f24e0b87780ad41181b37f3dfe677190806a00fabad4191588b9011390606001611280565b611bc76123e6565b6109c4836015600081548110611bed57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546013600081548110611c1a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546012600081548110611c4757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611c5c9190613da6565b611c669190613da6565b611c709190613da6565b1115611c8e5760405162461bcd60e51b815260040161093690613c25565b6109c4826015600181548110611cb457634e487b7160e01b600052603260045260246000fd5b90600052602060002001546013600181548110611ce157634e487b7160e01b600052603260045260246000fd5b90600052602060002001546012600181548110611d0e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611d239190613da6565b611d2d9190613da6565b611d379190613da6565b1115611d555760405162461bcd60e51b815260040161093690613d01565b6109c4816015600281548110611d7b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546013600281548110611da857634e487b7160e01b600052603260045260246000fd5b90600052602060002001546012600281548110611dd557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611dea9190613da6565b611df49190613da6565b611dfe9190613da6565b1115611e1c5760405162461bcd60e51b815260040161093690613c82565b826014600081548110611e3f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550816014600181548110611e7057634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806014600281548110611ea157634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527fba16035156e8913004ada62e7f85968008b3a45502bd335816bc697aed12374190606001611280565b611ef56123e6565b601b5460ff600160a81b9091041615158115151415611f265760405162461bcd60e51b815260040161093690613cb9565b601b8054821515600160a81b0260ff60a81b199091161790556040517f083ec94fdbe7b9156108be7401c9808cd45be92d8bcba03f203523515831146c90610e7890831515815260200190565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611fa66123e6565b6001600160a01b03821660009081526008602052604090205460ff1615158115151415611fe55760405162461bcd60e51b815260040161093690613cb9565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6120186123e6565b6109c483601560008154811061203e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601460008154811061206b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601360008154811061209857634e487b7160e01b600052603260045260246000fd5b90600052602060002001546120ad9190613da6565b6120b79190613da6565b6120c19190613da6565b11156120df5760405162461bcd60e51b815260040161093690613c25565b6109c482601560018154811061210557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601460018154811061213257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601360018154811061215f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546121749190613da6565b61217e9190613da6565b6121889190613da6565b11156121a65760405162461bcd60e51b815260040161093690613d01565b6109c48160156002815481106121cc57634e487b7160e01b600052603260045260246000fd5b906000526020600020015460146002815481106121f957634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601360028154811061222657634e487b7160e01b600052603260045260246000fd5b906000526020600020015461223b9190613da6565b6122459190613da6565b61224f9190613da6565b111561226d5760405162461bcd60e51b815260040161093690613c82565b82601260008154811061229057634e487b7160e01b600052603260045260246000fd5b90600052602060002001819055508160126001815481106122c157634e487b7160e01b600052603260045260246000fd5b90600052602060002001819055508060126002815481106122f257634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527fa2e3a2fc9e2d3de89081c9ccf4a886d5b03b390a0143445e31a9bb4a1f49556490606001611280565b6123466123e6565b6001600160a01b0381166123ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610936565b6123b4816129da565b50565b60148181548110610cbe57600080fd5b60006123d38284613dbe565b9392505050565b60006123d38284613dfd565b6000546001600160a01b03163314610efd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b6001600160a01b0383166124a25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610936565b6001600160a01b0382166125035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610936565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006125708484611f73565b905060001981146125d857818110156125cb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610936565b6125d88484848403612440565b50505050565b6001600160a01b0383166126425760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610936565b6001600160a01b0382166126a45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610936565b600081116127065760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610936565b6001600160a01b03821660009081526009602052604090205460ff166127a057600061273183610e83565b601d549091506127418383613da6565b111561279e5760405162461bcd60e51b815260206004820152602660248201527f45786365656473206d6178696d756d20746f6b656e207065722077616c6c6574604482015265081b1a5b5a5d60d21b6064820152608401610936565b505b60006127ab30610e83565b601c54909150811080159081906127cc5750601b54600160a01b900460ff16155b80156127f057506001600160a01b0384166000908152600b602052604090205460ff165b80156128055750601b54600160a81b900460ff165b156129585760105460009061281b9060026123c7565b601154909150600061282d8383612a2a565b9050601c54811061295457601b805460ff60a01b1916600160a01b179055601c54479061285990612a36565b600061286547836123da565b9050600061287d846128778489612bb3565b906123c7565b9050600061288b8284613dfd565b905081156128d85760006128ae866128778a601c54612bb390919063ffffffff16565b90506128ba8184612bbf565b6128d381611099836010546123da90919063ffffffff16565b601055505b801561294257600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612918573d6000803e3d6000fd5b5061293e6129358661287789601c54612bb390919063ffffffff16565b601154906123da565b6011555b5050601b805460ff60a01b1916905550505b5050505b6001600160a01b03851660009081526008602052604090205460019060ff168061299a57506001600160a01b03851660009081526008602052604090205460ff165b156129a3575060005b6129af86868684612c7f565b505050505050565b60008060006129c4612eda565b90925090506129d382826123c7565b9250505090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006123d38284613da6565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a7957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601a54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612acd57600080fd5b505afa158015612ae1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b059190613a26565b81600181518110612b2657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601a54612b4c9130911684612440565b601a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612b85908590600090869030904290600401613d36565b600060405180830381600087803b158015612b9f57600080fd5b505af11580156129af573d6000803e3d6000fd5b60006123d38284613dde565b601a54612bd79030906001600160a01b031684612440565b601a5460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015612c3f57600080fd5b505af1158015612c53573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c789190613ba5565b5050505050565b80612ca257612c9d6000601881905560178190556016819055601955565b612d22565b6001600160a01b0384166000908152600b602052604090205460ff16158015612ce457506001600160a01b0383166000908152600b602052604090205460ff16155b15612cf157612c9d6130c3565b6001600160a01b0383166000908152600b602052604090205460ff1615612d1a57612c9d61318f565b612d2261324a565b6000612d2d83613305565b90508015612d8157612d3e81613322565b60405181815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b6001600160a01b0385166000908152600a602052604090205460ff168015612dc257506001600160a01b0384166000908152600a602052604090205460ff16155b15612dd857612dd385858584613435565b612c78565b6001600160a01b0385166000908152600a602052604090205460ff16158015612e1957506001600160a01b0384166000908152600a602052604090205460ff165b15612e2a57612dd385858584613626565b6001600160a01b0385166000908152600a602052604090205460ff16158015612e6c57506001600160a01b0384166000908152600a602052604090205460ff16155b15612e7d57612dd3858585846136f6565b6001600160a01b0385166000908152600a602052604090205460ff168015612ebd57506001600160a01b0384166000908152600a602052604090205460ff165b15612ece57612dd385858584613761565b612c78858585846136f6565b600e5460009081906c070318c8e574c41eac8dac0000825b600c5481101561307b578260066000600c8481548110612f2257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612f9b57508160076000600c8481548110612f7457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612fbd57600e546c070318c8e574c41eac8dac0000945094505050506130bf565b61301160066000600c8481548110612fe557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906123da565b925061306760076000600c848154811061303b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906123da565b91508061307381613e4f565b915050612ef2565b50600e54613096906c070318c8e574c41eac8dac00006123c7565b8210156130b957600e546c070318c8e574c41eac8dac00009350935050506130bf565b90925090505b9091565b60146002815481106130e557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601881905550601360028154811061311857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601781905550601260028154811061314b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601681905550601560028154811061317e57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601955565b60146001815481106131b157634e487b7160e01b600052603260045260246000fd5b906000526020600020015460188190555060136001815481106131e457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601781905550601260018154811061321757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601681905550601560018154811061317e57634e487b7160e01b600052603260045260246000fd5b601460008154811061326c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601881905550601360008154811061329f57634e487b7160e01b600052603260045260246000fd5b906000526020600020015460178190555060126000815481106132d257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601681905550601560008154811061317e57634e487b7160e01b600052603260045260246000fd5b6000610ee561271061287760195485612bb390919063ffffffff16565b600061332c6129b7565b9050600061333a8383612bb3565b61dead60005260066020527f1aecba4ebe7a4e0673e4891b2b092b2228e4322380b579fb494fad3da8586e22549091506133749082612a2a565b61dead6000527f1aecba4ebe7a4e0673e4891b2b092b2228e4322380b579fb494fad3da8586e2255600a6020527f20677881080440a9b3c87e826370bb5d9c2f74efd4dede686d52d77a6a09f8bb5460ff16156134305761dead60005260076020527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d546134029084612a2a565b61dead60005260076020527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d555b505050565b6000806000806000806000613449896137fb565b965096509650965096509650965061346a88856123da90919063ffffffff16565b935061348861348161347a6129b7565b8a90612bb3565b87906123da565b6001600160a01b038c166000908152600760205260409020549096506134ae908a6123da565b6001600160a01b038c166000908152600760209081526040808320939093556006905220546134dd90886123da565b6001600160a01b03808d1660009081526006602052604080822093909355908c168152205461350c9087612a2a565b6001600160a01b038b1660009081526006602052604090205561352e82613856565b61353781613856565b61354185846138de565b81601060008282546135539190613da6565b92505081905550806011600082825461356c9190613da6565b909155506000905061357e8284612a2a565b11156135cc57306001600160a01b038c167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6135ba8486612a2a565b60405190815260200160405180910390a35b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161361191815260200190565b60405180910390a35050505050505050505050565b600080600080600080600061363a896137fb565b965096509650965096509650965061365b88856123da90919063ffffffff16565b935061366b61348161347a6129b7565b6001600160a01b038c1660009081526006602052604090205490965061369190886123da565b6001600160a01b03808d16600090815260066020908152604080832094909455918d168152600790915220546136c79085612a2a565b6001600160a01b038b1660009081526007602090815260408083209390935560069052205461350c9087612a2a565b600080600080600080600061370a896137fb565b965096509650965096509650965061372b88856123da90919063ffffffff16565b935061373b61348161347a6129b7565b6001600160a01b038c166000908152600660205260409020549096506134dd90886123da565b6000806000806000806000613775896137fb565b965096509650965096509650965061379688856123da90919063ffffffff16565b93506137a661348161347a6129b7565b6001600160a01b038c166000908152600760205260409020549096506137cc908a6123da565b6001600160a01b038c1660009081526007602090815260408083209390935560069052205461369190886123da565b60008060008060008060008060008060006138158c613902565b935093509350935060008060006138368f8787876138316129b7565b613951565b919f509d509b509599509397509195509350505050919395979092949650565b60006138606129b7565b9050600061386e8383612bb3565b3060009081526006602052604090205490915061388b9082612a2a565b30600090815260066020908152604080832093909355600a9052205460ff161561343057306000908152600760205260409020546138c99084612a2a565b30600090815260076020526040902055505050565b600e546138eb90836123da565b600e55600f546138fb9082612a2a565b600f555050565b6000806000806000613913866139b3565b90506000613920876139d0565b9050600061392d886139ed565b905060006139418261109985818d896123da565b9993985091965094509092505050565b60008080806139608986612bb3565b9050600061396e8987612bb3565b9050600061397c8988612bb3565b9050600061398a8989612bb3565b9050600061399e82611099858189896123da565b949d949c50929a509298505050505050505050565b6000610ee561271061287760185485612bb390919063ffffffff16565b6000610ee561271061287760165485612bb390919063ffffffff16565b6000610ee561271061287760175485612bb390919063ffffffff16565b600060208284031215613a1b578081fd5b81356123d381613e80565b600060208284031215613a37578081fd5b81516123d381613e80565b60008060408385031215613a54578081fd5b8235613a5f81613e80565b91506020830135613a6f81613e80565b809150509250929050565b600080600060608486031215613a8e578081fd5b8335613a9981613e80565b92506020840135613aa981613e80565b929592945050506040919091013590565b60008060408385031215613acc578182fd5b8235613ad781613e80565b91506020830135613a6f81613e95565b60008060408385031215613af9578182fd5b8235613b0481613e80565b946020939093013593505050565b600060208284031215613b23578081fd5b81356123d381613e95565b600060208284031215613b3f578081fd5b81516123d381613e95565b600060208284031215613b5b578081fd5b5035919050565b600060208284031215613b73578081fd5b5051919050565b600080600060608486031215613b8e578283fd5b505081359360208301359350604090920135919050565b600080600060608486031215613bb9578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015613bfe57858101830151858201604001528201613be2565b81811115613c0f5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601f908201527f4d617820666565206c696d6974207265616368656420666f7220274255592700604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b6020808252601f908201527f4d617820666565206c696d6974207265616368656420666f7220275032502700604082015260600190565b60208082526028908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015267277374617475732760c01b606082015260800190565b6020808252818101527f4d617820666565206c696d6974207265616368656420666f72202753454c4c27604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015613d855784516001600160a01b031683529383019391830191600101613d60565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115613db957613db9613e6a565b500190565b600082613dd957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613df857613df8613e6a565b500290565b600082821015613e0f57613e0f613e6a565b500390565b600281046001821680613e2857607f821691505b60208210811415613e4957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613e6357613e63613e6a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146123b457600080fd5b80151581146123b457600080fdfea26469706673582212209db8d2f101af591ef303bbe56a281d4f381e9dca20cb97dc0365a4952c571c5064736f6c63430008020033000000000000000000000000cea1c8427fe7797613ac0f7a0decb517dc0f84b6

Deployed Bytecode

0x6080604052600436106102975760003560e01c806374da7cd81161015a578063a918299c116100c1578063dd62ed3e1161007a578063dd62ed3e14610839578063df8408fe14610859578063e2f4560514610879578063ea0a605f1461088f578063f2fde38b146108af578063fcef8867146108cf5761029e565b8063a918299c14610769578063a9b232d914610789578063afa4f3b2146107b9578063b4f500dd146107d9578063c065d7f0146107f9578063c49b9a80146108195761029e565b8063957537f911610113578063957537f9146106b457806395d89b41146106d45780639a7a23d6146106e9578063a046bc7814610709578063a457c2d714610729578063a9059cbb146107495761029e565b806374da7cd8146105f057806375f0a87414610610578063768dc710146106305780637a8baf521461066057806382fb7119146106765780638da5cb5b146106965761029e565b806339509351116101fe57806352390c02116101b757806352390c021461054f5780635d098b381461056f5780636ba5b8b81461058f57806370a08231146105a5578063715018a6146105c5578063735039d1146105da5761029e565b806339509351146104715780633b7e6d4a146104915780633c6ca5c1146104be57806349ae028a146104ee57806349bd5a5e1461050e5780634a74bb021461052e5761029e565b806318160ddd1161025057806318160ddd146103a557806323b872dd146103c557806328e6c7e7146103e55780632d83811914610415578063313ce567146104355780633685d419146104515761029e565b806301d7532d146102a357806306228749146102c557806306fdde03146102f8578063095ea7b31461031a5780630cfc15f91461034a5780631694505e146103855761029e565b3661029e57005b600080fd5b3480156102af57600080fd5b506102c36102be366004613aba565b6108ef565b005b3480156102d157600080fd5b506102db61dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561030457600080fd5b5061030d61096a565b6040516102ef9190613bd2565b34801561032657600080fd5b5061033a610335366004613ae7565b6109fc565b60405190151581526020016102ef565b34801561035657600080fd5b50610377610365366004613a0a565b60066020526000908152604090205481565b6040519081526020016102ef565b34801561039157600080fd5b50601a546102db906001600160a01b031681565b3480156103b157600080fd5b506c070318c8e574c41eac8dac0000610377565b3480156103d157600080fd5b5061033a6103e0366004613a7a565b610a14565b3480156103f157600080fd5b5061033a610400366004613a0a565b60096020526000908152604090205460ff1681565b34801561042157600080fd5b50610377610430366004613b4a565b610a38565b34801561044157600080fd5b50604051601281526020016102ef565b34801561045d57600080fd5b506102c361046c366004613a0a565b610abe565b34801561047d57600080fd5b5061033a61048c366004613ae7565b610c8c565b34801561049d57600080fd5b506103776104ac366004613a0a565b60076020526000908152604090205481565b3480156104ca57600080fd5b5061033a6104d9366004613a0a565b600a6020526000908152604090205460ff1681565b3480156104fa57600080fd5b50610377610509366004613b4a565b610cae565b34801561051a57600080fd5b50601b546102db906001600160a01b031681565b34801561053a57600080fd5b50601b5461033a90600160a81b900460ff1681565b34801561055b57600080fd5b506102c361056a366004613a0a565b610ccf565b34801561057b57600080fd5b506102c361058a366004613a0a565b610e00565b34801561059b57600080fd5b5061037760105481565b3480156105b157600080fd5b506103776105c0366004613a0a565b610e83565b3480156105d157600080fd5b506102c3610eeb565b3480156105e657600080fd5b5061037760115481565b3480156105fc57600080fd5b506102c361060b366004613a0a565b610eff565b34801561061c57600080fd5b50600d546102db906001600160a01b031681565b34801561063c57600080fd5b5061033a61064b366004613a0a565b60086020526000908152604090205460ff1681565b34801561066c57600080fd5b50610377601d5481565b34801561068257600080fd5b50610377610691366004613b4a565b610fa3565b3480156106a257600080fd5b506000546001600160a01b03166102db565b3480156106c057600080fd5b506102c36106cf366004613a7a565b610fb3565b3480156106e057600080fd5b5061030d61128d565b3480156106f557600080fd5b506102c3610704366004613aba565b61129c565b34801561071557600080fd5b50610377610724366004613b4a565b611420565b34801561073557600080fd5b5061033a610744366004613ae7565b611430565b34801561075557600080fd5b5061033a610764366004613ae7565b6114ab565b34801561077557600080fd5b506102c3610784366004613b7a565b6114b9565b34801561079557600080fd5b5061033a6107a4366004613a0a565b600b6020526000908152604090205460ff1681565b3480156107c557600080fd5b506102c36107d4366004613b4a565b6117e7565b3480156107e557600080fd5b506102c36107f4366004613b7a565b611891565b34801561080557600080fd5b506102c3610814366004613b7a565b611bbf565b34801561082557600080fd5b506102c3610834366004613b12565b611eed565b34801561084557600080fd5b50610377610854366004613a42565b611f73565b34801561086557600080fd5b506102c3610874366004613aba565b611f9e565b34801561088557600080fd5b50610377601c5481565b34801561089b57600080fd5b506102c36108aa366004613b7a565b612010565b3480156108bb57600080fd5b506102c36108ca366004613a0a565b61233e565b3480156108db57600080fd5b506103776108ea366004613b4a565b6123b7565b6108f76123e6565b6001600160a01b03821660009081526009602052604090205460ff161515811515141561093f5760405162461bcd60e51b815260040161093690613cb9565b60405180910390fd5b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b60606004805461097990613e14565b80601f01602080910402602001604051908101604052809291908181526020018280546109a590613e14565b80156109f25780601f106109c7576101008083540402835291602001916109f2565b820191906000526020600020905b8154815290600101906020018083116109d557829003601f168201915b5050505050905090565b600033610a0a818585612440565b5060019392505050565b600033610a22858285612564565b610a2d8585856125de565b506001949350505050565b6000600e54821115610a9f5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610936565b6000610aa96129b7565b9050610ab583826123c7565b9150505b919050565b610ac66123e6565b6001600160a01b0381166000908152600a602052604090205460ff16610b2e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610936565b60005b600c54811015610c8857816001600160a01b0316600c8281548110610b6657634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c7657600c8054610b9190600190613dfd565b81548110610baf57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600c80546001600160a01b039092169183908110610be957634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600782526040808220829055600a90925220805460ff19169055600c805480610c4f57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b0319169055019055610c88565b80610c8081613e4f565b915050610b31565b5050565b600033610a0a818585610c9f8383611f73565b610ca99190613da6565b612440565b60158181548110610cbe57600080fd5b600091825260209091200154905081565b610cd76123e6565b6001600160a01b0381166000908152600a602052604090205460ff1615610d405760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610936565b6001600160a01b03811660009081526006602052604090205415610d9a576001600160a01b038116600090815260066020526040902054610d8090610a38565b6001600160a01b0382166000908152600760205260409020555b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600c805491820181559091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319169091179055565b610e086123e6565b6001600160a01b038116610e2e5760405162461bcd60e51b815260040161093690613c5c565b600d80546001600160a01b0319166001600160a01b0383169081179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e7906020015b60405180910390a150565b6001600160a01b0381166000908152600a602052604081205460ff1615610ec357506001600160a01b038116600090815260076020526040902054610ab9565b6001600160a01b038216600090815260066020526040902054610ee590610a38565b92915050565b610ef36123e6565b610efd60006129da565b565b610f076123e6565b6001600160a01b038116610f2d5760405162461bcd60e51b815260040161093690613c5c565b604080516001600160a01b03831681524760208201527ffd69c215b8b91dab5e96ff0bcbaf5dc372919948eea2003ae16481c036f816f8910160405180910390a16040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610c88573d6000803e3d6000fd5b60138181548110610cbe57600080fd5b610fbb6123e6565b6001600160a01b038316610fe15760405162461bcd60e51b815260040161093690613c5c565b6001600160a01b0382166110075760405162461bcd60e51b815260040161093690613c5c565b6001600160a01b0383163014156110f2576011546010546040516370a0823160e01b81523060048201819052849361109f93909261109992906370a082319060240160206040518083038186803b15801561106157600080fd5b505afa158015611075573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110999190613b62565b906123da565b10156110ed5760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742062616c616e6365206f6e20636f6e74726163746044820152606401610936565b6111b9565b6040516370a0823160e01b815230600482015281906001600160a01b038516906370a082319060240160206040518083038186803b15801561113357600080fd5b505afa158015611147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116b9190613b62565b10156111b95760405162461bcd60e51b815260206004820181905260248201527f496e73756666696369656e742062616c616e6365206f6e20636f6e74726163746044820152606401610936565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b15801561120357600080fd5b505af1158015611217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123b9190613b2e565b50604080516001600160a01b038086168252841660208201529081018290527fc7372460dc9d750a8e86aab4229750d8df3d2d3a19784820f83c00c986e00611906060015b60405180910390a1505050565b60606005805461097990613e14565b6112a46123e6565b6001600160a01b0382166000908152600b602052604090205460ff16151581151514156113395760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610936565b601b546001600160a01b03838116911614156113bd5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610936565b6001600160a01b0382166000818152600b6020908152604091829020805460ff19168515159081179091558251938452908301527fef0b71f3a695ce5a89064cc2745d0c503cf766ed985e781607660be6010b8e90910160405180910390a15050565b60128181548110610cbe57600080fd5b6000338161143e8286611f73565b90508381101561149e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610936565b610a2d8286868403612440565b600033610a0a8185856125de565b6114c16123e6565b6109c48360156000815481106114e757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601460008154811061151457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601260008154811061154157634e487b7160e01b600052603260045260246000fd5b90600052602060002001546115569190613da6565b6115609190613da6565b61156a9190613da6565b11156115885760405162461bcd60e51b815260040161093690613c25565b6109c48260156001815481106115ae57634e487b7160e01b600052603260045260246000fd5b906000526020600020015460146001815481106115db57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601260018154811061160857634e487b7160e01b600052603260045260246000fd5b906000526020600020015461161d9190613da6565b6116279190613da6565b6116319190613da6565b111561164f5760405162461bcd60e51b815260040161093690613d01565b6109c481601560028154811061167557634e487b7160e01b600052603260045260246000fd5b906000526020600020015460146002815481106116a257634e487b7160e01b600052603260045260246000fd5b906000526020600020015460126002815481106116cf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546116e49190613da6565b6116ee9190613da6565b6116f89190613da6565b11156117165760405162461bcd60e51b815260040161093690613c82565b82601360008154811061173957634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555081601360018154811061176a57634e487b7160e01b600052603260045260246000fd5b906000526020600020018190555080601360028154811061179b57634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527f3044b38769c2aa50acc652d2a51ec6a0712bb556a8cb713ee35dcf2ef3f0507590606001611280565b6117ef6123e6565b6c070318c8e574c41eac8dac000081111561185c5760405162461bcd60e51b815260206004820152602760248201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060448201526639bab838363c9760c91b6064820152608401610936565b601c8190556040518181527f28ea3a80049e637c2f1bf658d47a07f688bea6e931f3c1930cf4a4daf97b186090602001610e78565b6118996123e6565b6109c48360146000815481106118bf57634e487b7160e01b600052603260045260246000fd5b906000526020600020015460136000815481106118ec57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601260008154811061191957634e487b7160e01b600052603260045260246000fd5b906000526020600020015461192e9190613da6565b6119389190613da6565b6119429190613da6565b11156119605760405162461bcd60e51b815260040161093690613c25565b6109c482601460018154811061198657634e487b7160e01b600052603260045260246000fd5b906000526020600020015460136001815481106119b357634e487b7160e01b600052603260045260246000fd5b906000526020600020015460126001815481106119e057634e487b7160e01b600052603260045260246000fd5b90600052602060002001546119f59190613da6565b6119ff9190613da6565b611a099190613da6565b1115611a275760405162461bcd60e51b815260040161093690613d01565b6109c4816014600281548110611a4d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546013600281548110611a7a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546012600281548110611aa757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611abc9190613da6565b611ac69190613da6565b611ad09190613da6565b1115611aee5760405162461bcd60e51b815260040161093690613c82565b826015600081548110611b1157634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550816015600181548110611b4257634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806015600281548110611b7357634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527fdb668637f24e0b87780ad41181b37f3dfe677190806a00fabad4191588b9011390606001611280565b611bc76123e6565b6109c4836015600081548110611bed57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546013600081548110611c1a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546012600081548110611c4757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611c5c9190613da6565b611c669190613da6565b611c709190613da6565b1115611c8e5760405162461bcd60e51b815260040161093690613c25565b6109c4826015600181548110611cb457634e487b7160e01b600052603260045260246000fd5b90600052602060002001546013600181548110611ce157634e487b7160e01b600052603260045260246000fd5b90600052602060002001546012600181548110611d0e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611d239190613da6565b611d2d9190613da6565b611d379190613da6565b1115611d555760405162461bcd60e51b815260040161093690613d01565b6109c4816015600281548110611d7b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546013600281548110611da857634e487b7160e01b600052603260045260246000fd5b90600052602060002001546012600281548110611dd557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154611dea9190613da6565b611df49190613da6565b611dfe9190613da6565b1115611e1c5760405162461bcd60e51b815260040161093690613c82565b826014600081548110611e3f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550816014600181548110611e7057634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806014600281548110611ea157634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527fba16035156e8913004ada62e7f85968008b3a45502bd335816bc697aed12374190606001611280565b611ef56123e6565b601b5460ff600160a81b9091041615158115151415611f265760405162461bcd60e51b815260040161093690613cb9565b601b8054821515600160a81b0260ff60a81b199091161790556040517f083ec94fdbe7b9156108be7401c9808cd45be92d8bcba03f203523515831146c90610e7890831515815260200190565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611fa66123e6565b6001600160a01b03821660009081526008602052604090205460ff1615158115151415611fe55760405162461bcd60e51b815260040161093690613cb9565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b6120186123e6565b6109c483601560008154811061203e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601460008154811061206b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601360008154811061209857634e487b7160e01b600052603260045260246000fd5b90600052602060002001546120ad9190613da6565b6120b79190613da6565b6120c19190613da6565b11156120df5760405162461bcd60e51b815260040161093690613c25565b6109c482601560018154811061210557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601460018154811061213257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601360018154811061215f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001546121749190613da6565b61217e9190613da6565b6121889190613da6565b11156121a65760405162461bcd60e51b815260040161093690613d01565b6109c48160156002815481106121cc57634e487b7160e01b600052603260045260246000fd5b906000526020600020015460146002815481106121f957634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601360028154811061222657634e487b7160e01b600052603260045260246000fd5b906000526020600020015461223b9190613da6565b6122459190613da6565b61224f9190613da6565b111561226d5760405162461bcd60e51b815260040161093690613c82565b82601260008154811061229057634e487b7160e01b600052603260045260246000fd5b90600052602060002001819055508160126001815481106122c157634e487b7160e01b600052603260045260246000fd5b90600052602060002001819055508060126002815481106122f257634e487b7160e01b600052603260045260246000fd5b600091825260209182902001919091556040805185815291820184905281018290527fa2e3a2fc9e2d3de89081c9ccf4a886d5b03b390a0143445e31a9bb4a1f49556490606001611280565b6123466123e6565b6001600160a01b0381166123ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610936565b6123b4816129da565b50565b60148181548110610cbe57600080fd5b60006123d38284613dbe565b9392505050565b60006123d38284613dfd565b6000546001600160a01b03163314610efd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610936565b6001600160a01b0383166124a25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610936565b6001600160a01b0382166125035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610936565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006125708484611f73565b905060001981146125d857818110156125cb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610936565b6125d88484848403612440565b50505050565b6001600160a01b0383166126425760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610936565b6001600160a01b0382166126a45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610936565b600081116127065760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610936565b6001600160a01b03821660009081526009602052604090205460ff166127a057600061273183610e83565b601d549091506127418383613da6565b111561279e5760405162461bcd60e51b815260206004820152602660248201527f45786365656473206d6178696d756d20746f6b656e207065722077616c6c6574604482015265081b1a5b5a5d60d21b6064820152608401610936565b505b60006127ab30610e83565b601c54909150811080159081906127cc5750601b54600160a01b900460ff16155b80156127f057506001600160a01b0384166000908152600b602052604090205460ff165b80156128055750601b54600160a81b900460ff165b156129585760105460009061281b9060026123c7565b601154909150600061282d8383612a2a565b9050601c54811061295457601b805460ff60a01b1916600160a01b179055601c54479061285990612a36565b600061286547836123da565b9050600061287d846128778489612bb3565b906123c7565b9050600061288b8284613dfd565b905081156128d85760006128ae866128778a601c54612bb390919063ffffffff16565b90506128ba8184612bbf565b6128d381611099836010546123da90919063ffffffff16565b601055505b801561294257600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612918573d6000803e3d6000fd5b5061293e6129358661287789601c54612bb390919063ffffffff16565b601154906123da565b6011555b5050601b805460ff60a01b1916905550505b5050505b6001600160a01b03851660009081526008602052604090205460019060ff168061299a57506001600160a01b03851660009081526008602052604090205460ff165b156129a3575060005b6129af86868684612c7f565b505050505050565b60008060006129c4612eda565b90925090506129d382826123c7565b9250505090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006123d38284613da6565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612a7957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601a54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612acd57600080fd5b505afa158015612ae1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b059190613a26565b81600181518110612b2657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601a54612b4c9130911684612440565b601a5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612b85908590600090869030904290600401613d36565b600060405180830381600087803b158015612b9f57600080fd5b505af11580156129af573d6000803e3d6000fd5b60006123d38284613dde565b601a54612bd79030906001600160a01b031684612440565b601a5460405163f305d71960e01b8152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c4016060604051808303818588803b158015612c3f57600080fd5b505af1158015612c53573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c789190613ba5565b5050505050565b80612ca257612c9d6000601881905560178190556016819055601955565b612d22565b6001600160a01b0384166000908152600b602052604090205460ff16158015612ce457506001600160a01b0383166000908152600b602052604090205460ff16155b15612cf157612c9d6130c3565b6001600160a01b0383166000908152600b602052604090205460ff1615612d1a57612c9d61318f565b612d2261324a565b6000612d2d83613305565b90508015612d8157612d3e81613322565b60405181815261dead906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b6001600160a01b0385166000908152600a602052604090205460ff168015612dc257506001600160a01b0384166000908152600a602052604090205460ff16155b15612dd857612dd385858584613435565b612c78565b6001600160a01b0385166000908152600a602052604090205460ff16158015612e1957506001600160a01b0384166000908152600a602052604090205460ff165b15612e2a57612dd385858584613626565b6001600160a01b0385166000908152600a602052604090205460ff16158015612e6c57506001600160a01b0384166000908152600a602052604090205460ff16155b15612e7d57612dd3858585846136f6565b6001600160a01b0385166000908152600a602052604090205460ff168015612ebd57506001600160a01b0384166000908152600a602052604090205460ff165b15612ece57612dd385858584613761565b612c78858585846136f6565b600e5460009081906c070318c8e574c41eac8dac0000825b600c5481101561307b578260066000600c8481548110612f2257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612f9b57508160076000600c8481548110612f7457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612fbd57600e546c070318c8e574c41eac8dac0000945094505050506130bf565b61301160066000600c8481548110612fe557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906123da565b925061306760076000600c848154811061303b57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906123da565b91508061307381613e4f565b915050612ef2565b50600e54613096906c070318c8e574c41eac8dac00006123c7565b8210156130b957600e546c070318c8e574c41eac8dac00009350935050506130bf565b90925090505b9091565b60146002815481106130e557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601881905550601360028154811061311857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601781905550601260028154811061314b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601681905550601560028154811061317e57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601955565b60146001815481106131b157634e487b7160e01b600052603260045260246000fd5b906000526020600020015460188190555060136001815481106131e457634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601781905550601260018154811061321757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601681905550601560018154811061317e57634e487b7160e01b600052603260045260246000fd5b601460008154811061326c57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601881905550601360008154811061329f57634e487b7160e01b600052603260045260246000fd5b906000526020600020015460178190555060126000815481106132d257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154601681905550601560008154811061317e57634e487b7160e01b600052603260045260246000fd5b6000610ee561271061287760195485612bb390919063ffffffff16565b600061332c6129b7565b9050600061333a8383612bb3565b61dead60005260066020527f1aecba4ebe7a4e0673e4891b2b092b2228e4322380b579fb494fad3da8586e22549091506133749082612a2a565b61dead6000527f1aecba4ebe7a4e0673e4891b2b092b2228e4322380b579fb494fad3da8586e2255600a6020527f20677881080440a9b3c87e826370bb5d9c2f74efd4dede686d52d77a6a09f8bb5460ff16156134305761dead60005260076020527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d546134029084612a2a565b61dead60005260076020527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d555b505050565b6000806000806000806000613449896137fb565b965096509650965096509650965061346a88856123da90919063ffffffff16565b935061348861348161347a6129b7565b8a90612bb3565b87906123da565b6001600160a01b038c166000908152600760205260409020549096506134ae908a6123da565b6001600160a01b038c166000908152600760209081526040808320939093556006905220546134dd90886123da565b6001600160a01b03808d1660009081526006602052604080822093909355908c168152205461350c9087612a2a565b6001600160a01b038b1660009081526006602052604090205561352e82613856565b61353781613856565b61354185846138de565b81601060008282546135539190613da6565b92505081905550806011600082825461356c9190613da6565b909155506000905061357e8284612a2a565b11156135cc57306001600160a01b038c167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6135ba8486612a2a565b60405190815260200160405180910390a35b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161361191815260200190565b60405180910390a35050505050505050505050565b600080600080600080600061363a896137fb565b965096509650965096509650965061365b88856123da90919063ffffffff16565b935061366b61348161347a6129b7565b6001600160a01b038c1660009081526006602052604090205490965061369190886123da565b6001600160a01b03808d16600090815260066020908152604080832094909455918d168152600790915220546136c79085612a2a565b6001600160a01b038b1660009081526007602090815260408083209390935560069052205461350c9087612a2a565b600080600080600080600061370a896137fb565b965096509650965096509650965061372b88856123da90919063ffffffff16565b935061373b61348161347a6129b7565b6001600160a01b038c166000908152600660205260409020549096506134dd90886123da565b6000806000806000806000613775896137fb565b965096509650965096509650965061379688856123da90919063ffffffff16565b93506137a661348161347a6129b7565b6001600160a01b038c166000908152600760205260409020549096506137cc908a6123da565b6001600160a01b038c1660009081526007602090815260408083209390935560069052205461369190886123da565b60008060008060008060008060008060006138158c613902565b935093509350935060008060006138368f8787876138316129b7565b613951565b919f509d509b509599509397509195509350505050919395979092949650565b60006138606129b7565b9050600061386e8383612bb3565b3060009081526006602052604090205490915061388b9082612a2a565b30600090815260066020908152604080832093909355600a9052205460ff161561343057306000908152600760205260409020546138c99084612a2a565b30600090815260076020526040902055505050565b600e546138eb90836123da565b600e55600f546138fb9082612a2a565b600f555050565b6000806000806000613913866139b3565b90506000613920876139d0565b9050600061392d886139ed565b905060006139418261109985818d896123da565b9993985091965094509092505050565b60008080806139608986612bb3565b9050600061396e8987612bb3565b9050600061397c8988612bb3565b9050600061398a8989612bb3565b9050600061399e82611099858189896123da565b949d949c50929a509298505050505050505050565b6000610ee561271061287760185485612bb390919063ffffffff16565b6000610ee561271061287760165485612bb390919063ffffffff16565b6000610ee561271061287760175485612bb390919063ffffffff16565b600060208284031215613a1b578081fd5b81356123d381613e80565b600060208284031215613a37578081fd5b81516123d381613e80565b60008060408385031215613a54578081fd5b8235613a5f81613e80565b91506020830135613a6f81613e80565b809150509250929050565b600080600060608486031215613a8e578081fd5b8335613a9981613e80565b92506020840135613aa981613e80565b929592945050506040919091013590565b60008060408385031215613acc578182fd5b8235613ad781613e80565b91506020830135613a6f81613e95565b60008060408385031215613af9578182fd5b8235613b0481613e80565b946020939093013593505050565b600060208284031215613b23578081fd5b81356123d381613e95565b600060208284031215613b3f578081fd5b81516123d381613e95565b600060208284031215613b5b578081fd5b5035919050565b600060208284031215613b73578081fd5b5051919050565b600080600060608486031215613b8e578283fd5b505081359360208301359350604090920135919050565b600080600060608486031215613bb9578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b81811015613bfe57858101830151858201604001528201613be2565b81811115613c0f5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601f908201527f4d617820666565206c696d6974207265616368656420666f7220274255592700604082015260600190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b6020808252601f908201527f4d617820666565206c696d6974207265616368656420666f7220275032502700604082015260600190565b60208082526028908201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604082015267277374617475732760c01b606082015260800190565b6020808252818101527f4d617820666565206c696d6974207265616368656420666f72202753454c4c27604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015613d855784516001600160a01b031683529383019391830191600101613d60565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115613db957613db9613e6a565b500190565b600082613dd957634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615613df857613df8613e6a565b500290565b600082821015613e0f57613e0f613e6a565b500390565b600281046001821680613e2857607f821691505b60208210811415613e4957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613e6357613e63613e6a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146123b457600080fd5b80151581146123b457600080fdfea26469706673582212209db8d2f101af591ef303bbe56a281d4f381e9dca20cb97dc0365a4952c571c5064736f6c63430008020033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000cea1c8427fe7797613ac0f7a0decb517dc0f84b6

-----Decoded View---------------
Arg [0] : owner (address): 0xcea1c8427FE7797613ac0F7A0DEcB517Dc0F84b6

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000cea1c8427fe7797613ac0f7a0decb517dc0f84b6


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.