ETH Price: $3,422.21 (+3.82%)

Token

BlackTensor (BTAI)
 

Overview

Max Total Supply

650,000,000 BTAI

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,062,597.934590787736344785 BTAI

Value
$0.00
0x2281cfb98345d52f216775912eaf2acf7efbf78a
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:
BlackTensor

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-01
*/

// File @openzeppelin/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.19;

/**
 * @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/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @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/utils/[email protected]


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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/[email protected]


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

pragma solidity ^0.8.0;



/**
 * @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/[email protected]


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

pragma solidity ^0.8.0;


/**
 * @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/[email protected]


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

pragma solidity ^0.8.0;

/**
 * @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 contracts/BlackTensor.sol

// contracts/BlackTensor.sol


pragma solidity ^0.8.19;
contract BlackTensor is ERC20Capped, ERC20Burnable {
    address payable public owner;
    uint256 public blockReward;

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


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

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


    }

    }

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"}]

60a06040523480156200001157600080fd5b5060405162002b9b38038062002b9b8339818101604052810190620000379190620005ea565b620000476200021f60201b60201c565b600a620000559190620007c1565b8262000062919062000812565b6040518060400160405280600b81526020017f426c61636b54656e736f720000000000000000000000000000000000000000008152506040518060400160405280600481526020017f42544149000000000000000000000000000000000000000000000000000000008152508160039081620000df919062000acd565b508060049081620000f1919062000acd565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000c15565b60405180910390fd5b80608081815250505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001e6600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001bb6200021f60201b60201c565b600a620001c99190620007c1565b6326be3680620001da919062000812565b6200022860201b60201c565b620001f66200021f60201b60201c565b600a620002049190620007c1565b8162000211919062000812565b600681905550505062000d84565b60006012905090565b62000238620002af60201b60201c565b8162000249620002b960201b60201c565b62000255919062000c37565b111562000299576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002909062000cc2565b60405180910390fd5b620002ab8282620002c360201b60201c565b5050565b6000608051905090565b6000600254905090565b620002d3620002af60201b60201c565b81620002e4620002b960201b60201c565b620002f0919062000c37565b111562000334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032b9062000cc2565b60405180910390fd5b6200034682826200034a60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b39062000d34565b60405180910390fd5b620003d060008383620004b760201b60201c565b8060026000828254620003e4919062000c37565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000497919062000d67565b60405180910390a3620004b3600083836200058a60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200052157504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156200055b5750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b156200057257620005716200058f60201b60201c565b5b62000585838383620005a560201b60201c565b505050565b505050565b620005a3416006546200022860201b60201c565b565b505050565b600080fd5b6000819050919050565b620005c481620005af565b8114620005d057600080fd5b50565b600081519050620005e481620005b9565b92915050565b60008060408385031215620006045762000603620005aa565b5b60006200061485828601620005d3565b92505060206200062785828601620005d3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006bf5780860481111562000697576200069662000631565b5b6001851615620006a75780820291505b8081029050620006b78562000660565b945062000677565b94509492505050565b600082620006da5760019050620007ad565b81620006ea5760009050620007ad565b81600181146200070357600281146200070e5762000744565b6001915050620007ad565b60ff84111562000723576200072262000631565b5b8360020a9150848211156200073d576200073c62000631565b5b50620007ad565b5060208310610133831016604e8410600b84101617156200077e5782820a90508381111562000778576200077762000631565b5b620007ad565b6200078d84848460016200066d565b92509050818404811115620007a757620007a662000631565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007ce82620005af565b9150620007db83620007b4565b92506200080a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006c8565b905092915050565b60006200081f82620005af565b91506200082c83620005af565b92508282026200083c81620005af565b9150828204841483151762000856576200085562000631565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008df57607f821691505b602082108103620008f557620008f462000897565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200095f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000920565b6200096b868362000920565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009ae620009a8620009a284620005af565b62000983565b620005af565b9050919050565b6000819050919050565b620009ca836200098d565b620009e2620009d982620009b5565b8484546200092d565b825550505050565b600090565b620009f9620009ea565b62000a06818484620009bf565b505050565b5b8181101562000a2e5762000a22600082620009ef565b60018101905062000a0c565b5050565b601f82111562000a7d5762000a4781620008fb565b62000a528462000910565b8101602085101562000a62578190505b62000a7a62000a718562000910565b83018262000a0b565b50505b505050565b600082821c905092915050565b600062000aa26000198460080262000a82565b1980831691505092915050565b600062000abd838362000a8f565b9150826002028217905092915050565b62000ad8826200085d565b67ffffffffffffffff81111562000af45762000af362000868565b5b62000b008254620008c6565b62000b0d82828562000a32565b600060209050601f83116001811462000b45576000841562000b30578287015190505b62000b3c858262000aaf565b86555062000bac565b601f19841662000b5586620008fb565b60005b8281101562000b7f5784890151825560018201915060208501945060208101905062000b58565b8683101562000b9f578489015162000b9b601f89168262000a8f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000bfd60158362000bb4565b915062000c0a8262000bc5565b602082019050919050565b6000602082019050818103600083015262000c308162000bee565b9050919050565b600062000c4482620005af565b915062000c5183620005af565b925082820190508082111562000c6c5762000c6b62000631565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000caa60198362000bb4565b915062000cb78262000c72565b602082019050919050565b6000602082019050818103600083015262000cdd8162000c9b565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d1c601f8362000bb4565b915062000d298262000ce4565b602082019050919050565b6000602082019050818103600083015262000d4f8162000d0d565b9050919050565b62000d6181620005af565b82525050565b600060208201905062000d7e600083018462000d56565b92915050565b608051611dfb62000da0600039600061053f0152611dfb6000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806339509351116100a25780638da5cb5b116100715780638da5cb5b146102ba57806395d89b41146102d8578063a457c2d7146102f6578063a9059cbb14610326578063dd62ed3e146103565761010b565b8063395093511461022257806342966c681461025257806370a082311461026e57806379cc67901461029e5761010b565b80631a18e707116100de5780631a18e7071461019a57806323b872dd146101b6578063313ce567146101e6578063355274ea146102045761010b565b806306fdde0314610110578063095ea7b31461012e5780630ac168a11461015e57806318160ddd1461017c575b600080fd5b610118610386565b6040516101259190611221565b60405180910390f35b610148600480360381019061014391906112dc565b610418565b6040516101559190611337565b60405180910390f35b61016661043b565b6040516101739190611361565b60405180910390f35b610184610441565b6040516101919190611361565b60405180910390f35b6101b460048036038101906101af919061137c565b61044b565b005b6101d060048036038101906101cb91906113a9565b610503565b6040516101dd9190611337565b60405180910390f35b6101ee610532565b6040516101fb9190611418565b60405180910390f35b61020c61053b565b6040516102199190611361565b60405180910390f35b61023c600480360381019061023791906112dc565b610563565b6040516102499190611337565b60405180910390f35b61026c6004803603810190610267919061137c565b61059a565b005b61028860048036038101906102839190611433565b6105ae565b6040516102959190611361565b60405180910390f35b6102b860048036038101906102b391906112dc565b6105f6565b005b6102c2610616565b6040516102cf9190611481565b60405180910390f35b6102e061063c565b6040516102ed9190611221565b60405180910390f35b610310600480360381019061030b91906112dc565b6106ce565b60405161031d9190611337565b60405180910390f35b610340600480360381019061033b91906112dc565b610745565b60405161034d9190611337565b60405180910390f35b610370600480360381019061036b919061149c565b610768565b60405161037d9190611361565b60405180910390f35b6060600380546103959061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546103c19061150b565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107ef565b90506104308185856107f7565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d2906115ae565b60405180910390fd5b6104e3610532565b600a6104ef9190611730565b816104fa919061177b565b60068190555050565b60008061050e6107ef565b905061051b8582856109c0565b610526858585610a4c565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60008061056e6107ef565b905061058f8185856105808589610768565b61058a91906117bd565b6107f7565b600191505092915050565b6105ab6105a56107ef565b82610cc2565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610608826106026107ef565b836109c0565b6106128282610cc2565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461064b9061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546106779061150b565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b6000806106d96107ef565b905060006106e78286610768565b90508381101561072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390611863565b60405180910390fd5b61073982868684036107f7565b60019250505092915050565b6000806107506107ef565b905061075d818585610a4c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d906118f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc90611987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109b39190611361565b60405180910390a3505050565b60006109cc8484610768565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a465781811015610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906119f3565b60405180910390fd5b610a4584848484036107f7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190611b17565b60405180910390fd5b610b35838383610e8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611ba9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca99190611361565b60405180910390a3610cbc848484610f4f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611c3b565b60405180910390fd5b610d3d82600083610e8f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90611ccd565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e769190611361565b60405180910390a3610e8a83600084610f4f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ef857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f315750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15610f3f57610f3e610f54565b5b610f4a838383610f62565b505050565b505050565b610f6041600654610f67565b565b505050565b610f6f61053b565b81610f78610441565b610f8291906117bd565b1115610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611d39565b60405180910390fd5b610fcd8282610fd1565b5050565b610fd961053b565b81610fe2610441565b610fec91906117bd565b111561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490611d39565b60405180910390fd5b611037828261103b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190611da5565b60405180910390fd5b6110b660008383610e8f565b80600260008282546110c891906117bd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111799190611361565b60405180910390a361118d60008383610f4f565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111cb5780820151818401526020810190506111b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006111f382611191565b6111fd818561119c565b935061120d8185602086016111ad565b611216816111d7565b840191505092915050565b6000602082019050818103600083015261123b81846111e8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061127382611248565b9050919050565b61128381611268565b811461128e57600080fd5b50565b6000813590506112a08161127a565b92915050565b6000819050919050565b6112b9816112a6565b81146112c457600080fd5b50565b6000813590506112d6816112b0565b92915050565b600080604083850312156112f3576112f2611243565b5b600061130185828601611291565b9250506020611312858286016112c7565b9150509250929050565b60008115159050919050565b6113318161131c565b82525050565b600060208201905061134c6000830184611328565b92915050565b61135b816112a6565b82525050565b60006020820190506113766000830184611352565b92915050565b60006020828403121561139257611391611243565b5b60006113a0848285016112c7565b91505092915050565b6000806000606084860312156113c2576113c1611243565b5b60006113d086828701611291565b93505060206113e186828701611291565b92505060406113f2868287016112c7565b9150509250925092565b600060ff82169050919050565b611412816113fc565b82525050565b600060208201905061142d6000830184611409565b92915050565b60006020828403121561144957611448611243565b5b600061145784828501611291565b91505092915050565b600061146b82611248565b9050919050565b61147b81611460565b82525050565b60006020820190506114966000830184611472565b92915050565b600080604083850312156114b3576114b2611243565b5b60006114c185828601611291565b92505060206114d285828601611291565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152357607f821691505b602082108103611536576115356114dc565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061159860258361119c565b91506115a38261153c565b604082019050919050565b600060208201905081810360008301526115c78161158b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115611654578086048111156116305761162f6115ce565b5b600185161561163f5780820291505b808102905061164d856115fd565b9450611614565b94509492505050565b60008261166d5760019050611729565b8161167b5760009050611729565b8160018114611691576002811461169b576116ca565b6001915050611729565b60ff8411156116ad576116ac6115ce565b5b8360020a9150848211156116c4576116c36115ce565b5b50611729565b5060208310610133831016604e8410600b84101617156116ff5782820a9050838111156116fa576116f96115ce565b5b611729565b61170c848484600161160a565b92509050818404811115611723576117226115ce565b5b81810290505b9392505050565b600061173b826112a6565b9150611746836113fc565b92506117737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461165d565b905092915050565b6000611786826112a6565b9150611791836112a6565b925082820261179f816112a6565b915082820484148315176117b6576117b56115ce565b5b5092915050565b60006117c8826112a6565b91506117d3836112a6565b92508282019050808211156117eb576117ea6115ce565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061184d60258361119c565b9150611858826117f1565b604082019050919050565b6000602082019050818103600083015261187c81611840565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118df60248361119c565b91506118ea82611883565b604082019050919050565b6000602082019050818103600083015261190e816118d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061197160228361119c565b915061197c82611915565b604082019050919050565b600060208201905081810360008301526119a081611964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119dd601d8361119c565b91506119e8826119a7565b602082019050919050565b60006020820190508181036000830152611a0c816119d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a6f60258361119c565b9150611a7a82611a13565b604082019050919050565b60006020820190508181036000830152611a9e81611a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b0160238361119c565b9150611b0c82611aa5565b604082019050919050565b60006020820190508181036000830152611b3081611af4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b9360268361119c565b9150611b9e82611b37565b604082019050919050565b60006020820190508181036000830152611bc281611b86565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c2560218361119c565b9150611c3082611bc9565b604082019050919050565b60006020820190508181036000830152611c5481611c18565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cb760228361119c565b9150611cc282611c5b565b604082019050919050565b60006020820190508181036000830152611ce681611caa565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611d2360198361119c565b9150611d2e82611ced565b602082019050919050565b60006020820190508181036000830152611d5281611d16565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d8f601f8361119c565b9150611d9a82611d59565b602082019050919050565b60006020820190508181036000830152611dbe81611d82565b905091905056fea2646970667358221220b1a75bcf40bcad3c9968d11ccdb6ff37f451f5762fa3a66f88bb1a26d3ee78a364736f6c63430008130033000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806339509351116100a25780638da5cb5b116100715780638da5cb5b146102ba57806395d89b41146102d8578063a457c2d7146102f6578063a9059cbb14610326578063dd62ed3e146103565761010b565b8063395093511461022257806342966c681461025257806370a082311461026e57806379cc67901461029e5761010b565b80631a18e707116100de5780631a18e7071461019a57806323b872dd146101b6578063313ce567146101e6578063355274ea146102045761010b565b806306fdde0314610110578063095ea7b31461012e5780630ac168a11461015e57806318160ddd1461017c575b600080fd5b610118610386565b6040516101259190611221565b60405180910390f35b610148600480360381019061014391906112dc565b610418565b6040516101559190611337565b60405180910390f35b61016661043b565b6040516101739190611361565b60405180910390f35b610184610441565b6040516101919190611361565b60405180910390f35b6101b460048036038101906101af919061137c565b61044b565b005b6101d060048036038101906101cb91906113a9565b610503565b6040516101dd9190611337565b60405180910390f35b6101ee610532565b6040516101fb9190611418565b60405180910390f35b61020c61053b565b6040516102199190611361565b60405180910390f35b61023c600480360381019061023791906112dc565b610563565b6040516102499190611337565b60405180910390f35b61026c6004803603810190610267919061137c565b61059a565b005b61028860048036038101906102839190611433565b6105ae565b6040516102959190611361565b60405180910390f35b6102b860048036038101906102b391906112dc565b6105f6565b005b6102c2610616565b6040516102cf9190611481565b60405180910390f35b6102e061063c565b6040516102ed9190611221565b60405180910390f35b610310600480360381019061030b91906112dc565b6106ce565b60405161031d9190611337565b60405180910390f35b610340600480360381019061033b91906112dc565b610745565b60405161034d9190611337565b60405180910390f35b610370600480360381019061036b919061149c565b610768565b60405161037d9190611361565b60405180910390f35b6060600380546103959061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546103c19061150b565b801561040e5780601f106103e35761010080835404028352916020019161040e565b820191906000526020600020905b8154815290600101906020018083116103f157829003601f168201915b5050505050905090565b6000806104236107ef565b90506104308185856107f7565b600191505092915050565b60065481565b6000600254905090565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d2906115ae565b60405180910390fd5b6104e3610532565b600a6104ef9190611730565b816104fa919061177b565b60068190555050565b60008061050e6107ef565b905061051b8582856109c0565b610526858585610a4c565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000905090565b60008061056e6107ef565b905061058f8185856105808589610768565b61058a91906117bd565b6107f7565b600191505092915050565b6105ab6105a56107ef565b82610cc2565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610608826106026107ef565b836109c0565b6106128282610cc2565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461064b9061150b565b80601f01602080910402602001604051908101604052809291908181526020018280546106779061150b565b80156106c45780601f10610699576101008083540402835291602001916106c4565b820191906000526020600020905b8154815290600101906020018083116106a757829003601f168201915b5050505050905090565b6000806106d96107ef565b905060006106e78286610768565b90508381101561072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390611863565b60405180910390fd5b61073982868684036107f7565b60019250505092915050565b6000806107506107ef565b905061075d818585610a4c565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d906118f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc90611987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109b39190611361565b60405180910390a3505050565b60006109cc8484610768565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a465781811015610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f906119f3565b60405180910390fd5b610a4584848484036107f7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190611b17565b60405180910390fd5b610b35838383610e8f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290611ba9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca99190611361565b60405180910390a3610cbc848484610f4f565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611c3b565b60405180910390fd5b610d3d82600083610e8f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dba90611ccd565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e769190611361565b60405180910390a3610e8a83600084610f4f565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610ef857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015610f315750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15610f3f57610f3e610f54565b5b610f4a838383610f62565b505050565b505050565b610f6041600654610f67565b565b505050565b610f6f61053b565b81610f78610441565b610f8291906117bd565b1115610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611d39565b60405180910390fd5b610fcd8282610fd1565b5050565b610fd961053b565b81610fe2610441565b610fec91906117bd565b111561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490611d39565b60405180910390fd5b611037828261103b565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190611da5565b60405180910390fd5b6110b660008383610e8f565b80600260008282546110c891906117bd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111799190611361565b60405180910390a361118d60008383610f4f565b5050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111cb5780820151818401526020810190506111b0565b60008484015250505050565b6000601f19601f8301169050919050565b60006111f382611191565b6111fd818561119c565b935061120d8185602086016111ad565b611216816111d7565b840191505092915050565b6000602082019050818103600083015261123b81846111e8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061127382611248565b9050919050565b61128381611268565b811461128e57600080fd5b50565b6000813590506112a08161127a565b92915050565b6000819050919050565b6112b9816112a6565b81146112c457600080fd5b50565b6000813590506112d6816112b0565b92915050565b600080604083850312156112f3576112f2611243565b5b600061130185828601611291565b9250506020611312858286016112c7565b9150509250929050565b60008115159050919050565b6113318161131c565b82525050565b600060208201905061134c6000830184611328565b92915050565b61135b816112a6565b82525050565b60006020820190506113766000830184611352565b92915050565b60006020828403121561139257611391611243565b5b60006113a0848285016112c7565b91505092915050565b6000806000606084860312156113c2576113c1611243565b5b60006113d086828701611291565b93505060206113e186828701611291565b92505060406113f2868287016112c7565b9150509250925092565b600060ff82169050919050565b611412816113fc565b82525050565b600060208201905061142d6000830184611409565b92915050565b60006020828403121561144957611448611243565b5b600061145784828501611291565b91505092915050565b600061146b82611248565b9050919050565b61147b81611460565b82525050565b60006020820190506114966000830184611472565b92915050565b600080604083850312156114b3576114b2611243565b5b60006114c185828601611291565b92505060206114d285828601611291565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152357607f821691505b602082108103611536576115356114dc565b5b50919050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061159860258361119c565b91506115a38261153c565b604082019050919050565b600060208201905081810360008301526115c78161158b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115611654578086048111156116305761162f6115ce565b5b600185161561163f5780820291505b808102905061164d856115fd565b9450611614565b94509492505050565b60008261166d5760019050611729565b8161167b5760009050611729565b8160018114611691576002811461169b576116ca565b6001915050611729565b60ff8411156116ad576116ac6115ce565b5b8360020a9150848211156116c4576116c36115ce565b5b50611729565b5060208310610133831016604e8410600b84101617156116ff5782820a9050838111156116fa576116f96115ce565b5b611729565b61170c848484600161160a565b92509050818404811115611723576117226115ce565b5b81810290505b9392505050565b600061173b826112a6565b9150611746836113fc565b92506117737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461165d565b905092915050565b6000611786826112a6565b9150611791836112a6565b925082820261179f816112a6565b915082820484148315176117b6576117b56115ce565b5b5092915050565b60006117c8826112a6565b91506117d3836112a6565b92508282019050808211156117eb576117ea6115ce565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061184d60258361119c565b9150611858826117f1565b604082019050919050565b6000602082019050818103600083015261187c81611840565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118df60248361119c565b91506118ea82611883565b604082019050919050565b6000602082019050818103600083015261190e816118d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061197160228361119c565b915061197c82611915565b604082019050919050565b600060208201905081810360008301526119a081611964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119dd601d8361119c565b91506119e8826119a7565b602082019050919050565b60006020820190508181036000830152611a0c816119d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a6f60258361119c565b9150611a7a82611a13565b604082019050919050565b60006020820190508181036000830152611a9e81611a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b0160238361119c565b9150611b0c82611aa5565b604082019050919050565b60006020820190508181036000830152611b3081611af4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b9360268361119c565b9150611b9e82611b37565b604082019050919050565b60006020820190508181036000830152611bc281611b86565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c2560218361119c565b9150611c3082611bc9565b604082019050919050565b60006020820190508181036000830152611c5481611c18565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cb760228361119c565b9150611cc282611c5b565b604082019050919050565b60006020820190508181036000830152611ce681611caa565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611d2360198361119c565b9150611d2e82611ced565b602082019050919050565b60006020820190508181036000830152611d5281611d16565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d8f601f8361119c565b9150611d9a82611d59565b602082019050919050565b60006020820190508181036000830152611dbe81611d82565b905091905056fea2646970667358221220b1a75bcf40bcad3c9968d11ccdb6ff37f451f5762fa3a66f88bb1a26d3ee78a364736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000003b9aca000000000000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

20032:1298:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6692:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9052:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20125:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7821:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20828:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9837:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7663:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19578:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10511:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18310:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7992:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18720:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20090:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6911:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11261:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8325:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8581:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6692:100;6746:13;6779:5;6772:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6692:100;:::o;9052:201::-;9135:4;9152:13;9168:12;:10;:12::i;:::-;9152:28;;9191:32;9200:5;9207:7;9216:6;9191:8;:32::i;:::-;9241:4;9234:11;;;9052:201;;;;:::o;20125:26::-;;;;:::o;7821:108::-;7882:7;7909:12;;7902:19;;7821:108;:::o;20828:125::-;21015:5;;;;;;;;;;;21001:19;;:10;:19;;;20993:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;20934:10:::1;:8;:10::i;:::-;20928:2;:16;;;;:::i;:::-;20918:6;:27;;;;:::i;:::-;20904:11;:41;;;;20828:125:::0;:::o;9837:261::-;9934:4;9951:15;9969:12;:10;:12::i;:::-;9951:30;;9992:38;10008:4;10014:7;10023:6;9992:15;:38::i;:::-;10041:27;10051:4;10057:2;10061:6;10041:9;:27::i;:::-;10086:4;10079:11;;;9837:261;;;;;:::o;7663:93::-;7721:5;7746:2;7739:9;;7663:93;:::o;19578:83::-;19622:7;19649:4;19642:11;;19578:83;:::o;10511:238::-;10599:4;10616:13;10632:12;:10;:12::i;:::-;10616:28;;10655:64;10664:5;10671:7;10708:10;10680:25;10690:5;10697:7;10680:9;:25::i;:::-;:38;;;;:::i;:::-;10655:8;:64::i;:::-;10737:4;10730:11;;;10511:238;;;;:::o;18310:91::-;18366:27;18372:12;:10;:12::i;:::-;18386:6;18366:5;:27::i;:::-;18310:91;:::o;7992:127::-;8066:7;8093:9;:18;8103:7;8093:18;;;;;;;;;;;;;;;;8086:25;;7992:127;;;:::o;18720:164::-;18797:46;18813:7;18822:12;:10;:12::i;:::-;18836:6;18797:15;:46::i;:::-;18854:22;18860:7;18869:6;18854:5;:22::i;:::-;18720:164;;:::o;20090:28::-;;;;;;;;;;;;;:::o;6911:104::-;6967:13;7000:7;6993:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6911:104;:::o;11261:436::-;11354:4;11371:13;11387:12;:10;:12::i;:::-;11371:28;;11410:24;11437:25;11447:5;11454:7;11437:9;:25::i;:::-;11410:52;;11501:15;11481:16;:35;;11473:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11594:60;11603:5;11610:7;11638:15;11619:16;:34;11594:8;:60::i;:::-;11685:4;11678:11;;;;11261:436;;;;:::o;8325:193::-;8404:4;8421:13;8437:12;:10;:12::i;:::-;8421:28;;8460;8470:5;8477:2;8481:6;8460:9;:28::i;:::-;8506:4;8499:11;;;8325:193;;;;:::o;8581:151::-;8670:7;8697:11;:18;8709:5;8697:18;;;;;;;;;;;;;;;:27;8716:7;8697:27;;;;;;;;;;;;;;;;8690:34;;8581:151;;;;:::o;4318:101::-;4371:7;4401:10;4394:17;;4318:101;:::o;15271:346::-;15390:1;15373:19;;:5;:19;;;15365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15471:1;15452:21;;:7;:21;;;15444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15555:6;15525:11;:18;15537:5;15525:18;;;;;;;;;;;;;;;:27;15544:7;15525:27;;;;;;;;;;;;;;;:36;;;;15593:7;15577:32;;15586:5;15577:32;;;15602:6;15577:32;;;;;;:::i;:::-;;;;;;;;15271:346;;;:::o;15908:421::-;16009:24;16036:25;16046:5;16053:7;16036:9;:25::i;:::-;16009:52;;16096:17;16076:16;:37;16072:250;;16158:6;16138:16;:26;;16130:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16242:51;16251:5;16258:7;16286:6;16267:16;:25;16242:8;:51::i;:::-;16072:250;15998:331;15908:421;;;:::o;12168:806::-;12281:1;12265:18;;:4;:18;;;12257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12358:1;12344:16;;:2;:16;;;12336:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12413:38;12434:4;12440:2;12444:6;12413:20;:38::i;:::-;12464:19;12486:9;:15;12496:4;12486:15;;;;;;;;;;;;;;;;12464:37;;12535:6;12520:11;:21;;12512:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12652:6;12638:11;:20;12620:9;:15;12630:4;12620:15;;;;;;;;;;;;;;;:38;;;;12855:6;12838:9;:13;12848:2;12838:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12905:2;12890:26;;12899:4;12890:26;;;12909:6;12890:26;;;;;;:::i;:::-;;;;;;;;12929:37;12949:4;12955:2;12959:6;12929:19;:37::i;:::-;12246:728;12168:806;;;:::o;14153:675::-;14256:1;14237:21;;:7;:21;;;14229:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14309:49;14330:7;14347:1;14351:6;14309:20;:49::i;:::-;14371:22;14396:9;:18;14406:7;14396:18;;;;;;;;;;;;;;;;14371:43;;14451:6;14433:14;:24;;14425:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14570:6;14553:14;:23;14532:9;:18;14542:7;14532:18;;;;;;;;;;;;;;;:44;;;;14687:6;14671:12;;:22;;;;;;;;;;;14748:1;14722:37;;14731:7;14722:37;;;14752:6;14722:37;;;;;;:::i;:::-;;;;;;;;14772:48;14792:7;14809:1;14813:6;14772:19;:48::i;:::-;14218:610;14153:675;;:::o;20527:293::-;20654:1;20638:18;;:4;:18;;;;:42;;;;;20666:14;20660:20;;:2;:20;;;;20638:42;:74;;;;;20710:1;20684:28;;:14;:28;;;;20638:74;20635:124;;;20729:18;:16;:18::i;:::-;20635:124;20769:43;20796:4;20802:2;20806:5;20769:26;:43::i;:::-;20527:293;;;:::o;17624:90::-;;;;:::o;20430:89::-;20477:34;20483:14;20499:11;;20477:5;:34::i;:::-;20430:89::o;16929:91::-;;;;:::o;21090:231::-;21235:5;:3;:5::i;:::-;21225:6;21203:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;21195:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;21281:28;21293:7;21302:6;21281:11;:28::i;:::-;21090:231;;:::o;19719:207::-;19844:5;:3;:5::i;:::-;19834:6;19812:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;19804:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;19890:28;19902:7;19911:6;19890:11;:28::i;:::-;19719:207;;:::o;13263:548::-;13366:1;13347:21;;:7;:21;;;13339:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13417:49;13446:1;13450:7;13459:6;13417:20;:49::i;:::-;13495:6;13479:12;;:22;;;;;;;:::i;:::-;;;;;;;;13672:6;13650:9;:18;13660:7;13650:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13726:7;13705:37;;13722:1;13705:37;;;13735:6;13705:37;;;;;;:::i;:::-;;;;;;;;13755:48;13783:1;13787:7;13796:6;13755:19;:48::i;:::-;13263: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://b1a75bcf40bcad3c9968d11ccdb6ff37f451f5762fa3a66f88bb1a26d3ee78a3
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.