ETH Price: $2,353.31 (+5.15%)

Token

ZSTABLE.PROTOCOL (ZST)
 

Overview

Max Total Supply

100,000 ZST

Holders

1

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
100,000 ZST

Value
$0.00
0x083c3b9a697596755834dbEF3D0a70a77c36Ae07
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ZStable

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 2000 runs

Other Settings:
byzantium EvmVersion
File 1 of 15 : ZST.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/proxy/Initializable.sol";
import "./external/IUniswapV2Factory.sol";
import "./external/IUniswapV2Router02.sol";
import "./external/IWETH.sol";
import "./Constants.sol";
import "./Setters.sol";

contract ZStable is Setters, Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    modifier taxlessTx {
        _taxLess = true;
        _;
        _taxLess = false;
    }

    constructor () public {
        // uniswapRouterV2 = IUniswapV2Router02(Constants.getRouterAdd());
        // uniswapFactory = IUniswapV2Factory(Constants.getFactoryAdd());
        updateEpoch();
        initializeLargeTotal();
        _totalSupply = 10**5 * 10**9;
        uint256 currentFactor = getFactor();
        _largeBalances[_msgSender()] = _largeBalances[_msgSender()].add(_totalSupply.mul(currentFactor));
        emit Transfer(address(0),_msgSender(),_totalSupply);
    }

    function name() public view returns (string memory) {
        return Constants.getName();
    }
    
    function symbol() public view returns (string memory) {
        return Constants.getSymbol();
    }
    
    function decimals() public view returns (uint8) {
        return Constants.getDecimals();
    }
    
    function totalSupply() public view override returns (uint256) {
        return getTotalSupply();
    }
    
    function balanceOf(address account) public view override returns (uint256) {
        uint256 currentFactor = getFactor();
        return getLargeBalances(account).div(currentFactor);
    }

    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 getAllowances(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(), getAllowances(sender,_msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, getAllowances(_msgSender(),spender).add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, getAllowances(_msgSender(),spender).sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    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");
        setAllowances(owner, spender, amount);
        emit Approval(owner, spender, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Amount must be greater than zero");
        require(amount <= balanceOf(sender),"Amount exceeds balance");
        require(isPresaleDone(),"Presale yet to close");
        if (now > getCurrentEpoch().add(Constants.getEpochLength())) updateEpoch();
        uint256 currentFactor = getFactor();
        uint256 largeAmount = amount.mul(currentFactor);
        uint256 txType;
        if (isTaxLess()) {
            txType = 3;
        } else {
            bool lpBurn;
            if (isSupportedPool(sender)) {
                lpBurn = syncPair(sender);
            } else if (isSupportedPool(recipient)){
                silentSyncPair(recipient);
            } else {
                silentSyncPair(_mainPool);
            }
            txType = _getTxType(sender, recipient, lpBurn);
        }
        // Buy Transaction from supported pools - requires mint, no utility fee
        if (txType == 1) {
            uint256 totalMint = getMintValue(sender, amount);
            // uint256 mintSize = amount.div(100);
            _largeBalances[sender] = _largeBalances[sender].sub(largeAmount);
            _largeBalances[recipient] = _largeBalances[recipient].add(largeAmount);
            _totalSupply = _totalSupply.add(totalMint);
            emit Transfer(sender, recipient, amount);
        }
        // Sells to supported pools or unsupported transfer - requires exit burn and utility fee
        else if (txType == 2) {
            (uint256 burnSize, uint256 largeBurnSize) = getBurnValues(recipient, amount);
            uint256 actualTransferAmount = amount.sub(burnSize);
            uint256 largeTransferAmount = actualTransferAmount.mul(currentFactor);
            _largeBalances[sender] = _largeBalances[sender].sub(largeAmount);
            _largeBalances[recipient] = _largeBalances[recipient].add(largeTransferAmount);
            _totalSupply = _totalSupply.sub(burnSize);
            _largeTotal = _largeTotal.sub(largeBurnSize);
            emit Transfer(sender, recipient, actualTransferAmount);
            emit Transfer(sender, address(0), burnSize);
        } 
        // Add Liquidity via interface or Remove Liquidity Transaction to supported pools - no fee of any sort
        else if (txType == 3) {
            _largeBalances[sender] = _largeBalances[sender].sub(largeAmount);
            _largeBalances[recipient] = _largeBalances[recipient].add(largeAmount);
            emit Transfer(sender, recipient, amount);
        }
    }

    function _getTxType(address sender, address recipient, bool lpBurn) private returns(uint256) {
        uint256 txType = 2;
        if (isSupportedPool(sender)) {
            if (lpBurn) {
                txType = 3;
            } else {
                txType = 1;
            }
        } else if (sender == Constants.getRouterAdd()) {
            txType = 3;
        }
        return txType;
    }

    function setPresaleDone() public onlyOwner() {
        require(totalSupply() <= Constants.getLaunchSupply(), "Total supply is already minted");
        _mintRemaining();
        _presaleDone = true;
        _createEthPool();
    }

    function mintPresale(address[] memory presalers, uint256[] memory amounts, uint256 length) external onlyOwner() {
        require(!isPresaleDone(),"Presale is done");
        uint256 currentFactor = getFactor();
        for(uint256 i=0; i<length; i++) {
            uint256 largeAmount = amounts[i].mul(currentFactor);
            _largeBalances[owner()] = _largeBalances[owner()].sub(largeAmount);
            _largeBalances[presalers[i]] = _largeBalances[presalers[i]].add(largeAmount);
            emit Transfer(owner(), presalers[i], amounts[i]);
        }
    }

    function _mintRemaining() private {
        require(!isPresaleDone(), "Cannot mint post presale");
        addToAccount(address(this),80000 * 10 ** 9);
        addToAccount(owner(),20000 * 10 ** 9);
        emit Transfer(address(0),address(this),80000 * 10 ** 9);
    }

    function _createEthPool() private taxlessTx {
        IUniswapV2Router02 uniswapRouterV2 = getUniswapRouter();
        IUniswapV2Factory uniswapFactory = getUniswapFactory();
        address tokenUniswapPair;
        if (uniswapFactory.getPair(address(uniswapRouterV2.WETH()), address(this)) == address(0)) {
            tokenUniswapPair = uniswapFactory.createPair(
            address(uniswapRouterV2.WETH()), address(this));
        } else {
            tokenUniswapPair = uniswapFactory.getPair(address(this),uniswapRouterV2.WETH());
        }
        _approve(address(this), 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 8 * 10**4 * 10**9);
        uniswapRouterV2.addLiquidityETH{value: address(this).balance}(address(this),
            8 * 10**4 * 10**9, 0, 0, address(this), block.timestamp);
        addSupportedPool(tokenUniswapPair, address(uniswapRouterV2.WETH()));
        _mainPool = tokenUniswapPair;
    }

    function createTokenPool(address pairToken, uint256 amount) external onlyOwner() taxlessTx {
        IUniswapV2Router02 uniswapRouterV2 = getUniswapRouter();
        IUniswapV2Factory uniswapFactory = getUniswapFactory();
        address tokenUniswapPair;
        if (uniswapFactory.getPair(pairToken, address(this)) == address(0)) {
            tokenUniswapPair = uniswapFactory.createPair(
            pairToken, address(this));
        } else {
            tokenUniswapPair = uniswapFactory.getPair(pairToken,address(this));
        }
        require(uniswapFactory.getPair(pairToken,address(uniswapRouterV2.WETH())) != address(0), "Eth pairing does not exist");
        require(balanceOf(address(this)) >= amount, "Amount exceeds the token balance");
        uint256 toConvert = amount.div(2);
        uint256 toAdd = amount.sub(toConvert);
        uint256 initialBalance = IERC20(pairToken).balanceOf(address(this));
        address[] memory path = new address[](3);
        path[0] = address(this);
        path[1] = uniswapRouterV2.WETH();
        path[2] = pairToken;
        _approve(address(this), address(uniswapRouterV2), toConvert);
        uniswapRouterV2.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            toConvert, 0, path, address(this), block.timestamp);
        uint256 newBalance = IERC20(pairToken).balanceOf(address(this)).sub(initialBalance);
        _approve(address(this), address(uniswapRouterV2), toAdd);
        IERC20(pairToken).approve(address(uniswapRouterV2), newBalance);
        uniswapRouterV2.addLiquidity(address(this),pairToken,toAdd,newBalance,0,0,address(this),block.timestamp);
        addSupportedPool(tokenUniswapPair, pairToken);
    }

    function addNewSupportedPool(address pool, address pairToken) external onlyOwner() {
        addSupportedPool(pool, pairToken);
    }

    function removeOldSupportedPool(address pool) external onlyOwner() {
        removeSupportedPool(pool);
    }

    receive() external payable {

    }

}

File 2 of 15 : Constants.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

library Constants {
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _launchSupply = 2 * 10**5 * 10**9;
    uint256 private constant _largeTotal = (MAX - (MAX % _launchSupply));

    uint256 private constant _baseExpansionFactor = 100;
    uint256 private constant _baseContractionFactor = 100;
    uint256 private constant _baseUtilityFee = 50;
    uint256 private constant _baseContractionCap = 1000;

    uint256 private constant _epochLength = 4 hours;

    address private constant _routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address private constant _factoryAddress = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;

    string private constant _name = "ZSTABLE.PROTOCOL";
    string private constant _symbol = "ZST";
    uint8 private constant _decimals = 9;

    /****** Getters *******/
    function getLaunchSupply() internal pure returns (uint256) {
        return _launchSupply;
    }
    function getLargeTotal() internal pure returns (uint256) {
        return _largeTotal;
    }
    function getBaseExpansionFactor() internal pure returns (uint256) {
        return _baseExpansionFactor;
    }
    function getBaseContractionFactor() internal pure returns (uint256) {
        return _baseContractionFactor;
    }
    function getBaseContractionCap() internal pure returns (uint256) {
        return _baseContractionCap;
    }
    function getBaseUtilityFee() internal pure returns (uint256) {
        return _baseUtilityFee;
    }
    function getEpochLength() internal pure returns (uint256) {
        return _epochLength;
    }
    function getRouterAdd() internal pure returns (address) {
        return _routerAddress;
    }
    function getFactoryAdd() internal pure returns (address) {
        return _factoryAddress;
    }
    function getName() internal pure returns (string memory)  {
        return _name;
    }
    function getSymbol() internal pure returns (string memory) {
        return _symbol;
    }
    function getDecimals() internal pure returns (uint8) {
        return _decimals;
    }
}

File 3 of 15 : Getters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./external/IUniswapV2Factory.sol";
import "./external/IUniswapV2Router02.sol";
import "./Constants.sol";
import "./State.sol";

contract Getters is State {
    using SafeMath for uint256;
    using Address for address;

    function getLargeBalances(address account) public view returns (uint256) {
        return _largeBalances[account];
    }
    function getAllowances(address account, address spender) public view returns (uint256) {
        return _allowances[account][spender];
    } 
    function getSupportedPools(uint256 index) public view returns (address) {
        return _supportedPools[index];
    }
    function getPoolCounters(address pool) public view returns (address, uint256, uint256, uint256, uint256, uint256) {
        PoolCounter memory pc = _poolCounters[pool];
        return (pc.pairToken, pc.tokenBalance, pc.pairTokenBalance, pc.lpBalance, pc.startTokenBalance, pc.startPairTokenBalance);
    }
    function isSupportedPool(address pool) public view returns (bool) {
        return _isSupportedPool[pool];
    }
    function mainPool() public view returns (address) {
        return _mainPool;
    }
    function getCurrentEpoch() public view returns (uint256) {
        return _currentEpoch;
    }
    function getLargeTotal() public view returns (uint256) {
        return _largeTotal;
    }
    function getTotalSupply() public view returns (uint256) {
        return _totalSupply;
    }
    function isPresaleDone() public view returns (bool) {
        return _presaleDone;
    }
    function isTaxLess() public view returns (bool) {
        return _taxLess;
    }
    function getUniswapRouter() public view returns (IUniswapV2Router02) {
        return IUniswapV2Router02(Constants.getRouterAdd());
    }
    function getUniswapFactory() public view returns (IUniswapV2Factory) {
        return IUniswapV2Factory(Constants.getFactoryAdd());
    }
    function getFactor() public view returns(uint256) {
        if (isPresaleDone()) {
            return _largeTotal.div(_totalSupply);
        } else {
            return _largeTotal.div(Constants.getLaunchSupply());
        }
    }
    function getUpdatedPoolCounters(address pool, address pairToken) public view returns (uint256, uint256, uint256) {
        uint256 lpBalance = IERC20(pool).totalSupply();
        uint256 tokenBalance = IERC20(address(this)).balanceOf(pool);
        uint256 pairTokenBalance = IERC20(address(pairToken)).balanceOf(pool);
        return (tokenBalance, pairTokenBalance, lpBalance);
    }
    function getMintValue(address sender, uint256 amount) internal view returns(uint256) {
        uint256 expansionR = (_poolCounters[sender].pairTokenBalance).mul(_poolCounters[sender].startTokenBalance).mul(100).div(_poolCounters[sender].startPairTokenBalance).div(_poolCounters[sender].tokenBalance);
        uint256 mintAmount;
        if (expansionR > (Constants.getBaseExpansionFactor()).add(10000).div(100)) {
            uint256 mintFactor = expansionR.mul(expansionR);
            mintAmount = amount.mul(mintFactor.sub(10000)).div(10000);
        } else {
            mintAmount = amount.mul(Constants.getBaseExpansionFactor()).div(10000);
        }
        return mintAmount;
    }

    function getBurnValues(address recipient, uint256 amount) internal view returns(uint256, uint256) {
        uint256 currentFactor = getFactor();
        uint256 contractionR;
        if (isSupportedPool(recipient)) {
            contractionR = (_poolCounters[recipient].tokenBalance).mul(_poolCounters[recipient].startPairTokenBalance).mul(100).div(_poolCounters[recipient].pairTokenBalance).div(_poolCounters[recipient].startTokenBalance);
        } else {
            contractionR = (_poolCounters[_mainPool].tokenBalance).mul(_poolCounters[_mainPool].startPairTokenBalance).mul(100).div(_poolCounters[_mainPool].pairTokenBalance).div(_poolCounters[_mainPool].startTokenBalance);
        }
        uint256 burnAmount;
        if (contractionR > (Constants.getBaseContractionFactor().add(10000)).div(100)) {
            uint256 burnFactor = contractionR.mul(contractionR);
            burnAmount = amount.mul(burnFactor.sub(10000)).div(10000);
            if (burnAmount > amount.mul(Constants.getBaseContractionCap()).div(10000)) burnAmount = amount.mul(Constants.getBaseContractionCap()).div(10000);
        } else {
            burnAmount = amount.mul(Constants.getBaseContractionFactor()).div(10000);
        }
        return (burnAmount, burnAmount.mul(currentFactor));
    }

    function getUtilityFee(uint256 amount) internal view returns(uint256, uint256) {
        uint256 currentFactor = getFactor();
        uint256 utilityFee = amount.mul(Constants.getBaseUtilityFee()).div(10000);
        return (utilityFee, utilityFee.mul(currentFactor));
    }
    function getMintRate(address pool) external view returns (uint256) {
        uint256 expansionR = (_poolCounters[pool].pairTokenBalance).mul(_poolCounters[pool].startTokenBalance).mul(100).div(_poolCounters[pool].startPairTokenBalance).div(_poolCounters[pool].tokenBalance);
        if (expansionR > (Constants.getBaseExpansionFactor()).add(10000).div(100)) {
            uint256 mintFactor = expansionR.mul(expansionR);
            return mintFactor.sub(10000);
        } else {
            return Constants.getBaseExpansionFactor();
        }
    }
    function getBurnRate(address pool) external view returns (uint256) {
        uint256 contractionR = (_poolCounters[pool].tokenBalance).mul(_poolCounters[pool].startPairTokenBalance).mul(100).div(_poolCounters[pool].pairTokenBalance).div(_poolCounters[pool].startTokenBalance);
        uint256 burnRate;
        if (contractionR > (Constants.getBaseContractionFactor().add(10000)).div(100)) {
            uint256 burnFactor = contractionR.mul(contractionR);
            burnRate = burnFactor.sub(10000);
            if (burnRate > Constants.getBaseContractionCap()) {
                return Constants.getBaseContractionCap();
            }
            return burnRate;

        } else {
            return Constants.getBaseContractionFactor();
        }
    }
}

File 4 of 15 : Setters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

import "./Constants.sol";
import "./State.sol";
import "./Getters.sol";

contract Setters is State, Getters {
    function setAllowances(address owner, address spender, uint256 amount) internal {
        _allowances[owner][spender] = amount;
    }
    function addToAccount(address account, uint256 amount) internal {
        uint256 currentFactor = getFactor();
        uint256 largeAmount = amount.mul(currentFactor);
        _largeBalances[account] = _largeBalances[account].add(largeAmount);
        _totalSupply = _totalSupply.add(amount);
    }
    function addToAll(uint256 amount) internal {
        _totalSupply = _totalSupply.add(amount);
    }
    function initializeEpoch() internal {
        _currentEpoch = now;
    }
    function updateEpoch() internal {
        initializeEpoch();
        for (uint256 i=0; i<_supportedPools.length; i++) {
            _poolCounters[_supportedPools[i]].startTokenBalance = _poolCounters[_supportedPools[i]].tokenBalance;
            _poolCounters[_supportedPools[i]].startPairTokenBalance = _poolCounters[_supportedPools[i]].pairTokenBalance;
        }
    }
    function initializeLargeTotal() internal {
        _largeTotal = Constants.getLargeTotal();
    }
    function syncPair(address pool) internal returns(bool) {
        (uint256 tokenBalance, uint256 pairTokenBalance, uint256 lpBalance) = getUpdatedPoolCounters(pool, _poolCounters[pool].pairToken);
        bool lpBurn = lpBalance < _poolCounters[pool].lpBalance;
        _poolCounters[pool].lpBalance = lpBalance;
        _poolCounters[pool].tokenBalance = tokenBalance;
        _poolCounters[pool].pairTokenBalance = pairTokenBalance;
        return (lpBurn);
    }
    function silentSyncPair(address pool) public {
        (uint256 tokenBalance, uint256 pairTokenBalance, uint256 lpBalance) = getUpdatedPoolCounters(pool, _poolCounters[pool].pairToken);
        _poolCounters[pool].lpBalance = lpBalance;
        _poolCounters[pool].tokenBalance = tokenBalance;
        _poolCounters[pool].pairTokenBalance = pairTokenBalance;
    }
    function addSupportedPool(address pool, address pairToken) internal {
        require(!isSupportedPool(pool),"This pool is already supported");
        _isSupportedPool[pool] = true;
        _supportedPools.push(pool);
        (uint256 tokenBalance, uint256 pairTokenBalance, uint256 lpBalance) = getUpdatedPoolCounters(pool, pairToken);
        _poolCounters[pool] = PoolCounter(pairToken, tokenBalance, pairTokenBalance, lpBalance, tokenBalance, pairTokenBalance);
    }
    function removeSupportedPool(address pool) internal {
        require(isSupportedPool(pool), "This pool is currently not supported");
        for (uint256 i = 0; i < _supportedPools.length; i++) {
            if (_supportedPools[i] == pool) {
                _supportedPools[i] = _supportedPools[_supportedPools.length - 1];
                _isSupportedPool[pool] = false;
                delete _poolCounters[pool];
                _supportedPools.pop();
                break;
            }
        }
    }
}

File 5 of 15 : State.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

contract State {

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

    // Supported pools and data for measuring mint & burn factors
    struct PoolCounter {
        address pairToken;
        uint256 tokenBalance;
        uint256 pairTokenBalance;
        uint256 lpBalance;
        uint256 startTokenBalance;
        uint256 startPairTokenBalance;
    }
    address[] _supportedPools;
    mapping (address => PoolCounter) _poolCounters;
    mapping (address => bool) _isSupportedPool;
    address _mainPool;

    uint256 _currentEpoch;
 
    uint256 _largeTotal;
    uint256 _totalSupply;

    bool _presaleDone;
    
    bool _taxLess;
}

File 6 of 15 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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;
}

File 7 of 15 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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);
}

File 8 of 15 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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;
}

File 9 of 15 : IWETH.sol
pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}

File 10 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

File 11 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

File 12 of 15 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

File 13 of 15 : Initializable.sol
// SPDX-License-Identifier: MIT

// solhint-disable-next-line compiler-version
pragma solidity >=0.4.24 <0.8.0;


/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 * 
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}.
 * 
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 */
abstract contract Initializable {

    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /// @dev Returns true if and only if the function is running in the constructor
    function _isConstructor() private view returns (bool) {
        // extcodesize checks the size of the code stored in an address, and
        // address returns the current address. Since the code is still not
        // deployed when running a constructor, any checks on its code size will
        // yield zero, making it an effective way to detect if a contract is
        // under construction or not.
        address self = address(this);
        uint256 cs;
        // solhint-disable-next-line no-inline-assembly
        assembly { cs := extcodesize(self) }
        return cs == 0;
    }
}

File 14 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 15 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        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 }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    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");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        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);
            }
        }
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 2000
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"address","name":"pairToken","type":"address"}],"name":"addNewSupportedPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pairToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createTokenPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"getAllowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getBurnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLargeBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLargeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getPoolCounters","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getSupportedPools","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"address","name":"pairToken","type":"address"}],"name":"getUpdatedPoolCounters","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"isPresaleDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"isSupportedPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxLess","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"presalers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"removeOldSupportedPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPresaleDone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"silentSyncPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50600062000027640100000000620001c7810204565b600980546201000060b060020a03191662010000600160a060020a03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000092640100000000620001cc810204565b620000a56401000000006200031a810204565b655af3107a40006008556000620000c464010000000062000337810204565b6008549091506200012e90620000e9908364010000000062001aee620003ad82021704565b600080620000ff640100000000620001c7810204565b600160a060020a031681526020810191909152604001600020549064010000000062001b306200041982021704565b60008062000144640100000000620001c7810204565b600160a060020a0316815260208101919091526040016000205562000171640100000000620001c7810204565b600160a060020a03166000600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600854604051620001b8919062000611565b60405180910390a3506200061a565b335b90565b620001df6401000000006200045b810204565b60005b60025481101562000317576003600060028381548110620001ff57fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a031681526020019081526020016000206001015460036000600284815481106200025357fe5b6000918252602080832090910154600160a060020a03168352820192909252604001812060040191909155600280546003929190849081106200029257fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600201546003600060028481548110620002e657fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902060050155600101620001e2565b50565b6200033264010000000062001b5d6200046182021704565b600755565b60006200034c6401000000006200046c810204565b156200037957600854600754620003719164010000000062001b816200047582021704565b9050620001c9565b620003716200039564010000000062001bc3620004c882021704565b6007549064010000000062001b816200047582021704565b600082620003be5750600062000413565b82820282848281620003cc57fe5b041462000410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040790620005b4565b60405180910390fd5b90505b92915050565b60008282018381101562000410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000407906200057d565b42600655565b6507326b47ffff1990565b60095460ff1690565b60006200041083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004d2640100000000026401000000009004565b65b5e620f4800090565b6000818362000510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000407919062000527565b5060008385816200051d57fe5b0495945050505050565b6000602080835283518082850152825b81811015620005555785810183015185820160400152820162000537565b81811115620005675783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b90815260200190565b613ab6806200062a6000396000f3fe60806040526004361061028b576000357c0100000000000000000000000000000000000000000000000000000000900480637dff268011610170578063ae2089ad116100e8578063c4e41b221161009c578063dd62ed3e11610081578063dd62ed3e14610694578063ec2b4e36146106b4578063f2fde38b146106d457610292565b8063c4e41b221461065f578063cb4d31951461067457610292565b8063b72455bd116100cd578063b72455bd14610606578063b97dd9e21461061b578063bf9a3a1b1461063057610292565b8063ae2089ad146105c6578063b21c3278146105e657610292565b8063927ac3861161013f578063a457c2d711610124578063a457c2d714610571578063a5a302d314610591578063a9059cbb146105a657610292565b8063927ac3861461054757806395d89b411461055c57610292565b80637dff2680146104c057806380c2bbd2146104e057806389398783146105005780638da5cb5b1461053257610292565b80633eedf63c116102035780635184cc43116101d25780635d15d341116101b75780635d15d3411461046b57806370a082311461048b578063715018a6146104ab57610292565b80635184cc4314610441578063524900b51461045657610292565b80633eedf63c146103cc5780634028358a146103e157806342b5f375146104015780634f78aa821461042157610292565b806323ecdf611161025a578063313ce5671161023f578063313ce56714610368578063395093511461038a5780633e6dfa36146103aa57610292565b806323ecdf61146103315780632a0bd6381461034657610292565b806306fdde0314610297578063095ea7b3146102c257806318160ddd146102ef57806323b872dd1461031157610292565b3661029257005b600080fd5b3480156102a357600080fd5b506102ac6106f4565b6040516102b991906133d0565b60405180910390f35b3480156102ce57600080fd5b506102e26102dd36600461314a565b610704565b6040516102b991906133bc565b3480156102fb57600080fd5b50610304610722565b6040516102b991906133c7565b34801561031d57600080fd5b506102e261032c36600461310a565b61072c565b34801561033d57600080fd5b506102e2610784565b34801561035257600080fd5b50610366610361366004613175565b610792565b005b34801561037457600080fd5b5061037d6109b7565b6040516102b991906139a9565b34801561039657600080fd5b506102e26103a536600461314a565b6109c1565b3480156103b657600080fd5b506103bf6109ea565b6040516102b991906132be565b3480156103d857600080fd5b506103666109f4565b3480156103ed57600080fd5b506103666103fc3660046130d2565b610a8c565b34801561040d57600080fd5b5061030461041c36600461309a565b610add565b34801561042d57600080fd5b5061030461043c36600461309a565b610ba9565b34801561044d57600080fd5b50610304610c38565b34801561046257600080fd5b506103bf610c71565b34801561047757600080fd5b5061036661048636600461314a565b610c7b565b34801561049757600080fd5b506103046104a636600461309a565b6114ee565b3480156104b757600080fd5b5061036661150f565b3480156104cc57600080fd5b506103bf6104db366004613261565b6115ba565b3480156104ec57600080fd5b506103666104fb36600461309a565b6115e4565b34801561050c57600080fd5b5061052061051b36600461309a565b611649565b6040516102b996959493929190613389565b34801561053e57600080fd5b506103bf6116d5565b34801561055357600080fd5b506102e26116ea565b34801561056857600080fd5b506102ac6116f3565b34801561057d57600080fd5b506102e261058c36600461314a565b6116fd565b34801561059d57600080fd5b506103bf611739565b3480156105b257600080fd5b506102e26105c136600461314a565b611748565b3480156105d257600080fd5b506103046105e136600461309a565b61175c565b3480156105f257600080fd5b506103046106013660046130d2565b611777565b34801561061257600080fd5b506103046117a2565b34801561062757600080fd5b506103046117a8565b34801561063c57600080fd5b5061065061064b3660046130d2565b6117ae565b6040516102b993929190613993565b34801561066b57600080fd5b5061030461197e565b34801561068057600080fd5b5061036661068f36600461309a565b611984565b3480156106a057600080fd5b506103046106af3660046130d2565b6119d3565b3480156106c057600080fd5b506102e26106cf36600461309a565b6119df565b3480156106e057600080fd5b506103666106ef36600461309a565b6119fd565b60606106fe611bcd565b90505b90565b6000610718610711611c04565b8484611c08565b5060015b92915050565b60006106fe61197e565b6000610739848484611cbf565b61077a84610745611c04565b61077585604051806060016040528060288152602001613a346028913961076e8a610601611c04565b919061215d565b611c08565b5060019392505050565b600954610100900460ff1690565b61079a611c04565b600954620100009004600160a060020a039081169116146107de57604051600080516020613a1483398151915281526004016107d590613732565b60405180910390fd5b6107e66116ea565b1561080b57604051600080516020613a1483398151915281526004016107d59061369e565b6000610815610c38565b905060005b828110156109b057600061084a8386848151811061083457fe5b6020026020010151611aee90919063ffffffff16565b905061087b8160008061085b6116d5565b600160a060020a0316815260208101919091526040016000205490612191565b6000806108866116d5565b600160a060020a0316600160a060020a03168152602001908152602001600020819055506108f4816000808986815181106108bd57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002054611b3090919063ffffffff16565b60008088858151811061090357fe5b6020026020010151600160a060020a0316600160a060020a031681526020019081526020016000208190555085828151811061093b57fe5b6020026020010151600160a060020a03166109546116d5565b600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87858151811061098a57fe5b602002602001015160405161099f91906133c7565b60405180910390a35060010161081a565b5050505050565b60006106fe6121d3565b60006107186109ce611c04565b84610775856109e46109de611c04565b89611777565b90611b30565b60006106fe6121d8565b6109fc611c04565b600954620100009004600160a060020a03908116911614610a3757604051600080516020613a1483398151915281526004016107d590613732565b610a3f611bc3565b610a47610722565b1115610a6d57604051600080516020613a1483398151915281526004016107d590613767565b610a756121f0565b6009805460ff19166001179055610a8a612289565b565b610a94611c04565b600954620100009004600160a060020a03908116911614610acf57604051600080516020613a1483398151915281526004016107d590613732565b610ad982826127ee565b5050565b600160a060020a03811660009081526003602052604081206004810154600282015460058301546001909301548493610b329392610b2c9290918391606491610b269190611aee565b90611aee565b90611b81565b90506000610b496064610b2c6127106109e4612935565b821115610b97576000610b5c8380611aee565b9050610b6a81612710612191565b9150610b7461293a565b821115610b8d57610b8361293a565b9350505050610ba4565b509150610ba49050565b610b9f612935565b925050505b919050565b600160a060020a03811660009081526003602052604081206001810154600582015460048301546002909301548493610bf29392610b2c9290918391606491610b269190611aee565b9050610c076064610b2c6127106109e4612935565b811115610c28576000610c1a8280611aee565b9050610b9f81612710612191565b610c30612935565b915050610ba4565b6000610c426116ea565b15610c5d57600854600754610c5691611b81565b9050610701565b610c56610c68611bc3565b60075490611b81565b60006106fe612940565b610c83611c04565b600954620100009004600160a060020a03908116911614610cbe57604051600080516020613a1483398151915281526004016107d590613732565b6009805461ff0019166101001790556000610cd7610c71565b90506000610ce36109ea565b6040517fe6a439050000000000000000000000000000000000000000000000000000000081529091506000908190600160a060020a0384169063e6a4390590610d3290899030906004016132d2565b60206040518083038186803b158015610d4a57600080fd5b505afa158015610d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8291906130b6565b600160a060020a03161415610e31576040517fc9c65396000000000000000000000000000000000000000000000000000000008152600160a060020a0383169063c9c6539690610dd890889030906004016132d2565b602060405180830381600087803b158015610df257600080fd5b505af1158015610e06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2a91906130b6565b9050610ecb565b6040517fe6a43905000000000000000000000000000000000000000000000000000000008152600160a060020a0383169063e6a4390590610e7890889030906004016132d2565b60206040518083038186803b158015610e9057600080fd5b505afa158015610ea4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec891906130b6565b90505b6000600160a060020a031682600160a060020a031663e6a439058786600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015610f3b57600080fd5b505afa158015610f4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7391906130b6565b6040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610fac9291906132d2565b60206040518083038186803b158015610fc457600080fd5b505afa158015610fd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffc91906130b6565b600160a060020a0316141561102b57604051600080516020613a1483398151915281526004016107d5906138ec565b83611035306114ee565b101561105b57604051600080516020613a1483398151915281526004016107d590613632565b6000611068856002611b81565b905060006110768683612191565b9050600087600160a060020a03166370a08231306040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016110c291906132be565b60206040518083038186803b1580156110da57600080fd5b505afa1580156110ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111129190613279565b6040805160038082526080820190925291925060609190602082018380368337019050509050308160008151811061114657fe5b6020026020010190600160a060020a03169081600160a060020a03168152505086600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156111bb57600080fd5b505afa1580156111cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f391906130b6565b8160018151811061120057fe5b6020026020010190600160a060020a03169081600160a060020a031681525050888160028151811061122e57fe5b6020026020010190600160a060020a03169081600160a060020a031681525050611259308886611c08565b6040517f5c11d795000000000000000000000000000000000000000000000000000000008152600160a060020a03881690635c11d795906112a7908790600090869030904290600401613923565b600060405180830381600087803b1580156112c157600080fd5b505af11580156112d5573d6000803e3d6000fd5b50505050600061137d838b600160a060020a03166370a08231306040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161132791906132be565b60206040518083038186803b15801561133f57600080fd5b505afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113779190613279565b90612191565b905061138a308986611c08565b6040517f095ea7b3000000000000000000000000000000000000000000000000000000008152600160a060020a038b169063095ea7b3906113d1908b908590600401613370565b602060405180830381600087803b1580156113eb57600080fd5b505af11580156113ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114239190613241565b506040517fe8e33700000000000000000000000000000000000000000000000000000000008152600160a060020a0389169063e8e33700906114789030908e90899087906000908190869042906004016132ec565b606060405180830381600087803b15801561149257600080fd5b505af11580156114a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ca9190613291565b5050506114d7868b6127ee565b50506009805461ff00191690555050505050505050565b6000806114f9610c38565b905061150881610b2c8561175c565b9392505050565b611517611c04565b600954620100009004600160a060020a0390811691161461155257604051600080516020613a1483398151915281526004016107d590613732565b600954604051600091620100009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980547fffffffffffffffffffff0000000000000000000000000000000000000000ffff169055565b6000600282815481106115c957fe5b600091825260209091200154600160a060020a031692915050565b600160a060020a03808216600090815260036020526040812054909182918291611610918691166117ae565b600160a060020a039096166000908152600360208190526040909120908101969096556001860191909155600290940193909355505050565b60008060008060008061165a612fed565b50505050600160a060020a03938416600090815260036020818152604092839020835160c0810185528154909816808952600182015492890183905260028201549489018590529281015460608901819052600482015460808a0181905260059092015460a090990189905292989197939650919450909250565b600954620100009004600160a060020a031690565b60095460ff1690565b60606106fe612958565b600061071861170a611c04565b8461077585604051806060016040528060258152602001613a5c6025913961076e611733611c04565b8a611777565b600554600160a060020a031690565b6000610718611755611c04565b8484611cbf565b600160a060020a031660009081526020819052604090205490565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60075490565b60065490565b60008060008085600160a060020a03166318160ddd6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561180957600080fd5b505afa15801561181d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118419190613279565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815290915060009030906370a0823190611883908a906004016132be565b60206040518083038186803b15801561189b57600080fd5b505afa1580156118af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d39190613279565b9050600086600160a060020a03166370a08231896040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161191f91906132be565b60206040518083038186803b15801561193757600080fd5b505afa15801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f9190613279565b91989197509195509350505050565b60085490565b61198c611c04565b600954620100009004600160a060020a039081169116146119c757604051600080516020613a1483398151915281526004016107d590613732565b6119d08161298f565b50565b60006115088383611777565b600160a060020a031660009081526004602052604090205460ff1690565b611a05611c04565b600954620100009004600160a060020a03908116911614611a4057604051600080516020613a1483398151915281526004016107d590613732565b600160a060020a038116611a6e57604051600080516020613a1483398151915281526004016107d59061350c565b600954604051600160a060020a038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360098054600160a060020a0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b600082611afd5750600061071c565b82820282848281611b0a57fe5b041461150857604051600080516020613a1483398151915281526004016107d5906136d5565b60008282018381101561150857604051600080516020613a1483398151915281526004016107d5906135c6565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffff8cd94b8000090565b600061150883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612af5565b65b5e620f4800090565b60408051808201909152601081527f5a535441424c452e50524f544f434f4c00000000000000000000000000000000602082015290565b3390565b600160a060020a038316611c3657604051600080516020613a1483398151915281526004016107d590613858565b600160a060020a038216611c6457604051600080516020613a1483398151915281526004016107d590613569565b611c6f838383612b34565b81600160a060020a031683600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cb291906133c7565b60405180910390a3505050565b600160a060020a038316611ced57604051600080516020613a1483398151915281526004016107d5906137fb565b600160a060020a038216611d1b57604051600080516020613a1483398151915281526004016107d590613478565b60008111611d4357604051600080516020613a1483398151915281526004016107d5906135fd565b611d4c836114ee565b811115611d7357604051600080516020613a1483398151915281526004016107d590613441565b611d7b6116ea565b611d9f57604051600080516020613a1483398151915281526004016107d590613667565b611db2611daa612b60565b6109e46117a8565b421115611dc157611dc1612b66565b6000611dcb610c38565b90506000611dd98383611aee565b90506000611de5610784565b15611df257506003611e52565b6000611dfd876119df565b15611e1257611e0b87612ca0565b9050611e43565b611e1b866119df565b15611e2e57611e29866115e4565b611e43565b600554611e4390600160a060020a03166115e4565b611e4e878783612d0b565b9150505b8060011415611f39576000611e678786612d61565b600160a060020a038816600090815260208190526040902054909150611e8d9084612191565b600160a060020a038089166000908152602081905260408082209390935590881681522054611ebc9084611b30565b600160a060020a038716600090815260208190526040902055600854611ee29082611b30565b60088190555085600160a060020a031687600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611f2b91906133c7565b60405180910390a350612155565b806002141561209f57600080611f4f8787612e19565b90925090506000611f608784612191565b90506000611f6e8288611aee565b600160a060020a038b16600090815260208190526040902054909150611f949087612191565b600160a060020a03808c1660009081526020819052604080822093909355908b1681522054611fc39082611b30565b600160a060020a038a16600090815260208190526040902055600854611fe99085612191565b600855600754611ff99084612191565b60078190555088600160a060020a03168a600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161204291906133c7565b60405180910390a36000600160a060020a03168a600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161208e91906133c7565b60405180910390a350505050612155565b806003141561215557600160a060020a0386166000908152602081905260409020546120cb9083612191565b600160a060020a0380881660009081526020819052604080822093909355908716815220546120fa9083611b30565b600160a060020a0380871660008181526020819052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061214c9088906133c7565b60405180910390a35b505050505050565b6000818484111561218957604051600080516020613a1483398151915281526004016107d591906133d0565b505050900390565b600061150883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061215d565b600990565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f90565b6121f86116ea565b1561221d57604051600080516020613a1483398151915281526004016107d5906134d5565b61222d306548c273950000612f7a565b6122446122386116d5565b6512309ce54000612f7a565b60405130906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061227f906548c273950000906133c7565b60405180910390a3565b6009805461ff00191661010017905560006122a2610c71565b905060006122ae6109ea565b9050600080600160a060020a031682600160a060020a031663e6a4390585600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561232057600080fd5b505afa158015612334573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235891906130b6565b306040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016123929291906132d2565b60206040518083038186803b1580156123aa57600080fd5b505afa1580156123be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e291906130b6565b600160a060020a031614156125205781600160a060020a031663c9c6539684600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561245557600080fd5b505afa158015612469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248d91906130b6565b306040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016124c79291906132d2565b602060405180830381600087803b1580156124e157600080fd5b505af11580156124f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251991906130b6565b9050612649565b81600160a060020a031663e6a439053085600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561258557600080fd5b505afa158015612599573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125bd91906130b6565b6040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016125f69291906132d2565b60206040518083038186803b15801561260e57600080fd5b505afa158015612622573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061264691906130b6565b90505b61266e30737a250d5630b4cf539739df2c5dacb4c659f2488d6548c273950000611c08565b6040517ff305d719000000000000000000000000000000000000000000000000000000008152600160a060020a0384169063f305d71990308031916126c791906548c27395000090600090819084904290600401613335565b6060604051808303818588803b1580156126e057600080fd5b505af11580156126f4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127199190613291565b5050506127b28184600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561277557600080fd5b505afa158015612789573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ad91906130b6565b6127ee565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039290921691909117905550506009805461ff0019169055565b6127f7826119df565b1561281c57604051600080516020613a1483398151915281526004016107d5906138b5565b600160a060020a0382166000818152600460205260408120805460ff1916600190811790915560028054918201815582527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff1916909217909155808061289a85856117ae565b6040805160c081018252600160a060020a0398891681526020808201868152828401868152606084019586526080840197885260a084019687529b8b166000908152600392839052939093209151825473ffffffffffffffffffffffffffffffffffffffff19169a16999099178155905160018201559751600289015551958701959095555160048601555050905160059092019190915550565b606490565b6103e890565b737a250d5630b4cf539739df2c5dacb4c659f2488d90565b60408051808201909152600381527f5a53540000000000000000000000000000000000000000000000000000000000602082015290565b612998816119df565b6129bc57604051600080516020613a1483398151915281526004016107d59061379e565b60005b600254811015610ad95781600160a060020a0316600282815481106129e057fe5b600091825260209091200154600160a060020a03161415612aed57600280546000198101908110612a0d57fe5b60009182526020909120015460028054600160a060020a039092169183908110612a3357fe5b600091825260208083209091018054600160a060020a0394851673ffffffffffffffffffffffffffffffffffffffff1991821617909155928516825260048082526040808420805460ff191690556003928390528320805490941684556001840183905560028085018490559184018390558301829055600590920155805480612ab957fe5b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff19169055019055610ad9565b6001016129bf565b60008183612b1e57604051600080516020613a1483398151915281526004016107d591906133d0565b506000838581612b2a57fe5b0495945050505050565b600160a060020a0392831660009081526001602090815260408083209490951682529290925291902055565b61384090565b612b6e612fe7565b60005b6002548110156119d0576003600060028381548110612b8c57fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600101546003600060028481548110612bdf57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400181206004019190915560028054600392919084908110612c1d57fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600201546003600060028481548110612c7057fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902060050155600101612b71565b600160a060020a038082166000908152600360205260408120549091829182918291612cce918791166117ae565b600160a060020a03979097166000908152600360208190526040909120908101805490899055600182019390935560020155909410949350505050565b60006002612d18856119df565b15612d34578215612d2b57506003612d2f565b5060015b612d59565b612d3c612940565b600160a060020a031685600160a060020a03161415612d59575060035b949350505050565b600160a060020a03821660009081526003602052604081206001810154600582015460048301546002909301548493612daa9392610b2c9290918391606491610b269190611aee565b90506000612dc16064610b2c6127106109e4612935565b821115612df8576000612dd48380611aee565b9050612df0612710610b2c612de98483612191565b8890611aee565b915050612d59565b612e10612710610b2c612e09612935565b8790611aee565b95945050505050565b6000806000612e26610c38565b90506000612e33866119df565b15612e8357600160a060020a0386166000908152600360205260409020600481015460028201546005830154600190930154612e7c93610b2c92918391606491610b2691611aee565b9050612ece565b60058054600160a060020a031660009081526003602052604090206004810154600282015492820154600190920154612ecb939192610b2c92918391606491610b2691611aee565b90505b6000612ee36064610b2c6127106109e4612935565b821115612f46576000612ef68380611aee565b9050612f12612710610b2c612f0b8483612191565b8a90611aee565b9150612f25612710610b2c612f0b61293a565b821115612f4057612f3d612710610b2c612f0b61293a565b91505b50612f61565b612f5e612710610b2c612f57612935565b8990611aee565b90505b80612f6c8185611aee565b945094505050509250929050565b6000612f84610c38565b90506000612f928383611aee565b600160a060020a038516600090815260208190526040902054909150612fb89082611b30565b600160a060020a038516600090815260208190526040902055600854612fde9084611b30565b60085550505050565b42600655565b6040518060c001604052806000600160a060020a0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b600082601f83011261303c578081fd5b813561304f61304a826139de565b6139b7565b81815291506020808301908481018184028601820187101561307057600080fd5b60005b8481101561308f57813584529282019290820190600101613073565b505050505092915050565b6000602082840312156130ab578081fd5b8135611508816139fe565b6000602082840312156130c7578081fd5b8151611508816139fe565b600080604083850312156130e4578081fd5b82356130ef816139fe565b915060208301356130ff816139fe565b809150509250929050565b60008060006060848603121561311e578081fd5b8335613129816139fe565b92506020840135613139816139fe565b929592945050506040919091013590565b6000806040838503121561315c578182fd5b8235613167816139fe565b946020939093013593505050565b600080600060608486031215613189578283fd5b833567ffffffffffffffff808211156131a0578485fd5b818601915086601f8301126131b3578485fd5b81356131c161304a826139de565b80828252602080830192508086018b8283870289010111156131e157898afd5b8996505b8487101561320c5780356131f8816139fe565b8452600196909601959281019281016131e5565b509097508801359350505080821115613223578384fd5b506132308682870161302c565b925050604084013590509250925092565b600060208284031215613252578081fd5b81518015158114611508578182fd5b600060208284031215613272578081fd5b5035919050565b60006020828403121561328a578081fd5b5051919050565b6000806000606084860312156132a5578283fd5b8351925060208401519150604084015190509250925092565b600160a060020a0391909116815260200190565b600160a060020a0392831681529116602082015260400190565b600160a060020a039889168152968816602088015260408701959095526060860193909352608085019190915260a084015290921660c082015260e08101919091526101000190565b600160a060020a039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600160a060020a03929092168252602082015260400190565b600160a060020a03969096168652602086019490945260408501929092526060840152608083015260a082015260c00190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156133fc578581018301518582016040015282016133e0565b8181111561340d5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526016908201527f416d6f756e7420657863656564732062616c616e636500000000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f43616e6e6f74206d696e7420706f73742070726573616c650000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604082015260600190565b6020808252818101527f416d6f756e7420657863656564732074686520746f6b656e2062616c616e6365604082015260600190565b60208082526014908201527f50726573616c652079657420746f20636c6f7365000000000000000000000000604082015260600190565b6020808252600f908201527f50726573616c6520697320646f6e650000000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f546f74616c20737570706c7920697320616c7265616479206d696e7465640000604082015260600190565b60208082526024908201527f5468697320706f6f6c2069732063757272656e746c79206e6f7420737570706f60408201527f7274656400000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f5468697320706f6f6c20697320616c726561647920737570706f727465640000604082015260600190565b6020808252601a908201527f4574682070616972696e6720646f6573206e6f74206578697374000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015613972578451600160a060020a03168352938301939183019160010161394d565b5050600160a060020a03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b60405181810167ffffffffffffffff811182821017156139d657600080fd5b604052919050565b600067ffffffffffffffff8211156139f4578081fd5b5060209081020190565b600160a060020a03811681146119d057600080fdfe08c379a00000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205290947dddfed5e8ba43eedb21d272d84327f3422f8e142e206b9804bbdbd54f64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061028b576000357c0100000000000000000000000000000000000000000000000000000000900480637dff268011610170578063ae2089ad116100e8578063c4e41b221161009c578063dd62ed3e11610081578063dd62ed3e14610694578063ec2b4e36146106b4578063f2fde38b146106d457610292565b8063c4e41b221461065f578063cb4d31951461067457610292565b8063b72455bd116100cd578063b72455bd14610606578063b97dd9e21461061b578063bf9a3a1b1461063057610292565b8063ae2089ad146105c6578063b21c3278146105e657610292565b8063927ac3861161013f578063a457c2d711610124578063a457c2d714610571578063a5a302d314610591578063a9059cbb146105a657610292565b8063927ac3861461054757806395d89b411461055c57610292565b80637dff2680146104c057806380c2bbd2146104e057806389398783146105005780638da5cb5b1461053257610292565b80633eedf63c116102035780635184cc43116101d25780635d15d341116101b75780635d15d3411461046b57806370a082311461048b578063715018a6146104ab57610292565b80635184cc4314610441578063524900b51461045657610292565b80633eedf63c146103cc5780634028358a146103e157806342b5f375146104015780634f78aa821461042157610292565b806323ecdf611161025a578063313ce5671161023f578063313ce56714610368578063395093511461038a5780633e6dfa36146103aa57610292565b806323ecdf61146103315780632a0bd6381461034657610292565b806306fdde0314610297578063095ea7b3146102c257806318160ddd146102ef57806323b872dd1461031157610292565b3661029257005b600080fd5b3480156102a357600080fd5b506102ac6106f4565b6040516102b991906133d0565b60405180910390f35b3480156102ce57600080fd5b506102e26102dd36600461314a565b610704565b6040516102b991906133bc565b3480156102fb57600080fd5b50610304610722565b6040516102b991906133c7565b34801561031d57600080fd5b506102e261032c36600461310a565b61072c565b34801561033d57600080fd5b506102e2610784565b34801561035257600080fd5b50610366610361366004613175565b610792565b005b34801561037457600080fd5b5061037d6109b7565b6040516102b991906139a9565b34801561039657600080fd5b506102e26103a536600461314a565b6109c1565b3480156103b657600080fd5b506103bf6109ea565b6040516102b991906132be565b3480156103d857600080fd5b506103666109f4565b3480156103ed57600080fd5b506103666103fc3660046130d2565b610a8c565b34801561040d57600080fd5b5061030461041c36600461309a565b610add565b34801561042d57600080fd5b5061030461043c36600461309a565b610ba9565b34801561044d57600080fd5b50610304610c38565b34801561046257600080fd5b506103bf610c71565b34801561047757600080fd5b5061036661048636600461314a565b610c7b565b34801561049757600080fd5b506103046104a636600461309a565b6114ee565b3480156104b757600080fd5b5061036661150f565b3480156104cc57600080fd5b506103bf6104db366004613261565b6115ba565b3480156104ec57600080fd5b506103666104fb36600461309a565b6115e4565b34801561050c57600080fd5b5061052061051b36600461309a565b611649565b6040516102b996959493929190613389565b34801561053e57600080fd5b506103bf6116d5565b34801561055357600080fd5b506102e26116ea565b34801561056857600080fd5b506102ac6116f3565b34801561057d57600080fd5b506102e261058c36600461314a565b6116fd565b34801561059d57600080fd5b506103bf611739565b3480156105b257600080fd5b506102e26105c136600461314a565b611748565b3480156105d257600080fd5b506103046105e136600461309a565b61175c565b3480156105f257600080fd5b506103046106013660046130d2565b611777565b34801561061257600080fd5b506103046117a2565b34801561062757600080fd5b506103046117a8565b34801561063c57600080fd5b5061065061064b3660046130d2565b6117ae565b6040516102b993929190613993565b34801561066b57600080fd5b5061030461197e565b34801561068057600080fd5b5061036661068f36600461309a565b611984565b3480156106a057600080fd5b506103046106af3660046130d2565b6119d3565b3480156106c057600080fd5b506102e26106cf36600461309a565b6119df565b3480156106e057600080fd5b506103666106ef36600461309a565b6119fd565b60606106fe611bcd565b90505b90565b6000610718610711611c04565b8484611c08565b5060015b92915050565b60006106fe61197e565b6000610739848484611cbf565b61077a84610745611c04565b61077585604051806060016040528060288152602001613a346028913961076e8a610601611c04565b919061215d565b611c08565b5060019392505050565b600954610100900460ff1690565b61079a611c04565b600954620100009004600160a060020a039081169116146107de57604051600080516020613a1483398151915281526004016107d590613732565b60405180910390fd5b6107e66116ea565b1561080b57604051600080516020613a1483398151915281526004016107d59061369e565b6000610815610c38565b905060005b828110156109b057600061084a8386848151811061083457fe5b6020026020010151611aee90919063ffffffff16565b905061087b8160008061085b6116d5565b600160a060020a0316815260208101919091526040016000205490612191565b6000806108866116d5565b600160a060020a0316600160a060020a03168152602001908152602001600020819055506108f4816000808986815181106108bd57fe5b6020026020010151600160a060020a0316600160a060020a0316815260200190815260200160002054611b3090919063ffffffff16565b60008088858151811061090357fe5b6020026020010151600160a060020a0316600160a060020a031681526020019081526020016000208190555085828151811061093b57fe5b6020026020010151600160a060020a03166109546116d5565b600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87858151811061098a57fe5b602002602001015160405161099f91906133c7565b60405180910390a35060010161081a565b5050505050565b60006106fe6121d3565b60006107186109ce611c04565b84610775856109e46109de611c04565b89611777565b90611b30565b60006106fe6121d8565b6109fc611c04565b600954620100009004600160a060020a03908116911614610a3757604051600080516020613a1483398151915281526004016107d590613732565b610a3f611bc3565b610a47610722565b1115610a6d57604051600080516020613a1483398151915281526004016107d590613767565b610a756121f0565b6009805460ff19166001179055610a8a612289565b565b610a94611c04565b600954620100009004600160a060020a03908116911614610acf57604051600080516020613a1483398151915281526004016107d590613732565b610ad982826127ee565b5050565b600160a060020a03811660009081526003602052604081206004810154600282015460058301546001909301548493610b329392610b2c9290918391606491610b269190611aee565b90611aee565b90611b81565b90506000610b496064610b2c6127106109e4612935565b821115610b97576000610b5c8380611aee565b9050610b6a81612710612191565b9150610b7461293a565b821115610b8d57610b8361293a565b9350505050610ba4565b509150610ba49050565b610b9f612935565b925050505b919050565b600160a060020a03811660009081526003602052604081206001810154600582015460048301546002909301548493610bf29392610b2c9290918391606491610b269190611aee565b9050610c076064610b2c6127106109e4612935565b811115610c28576000610c1a8280611aee565b9050610b9f81612710612191565b610c30612935565b915050610ba4565b6000610c426116ea565b15610c5d57600854600754610c5691611b81565b9050610701565b610c56610c68611bc3565b60075490611b81565b60006106fe612940565b610c83611c04565b600954620100009004600160a060020a03908116911614610cbe57604051600080516020613a1483398151915281526004016107d590613732565b6009805461ff0019166101001790556000610cd7610c71565b90506000610ce36109ea565b6040517fe6a439050000000000000000000000000000000000000000000000000000000081529091506000908190600160a060020a0384169063e6a4390590610d3290899030906004016132d2565b60206040518083038186803b158015610d4a57600080fd5b505afa158015610d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8291906130b6565b600160a060020a03161415610e31576040517fc9c65396000000000000000000000000000000000000000000000000000000008152600160a060020a0383169063c9c6539690610dd890889030906004016132d2565b602060405180830381600087803b158015610df257600080fd5b505af1158015610e06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2a91906130b6565b9050610ecb565b6040517fe6a43905000000000000000000000000000000000000000000000000000000008152600160a060020a0383169063e6a4390590610e7890889030906004016132d2565b60206040518083038186803b158015610e9057600080fd5b505afa158015610ea4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec891906130b6565b90505b6000600160a060020a031682600160a060020a031663e6a439058786600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015610f3b57600080fd5b505afa158015610f4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7391906130b6565b6040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610fac9291906132d2565b60206040518083038186803b158015610fc457600080fd5b505afa158015610fd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffc91906130b6565b600160a060020a0316141561102b57604051600080516020613a1483398151915281526004016107d5906138ec565b83611035306114ee565b101561105b57604051600080516020613a1483398151915281526004016107d590613632565b6000611068856002611b81565b905060006110768683612191565b9050600087600160a060020a03166370a08231306040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016110c291906132be565b60206040518083038186803b1580156110da57600080fd5b505afa1580156110ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111129190613279565b6040805160038082526080820190925291925060609190602082018380368337019050509050308160008151811061114657fe5b6020026020010190600160a060020a03169081600160a060020a03168152505086600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156111bb57600080fd5b505afa1580156111cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f391906130b6565b8160018151811061120057fe5b6020026020010190600160a060020a03169081600160a060020a031681525050888160028151811061122e57fe5b6020026020010190600160a060020a03169081600160a060020a031681525050611259308886611c08565b6040517f5c11d795000000000000000000000000000000000000000000000000000000008152600160a060020a03881690635c11d795906112a7908790600090869030904290600401613923565b600060405180830381600087803b1580156112c157600080fd5b505af11580156112d5573d6000803e3d6000fd5b50505050600061137d838b600160a060020a03166370a08231306040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161132791906132be565b60206040518083038186803b15801561133f57600080fd5b505afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113779190613279565b90612191565b905061138a308986611c08565b6040517f095ea7b3000000000000000000000000000000000000000000000000000000008152600160a060020a038b169063095ea7b3906113d1908b908590600401613370565b602060405180830381600087803b1580156113eb57600080fd5b505af11580156113ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114239190613241565b506040517fe8e33700000000000000000000000000000000000000000000000000000000008152600160a060020a0389169063e8e33700906114789030908e90899087906000908190869042906004016132ec565b606060405180830381600087803b15801561149257600080fd5b505af11580156114a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ca9190613291565b5050506114d7868b6127ee565b50506009805461ff00191690555050505050505050565b6000806114f9610c38565b905061150881610b2c8561175c565b9392505050565b611517611c04565b600954620100009004600160a060020a0390811691161461155257604051600080516020613a1483398151915281526004016107d590613732565b600954604051600091620100009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980547fffffffffffffffffffff0000000000000000000000000000000000000000ffff169055565b6000600282815481106115c957fe5b600091825260209091200154600160a060020a031692915050565b600160a060020a03808216600090815260036020526040812054909182918291611610918691166117ae565b600160a060020a039096166000908152600360208190526040909120908101969096556001860191909155600290940193909355505050565b60008060008060008061165a612fed565b50505050600160a060020a03938416600090815260036020818152604092839020835160c0810185528154909816808952600182015492890183905260028201549489018590529281015460608901819052600482015460808a0181905260059092015460a090990189905292989197939650919450909250565b600954620100009004600160a060020a031690565b60095460ff1690565b60606106fe612958565b600061071861170a611c04565b8461077585604051806060016040528060258152602001613a5c6025913961076e611733611c04565b8a611777565b600554600160a060020a031690565b6000610718611755611c04565b8484611cbf565b600160a060020a031660009081526020819052604090205490565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60075490565b60065490565b60008060008085600160a060020a03166318160ddd6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561180957600080fd5b505afa15801561181d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118419190613279565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815290915060009030906370a0823190611883908a906004016132be565b60206040518083038186803b15801561189b57600080fd5b505afa1580156118af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d39190613279565b9050600086600160a060020a03166370a08231896040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161191f91906132be565b60206040518083038186803b15801561193757600080fd5b505afa15801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f9190613279565b91989197509195509350505050565b60085490565b61198c611c04565b600954620100009004600160a060020a039081169116146119c757604051600080516020613a1483398151915281526004016107d590613732565b6119d08161298f565b50565b60006115088383611777565b600160a060020a031660009081526004602052604090205460ff1690565b611a05611c04565b600954620100009004600160a060020a03908116911614611a4057604051600080516020613a1483398151915281526004016107d590613732565b600160a060020a038116611a6e57604051600080516020613a1483398151915281526004016107d59061350c565b600954604051600160a060020a038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360098054600160a060020a0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b600082611afd5750600061071c565b82820282848281611b0a57fe5b041461150857604051600080516020613a1483398151915281526004016107d5906136d5565b60008282018381101561150857604051600080516020613a1483398151915281526004016107d5906135c6565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffff8cd94b8000090565b600061150883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612af5565b65b5e620f4800090565b60408051808201909152601081527f5a535441424c452e50524f544f434f4c00000000000000000000000000000000602082015290565b3390565b600160a060020a038316611c3657604051600080516020613a1483398151915281526004016107d590613858565b600160a060020a038216611c6457604051600080516020613a1483398151915281526004016107d590613569565b611c6f838383612b34565b81600160a060020a031683600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cb291906133c7565b60405180910390a3505050565b600160a060020a038316611ced57604051600080516020613a1483398151915281526004016107d5906137fb565b600160a060020a038216611d1b57604051600080516020613a1483398151915281526004016107d590613478565b60008111611d4357604051600080516020613a1483398151915281526004016107d5906135fd565b611d4c836114ee565b811115611d7357604051600080516020613a1483398151915281526004016107d590613441565b611d7b6116ea565b611d9f57604051600080516020613a1483398151915281526004016107d590613667565b611db2611daa612b60565b6109e46117a8565b421115611dc157611dc1612b66565b6000611dcb610c38565b90506000611dd98383611aee565b90506000611de5610784565b15611df257506003611e52565b6000611dfd876119df565b15611e1257611e0b87612ca0565b9050611e43565b611e1b866119df565b15611e2e57611e29866115e4565b611e43565b600554611e4390600160a060020a03166115e4565b611e4e878783612d0b565b9150505b8060011415611f39576000611e678786612d61565b600160a060020a038816600090815260208190526040902054909150611e8d9084612191565b600160a060020a038089166000908152602081905260408082209390935590881681522054611ebc9084611b30565b600160a060020a038716600090815260208190526040902055600854611ee29082611b30565b60088190555085600160a060020a031687600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611f2b91906133c7565b60405180910390a350612155565b806002141561209f57600080611f4f8787612e19565b90925090506000611f608784612191565b90506000611f6e8288611aee565b600160a060020a038b16600090815260208190526040902054909150611f949087612191565b600160a060020a03808c1660009081526020819052604080822093909355908b1681522054611fc39082611b30565b600160a060020a038a16600090815260208190526040902055600854611fe99085612191565b600855600754611ff99084612191565b60078190555088600160a060020a03168a600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161204291906133c7565b60405180910390a36000600160a060020a03168a600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8660405161208e91906133c7565b60405180910390a350505050612155565b806003141561215557600160a060020a0386166000908152602081905260409020546120cb9083612191565b600160a060020a0380881660009081526020819052604080822093909355908716815220546120fa9083611b30565b600160a060020a0380871660008181526020819052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061214c9088906133c7565b60405180910390a35b505050505050565b6000818484111561218957604051600080516020613a1483398151915281526004016107d591906133d0565b505050900390565b600061150883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061215d565b600990565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f90565b6121f86116ea565b1561221d57604051600080516020613a1483398151915281526004016107d5906134d5565b61222d306548c273950000612f7a565b6122446122386116d5565b6512309ce54000612f7a565b60405130906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061227f906548c273950000906133c7565b60405180910390a3565b6009805461ff00191661010017905560006122a2610c71565b905060006122ae6109ea565b9050600080600160a060020a031682600160a060020a031663e6a4390585600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561232057600080fd5b505afa158015612334573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235891906130b6565b306040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016123929291906132d2565b60206040518083038186803b1580156123aa57600080fd5b505afa1580156123be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e291906130b6565b600160a060020a031614156125205781600160a060020a031663c9c6539684600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561245557600080fd5b505afa158015612469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061248d91906130b6565b306040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016124c79291906132d2565b602060405180830381600087803b1580156124e157600080fd5b505af11580156124f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061251991906130b6565b9050612649565b81600160a060020a031663e6a439053085600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561258557600080fd5b505afa158015612599573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125bd91906130b6565b6040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016125f69291906132d2565b60206040518083038186803b15801561260e57600080fd5b505afa158015612622573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061264691906130b6565b90505b61266e30737a250d5630b4cf539739df2c5dacb4c659f2488d6548c273950000611c08565b6040517ff305d719000000000000000000000000000000000000000000000000000000008152600160a060020a0384169063f305d71990308031916126c791906548c27395000090600090819084904290600401613335565b6060604051808303818588803b1580156126e057600080fd5b505af11580156126f4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127199190613291565b5050506127b28184600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561277557600080fd5b505afa158015612789573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ad91906130b6565b6127ee565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a039290921691909117905550506009805461ff0019169055565b6127f7826119df565b1561281c57604051600080516020613a1483398151915281526004016107d5906138b5565b600160a060020a0382166000818152600460205260408120805460ff1916600190811790915560028054918201815582527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff1916909217909155808061289a85856117ae565b6040805160c081018252600160a060020a0398891681526020808201868152828401868152606084019586526080840197885260a084019687529b8b166000908152600392839052939093209151825473ffffffffffffffffffffffffffffffffffffffff19169a16999099178155905160018201559751600289015551958701959095555160048601555050905160059092019190915550565b606490565b6103e890565b737a250d5630b4cf539739df2c5dacb4c659f2488d90565b60408051808201909152600381527f5a53540000000000000000000000000000000000000000000000000000000000602082015290565b612998816119df565b6129bc57604051600080516020613a1483398151915281526004016107d59061379e565b60005b600254811015610ad95781600160a060020a0316600282815481106129e057fe5b600091825260209091200154600160a060020a03161415612aed57600280546000198101908110612a0d57fe5b60009182526020909120015460028054600160a060020a039092169183908110612a3357fe5b600091825260208083209091018054600160a060020a0394851673ffffffffffffffffffffffffffffffffffffffff1991821617909155928516825260048082526040808420805460ff191690556003928390528320805490941684556001840183905560028085018490559184018390558301829055600590920155805480612ab957fe5b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff19169055019055610ad9565b6001016129bf565b60008183612b1e57604051600080516020613a1483398151915281526004016107d591906133d0565b506000838581612b2a57fe5b0495945050505050565b600160a060020a0392831660009081526001602090815260408083209490951682529290925291902055565b61384090565b612b6e612fe7565b60005b6002548110156119d0576003600060028381548110612b8c57fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600101546003600060028481548110612bdf57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400181206004019190915560028054600392919084908110612c1d57fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600201546003600060028481548110612c7057fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902060050155600101612b71565b600160a060020a038082166000908152600360205260408120549091829182918291612cce918791166117ae565b600160a060020a03979097166000908152600360208190526040909120908101805490899055600182019390935560020155909410949350505050565b60006002612d18856119df565b15612d34578215612d2b57506003612d2f565b5060015b612d59565b612d3c612940565b600160a060020a031685600160a060020a03161415612d59575060035b949350505050565b600160a060020a03821660009081526003602052604081206001810154600582015460048301546002909301548493612daa9392610b2c9290918391606491610b269190611aee565b90506000612dc16064610b2c6127106109e4612935565b821115612df8576000612dd48380611aee565b9050612df0612710610b2c612de98483612191565b8890611aee565b915050612d59565b612e10612710610b2c612e09612935565b8790611aee565b95945050505050565b6000806000612e26610c38565b90506000612e33866119df565b15612e8357600160a060020a0386166000908152600360205260409020600481015460028201546005830154600190930154612e7c93610b2c92918391606491610b2691611aee565b9050612ece565b60058054600160a060020a031660009081526003602052604090206004810154600282015492820154600190920154612ecb939192610b2c92918391606491610b2691611aee565b90505b6000612ee36064610b2c6127106109e4612935565b821115612f46576000612ef68380611aee565b9050612f12612710610b2c612f0b8483612191565b8a90611aee565b9150612f25612710610b2c612f0b61293a565b821115612f4057612f3d612710610b2c612f0b61293a565b91505b50612f61565b612f5e612710610b2c612f57612935565b8990611aee565b90505b80612f6c8185611aee565b945094505050509250929050565b6000612f84610c38565b90506000612f928383611aee565b600160a060020a038516600090815260208190526040902054909150612fb89082611b30565b600160a060020a038516600090815260208190526040902055600854612fde9084611b30565b60085550505050565b42600655565b6040518060c001604052806000600160a060020a0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b600082601f83011261303c578081fd5b813561304f61304a826139de565b6139b7565b81815291506020808301908481018184028601820187101561307057600080fd5b60005b8481101561308f57813584529282019290820190600101613073565b505050505092915050565b6000602082840312156130ab578081fd5b8135611508816139fe565b6000602082840312156130c7578081fd5b8151611508816139fe565b600080604083850312156130e4578081fd5b82356130ef816139fe565b915060208301356130ff816139fe565b809150509250929050565b60008060006060848603121561311e578081fd5b8335613129816139fe565b92506020840135613139816139fe565b929592945050506040919091013590565b6000806040838503121561315c578182fd5b8235613167816139fe565b946020939093013593505050565b600080600060608486031215613189578283fd5b833567ffffffffffffffff808211156131a0578485fd5b818601915086601f8301126131b3578485fd5b81356131c161304a826139de565b80828252602080830192508086018b8283870289010111156131e157898afd5b8996505b8487101561320c5780356131f8816139fe565b8452600196909601959281019281016131e5565b509097508801359350505080821115613223578384fd5b506132308682870161302c565b925050604084013590509250925092565b600060208284031215613252578081fd5b81518015158114611508578182fd5b600060208284031215613272578081fd5b5035919050565b60006020828403121561328a578081fd5b5051919050565b6000806000606084860312156132a5578283fd5b8351925060208401519150604084015190509250925092565b600160a060020a0391909116815260200190565b600160a060020a0392831681529116602082015260400190565b600160a060020a039889168152968816602088015260408701959095526060860193909352608085019190915260a084015290921660c082015260e08101919091526101000190565b600160a060020a039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600160a060020a03929092168252602082015260400190565b600160a060020a03969096168652602086019490945260408501929092526060840152608083015260a082015260c00190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156133fc578581018301518582016040015282016133e0565b8181111561340d5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526016908201527f416d6f756e7420657863656564732062616c616e636500000000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f43616e6e6f74206d696e7420706f73742070726573616c650000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604082015260600190565b6020808252818101527f416d6f756e7420657863656564732074686520746f6b656e2062616c616e6365604082015260600190565b60208082526014908201527f50726573616c652079657420746f20636c6f7365000000000000000000000000604082015260600190565b6020808252600f908201527f50726573616c6520697320646f6e650000000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f546f74616c20737570706c7920697320616c7265616479206d696e7465640000604082015260600190565b60208082526024908201527f5468697320706f6f6c2069732063757272656e746c79206e6f7420737570706f60408201527f7274656400000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f5468697320706f6f6c20697320616c726561647920737570706f727465640000604082015260600190565b6020808252601a908201527f4574682070616972696e6720646f6573206e6f74206578697374000000000000604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015613972578451600160a060020a03168352938301939183019160010161394d565b5050600160a060020a03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b60405181810167ffffffffffffffff811182821017156139d657600080fd5b604052919050565b600067ffffffffffffffff8211156139f4578081fd5b5060209081020190565b600160a060020a03811681146119d057600080fdfe08c379a00000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212205290947dddfed5e8ba43eedb21d272d84327f3422f8e142e206b9804bbdbd54f64736f6c634300060c0033

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.