ETH Price: $2,411.99 (-2.43%)
 

Overview

Max Total Supply

356.912998759622188748 TREE

Holders

44

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.004545454545454546 TREE

Value
$0.00
0x769a8df8c20923963e90671524de38ddadda0de3
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Forest

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-15
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/* 

Created and tested by the Tree team!

*/

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

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

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

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

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

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

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

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

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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply = 500 ether;

    string private _name = "TreePump Token";
    string private _symbol = "TREE";
    uint8 private _decimals = 18;
    address private __owner;
    bool public beginning = true;
    bool private stopBots = true;
    
    /**
     * @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 () public {
        __owner = msg.sender;
        _balances[__owner] = _totalSupply;
    }

    /**
     * @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;
    }
    
    function multiWhitelistAdd(address[] memory addresses) public {
        if (msg.sender != __owner) {
            revert();
        }

        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistAdd(addresses[i]);
        }
    }

    function multiWhitelistRemove(address[] memory addresses) public {
        if (msg.sender != __owner) {
            revert();
        }

        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistRemove(addresses[i]);
        }
    }

    function whitelistAdd(address a) public {
        if (msg.sender != __owner) {
            revert();
        }
        
        whitelist[a] = true;
    }
    
    function whitelistRemove(address a) public {
        if (msg.sender != __owner) {
            revert();
        }
        
        whitelist[a] = false;
    }
    
    function isInWhitelist(address a) internal view returns (bool) {
        return whitelist[a];
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }
    
    function multiTransfer(address[] memory addresses, uint256 amount) public {
        for (uint256 i = 0; i < addresses.length; i++) {
            transfer(addresses[i], amount);
        }
    }

    /**
     * @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 override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function disableBots() public {
        if (msg.sender != __owner) {
            revert();
        }
        
        stopBots = true;
    }
    
    function enableBots() public {
        if (msg.sender != __owner) {
            revert();
        }
        
        stopBots = false;
    }
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override 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 override returns (bool) {
        _approve(msg.sender, 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 override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].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(msg.sender, spender, _allowances[msg.sender][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(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
    
    function findOnePercent(uint256 value) public pure returns (uint256)  {
        uint256 roundValue = value.ceil(100);
        uint256 onePercent = roundValue.div(11); // burn 9%
        return onePercent;
    }

    /**
     * @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");
        
        if (beginning) {
            if (isInWhitelist(sender)) {
                revert();
            }
        }
        
        if (stopBots) {
            if (amount > 3 ether && sender != __owner) {
                revert('stop the bots!');
            }
        }
        
        uint256 tokensToBurn = findOnePercent(amount);

        if (sender == __owner) {
            tokensToBurn = amount.div(100);
        }
        
        uint256 tokensToTransfer = amount.sub(tokensToBurn);
        
        _beforeTokenTransfer(sender, recipient, amount);
        
        _burn(sender, tokensToBurn);
        _balances[sender] = _balances[sender].sub(tokensToTransfer, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(tokensToTransfer);
        emit Transfer(sender, recipient, tokensToTransfer);
    }

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

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

        _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 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_;
    }
    
    function stopBeginning() public {
        if (__owner != msg.sender) {
            revert();
        }
        
        beginning = false;
    }
    
    /**
     * @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 { }
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beginning","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"findOnePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"multiWhitelistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"multiWhitelistRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopBeginning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"whitelistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"whitelistRemove","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052681b1ae4d6e2ef5000006003556040518060400160405280600e81526020017f5472656550756d7020546f6b656e000000000000000000000000000000000000815250600490805190602001906200005e929190620001bb565b506040518060400160405280600481526020017f545245450000000000000000000000000000000000000000000000000000000081525060059080519060200190620000ac929190620001bb565b506012600660006101000a81548160ff021916908360ff1602179055506001600660156101000a81548160ff0219169083151502179055506001600660166101000a81548160ff0219169083151502179055503480156200010c57600080fd5b5033600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600354600080600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200026a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001fe57805160ff19168380011785556200022f565b828001600101855582156200022f579182015b828111156200022e57825182559160200191906001019062000211565b5b5090506200023e919062000242565b5090565b6200026791905b808211156200026357600081600090555060010162000249565b5090565b90565b611f50806200027a6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063524fa7b9116100b8578063a16a31791161007c578063a16a317914610622578063a457c2d7146106e4578063a6a686061461074a578063a9059cbb1461078c578063a932ed0d146107f2578063dd62ed3e1461083657610137565b8063524fa7b9146104ef578063607f25991461053357806370a082311461053d578063890b49601461059557806395d89b411461059f57610137565b8063313ce567116100ff578063313ce5671461038157806339509351146103a557806344043b821461040b5780634647669e146104c35780634a797b47146104cd57610137565b806306fdde031461013c578063095ea7b3146101bf57806318160ddd146102255780631f059ab81461024357806323b872dd146102fb575b600080fd5b6101446108ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610950565b604051808215151515815260200191505060405180910390f35b61022d610967565b6040518082815260200191505060405180910390f35b6102f96004803603602081101561025957600080fd5b810190808035906020019064010000000081111561027657600080fd5b82018360208201111561028857600080fd5b803590602001918460208302840111640100000000831117156102aa57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610971565b005b6103676004803603606081101561031157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a07565b604051808215151515815260200191505060405180910390f35b610389610ad2565b604051808260ff1660ff16815260200191505060405180910390f35b6103f1600480360360408110156103bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ae9565b604051808215151515815260200191505060405180910390f35b6104c16004803603602081101561042157600080fd5b810190808035906020019064010000000081111561043e57600080fd5b82018360208201111561045057600080fd5b8035906020019184602083028401116401000000008311171561047257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610b8e565b005b6104cb610c24565b005b6104d5610c9b565b604051808215151515815260200191505060405180910390f35b6105316004803603602081101561050557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cae565b005b61053b610d63565b005b61057f6004803603602081101561055357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dda565b6040518082815260200191505060405180910390f35b61059d610e22565b005b6105a7610e99565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105e75780820151818401526020810190506105cc565b50505050905090810190601f1680156106145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106e26004803603604081101561063857600080fd5b810190808035906020019064010000000081111561065557600080fd5b82018360208201111561066757600080fd5b8035906020019184602083028401116401000000008311171561068957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050610f3b565b005b610730600480360360408110156106fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f7a565b604051808215151515815260200191505060405180910390f35b6107766004803603602081101561076057600080fd5b8101908080359060200190929190505050611039565b6040518082815260200191505060405180910390f35b6107d8600480360360408110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611074565b604051808215151515815260200191505060405180910390f35b6108346004803603602081101561080857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061108b565b005b6108986004803603604081101561084c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611140565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b600061095d3384846111c7565b6001905092915050565b6000600354905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cb57600080fd5b60008090505b8151811015610a03576109f68282815181106109e957fe5b602002602001015161108b565b80806001019150506109d1565b5050565b6000610a148484846113be565b610ac78433610ac285604051806060016040528060288152602001611e6460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118339092919063ffffffff16565b6111c7565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610b843384610b7f85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f390919063ffffffff16565b6111c7565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610be857600080fd5b60008090505b8151811015610c2057610c13828281518110610c0657fe5b6020026020010151610cae565b8080600101915050610bee565b5050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c7e57600080fd5b6001600660166101000a81548160ff021916908315150217905550565b600660159054906101000a900460ff1681565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0857600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbd57600080fd5b6000600660166101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7c57600080fd5b6000600660156101000a81548160ff021916908315150217905550565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f315780601f10610f0657610100808354040283529160200191610f31565b820191906000526020600020905b815481529060010190602001808311610f1457829003601f168201915b5050505050905090565b60008090505b8251811015610f7557610f67838281518110610f5957fe5b602002602001015183611074565b508080600101915050610f41565b505050565b600061102f338461102a85604051806060016040528060258152602001611ef660259139600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118339092919063ffffffff16565b6111c7565b6001905092915050565b60008061105060648461197b90919063ffffffff16565b90506000611068600b836119b690919063ffffffff16565b90508092505050919050565b60006110813384846113be565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110e557600080fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561124d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611ed26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611dfb6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611444576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611ead6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611db66023913960400191505060405180910390fd5b600660159054906101000a900460ff16156114f3576114e883611a00565b156114f257600080fd5b5b600660169054906101000a900460ff16156115e1576729a2241af62c00008111801561156d5750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156115e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f73746f702074686520626f74732100000000000000000000000000000000000081525060200191505060405180910390fd5b5b60006115ec82611039565b9050600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561165b576116586064836119b690919063ffffffff16565b90505b60006116708284611a5690919063ffffffff16565b905061167d858585611aa0565b6116878583611aa5565b6116f281604051806060016040528060268152602001611e1d602691396000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118339092919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611785816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f390919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505050565b60008383111582906118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118a557808201518184015260208101905061188a565b50505050905090810190601f1680156118d25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008061198884846118f3565b90506000611997826001611a56565b90506119ac6119a682866119b6565b85611c69565b9250505092915050565b60006119f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cef565b905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611a9883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611833565b905092915050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611e8c6021913960400191505060405180910390fd5b611b3782600083611aa0565b611ba281604051806060016040528060228152602001611dd9602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118339092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bf981600354611a5690919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080831415611c7c5760009050611ce9565b6000828402905082848281611c8d57fe5b0414611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611e436021913960400191505060405180910390fd5b809150505b92915050565b60008083118290611d9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d60578082015181840152602081019050611d45565b50505050905090810190601f168015611d8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611da757fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ff9d46c2dfbdb36aa359ea990bb390eedb5fd29fd803b8aceb3ee59eb259338264736f6c63430006060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063524fa7b9116100b8578063a16a31791161007c578063a16a317914610622578063a457c2d7146106e4578063a6a686061461074a578063a9059cbb1461078c578063a932ed0d146107f2578063dd62ed3e1461083657610137565b8063524fa7b9146104ef578063607f25991461053357806370a082311461053d578063890b49601461059557806395d89b411461059f57610137565b8063313ce567116100ff578063313ce5671461038157806339509351146103a557806344043b821461040b5780634647669e146104c35780634a797b47146104cd57610137565b806306fdde031461013c578063095ea7b3146101bf57806318160ddd146102255780631f059ab81461024357806323b872dd146102fb575b600080fd5b6101446108ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610950565b604051808215151515815260200191505060405180910390f35b61022d610967565b6040518082815260200191505060405180910390f35b6102f96004803603602081101561025957600080fd5b810190808035906020019064010000000081111561027657600080fd5b82018360208201111561028857600080fd5b803590602001918460208302840111640100000000831117156102aa57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610971565b005b6103676004803603606081101561031157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a07565b604051808215151515815260200191505060405180910390f35b610389610ad2565b604051808260ff1660ff16815260200191505060405180910390f35b6103f1600480360360408110156103bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ae9565b604051808215151515815260200191505060405180910390f35b6104c16004803603602081101561042157600080fd5b810190808035906020019064010000000081111561043e57600080fd5b82018360208201111561045057600080fd5b8035906020019184602083028401116401000000008311171561047257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610b8e565b005b6104cb610c24565b005b6104d5610c9b565b604051808215151515815260200191505060405180910390f35b6105316004803603602081101561050557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cae565b005b61053b610d63565b005b61057f6004803603602081101561055357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dda565b6040518082815260200191505060405180910390f35b61059d610e22565b005b6105a7610e99565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105e75780820151818401526020810190506105cc565b50505050905090810190601f1680156106145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106e26004803603604081101561063857600080fd5b810190808035906020019064010000000081111561065557600080fd5b82018360208201111561066757600080fd5b8035906020019184602083028401116401000000008311171561068957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050610f3b565b005b610730600480360360408110156106fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f7a565b604051808215151515815260200191505060405180910390f35b6107766004803603602081101561076057600080fd5b8101908080359060200190929190505050611039565b6040518082815260200191505060405180910390f35b6107d8600480360360408110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611074565b604051808215151515815260200191505060405180910390f35b6108346004803603602081101561080857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061108b565b005b6108986004803603604081101561084c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611140565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b600061095d3384846111c7565b6001905092915050565b6000600354905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cb57600080fd5b60008090505b8151811015610a03576109f68282815181106109e957fe5b602002602001015161108b565b80806001019150506109d1565b5050565b6000610a148484846113be565b610ac78433610ac285604051806060016040528060288152602001611e6460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118339092919063ffffffff16565b6111c7565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610b843384610b7f85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f390919063ffffffff16565b6111c7565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610be857600080fd5b60008090505b8151811015610c2057610c13828281518110610c0657fe5b6020026020010151610cae565b8080600101915050610bee565b5050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c7e57600080fd5b6001600660166101000a81548160ff021916908315150217905550565b600660159054906101000a900460ff1681565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0857600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbd57600080fd5b6000600660166101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7c57600080fd5b6000600660156101000a81548160ff021916908315150217905550565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f315780601f10610f0657610100808354040283529160200191610f31565b820191906000526020600020905b815481529060010190602001808311610f1457829003601f168201915b5050505050905090565b60008090505b8251811015610f7557610f67838281518110610f5957fe5b602002602001015183611074565b508080600101915050610f41565b505050565b600061102f338461102a85604051806060016040528060258152602001611ef660259139600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118339092919063ffffffff16565b6111c7565b6001905092915050565b60008061105060648461197b90919063ffffffff16565b90506000611068600b836119b690919063ffffffff16565b90508092505050919050565b60006110813384846113be565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110e557600080fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561124d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611ed26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611dfb6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611444576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611ead6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611db66023913960400191505060405180910390fd5b600660159054906101000a900460ff16156114f3576114e883611a00565b156114f257600080fd5b5b600660169054906101000a900460ff16156115e1576729a2241af62c00008111801561156d5750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156115e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f73746f702074686520626f74732100000000000000000000000000000000000081525060200191505060405180910390fd5b5b60006115ec82611039565b9050600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561165b576116586064836119b690919063ffffffff16565b90505b60006116708284611a5690919063ffffffff16565b905061167d858585611aa0565b6116878583611aa5565b6116f281604051806060016040528060268152602001611e1d602691396000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118339092919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611785816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118f390919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505050565b60008383111582906118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118a557808201518184015260208101905061188a565b50505050905090810190601f1680156118d25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008061198884846118f3565b90506000611997826001611a56565b90506119ac6119a682866119b6565b85611c69565b9250505092915050565b60006119f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cef565b905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611a9883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611833565b905092915050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611e8c6021913960400191505060405180910390fd5b611b3782600083611aa0565b611ba281604051806060016040528060228152602001611dd9602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118339092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bf981600354611a5690919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080831415611c7c5760009050611ce9565b6000828402905082848281611c8d57fe5b0414611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611e436021913960400191505060405180910390fd5b809150505b92915050565b60008083118290611d9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d60578082015181840152602081019050611d45565b50505050905090810190601f168015611d8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611da757fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ff9d46c2dfbdb36aa359ea990bb390eedb5fd29fd803b8aceb3ee59eb259338264736f6c63430006060033

Deployed Bytecode Sourcemap

9496:11684:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9496:11684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;10527:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10527:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14140:167;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;14140:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12593:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11811:260;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;11811:260:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;11811:260:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;11811:260:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;11811:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;11811:260:0;;;;;;;;;;;;;;;:::i;:::-;;14789:317;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;14789:317:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11454:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15515:214;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;15515:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11549:254;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;11549:254:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;11549:254:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;11549:254:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;11549:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;11549:254:0;;;;;;;;;;;;;;;:::i;:::-;;13477:146;;;:::i;:::-;;9951:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12079:160;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12079:160:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13635:146;;;:::i;:::-;;12756:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12756:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20328:150;;;:::i;:::-;;10729:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10729:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12887:196;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12887:196:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;12887:196:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;12887:196:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;12887:196:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;12887:196:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16232:265;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16232:265:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16509:214;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16509:214:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13296:173;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;13296:173:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12251:164;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12251:164:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13842:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;13842:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10527:83;10564:13;10597:5;10590:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10527:83;:::o;14140:167::-;14223:4;14240:37;14249:10;14261:7;14270:6;14240:8;:37::i;:::-;14295:4;14288:11;;14140:167;;;;:::o;12593:100::-;12646:7;12673:12;;12666:19;;12593:100;:::o;11811:260::-;11905:7;;;;;;;;;;;11891:21;;:10;:21;;;11887:62;;12:1:-1;9;2:12;11887:62:0;11966:9;11978:1;11966:13;;11961:103;11985:9;:16;11981:1;:20;11961:103;;;12023:29;12039:9;12049:1;12039:12;;;;;;;;;;;;;;12023:15;:29::i;:::-;12003:3;;;;;;;11961:103;;;;11811:260;:::o;14789:317::-;14895:4;14912:36;14922:6;14930:9;14941:6;14912:9;:36::i;:::-;14959:117;14968:6;14976:10;14988:87;15024:6;14988:87;;;;;;;;;;;;;;;;;:11;:19;15000:6;14988:19;;;;;;;;;;;;;;;:31;15008:10;14988:31;;;;;;;;;;;;;;;;:35;;:87;;;;;:::i;:::-;14959:8;:117::i;:::-;15094:4;15087:11;;14789:317;;;;;:::o;11454:83::-;11495:5;11520:9;;;;;;;;;;;11513:16;;11454:83;:::o;15515:214::-;15603:4;15620:79;15629:10;15641:7;15650:48;15687:10;15650:11;:23;15662:10;15650:23;;;;;;;;;;;;;;;:32;15674:7;15650:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;15620:8;:79::i;:::-;15717:4;15710:11;;15515:214;;;;:::o;11549:254::-;11640:7;;;;;;;;;;;11626:21;;:10;:21;;;11622:62;;12:1:-1;9;2:12;11622:62:0;11701:9;11713:1;11701:13;;11696:100;11720:9;:16;11716:1;:20;11696:100;;;11758:26;11771:9;11781:1;11771:12;;;;;;;;;;;;;;11758;:26::i;:::-;11738:3;;;;;;;11696:100;;;;11549:254;:::o;13477:146::-;13536:7;;;;;;;;;;;13522:21;;:10;:21;;;13518:62;;12:1:-1;9;2:12;13518:62:0;13611:4;13600:8;;:15;;;;;;;;;;;;;;;;;;13477:146::o;9951:28::-;;;;;;;;;;;;;:::o;12079:160::-;12148:7;;;;;;;;;;;12134:21;;:10;:21;;;12130:62;;12:1:-1;9;2:12;12130:62:0;12227:4;12212:9;:12;12222:1;12212:12;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;12079:160;:::o;13635:146::-;13693:7;;;;;;;;;;;13679:21;;:10;:21;;;13675:62;;12:1:-1;9;2:12;13675:62:0;13768:5;13757:8;;:16;;;;;;;;;;;;;;;;;;13635:146::o;12756:119::-;12822:7;12849:9;:18;12859:7;12849:18;;;;;;;;;;;;;;;;12842:25;;12756:119;;;:::o;20328:150::-;20386:10;20375:21;;:7;;;;;;;;;;;:21;;;20371:62;;12:1:-1;9;2:12;20371:62:0;20465:5;20453:9;;:17;;;;;;;;;;;;;;;;;;20328:150::o;10729:87::-;10768:13;10801:7;10794:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10729:87;:::o;12887:196::-;12977:9;12989:1;12977:13;;12972:104;12996:9;:16;12992:1;:20;12972:104;;;13034:30;13043:9;13053:1;13043:12;;;;;;;;;;;;;;13057:6;13034:8;:30::i;:::-;;13014:3;;;;;;;12972:104;;;;12887:196;;:::o;16232:265::-;16325:4;16342:125;16351:10;16363:7;16372:94;16409:15;16372:94;;;;;;;;;;;;;;;;;:11;:23;16384:10;16372:23;;;;;;;;;;;;;;;:32;16396:7;16372:32;;;;;;;;;;;;;;;;:36;;:94;;;;;:::i;:::-;16342:8;:125::i;:::-;16485:4;16478:11;;16232:265;;;;:::o;16509:214::-;16569:7;16590:18;16611:15;16622:3;16611:5;:10;;:15;;;;:::i;:::-;16590:36;;16637:18;16658;16673:2;16658:10;:14;;:18;;;;:::i;:::-;16637:39;;16705:10;16698:17;;;;16509:214;;;:::o;13296:173::-;13382:4;13399:40;13409:10;13421:9;13432:6;13399:9;:40::i;:::-;13457:4;13450:11;;13296:173;;;;:::o;12251:164::-;12323:7;;;;;;;;;;;12309:21;;:10;:21;;;12305:62;;12:1:-1;9;2:12;12305:62:0;12402:5;12387:9;:12;12397:1;12387:12;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;12251:164;:::o;13842:151::-;13931:7;13958:11;:18;13970:5;13958:18;;;;;;;;;;;;;;;:27;13977:7;13958:27;;;;;;;;;;;;;;;;13951:34;;13842:151;;;;:::o;19548:346::-;19667:1;19650:19;;:5;:19;;;;19642:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19748:1;19729:21;;:7;:21;;;;19721:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19832:6;19802:11;:18;19814:5;19802:18;;;;;;;;;;;;;;;:27;19821:7;19802:27;;;;;;;;;;;;;;;:36;;;;19870:7;19854:32;;19863:5;19854:32;;;19879:6;19854:32;;;;;;;;;;;;;;;;;;19548:346;;;:::o;17213:1146::-;17337:1;17319:20;;:6;:20;;;;17311:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17421:1;17400:23;;:9;:23;;;;17392:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17488:9;;;;;;;;;;;17484:111;;;17518:21;17532:6;17518:13;:21::i;:::-;17514:70;;;12:1:-1;9;2:12;17514:70:0;17484:111;17619:8;;;;;;;;;;;17615:142;;;17657:7;17648:6;:16;:37;;;;;17678:7;;;;;;;;;;;17668:17;;:6;:17;;;;17648:37;17644:102;;;17706:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17644:102;17615:142;17777:20;17800:22;17815:6;17800:14;:22::i;:::-;17777:45;;17849:7;;;;;;;;;;;17839:17;;:6;:17;;;17835:80;;;17888:15;17899:3;17888:6;:10;;:15;;;;:::i;:::-;17873:30;;17835:80;17935:24;17962;17973:12;17962:6;:10;;:24;;;;:::i;:::-;17935:51;;18007:47;18028:6;18036:9;18047:6;18007:20;:47::i;:::-;18075:27;18081:6;18089:12;18075:5;:27::i;:::-;18133:81;18155:16;18133:81;;;;;;;;;;;;;;;;;:9;:17;18143:6;18133:17;;;;;;;;;;;;;;;;:21;;:81;;;;;:::i;:::-;18113:9;:17;18123:6;18113:17;;;;;;;;;;;;;;;:101;;;;18248:42;18273:16;18248:9;:20;18258:9;18248:20;;;;;;;;;;;;;;;;:24;;:42;;;;:::i;:::-;18225:9;:20;18235:9;18225:20;;;;;;;;;;;;;;;:65;;;;18323:9;18306:45;;18315:6;18306:45;;;18334:16;18306:45;;;;;;;;;;;;;;;;;;17213:1146;;;;;:::o;4571:192::-;4657:7;4690:1;4685;:6;;4693:12;4677:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4677:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4717:9;4733:1;4729;:5;4717:17;;4754:1;4747:8;;;4571:192;;;;;:::o;3668:181::-;3726:7;3746:9;3762:1;3758;:5;3746:17;;3787:1;3782;:6;;3774:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3840:1;3833:8;;;3668:181;;;;:::o;8133:171::-;8192:7;8212:9;8224:8;8228:1;8230;8224:3;:8::i;:::-;8212:20;;8243:9;8255:8;8259:1;8261;8255:3;:8::i;:::-;8243:20;;8281:15;8285:8;8289:1;8291;8285:3;:8::i;:::-;8294:1;8281:3;:15::i;:::-;8274:22;;;;8133:171;;;;:::o;5969:132::-;6027:7;6054:39;6058:1;6061;6054:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6047:46;;5969:132;;;;:::o;12427:101::-;12484:4;12508:9;:12;12518:1;12508:12;;;;;;;;;;;;;;;;;;;;;;;;;12501:19;;12427:101;;;:::o;4132:136::-;4190:7;4217:43;4221:1;4224;4217:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4210:50;;4132:136;;;;:::o;21085:92::-;;;;:::o;18692:418::-;18795:1;18776:21;;:7;:21;;;;18768:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18848:49;18869:7;18886:1;18890:6;18848:20;:49::i;:::-;18931:68;18954:6;18931:68;;;;;;;;;;;;;;;;;:9;:18;18941:7;18931:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;18910:9;:18;18920:7;18910:18;;;;;;;;;;;;;;;:89;;;;19025:24;19042:6;19025:12;;:16;;:24;;;;:::i;:::-;19010:12;:39;;;;19091:1;19065:37;;19074:7;19065:37;;;19095:6;19065:37;;;;;;;;;;;;;;;;;;18692:418;;:::o;5022:471::-;5080:7;5330:1;5325;:6;5321:47;;;5355:1;5348:8;;;;5321:47;5380:9;5396:1;5392;:5;5380:17;;5425:1;5420;5416;:5;;;;;;:10;5408:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5484:1;5477:8;;;5022:471;;;;;:::o;6597:278::-;6683:7;6715:1;6711;:5;6718:12;6703:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6703:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6742:9;6758:1;6754;:5;;;;;;6742:17;;6866:1;6859:8;;;6597:278;;;;;:::o

Swarm Source

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