ETH Price: $3,468.63 (-0.08%)
Gas: 5 Gwei

Token

Token Art Art Tokens (TOKEN)
 

Overview

Max Total Supply

300 TOKEN

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TOKEN
0x87f669c0ee22c42be261dd74143e716748ba11ba
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TokenArt

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-10
*/

// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.11.2 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @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.
     *
     * _Available since v3.1._
     */
    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 `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}


// File @openzeppelin/contracts/utils/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/utils/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;




/**
 * @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:
 *
 * ```
 * 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}:
 *
 * ```
 * 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.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    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 override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @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 override 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.
     */
    function grantRole(bytes32 role, address account) public virtual override 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.
     */
    function revokeRole(bytes32 role, address account) public virtual override 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 `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @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 Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

// License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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


// File contracts/TokenArt.sol

// License-Identifier: MIT
pragma solidity ^0.8.2;
interface TokenURIContract {
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

/**
  @title Token Art Art Tokens
  @author Token Art x ZKLadder
 */
contract TokenArt is ERC721, AccessControl {
    // Collection level metadata
    string public contractURI;

    address private tokenURIContract;

    using Counters for Counters.Counter;
    Counters.Counter private _totalSupply;

    uint128 public maxSupply = 300;
    uint128 private royaltyBasis = 500;

    constructor(
        string memory _contractURI
    ) ERC721("Token Art Art Tokens", "TOKEN") {
        contractURI = _contractURI;
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(
            DEFAULT_ADMIN_ROLE,
            0x47144372eb383466D18FC91DB9Cd0396Aa6c87A4
        );
    }

    // Getters
    function totalSupply() public view returns (uint256) {
        return _totalSupply.current();
    }

    function tokenURI(
        uint256 tokenId
    ) public view override returns (string memory) {
        require(
            tokenId < totalSupply(),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return TokenURIContract(tokenURIContract).tokenURI(tokenId);
    }

    /**
     * EIP-2981 compliant royalty info
     */
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (address receiver, uint256 royaltyAmount) {
        return (tokenURIContract, uint256((_salePrice * royaltyBasis) / 10000));
    }

    /**
      @notice Allows any account assigned the DEFAULT_ADMIN_ROLE to mint new tokens
      @param to Address which will own newly minted tokens
      @param quantity Number of tokens to mint
     */
    function batchMintTo(
        address to,
        uint256 quantity
    ) public payable onlyRole(DEFAULT_ADMIN_ROLE) {
        require(
            (totalSupply() + quantity) <= maxSupply,
            "Cannot mint more then 300"
        );
        for (uint i = 0; i < quantity; i++) {
            uint256 tokenId = totalSupply();
            _safeMint(to, tokenId);
            _totalSupply.increment();
        }
    }

    /**
      @notice Enables any account assigned the DEFAULT_ADMIN_ROLE to set the contractURI
      @param newContractURI New contractURI string
     */
    function setContractUri(
        string memory newContractURI
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        contractURI = newContractURI;
    }

    /**
      @notice Enables any account assigned the DEFAULT_ADMIN_ROLE to set the tokenURIContract
      @param newTokenURIContract New contractURI string
     */
    function setTokenURIContract(
        address newTokenURIContract
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        tokenURIContract = newTokenURIContract;
    }

    /**
      @notice Enables any account assigned the DEFAULT_ADMIN_ROLE to set recommended royalty in basis points
      @param newRoyaltyBasis New contractURI string
     */
    function setRoyaltyBasis(
        uint128 newRoyaltyBasis
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(newRoyaltyBasis <= 10000, "ERC2981Royalties: Too high");
        royaltyBasis = newRoyaltyBasis;
    }

    function supportsInterface(
        bytes4 interfaceId
    ) public view override(ERC721, AccessControl) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"batchMintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"newRoyaltyBasis","type":"uint128"}],"name":"setRoyaltyBasis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTokenURIContract","type":"address"}],"name":"setTokenURIContract","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a8054607d60821b6001600160801b031990911661012c176001600160801b03161790553480156200003657600080fd5b50604051620022ee380380620022ee83398101604081905262000059916200026a565b604080518082018252601481527f546f6b656e204172742041727420546f6b656e730000000000000000000000006020808301918252835180850190945260058452642a27a5a2a760d91b908401528151919291620000bb91600091620001c4565b508051620000d1906001906020840190620001c4565b50508151620000e991506007906020840190620001c4565b50620000f76000336200011f565b6200011860007347144372eb383466d18fc91db9cd0396aa6c87a46200011f565b5062000393565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620001c05760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200017f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b828054620001d29062000340565b90600052602060002090601f016020900481019282620001f6576000855562000241565b82601f106200021157805160ff191683800117855562000241565b8280016001018555821562000241579182015b828111156200024157825182559160200191906001019062000224565b506200024f92915062000253565b5090565b5b808211156200024f576000815560010162000254565b600060208083850312156200027d578182fd5b82516001600160401b038082111562000294578384fd5b818501915085601f830112620002a8578384fd5b815181811115620002bd57620002bd6200037d565b604051601f8201601f19908116603f01168101908382118183101715620002e857620002e86200037d565b81604052828152888684870101111562000300578687fd5b8693505b8284101562000323578484018601518185018701529285019262000304565b828411156200033457868684830101525b98975050505050505050565b6002810460018216806200035557607f821691505b602082108114156200037757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611f4b80620003a36000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063c87b56dd1161008a578063d5abeb0111610064578063d5abeb01146104ce578063e7e5107014610506578063e8a3d48514610519578063e985e9c51461052e5761019c565b8063c87b56dd1461046e578063ccb4807b1461048e578063d547741f146104ae5761019c565b806395d89b41116100c657806395d89b4114610404578063a217fddf14610419578063a22cb4651461042e578063b88d4fde1461044e5761019c565b806370a08231146103a457806382fc3147146103c457806391d14854146103e45761019c565b8063248a9ca31161015957806336568abe1161013357806336568abe146103245780633da9518a1461034457806342842e0e146103645780636352211e146103845761019c565b8063248a9ca3146102955780632a55205a146102c55780632f2ff15d146103045761019c565b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611aa6565b610577565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61058a565b6040516101cd9190611cbd565b34801561020457600080fd5b50610218610213366004611a6c565b61061c565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611a43565b6106b6565b005b34801561025e57600080fd5b506102676107cc565b6040519081526020016101cd565b34801561028157600080fd5b50610250610290366004611955565b6107dc565b3480156102a157600080fd5b506102676102b0366004611a6c565b60009081526006602052604090206001015490565b3480156102d157600080fd5b506102e56102e0366004611bbe565b61080d565b604080516001600160a01b0390931683526020830191909152016101cd565b34801561031057600080fd5b5061025061031f366004611a84565b610857565b34801561033057600080fd5b5061025061033f366004611a84565b61087c565b34801561035057600080fd5b5061025061035f366004611b97565b6108fa565b34801561037057600080fd5b5061025061037f366004611955565b610980565b34801561039057600080fd5b5061021861039f366004611a6c565b61099b565b3480156103b057600080fd5b506102676103bf366004611909565b610a12565b3480156103d057600080fd5b506102506103df366004611909565b610a99565b3480156103f057600080fd5b506101c16103ff366004611a84565b610ac7565b34801561041057600080fd5b506101eb610af2565b34801561042557600080fd5b50610267600081565b34801561043a57600080fd5b50610250610449366004611a09565b610b01565b34801561045a57600080fd5b50610250610469366004611990565b610b0c565b34801561047a57600080fd5b506101eb610489366004611a6c565b610b44565b34801561049a57600080fd5b506102506104a9366004611ade565b610c34565b3480156104ba57600080fd5b506102506104c9366004611a84565b610c52565b3480156104da57600080fd5b50600a546104ee906001600160801b031681565b6040516001600160801b0390911681526020016101cd565b610250610514366004611a43565b610c77565b34801561052557600080fd5b506101eb610d31565b34801561053a57600080fd5b506101c1610549366004611923565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061058282610dbf565b90505b919050565b60606000805461059990611e7d565b80601f01602080910402602001604051908101604052809291908181526020018280546105c590611e7d565b80156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c18261099b565b9050806001600160a01b0316836001600160a01b0316141561072f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610691565b336001600160a01b038216148061074b575061074b8133610549565b6107bd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610691565b6107c78383610de4565b505050565b60006107d760095490565b905090565b6107e63382610e52565b6108025760405162461bcd60e51b815260040161069190611d22565b6107c7838383610f49565b600854600a5460009182916001600160a01b03909116906127109061084290600160801b90046001600160801b031686611e04565b61084c9190611de4565b915091509250929050565b600082815260066020526040902060010154610872816110e5565b6107c783836110f2565b6001600160a01b03811633146108ec5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610691565b6108f68282611178565b5050565b6000610905816110e5565b612710826001600160801b031611156109605760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610691565b50600a80546001600160801b03928316600160801b029216919091179055565b6107c783838360405180602001604052806000815250610b0c565b6000818152600260205260408120546001600160a01b0316806105825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610691565b60006001600160a01b038216610a7d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610691565b506001600160a01b031660009081526003602052604090205490565b6000610aa4816110e5565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461059990611e7d565b6108f63383836111df565b610b163383610e52565b610b325760405162461bcd60e51b815260040161069190611d22565b610b3e848484846112ae565b50505050565b6060610b4e6107cc565b8210610bb45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610691565b60085460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b158015610bf857600080fd5b505afa158015610c0c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105829190810190611b24565b6000610c3f816110e5565b81516107c790600790602085019061181b565b600082815260066020526040902060010154610c6d816110e5565b6107c78383611178565b6000610c82816110e5565b600a546001600160801b031682610c976107cc565b610ca19190611dcc565b1115610cef5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e74206d6f7265207468656e20333030000000000000006044820152606401610691565b60005b82811015610b3e576000610d046107cc565b9050610d1085826112e1565b610d1e600980546001019055565b5080610d2981611eb8565b915050610cf2565b60078054610d3e90611e7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6a90611e7d565b8015610db75780601f10610d8c57610100808354040283529160200191610db7565b820191906000526020600020905b815481529060010190602001808311610d9a57829003601f168201915b505050505081565b60006001600160e01b03198216637965db0b60e01b14806105825750610582826112fb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e198261099b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ecb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610691565b6000610ed68361099b565b9050806001600160a01b0316846001600160a01b03161480610f1d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f415750836001600160a01b0316610f368461061c565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f5c8261099b565b6001600160a01b031614610fc05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610691565b6001600160a01b0382166110225760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610691565b61102d600082610de4565b6001600160a01b0383166000908152600360205260408120805460019290611056908490611e23565b90915550506001600160a01b0382166000908152600360205260408120805460019290611084908490611dcc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46107c7565b6110ef813361134b565b50565b6110fc8282610ac7565b6108f65760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556111343390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6111828282610ac7565b156108f65760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b816001600160a01b0316836001600160a01b031614156112415760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610691565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112b9848484610f49565b6112c5848484846113af565b610b3e5760405162461bcd60e51b815260040161069190611cd0565b6108f68282604051806020016040528060008152506114bc565b60006001600160e01b031982166380ac58cd60e01b148061132c57506001600160e01b03198216635b5e139f60e01b145b8061058257506301ffc9a760e01b6001600160e01b0319831614610582565b6113558282610ac7565b6108f65761136d816001600160a01b031660146114ef565b6113788360206114ef565b604051602001611389929190611c0b565b60408051601f198184030181529082905262461bcd60e51b825261069191600401611cbd565b60006001600160a01b0384163b156114b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113f3903390899088908890600401611c80565b602060405180830381600087803b15801561140d57600080fd5b505af192505050801561143d575060408051601f3d908101601f1916820190925261143a91810190611ac2565b60015b611497573d80801561146b576040519150601f19603f3d011682016040523d82523d6000602084013e611470565b606091505b50805161148f5760405162461bcd60e51b815260040161069190611cd0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f41565b506001949350505050565b6114c683836116d8565b6114d360008484846113af565b6107c75760405162461bcd60e51b815260040161069190611cd0565b606060006114fe836002611e04565b611509906002611dcc565b67ffffffffffffffff81111561152f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611559576020820181803683370190505b509050600360fc1b8160008151811061158257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106115bf57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006115e3846002611e04565b6115ee906001611dcc565b90505b6001811115611682576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061163057634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061165457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361167b81611e66565b90506115f1565b5083156116d15760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610691565b9392505050565b6001600160a01b03821661172e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610691565b6000818152600260205260409020546001600160a01b0316156117935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610691565b6001600160a01b03821660009081526003602052604081208054600192906117bc908490611dcc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46108f6565b82805461182790611e7d565b90600052602060002090601f016020900481019282611849576000855561188f565b82601f1061186257805160ff191683800117855561188f565b8280016001018555821561188f579182015b8281111561188f578251825591602001919060010190611874565b5061189b92915061189f565b5090565b5b8082111561189b57600081556001016118a0565b60006118c76118c284611da4565b611d73565b90508281528383830111156118db57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461058557600080fd5b60006020828403121561191a578081fd5b6116d1826118f2565b60008060408385031215611935578081fd5b61193e836118f2565b915061194c602084016118f2565b90509250929050565b600080600060608486031215611969578081fd5b611972846118f2565b9250611980602085016118f2565b9150604084013590509250925092565b600080600080608085870312156119a5578081fd5b6119ae856118f2565b93506119bc602086016118f2565b925060408501359150606085013567ffffffffffffffff8111156119de578182fd5b8501601f810187136119ee578182fd5b6119fd878235602084016118b4565b91505092959194509250565b60008060408385031215611a1b578182fd5b611a24836118f2565b915060208301358015158114611a38578182fd5b809150509250929050565b60008060408385031215611a55578182fd5b611a5e836118f2565b946020939093013593505050565b600060208284031215611a7d578081fd5b5035919050565b60008060408385031215611a96578182fd5b8235915061194c602084016118f2565b600060208284031215611ab7578081fd5b81356116d181611eff565b600060208284031215611ad3578081fd5b81516116d181611eff565b600060208284031215611aef578081fd5b813567ffffffffffffffff811115611b05578182fd5b8201601f81018413611b15578182fd5b610f41848235602084016118b4565b600060208284031215611b35578081fd5b815167ffffffffffffffff811115611b4b578182fd5b8201601f81018413611b5b578182fd5b8051611b696118c282611da4565b818152856020838501011115611b7d578384fd5b611b8e826020830160208601611e3a565b95945050505050565b600060208284031215611ba8578081fd5b81356001600160801b03811681146116d1578182fd5b60008060408385031215611bd0578182fd5b50508035926020909101359150565b60008151808452611bf7816020860160208601611e3a565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611c43816017850160208801611e3a565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611c74816028840160208801611e3a565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cb390830184611bdf565b9695505050505050565b6000602082526116d16020830184611bdf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611d9c57611d9c611ee9565b604052919050565b600067ffffffffffffffff821115611dbe57611dbe611ee9565b50601f01601f191660200190565b60008219821115611ddf57611ddf611ed3565b500190565b600082611dff57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611e1e57611e1e611ed3565b500290565b600082821015611e3557611e35611ed3565b500390565b60005b83811015611e55578181015183820152602001611e3d565b83811115610b3e5750506000910152565b600081611e7557611e75611ed3565b506000190190565b600281046001821680611e9157607f821691505b60208210811415611eb257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ecc57611ecc611ed3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110ef57600080fdfea2646970667358221220f16329d354297172acd9b7dc53ba9cee0a9248da9369230c7b886589f7d7a63c64736f6c6343000802003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b72656963637773357062667067366d666e7934617833767366746471617733696b71637873377a6a61777434686f6f6c6a6b6a66326275000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063c87b56dd1161008a578063d5abeb0111610064578063d5abeb01146104ce578063e7e5107014610506578063e8a3d48514610519578063e985e9c51461052e5761019c565b8063c87b56dd1461046e578063ccb4807b1461048e578063d547741f146104ae5761019c565b806395d89b41116100c657806395d89b4114610404578063a217fddf14610419578063a22cb4651461042e578063b88d4fde1461044e5761019c565b806370a08231146103a457806382fc3147146103c457806391d14854146103e45761019c565b8063248a9ca31161015957806336568abe1161013357806336568abe146103245780633da9518a1461034457806342842e0e146103645780636352211e146103845761019c565b8063248a9ca3146102955780632a55205a146102c55780632f2ff15d146103045761019c565b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611aa6565b610577565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61058a565b6040516101cd9190611cbd565b34801561020457600080fd5b50610218610213366004611a6c565b61061c565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611a43565b6106b6565b005b34801561025e57600080fd5b506102676107cc565b6040519081526020016101cd565b34801561028157600080fd5b50610250610290366004611955565b6107dc565b3480156102a157600080fd5b506102676102b0366004611a6c565b60009081526006602052604090206001015490565b3480156102d157600080fd5b506102e56102e0366004611bbe565b61080d565b604080516001600160a01b0390931683526020830191909152016101cd565b34801561031057600080fd5b5061025061031f366004611a84565b610857565b34801561033057600080fd5b5061025061033f366004611a84565b61087c565b34801561035057600080fd5b5061025061035f366004611b97565b6108fa565b34801561037057600080fd5b5061025061037f366004611955565b610980565b34801561039057600080fd5b5061021861039f366004611a6c565b61099b565b3480156103b057600080fd5b506102676103bf366004611909565b610a12565b3480156103d057600080fd5b506102506103df366004611909565b610a99565b3480156103f057600080fd5b506101c16103ff366004611a84565b610ac7565b34801561041057600080fd5b506101eb610af2565b34801561042557600080fd5b50610267600081565b34801561043a57600080fd5b50610250610449366004611a09565b610b01565b34801561045a57600080fd5b50610250610469366004611990565b610b0c565b34801561047a57600080fd5b506101eb610489366004611a6c565b610b44565b34801561049a57600080fd5b506102506104a9366004611ade565b610c34565b3480156104ba57600080fd5b506102506104c9366004611a84565b610c52565b3480156104da57600080fd5b50600a546104ee906001600160801b031681565b6040516001600160801b0390911681526020016101cd565b610250610514366004611a43565b610c77565b34801561052557600080fd5b506101eb610d31565b34801561053a57600080fd5b506101c1610549366004611923565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061058282610dbf565b90505b919050565b60606000805461059990611e7d565b80601f01602080910402602001604051908101604052809291908181526020018280546105c590611e7d565b80156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661069a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c18261099b565b9050806001600160a01b0316836001600160a01b0316141561072f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610691565b336001600160a01b038216148061074b575061074b8133610549565b6107bd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610691565b6107c78383610de4565b505050565b60006107d760095490565b905090565b6107e63382610e52565b6108025760405162461bcd60e51b815260040161069190611d22565b6107c7838383610f49565b600854600a5460009182916001600160a01b03909116906127109061084290600160801b90046001600160801b031686611e04565b61084c9190611de4565b915091509250929050565b600082815260066020526040902060010154610872816110e5565b6107c783836110f2565b6001600160a01b03811633146108ec5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610691565b6108f68282611178565b5050565b6000610905816110e5565b612710826001600160801b031611156109605760405162461bcd60e51b815260206004820152601a60248201527f45524332393831526f79616c746965733a20546f6f20686967680000000000006044820152606401610691565b50600a80546001600160801b03928316600160801b029216919091179055565b6107c783838360405180602001604052806000815250610b0c565b6000818152600260205260408120546001600160a01b0316806105825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610691565b60006001600160a01b038216610a7d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610691565b506001600160a01b031660009081526003602052604090205490565b6000610aa4816110e5565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461059990611e7d565b6108f63383836111df565b610b163383610e52565b610b325760405162461bcd60e51b815260040161069190611d22565b610b3e848484846112ae565b50505050565b6060610b4e6107cc565b8210610bb45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610691565b60085460405163c87b56dd60e01b8152600481018490526001600160a01b039091169063c87b56dd9060240160006040518083038186803b158015610bf857600080fd5b505afa158015610c0c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105829190810190611b24565b6000610c3f816110e5565b81516107c790600790602085019061181b565b600082815260066020526040902060010154610c6d816110e5565b6107c78383611178565b6000610c82816110e5565b600a546001600160801b031682610c976107cc565b610ca19190611dcc565b1115610cef5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74206d696e74206d6f7265207468656e20333030000000000000006044820152606401610691565b60005b82811015610b3e576000610d046107cc565b9050610d1085826112e1565b610d1e600980546001019055565b5080610d2981611eb8565b915050610cf2565b60078054610d3e90611e7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6a90611e7d565b8015610db75780601f10610d8c57610100808354040283529160200191610db7565b820191906000526020600020905b815481529060010190602001808311610d9a57829003601f168201915b505050505081565b60006001600160e01b03198216637965db0b60e01b14806105825750610582826112fb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e198261099b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ecb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610691565b6000610ed68361099b565b9050806001600160a01b0316846001600160a01b03161480610f1d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f415750836001600160a01b0316610f368461061c565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f5c8261099b565b6001600160a01b031614610fc05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610691565b6001600160a01b0382166110225760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610691565b61102d600082610de4565b6001600160a01b0383166000908152600360205260408120805460019290611056908490611e23565b90915550506001600160a01b0382166000908152600360205260408120805460019290611084908490611dcc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46107c7565b6110ef813361134b565b50565b6110fc8282610ac7565b6108f65760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556111343390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6111828282610ac7565b156108f65760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b816001600160a01b0316836001600160a01b031614156112415760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610691565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112b9848484610f49565b6112c5848484846113af565b610b3e5760405162461bcd60e51b815260040161069190611cd0565b6108f68282604051806020016040528060008152506114bc565b60006001600160e01b031982166380ac58cd60e01b148061132c57506001600160e01b03198216635b5e139f60e01b145b8061058257506301ffc9a760e01b6001600160e01b0319831614610582565b6113558282610ac7565b6108f65761136d816001600160a01b031660146114ef565b6113788360206114ef565b604051602001611389929190611c0b565b60408051601f198184030181529082905262461bcd60e51b825261069191600401611cbd565b60006001600160a01b0384163b156114b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113f3903390899088908890600401611c80565b602060405180830381600087803b15801561140d57600080fd5b505af192505050801561143d575060408051601f3d908101601f1916820190925261143a91810190611ac2565b60015b611497573d80801561146b576040519150601f19603f3d011682016040523d82523d6000602084013e611470565b606091505b50805161148f5760405162461bcd60e51b815260040161069190611cd0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f41565b506001949350505050565b6114c683836116d8565b6114d360008484846113af565b6107c75760405162461bcd60e51b815260040161069190611cd0565b606060006114fe836002611e04565b611509906002611dcc565b67ffffffffffffffff81111561152f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611559576020820181803683370190505b509050600360fc1b8160008151811061158257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106115bf57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006115e3846002611e04565b6115ee906001611dcc565b90505b6001811115611682576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061163057634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061165457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361167b81611e66565b90506115f1565b5083156116d15760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610691565b9392505050565b6001600160a01b03821661172e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610691565b6000818152600260205260409020546001600160a01b0316156117935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610691565b6001600160a01b03821660009081526003602052604081208054600192906117bc908490611dcc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46108f6565b82805461182790611e7d565b90600052602060002090601f016020900481019282611849576000855561188f565b82601f1061186257805160ff191683800117855561188f565b8280016001018555821561188f579182015b8281111561188f578251825591602001919060010190611874565b5061189b92915061189f565b5090565b5b8082111561189b57600081556001016118a0565b60006118c76118c284611da4565b611d73565b90508281528383830111156118db57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461058557600080fd5b60006020828403121561191a578081fd5b6116d1826118f2565b60008060408385031215611935578081fd5b61193e836118f2565b915061194c602084016118f2565b90509250929050565b600080600060608486031215611969578081fd5b611972846118f2565b9250611980602085016118f2565b9150604084013590509250925092565b600080600080608085870312156119a5578081fd5b6119ae856118f2565b93506119bc602086016118f2565b925060408501359150606085013567ffffffffffffffff8111156119de578182fd5b8501601f810187136119ee578182fd5b6119fd878235602084016118b4565b91505092959194509250565b60008060408385031215611a1b578182fd5b611a24836118f2565b915060208301358015158114611a38578182fd5b809150509250929050565b60008060408385031215611a55578182fd5b611a5e836118f2565b946020939093013593505050565b600060208284031215611a7d578081fd5b5035919050565b60008060408385031215611a96578182fd5b8235915061194c602084016118f2565b600060208284031215611ab7578081fd5b81356116d181611eff565b600060208284031215611ad3578081fd5b81516116d181611eff565b600060208284031215611aef578081fd5b813567ffffffffffffffff811115611b05578182fd5b8201601f81018413611b15578182fd5b610f41848235602084016118b4565b600060208284031215611b35578081fd5b815167ffffffffffffffff811115611b4b578182fd5b8201601f81018413611b5b578182fd5b8051611b696118c282611da4565b818152856020838501011115611b7d578384fd5b611b8e826020830160208601611e3a565b95945050505050565b600060208284031215611ba8578081fd5b81356001600160801b03811681146116d1578182fd5b60008060408385031215611bd0578182fd5b50508035926020909101359150565b60008151808452611bf7816020860160208601611e3a565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351611c43816017850160208801611e3a565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611c74816028840160208801611e3a565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cb390830184611bdf565b9695505050505050565b6000602082526116d16020830184611bdf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611d9c57611d9c611ee9565b604052919050565b600067ffffffffffffffff821115611dbe57611dbe611ee9565b50601f01601f191660200190565b60008219821115611ddf57611ddf611ed3565b500190565b600082611dff57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611e1e57611e1e611ed3565b500290565b600082821015611e3557611e35611ed3565b500390565b60005b83811015611e55578181015183820152602001611e3d565b83811115610b3e5750506000910152565b600081611e7557611e75611ed3565b506000190190565b600281046001821680611e9157607f821691505b60208210811415611eb257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ecc57611ecc611ed3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110ef57600080fdfea2646970667358221220f16329d354297172acd9b7dc53ba9cee0a9248da9369230c7b886589f7d7a63c64736f6c63430008020033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b72656963637773357062667067366d666e7934617833767366746471617733696b71637873377a6a61777434686f6f6c6a6b6a66326275000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _contractURI (string): ipfs://bafkreiccws5pbfpg6mfny4ax3vsftdqaw3ikqcxs7zjawt4hooljkjf2bu

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [2] : 697066733a2f2f6261666b72656963637773357062667067366d666e79346178
Arg [3] : 33767366746471617733696b71637873377a6a61777434686f6f6c6a6b6a6632
Arg [4] : 6275000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47981:3318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51112:184;;;;;;;;;;-1:-1:-1;51112:184:0;;;;;:::i;:::-;;:::i;:::-;;;7829:14:1;;7822:22;7804:41;;7792:2;7777:18;51112:184:0;;;;;;;;35535:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37095:221::-;;;;;;;;;;-1:-1:-1;37095:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6848:32:1;;;6830:51;;6818:2;6803:18;37095:221:0;6785:102:1;36618:411:0;;;;;;;;;;-1:-1:-1;36618:411:0;;;;;:::i;:::-;;:::i;:::-;;48648:101;;;;;;;;;;;;;:::i;:::-;;;8002:25:1;;;7990:2;7975:18;48648:101:0;7957:76:1;37845:339:0;;;;;;;;;;-1:-1:-1;37845:339:0;;;;;:::i;:::-;;:::i;14214:131::-;;;;;;;;;;-1:-1:-1;14214:131:0;;;;;:::i;:::-;14288:7;14315:12;;;:6;:12;;;;;:22;;;;14214:131;49128:238;;;;;;;;;;-1:-1:-1;49128:238:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;7577:32:1;;;7559:51;;7641:2;7626:18;;7619:34;;;;7532:18;49128:238:0;7514:145:1;14607:147:0;;;;;;;;;;-1:-1:-1;14607:147:0;;;;;:::i;:::-;;:::i;15655:218::-;;;;;;;;;;-1:-1:-1;15655:218:0;;;;;:::i;:::-;;:::i;50877:227::-;;;;;;;;;;-1:-1:-1;50877:227:0;;;;;:::i;:::-;;:::i;38255:185::-;;;;;;;;;;-1:-1:-1;38255:185:0;;;;;:::i;:::-;;:::i;35229:239::-;;;;;;;;;;-1:-1:-1;35229:239:0;;;;;:::i;:::-;;:::i;34959:208::-;;;;;;;;;;-1:-1:-1;34959:208:0;;;;;:::i;:::-;;:::i;50519:169::-;;;;;;;;;;-1:-1:-1;50519:169:0;;;;;:::i;:::-;;:::i;12674:147::-;;;;;;;;;;-1:-1:-1;12674:147:0;;;;;:::i;:::-;;:::i;35704:104::-;;;;;;;;;;;;;:::i;11779:49::-;;;;;;;;;;-1:-1:-1;11779:49:0;11824:4;11779:49;;37388:155;;;;;;;;;;-1:-1:-1;37388:155:0;;;;;:::i;:::-;;:::i;38511:328::-;;;;;;;;;;-1:-1:-1;38511:328:0;;;;;:::i;:::-;;:::i;48757:305::-;;;;;;;;;;-1:-1:-1;48757:305:0;;;;;:::i;:::-;;:::i;50186:155::-;;;;;;;;;;-1:-1:-1;50186:155:0;;;;;:::i;:::-;;:::i;14999:149::-;;;;;;;;;;-1:-1:-1;14999:149:0;;;;;:::i;:::-;;:::i;48228:30::-;;;;;;;;;;-1:-1:-1;48228:30:0;;;;-1:-1:-1;;;;;48228:30:0;;;;;;-1:-1:-1;;;;;15522:47:1;;;15504:66;;15492:2;15477:18;48228:30:0;15459:117:1;49585:433:0;;;;;;:::i;:::-;;:::i;48065:25::-;;;;;;;;;;;;;:::i;37614:164::-;;;;;;;;;;-1:-1:-1;37614:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37735:25:0;;;37711:4;37735:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37614:164;51112:184;51228:4;51252:36;51276:11;51252:23;:36::i;:::-;51245:43;;51112:184;;;;:::o;35535:100::-;35589:13;35622:5;35615:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35535:100;:::o;37095:221::-;37171:7;40438:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40438:16:0;37191:73;;;;-1:-1:-1;;;37191:73:0;;13495:2:1;37191:73:0;;;13477:21:1;13534:2;13514:18;;;13507:30;13573:34;13553:18;;;13546:62;-1:-1:-1;;;13624:18:1;;;13617:42;13676:19;;37191:73:0;;;;;;;;;-1:-1:-1;37284:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37284:24:0;;37095:221::o;36618:411::-;36699:13;36715:23;36730:7;36715:14;:23::i;:::-;36699:39;;36763:5;-1:-1:-1;;;;;36757:11:0;:2;-1:-1:-1;;;;;36757:11:0;;;36749:57;;;;-1:-1:-1;;;36749:57:0;;14324:2:1;36749:57:0;;;14306:21:1;14363:2;14343:18;;;14336:30;14402:34;14382:18;;;14375:62;-1:-1:-1;;;14453:18:1;;;14446:31;14494:19;;36749:57:0;14296:223:1;36749:57:0;5465:10;-1:-1:-1;;;;;36841:21:0;;;;:62;;-1:-1:-1;36866:37:0;36883:5;5465:10;36890:12;5385:98;36866:37;36819:168;;;;-1:-1:-1;;;36819:168:0;;11888:2:1;36819:168:0;;;11870:21:1;11927:2;11907:18;;;11900:30;11966:34;11946:18;;;11939:62;12037:26;12017:18;;;12010:54;12081:19;;36819:168:0;11860:246:1;36819:168:0;37000:21;37009:2;37013:7;37000:8;:21::i;:::-;36618:411;;;:::o;48648:101::-;48692:7;48719:22;:12;1096:14;;1004:114;48719:22;48712:29;;48648:101;:::o;37845:339::-;38040:41;5465:10;38073:7;38040:18;:41::i;:::-;38032:103;;;;-1:-1:-1;;;38032:103:0;;;;;;;:::i;:::-;38148:28;38158:4;38164:2;38168:7;38148:9;:28::i;49128:238::-;49295:16;;49335:12;;49235:16;;;;-1:-1:-1;;;;;49295:16:0;;;;49351:5;;49322:25;;-1:-1:-1;;;49335:12:0;;-1:-1:-1;;;;;49335:12:0;49322:10;:25;:::i;:::-;49321:35;;;;:::i;:::-;49287:71;;;;49128:238;;;;;:::o;14607:147::-;14288:7;14315:12;;;:6;:12;;;;;:22;;;12270:16;12281:4;12270:10;:16::i;:::-;14721:25:::1;14732:4;14738:7;14721:10;:25::i;15655:218::-:0;-1:-1:-1;;;;;15751:23:0;;5465:10;15751:23;15743:83;;;;-1:-1:-1;;;15743:83:0;;15144:2:1;15743:83:0;;;15126:21:1;15183:2;15163:18;;;15156:30;15222:34;15202:18;;;15195:62;-1:-1:-1;;;15273:18:1;;;15266:45;15328:19;;15743:83:0;15116:237:1;15743:83:0;15839:26;15851:4;15857:7;15839:11;:26::i;:::-;15655:218;;:::o;50877:227::-;11824:4;12270:16;11824:4;12270:10;:16::i;:::-;51019:5:::1;51000:15;-1:-1:-1::0;;;;;51000:24:0::1;;;50992:63;;;::::0;-1:-1:-1;;;50992:63:0;;8825:2:1;50992:63:0::1;::::0;::::1;8807:21:1::0;8864:2;8844:18;;;8837:30;8903:28;8883:18;;;8876:56;8949:18;;50992:63:0::1;8797:176:1::0;50992:63:0::1;-1:-1:-1::0;51066:12:0::1;:30:::0;;-1:-1:-1;;;;;51066:30:0;;::::1;-1:-1:-1::0;;;51066:30:0::1;::::0;::::1;::::0;;;::::1;::::0;;50877:227::o;38255:185::-;38393:39;38410:4;38416:2;38420:7;38393:39;;;;;;;;;;;;:16;:39::i;35229:239::-;35301:7;35337:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35337:16:0;35372:19;35364:73;;;;-1:-1:-1;;;35364:73:0;;12724:2:1;35364:73:0;;;12706:21:1;12763:2;12743:18;;;12736:30;12802:34;12782:18;;;12775:62;-1:-1:-1;;;12853:18:1;;;12846:39;12902:19;;35364:73:0;12696:231:1;34959:208:0;35031:7;-1:-1:-1;;;;;35059:19:0;;35051:74;;;;-1:-1:-1;;;35051:74:0;;12313:2:1;35051:74:0;;;12295:21:1;12352:2;12332:18;;;12325:30;12391:34;12371:18;;;12364:62;-1:-1:-1;;;12442:18:1;;;12435:40;12492:19;;35051:74:0;12285:232:1;35051:74:0;-1:-1:-1;;;;;;35143:16:0;;;;;:9;:16;;;;;;;34959:208::o;50519:169::-;11824:4;12270:16;11824:4;12270:10;:16::i;:::-;-1:-1:-1;50642:16:0::1;:38:::0;;-1:-1:-1;;;;;;50642:38:0::1;-1:-1:-1::0;;;;;50642:38:0;;;::::1;::::0;;;::::1;::::0;;50519:169::o;12674:147::-;12760:4;12784:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;12784:29:0;;;;;;;;;;;;;;;12674:147::o;35704:104::-;35760:13;35793:7;35786:14;;;;;:::i;37388:155::-;37483:52;5465:10;37516:8;37526;37483:18;:52::i;38511:328::-;38686:41;5465:10;38719:7;38686:18;:41::i;:::-;38678:103;;;;-1:-1:-1;;;38678:103:0;;;;;;;:::i;:::-;38792:39;38806:4;38812:2;38816:7;38825:5;38792:13;:39::i;:::-;38511:328;;;;:::o;48757:305::-;48838:13;48896;:11;:13::i;:::-;48886:7;:23;48864:120;;;;-1:-1:-1;;;48864:120:0;;13908:2:1;48864:120:0;;;13890:21:1;13947:2;13927:18;;;13920:30;13986:34;13966:18;;;13959:62;-1:-1:-1;;;14037:18:1;;;14030:45;14092:19;;48864:120:0;13880:237:1;48864:120:0;49019:16;;49002:52;;-1:-1:-1;;;49002:52:0;;;;;8002:25:1;;;-1:-1:-1;;;;;49019:16:0;;;;49002:43;;7975:18:1;;49002:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49002:52:0;;;;;;;;;;;;:::i;50186:155::-;11824:4;12270:16;11824:4;12270:10;:16::i;:::-;50305:28;;::::1;::::0;:11:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;14999:149::-:0;14288:7;14315:12;;;:6;:12;;;;;:22;;;12270:16;12281:4;12270:10;:16::i;:::-;15114:26:::1;15126:4;15132:7;15114:11;:26::i;49585:433::-:0;11824:4;12270:16;11824:4;12270:10;:16::i;:::-;49768:9:::1;::::0;-1:-1:-1;;;;;49768:9:0::1;49755:8:::0;49739:13:::1;:11;:13::i;:::-;:24;;;;:::i;:::-;49738:39;;49716:114;;;::::0;-1:-1:-1;;;49716:114:0;;10362:2:1;49716:114:0::1;::::0;::::1;10344:21:1::0;10401:2;10381:18;;;10374:30;10440:27;10420:18;;;10413:55;10485:18;;49716:114:0::1;10334:175:1::0;49716:114:0::1;49846:6;49841:170;49862:8;49858:1;:12;49841:170;;;49892:15;49910:13;:11;:13::i;:::-;49892:31;;49938:22;49948:2;49952:7;49938:9;:22::i;:::-;49975:24;:12;1215:19:::0;;1233:1;1215:19;;;1126:127;49975:24:::1;-1:-1:-1::0;49872:3:0;::::1;::::0;::::1;:::i;:::-;;;;49841:170;;48065:25:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12378:204::-;12463:4;-1:-1:-1;;;;;;12487:47:0;;-1:-1:-1;;;12487:47:0;;:87;;;12538:36;12562:11;12538:23;:36::i;44495:174::-;44570:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44570:29:0;-1:-1:-1;;;;;44570:29:0;;;;;;;;:24;;44624:23;44570:24;44624:14;:23::i;:::-;-1:-1:-1;;;;;44615:46:0;;;;;;;;;;;44495:174;;:::o;40643:348::-;40736:4;40438:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40438:16:0;40753:73;;;;-1:-1:-1;;;40753:73:0;;11475:2:1;40753:73:0;;;11457:21:1;11514:2;11494:18;;;11487:30;11553:34;11533:18;;;11526:62;-1:-1:-1;;;11604:18:1;;;11597:42;11656:19;;40753:73:0;11447:234:1;40753:73:0;40837:13;40853:23;40868:7;40853:14;:23::i;:::-;40837:39;;40906:5;-1:-1:-1;;;;;40895:16:0;:7;-1:-1:-1;;;;;40895:16:0;;:52;;;-1:-1:-1;;;;;;37735:25:0;;;37711:4;37735:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40915:32;40895:87;;;;40975:7;-1:-1:-1;;;;;40951:31:0;:20;40963:7;40951:11;:20::i;:::-;-1:-1:-1;;;;;40951:31:0;;40895:87;40887:96;40643:348;-1:-1:-1;;;;40643:348:0:o;43752:625::-;43911:4;-1:-1:-1;;;;;43884:31:0;:23;43899:7;43884:14;:23::i;:::-;-1:-1:-1;;;;;43884:31:0;;43876:81;;;;-1:-1:-1;;;43876:81:0;;9599:2:1;43876:81:0;;;9581:21:1;9638:2;9618:18;;;9611:30;9677:34;9657:18;;;9650:62;-1:-1:-1;;;9728:18:1;;;9721:35;9773:19;;43876:81:0;9571:227:1;43876:81:0;-1:-1:-1;;;;;43976:16:0;;43968:65;;;;-1:-1:-1;;;43968:65:0;;10716:2:1;43968:65:0;;;10698:21:1;10755:2;10735:18;;;10728:30;10794:34;10774:18;;;10767:62;-1:-1:-1;;;10845:18:1;;;10838:34;10889:19;;43968:65:0;10688:226:1;43968:65:0;44150:29;44167:1;44171:7;44150:8;:29::i;:::-;-1:-1:-1;;;;;44192:15:0;;;;;;:9;:15;;;;;:20;;44211:1;;44192:15;:20;;44211:1;;44192:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44223:13:0;;;;;;:9;:13;;;;;:18;;44240:1;;44223:13;:18;;44240:1;;44223:18;:::i;:::-;;;;-1:-1:-1;;44252:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44252:21:0;-1:-1:-1;;;;;44252:21:0;;;;;;;;;44291:27;;44252:16;;44291:27;;;;;;;44331:38;36618:411;13125:105;13192:30;13203:4;5465:10;13192;:30::i;:::-;13125:105;:::o;17156:238::-;17240:22;17248:4;17254:7;17240;:22::i;:::-;17235:152;;17279:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;17279:29:0;;;;;;;;;:36;;-1:-1:-1;;17279:36:0;17311:4;17279:36;;;17362:12;5465:10;5385:98;;17362:12;-1:-1:-1;;;;;17335:40:0;17353:7;-1:-1:-1;;;;;17335:40:0;17347:4;17335:40;;;;;;;;;;17156:238;;:::o;17526:239::-;17610:22;17618:4;17624:7;17610;:22::i;:::-;17606:152;;;17681:5;17649:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;17649:29:0;;;;;;;;;;:37;;-1:-1:-1;;17649:37:0;;;17706:40;5465:10;;17649:12;;17706:40;;17681:5;17706:40;17526:239;;:::o;44811:315::-;44966:8;-1:-1:-1;;;;;44957:17:0;:5;-1:-1:-1;;;;;44957:17:0;;;44949:55;;;;-1:-1:-1;;;44949:55:0;;11121:2:1;44949:55:0;;;11103:21:1;11160:2;11140:18;;;11133:30;11199:27;11179:18;;;11172:55;11244:18;;44949:55:0;11093:175:1;44949:55:0;-1:-1:-1;;;;;45015:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;45015:46:0;;;;;;;;;;45077:41;;7804::1;;;45077::0;;7777:18:1;45077:41:0;;;;;;;44811:315;;;:::o;39721:::-;39878:28;39888:4;39894:2;39898:7;39878:9;:28::i;:::-;39925:48;39948:4;39954:2;39958:7;39967:5;39925:22;:48::i;:::-;39917:111;;;;-1:-1:-1;;;39917:111:0;;;;;;;:::i;41333:110::-;41409:26;41419:2;41423:7;41409:26;;;;;;;;;;;;:9;:26::i;34590:305::-;34692:4;-1:-1:-1;;;;;;34729:40:0;;-1:-1:-1;;;34729:40:0;;:105;;-1:-1:-1;;;;;;;34786:48:0;;-1:-1:-1;;;34786:48:0;34729:105;:158;;;-1:-1:-1;;;;;;;;;;9714:40:0;;;34851:36;9605:157;13520:505;13609:22;13617:4;13623:7;13609;:22::i;:::-;13604:414;;13797:41;13825:7;-1:-1:-1;;;;;13797:41:0;13835:2;13797:19;:41::i;:::-;13911:38;13939:4;13946:2;13911:19;:38::i;:::-;13702:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;13702:270:0;;;;;;;;;;-1:-1:-1;;;13648:358:0;;;;;;;:::i;45691:799::-;45846:4;-1:-1:-1;;;;;45867:13:0;;19334:19;:23;45863:620;;45903:72;;-1:-1:-1;;;45903:72:0;;-1:-1:-1;;;;;45903:36:0;;;;;:72;;5465:10;;45954:4;;45960:7;;45969:5;;45903:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45903:72:0;;;;;;;;-1:-1:-1;;45903:72:0;;;;;;;;;;;;:::i;:::-;;;45899:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46145:13:0;;46141:272;;46188:60;;-1:-1:-1;;;46188:60:0;;;;;;;:::i;46141:272::-;46363:6;46357:13;46348:6;46344:2;46340:15;46333:38;45899:529;-1:-1:-1;;;;;;46026:51:0;-1:-1:-1;;;46026:51:0;;-1:-1:-1;46019:58:0;;45863:620;-1:-1:-1;46467:4:0;45691:799;;;;;;:::o;41670:321::-;41800:18;41806:2;41810:7;41800:5;:18::i;:::-;41851:54;41882:1;41886:2;41890:7;41899:5;41851:22;:54::i;:::-;41829:154;;;;-1:-1:-1;;;41829:154:0;;;;;;;:::i;7299:451::-;7374:13;7400:19;7432:10;7436:6;7432:1;:10;:::i;:::-;:14;;7445:1;7432:14;:::i;:::-;7422:25;;;;;;-1:-1:-1;;;7422:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7422:25:0;;7400:47;;-1:-1:-1;;;7458:6:0;7465:1;7458:9;;;;;;-1:-1:-1;;;7458:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;7458:15:0;;;;;;;;;-1:-1:-1;;;7484:6:0;7491:1;7484:9;;;;;;-1:-1:-1;;;7484:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;7484:15:0;;;;;;;;-1:-1:-1;7515:9:0;7527:10;7531:6;7527:1;:10;:::i;:::-;:14;;7540:1;7527:14;:::i;:::-;7515:26;;7510:135;7547:1;7543;:5;7510:135;;;-1:-1:-1;;;7595:5:0;7603:3;7595:11;7582:25;;;;;-1:-1:-1;;;7582:25:0;;;;;;;;;;;;7570:6;7577:1;7570:9;;;;;;-1:-1:-1;;;7570:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;7570:37:0;;;;;;;;-1:-1:-1;7632:1:0;7622:11;;;;;7550:3;;;:::i;:::-;;;7510:135;;;-1:-1:-1;7663:10:0;;7655:55;;;;-1:-1:-1;;;7655:55:0;;8464:2:1;7655:55:0;;;8446:21:1;;;8483:18;;;8476:30;8542:34;8522:18;;;8515:62;8594:18;;7655:55:0;8436:182:1;7655:55:0;7735:6;7299:451;-1:-1:-1;;;7299:451:0:o;42327:439::-;-1:-1:-1;;;;;42407:16:0;;42399:61;;;;-1:-1:-1;;;42399:61:0;;13134:2:1;42399:61:0;;;13116:21:1;;;13153:18;;;13146:30;13212:34;13192:18;;;13185:62;13264:18;;42399:61:0;13106:182:1;42399:61:0;40414:4;40438:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40438:16:0;:30;42471:58;;;;-1:-1:-1;;;42471:58:0;;10005:2:1;42471:58:0;;;9987:21:1;10044:2;10024:18;;;10017:30;10083;10063:18;;;10056:58;10131:18;;42471:58:0;9977:178:1;42471:58:0;-1:-1:-1;;;;;42600:13:0;;;;;;:9;:13;;;;;:18;;42617:1;;42600:13;:18;;42617:1;;42600:18;:::i;:::-;;;;-1:-1:-1;;42629:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42629:21:0;-1:-1:-1;;;;;42629:21:0;;;;;;;;42668:33;;42629:16;;;42668:33;;42629:16;;42668:33;42714:44;36618:411;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:336:1;;107:52;123:35;151:6;123:35;:::i;:::-;107:52;:::i;:::-;98:61;;182:6;175:5;168:21;222:3;213:6;208:3;204:16;201:25;198:2;;;239:1;236;229:12;198:2;288:6;283:3;276:4;269:5;265:16;252:43;342:1;335:4;326:6;319:5;315:18;311:29;304:40;88:262;;;;;:::o;355:173::-;423:20;;-1:-1:-1;;;;;472:31:1;;462:42;;452:2;;518:1;515;508:12;533:196;;645:2;633:9;624:7;620:23;616:32;613:2;;;666:6;658;651:22;613:2;694:29;713:9;694:29;:::i;734:270::-;;;863:2;851:9;842:7;838:23;834:32;831:2;;;884:6;876;869:22;831:2;912:29;931:9;912:29;:::i;:::-;902:39;;960:38;994:2;983:9;979:18;960:38;:::i;:::-;950:48;;821:183;;;;;:::o;1009:338::-;;;;1155:2;1143:9;1134:7;1130:23;1126:32;1123:2;;;1176:6;1168;1161:22;1123:2;1204:29;1223:9;1204:29;:::i;:::-;1194:39;;1252:38;1286:2;1275:9;1271:18;1252:38;:::i;:::-;1242:48;;1337:2;1326:9;1322:18;1309:32;1299:42;;1113:234;;;;;:::o;1352:696::-;;;;;1524:3;1512:9;1503:7;1499:23;1495:33;1492:2;;;1546:6;1538;1531:22;1492:2;1574:29;1593:9;1574:29;:::i;:::-;1564:39;;1622:38;1656:2;1645:9;1641:18;1622:38;:::i;:::-;1612:48;;1707:2;1696:9;1692:18;1679:32;1669:42;;1762:2;1751:9;1747:18;1734:32;1789:18;1781:6;1778:30;1775:2;;;1826:6;1818;1811:22;1775:2;1854:22;;1907:4;1899:13;;1895:27;-1:-1:-1;1885:2:1;;1941:6;1933;1926:22;1885:2;1969:73;2034:7;2029:2;2016:16;2011:2;2007;2003:11;1969:73;:::i;:::-;1959:83;;;1482:566;;;;;;;:::o;2053:367::-;;;2179:2;2167:9;2158:7;2154:23;2150:32;2147:2;;;2200:6;2192;2185:22;2147:2;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:2;;2381:6;2373;2366:22;2320:2;2409:5;2399:15;;;2137:283;;;;;:::o;2425:264::-;;;2554:2;2542:9;2533:7;2529:23;2525:32;2522:2;;;2575:6;2567;2560:22;2522:2;2603:29;2622:9;2603:29;:::i;:::-;2593:39;2679:2;2664:18;;;;2651:32;;-1:-1:-1;;;2512:177:1:o;2694:190::-;;2806:2;2794:9;2785:7;2781:23;2777:32;2774:2;;;2827:6;2819;2812:22;2774:2;-1:-1:-1;2855:23:1;;2764:120;-1:-1:-1;2764:120:1:o;2889:264::-;;;3018:2;3006:9;2997:7;2993:23;2989:32;2986:2;;;3039:6;3031;3024:22;2986:2;3080:9;3067:23;3057:33;;3109:38;3143:2;3132:9;3128:18;3109:38;:::i;3158:255::-;;3269:2;3257:9;3248:7;3244:23;3240:32;3237:2;;;3290:6;3282;3275:22;3237:2;3334:9;3321:23;3353:30;3377:5;3353:30;:::i;3418:259::-;;3540:2;3528:9;3519:7;3515:23;3511:32;3508:2;;;3561:6;3553;3546:22;3508:2;3598:9;3592:16;3617:30;3641:5;3617:30;:::i;3682:480::-;;3804:2;3792:9;3783:7;3779:23;3775:32;3772:2;;;3825:6;3817;3810:22;3772:2;3870:9;3857:23;3903:18;3895:6;3892:30;3889:2;;;3940:6;3932;3925:22;3889:2;3968:22;;4021:4;4013:13;;4009:27;-1:-1:-1;3999:2:1;;4055:6;4047;4040:22;3999:2;4083:73;4148:7;4143:2;4130:16;4125:2;4121;4117:11;4083:73;:::i;4167:675::-;;4300:2;4288:9;4279:7;4275:23;4271:32;4268:2;;;4321:6;4313;4306:22;4268:2;4359:9;4353:16;4392:18;4384:6;4381:30;4378:2;;;4429:6;4421;4414:22;4378:2;4457:22;;4510:4;4502:13;;4498:27;-1:-1:-1;4488:2:1;;4544:6;4536;4529:22;4488:2;4578;4572:9;4603:48;4619:31;4647:2;4619:31;:::i;4603:48::-;4674:2;4667:5;4660:17;4714:7;4709:2;4704;4700;4696:11;4692:20;4689:33;4686:2;;;4740:6;4732;4725:22;4686:2;4758:54;4809:2;4804;4797:5;4793:14;4788:2;4784;4780:11;4758:54;:::i;:::-;4831:5;4258:584;-1:-1:-1;;;;;4258:584:1:o;4847:321::-;;4959:2;4947:9;4938:7;4934:23;4930:32;4927:2;;;4980:6;4972;4965:22;4927:2;5024:9;5011:23;-1:-1:-1;;;;;5067:5:1;5063:46;5056:5;5053:57;5043:2;;5129:6;5121;5114:22;5368:258;;;5497:2;5485:9;5476:7;5472:23;5468:32;5465:2;;;5518:6;5510;5503:22;5465:2;-1:-1:-1;;5546:23:1;;;5616:2;5601:18;;;5588:32;;-1:-1:-1;5455:171:1:o;5631:257::-;;5710:5;5704:12;5737:6;5732:3;5725:19;5753:63;5809:6;5802:4;5797:3;5793:14;5786:4;5779:5;5775:16;5753:63;:::i;:::-;5870:2;5849:15;-1:-1:-1;;5845:29:1;5836:39;;;;5877:4;5832:50;;5680:208;-1:-1:-1;;5680:208:1:o;5893:786::-;;6304:25;6299:3;6292:38;6359:6;6353:13;6375:62;6430:6;6425:2;6420:3;6416:12;6409:4;6401:6;6397:17;6375:62;:::i;:::-;-1:-1:-1;;;6496:2:1;6456:16;;;6488:11;;;6481:40;6546:13;;6568:63;6546:13;6617:2;6609:11;;6602:4;6590:17;;6568:63;:::i;:::-;6651:17;6670:2;6647:26;;6282:397;-1:-1:-1;;;;6282:397:1:o;6892:488::-;-1:-1:-1;;;;;7161:15:1;;;7143:34;;7213:15;;7208:2;7193:18;;7186:43;7260:2;7245:18;;7238:34;;;7308:3;7303:2;7288:18;;7281:31;;;6892:488;;7329:45;;7354:19;;7346:6;7329:45;:::i;:::-;7321:53;7095:285;-1:-1:-1;;;;;;7095:285:1:o;8038:219::-;;8187:2;8176:9;8169:21;8207:44;8247:2;8236:9;8232:18;8224:6;8207:44;:::i;8978:414::-;9180:2;9162:21;;;9219:2;9199:18;;;9192:30;9258:34;9253:2;9238:18;;9231:62;-1:-1:-1;;;9324:2:1;9309:18;;9302:48;9382:3;9367:19;;9152:240::o;14524:413::-;14726:2;14708:21;;;14765:2;14745:18;;;14738:30;14804:34;14799:2;14784:18;;14777:62;-1:-1:-1;;;14870:2:1;14855:18;;14848:47;14927:3;14912:19;;14698:239::o;15763:275::-;15834:2;15828:9;15899:2;15880:13;;-1:-1:-1;;15876:27:1;15864:40;;15934:18;15919:34;;15955:22;;;15916:62;15913:2;;;15981:18;;:::i;:::-;16017:2;16010:22;15808:230;;-1:-1:-1;15808:230:1:o;16043:186::-;;16124:18;16116:6;16113:30;16110:2;;;16146:18;;:::i;:::-;-1:-1:-1;16212:2:1;16191:15;-1:-1:-1;;16187:29:1;16218:4;16183:40;;16100:129::o;16234:128::-;;16305:1;16301:6;16298:1;16295:13;16292:2;;;16311:18;;:::i;:::-;-1:-1:-1;16347:9:1;;16282:80::o;16367:217::-;;16433:1;16423:2;;-1:-1:-1;;;16458:31:1;;16512:4;16509:1;16502:15;16540:4;16465:1;16530:15;16423:2;-1:-1:-1;16569:9:1;;16413:171::o;16589:168::-;;16695:1;16691;16687:6;16683:14;16680:1;16677:21;16672:1;16665:9;16658:17;16654:45;16651:2;;;16702:18;;:::i;:::-;-1:-1:-1;16742:9:1;;16641:116::o;16762:125::-;;16830:1;16827;16824:8;16821:2;;;16835:18;;:::i;:::-;-1:-1:-1;16872:9:1;;16811:76::o;16892:258::-;16964:1;16974:113;16988:6;16985:1;16982:13;16974:113;;;17064:11;;;17058:18;17045:11;;;17038:39;17010:2;17003:10;16974:113;;;17105:6;17102:1;17099:13;17096:2;;;-1:-1:-1;;17140:1:1;17122:16;;17115:27;16945:205::o;17155:136::-;;17222:5;17212:2;;17231:18;;:::i;:::-;-1:-1:-1;;;17267:18:1;;17202:89::o;17296:380::-;17381:1;17371:12;;17428:1;17418:12;;;17439:2;;17493:4;17485:6;17481:17;17471:27;;17439:2;17546;17538:6;17535:14;17515:18;17512:38;17509:2;;;17592:10;17587:3;17583:20;17580:1;17573:31;17627:4;17624:1;17617:15;17655:4;17652:1;17645:15;17509:2;;17351:325;;;:::o;17681:135::-;;-1:-1:-1;;17741:17:1;;17738:2;;;17761:18;;:::i;:::-;-1:-1:-1;17808:1:1;17797:13;;17728:88::o;17821:127::-;17882:10;17877:3;17873:20;17870:1;17863:31;17913:4;17910:1;17903:15;17937:4;17934:1;17927:15;17953:127;18014:10;18009:3;18005:20;18002:1;17995:31;18045:4;18042:1;18035:15;18069:4;18066:1;18059:15;18085:131;-1:-1:-1;;;;;;18159:32:1;;18149:43;;18139:2;;18206:1;18203;18196:12

Swarm Source

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