ETH Price: $3,278.44 (-3.87%)
Gas: 14 Gwei

Token

DEVO Protocol (DVO)
 

Overview

Max Total Supply

1,500,000,000 DVO

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
171,839.45878 DVO

Value
$0.00
0x86790abbaccd1b21f5ecfdaa67ec6282afbf3e83
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:
DEVOToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-14
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
// 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/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
 * @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.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/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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.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: DEVO TOKEN 2.sol
pragma solidity 0.8.17;
// ----------------------------------------------------------------------------
// Owned contract
// ----------------------------------------------------------------------------
contract Owned {
    address public owner;
    address public newOwner;
    event OwnershipTransferred(address indexed _from, address indexed _to);
    constructor() {
        owner = msg.sender;
    }
    modifier onlyOwner {
        require(msg.sender == owner);
        _;
    }
    function transferOwnership(address _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        require(msg.sender == newOwner);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
        newOwner = address(0);
    }
}
contract DEVOToken is ERC20Burnable, Owned {
    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor(address owner) ERC20("DEVO Protocol", "DVO") {
        // 1_500_000_000 tokens
        uint256 initialSupply = 15e8 ether; // Also 15e26
        _mint(owner, initialSupply );
    }
    // ------------------------------------------------------------------------
    // Owner can transfer out any accidentally sent ERC20 tokens
    // ------------------------------------------------------------------------
    function transferAnyERC20Token(address tokenAddress, uint tokens) public onlyOwner returns (bool success) {
        return ERC20(tokenAddress).transfer(owner, tokens);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"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"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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":"newOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"internalType":"bool","name":"success","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"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620022c5380380620022c5833981810160405281019062000037919062000316565b6040518060400160405280600d81526020017f4445564f2050726f746f636f6c000000000000000000000000000000000000008152506040518060400160405280600381526020017f44564f00000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620005c2565b508060049081620000c69190620005c2565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006b04d8c55aefb8c05b5c00000090506200012d82826200013560201b60201c565b5050620007c4565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019e906200070a565b60405180910390fd5b620001bb60008383620002a260201b60201c565b8060026000828254620001cf91906200075b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002829190620007a7565b60405180910390a36200029e60008383620002a760201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002de82620002b1565b9050919050565b620002f081620002d1565b8114620002fc57600080fd5b50565b6000815190506200031081620002e5565b92915050565b6000602082840312156200032f576200032e620002ac565b5b60006200033f84828501620002ff565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003ca57607f821691505b602082108103620003e057620003df62000382565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200044a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200040b565b6200045686836200040b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004a36200049d62000497846200046e565b62000478565b6200046e565b9050919050565b6000819050919050565b620004bf8362000482565b620004d7620004ce82620004aa565b84845462000418565b825550505050565b600090565b620004ee620004df565b620004fb818484620004b4565b505050565b5b81811015620005235762000517600082620004e4565b60018101905062000501565b5050565b601f82111562000572576200053c81620003e6565b6200054784620003fb565b8101602085101562000557578190505b6200056f6200056685620003fb565b83018262000500565b50505b505050565b600082821c905092915050565b6000620005976000198460080262000577565b1980831691505092915050565b6000620005b2838362000584565b9150826002028217905092915050565b620005cd8262000348565b67ffffffffffffffff811115620005e957620005e862000353565b5b620005f58254620003b1565b6200060282828562000527565b600060209050601f8311600181146200063a576000841562000625578287015190505b620006318582620005a4565b865550620006a1565b601f1984166200064a86620003e6565b60005b8281101562000674578489015182556001820191506020850194506020810190506200064d565b8683101562000694578489015162000690601f89168262000584565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006f2601f83620006a9565b9150620006ff82620006ba565b602082019050919050565b600060208201905081810360008301526200072581620006e3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000768826200046e565b915062000775836200046e565b925082820190508082111562000790576200078f6200072c565b5b92915050565b620007a1816200046e565b82525050565b6000602082019050620007be600083018462000796565b92915050565b611af180620007d46000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806379cc6790116100a2578063a9059cbb11610071578063a9059cbb146102e3578063d4ee1d9014610313578063dc39d06d14610331578063dd62ed3e14610361578063f2fde38b1461039157610116565b806379cc67901461025b5780638da5cb5b1461027757806395d89b4114610295578063a457c2d7146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806342966c681461020557806370a082311461022157806379ba50971461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ad565b60405161013091906111d1565b60405180910390f35b610153600480360381019061014e919061128c565b61043f565b60405161016091906112e7565b60405180910390f35b610171610462565b60405161017e9190611311565b60405180910390f35b6101a1600480360381019061019c919061132c565b61046c565b6040516101ae91906112e7565b60405180910390f35b6101bf61049b565b6040516101cc919061139b565b60405180910390f35b6101ef60048036038101906101ea919061128c565b6104a4565b6040516101fc91906112e7565b60405180910390f35b61021f600480360381019061021a91906113b6565b6104db565b005b61023b600480360381019061023691906113e3565b6104ef565b6040516102489190611311565b60405180910390f35b610259610537565b005b6102756004803603810190610270919061128c565b6106d6565b005b61027f6106f6565b60405161028c919061141f565b60405180910390f35b61029d61071c565b6040516102aa91906111d1565b60405180910390f35b6102cd60048036038101906102c8919061128c565b6107ae565b6040516102da91906112e7565b60405180910390f35b6102fd60048036038101906102f8919061128c565b610825565b60405161030a91906112e7565b60405180910390f35b61031b610848565b604051610328919061141f565b60405180910390f35b61034b6004803603810190610346919061128c565b61086e565b60405161035891906112e7565b60405180910390f35b61037b6004803603810190610376919061143a565b610972565b6040516103889190611311565b60405180910390f35b6103ab60048036038101906103a691906113e3565b6109f9565b005b6060600380546103bc906114a9565b80601f01602080910402602001604051908101604052809291908181526020018280546103e8906114a9565b80156104355780601f1061040a57610100808354040283529160200191610435565b820191906000526020600020905b81548152906001019060200180831161041857829003601f168201915b5050505050905090565b60008061044a610a97565b9050610457818585610a9f565b600191505092915050565b6000600254905090565b600080610477610a97565b9050610484858285610c68565b61048f858585610cf4565b60019150509392505050565b60006012905090565b6000806104af610a97565b90506104d08185856104c18589610972565b6104cb9190611509565b610a9f565b600191505092915050565b6104ec6104e6610a97565b82610f6a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461059157600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6106e8826106e2610a97565b83610c68565b6106f28282610f6a565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461072b906114a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610757906114a9565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b6000806107b9610a97565b905060006107c78286610972565b90508381101561080c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610803906115af565b60405180910390fd5b6108198286868403610a9f565b60019250505092915050565b600080610830610a97565b905061083d818585610cf4565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ca57600080fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016109279291906115cf565b6020604051808303816000875af1158015610946573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096a9190611624565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a5357600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b05906116c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490611755565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5b9190611311565b60405180910390a3505050565b6000610c748484610972565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cee5781811015610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd7906117c1565b60405180910390fd5b610ced8484848403610a9f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90611853565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906118e5565b60405180910390fd5b610ddd838383611137565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90611977565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f519190611311565b60405180910390a3610f6484848461113c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090611a09565b60405180910390fd5b610fe582600083611137565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290611a9b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111e9190611311565b60405180910390a36111328360008461113c565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561117b578082015181840152602081019050611160565b60008484015250505050565b6000601f19601f8301169050919050565b60006111a382611141565b6111ad818561114c565b93506111bd81856020860161115d565b6111c681611187565b840191505092915050565b600060208201905081810360008301526111eb8184611198565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611223826111f8565b9050919050565b61123381611218565b811461123e57600080fd5b50565b6000813590506112508161122a565b92915050565b6000819050919050565b61126981611256565b811461127457600080fd5b50565b60008135905061128681611260565b92915050565b600080604083850312156112a3576112a26111f3565b5b60006112b185828601611241565b92505060206112c285828601611277565b9150509250929050565b60008115159050919050565b6112e1816112cc565b82525050565b60006020820190506112fc60008301846112d8565b92915050565b61130b81611256565b82525050565b60006020820190506113266000830184611302565b92915050565b600080600060608486031215611345576113446111f3565b5b600061135386828701611241565b935050602061136486828701611241565b925050604061137586828701611277565b9150509250925092565b600060ff82169050919050565b6113958161137f565b82525050565b60006020820190506113b0600083018461138c565b92915050565b6000602082840312156113cc576113cb6111f3565b5b60006113da84828501611277565b91505092915050565b6000602082840312156113f9576113f86111f3565b5b600061140784828501611241565b91505092915050565b61141981611218565b82525050565b60006020820190506114346000830184611410565b92915050565b60008060408385031215611451576114506111f3565b5b600061145f85828601611241565b925050602061147085828601611241565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114c157607f821691505b6020821081036114d4576114d361147a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061151482611256565b915061151f83611256565b9250828201905080821115611537576115366114da565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061159960258361114c565b91506115a48261153d565b604082019050919050565b600060208201905081810360008301526115c88161158c565b9050919050565b60006040820190506115e46000830185611410565b6115f16020830184611302565b9392505050565b611601816112cc565b811461160c57600080fd5b50565b60008151905061161e816115f8565b92915050565b60006020828403121561163a576116396111f3565b5b60006116488482850161160f565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116ad60248361114c565b91506116b882611651565b604082019050919050565b600060208201905081810360008301526116dc816116a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061173f60228361114c565b915061174a826116e3565b604082019050919050565b6000602082019050818103600083015261176e81611732565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117ab601d8361114c565b91506117b682611775565b602082019050919050565b600060208201905081810360008301526117da8161179e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061183d60258361114c565b9150611848826117e1565b604082019050919050565b6000602082019050818103600083015261186c81611830565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118cf60238361114c565b91506118da82611873565b604082019050919050565b600060208201905081810360008301526118fe816118c2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061196160268361114c565b915061196c82611905565b604082019050919050565b6000602082019050818103600083015261199081611954565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006119f360218361114c565b91506119fe82611997565b604082019050919050565b60006020820190508181036000830152611a22816119e6565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a8560228361114c565b9150611a9082611a29565b604082019050919050565b60006020820190508181036000830152611ab481611a78565b905091905056fea26469706673582212201313e46ce85afe4ec49e1c8ece1b38344c3590b4cccafa216b2eb7a86b85afca64736f6c634300081100330000000000000000000000001a11fbbd604da850feff00418a9a9656bad20b49

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806379cc6790116100a2578063a9059cbb11610071578063a9059cbb146102e3578063d4ee1d9014610313578063dc39d06d14610331578063dd62ed3e14610361578063f2fde38b1461039157610116565b806379cc67901461025b5780638da5cb5b1461027757806395d89b4114610295578063a457c2d7146102b357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806342966c681461020557806370a082311461022157806379ba50971461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ad565b60405161013091906111d1565b60405180910390f35b610153600480360381019061014e919061128c565b61043f565b60405161016091906112e7565b60405180910390f35b610171610462565b60405161017e9190611311565b60405180910390f35b6101a1600480360381019061019c919061132c565b61046c565b6040516101ae91906112e7565b60405180910390f35b6101bf61049b565b6040516101cc919061139b565b60405180910390f35b6101ef60048036038101906101ea919061128c565b6104a4565b6040516101fc91906112e7565b60405180910390f35b61021f600480360381019061021a91906113b6565b6104db565b005b61023b600480360381019061023691906113e3565b6104ef565b6040516102489190611311565b60405180910390f35b610259610537565b005b6102756004803603810190610270919061128c565b6106d6565b005b61027f6106f6565b60405161028c919061141f565b60405180910390f35b61029d61071c565b6040516102aa91906111d1565b60405180910390f35b6102cd60048036038101906102c8919061128c565b6107ae565b6040516102da91906112e7565b60405180910390f35b6102fd60048036038101906102f8919061128c565b610825565b60405161030a91906112e7565b60405180910390f35b61031b610848565b604051610328919061141f565b60405180910390f35b61034b6004803603810190610346919061128c565b61086e565b60405161035891906112e7565b60405180910390f35b61037b6004803603810190610376919061143a565b610972565b6040516103889190611311565b60405180910390f35b6103ab60048036038101906103a691906113e3565b6109f9565b005b6060600380546103bc906114a9565b80601f01602080910402602001604051908101604052809291908181526020018280546103e8906114a9565b80156104355780601f1061040a57610100808354040283529160200191610435565b820191906000526020600020905b81548152906001019060200180831161041857829003601f168201915b5050505050905090565b60008061044a610a97565b9050610457818585610a9f565b600191505092915050565b6000600254905090565b600080610477610a97565b9050610484858285610c68565b61048f858585610cf4565b60019150509392505050565b60006012905090565b6000806104af610a97565b90506104d08185856104c18589610972565b6104cb9190611509565b610a9f565b600191505092915050565b6104ec6104e6610a97565b82610f6a565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461059157600080fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6106e8826106e2610a97565b83610c68565b6106f28282610f6a565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461072b906114a9565b80601f0160208091040260200160405190810160405280929190818152602001828054610757906114a9565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b6000806107b9610a97565b905060006107c78286610972565b90508381101561080c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610803906115af565b60405180910390fd5b6108198286868403610a9f565b60019250505092915050565b600080610830610a97565b905061083d818585610cf4565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108ca57600080fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016109279291906115cf565b6020604051808303816000875af1158015610946573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096a9190611624565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a5357600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b05906116c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7490611755565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c5b9190611311565b60405180910390a3505050565b6000610c748484610972565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cee5781811015610ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd7906117c1565b60405180910390fd5b610ced8484848403610a9f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90611853565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906118e5565b60405180910390fd5b610ddd838383611137565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90611977565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f519190611311565b60405180910390a3610f6484848461113c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090611a09565b60405180910390fd5b610fe582600083611137565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290611a9b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161111e9190611311565b60405180910390a36111328360008461113c565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561117b578082015181840152602081019050611160565b60008484015250505050565b6000601f19601f8301169050919050565b60006111a382611141565b6111ad818561114c565b93506111bd81856020860161115d565b6111c681611187565b840191505092915050565b600060208201905081810360008301526111eb8184611198565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611223826111f8565b9050919050565b61123381611218565b811461123e57600080fd5b50565b6000813590506112508161122a565b92915050565b6000819050919050565b61126981611256565b811461127457600080fd5b50565b60008135905061128681611260565b92915050565b600080604083850312156112a3576112a26111f3565b5b60006112b185828601611241565b92505060206112c285828601611277565b9150509250929050565b60008115159050919050565b6112e1816112cc565b82525050565b60006020820190506112fc60008301846112d8565b92915050565b61130b81611256565b82525050565b60006020820190506113266000830184611302565b92915050565b600080600060608486031215611345576113446111f3565b5b600061135386828701611241565b935050602061136486828701611241565b925050604061137586828701611277565b9150509250925092565b600060ff82169050919050565b6113958161137f565b82525050565b60006020820190506113b0600083018461138c565b92915050565b6000602082840312156113cc576113cb6111f3565b5b60006113da84828501611277565b91505092915050565b6000602082840312156113f9576113f86111f3565b5b600061140784828501611241565b91505092915050565b61141981611218565b82525050565b60006020820190506114346000830184611410565b92915050565b60008060408385031215611451576114506111f3565b5b600061145f85828601611241565b925050602061147085828601611241565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806114c157607f821691505b6020821081036114d4576114d361147a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061151482611256565b915061151f83611256565b9250828201905080821115611537576115366114da565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061159960258361114c565b91506115a48261153d565b604082019050919050565b600060208201905081810360008301526115c88161158c565b9050919050565b60006040820190506115e46000830185611410565b6115f16020830184611302565b9392505050565b611601816112cc565b811461160c57600080fd5b50565b60008151905061161e816115f8565b92915050565b60006020828403121561163a576116396111f3565b5b60006116488482850161160f565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116ad60248361114c565b91506116b882611651565b604082019050919050565b600060208201905081810360008301526116dc816116a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061173f60228361114c565b915061174a826116e3565b604082019050919050565b6000602082019050818103600083015261176e81611732565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117ab601d8361114c565b91506117b682611775565b602082019050919050565b600060208201905081810360008301526117da8161179e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061183d60258361114c565b9150611848826117e1565b604082019050919050565b6000602082019050818103600083015261186c81611830565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118cf60238361114c565b91506118da82611873565b604082019050919050565b600060208201905081810360008301526118fe816118c2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061196160268361114c565b915061196c82611905565b604082019050919050565b6000602082019050818103600083015261199081611954565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006119f360218361114c565b91506119fe82611997565b604082019050919050565b60006020820190508181036000830152611a22816119e6565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a8560228361114c565b9150611a9082611a29565b604082019050919050565b60006020820190508181036000830152611ab481611a78565b905091905056fea26469706673582212201313e46ce85afe4ec49e1c8ece1b38344c3590b4cccafa216b2eb7a86b85afca64736f6c63430008110033

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

0000000000000000000000001a11fbbd604da850feff00418a9a9656bad20b49

-----Decoded View---------------
Arg [0] : owner (address): 0x1a11FBbd604dA850FEfF00418A9a9656BAd20b49

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001a11fbbd604da850feff00418a9a9656bad20b49


Deployed Bytecode Sourcemap

19721:840:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6608:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8945:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7722:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9724:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7566:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10426:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18305:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7891:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19520:196;;;:::i;:::-;;18713:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19137:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6825:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11165:434;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8222:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19164:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20383:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8476:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19412:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6608:100;6662:13;6695:5;6688:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6608:100;:::o;8945:201::-;9028:4;9045:13;9061:12;:10;:12::i;:::-;9045:28;;9084:32;9093:5;9100:7;9109:6;9084:8;:32::i;:::-;9134:4;9127:11;;;8945:201;;;;:::o;7722:108::-;7783:7;7810:12;;7803:19;;7722:108;:::o;9724:295::-;9855:4;9872:15;9890:12;:10;:12::i;:::-;9872:30;;9913:38;9929:4;9935:7;9944:6;9913:15;:38::i;:::-;9962:27;9972:4;9978:2;9982:6;9962:9;:27::i;:::-;10007:4;10000:11;;;9724:295;;;;;:::o;7566:93::-;7624:5;7649:2;7642:9;;7566:93;:::o;10426:238::-;10514:4;10531:13;10547:12;:10;:12::i;:::-;10531:28;;10570:64;10579:5;10586:7;10623:10;10595:25;10605:5;10612:7;10595:9;:25::i;:::-;:38;;;;:::i;:::-;10570:8;:64::i;:::-;10652:4;10645:11;;;10426:238;;;;:::o;18305:91::-;18361:27;18367:12;:10;:12::i;:::-;18381:6;18361:5;:27::i;:::-;18305:91;:::o;7891:127::-;7965:7;7992:9;:18;8002:7;7992:18;;;;;;;;;;;;;;;;7985:25;;7891:127;;;:::o;19520:196::-;19587:8;;;;;;;;;;;19573:22;;:10;:22;;;19565:31;;;;;;19640:8;;;;;;;;;;;19612:37;;19633:5;;;;;;;;;;;19612:37;;;;;;;;;;;;19668:8;;;;;;;;;;;19660:5;;:16;;;;;;;;;;;;;;;;;;19706:1;19687:8;;:21;;;;;;;;;;;;;;;;;;19520:196::o;18713:164::-;18790:46;18806:7;18815:12;:10;:12::i;:::-;18829:6;18790:15;:46::i;:::-;18847:22;18853:7;18862:6;18847:5;:22::i;:::-;18713:164;;:::o;19137:20::-;;;;;;;;;;;;;:::o;6825:104::-;6881:13;6914:7;6907:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6825:104;:::o;11165:434::-;11258:4;11275:13;11291:12;:10;:12::i;:::-;11275:28;;11314:24;11341:25;11351:5;11358:7;11341:9;:25::i;:::-;11314:52;;11405:15;11385:16;:35;;11377:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11498:60;11507:5;11514:7;11542:15;11523:16;:34;11498:8;:60::i;:::-;11587:4;11580:11;;;;11165:434;;;;:::o;8222:193::-;8301:4;8318:13;8334:12;:10;:12::i;:::-;8318:28;;8357;8367:5;8374:2;8378:6;8357:9;:28::i;:::-;8403:4;8396:11;;;8222:193;;;;:::o;19164:23::-;;;;;;;;;;;;;:::o;20383:175::-;20475:12;19380:5;;;;;;;;;;;19366:19;;:10;:19;;;19358:28;;;;;;20513:12:::1;20507:28;;;20536:5;;;;;;;;;;;20543:6;20507:43;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20500:50;;20383:175:::0;;;;:::o;8476:151::-;8565:7;8592:11;:18;8604:5;8592:18;;;;;;;;;;;;;;;:27;8611:7;8592:27;;;;;;;;;;;;;;;;8585:34;;8476:151;;;;:::o;19412:102::-;19380:5;;;;;;;;;;;19366:19;;:10;:19;;;19358:28;;;;;;19497:9:::1;19486:8;;:20;;;;;;;;;;;;;;;;;;19412:102:::0;:::o;704:98::-;757:7;784:10;777:17;;704:98;:::o;15160:378::-;15313:1;15296:19;;:5;:19;;;15288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15394:1;15375:21;;:7;:21;;;15367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15476:6;15446:11;:18;15458:5;15446:18;;;;;;;;;;;;;;;:27;15465:7;15446:27;;;;;;;;;;;;;;;:36;;;;15514:7;15498:32;;15507:5;15498:32;;;15523:6;15498:32;;;;;;:::i;:::-;;;;;;;;15160:378;;;:::o;15827:453::-;15962:24;15989:25;15999:5;16006:7;15989:9;:25::i;:::-;15962:52;;16049:17;16029:16;:37;16025:248;;16111:6;16091:16;:26;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16195:51;16204:5;16211:7;16239:6;16220:16;:25;16195:8;:51::i;:::-;16025:248;15951:329;15827:453;;;:::o;12067:832::-;12214:1;12198:18;;:4;:18;;;12190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12291:1;12277:16;;:2;:16;;;12269:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12344:38;12365:4;12371:2;12375:6;12344:20;:38::i;:::-;12393:19;12415:9;:15;12425:4;12415:15;;;;;;;;;;;;;;;;12393:37;;12464:6;12449:11;:21;;12441:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12581:6;12567:11;:20;12549:9;:15;12559:4;12549:15;;;;;;;;;;;;;;;:38;;;;12784:6;12767:9;:13;12777:2;12767:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12832:2;12817:26;;12826:4;12817:26;;;12836:6;12817:26;;;;;;:::i;:::-;;;;;;;;12854:37;12874:4;12880:2;12884:6;12854:19;:37::i;:::-;12179:720;12067:832;;;:::o;14057:667::-;14160:1;14141:21;;:7;:21;;;14133:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14211:49;14232:7;14249:1;14253:6;14211:20;:49::i;:::-;14271:22;14296:9;:18;14306:7;14296:18;;;;;;;;;;;;;;;;14271:43;;14351:6;14333:14;:24;;14325:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14470:6;14453:14;:23;14432:9;:18;14442:7;14432:18;;;;;;;;;;;;;;;:44;;;;14587:6;14571:12;;:22;;;;;;;;;;;14646:1;14620:37;;14629:7;14620:37;;;14650:6;14620:37;;;;;;:::i;:::-;;;;;;;;14668:48;14688:7;14705:1;14709:6;14668:19;:48::i;:::-;14122:602;14057:667;;:::o;16878:125::-;;;;:::o;17605:124::-;;;;:::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:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;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:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:332::-;8398:4;8436:2;8425:9;8421:18;8413:26;;8449:71;8517:1;8506:9;8502:17;8493:6;8449:71;:::i;:::-;8530:72;8598:2;8587:9;8583:18;8574:6;8530:72;:::i;:::-;8277:332;;;;;:::o;8615:116::-;8685:21;8700:5;8685:21;:::i;:::-;8678:5;8675:32;8665:60;;8721:1;8718;8711:12;8665:60;8615:116;:::o;8737:137::-;8791:5;8822:6;8816:13;8807:22;;8838:30;8862:5;8838:30;:::i;:::-;8737:137;;;;:::o;8880:345::-;8947:6;8996:2;8984:9;8975:7;8971:23;8967:32;8964:119;;;9002:79;;:::i;:::-;8964:119;9122:1;9147:61;9200:7;9191:6;9180:9;9176:22;9147:61;:::i;:::-;9137:71;;9093:125;8880:345;;;;:::o;9231:223::-;9371:34;9367:1;9359:6;9355:14;9348:58;9440:6;9435:2;9427:6;9423:15;9416:31;9231:223;:::o;9460:366::-;9602:3;9623:67;9687:2;9682:3;9623:67;:::i;:::-;9616:74;;9699:93;9788:3;9699:93;:::i;:::-;9817:2;9812:3;9808:12;9801:19;;9460:366;;;:::o;9832:419::-;9998:4;10036:2;10025:9;10021:18;10013:26;;10085:9;10079:4;10075:20;10071:1;10060:9;10056:17;10049:47;10113:131;10239:4;10113:131;:::i;:::-;10105:139;;9832:419;;;:::o;10257:221::-;10397:34;10393:1;10385:6;10381:14;10374:58;10466:4;10461:2;10453:6;10449:15;10442:29;10257:221;:::o;10484:366::-;10626:3;10647:67;10711:2;10706:3;10647:67;:::i;:::-;10640:74;;10723:93;10812:3;10723:93;:::i;:::-;10841:2;10836:3;10832:12;10825:19;;10484:366;;;:::o;10856:419::-;11022:4;11060:2;11049:9;11045:18;11037:26;;11109:9;11103:4;11099:20;11095:1;11084:9;11080:17;11073:47;11137:131;11263:4;11137:131;:::i;:::-;11129:139;;10856:419;;;:::o;11281:179::-;11421:31;11417:1;11409:6;11405:14;11398:55;11281:179;:::o;11466:366::-;11608:3;11629:67;11693:2;11688:3;11629:67;:::i;:::-;11622:74;;11705:93;11794:3;11705:93;:::i;:::-;11823:2;11818:3;11814:12;11807:19;;11466:366;;;:::o;11838:419::-;12004:4;12042:2;12031:9;12027:18;12019:26;;12091:9;12085:4;12081:20;12077:1;12066:9;12062:17;12055:47;12119:131;12245:4;12119:131;:::i;:::-;12111:139;;11838:419;;;:::o;12263:224::-;12403:34;12399:1;12391:6;12387:14;12380:58;12472:7;12467:2;12459:6;12455:15;12448:32;12263:224;:::o;12493:366::-;12635:3;12656:67;12720:2;12715:3;12656:67;:::i;:::-;12649:74;;12732:93;12821:3;12732:93;:::i;:::-;12850:2;12845:3;12841:12;12834:19;;12493:366;;;:::o;12865:419::-;13031:4;13069:2;13058:9;13054:18;13046:26;;13118:9;13112:4;13108:20;13104:1;13093:9;13089:17;13082:47;13146:131;13272:4;13146:131;:::i;:::-;13138:139;;12865:419;;;:::o;13290:222::-;13430:34;13426:1;13418:6;13414:14;13407:58;13499:5;13494:2;13486:6;13482:15;13475:30;13290:222;:::o;13518:366::-;13660:3;13681:67;13745:2;13740:3;13681:67;:::i;:::-;13674:74;;13757:93;13846:3;13757:93;:::i;:::-;13875:2;13870:3;13866:12;13859:19;;13518:366;;;:::o;13890:419::-;14056:4;14094:2;14083:9;14079:18;14071:26;;14143:9;14137:4;14133:20;14129:1;14118:9;14114:17;14107:47;14171:131;14297:4;14171:131;:::i;:::-;14163:139;;13890:419;;;:::o;14315:225::-;14455:34;14451:1;14443:6;14439:14;14432:58;14524:8;14519:2;14511:6;14507:15;14500:33;14315:225;:::o;14546:366::-;14688:3;14709:67;14773:2;14768:3;14709:67;:::i;:::-;14702:74;;14785:93;14874:3;14785:93;:::i;:::-;14903:2;14898:3;14894:12;14887:19;;14546:366;;;:::o;14918:419::-;15084:4;15122:2;15111:9;15107:18;15099:26;;15171:9;15165:4;15161:20;15157:1;15146:9;15142:17;15135:47;15199:131;15325:4;15199:131;:::i;:::-;15191:139;;14918:419;;;:::o;15343:220::-;15483:34;15479:1;15471:6;15467:14;15460:58;15552:3;15547:2;15539:6;15535:15;15528:28;15343:220;:::o;15569:366::-;15711:3;15732:67;15796:2;15791:3;15732:67;:::i;:::-;15725:74;;15808:93;15897:3;15808:93;:::i;:::-;15926:2;15921:3;15917:12;15910:19;;15569:366;;;:::o;15941:419::-;16107:4;16145:2;16134:9;16130:18;16122:26;;16194:9;16188:4;16184:20;16180:1;16169:9;16165:17;16158:47;16222:131;16348:4;16222:131;:::i;:::-;16214:139;;15941:419;;;:::o;16366:221::-;16506:34;16502:1;16494:6;16490:14;16483:58;16575:4;16570:2;16562:6;16558:15;16551:29;16366:221;:::o;16593:366::-;16735:3;16756:67;16820:2;16815:3;16756:67;:::i;:::-;16749:74;;16832:93;16921:3;16832:93;:::i;:::-;16950:2;16945:3;16941:12;16934:19;;16593:366;;;:::o;16965:419::-;17131:4;17169:2;17158:9;17154:18;17146:26;;17218:9;17212:4;17208:20;17204:1;17193:9;17189:17;17182:47;17246:131;17372:4;17246:131;:::i;:::-;17238:139;;16965:419;;;:::o

Swarm Source

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