ETH Price: $2,512.18 (-0.50%)

Token

STVKE (STV)
 

Overview

Max Total Supply

5,000,000 STV

Holders

726 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$400.30

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
STVKE: Deployer
Balance
0 STV

Value
$0.00
0xc27362d2d5fa7690391bcf32a1338ff610ca054c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

STVKE Network is an ERC-20 token factory that allows its users to build complex or basic ERC-20 tokens with 0 coding knowledge. By holding STV in your wallet you own part of the token factory.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
STVKE

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 3: STVKE_token.sol
// SPDX-License-Identifier: WHO GIVES A FUCK ANYWAY??

pragma solidity ^0.6.6;

import "./ERC20_base.sol";

interface UniswapV2Router02 {
    
    function WETH() external pure returns (address);
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
  uint amountOutMin,
  address[] calldata path,
  address to,
  uint deadline
) external payable;
}

contract STVKE is ERC20_base {

    using SafeMath for uint256;

    uint256 private price;
    uint256 private STVrequirement;
    uint256 private byPassPrice;
    address private treasury;
    
    address public WETH;
    address public STV;
    address[] public path;
 
    uint256 private _STVKESupply = uint256(5000000).mul(1e18); //100k tokens
    
    UniswapV2Router02 internal constant uniswap = UniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    
    event TokenGenerated(address account, uint256 supply, string name, string symbol, uint8 decimals);
    event BuyBack(uint ethAmount);

    
    constructor() public 
    ERC20_base("STVKE", "STV", 18,
                _STVKESupply, msg.sender, 
                101, 0,
                _STVKESupply,
                10, msg.sender,
                1 minutes,
                msg.sender)
    {
        treasury = msg.sender;
        price = 1e17;
        STVrequirement = uint256(100).mul(1e18);
        byPassPrice = uint256(10000).mul(1e18);
        WETH = UniswapV2Router02(uniswap).WETH();
        STV = address(this);
        path.push(WETH);
        path.push(STV);

    }
    
    
    function createToken(string memory name, string memory symbol, uint8 decimals, 
                uint256 supply, address mintDest,
                uint256 BurnMintGov, uint256 burnOnTX,
                uint256 cappedSupply,
                uint256 feeOnTX, address feeDest,
                uint256 noTransferTime,
                address owner) public payable {
         require(balanceOf(msg.sender) >= STVrequirement);
         require(balanceOf(msg.sender) >= byPassPrice || msg.value >= price);
         require(BurnMintGov <= 111);



        if(owner == address(0)){owner = msg.sender;}          
        
        
        address tokenAddress = address(new ERC20_base(name, symbol, decimals, 
                supply, mintDest,
                BurnMintGov, burnOnTX,
                cappedSupply,
                feeOnTX, feeDest,
                noTransferTime,
                owner));
                
                
        emit TokenGenerated(tokenAddress, supply, name, symbol, decimals);
                
    buyBack();
                
    }
    
    function buyBack() internal {
        if (STV.balance > 0.5 ether) {
            uint amountIn = STV.balance.sub(0.2 ether);
        emit BuyBack(amountIn);
            uint amountOutMin = 0;
            UniswapV2Router02(uniswap).swapExactETHForTokensSupportingFeeOnTransferTokens{value : amountIn}(
                    amountOutMin, path, treasury, now.add(24 hours));
        }   
    }
    
    // function burn() external onlyOwner {
    //     _burn(treasury, balanceOf(treasury).sub(4));
    // }
    
    function setTreasury(address _address) public onlyOwner {
        treasury = _address;
    }
    function viewTreasury() public view returns(address) {
        return treasury;
    }
    function setSTVrequirement(uint256 _STVrequirement) public onlyOwner {
        STVrequirement = _STVrequirement;
    }
    function viewSTVrequirement() public view returns(uint256) {
        return STVrequirement;
    }
    
    function setPrice(uint256 _price) public onlyOwner {
        price = _price;
    }
    function viewPrice() public view returns(uint256) {
        return price;
    }
    function setByPassPrice(uint256 _price) public onlyOwner {
        byPassPrice = _price;
    }
    function viewBypassPrice() public view returns(uint256) {
        return byPassPrice;
    }
}

File 1 of 3: ERC20_base.sol
// SPDX-License-Identifier: WHO GIVES A FUCK ANYWAY??

pragma solidity ^0.6.6;
 import "./STVKE_lib.sol";

contract ERC20_base is Context {

    using SafeMath for uint256;
    using Address for address;


    struct FEES {
    uint256  _burnOnTX;
    uint256  _feeOnTX;
    address  _feeDest;
    }
    FEES private Fees;
    

    struct BURNMINT {
    bool  _burnable;
    bool  _mintable;
    uint256 _cappedSupply;
    }
    BURNMINT private BurnMint;

    struct GOV {
    address  _owner;
    bool  _basicGovernance;
    uint256  _noTransferTimeLock;  //transfers KO before this time
    }
    GOV private Gov;
    
    
    
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

//Events

    /**
     * @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);

    event Log(string log);
    
//ERC20 MODIFIERS
    modifier onlyOwner() {
        require(Gov._owner == msg.sender, "onlyOwner");
        _;
    }


//Constructor
    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name, string memory symbol, uint8 decimals, 
                uint256 supply, address mintDest,
                uint256 BurnMintGov, uint256 burnOnTX,
                uint256 cappedSupply,
                uint256 feeOnTX, address feeDest,
                uint256 noTransferTimeLock,
                address owner) public {
        
        
        //ERC20
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
        
        //FEES
              
        Fees._feeOnTX = feeOnTX; //base 10000
        Fees._feeDest = feeDest;
        if(feeOnTX >  0){require(feeDest != address(0), "fee cannot be sent to 0x0");}
        
        
        //BURN-MINT-GOV
        
        //BurnMintGov = 000, 001, 101...
        uint256 _remainder;
        if(BurnMintGov >= 100){ 
            BurnMint._burnable = true;
            _remainder = BurnMintGov.sub(100);
        }

        
        if(BurnMintGov >= 10){ 
            BurnMint._mintable = true;
            _remainder = BurnMintGov.sub(10);
        }

        if(BurnMintGov >= 1){ Gov._basicGovernance = true;}


        Fees._burnOnTX = burnOnTX; //base 10000, 0.01% = 1
        if(!BurnMint._burnable){Fees._burnOnTX = 0;} //avoid users to create non burnable tokens with a burnOnTX
        

        BurnMint._cappedSupply = cappedSupply;
  
        //GOV
        Gov._owner = owner;
        Gov._noTransferTimeLock = noTransferTimeLock.add(block.timestamp);
        
        //mints!!
        if(mintDest == address(0)){mintDest = msg.sender;}
        
        //low level mint for token creation
        require(mintDest != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(supply);
        _balances[mintDest] = _balances[mintDest].add(supply);
        emit Transfer(address(0), mintDest, supply); //minted event.
    }

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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


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

        require(block.timestamp > Gov._noTransferTimeLock, "Transfers blocked for the moment");
        _beforeTokenTransfer(sender, recipient, amount);
        
        uint256 _fee = 0; uint256 _burnFee = 0;
        
        if(Fees._feeOnTX > 0){
            _fee = amount.mul(Fees._feeOnTX).div(10000);
            _balances[sender] = _balances[sender].sub(_fee, "ERC20: transfer amount exceeds balance");
            _balances[Fees._feeDest] = _balances[Fees._feeDest].add(_fee);
            emit Transfer(sender,Fees._feeDest,_fee);
        }
        if(Fees._burnOnTX > 0){
            _burnFee = amount.mul(Fees._burnOnTX).div(10000);
            _burn(sender, _burnFee); //only if _burnable = true
        }
        
        
        uint256 netAmount = amount.sub(_fee).sub(_burnFee);
        _balances[sender] = _balances[sender].sub(netAmount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(netAmount);
        
        emit Transfer(sender, recipient, netAmount);
    }  


    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     * - cannot exceed 'capped supply'.
     * - token must be 'mintable'.
     * - must be sent by 'owner'.
     */
    function mint(uint256 amount) external virtual onlyOwner {
        require(BurnMint._mintable, "token NOT mintable");
        require(_totalSupply.add(amount) <= BurnMint._cappedSupply || BurnMint._cappedSupply == 0);
        require(_msgSender() != address(0), "ERC20: mint to the zero address");
        
        _mint(_msgSender(), amount);
    }
    
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(BurnMint._mintable, "token NOT mintable");
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

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

//basic Governance & getters

function setBurnFee(uint256 _newFee) public onlyOwner {
    require(_newFee <= 2000, "Max burnFee capped at 20%");
    require(Gov._basicGovernance, "Basic governance not enabled");
    Fees._burnOnTX = _newFee;
}
function viewBurnOnTX() public view returns(uint256){
    return Fees._burnOnTX;
}

function setFee(uint256 _newFee) public onlyOwner{
    require(_newFee <= 2000, "Max Fee capped at 20%");
    require(Gov._basicGovernance, "Basic governance not enabled");
    Fees._feeOnTX = _newFee;
}
function viewFeeOnTX() public view returns(uint256){
    return Fees._feeOnTX;
}

function setFeeDest(address feeDest) external onlyOwner {
    require(Gov._basicGovernance, "Basic governance not enabled");
    Fees._feeDest = feeDest;
}
function viewFeeDest() public view returns(address){
    return Fees._feeDest;
}

function setOwnerShip(address _address) public onlyOwner {
    require(Gov._basicGovernance, "Basic governance not enabled");
    require(Gov._owner != address(0));
    Gov._owner = _address;
}

function revokeOwnerShip() public onlyOwner {
    require(Gov._basicGovernance, "Basic governance not enabled");
    Gov._owner = address(0);
}

function viewIfBurnable() public view returns(bool) {
    return BurnMint._burnable;   
}

function viewIfMintable() public view returns(bool) {
    return BurnMint._mintable;
}

function revokeMinting() public onlyOwner {
    require(BurnMint._mintable, "Minting not enabled");
    BurnMint._mintable = false;
}

function viewCappedSupply() public view returns(uint256) {
    return BurnMint._cappedSupply;
}

function viewOwner() public view returns(address) {
    return Gov._owner;
}
    
} 

File 2 of 3: STVKE_lib.sol
// SPDX-License-Identifier: WHO GIVES A FUCK ANYWAY??

pragma solidity ^0.6.6;

/*
 * @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.
 */
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;
    }
}

/**
 * @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;
    }
}

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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"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":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"BuyBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"log","type":"string"}],"name":"Log","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"TokenGenerated","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":[],"name":"STV","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"address","name":"mintDest","type":"address"},{"internalType":"uint256","name":"BurnMintGov","type":"uint256"},{"internalType":"uint256","name":"burnOnTX","type":"uint256"},{"internalType":"uint256","name":"cappedSupply","type":"uint256"},{"internalType":"uint256","name":"feeOnTX","type":"uint256"},{"internalType":"address","name":"feeDest","type":"address"},{"internalType":"uint256","name":"noTransferTime","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"createToken","outputs":[],"stateMutability":"payable","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"path","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOwnerShip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setByPassPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feeDest","type":"address"}],"name":"setFeeDest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setOwnerShip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_STVrequirement","type":"uint256"}],"name":"setSTVrequirement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTreasury","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":[],"name":"viewBurnOnTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewBypassPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewCappedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewFeeDest","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewFeeOnTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewIfBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewIfMintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewSTVrequirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewTreasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405262000029670de0b6b3a7640000624c4b40620004b860201b6200182c1790919060201c565b6014553480156200003957600080fd5b50604051806040016040528060058152602001645354564b4560d81b8152506040518060400160405280600381526020016229aa2b60e91b81525060126014543360656000601454600a33603c338b600a90805190602001906200009f9291906200065f565b508a51620000b590600b9060208e01906200065f565b50600c805460ff191660ff8c161790556001849055600280546001600160a01b0319166001600160a01b038516179055831562000148576001600160a01b03831662000148576040805162461bcd60e51b815260206004820152601960248201527f6665652063616e6e6f742062652073656e7420746f2030783000000000000000604482015290519081900360640190fd5b6000606488106200017e5760038054600160ff199091161790556200017b8860646200051f602090811b6200189117901c565b90505b600a8810620001b4576003805461010061ff0019909116179055620001b188600a6200051f602090811b6200189117901c565b90505b60018810620001d1576005805460ff60a01b1916600160a01b1790555b600087905560035460ff16620001e657600080555b6004869055600580546001600160a01b0319166001600160a01b0384161790556200021e834262000569602090811b620018d517901c565b6006556001600160a01b03891662000234573398505b6001600160a01b03891662000290576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620002ac8a6009546200056960201b620018d51790919060201c565b6009556001600160a01b038916600090815260076020908152604090912054620002e1918c90620018d562000569821b17901c565b6001600160a01b038a1660008181526007602090815260408083209490945583518e81529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3505060108054336001600160a01b0319909116179055505067016345785d8a0000600d555062000387975060649650670de0b6b3a76400009550505050620004b8602090811b6200182c17901c915050565b600e55620003ac612710670de0b6b3a7640000620004b8602090811b6200182c17901c565b600f81905550737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200040057600080fd5b505afa15801562000415573d6000803e3d6000fd5b505050506040513d60208110156200042c57600080fd5b5051601180546001600160a01b039283166001600160a01b0319918216179182905560128054821630178155601380546001818101835560008390527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0909182018054861696881696909617909555915481549485019091559201805490911691909216179055620006fb565b600082620004c95750600062000519565b82820282848281620004d757fe5b0414620005165760405162461bcd60e51b8152600401808060200182810382526021815260200180620049af6021913960400191505060405180910390fd5b90505b92915050565b60006200051683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620005c460201b60201c565b60008282018381101562000516576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115620006575760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200061b57818101518382015260200162000601565b50505050905090810190601f168015620006495780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006a257805160ff1916838001178555620006d2565b82800160010185558215620006d2579182015b82811115620006d2578251825591602001919060010190620006b5565b50620006e0929150620006e4565b5090565b5b80821115620006e05760008155600101620006e5565b6142a4806200070b6000396000f3fe6080604052600436106200024e5760003560e01c80639f6a9d10116200013f578063ce93749911620000bb578063e16547ac1162000079578063e16547ac146200096c578063e3c86c691462000984578063f0f44260146200099c578063f46d8c4914620009d3578063f65ec74b14620009eb576200024e565b8063ce93749914620008ae578063d55ab47214620008e5578063d65281e214620008fd578063d7dcdcec1462000915578063dd62ed3e146200092d576200024e565b8063a84f1b1a1162000109578063a84f1b1a14620007fb578063a9059cbb1462000813578063ad5c46481462000850578063af6d1fe41462000868578063bc677b461462000896576200024e565b80639f6a9d1014620007445780639fefeabe146200075c578063a0712d681462000790578063a457c2d714620007be576200024e565b80634aa0dc4011620001cf57806370a08231116200019957806370a08231146200069757806373a0656314620006ce57806391b7f5ed14620006e657806395d89b41146200071457806399b3517f146200072c576200024e565b80634aa0dc4014620005f55780634bf2c7c9146200060d5780635925a77e146200063b57806369fe0e2d1462000669576200024e565b8063313ce567116200021d578063313ce56714620003a55780633922351114620003d357806339509351146200040c5780633e7dd42a146200044957806346e621bc14620005c7576200024e565b806306fdde031462000253578063095ea7b314620002e357806318160ddd146200033457806323b872dd146200035e575b600080fd5b3480156200026057600080fd5b506200026b62000a03565b6040805160208082528351818301528351919283929083019185019080838360005b83811015620002a75781810151838201526020016200028d565b50505050905090810190601f168015620002d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015620002f057600080fd5b5062000320600480360360408110156200030957600080fd5b506001600160a01b03813516906020013562000a9d565b604080519115158252519081900360200190f35b3480156200034157600080fd5b506200034c62000abf565b60408051918252519081900360200190f35b3480156200036b57600080fd5b5062000320600480360360608110156200038457600080fd5b506001600160a01b0381358116916020810135909116906040013562000ac5565b348015620003b257600080fd5b50620003bd62000b57565b6040805160ff9092168252519081900360200190f35b348015620003e057600080fd5b506200040a60048036036020811015620003f957600080fd5b50356001600160a01b031662000b60565b005b3480156200041957600080fd5b5062000320600480360360408110156200043257600080fd5b506001600160a01b03813516906020013562000c32565b6200040a60048036036101808110156200046257600080fd5b8101906020810181356401000000008111156200047e57600080fd5b8201836020820111156200049157600080fd5b80359060200191846001830284011164010000000083111715620004b457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156200050857600080fd5b8201836020820111156200051b57600080fd5b803590602001918460018302840111640100000000831117156200053e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff833516935050506020810135906001600160a01b03604082013581169160608101359160808201359160a08101359160c08201359160e08101358216916101008201359161012001351662000c87565b348015620005d457600080fd5b506200040a60048036036020811015620005ed57600080fd5b503562000fa8565b3480156200060257600080fd5b506200034c62000ff9565b3480156200061a57600080fd5b506200040a600480360360208110156200063357600080fd5b503562000fff565b3480156200064857600080fd5b506200040a600480360360208110156200066157600080fd5b5035620010f6565b3480156200067657600080fd5b506200040a600480360360208110156200068f57600080fd5b503562001147565b348015620006a457600080fd5b506200034c60048036036020811015620006bd57600080fd5b50356001600160a01b031662001236565b348015620006db57600080fd5b506200034c62001251565b348015620006f357600080fd5b506200040a600480360360208110156200070c57600080fd5b503562001257565b3480156200072157600080fd5b506200026b620012a8565b3480156200073957600080fd5b506200040a6200130c565b3480156200075157600080fd5b506200034c620013b8565b3480156200076957600080fd5b5062000774620013be565b604080516001600160a01b039092168252519081900360200190f35b3480156200079d57600080fd5b506200040a60048036036020811015620007b657600080fd5b5035620013cd565b348015620007cb57600080fd5b506200032060048036036040811015620007e457600080fd5b506001600160a01b03813516906020013562001516565b3480156200080857600080fd5b506200040a62001586565b3480156200082057600080fd5b5062000320600480360360408110156200083957600080fd5b506001600160a01b03813516906020013562001632565b3480156200085d57600080fd5b50620007746200164a565b3480156200087557600080fd5b5062000774600480360360208110156200088e57600080fd5b503562001659565b348015620008a357600080fd5b506200077462001681565b348015620008bb57600080fd5b506200040a60048036036020811015620008d457600080fd5b50356001600160a01b031662001690565b348015620008f257600080fd5b50620003206200174c565b3480156200090a57600080fd5b50620003206200175a565b3480156200092257600080fd5b506200034c62001763565b3480156200093a57600080fd5b506200034c600480360360408110156200095357600080fd5b506001600160a01b038135811691602001351662001769565b3480156200097957600080fd5b506200034c62001794565b3480156200099157600080fd5b50620007746200179a565b348015620009a957600080fd5b506200040a60048036036020811015620009c257600080fd5b50356001600160a01b0316620017a9565b348015620009e057600080fd5b506200034c62001817565b348015620009f857600080fd5b50620007746200181d565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801562000a935780601f1062000a675761010080835404028352916020019162000a93565b820191906000526020600020905b81548152906001019060200180831162000a7557829003601f168201915b5050505050905090565b600062000ab562000aad62001930565b848462001934565b5060015b92915050565b60095490565b600062000ad484848462001a24565b62000b4d8462000ae362001930565b62000b478560405180606001604052806028815260200162004198602891396001600160a01b038a1660009081526008602052604081209062000b2562001930565b6001600160a01b03168152602081019190915260400160002054919062001d15565b62001934565b5060019392505050565b600c5460ff1690565b6005546001600160a01b0316331462000bac576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff1662000bfa576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b6005546001600160a01b031662000c1057600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600062000ab562000c4262001930565b8462000b47856008600062000c5662001930565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490620018d5565b600e5462000c953362001236565b101562000ca157600080fd5b600f5462000caf3362001236565b10158062000cbf5750600d543410155b62000cc957600080fd5b606f87111562000cd857600080fd5b6001600160a01b03811662000cea5750335b60008c8c8c8c8c8c8c8c8c8c8c8c60405162000d06906200225b565b8080602001806020018d60ff1681526020018c81526020018b6001600160a01b031681526020018a8152602001898152602001888152602001878152602001866001600160a01b03168152602001858152602001846001600160a01b0316815260200183810383528f818151815260200191508051906020019080838360005b8381101562000da057818101518382015260200162000d86565b50505050905090810190601f16801562000dce5780820380516001836020036101000a031916815260200191505b5083810382528e818151815260200191508051906020019080838360005b8381101562000e0657818101518382015260200162000dec565b50505050905090810190601f16801562000e345780820380516001836020036101000a031916815260200191505b509e505050505050505050505050505050604051809103906000f08015801562000e62573d6000803e3d6000fd5b5090507fed6bf311634dcc91e9cc541bc9575f9efac73ae15dd79a9b008c924ab681869e818b8f8f8f60405180866001600160a01b0316815260200185815260200180602001806020018460ff168152602001838103835286818151815260200191508051906020019080838360005b8381101562000eec57818101518382015260200162000ed2565b50505050905090810190601f16801562000f1a5780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b8381101562000f4f57818101518382015260200162000f35565b50505050905090810190601f16801562000f7d5780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a162000f9962001db0565b50505050505050505050505050565b6005546001600160a01b0316331462000ff4576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600e55565b60005490565b6005546001600160a01b031633146200104b576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d0811115620010a3576040805162461bcd60e51b815260206004820152601960248201527f4d6178206275726e466565206361707065642061742032302500000000000000604482015290519081900360640190fd5b600554600160a01b900460ff16620010f1576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b600055565b6005546001600160a01b0316331462001142576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600f55565b6005546001600160a01b0316331462001193576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d0811115620011e3576040805162461bcd60e51b81526020600482015260156024820152744d617820466565206361707065642061742032302560581b604482015290519081900360640190fd5b600554600160a01b900460ff1662001231576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b600155565b6001600160a01b031660009081526007602052604090205490565b60045490565b6005546001600160a01b03163314620012a3576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600d55565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801562000a935780601f1062000a675761010080835404028352916020019162000a93565b6005546001600160a01b0316331462001358576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff16620013ab576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015290519081900360640190fd5b6003805461ff0019169055565b600e5490565b6012546001600160a01b031681565b6005546001600160a01b0316331462001419576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff166200146b576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b6004546009546200147d9083620018d5565b1115806200148b5750600454155b6200149557600080fd5b6000620014a162001930565b6001600160a01b03161415620014fe576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620015136200150c62001930565b8262001f28565b50565b600062000ab56200152662001930565b8462000b47856040518060600160405280602581526020016200424a60259139600860006200155462001930565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919062001d15565b6005546001600160a01b03163314620015d2576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff1662001620576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b600580546001600160a01b0319169055565b600062000ab56200164262001930565b848462001a24565b6011546001600160a01b031681565b601381815481106200166757fe5b6000918252602090912001546001600160a01b0316905081565b6005546001600160a01b031690565b6005546001600160a01b03163314620016dc576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff166200172a576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600354610100900460ff1690565b60035460ff1690565b600d5490565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b60015490565b6010546001600160a01b031690565b6005546001600160a01b03163314620017f5576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600f5490565b6002546001600160a01b031690565b6000826200183d5750600062000ab9565b828202828482816200184b57fe5b04146200188a5760405162461bcd60e51b8152600401808060200182810382526021815260200180620041776021913960400191505060405180910390fd5b9392505050565b60006200188a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062001d15565b6000828201838110156200188a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166200197b5760405162461bcd60e51b8152600401808060200182810382526024815260200180620042266024913960400191505060405180910390fd5b6001600160a01b038216620019c25760405162461bcd60e51b81526004018080602001828103825260228152602001806200410f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831662001a6b5760405162461bcd60e51b8152600401808060200182810382526025815260200180620042016025913960400191505060405180910390fd5b6001600160a01b03821662001ab25760405162461bcd60e51b8152600401808060200182810382526023815260200180620040ca6023913960400191505060405180910390fd5b600654421162001b09576040805162461bcd60e51b815260206004820181905260248201527f5472616e736665727320626c6f636b656420666f7220746865206d6f6d656e74604482015290519081900360640190fd5b62001b1683838362002063565b5060015460009081901562001c0a5760015462001b45906127109062001b3e9086906200182c565b906200206c565b915062001b878260405180606001604052806026815260200162004131602691396001600160a01b038816600090815260076020526040902054919062001d15565b6001600160a01b03808716600090815260076020526040808220939093556002549091168152205462001bbb9083620018d5565b600280546001600160a01b03908116600090815260076020908152604091829020949094559154825186815292519082169391891692600080516020620041c083398151915292908290030190a35b6000541562001c3a5760005462001c2c906127109062001b3e9086906200182c565b905062001c3a8582620020b0565b600062001c548262001c4d868662001891565b9062001891565b905062001c968160405180606001604052806026815260200162004131602691396001600160a01b038916600090815260076020526040902054919062001d15565b6001600160a01b03808816600090815260076020526040808220939093559087168152205462001cc79082620018d5565b6001600160a01b0380871660008181526007602090815260409182902094909455805185815290519193928a1692600080516020620041c083398151915292918290030190a3505050505050565b6000818484111562001da85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562001d6c57818101518382015260200162001d52565b50505050905090810190601f16801562001d9a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6012546706f05b59d3b200006001600160a01b0390911631111562001f265760125460009062001df3906001600160a01b0316316702c68af0bb14000062001891565b6040805182815290519192507fce4ecff3fe64868b2d2c7c1125babbbff1d01a1a2566d1edd4ed0f91deaa9350919081900360200190a1601054600090737a250d5630b4cf539739df2c5dacb4c659f2488d9063b6f9de9590849084906013906001600160a01b031662001e6b4262015180620018d5565b6040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818154815260200191508054801562001ee657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162001ec7575b5050955050505050506000604051808303818588803b15801562001f0957600080fd5b505af115801562001f1e573d6000803e3d6000fd5b505050505050505b565b600354610100900460ff1662001f7a576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b6001600160a01b03821662001fd6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62001fe46000838362002063565b5060095462001ff49082620018d5565b6009556001600160a01b0382166000908152600760205260409020546200201c9082620018d5565b6001600160a01b0383166000818152600760209081526040808320949094558351858152935192939192600080516020620041c08339815191529281900390910190a35050565b60009392505050565b60006200188a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620021f2565b60035460ff16620020fd576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206275726e61626c6560701b604482015290519081900360640190fd5b6001600160a01b038216620021445760405162461bcd60e51b8152600401808060200182810382526021815260200180620041e06021913960400191505060405180910390fd5b620021528260008362002063565b506200219381604051806060016040528060228152602001620040ed602291396001600160a01b038516600090815260076020526040902054919062001d15565b6001600160a01b038316600090815260076020526040902055600954620021bb908262001891565b6009556040805182815290516000916001600160a01b03851691600080516020620041c08339815191529181900360200190a35050565b60008183620022445760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831562001d6c57818101518382015260200162001d52565b5060008385816200225157fe5b0495945050505050565b611e60806200226a8339019056fe60806040523480156200001157600080fd5b5060405162001e6038038062001e6083398181016040526101808110156200003857600080fd5b81019080805160405193929190846401000000008211156200005957600080fd5b9083019060208201858111156200006f57600080fd5b82516401000000008111828201881017156200008a57600080fd5b82525081516020918201929091019080838360005b83811015620000b95781810151838201526020016200009f565b50505050905090810190601f168015620000e75780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010b57600080fd5b9083019060208201858111156200012157600080fd5b82516401000000008111828201881017156200013c57600080fd5b82525081516020918201929091019080838360005b838110156200016b57818101518382015260200162000151565b50505050905090810190601f168015620001995780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060840151608085015160a086015160c087015160e08801516101008901516101208a0151610140909a01518e51999c50969a509498939792969195909493929091620001fc91600a918f0190620005ec565b508a516200021290600b9060208e0190620005ec565b50600c805460ff191660ff8c161790556001849055600280546001600160a01b0319166001600160a01b0385161790558315620002a5576001600160a01b038316620002a5576040805162461bcd60e51b815260206004820152601960248201527f6665652063616e6e6f742062652073656e7420746f2030783000000000000000604482015290519081900360640190fd5b600060648810620002db5760038054600160ff19909116179055620002d8886064620004a5602090811b62000d8217901c565b90505b600a881062000311576003805461010061ff00199091161790556200030e88600a620004a5602090811b62000d8217901c565b90505b600188106200032e576005805460ff60a01b1916600160a01b1790555b600087905560035460ff166200034357600080555b6004869055600580546001600160a01b0319166001600160a01b0384161790556200037b8342620004f6602090811b62000dcb17901c565b6006556001600160a01b03891662000391573398505b6001600160a01b038916620003ed576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620004098a600954620004f660201b62000dcb1790919060201c565b6009556001600160a01b0389166000908152600760209081526040909120546200043e918c9062000dcb620004f6821b17901c565b6001600160a01b038a1660008181526007602090815260408083209490945583518e81529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050505050505050505050505062000688565b6000620004ef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200055160201b60201c565b9392505050565b600082820183811015620004ef576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115620005e45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620005a85781810151838201526020016200058e565b50505050905090810190601f168015620005d65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200062f57805160ff19168380011785556200065f565b828001600101855582156200065f579182015b828111156200065f57825182559160200191906001019062000642565b506200066d92915062000671565b5090565b5b808211156200066d576000815560010162000672565b6117c880620006986000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806395d89b41116100de578063bc677b4611610097578063d65281e211610071578063d65281e214610446578063dd62ed3e1461044e578063e16547ac1461047c578063f65ec74b1461048457610173565b8063bc677b46146103f4578063ce93749914610418578063d55ab4721461043e57610173565b806395d89b411461036757806399b3517f1461036f578063a0712d6814610377578063a457c2d714610394578063a84f1b1a146103c0578063a9059cbb146103c857610173565b8063395093511161013057806339509351146102cb5780634aa0dc40146102f75780634bf2c7c9146102ff57806369fe0e2d1461031c57806370a082311461033957806373a065631461035f57610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f578063313ce5671461028557806339223511146102a3575b600080fd5b61018061048c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b038135169060200135610522565b604080519115158252519081900360200190f35b61023d610540565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b03813581169160208101359091169060400135610546565b61028d6105cd565b6040805160ff9092168252519081900360200190f35b6102c9600480360360208110156102b957600080fd5b50356001600160a01b03166105d6565b005b610221600480360360408110156102e157600080fd5b506001600160a01b0381351690602001356106a4565b61023d6106f2565b6102c96004803603602081101561031557600080fd5b50356106f8565b6102c96004803603602081101561033257600080fd5b50356107eb565b61023d6004803603602081101561034f57600080fd5b50356001600160a01b03166108d6565b61023d6108f1565b6101806108f7565b6102c9610958565b6102c96004803603602081101561038d57600080fd5b5035610a02565b610221600480360360408110156103aa57600080fd5b506001600160a01b038135169060200135610b3e565b6102c9610ba6565b610221600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610c4f565b6103fc610c63565b604080516001600160a01b039092168252519081900360200190f35b6102c96004803603602081101561042e57600080fd5b50356001600160a01b0316610c72565b610221610d2b565b610221610d39565b61023d6004803603604081101561046457600080fd5b506001600160a01b0381358116916020013516610d42565b61023d610d6d565b6103fc610d73565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105185780601f106104ed57610100808354040283529160200191610518565b820191906000526020600020905b8154815290600101906020018083116104fb57829003601f168201915b5050505050905090565b600061053661052f610e25565b8484610e29565b5060015b92915050565b60095490565b6000610553848484610f15565b6105c38461055f610e25565b6105be856040518060600160405280602881526020016116bc602891396001600160a01b038a1660009081526008602052604081209061059d610e25565b6001600160a01b0316815260208101919091526040016000205491906111e4565b610e29565b5060019392505050565b600c5460ff1690565b6005546001600160a01b03163314610621576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff1661066d576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b6005546001600160a01b031661068257600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006105366106b1610e25565b846105be85600860006106c2610e25565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dcb565b60005490565b6005546001600160a01b03163314610743576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d081111561079a576040805162461bcd60e51b815260206004820152601960248201527f4d6178206275726e466565206361707065642061742032302500000000000000604482015290519081900360640190fd5b600554600160a01b900460ff166107e6576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600055565b6005546001600160a01b03163314610836576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d0811115610885576040805162461bcd60e51b81526020600482015260156024820152744d617820466565206361707065642061742032302560581b604482015290519081900360640190fd5b600554600160a01b900460ff166108d1576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600155565b6001600160a01b031660009081526007602052604090205490565b60045490565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105185780601f106104ed57610100808354040283529160200191610518565b6005546001600160a01b031633146109a3576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff166109f5576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015290519081900360640190fd5b6003805461ff0019169055565b6005546001600160a01b03163314610a4d576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff16610a9e576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b600454600954610aae9083610dcb565b111580610abb5750600454155b610ac457600080fd5b6000610ace610e25565b6001600160a01b03161415610b2a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610b3b610b35610e25565b8261127b565b50565b6000610536610b4b610e25565b846105be8560405180606001604052806025815260200161176e6025913960086000610b75610e25565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111e4565b6005546001600160a01b03163314610bf1576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff16610c3d576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600580546001600160a01b0319169055565b6000610536610c5c610e25565b8484610f15565b6005546001600160a01b031690565b6005546001600160a01b03163314610cbd576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff16610d09576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600354610100900460ff1690565b60035460ff1690565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b60015490565b6002546001600160a01b031690565b6000610dc483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111e4565b9392505050565b600082820183811015610dc4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610e6e5760405162461bcd60e51b815260040180806020018281038252602481526020018061174a6024913960400191505060405180910390fd5b6001600160a01b038216610eb35760405162461bcd60e51b81526004018080602001828103825260228152602001806116336022913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f5a5760405162461bcd60e51b81526004018080602001828103825260258152602001806117256025913960400191505060405180910390fd5b6001600160a01b038216610f9f5760405162461bcd60e51b81526004018080602001828103825260238152602001806115ee6023913960400191505060405180910390fd5b6006544211610ff5576040805162461bcd60e51b815260206004820181905260248201527f5472616e736665727320626c6f636b656420666f7220746865206d6f6d656e74604482015290519081900360640190fd5b6110008383836113ad565b506001546000908190156110e95760015461102a90612710906110249086906113b6565b9061140f565b915061106982604051806060016040528060268152602001611655602691396001600160a01b03881660009081526007602052604090205491906111e4565b6001600160a01b03808716600090815260076020526040808220939093556002549091168152205461109b9083610dcb565b600280546001600160a01b039081166000908152600760209081526040918290209490945591548251868152925190821693918916926000805160206116e483398151915292908290030190a35b600054156111135760005461110790612710906110249086906113b6565b90506111138582611451565b6000611129826111238686610d82565b90610d82565b905061116881604051806060016040528060268152602001611655602691396001600160a01b03891660009081526007602052604090205491906111e4565b6001600160a01b0380881660009081526007602052604080822093909355908716815220546111979082610dcb565b6001600160a01b0380871660008181526007602090815260409182902094909455805185815290519193928a16926000805160206116e483398151915292918290030190a3505050505050565b600081848411156112735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611238578181015183820152602001611220565b50505050905090810190601f1680156112655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600354610100900460ff166112cc576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b6001600160a01b038216611327576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611333600083836113ad565b506009546113419082610dcb565b6009556001600160a01b0382166000908152600760205260409020546113679082610dcb565b6001600160a01b03831660008181526007602090815260408083209490945583518581529351929391926000805160206116e48339815191529281900390910190a35050565b60009392505050565b6000826113c55750600061053a565b828202828482816113d257fe5b0414610dc45760405162461bcd60e51b815260040180806020018281038252602181526020018061169b6021913960400191505060405180910390fd5b6000610dc483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611588565b60035460ff1661149d576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206275726e61626c6560701b604482015290519081900360640190fd5b6001600160a01b0382166114e25760405162461bcd60e51b81526004018080602001828103825260218152602001806117046021913960400191505060405180910390fd5b6114ee826000836113ad565b5061152c81604051806060016040528060228152602001611611602291396001600160a01b03851660009081526007602052604090205491906111e4565b6001600160a01b0383166000908152600760205260409020556009546115529082610d82565b6009556040805182815290516000916001600160a01b038516916000805160206116e48339815191529181900360200190a35050565b600081836115d75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611238578181015183820152602001611220565b5060008385816115e357fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426173696320676f7665726e616e6365206e6f7420656e61626c656400000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d324225861473d1e00e26c88c80ed9f2ac23bfec2e80b341e323c79d85873c9264736f6c634300060c003345524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426173696320676f7665726e616e6365206e6f7420656e61626c656400000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122084f33004497c80e86324f8bfcc8a1e43c9c18d2ab088948b6330d7fb06f218e164736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x6080604052600436106200024e5760003560e01c80639f6a9d10116200013f578063ce93749911620000bb578063e16547ac1162000079578063e16547ac146200096c578063e3c86c691462000984578063f0f44260146200099c578063f46d8c4914620009d3578063f65ec74b14620009eb576200024e565b8063ce93749914620008ae578063d55ab47214620008e5578063d65281e214620008fd578063d7dcdcec1462000915578063dd62ed3e146200092d576200024e565b8063a84f1b1a1162000109578063a84f1b1a14620007fb578063a9059cbb1462000813578063ad5c46481462000850578063af6d1fe41462000868578063bc677b461462000896576200024e565b80639f6a9d1014620007445780639fefeabe146200075c578063a0712d681462000790578063a457c2d714620007be576200024e565b80634aa0dc4011620001cf57806370a08231116200019957806370a08231146200069757806373a0656314620006ce57806391b7f5ed14620006e657806395d89b41146200071457806399b3517f146200072c576200024e565b80634aa0dc4014620005f55780634bf2c7c9146200060d5780635925a77e146200063b57806369fe0e2d1462000669576200024e565b8063313ce567116200021d578063313ce56714620003a55780633922351114620003d357806339509351146200040c5780633e7dd42a146200044957806346e621bc14620005c7576200024e565b806306fdde031462000253578063095ea7b314620002e357806318160ddd146200033457806323b872dd146200035e575b600080fd5b3480156200026057600080fd5b506200026b62000a03565b6040805160208082528351818301528351919283929083019185019080838360005b83811015620002a75781810151838201526020016200028d565b50505050905090810190601f168015620002d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015620002f057600080fd5b5062000320600480360360408110156200030957600080fd5b506001600160a01b03813516906020013562000a9d565b604080519115158252519081900360200190f35b3480156200034157600080fd5b506200034c62000abf565b60408051918252519081900360200190f35b3480156200036b57600080fd5b5062000320600480360360608110156200038457600080fd5b506001600160a01b0381358116916020810135909116906040013562000ac5565b348015620003b257600080fd5b50620003bd62000b57565b6040805160ff9092168252519081900360200190f35b348015620003e057600080fd5b506200040a60048036036020811015620003f957600080fd5b50356001600160a01b031662000b60565b005b3480156200041957600080fd5b5062000320600480360360408110156200043257600080fd5b506001600160a01b03813516906020013562000c32565b6200040a60048036036101808110156200046257600080fd5b8101906020810181356401000000008111156200047e57600080fd5b8201836020820111156200049157600080fd5b80359060200191846001830284011164010000000083111715620004b457600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156200050857600080fd5b8201836020820111156200051b57600080fd5b803590602001918460018302840111640100000000831117156200053e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505060ff833516935050506020810135906001600160a01b03604082013581169160608101359160808201359160a08101359160c08201359160e08101358216916101008201359161012001351662000c87565b348015620005d457600080fd5b506200040a60048036036020811015620005ed57600080fd5b503562000fa8565b3480156200060257600080fd5b506200034c62000ff9565b3480156200061a57600080fd5b506200040a600480360360208110156200063357600080fd5b503562000fff565b3480156200064857600080fd5b506200040a600480360360208110156200066157600080fd5b5035620010f6565b3480156200067657600080fd5b506200040a600480360360208110156200068f57600080fd5b503562001147565b348015620006a457600080fd5b506200034c60048036036020811015620006bd57600080fd5b50356001600160a01b031662001236565b348015620006db57600080fd5b506200034c62001251565b348015620006f357600080fd5b506200040a600480360360208110156200070c57600080fd5b503562001257565b3480156200072157600080fd5b506200026b620012a8565b3480156200073957600080fd5b506200040a6200130c565b3480156200075157600080fd5b506200034c620013b8565b3480156200076957600080fd5b5062000774620013be565b604080516001600160a01b039092168252519081900360200190f35b3480156200079d57600080fd5b506200040a60048036036020811015620007b657600080fd5b5035620013cd565b348015620007cb57600080fd5b506200032060048036036040811015620007e457600080fd5b506001600160a01b03813516906020013562001516565b3480156200080857600080fd5b506200040a62001586565b3480156200082057600080fd5b5062000320600480360360408110156200083957600080fd5b506001600160a01b03813516906020013562001632565b3480156200085d57600080fd5b50620007746200164a565b3480156200087557600080fd5b5062000774600480360360208110156200088e57600080fd5b503562001659565b348015620008a357600080fd5b506200077462001681565b348015620008bb57600080fd5b506200040a60048036036020811015620008d457600080fd5b50356001600160a01b031662001690565b348015620008f257600080fd5b50620003206200174c565b3480156200090a57600080fd5b50620003206200175a565b3480156200092257600080fd5b506200034c62001763565b3480156200093a57600080fd5b506200034c600480360360408110156200095357600080fd5b506001600160a01b038135811691602001351662001769565b3480156200097957600080fd5b506200034c62001794565b3480156200099157600080fd5b50620007746200179a565b348015620009a957600080fd5b506200040a60048036036020811015620009c257600080fd5b50356001600160a01b0316620017a9565b348015620009e057600080fd5b506200034c62001817565b348015620009f857600080fd5b50620007746200181d565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801562000a935780601f1062000a675761010080835404028352916020019162000a93565b820191906000526020600020905b81548152906001019060200180831162000a7557829003601f168201915b5050505050905090565b600062000ab562000aad62001930565b848462001934565b5060015b92915050565b60095490565b600062000ad484848462001a24565b62000b4d8462000ae362001930565b62000b478560405180606001604052806028815260200162004198602891396001600160a01b038a1660009081526008602052604081209062000b2562001930565b6001600160a01b03168152602081019190915260400160002054919062001d15565b62001934565b5060019392505050565b600c5460ff1690565b6005546001600160a01b0316331462000bac576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff1662000bfa576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b6005546001600160a01b031662000c1057600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b600062000ab562000c4262001930565b8462000b47856008600062000c5662001930565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490620018d5565b600e5462000c953362001236565b101562000ca157600080fd5b600f5462000caf3362001236565b10158062000cbf5750600d543410155b62000cc957600080fd5b606f87111562000cd857600080fd5b6001600160a01b03811662000cea5750335b60008c8c8c8c8c8c8c8c8c8c8c8c60405162000d06906200225b565b8080602001806020018d60ff1681526020018c81526020018b6001600160a01b031681526020018a8152602001898152602001888152602001878152602001866001600160a01b03168152602001858152602001846001600160a01b0316815260200183810383528f818151815260200191508051906020019080838360005b8381101562000da057818101518382015260200162000d86565b50505050905090810190601f16801562000dce5780820380516001836020036101000a031916815260200191505b5083810382528e818151815260200191508051906020019080838360005b8381101562000e0657818101518382015260200162000dec565b50505050905090810190601f16801562000e345780820380516001836020036101000a031916815260200191505b509e505050505050505050505050505050604051809103906000f08015801562000e62573d6000803e3d6000fd5b5090507fed6bf311634dcc91e9cc541bc9575f9efac73ae15dd79a9b008c924ab681869e818b8f8f8f60405180866001600160a01b0316815260200185815260200180602001806020018460ff168152602001838103835286818151815260200191508051906020019080838360005b8381101562000eec57818101518382015260200162000ed2565b50505050905090810190601f16801562000f1a5780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b8381101562000f4f57818101518382015260200162000f35565b50505050905090810190601f16801562000f7d5780820380516001836020036101000a031916815260200191505b5097505050505050505060405180910390a162000f9962001db0565b50505050505050505050505050565b6005546001600160a01b0316331462000ff4576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600e55565b60005490565b6005546001600160a01b031633146200104b576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d0811115620010a3576040805162461bcd60e51b815260206004820152601960248201527f4d6178206275726e466565206361707065642061742032302500000000000000604482015290519081900360640190fd5b600554600160a01b900460ff16620010f1576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b600055565b6005546001600160a01b0316331462001142576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600f55565b6005546001600160a01b0316331462001193576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d0811115620011e3576040805162461bcd60e51b81526020600482015260156024820152744d617820466565206361707065642061742032302560581b604482015290519081900360640190fd5b600554600160a01b900460ff1662001231576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b600155565b6001600160a01b031660009081526007602052604090205490565b60045490565b6005546001600160a01b03163314620012a3576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600d55565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801562000a935780601f1062000a675761010080835404028352916020019162000a93565b6005546001600160a01b0316331462001358576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff16620013ab576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015290519081900360640190fd5b6003805461ff0019169055565b600e5490565b6012546001600160a01b031681565b6005546001600160a01b0316331462001419576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff166200146b576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b6004546009546200147d9083620018d5565b1115806200148b5750600454155b6200149557600080fd5b6000620014a162001930565b6001600160a01b03161415620014fe576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620015136200150c62001930565b8262001f28565b50565b600062000ab56200152662001930565b8462000b47856040518060600160405280602581526020016200424a60259139600860006200155462001930565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919062001d15565b6005546001600160a01b03163314620015d2576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff1662001620576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b600580546001600160a01b0319169055565b600062000ab56200164262001930565b848462001a24565b6011546001600160a01b031681565b601381815481106200166757fe5b6000918252602090912001546001600160a01b0316905081565b6005546001600160a01b031690565b6005546001600160a01b03163314620016dc576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff166200172a576040805162461bcd60e51b815260206004820152601c602482015260008051602062004157833981519152604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600354610100900460ff1690565b60035460ff1690565b600d5490565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b60015490565b6010546001600160a01b031690565b6005546001600160a01b03163314620017f5576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600f5490565b6002546001600160a01b031690565b6000826200183d5750600062000ab9565b828202828482816200184b57fe5b04146200188a5760405162461bcd60e51b8152600401808060200182810382526021815260200180620041776021913960400191505060405180910390fd5b9392505050565b60006200188a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062001d15565b6000828201838110156200188a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166200197b5760405162461bcd60e51b8152600401808060200182810382526024815260200180620042266024913960400191505060405180910390fd5b6001600160a01b038216620019c25760405162461bcd60e51b81526004018080602001828103825260228152602001806200410f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831662001a6b5760405162461bcd60e51b8152600401808060200182810382526025815260200180620042016025913960400191505060405180910390fd5b6001600160a01b03821662001ab25760405162461bcd60e51b8152600401808060200182810382526023815260200180620040ca6023913960400191505060405180910390fd5b600654421162001b09576040805162461bcd60e51b815260206004820181905260248201527f5472616e736665727320626c6f636b656420666f7220746865206d6f6d656e74604482015290519081900360640190fd5b62001b1683838362002063565b5060015460009081901562001c0a5760015462001b45906127109062001b3e9086906200182c565b906200206c565b915062001b878260405180606001604052806026815260200162004131602691396001600160a01b038816600090815260076020526040902054919062001d15565b6001600160a01b03808716600090815260076020526040808220939093556002549091168152205462001bbb9083620018d5565b600280546001600160a01b03908116600090815260076020908152604091829020949094559154825186815292519082169391891692600080516020620041c083398151915292908290030190a35b6000541562001c3a5760005462001c2c906127109062001b3e9086906200182c565b905062001c3a8582620020b0565b600062001c548262001c4d868662001891565b9062001891565b905062001c968160405180606001604052806026815260200162004131602691396001600160a01b038916600090815260076020526040902054919062001d15565b6001600160a01b03808816600090815260076020526040808220939093559087168152205462001cc79082620018d5565b6001600160a01b0380871660008181526007602090815260409182902094909455805185815290519193928a1692600080516020620041c083398151915292918290030190a3505050505050565b6000818484111562001da85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562001d6c57818101518382015260200162001d52565b50505050905090810190601f16801562001d9a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6012546706f05b59d3b200006001600160a01b0390911631111562001f265760125460009062001df3906001600160a01b0316316702c68af0bb14000062001891565b6040805182815290519192507fce4ecff3fe64868b2d2c7c1125babbbff1d01a1a2566d1edd4ed0f91deaa9350919081900360200190a1601054600090737a250d5630b4cf539739df2c5dacb4c659f2488d9063b6f9de9590849084906013906001600160a01b031662001e6b4262015180620018d5565b6040518663ffffffff1660e01b81526004018085815260200180602001846001600160a01b03168152602001838152602001828103825285818154815260200191508054801562001ee657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162001ec7575b5050955050505050506000604051808303818588803b15801562001f0957600080fd5b505af115801562001f1e573d6000803e3d6000fd5b505050505050505b565b600354610100900460ff1662001f7a576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b6001600160a01b03821662001fd6576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62001fe46000838362002063565b5060095462001ff49082620018d5565b6009556001600160a01b0382166000908152600760205260409020546200201c9082620018d5565b6001600160a01b0383166000818152600760209081526040808320949094558351858152935192939192600080516020620041c08339815191529281900390910190a35050565b60009392505050565b60006200188a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620021f2565b60035460ff16620020fd576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206275726e61626c6560701b604482015290519081900360640190fd5b6001600160a01b038216620021445760405162461bcd60e51b8152600401808060200182810382526021815260200180620041e06021913960400191505060405180910390fd5b620021528260008362002063565b506200219381604051806060016040528060228152602001620040ed602291396001600160a01b038516600090815260076020526040902054919062001d15565b6001600160a01b038316600090815260076020526040902055600954620021bb908262001891565b6009556040805182815290516000916001600160a01b03851691600080516020620041c08339815191529181900360200190a35050565b60008183620022445760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831562001d6c57818101518382015260200162001d52565b5060008385816200225157fe5b0495945050505050565b611e60806200226a8339019056fe60806040523480156200001157600080fd5b5060405162001e6038038062001e6083398181016040526101808110156200003857600080fd5b81019080805160405193929190846401000000008211156200005957600080fd5b9083019060208201858111156200006f57600080fd5b82516401000000008111828201881017156200008a57600080fd5b82525081516020918201929091019080838360005b83811015620000b95781810151838201526020016200009f565b50505050905090810190601f168015620000e75780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200010b57600080fd5b9083019060208201858111156200012157600080fd5b82516401000000008111828201881017156200013c57600080fd5b82525081516020918201929091019080838360005b838110156200016b57818101518382015260200162000151565b50505050905090810190601f168015620001995780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060840151608085015160a086015160c087015160e08801516101008901516101208a0151610140909a01518e51999c50969a509498939792969195909493929091620001fc91600a918f0190620005ec565b508a516200021290600b9060208e0190620005ec565b50600c805460ff191660ff8c161790556001849055600280546001600160a01b0319166001600160a01b0385161790558315620002a5576001600160a01b038316620002a5576040805162461bcd60e51b815260206004820152601960248201527f6665652063616e6e6f742062652073656e7420746f2030783000000000000000604482015290519081900360640190fd5b600060648810620002db5760038054600160ff19909116179055620002d8886064620004a5602090811b62000d8217901c565b90505b600a881062000311576003805461010061ff00199091161790556200030e88600a620004a5602090811b62000d8217901c565b90505b600188106200032e576005805460ff60a01b1916600160a01b1790555b600087905560035460ff166200034357600080555b6004869055600580546001600160a01b0319166001600160a01b0384161790556200037b8342620004f6602090811b62000dcb17901c565b6006556001600160a01b03891662000391573398505b6001600160a01b038916620003ed576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620004098a600954620004f660201b62000dcb1790919060201c565b6009556001600160a01b0389166000908152600760209081526040909120546200043e918c9062000dcb620004f6821b17901c565b6001600160a01b038a1660008181526007602090815260408083209490945583518e81529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050505050505050505050505062000688565b6000620004ef83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200055160201b60201c565b9392505050565b600082820183811015620004ef576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008184841115620005e45760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620005a85781810151838201526020016200058e565b50505050905090810190601f168015620005d65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200062f57805160ff19168380011785556200065f565b828001600101855582156200065f579182015b828111156200065f57825182559160200191906001019062000642565b506200066d92915062000671565b5090565b5b808211156200066d576000815560010162000672565b6117c880620006986000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806395d89b41116100de578063bc677b4611610097578063d65281e211610071578063d65281e214610446578063dd62ed3e1461044e578063e16547ac1461047c578063f65ec74b1461048457610173565b8063bc677b46146103f4578063ce93749914610418578063d55ab4721461043e57610173565b806395d89b411461036757806399b3517f1461036f578063a0712d6814610377578063a457c2d714610394578063a84f1b1a146103c0578063a9059cbb146103c857610173565b8063395093511161013057806339509351146102cb5780634aa0dc40146102f75780634bf2c7c9146102ff57806369fe0e2d1461031c57806370a082311461033957806373a065631461035f57610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f578063313ce5671461028557806339223511146102a3575b600080fd5b61018061048c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b038135169060200135610522565b604080519115158252519081900360200190f35b61023d610540565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b03813581169160208101359091169060400135610546565b61028d6105cd565b6040805160ff9092168252519081900360200190f35b6102c9600480360360208110156102b957600080fd5b50356001600160a01b03166105d6565b005b610221600480360360408110156102e157600080fd5b506001600160a01b0381351690602001356106a4565b61023d6106f2565b6102c96004803603602081101561031557600080fd5b50356106f8565b6102c96004803603602081101561033257600080fd5b50356107eb565b61023d6004803603602081101561034f57600080fd5b50356001600160a01b03166108d6565b61023d6108f1565b6101806108f7565b6102c9610958565b6102c96004803603602081101561038d57600080fd5b5035610a02565b610221600480360360408110156103aa57600080fd5b506001600160a01b038135169060200135610b3e565b6102c9610ba6565b610221600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610c4f565b6103fc610c63565b604080516001600160a01b039092168252519081900360200190f35b6102c96004803603602081101561042e57600080fd5b50356001600160a01b0316610c72565b610221610d2b565b610221610d39565b61023d6004803603604081101561046457600080fd5b506001600160a01b0381358116916020013516610d42565b61023d610d6d565b6103fc610d73565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105185780601f106104ed57610100808354040283529160200191610518565b820191906000526020600020905b8154815290600101906020018083116104fb57829003601f168201915b5050505050905090565b600061053661052f610e25565b8484610e29565b5060015b92915050565b60095490565b6000610553848484610f15565b6105c38461055f610e25565b6105be856040518060600160405280602881526020016116bc602891396001600160a01b038a1660009081526008602052604081209061059d610e25565b6001600160a01b0316815260208101919091526040016000205491906111e4565b610e29565b5060019392505050565b600c5460ff1690565b6005546001600160a01b03163314610621576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff1661066d576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b6005546001600160a01b031661068257600080fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006105366106b1610e25565b846105be85600860006106c2610e25565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610dcb565b60005490565b6005546001600160a01b03163314610743576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d081111561079a576040805162461bcd60e51b815260206004820152601960248201527f4d6178206275726e466565206361707065642061742032302500000000000000604482015290519081900360640190fd5b600554600160a01b900460ff166107e6576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600055565b6005546001600160a01b03163314610836576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6107d0811115610885576040805162461bcd60e51b81526020600482015260156024820152744d617820466565206361707065642061742032302560581b604482015290519081900360640190fd5b600554600160a01b900460ff166108d1576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600155565b6001600160a01b031660009081526007602052604090205490565b60045490565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105185780601f106104ed57610100808354040283529160200191610518565b6005546001600160a01b031633146109a3576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff166109f5576040805162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b604482015290519081900360640190fd5b6003805461ff0019169055565b6005546001600160a01b03163314610a4d576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600354610100900460ff16610a9e576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b600454600954610aae9083610dcb565b111580610abb5750600454155b610ac457600080fd5b6000610ace610e25565b6001600160a01b03161415610b2a576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610b3b610b35610e25565b8261127b565b50565b6000610536610b4b610e25565b846105be8560405180606001604052806025815260200161176e6025913960086000610b75610e25565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111e4565b6005546001600160a01b03163314610bf1576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff16610c3d576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600580546001600160a01b0319169055565b6000610536610c5c610e25565b8484610f15565b6005546001600160a01b031690565b6005546001600160a01b03163314610cbd576040805162461bcd60e51b815260206004820152600960248201526837b7363ca7bbb732b960b91b604482015290519081900360640190fd5b600554600160a01b900460ff16610d09576040805162461bcd60e51b815260206004820152601c602482015260008051602061167b833981519152604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b600354610100900460ff1690565b60035460ff1690565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b60015490565b6002546001600160a01b031690565b6000610dc483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111e4565b9392505050565b600082820183811015610dc4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b038316610e6e5760405162461bcd60e51b815260040180806020018281038252602481526020018061174a6024913960400191505060405180910390fd5b6001600160a01b038216610eb35760405162461bcd60e51b81526004018080602001828103825260228152602001806116336022913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f5a5760405162461bcd60e51b81526004018080602001828103825260258152602001806117256025913960400191505060405180910390fd5b6001600160a01b038216610f9f5760405162461bcd60e51b81526004018080602001828103825260238152602001806115ee6023913960400191505060405180910390fd5b6006544211610ff5576040805162461bcd60e51b815260206004820181905260248201527f5472616e736665727320626c6f636b656420666f7220746865206d6f6d656e74604482015290519081900360640190fd5b6110008383836113ad565b506001546000908190156110e95760015461102a90612710906110249086906113b6565b9061140f565b915061106982604051806060016040528060268152602001611655602691396001600160a01b03881660009081526007602052604090205491906111e4565b6001600160a01b03808716600090815260076020526040808220939093556002549091168152205461109b9083610dcb565b600280546001600160a01b039081166000908152600760209081526040918290209490945591548251868152925190821693918916926000805160206116e483398151915292908290030190a35b600054156111135760005461110790612710906110249086906113b6565b90506111138582611451565b6000611129826111238686610d82565b90610d82565b905061116881604051806060016040528060268152602001611655602691396001600160a01b03891660009081526007602052604090205491906111e4565b6001600160a01b0380881660009081526007602052604080822093909355908716815220546111979082610dcb565b6001600160a01b0380871660008181526007602090815260409182902094909455805185815290519193928a16926000805160206116e483398151915292918290030190a3505050505050565b600081848411156112735760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611238578181015183820152602001611220565b50505050905090810190601f1680156112655780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600354610100900460ff166112cc576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206d696e7461626c6560701b604482015290519081900360640190fd5b6001600160a01b038216611327576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611333600083836113ad565b506009546113419082610dcb565b6009556001600160a01b0382166000908152600760205260409020546113679082610dcb565b6001600160a01b03831660008181526007602090815260408083209490945583518581529351929391926000805160206116e48339815191529281900390910190a35050565b60009392505050565b6000826113c55750600061053a565b828202828482816113d257fe5b0414610dc45760405162461bcd60e51b815260040180806020018281038252602181526020018061169b6021913960400191505060405180910390fd5b6000610dc483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611588565b60035460ff1661149d576040805162461bcd60e51b8152602060048201526012602482015271746f6b656e204e4f54206275726e61626c6560701b604482015290519081900360640190fd5b6001600160a01b0382166114e25760405162461bcd60e51b81526004018080602001828103825260218152602001806117046021913960400191505060405180910390fd5b6114ee826000836113ad565b5061152c81604051806060016040528060228152602001611611602291396001600160a01b03851660009081526007602052604090205491906111e4565b6001600160a01b0383166000908152600760205260409020556009546115529082610d82565b6009556040805182815290516000916001600160a01b038516916000805160206116e48339815191529181900360200190a35050565b600081836115d75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611238578181015183820152602001611220565b5060008385816115e357fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426173696320676f7665726e616e6365206e6f7420656e61626c656400000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d324225861473d1e00e26c88c80ed9f2ac23bfec2e80b341e323c79d85873c9264736f6c634300060c003345524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426173696320676f7665726e616e6365206e6f7420656e61626c656400000000536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122084f33004497c80e86324f8bfcc8a1e43c9c18d2ab088948b6330d7fb06f218e164736f6c634300060c0033

Deployed Bytecode Sourcemap

379:3639:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3942:83:0;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5969:160;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5969:160:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5024:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6603:312;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6603:312:0;;;;;;;;;;;;;;;;;:::i;4876:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15253:197;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15253:197:0;-1:-1:-1;;;;;15253:197:0;;:::i;:::-;;7324:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7324:218:0;;;;;;;;:::i;1589:1085:2:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1589:1085:2;;;;;;;;-1:-1:-1;1589:1085:2;;-1:-1:-1;;1589:1085:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1589:1085:2;;-1:-1:-1;;1589:1085:2;;;;;-1:-1:-1;;;1589:1085:2;;;;;-1:-1:-1;;;;;1589:1085:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;3406:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3406:120:2;;:::i;14624:84:0:-;;;;;;;;;;;;;:::i;14405:217::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14405:217:0;;:::i;3820:96:2:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3820:96:2;;:::i;14712:207:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14712:207:0;;:::i;5128:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5128:110:0;-1:-1:-1;;;;;5128:110:0;;:::i;15931:97::-;;;;;;;;;;;;;:::i;3643:84:2:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3643:84:2;;:::i;4144:87:0:-;;;;;;;;;;;;;:::i;15791:136::-;;;;;;;;;;;;;:::i;3532:99:2:-;;;;;;;;;;;;;:::i;614:18::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;614:18:2;;;;;;;;;;;;;;10536:355:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10536:355:0;;:::i;8045:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8045:269:0;;;;;;;;:::i;15454:146::-;;;;;;;;;;;;;:::i;5451:166::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5451:166:0;;;;;;;;:::i;588:19:2:-;;;;;;;;;;;;;:::i;639:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;639:21:2;;:::i;16032:78:0:-;;;;;;;;;;;;;:::i;15007:158::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15007:158:0;-1:-1:-1;;;;;15007:158:0;;:::i;15699:88::-;;;;;;;;;;;;;:::i;15604:91::-;;;;;;;;;;;;;:::i;3733:81:2:-;;;;;;;;;;;;;:::i;5680:142:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5680:142:0;;;;;;;;;;:::i;14921:82::-;;;;;;;;;;;;;:::i;3313:87:2:-;;;;;;;;;;;;;:::i;3213:94::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3213:94:2;-1:-1:-1;;;;;3213:94:2;;:::i;3922:93::-;;;;;;;;;;;;;:::i;15167:82:0:-;;;;;;;;;;;;;:::i;3942:83::-;4012:5;4005:12;;;;;;;;-1:-1:-1;;4005:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3979:13;;4005:12;;4012:5;;4005:12;;4012:5;4005:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3942:83;:::o;5969:160::-;6043:4;6060:39;6069:12;:10;:12::i;:::-;6083:7;6092:6;6060:8;:39::i;:::-;-1:-1:-1;6117:4:0;5969:160;;;;;:::o;5024:92::-;5096:12;;5024:92;:::o;6603:312::-;6700:4;6717:36;6727:6;6735:9;6746:6;6717:9;:36::i;:::-;6764:121;6773:6;6781:12;:10;:12::i;:::-;6795:89;6833:6;6795:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6795:19:0;;;;;;:11;:19;;;;;;6815:12;:10;:12::i;:::-;-1:-1:-1;;;;;6795:33:0;;;;;;;;;;;;-1:-1:-1;6795:33:0;;;:89;:37;:89::i;:::-;6764:8;:121::i;:::-;-1:-1:-1;6903:4:0;6603:312;;;;;:::o;4876:83::-;4942:9;;;;4876:83;:::o;15253:197::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;15325:3:::1;:20:::0;-1:-1:-1;;;15325:20:0;::::1;;;15317:61;;;::::0;;-1:-1:-1;;;15317:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;15317:61:0;;;;;;;;;;;;;::::1;;15393:3;:10:::0;-1:-1:-1;;;;;15393:10:0::1;15385:33;;;::::0;::::1;;15425:3;:21:::0;;-1:-1:-1;;;;;;15425:21:0::1;-1:-1:-1::0;;;;;15425:21:0;;;::::1;::::0;;;::::1;::::0;;15253:197::o;7324:218::-;7412:4;7429:83;7438:12;:10;:12::i;:::-;7452:7;7461:50;7500:10;7461:11;:25;7473:12;:10;:12::i;:::-;-1:-1:-1;;;;;7461:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;7461:25:0;;;:34;;;;;;;;;;;:38;:50::i;1589:1085:2:-;1999:14;;1974:21;1984:10;1974:9;:21::i;:::-;:39;;1966:48;;;;;;2059:11;;2034:21;2044:10;2034:9;:21::i;:::-;:36;;:58;;;;2087:5;;2074:9;:18;;2034:58;2026:67;;;;;;2128:3;2113:11;:18;;2105:27;;;;;;-1:-1:-1;;;;;2152:19:2;;2149:44;;-1:-1:-1;2181:10:2;2149:44;2233:20;2279:4;2285:6;2293:8;2321:6;2329:8;2356:11;2369:8;2396:12;2427:7;2436;2462:14;2495:5;2264:237;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2264:237:2;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2264:237:2;;;;;;;;;;;-1:-1:-1;;;;;2264:237:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:269;;2554:60;2569:12;2583:6;2591:4;2597:6;2605:8;2554:60;;;;-1:-1:-1;;;;;2554:60:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2554:60:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2639:9;:7;:9::i;:::-;1589:1085;;;;;;;;;;;;;:::o;3406:120::-;1523:3:0;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;3486:14:2::1;:32:::0;3406:120::o;14624:84:0:-;14668:7;14690:14;14624:84;:::o;14405:217::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;14485:4:::1;14474:7;:15;;14466:53;;;::::0;;-1:-1:-1;;;14466:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;14534:3;:20:::0;-1:-1:-1;;;14534:20:0;::::1;;;14526:61;;;::::0;;-1:-1:-1;;;14526:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;14526:61:0;;;;;;;;;;;;;::::1;;14594:4;:24:::0;14405:217::o;3820:96:2:-;1523:3:0;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;3888:11:2::1;:20:::0;3820:96::o;14712:207:0:-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;14787:4:::1;14776:7;:15;;14768:49;;;::::0;;-1:-1:-1;;;14768:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;14768:49:0;;;;;;;;;;;;;::::1;;14832:3;:20:::0;-1:-1:-1;;;14832:20:0;::::1;;;14824:61;;;::::0;;-1:-1:-1;;;14824:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;14824:61:0;;;;;;;;;;;;;::::1;;14892:13;:23:::0;14712:207::o;5128:110::-;-1:-1:-1;;;;;5212:18:0;5185:7;5212:18;;;:9;:18;;;;;;;5128:110::o;15931:97::-;16002:22;;15931:97;:::o;3643:84:2:-;1523:3:0;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;3705:5:2::1;:14:::0;3643:84::o;4144:87:0:-;4216:7;4209:14;;;;;;;;-1:-1:-1;;4209:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4183:13;;4209:14;;4216:7;;4209:14;;4216:7;4209:14;;;;;;;;;;;;;;;;;;;;;;;;15791:136;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;15848:8:::1;:18:::0;::::1;::::0;::::1;;;15840:50;;;::::0;;-1:-1:-1;;;15840:50:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;15840:50:0;;;;;;;;;;;;;::::1;;15897:8;:26:::0;;-1:-1:-1;;15897:26:0::1;::::0;;15791:136::o;3532:99:2:-;3609:14;;3532:99;:::o;614:18::-;;;-1:-1:-1;;;;;614:18:2;;:::o;10536:355:0:-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;10612:8:::1;:18:::0;::::1;::::0;::::1;;;10604:49;;;::::0;;-1:-1:-1;;;10604:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;10604:49:0;;;;;;;;;;;;;::::1;;10700:22:::0;;10672:12:::1;::::0;:24:::1;::::0;10689:6;10672:16:::1;:24::i;:::-;:50;;:81;;;-1:-1:-1::0;10726:22:0;;:27;10672:81:::1;10664:90;;;::::0;::::1;;10797:1;10773:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;10773:26:0::1;;;10765:70;;;::::0;;-1:-1:-1;;;10765:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;10856:27;10862:12;:10;:12::i;:::-;10876:6;10856:5;:27::i;:::-;10536:355:::0;:::o;8045:269::-;8138:4;8155:129;8164:12;:10;:12::i;:::-;8178:7;8187:96;8226:15;8187:96;;;;;;;;;;;;;;;;;:11;:25;8199:12;:10;:12::i;:::-;-1:-1:-1;;;;;8187:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;8187:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;15454:146::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;15513:3:::1;:20:::0;-1:-1:-1;;;15513:20:0;::::1;;;15505:61;;;::::0;;-1:-1:-1;;;15505:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;15505:61:0;;;;;;;;;;;;;::::1;;15573:3;:23:::0;;-1:-1:-1;;;;;;15573:23:0::1;::::0;;15454:146::o;5451:166::-;5528:4;5545:42;5555:12;:10;:12::i;:::-;5569:9;5580:6;5545:9;:42::i;588:19:2:-;;;-1:-1:-1;;;;;588:19:2;;:::o;639:21::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;639:21:2;;-1:-1:-1;639:21:2;:::o;16032:78:0:-;16096:3;:10;-1:-1:-1;;;;;16096:10:0;16032:78;:::o;15007:158::-;1523:3;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;15078:3:::1;:20:::0;-1:-1:-1;;;15078:20:0;::::1;;;15070:61;;;::::0;;-1:-1:-1;;;15070:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;;;;;;;15070:61:0;;;;;;;;;;;;;::::1;;15138:13;:23:::0;;-1:-1:-1;;;;;;15138:23:0::1;-1:-1:-1::0;;;;;15138:23:0;;;::::1;::::0;;;::::1;::::0;;15007:158::o;15699:88::-;15765:8;:18;;;;;;;15699:88::o;15604:91::-;15670:8;:18;;;15604:91;:::o;3733:81:2:-;3801:5;;3733:81;:::o;5680:142:0:-;-1:-1:-1;;;;;5787:18:0;;;5760:7;5787:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5680:142::o;14921:82::-;14986:13;;14921:82;:::o;3313:87:2:-;3384:8;;-1:-1:-1;;;;;3384:8:2;3313:87;:::o;3213:94::-;1523:3:0;:10;-1:-1:-1;;;;;1523:10:0;1537;1523:24;1515:46;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;-1:-1:-1;;;1515:46:0;;;;;;;;;;;;;;;3280:8:2::1;:19:::0;;-1:-1:-1;;;;;;3280:19:2::1;-1:-1:-1::0;;;;;3280:19:2;;;::::1;::::0;;;::::1;::::0;;3213:94::o;3922:93::-;3996:11;;3922:93;:::o;15167:82:0:-;15232:13;;-1:-1:-1;;;;;15232:13:0;15167:82;:::o;3166:471:1:-;3224:7;3469:6;3465:47;;-1:-1:-1;3499:1:1;3492:8;;3465:47;3536:5;;;3540:1;3536;:5;:1;3560:5;;;;;:10;3552:56;;;;-1:-1:-1;;;3552:56:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3628:1;3166:471;-1:-1:-1;;;3166:471:1:o;2276:136::-;2334:7;2361:43;2365:1;2368;2361:43;;;;;;;;;;;;;;;;;:3;:43::i;1812:181::-;1870:7;1902:5;;;1926:6;;;;1918:46;;;;;-1:-1:-1;;;1918:46:1;;;;;;;;;;;;;;;;;;;;;;;;;;;618:106;706:10;618:106;:::o;12874:346:0:-;-1:-1:-1;;;;;12976:19:0;;12968:68;;;;-1:-1:-1;;;12968:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13055:21:0;;13047:68;;;;-1:-1:-1;;;13047:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13128:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13180:32;;;;;;;;;;;;;;;;;12874:346;;;:::o;8828:1311::-;-1:-1:-1;;;;;8934:20:0;;8926:70;;;;-1:-1:-1;;;8926:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9015:23:0;;9007:71;;;;-1:-1:-1;;;9007:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9117:23;;9099:15;:41;9091:86;;;;;-1:-1:-1;;;9091:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9188:47;9209:6;9217:9;9228:6;9188:20;:47::i;:::-;-1:-1:-1;9318:13:0;;9256:12;;;;9318:17;9315:326;;9369:13;;9358:36;;9388:5;;9358:25;;:6;;:10;:25::i;:::-;:29;;:36::i;:::-;9351:43;;9429:69;9451:4;9429:69;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9429:17:0;;;;;;:9;:17;;;;;;;:69;:21;:69::i;:::-;-1:-1:-1;;;;;9409:17:0;;;;;;;:9;:17;;;;;;:89;;;;9550:13;;;;;9540:24;;;;:34;;9569:4;9540:28;:34::i;:::-;9523:13;;;-1:-1:-1;;;;;9523:13:0;;;9513:24;;;;:9;:24;;;;;;;;;:61;;;;9610:13;;9594:35;;;;;;;9610:13;;;;9594:35;;;;-1:-1:-1;;;;;;;;;;;9594:35:0;;;;;;;;9315:326;9671:1;9654:14;:18;9651:162;;9710:4;:14;9699:37;;9730:5;;9699:26;;:6;;:10;:26::i;:37::-;9688:48;;9751:23;9757:6;9765:8;9751:5;:23::i;:::-;9843:17;9863:30;9884:8;9863:16;:6;9874:4;9863:10;:16::i;:::-;:20;;:30::i;:::-;9843:50;;9924:74;9946:9;9924:74;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9924:17:0;;;;;;:9;:17;;;;;;;:74;:21;:74::i;:::-;-1:-1:-1;;;;;9904:17:0;;;;;;;:9;:17;;;;;;:94;;;;10032:20;;;;;;;:35;;10057:9;10032:24;:35::i;:::-;-1:-1:-1;;;;;10009:20:0;;;;;;;:9;:20;;;;;;;;;:58;;;;10093:38;;;;;;;10009:20;;10093:38;;;;-1:-1:-1;;;;;;;;;;;10093:38:0;;;;;;;;8828:1311;;;;;;:::o;2715:192:1:-;2801:7;2837:12;2829:6;;;;2821:29;;;;-1:-1:-1;;;2821:29:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2873:5:1;;;2715:192::o;2686:397:2:-;2729:3;;2743:9;-1:-1:-1;;;;;2729:3:2;;;:11;:23;2725:348;;;2785:3;;2769:13;;2785:26;;-1:-1:-1;;;;;2785:3:2;:11;2801:9;2785:15;:26::i;:::-;2827:17;;;;;;;;2769:42;;-1:-1:-1;2827:17:2;;;;;;;;;;3033:8;;2859:17;;818:42;;2895:77;;2981:8;;2859:17;;3027:4;;-1:-1:-1;;;;;3033:8:2;3043:17;:3;3051:8;3043:7;:17::i;:::-;2895:166;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2895:166:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2895:166:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2725:348;;;2686:397::o;11176:438:0:-;11260:8;:18;;;;;;11252:49;;;;;-1:-1:-1;;;11252:49:0;;;;;;;;;;;;-1:-1:-1;;;11252:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11320:21:0;;11312:65;;;;;-1:-1:-1;;;11312:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;11390:49;11419:1;11423:7;11432:6;11390:20;:49::i;:::-;-1:-1:-1;11467:12:0;;:24;;11484:6;11467:16;:24::i;:::-;11452:12;:39;-1:-1:-1;;;;;11523:18:0;;;;;;:9;:18;;;;;;:30;;11546:6;11523:22;:30::i;:::-;-1:-1:-1;;;;;11502:18:0;;;;;;:9;:18;;;;;;;;:51;;;;11569:37;;;;;;;11502:18;;;;-1:-1:-1;;;;;;;;;;;11569:37:0;;;;;;;;;11176:438;;:::o;14245:124::-;14342:17;14245:124;;;;;:::o;4113:132:1:-;4171:7;4198:39;4202:1;4205;4198:39;;;;;;;;;;;;;;;;;:3;:39::i;11946:488:0:-;12030:8;:18;;;12022:49;;;;;-1:-1:-1;;;12022:49:0;;;;;;;;;;;;-1:-1:-1;;;12022:49:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;12100:21:0;;12092:67;;;;-1:-1:-1;;;12092:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12172:49;12193:7;12210:1;12214:6;12172:20;:49::i;:::-;;12255:68;12278:6;12255:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12255:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;12234:18:0;;;;;;:9;:18;;;;;:89;12349:12;;:24;;12366:6;12349:16;:24::i;:::-;12334:12;:39;12389:37;;;;;;;;12415:1;;-1:-1:-1;;;;;12389:37:0;;;-1:-1:-1;;;;;;;;;;;12389:37:0;;;;;;;;11946:488;;:::o;4741:278:1:-;4827:7;4862:12;4855:5;4847:28;;;;-1:-1:-1;;;4847:28:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4886:9;4902:1;4898;:5;;;;;;;4741:278;-1:-1:-1;;;;;4741:278:1:o;-1:-1:-1:-;;;;;;;;:::o

Swarm Source

ipfs://84f33004497c80e86324f8bfcc8a1e43c9c18d2ab088948b6330d7fb06f218e1
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.