ETH Price: $3,106.92 (+1.13%)
Gas: 6 Gwei

Token

MANE (MANE)
 

Overview

Max Total Supply

96,208,095.088514807959754279 MANE

Holders

417 (0.00%)

Market

Price

$0.01 @ 0.000003 ETH (+2.19%)

Onchain Market Cap

$803,694.53

Circulating Supply Market Cap

$533,580.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,076.899788635617749499 MANE

Value
$25.70 ( ~0.00827186651401188 Eth) [0.0032%]
0xbacf190b02b6f6f494489c8b4b29b06ba4cb3873
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Introducing $MANE Token — a dynamic deflationary gem on the ETH platform! Through strategic use of marketing fees, we initiate buybacks and burns, reinforcing its scarcity. Dive into its unique tokenomics, where holders get rewarded with reflections, and experience a cutting-edge crypto evolution.

Market

Volume (24H):$246.51
Market Capitalization:$533,580.00
Circulating Supply:63,873,456.00 MANE
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CustomToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 99999 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-19
*/

/* *******************************************************************************************************************************************************************************
*
* Powered By t.me/BlazeXDeployerBot - This Contract is safe has no hidden malfunctions - Create your own Contract via telegram with blazex.org 
*
* Disclaimer: The @BlazeXDeployerBot tool assists users in contract deployment. Tokens or contracts initiated through this bot are solely under the user's responsibility and are * not linked to, endorsed by, or associated with the BlazeX Team. Users are urged to approach with caution and comprehend the outcomes of their deployments. The contract has been * reviewed and audited.
* TG BOT: t.me/BlazeXdeployerBot
*********************************************************************************************************************************************************************************
*/


  /*
 * 
  *
  *——————————————————
  *
  * Description: M.A.N.E ($MANE)
  * Website: www.themanetoken.com
  * Twitter: https://x.com/TheManeToken?t=U_tUysM15S0NhXK93Cer6A&s=09
  * Telegram: https://t.me/TheManeLionsDen
  *
  *—————
  */
  


// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;


abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
   
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library Address {
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal returns(bool){
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        return success;
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract CustomToken is Context, IERC20, Ownable {
    using Address for address;
    using Address for address payable;

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

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) private _isExcluded;
    address[] private _excluded;

    string private _name="MANE";
    string private _symbol="MANE";
    uint8  private _decimals=18;
   
    uint256 private constant MAX = type(uint256).max;
    uint256 private _tTotal = 100000000000000000000000000;
    uint256 private _tTotalSupply = 100000000000000000000000000;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    uint public ReflectionFeeonBuy=0;
    uint public ReflectionFeeonSell=0;

    uint public liquidityFeeonBuy=0;
    uint public liquidityFeeonSell=0;

    uint public marketingFeeonBuy=30;
    uint public marketingFeeonSell=30;

    uint public burnFeeOnBuy=10;
    uint public burnFeeOnSell=10;

    uint private _ReflectionFee;
    uint private _liquidityFee;
    uint private _marketingFee;

    uint256 private totalBuyFees;
    uint256 private totalSellFees;

    address public marketingWallet=0xE3feB50cFefd2F2901987fbE1d5a000654cab62b;
    
    address public referralWallet;
    uint256 public serviceFee;
    uint256 public referralCommission;

    uint256 public maxTransactionAmountBuy=500000000000000000000000;
    uint256 public maxTransactionAmountSell=500000000000000000000000;

    
    uint256 public maxWalletAmount=1000000000000000000000000;

    bool public walletToWalletTransferWithoutFee;
    
    address private DEAD = 0x000000000000000000000000000000000000dEaD;

    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;

    bool private inSwapAndLiquify;
    bool public swapEnabled;
    bool public tradingEnabled;
    uint256 public swapTokensAtAmount=10000000000000000000000;

    address public lpPair;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event MarketingWalletChanged(address marketingWallet);
    event SwapEnabledUpdated(bool enabled);
    event SwapAndLiquify(uint256 tokensSwapped, uint256 bnbReceived, uint256 tokensIntoLiqudity);
    event SwapAndSendMarketing(uint256 tokensSwapped, uint256 bnbSend);
    event SwapTokensAtAmountUpdated(uint256 amount);
    event BuyFeesChanged(uint256 ReflectionFee, uint256 liquidityFee, uint256 marketingFee);
    event SellFeesChanged(uint256 ReflectionFee, uint256 liquidityFee, uint256 marketingFee);
    event WalletToWalletTransferWithoutFeeEnabled(bool enabled);
    
    constructor() 
        payable
    {        
        address router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    require(msg.value >= 0.05 ether, "Insufficient value for fee receiver");
    
        referralCommission = 0.02500000000000000 ether;
        referralWallet = 0xdD02F7Cd47Ef1b70B386d948152b13Fc09640895;
        payable(referralWallet).transfer(referralCommission);
      
    
    serviceFee = 0.02500000000000000 ether;
    payable(0x72460072CCC5DB06559dd6e970dFD2Cb06ee7876).transfer(serviceFee);
    

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        
        uniswapV2Router = _uniswapV2Router;

        _approve(msg.sender, address(uniswapV2Router), MAX);
        _approve(msg.sender, address(this), MAX);

        totalBuyFees = ReflectionFeeonBuy + liquidityFeeonBuy + marketingFeeonBuy + burnFeeOnBuy;
        totalSellFees = ReflectionFeeonSell + liquidityFeeonSell + marketingFeeonSell + burnFeeOnSell;
        
        swapTokensAtAmount = _tTotal / 5000;

        maxTransactionLimitEnabled  = true;



        _isExcludedFromMaxTxLimit[owner()] = true;
        _isExcludedFromMaxTxLimit[address(0)] = true;
        _isExcludedFromMaxTxLimit[address(this)] = true;
        _isExcludedFromMaxTxLimit[marketingWallet] = true;
        _isExcludedFromMaxTxLimit[DEAD] = true;

        maxWalletLimitEnabled = true;

        _isExcludedFromMaxWalletLimit[owner()] = true;
        _isExcludedFromMaxWalletLimit[address(this)] = true;
        _isExcludedFromMaxWalletLimit[address(0xdead)] = true;
        _isExcludedFromMaxWalletLimit[marketingWallet] = true;        
    
        walletToWalletTransferWithoutFee = true;
        
        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(0xdead)] = true;
        _isExcludedFromFees[address(this)] = true;

        _isExcluded[address(this)] = true;        
        _isExcluded[address(0xdead)] = true;
        _isExcluded[address(uniswapV2Pair)] = true;

        _rOwned[owner()] = _rTotal;
        _tOwned[owner()] = _tTotal;


        emit Transfer(address(0), owner(), _tTotal);
    }

    function createLPPairIfRequired() private {
        IUniswapV2Factory factory = IUniswapV2Factory(uniswapV2Router.factory());
        address pair = factory.getPair(address(this), uniswapV2Router.WETH());
		if(pair == address(0)) {
			uniswapV2Pair = factory.createPair(address(this), uniswapV2Router.WETH());
			lpPair = uniswapV2Pair;
			_isExcluded[address(uniswapV2Pair)] = true;
		}
        else {
            if(uniswapV2Pair != pair){
                uniswapV2Pair = pair;
                lpPair = uniswapV2Pair;
                _isExcluded[address(uniswapV2Pair)] = true;
            }
        }
	}

    function addLiquidityETH(uint256 _tokenAmount) public payable returns(bool) {
		swapEnabled = false;
		createLPPairIfRequired();
        _transfer(msg.sender, address(this), _tokenAmount);
        _approve(address(this), address(uniswapV2Router), MAX);
        uniswapV2Router.addLiquidityETH{value: msg.value}(address(this), _tokenAmount, 0, 0, address(msg.sender), block.timestamp + 50);
        swapEnabled = true;
        return true;
	}

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue);
        return true;
    }

    function isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalReflectionDistributed() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender] - rAmount;
        _rTotal = _rTotal - rAmount;
        _tFeeTotal = _tFeeTotal + tAmount;
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount / currentRate;
    }

    function excludeFromReward(address account) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(_isExcluded[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;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    receive() external payable {}

    function claimStuckTokens(address token) external onlyOwner {
        require(token != address(this), "Owner cannot claim native tokens");
        if (token == address(0x0)) {
            payable(msg.sender).sendValue(address(this).balance);
            return;
        }
        IERC20 ERC20token = IERC20(token);
        uint256 balance = ERC20token.balanceOf(address(this));
        ERC20token.transfer(msg.sender, balance);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal - rFee;
        _tFeeTotal = _tFeeTotal + 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 - tFee - tLiquidity - 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 * currentRate;
        uint256 rFee = tFee * currentRate;
        uint256 rLiquidity = tLiquidity * currentRate;
        uint256 rMarketing = tMarketing * currentRate;
        uint256 rTransferAmount = rAmount - rFee - rLiquidity - rMarketing;
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply / 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 - _rOwned[_excluded[i]];
            tSupply = tSupply - _tOwned[_excluded[i]];
        }
        if (rSupply < _rTotal / _tTotal) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }
    
    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 liquidityAmount;
        if(liquidityFeeonBuy > 0 || liquidityFeeonSell > 0 || burnFeeOnBuy > 0 || burnFeeOnSell > 0){
            liquidityAmount = tLiquidity * (liquidityFeeonBuy + liquidityFeeonSell) / (liquidityFeeonBuy + liquidityFeeonSell + burnFeeOnBuy + burnFeeOnSell);
        }
        uint256 burnAmount = tLiquidity - liquidityAmount;

        if(liquidityAmount > 0){
            uint256 currentRate =  _getRate();
            uint256 rLiquidity = liquidityAmount * currentRate;
            _rOwned[address(this)] = _rOwned[address(this)] + rLiquidity;
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)] + liquidityAmount;
        }

        if(burnAmount > 0){
            uint256 currentRate =  _getRate();
            uint256 rBurn = burnAmount * currentRate;
            _rOwned[address(0xdead)] = _rOwned[address(0xdead)] + rBurn;
            if(_isExcluded[address(0xdead)])
                _tOwned[address(0xdead)] = _tOwned[address(0xdead)] + burnAmount;

            _tTotalSupply -= burnAmount;
        }
    }

    function _takeMarketing(uint256 tMarketing) private {
        if (tMarketing > 0) {
            uint256 currentRate =  _getRate();
            uint256 rMarketing = tMarketing * currentRate;
            _rOwned[address(this)] = _rOwned[address(this)] + rMarketing;
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)] + tMarketing;
        }
    }
    
    function calculateReflectionFee(uint256 _amount) private view returns (uint256) {
        return _amount * _ReflectionFee / 1000;
    }

    function calculateLiquidityFee(uint256 _amount) private view returns (uint256) {
        return _amount * _liquidityFee / 1000;
    }
    
    function calculateMarketingFee(uint256 _amount) private view returns (uint256) {
        return _amount * _marketingFee / 1000;
    }
    
    function removeAllFee() private {
        if(_ReflectionFee == 0 && _liquidityFee == 0 && _marketingFee == 0) return;
        
        _ReflectionFee = 0;
        _marketingFee = 0;
        _liquidityFee = 0;
    }
    
    function setBuyFee() private{
        if(_ReflectionFee == ReflectionFeeonBuy && _liquidityFee == (liquidityFeeonBuy + burnFeeOnBuy) && _marketingFee == marketingFeeonBuy ) return;

        _ReflectionFee = ReflectionFeeonBuy;
        _marketingFee = marketingFeeonBuy;
        _liquidityFee = liquidityFeeonBuy + burnFeeOnBuy;
    }

    function setSellFee() private{
        if(_ReflectionFee == ReflectionFeeonSell && _liquidityFee == (liquidityFeeonSell + burnFeeOnSell) && _marketingFee == marketingFeeonSell ) return;

        _ReflectionFee = ReflectionFeeonSell;
        _marketingFee = marketingFeeonSell;
        _liquidityFee = liquidityFeeonSell + burnFeeOnSell;
    }
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function enableTrading() external onlyOwner{
        require(tradingEnabled == false, "Trading is already enabled");
        tradingEnabled = true;
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            require(tradingEnabled, "Trading is not enabled yet");
        }

        if (maxTransactionLimitEnabled) 
        {
            if ((from == uniswapV2Pair || to == uniswapV2Pair) &&
                _isExcludedFromMaxTxLimit[from] == false && 
                _isExcludedFromMaxTxLimit[to]   == false) 
            {
                if (from == uniswapV2Pair) {
                    require(
                        amount <= maxTransactionAmountBuy,  
                        "AntiWhale: Transfer amount exceeds the maxTransactionAmount"
                    );
                } else {
                    require(
                        amount <= maxTransactionAmountSell, 
                        "AntiWhale: Transfer amount exceeds the maxTransactionAmount"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            to == uniswapV2Pair &&
            swapEnabled
        ) {
            inSwapAndLiquify = true;
            
            uint256 marketingShare = marketingFeeonBuy + marketingFeeonSell;
            uint256 liquidityShare = liquidityFeeonBuy + liquidityFeeonSell;

            uint256 totalShare = marketingShare + liquidityShare;

            if(totalShare > 0) {
                if(liquidityShare > 0) {
                    uint256 liquidityTokens = (contractTokenBalance * liquidityShare) / totalShare;
                    swapAndLiquify(liquidityTokens);
                }
                
                if(marketingShare > 0) {
                    uint256 marketingTokens = (contractTokenBalance * marketingShare) / totalShare;
                    swapAndSendMarketing(marketingTokens);
                } 
            }

            inSwapAndLiquify = false;
        }
        
        //transfer amount, it will take tax, burn, liquidity fee
        _tokenTransfer(from,to,amount);

        if (maxWalletLimitEnabled) 
        {
            if (!_isExcludedFromMaxWalletLimit[from] && 
                !_isExcludedFromMaxWalletLimit[to] &&
                to != uniswapV2Pair
            ) {
                uint256 balance  = balanceOf(to);
                require(
                    balance + amount <= maxWalletAmount, 
                    "MaxWallet: Recipient exceeds the maxWalletAmount"
                );
            }
        }
    }

    function swapAndLiquify(uint256 tokens) private {
        uint256 half = tokens / 2;
        uint256 otherHalf = tokens - half;

        uint256 initialBalance = address(this).balance;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            half,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp);
        
        uint256 newBalance = address(this).balance - initialBalance;

        uniswapV2Router.addLiquidityETH{value: newBalance}(
            address(this),
            otherHalf,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            DEAD,
            block.timestamp
        );

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function swapAndSendMarketing(uint256 tokenAmount) private {
        uint256 initialBalance = address(this).balance;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp);

        uint256 newBalance = address(this).balance - initialBalance;

        payable(marketingWallet).sendValue(newBalance);

        emit SwapAndSendMarketing(tokenAmount, newBalance);
    }

    function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner() {
        require(newAmount > totalSupply() / 1e5, "SwapTokensAtAmount must be greater than 0.001% of total supply");
        swapTokensAtAmount = newAmount;
        emit SwapTokensAtAmountUpdated(newAmount);
    }
    
    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
        emit SwapEnabledUpdated(_enabled);
    }

    function _tokenTransfer(address sender, address recipient, uint256 amount) private {
         if (_isExcludedFromFees[sender] || 
            _isExcludedFromFees[recipient] 
            ) {
            removeAllFee();
        }else if(recipient == uniswapV2Pair){
            setSellFee();
        }else if(sender == uniswapV2Pair){
            setBuyFee();
        }else if(walletToWalletTransferWithoutFee){
            removeAllFee();
        }else{
            setSellFee();
        }

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender] - rAmount;
        _rOwned[recipient] = _rOwned[recipient] + rTransferAmount;
        _takeMarketing(tMarketing);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender] - rAmount;
        _tOwned[recipient] = _tOwned[recipient] + tTransferAmount;
        _rOwned[recipient] = _rOwned[recipient] + rTransferAmount;
        _takeMarketing(tMarketing);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender] - tAmount;
        _rOwned[sender] = _rOwned[sender] - rAmount;
        _rOwned[recipient] = _rOwned[recipient] + rTransferAmount; 
        _takeMarketing(tMarketing);  
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender] - tAmount;
        _rOwned[sender] = _rOwned[sender] - rAmount;
        _tOwned[recipient] = _tOwned[recipient] + tTransferAmount;
        _rOwned[recipient] = _rOwned[recipient] + rTransferAmount;
        _takeMarketing(tMarketing);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function excludeFromFees(address account, bool excluded) external onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
    
    function changeMarketingWallet(address _marketingWallet) external onlyOwner {
        require(_marketingWallet != marketingWallet, "Marketing wallet is already that address");
        require(_marketingWallet!=address(0), "Marketing wallet is the zero address");
        marketingWallet = _marketingWallet;
        emit MarketingWalletChanged(marketingWallet);
    }

    function setBuyFeePercentages(uint _ReflectionFeeonBuy, uint _liquidityFeeonBuy, uint _marketingFeeonBuy, uint _burnFeeOnBuy) external onlyOwner {
        ReflectionFeeonBuy = _ReflectionFeeonBuy;
        liquidityFeeonBuy = _liquidityFeeonBuy;
        marketingFeeonBuy = _marketingFeeonBuy;
        burnFeeOnBuy = _burnFeeOnBuy;

        totalBuyFees = ReflectionFeeonBuy + liquidityFeeonBuy + marketingFeeonBuy + burnFeeOnBuy;

        require(totalBuyFees <= 300, "Buy fees cannot be greater than 30%");

        emit BuyFeesChanged(ReflectionFeeonBuy, liquidityFeeonBuy, marketingFeeonBuy);
    }

    function setSellFeePercentages(uint _ReflectionFeeonSell, uint _liquidityFeeonSell, uint _marketingFeeonSell, uint _burnFeeOnSell) external onlyOwner {
        ReflectionFeeonSell = _ReflectionFeeonSell;
        liquidityFeeonSell = _liquidityFeeonSell;
        marketingFeeonSell = _marketingFeeonSell;
        burnFeeOnSell = _burnFeeOnSell;

        totalSellFees = ReflectionFeeonSell + liquidityFeeonSell + marketingFeeonSell + burnFeeOnSell;

        require(totalSellFees <= 300, "Sell fees cannot be greater than 30%");

        emit SellFeesChanged(ReflectionFeeonSell, liquidityFeeonSell, marketingFeeonSell);
    }

    function enableWalletToWalletTransferWithoutFee(bool enable) external onlyOwner {
        require(walletToWalletTransferWithoutFee != enable, "Wallet to wallet transfer without fee is already set to that value");
        walletToWalletTransferWithoutFee = enable;
        emit WalletToWalletTransferWithoutFeeEnabled(enable);
    }

    mapping(address => bool) private _isExcludedFromMaxTxLimit;
    bool    public  maxTransactionLimitEnabled;

    event ExcludedFromMaxTransactionLimit(address indexed account, bool isExcluded);
    event MaxTransactionLimitStateChanged(bool maxTransactionLimit);
    event MaxTransactionLimitAmountChanged(uint256 maxTransactionAmountBuy, uint256 maxTransactionAmountSell);

    function setEnableMaxTransactionLimit(bool enable) external onlyOwner {
        require(
            enable != maxTransactionLimitEnabled, 
            "Max transaction limit is already set to that state"
        );
        maxTransactionLimitEnabled = enable;
        emit MaxTransactionLimitStateChanged(maxTransactionLimitEnabled);
    }

    function setMaxTransactionAmounts(uint256 _maxTransactionAmountBuy, uint256 _maxTransactionAmountSell) external onlyOwner {
        require(
            _maxTransactionAmountBuy  >= totalSupply() / (10 ** decimals()) / 1000 && 
            _maxTransactionAmountSell >= totalSupply() / (10 ** decimals()) / 1000, 
            "Max Transaction limis cannot be lower than 0.1% of total supply"
        ); 
        maxTransactionAmountBuy  = _maxTransactionAmountBuy  * (10 ** decimals());
        maxTransactionAmountSell = _maxTransactionAmountSell * (10 ** decimals());
        emit MaxTransactionLimitAmountChanged(maxTransactionAmountBuy, maxTransactionAmountSell);
    }

    function setExcludeFromMaxTransactionLimit(address account, bool exclude) external onlyOwner {
        require(
            _isExcludedFromMaxTxLimit[account] != exclude, 
            "Account is already set to that state"
        );
        _isExcludedFromMaxTxLimit[account] = exclude;
        emit ExcludedFromMaxTransactionLimit(account, exclude);
    }

    function isExcludedFromMaxTransaction(address account) public view returns(bool) {
        return _isExcludedFromMaxTxLimit[account];
    }

    mapping(address => bool) private _isExcludedFromMaxWalletLimit;
    bool public maxWalletLimitEnabled;

    event ExcludedFromMaxWalletLimit(address indexed account, bool isExcluded);
    event MaxWalletLimitStateChanged(bool maxWalletLimit);
    event MaxWalletLimitAmountChanged(uint256 maxWalletAmount);

    function setEnableMaxWalletLimit(bool enable) external onlyOwner {
        require(enable != maxWalletLimitEnabled,"Max wallet limit is already set to that state");
        maxWalletLimitEnabled = enable;

        emit MaxWalletLimitStateChanged(maxWalletLimitEnabled);
    }

    function setMaxWalletAmount(uint256 _maxWalletAmount) external onlyOwner {
        require(_maxWalletAmount >= (totalSupply() / (10 ** decimals())) / 100, "Max wallet percentage cannot be lower than 1%");
        maxWalletAmount = _maxWalletAmount * (10 ** decimals());

        emit MaxWalletLimitAmountChanged(maxWalletAmount);
    }

    function excludeFromMaxWallet(address account, bool exclude) external onlyOwner {
        require( _isExcludedFromMaxWalletLimit[account] != exclude,"Account is already set to that state");
        require(account != address(this), "Can't set this address.");

        _isExcludedFromMaxWalletLimit[account] = exclude;

        emit ExcludedFromMaxWalletLimit(account, exclude);
    }

    function isExcludedFromMaxWalletLimit(address account) public view returns(bool) {
        return _isExcludedFromMaxWalletLimit[account];
    }

    function contractTypeBlazex() external pure returns(uint){
        return 2;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"uint256","name":"ReflectionFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"BuyFeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxTransactionLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxWalletLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"MarketingWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTransactionAmountBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxTransactionAmountSell","type":"uint256"}],"name":"MaxTransactionLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxTransactionLimit","type":"bool"}],"name":"MaxTransactionLimitStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxWalletLimit","type":"bool"}],"name":"MaxWalletLimitStateChanged","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":"ReflectionFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"SellFeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bnbSend","type":"uint256"}],"name":"SwapAndSendMarketing","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapTokensAtAmountUpdated","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":"bool","name":"enabled","type":"bool"}],"name":"WalletToWalletTransferWithoutFeeEnabled","type":"event"},{"inputs":[],"name":"ReflectionFeeonBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ReflectionFeeonSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"addLiquidityETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","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":[],"name":"burnFeeOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractTypeBlazex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"enableWalletToWalletTransferWithoutFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromMaxWallet","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":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeonBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeonSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeonBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFeeonSell","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":"maxTransactionAmountBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmountSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"referralCommission","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"serviceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ReflectionFeeonBuy","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeonBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeonBuy","type":"uint256"},{"internalType":"uint256","name":"_burnFeeOnBuy","type":"uint256"}],"name":"setBuyFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"setExcludeFromMaxTransactionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionAmountBuy","type":"uint256"},{"internalType":"uint256","name":"_maxTransactionAmountSell","type":"uint256"}],"name":"setMaxTransactionAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ReflectionFeeonSell","type":"uint256"},{"internalType":"uint256","name":"_liquidityFeeonSell","type":"uint256"},{"internalType":"uint256","name":"_marketingFeeonSell","type":"uint256"},{"internalType":"uint256","name":"_burnFeeOnSell","type":"uint256"}],"name":"setSellFeePercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":"totalReflectionDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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 IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletToWalletTransferWithoutFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405260046080908152634d414e4560e01b60a05260079062000025908262000832565b506040805180820190915260048152634d414e4560e01b602082015260089062000050908262000832565b506009805460ff191660121790556a52b7d2dcc80cd2e4000000600a819055600b819055620000829060001962000914565b620000909060001962000941565b600c556000600e819055600f81905560108190556011819055601e6012819055601355600a6014819055601555601b805473e3feb50cfefd2f2901987fbe1d5a000654cab62b6001600160a01b0319918216179091556969e10de76676d0800000601f81905560205569d3c21bcecceda100000060215560228054610100600160a81b03191662dead0017905569021e19e0c9bab2400000602555815433911681178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d66b1a2bc2ec50000341015620001df5760405162461bcd60e51b815260206004820152602360248201527f496e73756666696369656e742076616c756520666f72206665652072656365696044820152623b32b960e91b60648201526084015b60405180910390fd5b6658d15e17628000601e819055601c80546001600160a01b03191673dd02f7cd47ef1b70b386d948152b13fc09640895908117909155604051909160009182818181858883f193505050501580156200023c573d6000803e3d6000fd5b506658d15e17628000601d8190556040517372460072ccc5db06559dd6e970dfd2cb06ee78769160009182818181858883f1935050505015801562000285573d6000803e3d6000fd5b50602380546001600160a01b0319166001600160a01b0383169081179091558190620002b690339060001962000656565b620002c5333060001962000656565b601454601254601054600e54620002dd91906200095d565b620002e991906200095d565b620002f591906200095d565b601955601554601354601154600f546200031091906200095d565b6200031c91906200095d565b6200032891906200095d565b601a55600a546200033d906113889062000973565b6025556028805460ff1916600190811790915560276000620003676000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905560279093527f552d06d8e69b1fc894b5bb152d5c34ccb2ea2834fd646ff017b1562d77bdb85a8054851660019081179091553084528284208054861682179055601b54821684528284208054861682179055602254610100900490911683529082208054841682179055602a80549093168117909255602990620004216000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260299093528183208054851660019081179091557f16f9c3ed1581301300a6478f511a4cd0de0c2efd40004ab5590b096193ba59748054861682179055601b5490911683529082208054841682179055602280549093168117909255600490620004c46000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600484527f42c63635470f1fb1d6d4b6441c413cb435b1ebb6fedd1896dd5e25d1399147dd8054861660019081179091553082528382208054871682179055600590945282812080548616851790557f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba8054861685179055602454909116815290812080549093168217909255600c5491620005966000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600a5460026000620005d16200077e60201b60201c565b6001600160a01b03168152602081019190915260400160002055620005fe6000546001600160a01b031690565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a546040516200064691815260200190565b60405180910390a350506200098a565b6001600160a01b038316620006ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620001d6565b6001600160a01b0382166200071d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620001d6565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031690565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007b857607f821691505b602082108103620007d957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200082d57600081815260208120601f850160051c81016020861015620008085750805b601f850160051c820191505b81811015620008295782815560010162000814565b5050505b505050565b81516001600160401b038111156200084e576200084e6200078d565b62000866816200085f8454620007a3565b84620007df565b602080601f8311600181146200089e5760008415620008855750858301515b600019600386901b1c1916600185901b17855562000829565b600085815260208120601f198616915b82811015620008cf57888601518255948401946001909101908401620008ae565b5085821015620008ee5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601260045260246000fd5b600082620009265762000926620008fe565b500690565b634e487b7160e01b600052601160045260246000fd5b818103818111156200095757620009576200092b565b92915050565b808201808211156200095757620009576200092b565b600082620009855762000985620008fe565b500490565b615a93806200099a6000396000f3fe6080604052600436106103e25760003560e01c806370a082311161020d578063b6f7f68111610128578063dd62ed3e116100bb578063e3b467911161008a578063edb469981161006f578063edb4699814610c56578063f2fde38b14610c6c578063f9d0831a14610c8c57600080fd5b8063e3b4679114610c16578063e982f35114610c3657600080fd5b8063dd62ed3e14610b60578063e01af92c14610bb3578063e1f1487414610bd3578063e2f4560514610c0057600080fd5b8063cbef3ce9116100f7578063cbef3ce914610b03578063ce3fdca914610b17578063d06d04cc14610b2d578063d2fcc00114610b4057600080fd5b8063b6f7f68114610a8d578063bb85c6d114610aad578063c024666814610acd578063c531096c14610aed57600080fd5b8063989a124f116101a0578063a938d1c91161016f578063a938d1c914610a2c578063aa4bde2814610a42578063afa4f3b214610a58578063b577554a14610a7857600080fd5b8063989a124f14610990578063a457c2d7146109a6578063a8a69b9d146109c6578063a9059cbb14610a0c57600080fd5b80638a8c523c116101dc5780638a8c523c146109255780638abdf5aa1461093a5780638da5cb5b1461095057806395d89b411461097b57600080fd5b806370a082311461087d578063715018a61461089d57806375f0a874146108b257806388f82020146108df57600080fd5b80633685d419116102fd57806352390c021161029057806359136fa51161025f57806359136fa5146108085780635a04e0351461081e57806365a8ee4f146108345780636ddd17131461084a57600080fd5b806352390c02146107625780635342acb4146107825780635654d0b3146107c857806356a6cabf146107e857600080fd5b80634549b039116102cc5780634549b039146106cb57806349bd5a5e146106eb5780634ada218b146107185780634b93d0591461074c57600080fd5b80633685d4191461063e578063395093511461065e5780633bd5d1731461067e578063452ed4f11461069e57600080fd5b806318d9ceae116103755780632a6c7dba116103445780632a6c7dba146105c25780632ba86bf2146105e25780632d838119146105fc578063313ce5671461061c57600080fd5b806318d9ceae1461052257806321a9d82a1461056857806323b872dd1461058257806327a14fc2146105a257600080fd5b8063150c880c116103b1578063150c880c1461047f5780631529fbbf146104a15780631694505e146104bb57806318160ddd1461050d57600080fd5b80630105d0fd146103ee57806306fdde0314610417578063095ea7b314610439578063142725fc1461046957600080fd5b366103e957005b600080fd5b3480156103fa57600080fd5b50610404601f5481565b6040519081526020015b60405180910390f35b34801561042357600080fd5b5061042c610cac565b60405161040e9190615456565b34801561044557600080fd5b506104596104543660046154e4565b610d3e565b604051901515815260200161040e565b34801561047557600080fd5b5061040460115481565b34801561048b57600080fd5b5061049f61049a36600461551e565b610d55565b005b3480156104ad57600080fd5b506022546104599060ff1681565b3480156104c757600080fd5b506023546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161040e565b34801561051957600080fd5b50600b54610404565b34801561052e57600080fd5b5061045961053d366004615557565b73ffffffffffffffffffffffffffffffffffffffff1660009081526027602052604090205460ff1690565b34801561057457600080fd5b50602a546104599060ff1681565b34801561058e57600080fd5b5061045961059d366004615574565b610f22565b3480156105ae57600080fd5b5061049f6105bd3660046155b5565b610f81565b3480156105ce57600080fd5b5061049f6105dd3660046155ce565b611118565b3480156105ee57600080fd5b506028546104599060ff1681565b34801561060857600080fd5b506104046106173660046155b5565b611296565b34801561062857600080fd5b5060095460405160ff909116815260200161040e565b34801561064a57600080fd5b5061049f610659366004615557565b611347565b34801561066a57600080fd5b506104596106793660046154e4565b61161b565b34801561068a57600080fd5b5061049f6106993660046155b5565b61165f565b3480156106aa57600080fd5b506026546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106d757600080fd5b506104046106e63660046155eb565b611792565b3480156106f757600080fd5b506024546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b34801561072457600080fd5b5060245461045990760100000000000000000000000000000000000000000000900460ff1681565b34801561075857600080fd5b5061040460105481565b34801561076e57600080fd5b5061049f61077d366004615557565b61183b565b34801561078e57600080fd5b5061045961079d366004615557565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b3480156107d457600080fd5b5061049f6107e33660046155ce565b611a76565b3480156107f457600080fd5b5061049f6108033660046155ce565b611c16565b34801561081457600080fd5b5061040460205481565b34801561082a57600080fd5b5061040460125481565b34801561084057600080fd5b5061040460135481565b34801561085657600080fd5b50602454610459907501000000000000000000000000000000000000000000900460ff1681565b34801561088957600080fd5b50610404610898366004615557565b611d94565b3480156108a957600080fd5b5061049f611e1a565b3480156108be57600080fd5b50601b546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108eb57600080fd5b506104596108fa366004615557565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460ff1690565b34801561093157600080fd5b5061049f611f0a565b34801561094657600080fd5b50610404601d5481565b34801561095c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166104e8565b34801561098757600080fd5b5061042c612055565b34801561099c57600080fd5b5061040460155481565b3480156109b257600080fd5b506104596109c13660046154e4565b612064565b3480156109d257600080fd5b506104596109e1366004615557565b73ffffffffffffffffffffffffffffffffffffffff1660009081526029602052604090205460ff1690565b348015610a1857600080fd5b50610459610a273660046154e4565b6120a8565b348015610a3857600080fd5b5061040460145481565b348015610a4e57600080fd5b5061040460215481565b348015610a6457600080fd5b5061049f610a733660046155b5565b6120b5565b348015610a8457600080fd5b50600d54610404565b348015610a9957600080fd5b5061049f610aa8366004615610565b612210565b348015610ab957600080fd5b5061049f610ac8366004615557565b612410565b348015610ad957600080fd5b5061049f610ae836600461551e565b612651565b348015610af957600080fd5b50610404600e5481565b348015610b0f57600080fd5b506002610404565b348015610b2357600080fd5b50610404601e5481565b610459610b3b3660046155b5565b612812565b348015610b4c57600080fd5b5061049f610b5b36600461551e565b6129c6565b348015610b6c57600080fd5b50610404610b7b366004615632565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b348015610bbf57600080fd5b5061049f610bce3660046155ce565b612c05565b348015610bdf57600080fd5b50601c546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c0c57600080fd5b5061040460255481565b348015610c2257600080fd5b5061049f610c31366004615660565b612d00565b348015610c4257600080fd5b5061049f610c51366004615660565b612e9b565b348015610c6257600080fd5b50610404600f5481565b348015610c7857600080fd5b5061049f610c87366004615557565b61302b565b348015610c9857600080fd5b5061049f610ca7366004615557565b6131dc565b606060078054610cbb90615692565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce790615692565b8015610d345780601f10610d0957610100808354040283529160200191610d34565b820191906000526020600020905b815481529060010190602001808311610d1757829003601f168201915b5050505050905090565b6000610d4b338484613435565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ddb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205481151560ff909116151503610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660008181526027602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c1091015b60405180910390a25050565b6000610f2f8484846135e8565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033808552925290912054610f77918691610f72908690615714565b613435565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611002576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b606461101060095460ff1690565b61101b90600a615847565b600b546110289190615856565b6110329190615856565b8110156110c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c65742070657263656e746167652063616e6e6f742062652060448201527f6c6f776572207468616e203125000000000000000000000000000000000000006064820152608401610dd2565b60095460ff166110d290600a615847565b6110dc9082615891565b60218190556040519081527f21bc0ea3406acb92d4449ab33befb4ae82f873a22f3b6cf0e466b2710beb5942906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff163314611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b602a5460ff16151581151503611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201527f746f2074686174207374617465000000000000000000000000000000000000006064820152608401610dd2565b602a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f19060200161110d565b6000600c5482111561132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610dd2565b6000611334613cdf565b90506113408184615856565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff16611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610dd2565b60005b600654811015611617578173ffffffffffffffffffffffffffffffffffffffff166006828154811061148e5761148e6158a8565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361160557600680546114c590600190615714565b815481106114d5576114d56158a8565b6000918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff909216918390811061150e5761150e6158a8565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560068054806115a9576115a96158d7565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b8061160f81615906565b91505061145a565b5050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d4b918590610f7290869061593e565b3360008181526005602052604090205460ff16156116ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610dd2565b600061170a83613d02565b5050505073ffffffffffffffffffffffffffffffffffffffff8516600090815260016020526040902054929350611745928492509050615714565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600c54611779908290615714565b600c55600d5461178a90849061593e565b600d55505050565b6000600a54831115611800576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610dd2565b8161182057600061181084613d02565b50949650610d4f95505050505050565b600061182b84613d02565b50939650610d4f95505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff161561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260016020526040902054156119cd5773ffffffffffffffffffffffffffffffffffffffff81166000908152600160205260409020546119a690611296565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611af7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b60225481151560ff909116151503611bb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560448201527f742066656520697320616c72656164792073657420746f20746861742076616c60648201527f7565000000000000000000000000000000000000000000000000000000000000608482015260a401610dd2565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f77c1f4015c54df9478a364bf8fc1b76b03f0eda36c594de58b4023771cebb9e79060200161110d565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b60285460ff16151581151503611d2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960448201527f2073657420746f207468617420737461746500000000000000000000000000006064820152608401610dd2565b602880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf9060200161110d565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205460ff1615611deb575073ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610d4f90611296565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b602454760100000000000000000000000000000000000000000000900460ff1615612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610dd2565b602480547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055565b606060088054610cbb90615692565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d4b918590610f72908690615714565b6000610d4b3384846135e8565b60005473ffffffffffffffffffffffffffffffffffffffff163314612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b620186a0612143600b5490565b61214d9190615856565b81116121db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e30303125206f6620746f74616c20737570706c7900006064820152608401610dd2565b60258190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459060200161110d565b60005473ffffffffffffffffffffffffffffffffffffffff163314612291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b6103e86122a060095460ff1690565b6122ab90600a615847565b600b546122b89190615856565b6122c29190615856565b821015801561230157506103e86122db60095460ff1690565b6122e690600a615847565b600b546122f39190615856565b6122fd9190615856565b8110155b61238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d6178205472616e73616374696f6e206c696d69732063616e6e6f742062652060448201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c79006064820152608401610dd2565b60095460ff1661239e90600a615847565b6123a89083615891565b601f5560095460ff166123bc90600a615847565b6123c69082615891565b6020819055601f546040517f8c8cbc911b80df94332ececb8eb0945274d76fa965600a0f01f42af3f8afb13192612404928252602082015260400190565b60405180910390a15050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b601b5473ffffffffffffffffffffffffffffffffffffffff9081169082160361253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff81166125de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e672077616c6c657420697320746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b601b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b9060200161110d565b60005473ffffffffffffffffffffffffffffffffffffffff1633146126d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205481151560ff90911615150361278f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610f16565b602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690556000612844613d5d565b61284f3330846135e8565b60235461289490309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613435565b60235473ffffffffffffffffffffffffffffffffffffffff1663f305d719343085600080336128c442603261593e565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015612956573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061297b9190615951565b5050602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905550600192915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660009081526029602052604090205481151560ff909116151503612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b3073ffffffffffffffffffffffffffffffffffffffff831603612b82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660008181526029602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c9101610f16565b60005473ffffffffffffffffffffffffffffffffffffffff163314612c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b602480548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f436b6cf978c7b6998fcce43dfe4d37e3a0dc2bb780144a2eb55d7138201e8a129061110d90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b600e8490556010839055601282905560148190558082612da1858761593e565b612dab919061593e565b612db5919061593e565b601981905561012c1015612e4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42757920666565732063616e6e6f742062652067726561746572207468616e2060448201527f33302500000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b600e54601054601254604080519384526020840192909252908201527ff12a090a464a491e1614a62b7d86a6f8d3fae25361d5af0911f39bd4fd7ea64d906060015b60405180910390a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612f1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b600f8490556011839055601382905560158190558082612f3c858761593e565b612f46919061593e565b612f50919061593e565b601a81905561012c1015612fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c20666565732063616e6e6f742062652067726561746572207468616e60448201527f20333025000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b600f54601154601354604080519384526020840192909252908201527f969e8ecd326f5fe41e2a3cd9798553fbecef5705da23954426a09c9360c7aa5790606001612e8d565b60005473ffffffffffffffffffffffffffffffffffffffff1633146130ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff811661314f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dd2565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461325d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b3073ffffffffffffffffffffffffffffffffffffffff8216036132dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff81166133015761161733476141d1565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015613370573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613394919061597f565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af115801561340a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061342e9190615998565b5050505b50565b73ffffffffffffffffffffffffffffffffffffffff83166134d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821661357a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661368b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dd2565b6000811161371b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613777575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b1561380257602454760100000000000000000000000000000000000000000000900460ff16613802576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610dd2565b60285460ff1615613a055760245473ffffffffffffffffffffffffffffffffffffffff84811691161480613850575060245473ffffffffffffffffffffffffffffffffffffffff8381169116145b8015613882575073ffffffffffffffffffffffffffffffffffffffff831660009081526027602052604090205460ff16155b80156138b4575073ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff16155b15613a055760245473ffffffffffffffffffffffffffffffffffffffff9081169084160361397357601f5481111561396e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610dd2565b613a05565b602054811115613a05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610dd2565b6000613a1030611d94565b60255490915081108015908190613a42575060245474010000000000000000000000000000000000000000900460ff16155b8015613a68575060245473ffffffffffffffffffffffffffffffffffffffff8581169116145b8015613a8f57506024547501000000000000000000000000000000000000000000900460ff165b15613b8f57602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055601354601254600091613ae59161593e565b90506000601154601054613af9919061593e565b90506000613b07828461593e565b90508015613b63578115613b3957600081613b228488615891565b613b2c9190615856565b9050613b37816142a7565b505b8215613b6357600081613b4c8588615891565b613b569190615856565b9050613b618161456c565b505b5050602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b613b9a858585614764565b602a5460ff1615613cd85773ffffffffffffffffffffffffffffffffffffffff851660009081526029602052604090205460ff16158015613c01575073ffffffffffffffffffffffffffffffffffffffff841660009081526029602052604090205460ff16155b8015613c28575060245473ffffffffffffffffffffffffffffffffffffffff858116911614155b15613cd8576000613c3885611d94565b602154909150613c48858361593e565b1115613cd6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201527f206d617857616c6c6574416d6f756e74000000000000000000000000000000006064820152608401610dd2565b505b5050505050565b6000806000613cec6149fc565b9092509050613cfb8183615856565b9250505090565b6000806000806000806000806000806000613d1c8c614bb3565b93509350935093506000806000613d3d8f878787613d38613cdf565b614c12565b919f509d509b509599509397509195509350505050919395979092949650565b602354604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa158015613dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613df191906159b5565b905060008173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea391906159b5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa158015613f13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f3791906159b5565b905073ffffffffffffffffffffffffffffffffffffffff8116614125578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fde573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061400291906159b5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015614074573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061409891906159b5565b6024805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b60245473ffffffffffffffffffffffffffffffffffffffff828116911614611617576024805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000091821681179092556026805490911682179055600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b60008147101561423d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610dd2565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d8060008114614297576040519150601f19603f3d011682016040523d82523d6000602084013e61429c565b606091505b509095945050505050565b60006142b4600283615856565b905060006142c28284615714565b604080516002808252606082018352929350479260009260208301908036833701905050905030816000815181106142fc576142fc6158a8565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561437b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061439f91906159b5565b816001815181106143b2576143b26158a8565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac9479061441e9087906000908690309042906004016159d2565b600060405180830381600087803b15801561443857600080fd5b505af115801561444c573d6000803e3d6000fd5b505050506000824761445e9190615714565b6023546022546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101889052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff610100909204821660848201524260a4820152929350169063f305d71990839060c40160606040518083038185885af11580156144fb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145209190615951565b505060408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561915060600160405180910390a1505050505050565b6040805160028082526060820183524792600092919060208301908036833701905050905030816000815181106145a5576145a56158a8565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614624573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061464891906159b5565b8160018151811061465b5761465b6158a8565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906146c79086906000908690309042906004016159d2565b600060405180830381600087803b1580156146e157600080fd5b505af11580156146f5573d6000803e3d6000fd5b50505050600082476147079190615714565b601b5490915061472d9073ffffffffffffffffffffffffffffffffffffffff16826141d1565b5060408051858152602081018390527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e629999101612e8d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16806147bd575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b156147cf576147ca614c84565b614840565b60245473ffffffffffffffffffffffffffffffffffffffff908116908316036147fa576147ca614cb8565b60245473ffffffffffffffffffffffffffffffffffffffff90811690841603614825576147ca614d12565b60225460ff1615614838576147ca614c84565b614840614cb8565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16801561489b575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b156148b0576148ab838383614d67565b505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff1615801561490b575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b1561491b576148ab838383614f03565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614977575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614987576148ab838383614ff1565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff1680156149e1575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b156149f1576148ab83838361505e565b6148ab838383614ff1565b600c54600a546000918291825b600654811015614b8257826001600060068481548110614a2b57614a2b6158a8565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180614ab05750816002600060068481548110614a7c57614a7c6158a8565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15614ac657600c54600a54945094505050509091565b6001600060068381548110614add57614add6158a8565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054614b199084615714565b92506002600060068381548110614b3257614b326158a8565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054614b6e9083615714565b915080614b7a81615906565b915050614a09565b50600a54600c54614b939190615856565b821015614baa57600c54600a549350935050509091565b90939092509050565b6000806000806000614bc486615108565b90506000614bd187615125565b90506000614bde88615138565b905060008183614bee868c615714565b614bf89190615714565b614c029190615714565b9993985091965094509092505050565b6000808080614c21858a615891565b90506000614c2f868a615891565b90506000614c3d878a615891565b90506000614c4b888a615891565b905060008183614c5b8688615714565b614c659190615714565b614c6f9190615714565b949d949c50929a509298505050505050505050565b601654158015614c945750601754155b8015614ca05750601854155b15614ca757565b600060168190556018819055601755565b600f54601654148015614cdb5750601554601154614cd6919061593e565b601754145b8015614cea5750601354601854145b15614cf157565b600f54601655601354601855601554601154614d0d919061593e565b601755565b600e54601654148015614d355750601454601054614d30919061593e565b601754145b8015614d445750601254601854145b15614d4b57565b600e54601655601254601855601454601054614d0d919061593e565b6000806000806000806000614d7b88613d02565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614dd49190615714565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614e11908890615714565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526001602052604080822093909355908b1681522054614e4e90879061593e565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040902055614e7d8161514b565b614e86826151db565b614e908584615430565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051614eef91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000614f1788613d02565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614f709190615714565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260016020908152604080832094909455918c16815260029091522054614fb490859061593e565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260026020908152604080832093909355600190522054614e4e90879061593e565b600080600080600080600061500588613d02565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614e119190615714565b600080600080600080600061507288613d02565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546150cb9190615714565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614f70908890615714565b60006103e86016548361511b9190615891565b610d4f9190615856565b60006103e86017548361511b9190615891565b60006103e86018548361511b9190615891565b801561343257600061515b613cdf565b905060006151698284615891565b3060009081526001602052604090205490915061518790829061593e565b3060009081526001602090815260408083209390935560059052205460ff16156148ab57306000908152600260205260409020546151c690849061593e565b30600090815260026020526040902055505050565b60008060105411806151ef57506000601154115b806151fc57506000601454115b8061520957506000601554115b1561525f57601554601454601154601054615224919061593e565b61522e919061593e565b615238919061593e565b601154601054615248919061593e565b6152529084615891565b61525c9190615856565b90505b600061526b8284615714565b905081156152fc57600061527d613cdf565b9050600061528b8285615891565b306000908152600160205260409020549091506152a990829061593e565b3060009081526001602090815260408083209390935560059052205460ff16156152f957306000908152600260205260409020546152e890859061593e565b306000908152600260205260409020555b50505b80156148ab57600061530c613cdf565b9050600061531a8284615891565b61dead60005260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5490915061535590829061593e565b61dead6000527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5560056020527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460ff16156154125761dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc546153e490849061593e565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc555b82600b60008282546154249190615714565b90915550505050505050565b81600c5461543e9190615714565b600c55600d5461544f90829061593e565b600d555050565b600060208083528351808285015260005b8181101561548357858101830151858201604001528201615467565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461343257600080fd5b600080604083850312156154f757600080fd5b8235615502816154c2565b946020939093013593505050565b801515811461343257600080fd5b6000806040838503121561553157600080fd5b823561553c816154c2565b9150602083013561554c81615510565b809150509250929050565b60006020828403121561556957600080fd5b8135611340816154c2565b60008060006060848603121561558957600080fd5b8335615594816154c2565b925060208401356155a4816154c2565b929592945050506040919091013590565b6000602082840312156155c757600080fd5b5035919050565b6000602082840312156155e057600080fd5b813561134081615510565b600080604083850312156155fe57600080fd5b82359150602083013561554c81615510565b6000806040838503121561562357600080fd5b50508035926020909101359150565b6000806040838503121561564557600080fd5b8235615650816154c2565b9150602083013561554c816154c2565b6000806000806080858703121561567657600080fd5b5050823594602084013594506040840135936060013592509050565b600181811c908216806156a657607f821691505b6020821081036156df577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610d4f57610d4f6156e5565b600181815b8085111561578057817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115615766576157666156e5565b8085161561577357918102915b93841c939080029061572c565b509250929050565b60008261579757506001610d4f565b816157a457506000610d4f565b81600181146157ba57600281146157c4576157e0565b6001915050610d4f565b60ff8411156157d5576157d56156e5565b50506001821b610d4f565b5060208310610133831016604e8410600b8410161715615803575081810a610d4f565b61580d8383615727565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561583f5761583f6156e5565b029392505050565b600061134060ff841683615788565b60008261588c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082028115828204841417610d4f57610d4f6156e5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615937576159376156e5565b5060010190565b80820180821115610d4f57610d4f6156e5565b60008060006060848603121561596657600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561599157600080fd5b5051919050565b6000602082840312156159aa57600080fd5b815161134081615510565b6000602082840312156159c757600080fd5b8151611340816154c2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015615a2f57845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016159fd565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea264697066735822122030cebc77179baf07779bcc196432172a7da8505b7d74beee2c3f1be71b5f1c1364736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103e25760003560e01c806370a082311161020d578063b6f7f68111610128578063dd62ed3e116100bb578063e3b467911161008a578063edb469981161006f578063edb4699814610c56578063f2fde38b14610c6c578063f9d0831a14610c8c57600080fd5b8063e3b4679114610c16578063e982f35114610c3657600080fd5b8063dd62ed3e14610b60578063e01af92c14610bb3578063e1f1487414610bd3578063e2f4560514610c0057600080fd5b8063cbef3ce9116100f7578063cbef3ce914610b03578063ce3fdca914610b17578063d06d04cc14610b2d578063d2fcc00114610b4057600080fd5b8063b6f7f68114610a8d578063bb85c6d114610aad578063c024666814610acd578063c531096c14610aed57600080fd5b8063989a124f116101a0578063a938d1c91161016f578063a938d1c914610a2c578063aa4bde2814610a42578063afa4f3b214610a58578063b577554a14610a7857600080fd5b8063989a124f14610990578063a457c2d7146109a6578063a8a69b9d146109c6578063a9059cbb14610a0c57600080fd5b80638a8c523c116101dc5780638a8c523c146109255780638abdf5aa1461093a5780638da5cb5b1461095057806395d89b411461097b57600080fd5b806370a082311461087d578063715018a61461089d57806375f0a874146108b257806388f82020146108df57600080fd5b80633685d419116102fd57806352390c021161029057806359136fa51161025f57806359136fa5146108085780635a04e0351461081e57806365a8ee4f146108345780636ddd17131461084a57600080fd5b806352390c02146107625780635342acb4146107825780635654d0b3146107c857806356a6cabf146107e857600080fd5b80634549b039116102cc5780634549b039146106cb57806349bd5a5e146106eb5780634ada218b146107185780634b93d0591461074c57600080fd5b80633685d4191461063e578063395093511461065e5780633bd5d1731461067e578063452ed4f11461069e57600080fd5b806318d9ceae116103755780632a6c7dba116103445780632a6c7dba146105c25780632ba86bf2146105e25780632d838119146105fc578063313ce5671461061c57600080fd5b806318d9ceae1461052257806321a9d82a1461056857806323b872dd1461058257806327a14fc2146105a257600080fd5b8063150c880c116103b1578063150c880c1461047f5780631529fbbf146104a15780631694505e146104bb57806318160ddd1461050d57600080fd5b80630105d0fd146103ee57806306fdde0314610417578063095ea7b314610439578063142725fc1461046957600080fd5b366103e957005b600080fd5b3480156103fa57600080fd5b50610404601f5481565b6040519081526020015b60405180910390f35b34801561042357600080fd5b5061042c610cac565b60405161040e9190615456565b34801561044557600080fd5b506104596104543660046154e4565b610d3e565b604051901515815260200161040e565b34801561047557600080fd5b5061040460115481565b34801561048b57600080fd5b5061049f61049a36600461551e565b610d55565b005b3480156104ad57600080fd5b506022546104599060ff1681565b3480156104c757600080fd5b506023546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161040e565b34801561051957600080fd5b50600b54610404565b34801561052e57600080fd5b5061045961053d366004615557565b73ffffffffffffffffffffffffffffffffffffffff1660009081526027602052604090205460ff1690565b34801561057457600080fd5b50602a546104599060ff1681565b34801561058e57600080fd5b5061045961059d366004615574565b610f22565b3480156105ae57600080fd5b5061049f6105bd3660046155b5565b610f81565b3480156105ce57600080fd5b5061049f6105dd3660046155ce565b611118565b3480156105ee57600080fd5b506028546104599060ff1681565b34801561060857600080fd5b506104046106173660046155b5565b611296565b34801561062857600080fd5b5060095460405160ff909116815260200161040e565b34801561064a57600080fd5b5061049f610659366004615557565b611347565b34801561066a57600080fd5b506104596106793660046154e4565b61161b565b34801561068a57600080fd5b5061049f6106993660046155b5565b61165f565b3480156106aa57600080fd5b506026546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b3480156106d757600080fd5b506104046106e63660046155eb565b611792565b3480156106f757600080fd5b506024546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b34801561072457600080fd5b5060245461045990760100000000000000000000000000000000000000000000900460ff1681565b34801561075857600080fd5b5061040460105481565b34801561076e57600080fd5b5061049f61077d366004615557565b61183b565b34801561078e57600080fd5b5061045961079d366004615557565b73ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205460ff1690565b3480156107d457600080fd5b5061049f6107e33660046155ce565b611a76565b3480156107f457600080fd5b5061049f6108033660046155ce565b611c16565b34801561081457600080fd5b5061040460205481565b34801561082a57600080fd5b5061040460125481565b34801561084057600080fd5b5061040460135481565b34801561085657600080fd5b50602454610459907501000000000000000000000000000000000000000000900460ff1681565b34801561088957600080fd5b50610404610898366004615557565b611d94565b3480156108a957600080fd5b5061049f611e1a565b3480156108be57600080fd5b50601b546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108eb57600080fd5b506104596108fa366004615557565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205460ff1690565b34801561093157600080fd5b5061049f611f0a565b34801561094657600080fd5b50610404601d5481565b34801561095c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166104e8565b34801561098757600080fd5b5061042c612055565b34801561099c57600080fd5b5061040460155481565b3480156109b257600080fd5b506104596109c13660046154e4565b612064565b3480156109d257600080fd5b506104596109e1366004615557565b73ffffffffffffffffffffffffffffffffffffffff1660009081526029602052604090205460ff1690565b348015610a1857600080fd5b50610459610a273660046154e4565b6120a8565b348015610a3857600080fd5b5061040460145481565b348015610a4e57600080fd5b5061040460215481565b348015610a6457600080fd5b5061049f610a733660046155b5565b6120b5565b348015610a8457600080fd5b50600d54610404565b348015610a9957600080fd5b5061049f610aa8366004615610565b612210565b348015610ab957600080fd5b5061049f610ac8366004615557565b612410565b348015610ad957600080fd5b5061049f610ae836600461551e565b612651565b348015610af957600080fd5b50610404600e5481565b348015610b0f57600080fd5b506002610404565b348015610b2357600080fd5b50610404601e5481565b610459610b3b3660046155b5565b612812565b348015610b4c57600080fd5b5061049f610b5b36600461551e565b6129c6565b348015610b6c57600080fd5b50610404610b7b366004615632565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260036020908152604080832093909416825291909152205490565b348015610bbf57600080fd5b5061049f610bce3660046155ce565b612c05565b348015610bdf57600080fd5b50601c546104e89073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c0c57600080fd5b5061040460255481565b348015610c2257600080fd5b5061049f610c31366004615660565b612d00565b348015610c4257600080fd5b5061049f610c51366004615660565b612e9b565b348015610c6257600080fd5b50610404600f5481565b348015610c7857600080fd5b5061049f610c87366004615557565b61302b565b348015610c9857600080fd5b5061049f610ca7366004615557565b6131dc565b606060078054610cbb90615692565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce790615692565b8015610d345780601f10610d0957610100808354040283529160200191610d34565b820191906000526020600020905b815481529060010190602001808311610d1757829003601f168201915b5050505050905090565b6000610d4b338484613435565b5060015b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610ddb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205481151560ff909116151503610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660008181526027602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f8727c4afe988887760e8db0bbad9f9fcceee6428545956832f67c8fdbd589c1091015b60405180910390a25050565b6000610f2f8484846135e8565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260036020908152604080832033808552925290912054610f77918691610f72908690615714565b613435565b5060019392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611002576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b606461101060095460ff1690565b61101b90600a615847565b600b546110289190615856565b6110329190615856565b8110156110c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c65742070657263656e746167652063616e6e6f742062652060448201527f6c6f776572207468616e203125000000000000000000000000000000000000006064820152608401610dd2565b60095460ff166110d290600a615847565b6110dc9082615891565b60218190556040519081527f21bc0ea3406acb92d4449ab33befb4ae82f873a22f3b6cf0e466b2710beb5942906020015b60405180910390a150565b60005473ffffffffffffffffffffffffffffffffffffffff163314611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b602a5460ff16151581151503611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201527f746f2074686174207374617465000000000000000000000000000000000000006064820152608401610dd2565b602a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f19060200161110d565b6000600c5482111561132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201527f65666c656374696f6e73000000000000000000000000000000000000000000006064820152608401610dd2565b6000611334613cdf565b90506113408184615856565b9392505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff16611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610dd2565b60005b600654811015611617578173ffffffffffffffffffffffffffffffffffffffff166006828154811061148e5761148e6158a8565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff160361160557600680546114c590600190615714565b815481106114d5576114d56158a8565b6000918252602090912001546006805473ffffffffffffffffffffffffffffffffffffffff909216918390811061150e5761150e6158a8565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918416815260028252604080822082905560059092522080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560068054806115a9576115a96158d7565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690550190555050565b8061160f81615906565b91505061145a565b5050565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d4b918590610f7290869061593e565b3360008181526005602052604090205460ff16156116ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201527f6869732066756e6374696f6e00000000000000000000000000000000000000006064820152608401610dd2565b600061170a83613d02565b5050505073ffffffffffffffffffffffffffffffffffffffff8516600090815260016020526040902054929350611745928492509050615714565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260016020526040902055600c54611779908290615714565b600c55600d5461178a90849061593e565b600d55505050565b6000600a54831115611800576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610dd2565b8161182057600061181084613d02565b50949650610d4f95505050505050565b600061182b84613d02565b50939650610d4f95505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146118bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604090205460ff161561194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260016020526040902054156119cd5773ffffffffffffffffffffffffffffffffffffffff81166000908152600160205260409020546119a690611296565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600260205260409020555b73ffffffffffffffffffffffffffffffffffffffff16600081815260056020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611af7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b60225481151560ff909116151503611bb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f57616c6c657420746f2077616c6c6574207472616e7366657220776974686f7560448201527f742066656520697320616c72656164792073657420746f20746861742076616c60648201527f7565000000000000000000000000000000000000000000000000000000000000608482015260a401610dd2565b602280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215159081179091556040519081527f77c1f4015c54df9478a364bf8fc1b76b03f0eda36c594de58b4023771cebb9e79060200161110d565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b60285460ff16151581151503611d2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4d6178207472616e73616374696f6e206c696d697420697320616c726561647960448201527f2073657420746f207468617420737461746500000000000000000000000000006064820152608401610dd2565b602880547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151590811790915560405160ff909116151581527fe81be35e61864c26afd7a4655e99f321378d0aaae1e5af8ee67b658a7460f3cf9060200161110d565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205460ff1615611deb575073ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260016020526040902054610d4f90611296565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b602454760100000000000000000000000000000000000000000000900460ff1615612012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610dd2565b602480547fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff16760100000000000000000000000000000000000000000000179055565b606060088054610cbb90615692565b33600081815260036020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610d4b918590610f72908690615714565b6000610d4b3384846135e8565b60005473ffffffffffffffffffffffffffffffffffffffff163314612136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b620186a0612143600b5490565b61214d9190615856565b81116121db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e30303125206f6620746f74616c20737570706c7900006064820152608401610dd2565b60258190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b1459060200161110d565b60005473ffffffffffffffffffffffffffffffffffffffff163314612291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b6103e86122a060095460ff1690565b6122ab90600a615847565b600b546122b89190615856565b6122c29190615856565b821015801561230157506103e86122db60095460ff1690565b6122e690600a615847565b600b546122f39190615856565b6122fd9190615856565b8110155b61238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f4d6178205472616e73616374696f6e206c696d69732063616e6e6f742062652060448201527f6c6f776572207468616e20302e3125206f6620746f74616c20737570706c79006064820152608401610dd2565b60095460ff1661239e90600a615847565b6123a89083615891565b601f5560095460ff166123bc90600a615847565b6123c69082615891565b6020819055601f546040517f8c8cbc911b80df94332ececb8eb0945274d76fa965600a0f01f42af3f8afb13192612404928252602082015260400190565b60405180910390a15050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612491576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b601b5473ffffffffffffffffffffffffffffffffffffffff9081169082160361253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f4d61726b6574696e672077616c6c657420697320616c7265616479207468617460448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff81166125de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4d61726b6574696e672077616c6c657420697320746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b601b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fa964ba5c52d7e7bfcae4fb1ae4db9f211756d0e618e85fac5283b882a39e7a0b9060200161110d565b60005473ffffffffffffffffffffffffffffffffffffffff1633146126d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205481151560ff90911615150361278f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660008181526004602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610f16565b602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690556000612844613d5d565b61284f3330846135e8565b60235461289490309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff613435565b60235473ffffffffffffffffffffffffffffffffffffffff1663f305d719343085600080336128c442603261593e565b60405160e089901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff9687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015612956573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061297b9190615951565b5050602480547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16750100000000000000000000000000000000000000000017905550600192915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660009081526029602052604090205481151560ff909116151503612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f2074686174207360448201527f74617465000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b3073ffffffffffffffffffffffffffffffffffffffff831603612b82576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821660008181526029602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c9101610f16565b60005473ffffffffffffffffffffffffffffffffffffffff163314612c86576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b602480548215157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9091161790556040517f436b6cf978c7b6998fcce43dfe4d37e3a0dc2bb780144a2eb55d7138201e8a129061110d90831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b600e8490556010839055601282905560148190558082612da1858761593e565b612dab919061593e565b612db5919061593e565b601981905561012c1015612e4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f42757920666565732063616e6e6f742062652067726561746572207468616e2060448201527f33302500000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b600e54601054601254604080519384526020840192909252908201527ff12a090a464a491e1614a62b7d86a6f8d3fae25361d5af0911f39bd4fd7ea64d906060015b60405180910390a150505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612f1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b600f8490556011839055601382905560158190558082612f3c858761593e565b612f46919061593e565b612f50919061593e565b601a81905561012c1015612fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f53656c6c20666565732063616e6e6f742062652067726561746572207468616e60448201527f20333025000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b600f54601154601354604080519384526020840192909252908201527f969e8ecd326f5fe41e2a3cd9798553fbecef5705da23954426a09c9360c7aa5790606001612e8d565b60005473ffffffffffffffffffffffffffffffffffffffff1633146130ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff811661314f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610dd2565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461325d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd2565b3073ffffffffffffffffffffffffffffffffffffffff8216036132dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e65722063616e6e6f7420636c61696d206e617469766520746f6b656e736044820152606401610dd2565b73ffffffffffffffffffffffffffffffffffffffff81166133015761161733476141d1565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015613370573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613394919061597f565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af115801561340a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061342e9190615998565b5050505b50565b73ffffffffffffffffffffffffffffffffffffffff83166134d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff821661357a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff831661368b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610dd2565b6000811161371b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610dd2565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16158015613777575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff16155b1561380257602454760100000000000000000000000000000000000000000000900460ff16613802576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c6564207965740000000000006044820152606401610dd2565b60285460ff1615613a055760245473ffffffffffffffffffffffffffffffffffffffff84811691161480613850575060245473ffffffffffffffffffffffffffffffffffffffff8381169116145b8015613882575073ffffffffffffffffffffffffffffffffffffffff831660009081526027602052604090205460ff16155b80156138b4575073ffffffffffffffffffffffffffffffffffffffff821660009081526027602052604090205460ff16155b15613a055760245473ffffffffffffffffffffffffffffffffffffffff9081169084160361397357601f5481111561396e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610dd2565b613a05565b602054811115613a05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f416e74695768616c653a205472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e7400000000006064820152608401610dd2565b6000613a1030611d94565b60255490915081108015908190613a42575060245474010000000000000000000000000000000000000000900460ff16155b8015613a68575060245473ffffffffffffffffffffffffffffffffffffffff8581169116145b8015613a8f57506024547501000000000000000000000000000000000000000000900460ff165b15613b8f57602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055601354601254600091613ae59161593e565b90506000601154601054613af9919061593e565b90506000613b07828461593e565b90508015613b63578115613b3957600081613b228488615891565b613b2c9190615856565b9050613b37816142a7565b505b8215613b6357600081613b4c8588615891565b613b569190615856565b9050613b618161456c565b505b5050602480547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055505b613b9a858585614764565b602a5460ff1615613cd85773ffffffffffffffffffffffffffffffffffffffff851660009081526029602052604090205460ff16158015613c01575073ffffffffffffffffffffffffffffffffffffffff841660009081526029602052604090205460ff16155b8015613c28575060245473ffffffffffffffffffffffffffffffffffffffff858116911614155b15613cd8576000613c3885611d94565b602154909150613c48858361593e565b1115613cd6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201527f206d617857616c6c6574416d6f756e74000000000000000000000000000000006064820152608401610dd2565b505b5050505050565b6000806000613cec6149fc565b9092509050613cfb8183615856565b9250505090565b6000806000806000806000806000806000613d1c8c614bb3565b93509350935093506000806000613d3d8f878787613d38613cdf565b614c12565b919f509d509b509599509397509195509350505050919395979092949650565b602354604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa158015613dcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613df191906159b5565b905060008173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea391906159b5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff928316600482015291166024820152604401602060405180830381865afa158015613f13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f3791906159b5565b905073ffffffffffffffffffffffffffffffffffffffff8116614125578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613fde573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061400291906159b5565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015614074573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061409891906159b5565b6024805473ffffffffffffffffffffffffffffffffffffffff929092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602680549092168117909155600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b60245473ffffffffffffffffffffffffffffffffffffffff828116911614611617576024805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000091821681179092556026805490911682179055600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b60008147101561423d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610dd2565b60008373ffffffffffffffffffffffffffffffffffffffff168360405160006040518083038185875af1925050503d8060008114614297576040519150601f19603f3d011682016040523d82523d6000602084013e61429c565b606091505b509095945050505050565b60006142b4600283615856565b905060006142c28284615714565b604080516002808252606082018352929350479260009260208301908036833701905050905030816000815181106142fc576142fc6158a8565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561437b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061439f91906159b5565b816001815181106143b2576143b26158a8565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac9479061441e9087906000908690309042906004016159d2565b600060405180830381600087803b15801561443857600080fd5b505af115801561444c573d6000803e3d6000fd5b505050506000824761445e9190615714565b6023546022546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101889052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff610100909204821660848201524260a4820152929350169063f305d71990839060c40160606040518083038185885af11580156144fb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145209190615951565b505060408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561915060600160405180910390a1505050505050565b6040805160028082526060820183524792600092919060208301908036833701905050905030816000815181106145a5576145a56158a8565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152602354604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015614624573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061464891906159b5565b8160018151811061465b5761465b6158a8565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526023546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906146c79086906000908690309042906004016159d2565b600060405180830381600087803b1580156146e157600080fd5b505af11580156146f5573d6000803e3d6000fd5b50505050600082476147079190615714565b601b5490915061472d9073ffffffffffffffffffffffffffffffffffffffff16826141d1565b5060408051858152602081018390527f957ad1fc6d4d41da6d1a8d37303289ef3c4b78e0285ff5df1e12070ef0e629999101612e8d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604090205460ff16806147bd575073ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604090205460ff165b156147cf576147ca614c84565b614840565b60245473ffffffffffffffffffffffffffffffffffffffff908116908316036147fa576147ca614cb8565b60245473ffffffffffffffffffffffffffffffffffffffff90811690841603614825576147ca614d12565b60225460ff1615614838576147ca614c84565b614840614cb8565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16801561489b575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b156148b0576148ab838383614d67565b505050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff1615801561490b575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b1561491b576148ab838383614f03565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff16158015614977575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff16155b15614987576148ab838383614ff1565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205460ff1680156149e1575073ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604090205460ff165b156149f1576148ab83838361505e565b6148ab838383614ff1565b600c54600a546000918291825b600654811015614b8257826001600060068481548110614a2b57614a2b6158a8565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020541180614ab05750816002600060068481548110614a7c57614a7c6158a8565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054115b15614ac657600c54600a54945094505050509091565b6001600060068381548110614add57614add6158a8565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054614b199084615714565b92506002600060068381548110614b3257614b326158a8565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff168352820192909252604001902054614b6e9083615714565b915080614b7a81615906565b915050614a09565b50600a54600c54614b939190615856565b821015614baa57600c54600a549350935050509091565b90939092509050565b6000806000806000614bc486615108565b90506000614bd187615125565b90506000614bde88615138565b905060008183614bee868c615714565b614bf89190615714565b614c029190615714565b9993985091965094509092505050565b6000808080614c21858a615891565b90506000614c2f868a615891565b90506000614c3d878a615891565b90506000614c4b888a615891565b905060008183614c5b8688615714565b614c659190615714565b614c6f9190615714565b949d949c50929a509298505050505050505050565b601654158015614c945750601754155b8015614ca05750601854155b15614ca757565b600060168190556018819055601755565b600f54601654148015614cdb5750601554601154614cd6919061593e565b601754145b8015614cea5750601354601854145b15614cf157565b600f54601655601354601855601554601154614d0d919061593e565b601755565b600e54601654148015614d355750601454601054614d30919061593e565b601754145b8015614d445750601254601854145b15614d4b57565b600e54601655601254601855601454601054614d0d919061593e565b6000806000806000806000614d7b88613d02565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614dd49190615714565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614e11908890615714565b73ffffffffffffffffffffffffffffffffffffffff808c1660009081526001602052604080822093909355908b1681522054614e4e90879061593e565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260016020526040902055614e7d8161514b565b614e86826151db565b614e908584615430565b8873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051614eef91815260200190565b60405180910390a350505050505050505050565b6000806000806000806000614f1788613d02565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614f709190615714565b73ffffffffffffffffffffffffffffffffffffffff808c16600090815260016020908152604080832094909455918c16815260029091522054614fb490859061593e565b73ffffffffffffffffffffffffffffffffffffffff8a16600090815260026020908152604080832093909355600190522054614e4e90879061593e565b600080600080600080600061500588613d02565b965096509650965096509650965086600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054614e119190615714565b600080600080600080600061507288613d02565b965096509650965096509650965087600260008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546150cb9190615714565b73ffffffffffffffffffffffffffffffffffffffff8b16600090815260026020908152604080832093909355600190522054614f70908890615714565b60006103e86016548361511b9190615891565b610d4f9190615856565b60006103e86017548361511b9190615891565b60006103e86018548361511b9190615891565b801561343257600061515b613cdf565b905060006151698284615891565b3060009081526001602052604090205490915061518790829061593e565b3060009081526001602090815260408083209390935560059052205460ff16156148ab57306000908152600260205260409020546151c690849061593e565b30600090815260026020526040902055505050565b60008060105411806151ef57506000601154115b806151fc57506000601454115b8061520957506000601554115b1561525f57601554601454601154601054615224919061593e565b61522e919061593e565b615238919061593e565b601154601054615248919061593e565b6152529084615891565b61525c9190615856565b90505b600061526b8284615714565b905081156152fc57600061527d613cdf565b9050600061528b8285615891565b306000908152600160205260409020549091506152a990829061593e565b3060009081526001602090815260408083209390935560059052205460ff16156152f957306000908152600260205260409020546152e890859061593e565b306000908152600260205260409020555b50505b80156148ab57600061530c613cdf565b9050600061531a8284615891565b61dead60005260016020527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5490915061535590829061593e565b61dead6000527fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d5560056020527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460ff16156154125761dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc546153e490849061593e565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc555b82600b60008282546154249190615714565b90915550505050505050565b81600c5461543e9190615714565b600c55600d5461544f90829061593e565b600d555050565b600060208083528351808285015260005b8181101561548357858101830151858201604001528201615467565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461343257600080fd5b600080604083850312156154f757600080fd5b8235615502816154c2565b946020939093013593505050565b801515811461343257600080fd5b6000806040838503121561553157600080fd5b823561553c816154c2565b9150602083013561554c81615510565b809150509250929050565b60006020828403121561556957600080fd5b8135611340816154c2565b60008060006060848603121561558957600080fd5b8335615594816154c2565b925060208401356155a4816154c2565b929592945050506040919091013590565b6000602082840312156155c757600080fd5b5035919050565b6000602082840312156155e057600080fd5b813561134081615510565b600080604083850312156155fe57600080fd5b82359150602083013561554c81615510565b6000806040838503121561562357600080fd5b50508035926020909101359150565b6000806040838503121561564557600080fd5b8235615650816154c2565b9150602083013561554c816154c2565b6000806000806080858703121561567657600080fd5b5050823594602084013594506040840135936060013592509050565b600181811c908216806156a657607f821691505b6020821081036156df577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610d4f57610d4f6156e5565b600181815b8085111561578057817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821115615766576157666156e5565b8085161561577357918102915b93841c939080029061572c565b509250929050565b60008261579757506001610d4f565b816157a457506000610d4f565b81600181146157ba57600281146157c4576157e0565b6001915050610d4f565b60ff8411156157d5576157d56156e5565b50506001821b610d4f565b5060208310610133831016604e8410600b8410161715615803575081810a610d4f565b61580d8383615727565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561583f5761583f6156e5565b029392505050565b600061134060ff841683615788565b60008261588c577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082028115828204841417610d4f57610d4f6156e5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615937576159376156e5565b5060010190565b80820180821115610d4f57610d4f6156e5565b60008060006060848603121561596657600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561599157600080fd5b5051919050565b6000602082840312156159aa57600080fd5b815161134081615510565b6000602082840312156159c757600080fd5b8151611340816154c2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015615a2f57845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016159fd565b505073ffffffffffffffffffffffffffffffffffffffff96909616606085015250505060800152939250505056fea264697066735822122030cebc77179baf07779bcc196432172a7da8505b7d74beee2c3f1be71b5f1c1364736f6c63430008110033

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.