ETH Price: $2,873.07 (-9.64%)
Gas: 13 Gwei

Token

Defispot (SPOT)
 

Overview

Max Total Supply

387,487,327.2397844 SPOT

Holders

952 ( 0.105%)

Market

Price

$0.01 @ 0.000003 ETH (-5.84%)

Onchain Market Cap

$3,873,172.20

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
0xwolong.eth
Balance
0.000000000008461108 SPOT

Value
$0.00 ( ~0 Eth) [0.0000%]
0xa88d4ea05f5835a2876c4423719c2b73d80e3ea6
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Defispot aim to enhance DeFi engagement by delivering secure, efficient trading solutions for easy access to fragmented liquidity pools.

Market

Volume (24H):$13,490.67
Market Capitalization:$0.00
Circulating Supply:0.00 SPOT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DefispotToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


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

pragma solidity ^0.8.20;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev The `account` is missing a role.
     */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);

    /**
     * @dev The caller of a function is not the expected one.
     *
     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
     */
    error AccessControlBadConfirmation();

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     */
    function renounceRole(bytes32 role, address callerConfirmation) external;
}

// 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/AccessControl.sol


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

pragma solidity ^0.8.20;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```solidity
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```solidity
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address account => bool) hasRole;
        bytes32 adminRole;
    }

    mapping(bytes32 role => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with an {AccessControlUnauthorizedAccount} error including the required role.
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual returns (bool) {
        return _roles[role].hasRole[account];
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
     * is missing `role`.
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert AccessControlUnauthorizedAccount(account, role);
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `callerConfirmation`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address callerConfirmation) public virtual {
        if (callerConfirmation != _msgSender()) {
            revert AccessControlBadConfirmation();
        }

        _revokeRole(role, callerConfirmation);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
        if (!hasRole(role, account)) {
            _roles[role].hasRole[account] = true;
            emit RoleGranted(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
        if (hasRole(role, account)) {
            _roles[role].hasRole[account] = false;
            emit RoleRevoked(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 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: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/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 ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

        emit Transfer(from, to, value);
    }

    /**
     * @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));
        }
        _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:
     * ```
     * 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.20;


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Total supply cap has been exceeded.
     */
    error ERC20ExceededCap(uint256 increasedSupply, uint256 cap);

    /**
     * @dev The supplied cap is not a valid cap.
     */
    error ERC20InvalidCap(uint256 cap);

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        if (cap_ == 0) {
            revert ERC20InvalidCap(0);
        }
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_update}.
     */
    function _update(address from, address to, uint256 value) internal virtual override {
        super._update(from, to, value);

        if (from == address(0)) {
            uint256 maxSupply = cap();
            uint256 supply = totalSupply();
            if (supply > maxSupply) {
                revert ERC20ExceededCap(supply, maxSupply);
            }
        }
    }
}

// File: DefispotToken.sol


pragma solidity ^0.8.20;



contract DefispotToken is ERC20Capped, AccessControl {
    uint256 public constant MAX_SUPPLY = 1000000000 ether;
    bytes32 public constant MINTER = keccak256("MINTER");
    bytes32 public constant MINTER_MAKER = keccak256("MINTER_MAKER");

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 initialSpotToMint
    ) ERC20Capped(MAX_SUPPLY) ERC20(_name, _symbol) {
        _mint(msg.sender, initialSpotToMint);
        _grantRole(MINTER_MAKER, msg.sender);
        _setRoleAdmin(DEFAULT_ADMIN_ROLE, MINTER_MAKER);
        _setRoleAdmin(MINTER_MAKER, MINTER_MAKER);
        _setRoleAdmin(MINTER, MINTER_MAKER);
        _grantRole(MINTER, msg.sender);
    }

    function grantMinterRole(address _account) external onlyRole(MINTER_MAKER) {
        _grantRole(MINTER, _account);
    }

    function mint(uint256 amount) public onlyRole(MINTER) returns (bool) {
        _mint(msg.sender, amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"initialSpotToMint","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededCap","type":"error"},{"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":"uint256","name":"cap","type":"uint256"}],"name":"ERC20InvalidCap","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"},{"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_MAKER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"cap","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"grantMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"}]

60a060405234801562000010575f80fd5b506040516200275138038062002751833981810160405281019062000036919062000915565b6b033b2e3c9fd0803ce80000008383816003908162000056919062000bda565b50806004908162000068919062000bda565b5050505f8103620000b2575f6040517f392e1e27000000000000000000000000000000000000000000000000000000008152600401620000a9919062000cff565b60405180910390fd5b806080818152505050620000cd3382620001f460201b60201c565b620000ff7fb07a22a5a49a5a536854325d51f6d29f5884ea57ef092edee3e5d11ccbd76f34336200027e60201b60201c565b50620001345f801b7fb07a22a5a49a5a536854325d51f6d29f5884ea57ef092edee3e5d11ccbd76f346200037a60201b60201c565b620001667fb07a22a5a49a5a536854325d51f6d29f5884ea57ef092edee3e5d11ccbd76f34806200037a60201b60201c565b620001b87ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc97fb07a22a5a49a5a536854325d51f6d29f5884ea57ef092edee3e5d11ccbd76f346200037a60201b60201c565b620001ea7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc9336200027e60201b60201c565b5050505062000e71565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000267575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200025e919062000d5d565b60405180910390fd5b6200027a5f8383620003db60201b60201c565b5050565b5f6200029183836200049a60201b60201c565b6200037057600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200030c620004fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001905062000374565b5f90505b92915050565b5f6200038c836200050560201b60201c565b90508160055f8581526020019081526020015f20600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b620003ee8383836200052260201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000495575f620004336200074660201b60201c565b90505f620004466200074f60201b60201c565b905081811115620004925780826040517f9e79f8540000000000000000000000000000000000000000000000000000000081526004016200048992919062000d89565b60405180910390fd5b50505b505050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f33905090565b5f60055f8381526020019081526020015f20600101549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000576578060025f82825462000569919062000de1565b9250508190555062000647565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000602578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620005f99392919062000e1b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000690578060025f8282540392505081905550620006da565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000739919062000e56565b60405180910390a3505050565b5f608051905090565b5f600254905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620007b98262000771565b810181811067ffffffffffffffff82111715620007db57620007da62000781565b5b80604052505050565b5f620007ef62000758565b9050620007fd8282620007ae565b919050565b5f67ffffffffffffffff8211156200081f576200081e62000781565b5b6200082a8262000771565b9050602081019050919050565b5f5b838110156200085657808201518184015260208101905062000839565b5f8484015250505050565b5f62000877620008718462000802565b620007e4565b9050828152602081018484840111156200089657620008956200076d565b5b620008a384828562000837565b509392505050565b5f82601f830112620008c257620008c162000769565b5b8151620008d484826020860162000861565b91505092915050565b5f819050919050565b620008f181620008dd565b8114620008fc575f80fd5b50565b5f815190506200090f81620008e6565b92915050565b5f805f606084860312156200092f576200092e62000761565b5b5f84015167ffffffffffffffff8111156200094f576200094e62000765565b5b6200095d86828701620008ab565b935050602084015167ffffffffffffffff81111562000981576200098062000765565b5b6200098f86828701620008ab565b9250506040620009a286828701620008ff565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620009fb57607f821691505b60208210810362000a115762000a10620009b6565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a38565b62000a81868362000a38565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000ac262000abc62000ab684620008dd565b62000a99565b620008dd565b9050919050565b5f819050919050565b62000add8362000aa2565b62000af562000aec8262000ac9565b84845462000a44565b825550505050565b5f90565b62000b0b62000afd565b62000b1881848462000ad2565b505050565b5b8181101562000b3f5762000b335f8262000b01565b60018101905062000b1e565b5050565b601f82111562000b8e5762000b588162000a17565b62000b638462000a29565b8101602085101562000b73578190505b62000b8b62000b828562000a29565b83018262000b1d565b50505b505050565b5f82821c905092915050565b5f62000bb05f198460080262000b93565b1980831691505092915050565b5f62000bca838362000b9f565b9150826002028217905092915050565b62000be582620009ac565b67ffffffffffffffff81111562000c015762000c0062000781565b5b62000c0d8254620009e3565b62000c1a82828562000b43565b5f60209050601f83116001811462000c50575f841562000c3b578287015190505b62000c47858262000bbd565b86555062000cb6565b601f19841662000c608662000a17565b5f5b8281101562000c895784890151825560018201915060208501945060208101905062000c62565b8683101562000ca9578489015162000ca5601f89168262000b9f565b8355505b6001600288020188555050505b505050505050565b5f819050919050565b5f62000ce762000ce162000cdb8462000cbe565b62000a99565b620008dd565b9050919050565b62000cf98162000cc7565b82525050565b5f60208201905062000d145f83018462000cee565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000d458262000d1a565b9050919050565b62000d578162000d39565b82525050565b5f60208201905062000d725f83018462000d4c565b92915050565b62000d8381620008dd565b82525050565b5f60408201905062000d9e5f83018562000d78565b62000dad602083018462000d78565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000ded82620008dd565b915062000dfa83620008dd565b925082820190508082111562000e155762000e1462000db4565b5b92915050565b5f60608201905062000e305f83018662000d4c565b62000e3f602083018562000d78565b62000e4e604083018462000d78565b949350505050565b5f60208201905062000e6b5f83018462000d78565b92915050565b6080516118c762000e8a5f395f61062e01526118c75ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c80633dd1eb61116100b6578063a0712d681161007a578063a0712d681461038a578063a217fddf146103ba578063a9059cbb146103d8578063d547741f14610408578063dd62ed3e14610424578063fe6d81241461045457610140565b80633dd1eb61146102d257806352a94acf146102ee57806370a082311461030c57806391d148541461033c57806395d89b411461036c57610140565b8063248a9ca311610108578063248a9ca3146102105780632f2ff15d14610240578063313ce5671461025c57806332cb6b0c1461027a578063355274ea1461029857806336568abe146102b657610140565b806301ffc9a71461014457806306fdde0314610174578063095ea7b31461019257806318160ddd146101c257806323b872dd146101e0575b5f80fd5b61015e60048036038101906101599190611352565b610472565b60405161016b9190611397565b60405180910390f35b61017c6104eb565b604051610189919061143a565b60405180910390f35b6101ac60048036038101906101a791906114e7565b61057b565b6040516101b99190611397565b60405180910390f35b6101ca61059d565b6040516101d79190611534565b60405180910390f35b6101fa60048036038101906101f5919061154d565b6105a6565b6040516102079190611397565b60405180910390f35b61022a600480360381019061022591906115d0565b6105d4565b604051610237919061160a565b60405180910390f35b61025a60048036038101906102559190611623565b6105f1565b005b610264610613565b604051610271919061167c565b60405180910390f35b61028261061b565b60405161028f9190611534565b60405180910390f35b6102a061062b565b6040516102ad9190611534565b60405180910390f35b6102d060048036038101906102cb9190611623565b610652565b005b6102ec60048036038101906102e79190611695565b6106cd565b005b6102f6610726565b604051610303919061160a565b60405180910390f35b61032660048036038101906103219190611695565b61074a565b6040516103339190611534565b60405180910390f35b61035660048036038101906103519190611623565b61078f565b6040516103639190611397565b60405180910390f35b6103746107f3565b604051610381919061143a565b60405180910390f35b6103a4600480360381019061039f91906116c0565b610883565b6040516103b19190611397565b60405180910390f35b6103c26108c2565b6040516103cf919061160a565b60405180910390f35b6103f260048036038101906103ed91906114e7565b6108c8565b6040516103ff9190611397565b60405180910390f35b610422600480360381019061041d9190611623565b6108ea565b005b61043e600480360381019061043991906116eb565b61090c565b60405161044b9190611534565b60405180910390f35b61045c61098e565b604051610469919061160a565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104e457506104e3826109b2565b5b9050919050565b6060600380546104fa90611756565b80601f016020809104026020016040519081016040528092919081815260200182805461052690611756565b80156105715780601f1061054857610100808354040283529160200191610571565b820191905f5260205f20905b81548152906001019060200180831161055457829003601f168201915b5050505050905090565b5f80610585610a1b565b9050610592818585610a22565b600191505092915050565b5f600254905090565b5f806105b0610a1b565b90506105bd858285610a34565b6105c8858585610ac6565b60019150509392505050565b5f60055f8381526020019081526020015f20600101549050919050565b6105fa826105d4565b61060381610bb6565b61060d8383610bca565b50505050565b5f6012905090565b6b033b2e3c9fd0803ce800000081565b5f7f0000000000000000000000000000000000000000000000000000000000000000905090565b61065a610a1b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106be576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106c88282610cb4565b505050565b7fb07a22a5a49a5a536854325d51f6d29f5884ea57ef092edee3e5d11ccbd76f346106f781610bb6565b6107217ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc983610bca565b505050565b7fb07a22a5a49a5a536854325d51f6d29f5884ea57ef092edee3e5d11ccbd76f3481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60606004805461080290611756565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611756565b80156108795780601f1061085057610100808354040283529160200191610879565b820191905f5260205f20905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b5f7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc96108ae81610bb6565b6108b83384610d9e565b6001915050919050565b5f801b81565b5f806108d2610a1b565b90506108df818585610ac6565b600191505092915050565b6108f3826105d4565b6108fc81610bb6565b6109068383610cb4565b50505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc981565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b610a2f8383836001610e1d565b505050565b5f610a3f848461090c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ac05781811015610ab1578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610aa893929190611795565b60405180910390fd5b610abf84848484035f610e1d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b36575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b2d91906117ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ba6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b9d91906117ca565b60405180910390fd5b610bb1838383610fec565b505050565b610bc781610bc2610a1b565b61108f565b50565b5f610bd5838361078f565b610caa57600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610c47610a1b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610cae565b5f90505b92915050565b5f610cbf838361078f565b15610d94575f60055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610d31610a1b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610d98565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e0e575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e0591906117ca565b60405180910390fd5b610e195f8383610fec565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e8d575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e8491906117ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efd575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ef491906117ca565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610fe6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610fdd9190611534565b60405180910390a35b50505050565b610ff78383836110e0565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361108a575f61103361062b565b90505f61103e61059d565b9050818111156110875780826040517f9e79f85400000000000000000000000000000000000000000000000000000000815260040161107e9291906117e3565b60405180910390fd5b50505b505050565b611099828261078f565b6110dc5780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016110d392919061180a565b60405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611130578060025f828254611124919061185e565b925050819055506111fe565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111b9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111b093929190611795565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611245578060025f828254039250508190555061128f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112ec9190611534565b60405180910390a3505050565b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611331816112fd565b811461133b575f80fd5b50565b5f8135905061134c81611328565b92915050565b5f60208284031215611367576113666112f9565b5b5f6113748482850161133e565b91505092915050565b5f8115159050919050565b6113918161137d565b82525050565b5f6020820190506113aa5f830184611388565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113e75780820151818401526020810190506113cc565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61140c826113b0565b61141681856113ba565b93506114268185602086016113ca565b61142f816113f2565b840191505092915050565b5f6020820190508181035f8301526114528184611402565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114838261145a565b9050919050565b61149381611479565b811461149d575f80fd5b50565b5f813590506114ae8161148a565b92915050565b5f819050919050565b6114c6816114b4565b81146114d0575f80fd5b50565b5f813590506114e1816114bd565b92915050565b5f80604083850312156114fd576114fc6112f9565b5b5f61150a858286016114a0565b925050602061151b858286016114d3565b9150509250929050565b61152e816114b4565b82525050565b5f6020820190506115475f830184611525565b92915050565b5f805f60608486031215611564576115636112f9565b5b5f611571868287016114a0565b9350506020611582868287016114a0565b9250506040611593868287016114d3565b9150509250925092565b5f819050919050565b6115af8161159d565b81146115b9575f80fd5b50565b5f813590506115ca816115a6565b92915050565b5f602082840312156115e5576115e46112f9565b5b5f6115f2848285016115bc565b91505092915050565b6116048161159d565b82525050565b5f60208201905061161d5f8301846115fb565b92915050565b5f8060408385031215611639576116386112f9565b5b5f611646858286016115bc565b9250506020611657858286016114a0565b9150509250929050565b5f60ff82169050919050565b61167681611661565b82525050565b5f60208201905061168f5f83018461166d565b92915050565b5f602082840312156116aa576116a96112f9565b5b5f6116b7848285016114a0565b91505092915050565b5f602082840312156116d5576116d46112f9565b5b5f6116e2848285016114d3565b91505092915050565b5f8060408385031215611701576117006112f9565b5b5f61170e858286016114a0565b925050602061171f858286016114a0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061176d57607f821691505b6020821081036117805761177f611729565b5b50919050565b61178f81611479565b82525050565b5f6060820190506117a85f830186611786565b6117b56020830185611525565b6117c26040830184611525565b949350505050565b5f6020820190506117dd5f830184611786565b92915050565b5f6040820190506117f65f830185611525565b6118036020830184611525565b9392505050565b5f60408201905061181d5f830185611786565b61182a60208301846115fb565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611868826114b4565b9150611873836114b4565b925082820190508082111561188b5761188a611831565b5b9291505056fea2646970667358221220f8d39c01c2658d87200bcdd366d28de7dbe23d7c31b05bccc45548358bee838d64736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084465666973706f74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453504f5400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c80633dd1eb61116100b6578063a0712d681161007a578063a0712d681461038a578063a217fddf146103ba578063a9059cbb146103d8578063d547741f14610408578063dd62ed3e14610424578063fe6d81241461045457610140565b80633dd1eb61146102d257806352a94acf146102ee57806370a082311461030c57806391d148541461033c57806395d89b411461036c57610140565b8063248a9ca311610108578063248a9ca3146102105780632f2ff15d14610240578063313ce5671461025c57806332cb6b0c1461027a578063355274ea1461029857806336568abe146102b657610140565b806301ffc9a71461014457806306fdde0314610174578063095ea7b31461019257806318160ddd146101c257806323b872dd146101e0575b5f80fd5b61015e60048036038101906101599190611352565b610472565b60405161016b9190611397565b60405180910390f35b61017c6104eb565b604051610189919061143a565b60405180910390f35b6101ac60048036038101906101a791906114e7565b61057b565b6040516101b99190611397565b60405180910390f35b6101ca61059d565b6040516101d79190611534565b60405180910390f35b6101fa60048036038101906101f5919061154d565b6105a6565b6040516102079190611397565b60405180910390f35b61022a600480360381019061022591906115d0565b6105d4565b604051610237919061160a565b60405180910390f35b61025a60048036038101906102559190611623565b6105f1565b005b610264610613565b604051610271919061167c565b60405180910390f35b61028261061b565b60405161028f9190611534565b60405180910390f35b6102a061062b565b6040516102ad9190611534565b60405180910390f35b6102d060048036038101906102cb9190611623565b610652565b005b6102ec60048036038101906102e79190611695565b6106cd565b005b6102f6610726565b604051610303919061160a565b60405180910390f35b61032660048036038101906103219190611695565b61074a565b6040516103339190611534565b60405180910390f35b61035660048036038101906103519190611623565b61078f565b6040516103639190611397565b60405180910390f35b6103746107f3565b604051610381919061143a565b60405180910390f35b6103a4600480360381019061039f91906116c0565b610883565b6040516103b19190611397565b60405180910390f35b6103c26108c2565b6040516103cf919061160a565b60405180910390f35b6103f260048036038101906103ed91906114e7565b6108c8565b6040516103ff9190611397565b60405180910390f35b610422600480360381019061041d9190611623565b6108ea565b005b61043e600480360381019061043991906116eb565b61090c565b60405161044b9190611534565b60405180910390f35b61045c61098e565b604051610469919061160a565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104e457506104e3826109b2565b5b9050919050565b6060600380546104fa90611756565b80601f016020809104026020016040519081016040528092919081815260200182805461052690611756565b80156105715780601f1061054857610100808354040283529160200191610571565b820191905f5260205f20905b81548152906001019060200180831161055457829003601f168201915b5050505050905090565b5f80610585610a1b565b9050610592818585610a22565b600191505092915050565b5f600254905090565b5f806105b0610a1b565b90506105bd858285610a34565b6105c8858585610ac6565b60019150509392505050565b5f60055f8381526020019081526020015f20600101549050919050565b6105fa826105d4565b61060381610bb6565b61060d8383610bca565b50505050565b5f6012905090565b6b033b2e3c9fd0803ce800000081565b5f7f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000905090565b61065a610a1b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106be576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106c88282610cb4565b505050565b7fb07a22a5a49a5a536854325d51f6d29f5884ea57ef092edee3e5d11ccbd76f346106f781610bb6565b6107217ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc983610bca565b505050565b7fb07a22a5a49a5a536854325d51f6d29f5884ea57ef092edee3e5d11ccbd76f3481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60055f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60606004805461080290611756565b80601f016020809104026020016040519081016040528092919081815260200182805461082e90611756565b80156108795780601f1061085057610100808354040283529160200191610879565b820191905f5260205f20905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b5f7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc96108ae81610bb6565b6108b83384610d9e565b6001915050919050565b5f801b81565b5f806108d2610a1b565b90506108df818585610ac6565b600191505092915050565b6108f3826105d4565b6108fc81610bb6565b6109068383610cb4565b50505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc981565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b610a2f8383836001610e1d565b505050565b5f610a3f848461090c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ac05781811015610ab1578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610aa893929190611795565b60405180910390fd5b610abf84848484035f610e1d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b36575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610b2d91906117ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ba6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b9d91906117ca565b60405180910390fd5b610bb1838383610fec565b505050565b610bc781610bc2610a1b565b61108f565b50565b5f610bd5838361078f565b610caa57600160055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610c47610a1b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610cae565b5f90505b92915050565b5f610cbf838361078f565b15610d94575f60055f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610d31610a1b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610d98565b5f90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e0e575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610e0591906117ca565b60405180910390fd5b610e195f8383610fec565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e8d575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e8491906117ca565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610efd575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ef491906117ca565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610fe6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610fdd9190611534565b60405180910390a35b50505050565b610ff78383836110e0565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361108a575f61103361062b565b90505f61103e61059d565b9050818111156110875780826040517f9e79f85400000000000000000000000000000000000000000000000000000000815260040161107e9291906117e3565b60405180910390fd5b50505b505050565b611099828261078f565b6110dc5780826040517fe2517d3f0000000000000000000000000000000000000000000000000000000081526004016110d392919061180a565b60405180910390fd5b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611130578060025f828254611124919061185e565b925050819055506111fe565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111b9578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111b093929190611795565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611245578060025f828254039250508190555061128f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112ec9190611534565b60405180910390a3505050565b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611331816112fd565b811461133b575f80fd5b50565b5f8135905061134c81611328565b92915050565b5f60208284031215611367576113666112f9565b5b5f6113748482850161133e565b91505092915050565b5f8115159050919050565b6113918161137d565b82525050565b5f6020820190506113aa5f830184611388565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156113e75780820151818401526020810190506113cc565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61140c826113b0565b61141681856113ba565b93506114268185602086016113ca565b61142f816113f2565b840191505092915050565b5f6020820190508181035f8301526114528184611402565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114838261145a565b9050919050565b61149381611479565b811461149d575f80fd5b50565b5f813590506114ae8161148a565b92915050565b5f819050919050565b6114c6816114b4565b81146114d0575f80fd5b50565b5f813590506114e1816114bd565b92915050565b5f80604083850312156114fd576114fc6112f9565b5b5f61150a858286016114a0565b925050602061151b858286016114d3565b9150509250929050565b61152e816114b4565b82525050565b5f6020820190506115475f830184611525565b92915050565b5f805f60608486031215611564576115636112f9565b5b5f611571868287016114a0565b9350506020611582868287016114a0565b9250506040611593868287016114d3565b9150509250925092565b5f819050919050565b6115af8161159d565b81146115b9575f80fd5b50565b5f813590506115ca816115a6565b92915050565b5f602082840312156115e5576115e46112f9565b5b5f6115f2848285016115bc565b91505092915050565b6116048161159d565b82525050565b5f60208201905061161d5f8301846115fb565b92915050565b5f8060408385031215611639576116386112f9565b5b5f611646858286016115bc565b9250506020611657858286016114a0565b9150509250929050565b5f60ff82169050919050565b61167681611661565b82525050565b5f60208201905061168f5f83018461166d565b92915050565b5f602082840312156116aa576116a96112f9565b5b5f6116b7848285016114a0565b91505092915050565b5f602082840312156116d5576116d46112f9565b5b5f6116e2848285016114d3565b91505092915050565b5f8060408385031215611701576117006112f9565b5b5f61170e858286016114a0565b925050602061171f858286016114a0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061176d57607f821691505b6020821081036117805761177f611729565b5b50919050565b61178f81611479565b82525050565b5f6060820190506117a85f830186611786565b6117b56020830185611525565b6117c26040830184611525565b949350505050565b5f6020820190506117dd5f830184611786565b92915050565b5f6040820190506117f65f830185611525565b6118036020830184611525565b9392505050565b5f60408201905061181d5f830185611786565b61182a60208301846115fb565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611868826114b4565b9150611873836114b4565b925082820190508082111561188b5761188a611831565b5b9291505056fea2646970667358221220f8d39c01c2658d87200bcdd366d28de7dbe23d7c31b05bccc45548358bee838d64736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084465666973706f74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453504f5400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Defispot
Arg [1] : _symbol (string): SPOT
Arg [2] : initialSpotToMint (uint256): 0

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4465666973706f74000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 53504f5400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36583:990:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15514:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25691:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27984:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26793:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28752:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16794:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17226:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26644:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36643:53;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35988:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18363:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37305:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36762:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26955:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15810:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25901:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37435:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15122:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27278:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17657:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27523:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36703:52;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15514:204;15599:4;15638:32;15623:47;;;:11;:47;;;;:87;;;;15674:36;15698:11;15674:23;:36::i;:::-;15623:87;15616:94;;15514:204;;;:::o;25691:91::-;25736:13;25769:5;25762:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25691:91;:::o;27984:190::-;28057:4;28074:13;28090:12;:10;:12::i;:::-;28074:28;;28113:31;28122:5;28129:7;28138:5;28113:8;:31::i;:::-;28162:4;28155:11;;;27984:190;;;;:::o;26793:99::-;26845:7;26872:12;;26865:19;;26793:99;:::o;28752:249::-;28839:4;28856:15;28874:12;:10;:12::i;:::-;28856:30;;28897:37;28913:4;28919:7;28928:5;28897:15;:37::i;:::-;28945:26;28955:4;28961:2;28965:5;28945:9;:26::i;:::-;28989:4;28982:11;;;28752:249;;;;;:::o;16794:122::-;16859:7;16886:6;:12;16893:4;16886:12;;;;;;;;;;;:22;;;16879:29;;16794:122;;;:::o;17226:138::-;17300:18;17313:4;17300:12;:18::i;:::-;15406:16;15417:4;15406:10;:16::i;:::-;17331:25:::1;17342:4;17348:7;17331:10;:25::i;:::-;;17226:138:::0;;;:::o;26644:84::-;26693:5;26718:2;26711:9;;26644:84;:::o;36643:53::-;36680:16;36643:53;:::o;35988:83::-;36032:7;36059:4;36052:11;;35988:83;:::o;18363:251::-;18479:12;:10;:12::i;:::-;18457:34;;:18;:34;;;18453:104;;18515:30;;;;;;;;;;;;;;18453:104;18569:37;18581:4;18587:18;18569:11;:37::i;:::-;;18363:251;;:::o;37305:122::-;36801:25;15406:16;15417:4;15406:10;:16::i;:::-;37391:28:::1;36736:19;37410:8;37391:10;:28::i;:::-;;37305:122:::0;;:::o;36762:64::-;36801:25;36762:64;:::o;26955:118::-;27020:7;27047:9;:18;27057:7;27047:18;;;;;;;;;;;;;;;;27040:25;;26955:118;;;:::o;15810:138::-;15887:4;15911:6;:12;15918:4;15911:12;;;;;;;;;;;:20;;:29;15932:7;15911:29;;;;;;;;;;;;;;;;;;;;;;;;;15904:36;;15810:138;;;;:::o;25901:95::-;25948:13;25981:7;25974:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25901:95;:::o;37435:135::-;37498:4;36736:19;15406:16;15417:4;15406:10;:16::i;:::-;37515:25:::1;37521:10;37533:6;37515:5;:25::i;:::-;37558:4;37551:11;;37435:135:::0;;;;:::o;15122:49::-;15167:4;15122:49;;;:::o;27278:182::-;27347:4;27364:13;27380:12;:10;:12::i;:::-;27364:28;;27403:27;27413:5;27420:2;27424:5;27403:9;:27::i;:::-;27448:4;27441:11;;;27278:182;;;;:::o;17657:140::-;17732:18;17745:4;17732:12;:18::i;:::-;15406:16;15417:4;15406:10;:16::i;:::-;17763:26:::1;17775:4;17781:7;17763:11;:26::i;:::-;;17657:140:::0;;;:::o;27523:142::-;27603:7;27630:11;:18;27642:5;27630:18;;;;;;;;;;;;;;;:27;27649:7;27630:27;;;;;;;;;;;;;;;;27623:34;;27523:142;;;;:::o;36703:52::-;36736:19;36703:52;:::o;1714:148::-;1790:4;1829:25;1814:40;;;:11;:40;;;;1807:47;;1714:148;;;:::o;12684:98::-;12737:7;12764:10;12757:17;;12684:98;:::o;32811:130::-;32896:37;32905:5;32912:7;32921:5;32928:4;32896:8;:37::i;:::-;32811:130;;;:::o;34527:487::-;34627:24;34654:25;34664:5;34671:7;34654:9;:25::i;:::-;34627:52;;34714:17;34694:16;:37;34690:317;;34771:5;34752:16;:24;34748:132;;;34831:7;34840:16;34858:5;34804:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;34748:132;34923:57;34932:5;34939:7;34967:5;34948:16;:24;34974:5;34923:8;:57::i;:::-;34690:317;34616:398;34527:487;;;:::o;29386:308::-;29486:1;29470:18;;:4;:18;;;29466:88;;29539:1;29512:30;;;;;;;;;;;:::i;:::-;;;;;;;;29466:88;29582:1;29568:16;;:2;:16;;;29564:88;;29637:1;29608:32;;;;;;;;;;;:::i;:::-;;;;;;;;29564:88;29662:24;29670:4;29676:2;29680:5;29662:7;:24::i;:::-;29386:308;;;:::o;16163:105::-;16230:30;16241:4;16247:12;:10;:12::i;:::-;16230:10;:30::i;:::-;16163:105;:::o;19240:324::-;19317:4;19339:22;19347:4;19353:7;19339;:22::i;:::-;19334:223;;19410:4;19378:6;:12;19385:4;19378:12;;;;;;;;;;;:20;;:29;19399:7;19378:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;19461:12;:10;:12::i;:::-;19434:40;;19452:7;19434:40;;19446:4;19434:40;;;;;;;;;;19496:4;19489:11;;;;19334:223;19540:5;19533:12;;19240:324;;;;;:::o;19808:325::-;19886:4;19907:22;19915:4;19921:7;19907;:22::i;:::-;19903:223;;;19978:5;19946:6;:12;19953:4;19946:12;;;;;;;;;;;:20;;:29;19967:7;19946:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;20030:12;:10;:12::i;:::-;20003:40;;20021:7;20003:40;;20015:4;20003:40;;;;;;;;;;20065:4;20058:11;;;;19903:223;20109:5;20102:12;;19808:325;;;;;:::o;31506:213::-;31596:1;31577:21;;:7;:21;;;31573:93;;31651:1;31622:32;;;;;;;;;;;:::i;:::-;;;;;;;;31573:93;31676:35;31692:1;31696:7;31705:5;31676:7;:35::i;:::-;31506:213;;:::o;33792:443::-;33922:1;33905:19;;:5;:19;;;33901:91;;33977:1;33948:32;;;;;;;;;;;:::i;:::-;;;;;;;;33901:91;34025:1;34006:21;;:7;:21;;;34002:92;;34079:1;34051:31;;;;;;;;;;;:::i;:::-;;;;;;;;34002:92;34134:5;34104:11;:18;34116:5;34104:18;;;;;;;;;;;;;;;:27;34123:7;34104:27;;;;;;;;;;;;;;;:35;;;;34154:9;34150:78;;;34201:7;34185:31;;34194:5;34185:31;;;34210:5;34185:31;;;;;;:::i;:::-;;;;;;;;34150:78;33792:443;;;;:::o;36131:381::-;36226:30;36240:4;36246:2;36250:5;36226:13;:30::i;:::-;36289:1;36273:18;;:4;:18;;;36269:236;;36308:17;36328:5;:3;:5::i;:::-;36308:25;;36348:14;36365:13;:11;:13::i;:::-;36348:30;;36406:9;36397:6;:18;36393:101;;;36460:6;36468:9;36443:35;;;;;;;;;;;;:::i;:::-;;;;;;;;36393:101;36293:212;;36269:236;36131:381;;;:::o;16404:201::-;16493:22;16501:4;16507:7;16493;:22::i;:::-;16488:110;;16572:7;16581:4;16539:47;;;;;;;;;;;;:::i;:::-;;;;;;;;16488:110;16404:201;;:::o;30018:1135::-;30124:1;30108:18;;:4;:18;;;30104:552;;30262:5;30246:12;;:21;;;;;;;:::i;:::-;;;;;;;;30104:552;;;30300:19;30322:9;:15;30332:4;30322:15;;;;;;;;;;;;;;;;30300:37;;30370:5;30356:11;:19;30352:117;;;30428:4;30434:11;30447:5;30403:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;30352:117;30624:5;30610:11;:19;30592:9;:15;30602:4;30592:15;;;;;;;;;;;;;;;:37;;;;30285:371;30104:552;30686:1;30672:16;;:2;:16;;;30668:435;;30854:5;30838:12;;:21;;;;;;;;;;;30668:435;;;31071:5;31054:9;:13;31064:2;31054:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;30668:435;31135:2;31120:25;;31129:4;31120:25;;;31139:5;31120:25;;;;;;:::i;:::-;;;;;;;;30018:1135;;;:::o;88:117:1:-;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:118::-;4290:24;4308:5;4290:24;:::i;:::-;4285:3;4278:37;4203:118;;:::o;4327:222::-;4420:4;4458:2;4447:9;4443:18;4435:26;;4471:71;4539:1;4528:9;4524:17;4515:6;4471:71;:::i;:::-;4327:222;;;;:::o;4555:619::-;4632:6;4640;4648;4697:2;4685:9;4676:7;4672:23;4668:32;4665:119;;;4703:79;;:::i;:::-;4665:119;4823:1;4848:53;4893:7;4884:6;4873:9;4869:22;4848:53;:::i;:::-;4838:63;;4794:117;4950:2;4976:53;5021:7;5012:6;5001:9;4997:22;4976:53;:::i;:::-;4966:63;;4921:118;5078:2;5104:53;5149:7;5140:6;5129:9;5125:22;5104:53;:::i;:::-;5094:63;;5049:118;4555:619;;;;;:::o;5180:77::-;5217:7;5246:5;5235:16;;5180:77;;;:::o;5263:122::-;5336:24;5354:5;5336:24;:::i;:::-;5329:5;5326:35;5316:63;;5375:1;5372;5365:12;5316:63;5263:122;:::o;5391:139::-;5437:5;5475:6;5462:20;5453:29;;5491:33;5518:5;5491:33;:::i;:::-;5391:139;;;;:::o;5536:329::-;5595:6;5644:2;5632:9;5623:7;5619:23;5615:32;5612:119;;;5650:79;;:::i;:::-;5612:119;5770:1;5795:53;5840:7;5831:6;5820:9;5816:22;5795:53;:::i;:::-;5785:63;;5741:117;5536:329;;;;:::o;5871:118::-;5958:24;5976:5;5958:24;:::i;:::-;5953:3;5946:37;5871:118;;:::o;5995:222::-;6088:4;6126:2;6115:9;6111:18;6103:26;;6139:71;6207:1;6196:9;6192:17;6183:6;6139:71;:::i;:::-;5995:222;;;;:::o;6223:474::-;6291:6;6299;6348:2;6336:9;6327:7;6323:23;6319:32;6316:119;;;6354:79;;:::i;:::-;6316:119;6474:1;6499:53;6544:7;6535:6;6524:9;6520:22;6499:53;:::i;:::-;6489:63;;6445:117;6601:2;6627:53;6672:7;6663:6;6652:9;6648:22;6627:53;:::i;:::-;6617:63;;6572:118;6223:474;;;;;:::o;6703:86::-;6738:7;6778:4;6771:5;6767:16;6756:27;;6703:86;;;:::o;6795:112::-;6878:22;6894:5;6878:22;:::i;:::-;6873:3;6866:35;6795:112;;:::o;6913:214::-;7002:4;7040:2;7029:9;7025:18;7017:26;;7053:67;7117:1;7106:9;7102:17;7093:6;7053:67;:::i;:::-;6913:214;;;;:::o;7133:329::-;7192:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:119;;;7247:79;;:::i;:::-;7209:119;7367:1;7392:53;7437:7;7428:6;7417:9;7413:22;7392:53;:::i;:::-;7382:63;;7338:117;7133:329;;;;:::o;7468:::-;7527:6;7576:2;7564:9;7555:7;7551:23;7547:32;7544:119;;;7582:79;;:::i;:::-;7544:119;7702:1;7727:53;7772:7;7763:6;7752:9;7748:22;7727:53;:::i;:::-;7717:63;;7673:117;7468:329;;;;:::o;7803:474::-;7871:6;7879;7928:2;7916:9;7907:7;7903:23;7899:32;7896:119;;;7934:79;;:::i;:::-;7896:119;8054:1;8079:53;8124:7;8115:6;8104:9;8100:22;8079:53;:::i;:::-;8069:63;;8025:117;8181:2;8207:53;8252:7;8243:6;8232:9;8228:22;8207:53;:::i;:::-;8197:63;;8152:118;7803:474;;;;;:::o;8283:180::-;8331:77;8328:1;8321:88;8428:4;8425:1;8418:15;8452:4;8449:1;8442:15;8469:320;8513:6;8550:1;8544:4;8540:12;8530:22;;8597:1;8591:4;8587:12;8618:18;8608:81;;8674:4;8666:6;8662:17;8652:27;;8608:81;8736:2;8728:6;8725:14;8705:18;8702:38;8699:84;;8755:18;;:::i;:::-;8699:84;8520:269;8469:320;;;:::o;8795:118::-;8882:24;8900:5;8882:24;:::i;:::-;8877:3;8870:37;8795:118;;:::o;8919:442::-;9068:4;9106:2;9095:9;9091:18;9083:26;;9119:71;9187:1;9176:9;9172:17;9163:6;9119:71;:::i;:::-;9200:72;9268:2;9257:9;9253:18;9244:6;9200:72;:::i;:::-;9282;9350:2;9339:9;9335:18;9326:6;9282:72;:::i;:::-;8919:442;;;;;;:::o;9367:222::-;9460:4;9498:2;9487:9;9483:18;9475:26;;9511:71;9579:1;9568:9;9564:17;9555:6;9511:71;:::i;:::-;9367:222;;;;:::o;9595:332::-;9716:4;9754:2;9743:9;9739:18;9731:26;;9767:71;9835:1;9824:9;9820:17;9811:6;9767:71;:::i;:::-;9848:72;9916:2;9905:9;9901:18;9892:6;9848:72;:::i;:::-;9595:332;;;;;:::o;9933:::-;10054:4;10092:2;10081:9;10077:18;10069:26;;10105:71;10173:1;10162:9;10158:17;10149:6;10105:71;:::i;:::-;10186:72;10254:2;10243:9;10239:18;10230:6;10186:72;:::i;:::-;9933:332;;;;;:::o;10271:180::-;10319:77;10316:1;10309:88;10416:4;10413:1;10406:15;10440:4;10437:1;10430:15;10457:191;10497:3;10516:20;10534:1;10516:20;:::i;:::-;10511:25;;10550:20;10568:1;10550:20;:::i;:::-;10545:25;;10593:1;10590;10586:9;10579:16;;10614:3;10611:1;10608:10;10605:36;;;10621:18;;:::i;:::-;10605:36;10457:191;;;;:::o

Swarm Source

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