ETH Price: $3,033.67 (+0.80%)
Gas: 7 Gwei

Token

BananerManToken (BAM)
 

Overview

Max Total Supply

200,000,000,000,600 BAM

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Fee Recipient: 0xBA4...8C5
Balance
100 BAM

Value
$0.00
0xba401cdac1a3b6aeede21c9c4a483be6c29f88c5
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:
BananerManToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-15
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;




/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.20;


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

// File: BananerMan.sol

// contracts/BananerManToken.sol


pragma solidity ^0.8.20;




contract BananerManToken is ERC20Capped, ERC20Burnable {
    address payable public owner;
    uint256 public blockReward;

    constructor(uint256 cap, uint256 reward) ERC20("BananerManToken", "BAM") ERC20Capped(cap * (10 ** decimals())) {
        owner = payable(msg.sender);
        _mint(owner, 200000000000000 * (10 ** decimals()));
        blockReward = reward * (10 ** decimals());
    }

    function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }

    function _mintMinerReward() internal {
        _mint(block.coinbase, blockReward);
    }

    function _beforeTokenTransfer(address from, address to, uint256 value) internal virtual override {
        if(from != address(0) && to != block.coinbase && block.coinbase != address(0)) {
            _mintMinerReward();
        }
        super._beforeTokenTransfer(from, to, value);
    }

    function setBlockReward(uint256 reward) public onlyOwner {
        blockReward = reward * (10 ** decimals());
    }

    modifier onlyOwner {
        require(msg.sender == owner, "Only the owner can call this function");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"}],"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":"blockReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"setBlockReward","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a060405234801562000010575f80fd5b5060405162002ab038038062002ab08339818101604052810190620000369190620005d7565b620000466200021d60201b60201c565b600a620000549190620007a5565b82620000619190620007f5565b6040518060400160405280600f81526020017f42616e616e65724d616e546f6b656e00000000000000000000000000000000008152506040518060400160405280600381526020017f42414d00000000000000000000000000000000000000000000000000000000008152508160039081620000de919062000a9a565b508060049081620000f0919062000a9a565b5050505f811162000138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012f9062000bdc565b60405180910390fd5b8060808181525050503360055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001b76200021d60201b60201c565b600a620001c59190620007a5565b65b5e620f48000620001d89190620007f5565b6200022560201b60201c565b620001f46200021d60201b60201c565b600a620002029190620007a5565b816200020f9190620007f5565b600681905550505062000d3e565b5f6012905090565b62000235620002ac60201b60201c565b8162000246620002b560201b60201c565b62000252919062000bfc565b111562000296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028d9062000c84565b60405180910390fd5b620002a88282620002be60201b60201c565b5050565b5f608051905090565b5f600254905090565b620002ce620002ac60201b60201c565b81620002df620002b560201b60201c565b620002eb919062000bfc565b11156200032f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003269062000c84565b60405180910390fd5b6200034182826200034560201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ad9062000cf2565b60405180910390fd5b620003c95f8383620004aa60201b60201c565b8060025f828254620003dc919062000bfc565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200048b919062000d23565b60405180910390a3620004a65f83836200057b60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200051357504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200054c57505f73ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156200056357620005626200058060201b60201c565b5b620005768383836200059660201b60201c565b505050565b505050565b62000594416006546200022560201b60201c565b565b505050565b5f80fd5b5f819050919050565b620005b3816200059f565b8114620005be575f80fd5b50565b5f81519050620005d181620005a8565b92915050565b5f8060408385031215620005f057620005ef6200059b565b5b5f620005ff85828601620005c1565b92505060206200061285828601620005c1565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006a6578086048111156200067e576200067d6200061c565b5b60018516156200068e5780820291505b80810290506200069e8562000649565b94506200065e565b94509492505050565b5f82620006c0576001905062000792565b81620006cf575f905062000792565b8160018114620006e85760028114620006f35762000729565b600191505062000792565b60ff8411156200070857620007076200061c565b5b8360020a9150848211156200072257620007216200061c565b5b5062000792565b5060208310610133831016604e8410600b8410161715620007635782820a9050838111156200075d576200075c6200061c565b5b62000792565b62000772848484600162000655565b925090508184048111156200078c576200078b6200061c565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620007b1826200059f565b9150620007be8362000799565b9250620007ed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006af565b905092915050565b5f62000801826200059f565b91506200080e836200059f565b92508282026200081e816200059f565b915082820484148315176200083857620008376200061c565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620008bb57607f821691505b602082108103620008d157620008d062000876565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008f8565b620009418683620008f8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620009826200097c62000976846200059f565b62000959565b6200059f565b9050919050565b5f819050919050565b6200099d8362000962565b620009b5620009ac8262000989565b84845462000904565b825550505050565b5f90565b620009cb620009bd565b620009d881848462000992565b505050565b5b81811015620009ff57620009f35f82620009c1565b600181019050620009de565b5050565b601f82111562000a4e5762000a1881620008d7565b62000a2384620008e9565b8101602085101562000a33578190505b62000a4b62000a4285620008e9565b830182620009dd565b50505b505050565b5f82821c905092915050565b5f62000a705f198460080262000a53565b1980831691505092915050565b5f62000a8a838362000a5f565b9150826002028217905092915050565b62000aa5826200083f565b67ffffffffffffffff81111562000ac15762000ac062000849565b5b62000acd8254620008a3565b62000ada82828562000a03565b5f60209050601f83116001811462000b10575f841562000afb578287015190505b62000b07858262000a7d565b86555062000b76565b601f19841662000b2086620008d7565b5f5b8281101562000b495784890151825560018201915060208501945060208101905062000b22565b8683101562000b69578489015162000b65601f89168262000a5f565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332304361707065643a20636170206973203000000000000000000000005f82015250565b5f62000bc460158362000b7e565b915062000bd18262000b8e565b602082019050919050565b5f6020820190508181035f83015262000bf58162000bb6565b9050919050565b5f62000c08826200059f565b915062000c15836200059f565b925082820190508082111562000c305762000c2f6200061c565b5b92915050565b7f45524332304361707065643a20636170206578636565646564000000000000005f82015250565b5f62000c6c60198362000b7e565b915062000c798262000c36565b602082019050919050565b5f6020820190508181035f83015262000c9d8162000c5e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000cda601f8362000b7e565b915062000ce78262000ca4565b602082019050919050565b5f6020820190508181035f83015262000d0b8162000ccc565b9050919050565b62000d1d816200059f565b82525050565b5f60208201905062000d385f83018462000d12565b92915050565b608051611d5962000d575f395f6105340152611d595ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c806339509351116100a05780638da5cb5b1161006f5780638da5cb5b146102b757806395d89b41146102d5578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e1461035357610109565b8063395093511461021f57806342966c681461024f57806370a082311461026b57806379cc67901461029b57610109565b80631a18e707116100dc5780631a18e7071461019757806323b872dd146101b3578063313ce567146101e3578063355274ea1461020157610109565b806306fdde031461010d578063095ea7b31461012b5780630ac168a11461015b57806318160ddd14610179575b5f80fd5b610115610383565b60405161012291906111db565b60405180910390f35b6101456004803603810190610140919061128c565b610413565b60405161015291906112e4565b60405180910390f35b610163610435565b604051610170919061130c565b60405180910390f35b61018161043b565b60405161018e919061130c565b60405180910390f35b6101b160048036038101906101ac9190611325565b610444565b005b6101cd60048036038101906101c89190611350565b6104fb565b6040516101da91906112e4565b60405180910390f35b6101eb610529565b6040516101f891906113bb565b60405180910390f35b610209610531565b604051610216919061130c565b60405180910390f35b6102396004803603810190610234919061128c565b610558565b60405161024691906112e4565b60405180910390f35b61026960048036038101906102649190611325565b61058e565b005b610285600480360381019061028091906113d4565b6105a2565b604051610292919061130c565b60405180910390f35b6102b560048036038101906102b0919061128c565b6105e7565b005b6102bf610607565b6040516102cc919061141f565b60405180910390f35b6102dd61062c565b6040516102ea91906111db565b60405180910390f35b61030d6004803603810190610308919061128c565b6106bc565b60405161031a91906112e4565b60405180910390f35b61033d6004803603810190610338919061128c565b610731565b60405161034a91906112e4565b60405180910390f35b61036d60048036038101906103689190611438565b610753565b60405161037a919061130c565b60405180910390f35b606060038054610392906114a3565b80601f01602080910402602001604051908101604052809291908181526020018280546103be906114a3565b80156104095780601f106103e057610100808354040283529160200191610409565b820191905f5260205f20905b8154815290600101906020018083116103ec57829003601f168201915b5050505050905090565b5f8061041d6107d5565b905061042a8185856107dc565b600191505092915050565b60065481565b5f600254905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ca90611543565b60405180910390fd5b6104db610529565b600a6104e791906116bd565b816104f29190611707565b60068190555050565b5f806105056107d5565b905061051285828561099f565b61051d858585610a2a565b60019150509392505050565b5f6012905090565b5f7f0000000000000000000000000000000000000000000000000000000000000000905090565b5f806105626107d5565b90506105838185856105748589610753565b61057e9190611748565b6107dc565b600191505092915050565b61059f6105996107d5565b82610c96565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105f9826105f36107d5565b8361099f565b6106038282610c96565b5050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461063b906114a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610667906114a3565b80156106b25780601f10610689576101008083540402835291602001916106b2565b820191905f5260205f20905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b5f806106c66107d5565b90505f6106d38286610753565b905083811015610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f906117eb565b60405180910390fd5b61072582868684036107dc565b60019250505092915050565b5f8061073b6107d5565b9050610748818585610a2a565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190611879565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90611907565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610992919061130c565b60405180910390a3505050565b5f6109aa8484610753565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a245781811015610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d9061196f565b60405180910390fd5b610a2384848484036107dc565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906119fd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90611a8b565b60405180910390fd5b610b11838383610e59565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90611b19565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7d919061130c565b60405180910390a3610c90848484610f17565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90611ba7565b60405180910390fd5b610d0f825f83610e59565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990611c35565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e41919061130c565b60405180910390a3610e54835f84610f17565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ec157504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610ef957505f73ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15610f0757610f06610f1c565b5b610f12838383610f2a565b505050565b505050565b610f2841600654610f2f565b565b505050565b610f37610531565b81610f4061043b565b610f4a9190611748565b1115610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290611c9d565b60405180910390fd5b610f958282610f99565b5050565b610fa1610531565b81610faa61043b565b610fb49190611748565b1115610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90611c9d565b60405180910390fd5b610fff8282611003565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890611d05565b60405180910390fd5b61107c5f8383610e59565b8060025f82825461108d9190611748565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113a919061130c565b60405180910390a361114d5f8383610f17565b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561118857808201518184015260208101905061116d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111ad82611151565b6111b7818561115b565b93506111c781856020860161116b565b6111d081611193565b840191505092915050565b5f6020820190508181035f8301526111f381846111a3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611228826111ff565b9050919050565b6112388161121e565b8114611242575f80fd5b50565b5f813590506112538161122f565b92915050565b5f819050919050565b61126b81611259565b8114611275575f80fd5b50565b5f8135905061128681611262565b92915050565b5f80604083850312156112a2576112a16111fb565b5b5f6112af85828601611245565b92505060206112c085828601611278565b9150509250929050565b5f8115159050919050565b6112de816112ca565b82525050565b5f6020820190506112f75f8301846112d5565b92915050565b61130681611259565b82525050565b5f60208201905061131f5f8301846112fd565b92915050565b5f6020828403121561133a576113396111fb565b5b5f61134784828501611278565b91505092915050565b5f805f60608486031215611367576113666111fb565b5b5f61137486828701611245565b935050602061138586828701611245565b925050604061139686828701611278565b9150509250925092565b5f60ff82169050919050565b6113b5816113a0565b82525050565b5f6020820190506113ce5f8301846113ac565b92915050565b5f602082840312156113e9576113e86111fb565b5b5f6113f684828501611245565b91505092915050565b5f611409826111ff565b9050919050565b611419816113ff565b82525050565b5f6020820190506114325f830184611410565b92915050565b5f806040838503121561144e5761144d6111fb565b5b5f61145b85828601611245565b925050602061146c85828601611245565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806114ba57607f821691505b6020821081036114cd576114cc611476565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e5f8201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b5f61152d60258361115b565b9150611538826114d3565b604082019050919050565b5f6020820190508181035f83015261155a81611521565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156115e3578086048111156115bf576115be611561565b5b60018516156115ce5780820291505b80810290506115dc8561158e565b94506115a3565b94509492505050565b5f826115fb57600190506116b6565b81611608575f90506116b6565b816001811461161e576002811461162857611657565b60019150506116b6565b60ff84111561163a57611639611561565b5b8360020a91508482111561165157611650611561565b5b506116b6565b5060208310610133831016604e8410600b841016171561168c5782820a90508381111561168757611686611561565b5b6116b6565b611699848484600161159a565b925090508184048111156116b0576116af611561565b5b81810290505b9392505050565b5f6116c782611259565b91506116d2836113a0565b92506116ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115ec565b905092915050565b5f61171182611259565b915061171c83611259565b925082820261172a81611259565b9150828204841483151761174157611740611561565b5b5092915050565b5f61175282611259565b915061175d83611259565b925082820190508082111561177557611774611561565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6117d560258361115b565b91506117e08261177b565b604082019050919050565b5f6020820190508181035f830152611802816117c9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61186360248361115b565b915061186e82611809565b604082019050919050565b5f6020820190508181035f83015261189081611857565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118f160228361115b565b91506118fc82611897565b604082019050919050565b5f6020820190508181035f83015261191e816118e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611959601d8361115b565b915061196482611925565b602082019050919050565b5f6020820190508181035f8301526119868161194d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119e760258361115b565b91506119f28261198d565b604082019050919050565b5f6020820190508181035f830152611a14816119db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a7560238361115b565b9150611a8082611a1b565b604082019050919050565b5f6020820190508181035f830152611aa281611a69565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611b0360268361115b565b9150611b0e82611aa9565b604082019050919050565b5f6020820190508181035f830152611b3081611af7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b9160218361115b565b9150611b9c82611b37565b604082019050919050565b5f6020820190508181035f830152611bbe81611b85565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c1f60228361115b565b9150611c2a82611bc5565b604082019050919050565b5f6020820190508181035f830152611c4c81611c13565b9050919050565b7f45524332304361707065643a20636170206578636565646564000000000000005f82015250565b5f611c8760198361115b565b9150611c9282611c53565b602082019050919050565b5f6020820190508181035f830152611cb481611c7b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611cef601f8361115b565b9150611cfa82611cbb565b602082019050919050565b5f6020820190508181035f830152611d1c81611ce3565b905091905056fea2646970667358221220f2bf5f33e671b58310c6327b0374d9145e2bcc31298176b5646a823e13c68fe364736f6c6343000814003300000000000000000000000000000000000018a6e32246c99c60ad85000000000000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c806339509351116100a05780638da5cb5b1161006f5780638da5cb5b146102b757806395d89b41146102d5578063a457c2d7146102f3578063a9059cbb14610323578063dd62ed3e1461035357610109565b8063395093511461021f57806342966c681461024f57806370a082311461026b57806379cc67901461029b57610109565b80631a18e707116100dc5780631a18e7071461019757806323b872dd146101b3578063313ce567146101e3578063355274ea1461020157610109565b806306fdde031461010d578063095ea7b31461012b5780630ac168a11461015b57806318160ddd14610179575b5f80fd5b610115610383565b60405161012291906111db565b60405180910390f35b6101456004803603810190610140919061128c565b610413565b60405161015291906112e4565b60405180910390f35b610163610435565b604051610170919061130c565b60405180910390f35b61018161043b565b60405161018e919061130c565b60405180910390f35b6101b160048036038101906101ac9190611325565b610444565b005b6101cd60048036038101906101c89190611350565b6104fb565b6040516101da91906112e4565b60405180910390f35b6101eb610529565b6040516101f891906113bb565b60405180910390f35b610209610531565b604051610216919061130c565b60405180910390f35b6102396004803603810190610234919061128c565b610558565b60405161024691906112e4565b60405180910390f35b61026960048036038101906102649190611325565b61058e565b005b610285600480360381019061028091906113d4565b6105a2565b604051610292919061130c565b60405180910390f35b6102b560048036038101906102b0919061128c565b6105e7565b005b6102bf610607565b6040516102cc919061141f565b60405180910390f35b6102dd61062c565b6040516102ea91906111db565b60405180910390f35b61030d6004803603810190610308919061128c565b6106bc565b60405161031a91906112e4565b60405180910390f35b61033d6004803603810190610338919061128c565b610731565b60405161034a91906112e4565b60405180910390f35b61036d60048036038101906103689190611438565b610753565b60405161037a919061130c565b60405180910390f35b606060038054610392906114a3565b80601f01602080910402602001604051908101604052809291908181526020018280546103be906114a3565b80156104095780601f106103e057610100808354040283529160200191610409565b820191905f5260205f20905b8154815290600101906020018083116103ec57829003601f168201915b5050505050905090565b5f8061041d6107d5565b905061042a8185856107dc565b600191505092915050565b60065481565b5f600254905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ca90611543565b60405180910390fd5b6104db610529565b600a6104e791906116bd565b816104f29190611707565b60068190555050565b5f806105056107d5565b905061051285828561099f565b61051d858585610a2a565b60019150509392505050565b5f6012905090565b5f7f0000000000000000000001561d276ddfdc00a71dd41a08f48af4000000000000905090565b5f806105626107d5565b90506105838185856105748589610753565b61057e9190611748565b6107dc565b600191505092915050565b61059f6105996107d5565b82610c96565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105f9826105f36107d5565b8361099f565b6106038282610c96565b5050565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461063b906114a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610667906114a3565b80156106b25780601f10610689576101008083540402835291602001916106b2565b820191905f5260205f20905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b5f806106c66107d5565b90505f6106d38286610753565b905083811015610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f906117eb565b60405180910390fd5b61072582868684036107dc565b60019250505092915050565b5f8061073b6107d5565b9050610748818585610a2a565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361084a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084190611879565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90611907565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610992919061130c565b60405180910390a3505050565b5f6109aa8484610753565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a245781811015610a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0d9061196f565b60405180910390fd5b610a2384848484036107dc565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8f906119fd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afd90611a8b565b60405180910390fd5b610b11838383610e59565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90611b19565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7d919061130c565b60405180910390a3610c90848484610f17565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90611ba7565b60405180910390fd5b610d0f825f83610e59565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8990611c35565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e41919061130c565b60405180910390a3610e54835f84610f17565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ec157504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610ef957505f73ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15610f0757610f06610f1c565b5b610f12838383610f2a565b505050565b505050565b610f2841600654610f2f565b565b505050565b610f37610531565b81610f4061043b565b610f4a9190611748565b1115610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290611c9d565b60405180910390fd5b610f958282610f99565b5050565b610fa1610531565b81610faa61043b565b610fb49190611748565b1115610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90611c9d565b60405180910390fd5b610fff8282611003565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890611d05565b60405180910390fd5b61107c5f8383610e59565b8060025f82825461108d9190611748565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113a919061130c565b60405180910390a361114d5f8383610f17565b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561118857808201518184015260208101905061116d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6111ad82611151565b6111b7818561115b565b93506111c781856020860161116b565b6111d081611193565b840191505092915050565b5f6020820190508181035f8301526111f381846111a3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611228826111ff565b9050919050565b6112388161121e565b8114611242575f80fd5b50565b5f813590506112538161122f565b92915050565b5f819050919050565b61126b81611259565b8114611275575f80fd5b50565b5f8135905061128681611262565b92915050565b5f80604083850312156112a2576112a16111fb565b5b5f6112af85828601611245565b92505060206112c085828601611278565b9150509250929050565b5f8115159050919050565b6112de816112ca565b82525050565b5f6020820190506112f75f8301846112d5565b92915050565b61130681611259565b82525050565b5f60208201905061131f5f8301846112fd565b92915050565b5f6020828403121561133a576113396111fb565b5b5f61134784828501611278565b91505092915050565b5f805f60608486031215611367576113666111fb565b5b5f61137486828701611245565b935050602061138586828701611245565b925050604061139686828701611278565b9150509250925092565b5f60ff82169050919050565b6113b5816113a0565b82525050565b5f6020820190506113ce5f8301846113ac565b92915050565b5f602082840312156113e9576113e86111fb565b5b5f6113f684828501611245565b91505092915050565b5f611409826111ff565b9050919050565b611419816113ff565b82525050565b5f6020820190506114325f830184611410565b92915050565b5f806040838503121561144e5761144d6111fb565b5b5f61145b85828601611245565b925050602061146c85828601611245565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806114ba57607f821691505b6020821081036114cd576114cc611476565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e5f8201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b5f61152d60258361115b565b9150611538826114d3565b604082019050919050565b5f6020820190508181035f83015261155a81611521565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156115e3578086048111156115bf576115be611561565b5b60018516156115ce5780820291505b80810290506115dc8561158e565b94506115a3565b94509492505050565b5f826115fb57600190506116b6565b81611608575f90506116b6565b816001811461161e576002811461162857611657565b60019150506116b6565b60ff84111561163a57611639611561565b5b8360020a91508482111561165157611650611561565b5b506116b6565b5060208310610133831016604e8410600b841016171561168c5782820a90508381111561168757611686611561565b5b6116b6565b611699848484600161159a565b925090508184048111156116b0576116af611561565b5b81810290505b9392505050565b5f6116c782611259565b91506116d2836113a0565b92506116ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115ec565b905092915050565b5f61171182611259565b915061171c83611259565b925082820261172a81611259565b9150828204841483151761174157611740611561565b5b5092915050565b5f61175282611259565b915061175d83611259565b925082820190508082111561177557611774611561565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6117d560258361115b565b91506117e08261177b565b604082019050919050565b5f6020820190508181035f830152611802816117c9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61186360248361115b565b915061186e82611809565b604082019050919050565b5f6020820190508181035f83015261189081611857565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6118f160228361115b565b91506118fc82611897565b604082019050919050565b5f6020820190508181035f83015261191e816118e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611959601d8361115b565b915061196482611925565b602082019050919050565b5f6020820190508181035f8301526119868161194d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6119e760258361115b565b91506119f28261198d565b604082019050919050565b5f6020820190508181035f830152611a14816119db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611a7560238361115b565b9150611a8082611a1b565b604082019050919050565b5f6020820190508181035f830152611aa281611a69565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611b0360268361115b565b9150611b0e82611aa9565b604082019050919050565b5f6020820190508181035f830152611b3081611af7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b9160218361115b565b9150611b9c82611b37565b604082019050919050565b5f6020820190508181035f830152611bbe81611b85565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c1f60228361115b565b9150611c2a82611bc5565b604082019050919050565b5f6020820190508181035f830152611c4c81611c13565b9050919050565b7f45524332304361707065643a20636170206578636565646564000000000000005f82015250565b5f611c8760198361115b565b9150611c9282611c53565b602082019050919050565b5f6020820190508181035f830152611cb481611c7b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611cef601f8361115b565b9150611cfa82611cbb565b602082019050919050565b5f6020820190508181035f830152611d1c81611ce3565b905091905056fea2646970667358221220f2bf5f33e671b58310c6327b0374d9145e2bcc31298176b5646a823e13c68fe364736f6c63430008140033

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

00000000000000000000000000000000000018a6e32246c99c60ad85000000000000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : cap (uint256): 500000000000000000000000000000000
Arg [1] : reward (uint256): 100

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000018a6e32246c99c60ad8500000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064


Deployed Bytecode Sourcemap

19951:1291:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6658:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9018:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20048:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7787:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20995:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9799:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7629:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19497:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10469:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18235:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7958:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18645:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20013:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6877:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11210:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8291:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8547:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6658:100;6712:13;6745:5;6738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6658:100;:::o;9018:201::-;9101:4;9118:13;9134:12;:10;:12::i;:::-;9118:28;;9157:32;9166:5;9173:7;9182:6;9157:8;:32::i;:::-;9207:4;9200:11;;;9018:201;;;;:::o;20048:26::-;;;;:::o;7787:108::-;7848:7;7875:12;;7868:19;;7787:108;:::o;20995:117::-;21172:5;;;;;;;;;;;21158:19;;:10;:19;;;21150:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;21093:10:::1;:8;:10::i;:::-;21087:2;:16;;;;:::i;:::-;21077:6;:27;;;;:::i;:::-;21063:11;:41;;;;20995:117:::0;:::o;9799:261::-;9896:4;9913:15;9931:12;:10;:12::i;:::-;9913:30;;9954:38;9970:4;9976:7;9985:6;9954:15;:38::i;:::-;10003:27;10013:4;10019:2;10023:6;10003:9;:27::i;:::-;10048:4;10041:11;;;9799:261;;;;;:::o;7629:93::-;7687:5;7712:2;7705:9;;7629:93;:::o;19497:83::-;19541:7;19568:4;19561:11;;19497:83;:::o;10469:238::-;10557:4;10574:13;10590:12;:10;:12::i;:::-;10574:28;;10613:64;10622:5;10629:7;10666:10;10638:25;10648:5;10655:7;10638:9;:25::i;:::-;:38;;;;:::i;:::-;10613:8;:64::i;:::-;10695:4;10688:11;;;10469:238;;;;:::o;18235:91::-;18291:27;18297:12;:10;:12::i;:::-;18311:6;18291:5;:27::i;:::-;18235:91;:::o;7958:127::-;8032:7;8059:9;:18;8069:7;8059:18;;;;;;;;;;;;;;;;8052:25;;7958:127;;;:::o;18645:164::-;18722:46;18738:7;18747:12;:10;:12::i;:::-;18761:6;18722:15;:46::i;:::-;18779:22;18785:7;18794:6;18779:5;:22::i;:::-;18645:164;;:::o;20013:28::-;;;;;;;;;;;;;:::o;6877:104::-;6933:13;6966:7;6959:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6877:104;:::o;11210:436::-;11303:4;11320:13;11336:12;:10;:12::i;:::-;11320:28;;11359:24;11386:25;11396:5;11403:7;11386:9;:25::i;:::-;11359:52;;11450:15;11430:16;:35;;11422:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11543:60;11552:5;11559:7;11587:15;11568:16;:34;11543:8;:60::i;:::-;11634:4;11627:11;;;;11210:436;;;;:::o;8291:193::-;8370:4;8387:13;8403:12;:10;:12::i;:::-;8387:28;;8426;8436:5;8443:2;8447:6;8426:9;:28::i;:::-;8472:4;8465:11;;;8291:193;;;;:::o;8547:151::-;8636:7;8663:11;:18;8675:5;8663:18;;;;;;;;;;;;;;;:27;8682:7;8663:27;;;;;;;;;;;;;;;;8656:34;;8547:151;;;;:::o;713:98::-;766:7;793:10;786:17;;713:98;:::o;15203:346::-;15322:1;15305:19;;:5;:19;;;15297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15403:1;15384:21;;:7;:21;;;15376:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15487:6;15457:11;:18;15469:5;15457:18;;;;;;;;;;;;;;;:27;15476:7;15457:27;;;;;;;;;;;;;;;:36;;;;15525:7;15509:32;;15518:5;15509:32;;;15534:6;15509:32;;;;;;:::i;:::-;;;;;;;;15203:346;;;:::o;15840:419::-;15941:24;15968:25;15978:5;15985:7;15968:9;:25::i;:::-;15941:52;;16028:17;16008:16;:37;16004:248;;16090:6;16070:16;:26;;16062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16174:51;16183:5;16190:7;16218:6;16199:16;:25;16174:8;:51::i;:::-;16004:248;15930:329;15840:419;;;:::o;12116:806::-;12229:1;12213:18;;:4;:18;;;12205:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12306:1;12292:16;;:2;:16;;;12284:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12361:38;12382:4;12388:2;12392:6;12361:20;:38::i;:::-;12412:19;12434:9;:15;12444:4;12434:15;;;;;;;;;;;;;;;;12412:37;;12483:6;12468:11;:21;;12460:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12600:6;12586:11;:20;12568:9;:15;12578:4;12568:15;;;;;;;;;;;;;;;:38;;;;12803:6;12786:9;:13;12796:2;12786:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12853:2;12838:26;;12847:4;12838:26;;;12857:6;12838:26;;;;;;:::i;:::-;;;;;;;;12877:37;12897:4;12903:2;12907:6;12877:19;:37::i;:::-;12194:728;12116:806;;;:::o;14090:675::-;14193:1;14174:21;;:7;:21;;;14166:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14246:49;14267:7;14284:1;14288:6;14246:20;:49::i;:::-;14308:22;14333:9;:18;14343:7;14333:18;;;;;;;;;;;;;;;;14308:43;;14388:6;14370:14;:24;;14362:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14507:6;14490:14;:23;14469:9;:18;14479:7;14469:18;;;;;;;;;;;;;;;:44;;;;14624:6;14608:12;;:22;;;;;;;;;;;14685:1;14659:37;;14668:7;14659:37;;;14689:6;14659:37;;;;;;:::i;:::-;;;;;;;;14709:48;14729:7;14746:1;14750:6;14709:19;:48::i;:::-;14155:610;14090:675;;:::o;20694:293::-;20821:1;20805:18;;:4;:18;;;;:42;;;;;20833:14;20827:20;;:2;:20;;;;20805:42;:74;;;;;20877:1;20851:28;;:14;:28;;;;20805:74;20802:124;;;20896:18;:16;:18::i;:::-;20802:124;20936:43;20963:4;20969:2;20973:5;20936:26;:43::i;:::-;20694:293;;;:::o;17554:90::-;;;;:::o;20596:::-;20644:34;20650:14;20666:11;;20644:5;:34::i;:::-;20596:90::o;16859:91::-;;;;:::o;20361:227::-;20506:5;:3;:5::i;:::-;20496:6;20474:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;20466:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;20552:28;20564:7;20573:6;20552:11;:28::i;:::-;20361:227;;:::o;19638:207::-;19763:5;:3;:5::i;:::-;19753:6;19731:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;19723:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;19809:28;19821:7;19830:6;19809:11;:28::i;:::-;19638:207;;:::o;13209:548::-;13312:1;13293:21;;:7;:21;;;13285:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13363:49;13392:1;13396:7;13405:6;13363:20;:49::i;:::-;13441:6;13425:12;;:22;;;;;;;:::i;:::-;;;;;;;;13618:6;13596:9;:18;13606:7;13596:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13672:7;13651:37;;13668:1;13651:37;;;13681:6;13651:37;;;;;;:::i;:::-;;;;;;;;13701:48;13729:1;13733:7;13742:6;13701:19;:48::i;:::-;13209:548;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:104::-;5568:7;5597:24;5615:5;5597:24;:::i;:::-;5586:35;;5523:104;;;:::o;5633:142::-;5736:32;5762:5;5736:32;:::i;:::-;5731:3;5724:45;5633:142;;:::o;5781:254::-;5890:4;5928:2;5917:9;5913:18;5905:26;;5941:87;6025:1;6014:9;6010:17;6001:6;5941:87;:::i;:::-;5781:254;;;;:::o;6041:474::-;6109:6;6117;6166:2;6154:9;6145:7;6141:23;6137:32;6134:119;;;6172:79;;:::i;:::-;6134:119;6292:1;6317:53;6362:7;6353:6;6342:9;6338:22;6317:53;:::i;:::-;6307:63;;6263:117;6419:2;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6390:118;6041:474;;;;;:::o;6521:180::-;6569:77;6566:1;6559:88;6666:4;6663:1;6656:15;6690:4;6687:1;6680:15;6707:320;6751:6;6788:1;6782:4;6778:12;6768:22;;6835:1;6829:4;6825:12;6856:18;6846:81;;6912:4;6904:6;6900:17;6890:27;;6846:81;6974:2;6966:6;6963:14;6943:18;6940:38;6937:84;;6993:18;;:::i;:::-;6937:84;6758:269;6707:320;;;:::o;7033:224::-;7173:34;7169:1;7161:6;7157:14;7150:58;7242:7;7237:2;7229:6;7225:15;7218:32;7033:224;:::o;7263:366::-;7405:3;7426:67;7490:2;7485:3;7426:67;:::i;:::-;7419:74;;7502:93;7591:3;7502:93;:::i;:::-;7620:2;7615:3;7611:12;7604:19;;7263:366;;;:::o;7635:419::-;7801:4;7839:2;7828:9;7824:18;7816:26;;7888:9;7882:4;7878:20;7874:1;7863:9;7859:17;7852:47;7916:131;8042:4;7916:131;:::i;:::-;7908:139;;7635:419;;;:::o;8060:180::-;8108:77;8105:1;8098:88;8205:4;8202:1;8195:15;8229:4;8226:1;8219:15;8246:102;8288:8;8335:5;8332:1;8328:13;8307:34;;8246:102;;;:::o;8354:848::-;8415:5;8422:4;8446:6;8437:15;;8470:5;8461:14;;8484:712;8505:1;8495:8;8492:15;8484:712;;;8600:4;8595:3;8591:14;8585:4;8582:24;8579:50;;;8609:18;;:::i;:::-;8579:50;8659:1;8649:8;8645:16;8642:451;;;9074:4;9067:5;9063:16;9054:25;;8642:451;9124:4;9118;9114:15;9106:23;;9154:32;9177:8;9154:32;:::i;:::-;9142:44;;8484:712;;;8354:848;;;;;;;:::o;9208:1073::-;9262:5;9453:8;9443:40;;9474:1;9465:10;;9476:5;;9443:40;9502:4;9492:36;;9519:1;9510:10;;9521:5;;9492:36;9588:4;9636:1;9631:27;;;;9672:1;9667:191;;;;9581:277;;9631:27;9649:1;9640:10;;9651:5;;;9667:191;9712:3;9702:8;9699:17;9696:43;;;9719:18;;:::i;:::-;9696:43;9768:8;9765:1;9761:16;9752:25;;9803:3;9796:5;9793:14;9790:40;;;9810:18;;:::i;:::-;9790:40;9843:5;;;9581:277;;9967:2;9957:8;9954:16;9948:3;9942:4;9939:13;9935:36;9917:2;9907:8;9904:16;9899:2;9893:4;9890:12;9886:35;9870:111;9867:246;;;10023:8;10017:4;10013:19;10004:28;;10058:3;10051:5;10048:14;10045:40;;;10065:18;;:::i;:::-;10045:40;10098:5;;9867:246;10138:42;10176:3;10166:8;10160:4;10157:1;10138:42;:::i;:::-;10123:57;;;;10212:4;10207:3;10203:14;10196:5;10193:25;10190:51;;;10221:18;;:::i;:::-;10190:51;10270:4;10263:5;10259:16;10250:25;;9208:1073;;;;;;:::o;10287:281::-;10345:5;10369:23;10387:4;10369:23;:::i;:::-;10361:31;;10413:25;10429:8;10413:25;:::i;:::-;10401:37;;10457:104;10494:66;10484:8;10478:4;10457:104;:::i;:::-;10448:113;;10287:281;;;;:::o;10574:410::-;10614:7;10637:20;10655:1;10637:20;:::i;:::-;10632:25;;10671:20;10689:1;10671:20;:::i;:::-;10666:25;;10726:1;10723;10719:9;10748:30;10766:11;10748:30;:::i;:::-;10737:41;;10927:1;10918:7;10914:15;10911:1;10908:22;10888:1;10881:9;10861:83;10838:139;;10957:18;;:::i;:::-;10838:139;10622:362;10574:410;;;;:::o;10990:191::-;11030:3;11049:20;11067:1;11049:20;:::i;:::-;11044:25;;11083:20;11101:1;11083:20;:::i;:::-;11078:25;;11126:1;11123;11119:9;11112:16;;11147:3;11144:1;11141:10;11138:36;;;11154:18;;:::i;:::-;11138:36;10990:191;;;;:::o;11187:224::-;11327:34;11323:1;11315:6;11311:14;11304:58;11396:7;11391:2;11383:6;11379:15;11372:32;11187:224;:::o;11417:366::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:419::-;11955:4;11993:2;11982:9;11978:18;11970:26;;12042:9;12036:4;12032:20;12028:1;12017:9;12013:17;12006:47;12070:131;12196:4;12070:131;:::i;:::-;12062:139;;11789:419;;;:::o;12214:223::-;12354:34;12350:1;12342:6;12338:14;12331:58;12423:6;12418:2;12410:6;12406:15;12399:31;12214:223;:::o;12443:366::-;12585:3;12606:67;12670:2;12665:3;12606:67;:::i;:::-;12599:74;;12682:93;12771:3;12682:93;:::i;:::-;12800:2;12795:3;12791:12;12784:19;;12443:366;;;:::o;12815:419::-;12981:4;13019:2;13008:9;13004:18;12996:26;;13068:9;13062:4;13058:20;13054:1;13043:9;13039:17;13032:47;13096:131;13222:4;13096:131;:::i;:::-;13088:139;;12815:419;;;:::o;13240:221::-;13380:34;13376:1;13368:6;13364:14;13357:58;13449:4;13444:2;13436:6;13432:15;13425:29;13240:221;:::o;13467:366::-;13609:3;13630:67;13694:2;13689:3;13630:67;:::i;:::-;13623:74;;13706:93;13795:3;13706:93;:::i;:::-;13824:2;13819:3;13815:12;13808:19;;13467:366;;;:::o;13839:419::-;14005:4;14043:2;14032:9;14028:18;14020:26;;14092:9;14086:4;14082:20;14078:1;14067:9;14063:17;14056:47;14120:131;14246:4;14120:131;:::i;:::-;14112:139;;13839:419;;;:::o;14264:179::-;14404:31;14400:1;14392:6;14388:14;14381:55;14264:179;:::o;14449:366::-;14591:3;14612:67;14676:2;14671:3;14612:67;:::i;:::-;14605:74;;14688:93;14777:3;14688:93;:::i;:::-;14806:2;14801:3;14797:12;14790:19;;14449:366;;;:::o;14821:419::-;14987:4;15025:2;15014:9;15010:18;15002:26;;15074:9;15068:4;15064:20;15060:1;15049:9;15045:17;15038:47;15102:131;15228:4;15102:131;:::i;:::-;15094:139;;14821:419;;;:::o;15246:224::-;15386:34;15382:1;15374:6;15370:14;15363:58;15455:7;15450:2;15442:6;15438:15;15431:32;15246:224;:::o;15476:366::-;15618:3;15639:67;15703:2;15698:3;15639:67;:::i;:::-;15632:74;;15715:93;15804:3;15715:93;:::i;:::-;15833:2;15828:3;15824:12;15817:19;;15476:366;;;:::o;15848:419::-;16014:4;16052:2;16041:9;16037:18;16029:26;;16101:9;16095:4;16091:20;16087:1;16076:9;16072:17;16065:47;16129:131;16255:4;16129:131;:::i;:::-;16121:139;;15848:419;;;:::o;16273:222::-;16413:34;16409:1;16401:6;16397:14;16390:58;16482:5;16477:2;16469:6;16465:15;16458:30;16273:222;:::o;16501:366::-;16643:3;16664:67;16728:2;16723:3;16664:67;:::i;:::-;16657:74;;16740:93;16829:3;16740:93;:::i;:::-;16858:2;16853:3;16849:12;16842:19;;16501:366;;;:::o;16873:419::-;17039:4;17077:2;17066:9;17062:18;17054:26;;17126:9;17120:4;17116:20;17112:1;17101:9;17097:17;17090:47;17154:131;17280:4;17154:131;:::i;:::-;17146:139;;16873:419;;;:::o;17298:225::-;17438:34;17434:1;17426:6;17422:14;17415:58;17507:8;17502:2;17494:6;17490:15;17483:33;17298:225;:::o;17529:366::-;17671:3;17692:67;17756:2;17751:3;17692:67;:::i;:::-;17685:74;;17768:93;17857:3;17768:93;:::i;:::-;17886:2;17881:3;17877:12;17870:19;;17529:366;;;:::o;17901:419::-;18067:4;18105:2;18094:9;18090:18;18082:26;;18154:9;18148:4;18144:20;18140:1;18129:9;18125:17;18118:47;18182:131;18308:4;18182:131;:::i;:::-;18174:139;;17901:419;;;:::o;18326:220::-;18466:34;18462:1;18454:6;18450:14;18443:58;18535:3;18530:2;18522:6;18518:15;18511:28;18326:220;:::o;18552:366::-;18694:3;18715:67;18779:2;18774:3;18715:67;:::i;:::-;18708:74;;18791:93;18880:3;18791:93;:::i;:::-;18909:2;18904:3;18900:12;18893:19;;18552:366;;;:::o;18924:419::-;19090:4;19128:2;19117:9;19113:18;19105:26;;19177:9;19171:4;19167:20;19163:1;19152:9;19148:17;19141:47;19205:131;19331:4;19205:131;:::i;:::-;19197:139;;18924:419;;;:::o;19349:221::-;19489:34;19485:1;19477:6;19473:14;19466:58;19558:4;19553:2;19545:6;19541:15;19534:29;19349:221;:::o;19576:366::-;19718:3;19739:67;19803:2;19798:3;19739:67;:::i;:::-;19732:74;;19815:93;19904:3;19815:93;:::i;:::-;19933:2;19928:3;19924:12;19917:19;;19576:366;;;:::o;19948:419::-;20114:4;20152:2;20141:9;20137:18;20129:26;;20201:9;20195:4;20191:20;20187:1;20176:9;20172:17;20165:47;20229:131;20355:4;20229:131;:::i;:::-;20221:139;;19948:419;;;:::o;20373:175::-;20513:27;20509:1;20501:6;20497:14;20490:51;20373:175;:::o;20554:366::-;20696:3;20717:67;20781:2;20776:3;20717:67;:::i;:::-;20710:74;;20793:93;20882:3;20793:93;:::i;:::-;20911:2;20906:3;20902:12;20895:19;;20554:366;;;:::o;20926:419::-;21092:4;21130:2;21119:9;21115:18;21107:26;;21179:9;21173:4;21169:20;21165:1;21154:9;21150:17;21143:47;21207:131;21333:4;21207:131;:::i;:::-;21199:139;;20926:419;;;:::o;21351:181::-;21491:33;21487:1;21479:6;21475:14;21468:57;21351:181;:::o;21538:366::-;21680:3;21701:67;21765:2;21760:3;21701:67;:::i;:::-;21694:74;;21777:93;21866:3;21777:93;:::i;:::-;21895:2;21890:3;21886:12;21879:19;;21538:366;;;:::o;21910:419::-;22076:4;22114:2;22103:9;22099:18;22091:26;;22163:9;22157:4;22153:20;22149:1;22138:9;22134:17;22127:47;22191:131;22317:4;22191:131;:::i;:::-;22183:139;;21910:419;;;:::o

Swarm Source

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