ETH Price: $3,520.48 (+0.96%)
Gas: 2 Gwei

Token

CRYPTYQUES.NATIVE SYMBOL (CSNS)
 

Overview

Max Total Supply

549 CSNS

Holders

412

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xa89e3af6c971fd5b17782fbfaf96a603270f0518
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:
Symbol

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-15
*/

// SPDX-License-Identifier: MIT

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

// 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]

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


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

// 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]

// 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]

// OpenZeppelin Contracts (last updated v4.7.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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    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`.
     *
     * May emit a {RoleRevoked} event.
     */
    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.
     *
     * May emit a {RoleGranted} event.
     *
     * [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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    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/token/ERC1155/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}


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

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}


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

// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}


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

// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;






/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}


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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}


// File contracts/1155/Symbol.sol

pragma solidity ^0.8.0;



contract Symbol is ERC1155Supply, Ownable {
    string public name;
    string public symbol;

    // token id => max supply
    mapping(uint256 => uint256) public maxSupply;

    // token id => uri
    mapping(uint256 => string) public tokenUris;

    event SetUri(uint256 indexed, string indexed);
    event SetMaxSupply(uint256 indexed, uint256 indexed);

    constructor(string memory name_, string memory symbol_) ERC1155("") {
        name = name_;
        symbol = symbol_;
    }

    function setMaxSupply(uint256 tokenId_, uint256 maxSupply_)
        public
        onlyOwner
    {
        require(maxSupply[tokenId_] == 0, "already set");
        maxSupply[tokenId_] = maxSupply_;
        emit SetMaxSupply(tokenId_, maxSupply_);
    }

    function setUri(uint256 tokenId_, string memory uri_) public onlyOwner {
        require(!compareStrings(uri_, ""), "empty uri");
        require(!compareStrings(uri_, tokenUris[tokenId_]), "same uri");
        require(totalSupply(tokenId_) > 0, "no such token");

        tokenUris[tokenId_] = uri_;
        emit SetUri(tokenId_, uri_);
    }

    function uri(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return tokenUris[tokenId];
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        // handle mint
        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; i++) {
                require(
                    totalSupply(ids[i]) + amounts[i] <= maxSupply[ids[i]],
                    "exceed max supply"
                );
            }
        }
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function mint(
        address to_,
        uint256 id_,
        uint256 amount_
    ) public onlyOwner {
        _mint(to_, id_, amount_, "");
    }

    function airdrop(
        address[] memory receivers_,
        uint256 id_,
        uint256[] memory amounts_
    ) public onlyOwner {
        require(receivers_.length == amounts_.length, "length error");
        for (uint256 i = 0; i < receivers_.length; i++) {
            _mint(receivers_[i], id_, amounts_[i], "");
        }
    }

    function compareStrings(string memory a, string memory b)
        internal
        pure
        returns (bool)
    {
        return (keccak256(abi.encodePacked((a))) ==
            keccak256(abi.encodePacked((b))));
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155)
        returns (bool)
    {
        return
            interfaceId == type(IERC1155).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"","type":"uint256"}],"name":"SetMaxSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"","type":"uint256"},{"indexed":true,"internalType":"string","name":"","type":"string"}],"name":"SetUri","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address[]","name":"receivers_","type":"address[]"},{"internalType":"uint256","name":"id_","type":"uint256"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"id_","type":"uint256"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"},{"internalType":"string","name":"uri_","type":"string"}],"name":"setUri","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":"","type":"uint256"}],"name":"tokenUris","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200240a3803806200240a833981016040819052620000349162000256565b6040805160208101909152600081526200004e816200008e565b506200005a33620000a7565b81516200006f906005906020850190620000f9565b50805162000085906006906020840190620000f9565b50505062000313565b8051620000a3906002906020840190620000f9565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010790620002c0565b90600052602060002090601f0160209004810192826200012b576000855562000176565b82601f106200014657805160ff191683800117855562000176565b8280016001018555821562000176579182015b828111156200017657825182559160200191906001019062000159565b506200018492915062000188565b5090565b5b8082111562000184576000815560010162000189565b600082601f830112620001b157600080fd5b81516001600160401b0380821115620001ce57620001ce620002fd565b604051601f8301601f19908116603f01168101908282118183101715620001f957620001f9620002fd565b816040528381526020925086838588010111156200021657600080fd5b600091505b838210156200023a57858201830151818301840152908201906200021b565b838211156200024c5760008385830101525b9695505050505050565b600080604083850312156200026a57600080fd5b82516001600160401b03808211156200028257600080fd5b62000290868387016200019f565b93506020850151915080821115620002a757600080fd5b50620002b6858286016200019f565b9150509250929050565b600181811c90821680620002d557607f821691505b60208210811415620002f757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6120e780620003236000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c8063715018a6116100b8578063a22cb4651161007c578063a22cb4651461029a578063ae882b65146102ad578063bd85b039146102c0578063e985e9c5146102e0578063f242432a1461031c578063f2fde38b1461032f57600080fd5b8063715018a61461023c578063782f08ae14610244578063869f7594146102575780638da5cb5b1461027757806395d89b411461029257600080fd5b806326b41d7c116100ff57806326b41d7c146101c15780632eb2c2d6146101d457806337da577c146101e75780634e1273f4146101fa5780634f558e791461021a57600080fd5b8062fdd58e1461013b57806301ffc9a71461016157806306fdde03146101845780630e89341c14610199578063156e29f6146101ac575b600080fd5b61014e610149366004611a34565b610342565b6040519081526020015b60405180910390f35b61017461016f366004611b62565b6103d8565b6040519015158152602001610158565b61018c610403565b6040516101589190611d8f565b61018c6101a7366004611b9c565b610491565b6101bf6101ba366004611a5e565b610533565b005b6101bf6101cf366004611af5565b61055b565b6101bf6101e23660046118e9565b610614565b6101bf6101f5366004611c06565b610660565b61020d610208366004611a91565b6106f1565b6040516101589190611d4e565b610174610228366004611b9c565b600090815260036020526040902054151590565b6101bf61081b565b6101bf610252366004611bb5565b61082f565b61014e610265366004611b9c565b60076020526000908152604090205481565b6004546040516001600160a01b039091168152602001610158565b61018c610a13565b6101bf6102a83660046119f8565b610a20565b61018c6102bb366004611b9c565b610a2f565b61014e6102ce366004611b9c565b60009081526003602052604090205490565b6101746102ee3660046118b6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101bf61032a366004611993565b610a48565b6101bf61033d36600461189b565b610a8d565b60006001600160a01b0383166103b25760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103fd57506103fd82610b06565b92915050565b6005805461041090611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461043c90611f30565b80156104895780601f1061045e57610100808354040283529160200191610489565b820191906000526020600020905b81548152906001019060200180831161046c57829003601f168201915b505050505081565b60008181526008602052604090208054606091906104ae90611f30565b80601f01602080910402602001604051908101604052809291908181526020018280546104da90611f30565b80156105275780601f106104fc57610100808354040283529160200191610527565b820191906000526020600020905b81548152906001019060200180831161050a57829003601f168201915b50505050509050919050565b61053b610b56565b61055683838360405180602001604052806000815250610bb0565b505050565b610563610b56565b80518351146105a35760405162461bcd60e51b815260206004820152600c60248201526b3632b733ba341032b93937b960a11b60448201526064016103a9565b60005b835181101561060e576105fc8482815181106105c4576105c4611fc9565b6020026020010151848484815181106105df576105df611fc9565b602002602001015160405180602001604052806000815250610bb0565b8061060681611f98565b9150506105a6565b50505050565b6001600160a01b038516331480610630575061063085336102ee565b61064c5760405162461bcd60e51b81526004016103a990611da2565b6106598585858585610cd3565b5050505050565b610668610b56565b600082815260076020526040902054156106b25760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b60448201526064016103a9565b60008281526007602052604080822083905551829184917f4e4144d58c74765aab6b864c8cb807767198960f6ae6b4b135c56d41b639b7fe9190a35050565b606081518351146107565760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103a9565b6000835167ffffffffffffffff81111561077257610772611fdf565b60405190808252806020026020018201604052801561079b578160200160208202803683370190505b50905060005b8451811015610813576107e68582815181106107bf576107bf611fc9565b60200260200101518583815181106107d9576107d9611fc9565b6020026020010151610342565b8282815181106107f8576107f8611fc9565b602090810291909101015261080c81611f98565b90506107a1565b509392505050565b610823610b56565b61082d6000610ebe565b565b610837610b56565b6108508160405180602001604052806000815250610f10565b156108895760405162461bcd60e51b8152602060048201526009602482015268656d7074792075726960b81b60448201526064016103a9565b6000828152600860205260409020805461092b9183916108a890611f30565b80601f01602080910402602001604051908101604052809291908181526020018280546108d490611f30565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050610f10565b156109635760405162461bcd60e51b815260206004820152600860248201526773616d652075726960c01b60448201526064016103a9565b600082815260036020526040812054116109af5760405162461bcd60e51b815260206004820152600d60248201526c37379039bab1b4103a37b5b2b760991b60448201526064016103a9565b600082815260086020908152604090912082516109ce92840190611679565b50806040516109dd9190611c8f565b6040519081900381209083907fcb8a581c366c006d079f78b3f29b10e2bf252c6a9df7fb60286aa83c09bbd0b190600090a35050565b6006805461041090611f30565b610a2b338383610f69565b5050565b6008602052600090815260409020805461041090611f30565b6001600160a01b038516331480610a645750610a6485336102ee565b610a805760405162461bcd60e51b81526004016103a990611da2565b610659858585858561104a565b610a95610b56565b6001600160a01b038116610afa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a9565b610b0381610ebe565b50565b60006001600160e01b03198216636cdb3d1360e11b1480610b3757506001600160e01b031982166303a24d0760e21b145b806103fd57506301ffc9a760e01b6001600160e01b03198316146103fd565b6004546001600160a01b0316331461082d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a9565b6001600160a01b038416610c105760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016103a9565b336000610c1c85611182565b90506000610c2985611182565b9050610c3a836000898585896111cd565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290610c6a908490611eec565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cca836000898989896112cb565b50505050505050565b8151835114610d355760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016103a9565b6001600160a01b038416610d5b5760405162461bcd60e51b81526004016103a990611e39565b33610d6a8187878787876111cd565b60005b8451811015610e50576000858281518110610d8a57610d8a611fc9565b602002602001015190506000858381518110610da857610da8611fc9565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610df85760405162461bcd60e51b81526004016103a990611e7e565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610e35908490611eec565b9250508190555050505080610e4990611f98565b9050610d6d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610ea0929190611d61565b60405180910390a4610eb6818787878787611436565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081604051602001610f239190611c8f565b6040516020818303038152906040528051906020012083604051602001610f4a9190611c8f565b6040516020818303038152906040528051906020012014905092915050565b816001600160a01b0316836001600160a01b03161415610fdd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103a9565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166110705760405162461bcd60e51b81526004016103a990611e39565b33600061107c85611182565b9050600061108985611182565b90506110998389898585896111cd565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156110da5760405162461bcd60e51b81526004016103a990611e7e565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611117908490611eec565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611177848a8a8a8a8a6112cb565b505050505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106111bc576111bc611fc9565b602090810291909101015292915050565b6001600160a01b0385166112bd5760005b83518110156112bb57600760008583815181106111fd576111fd611fc9565b602002602001015181526020019081526020016000205483828151811061122657611226611fc9565b602002602001015161125d86848151811061124357611243611fc9565b602002602001015160009081526003602052604090205490565b6112679190611eec565b11156112a95760405162461bcd60e51b8152602060048201526011602482015270657863656564206d617820737570706c7960781b60448201526064016103a9565b806112b381611f98565b9150506111de565b505b610eb6868686868686611500565b6001600160a01b0384163b15610eb65760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061130f9089908990889088908890600401611d09565b602060405180830381600087803b15801561132957600080fd5b505af1925050508015611359575060408051601f3d908101601f1916820190925261135691810190611b7f565b60015b61140657611365611ff5565b806308c379a0141561139f575061137a612011565b8061138557506113a1565b8060405162461bcd60e51b81526004016103a99190611d8f565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103a9565b6001600160e01b0319811663f23a6e6160e01b14610cca5760405162461bcd60e51b81526004016103a990611df1565b6001600160a01b0384163b15610eb65760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061147a9089908990889088908890600401611cab565b602060405180830381600087803b15801561149457600080fd5b505af19250505080156114c4575060408051601f3d908101601f191682019092526114c191810190611b7f565b60015b6114d057611365611ff5565b6001600160e01b0319811663bc197c8160e01b14610cca5760405162461bcd60e51b81526004016103a990611df1565b6001600160a01b0385166115875760005b83518110156115855782818151811061152c5761152c611fc9565b60200260200101516003600086848151811061154a5761154a611fc9565b60200260200101518152602001908152602001600020600082825461156f9190611eec565b9091555061157e905081611f98565b9050611511565b505b6001600160a01b038416610eb65760005b8351811015610cca5760008482815181106115b5576115b5611fc9565b6020026020010151905060008483815181106115d3576115d3611fc9565b60200260200101519050600060036000848152602001908152602001600020549050818110156116565760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016103a9565b6000928352600360205260409092209103905561167281611f98565b9050611598565b82805461168590611f30565b90600052602060002090601f0160209004810192826116a757600085556116ed565b82601f106116c057805160ff19168380011785556116ed565b828001600101855582156116ed579182015b828111156116ed5782518255916020019190600101906116d2565b506116f99291506116fd565b5090565b5b808211156116f957600081556001016116fe565b600067ffffffffffffffff83111561172c5761172c611fdf565b604051611743601f8501601f191660200182611f6b565b80915083815284848401111561175857600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461178757600080fd5b919050565b600082601f83011261179d57600080fd5b813560206117aa82611ec8565b6040516117b78282611f6b565b8381528281019150858301600585901b870184018810156117d757600080fd5b60005b858110156117fd576117eb82611770565b845292840192908401906001016117da565b5090979650505050505050565b600082601f83011261181b57600080fd5b8135602061182882611ec8565b6040516118358282611f6b565b8381528281019150858301600585901b8701840188101561185557600080fd5b60005b858110156117fd57813584529284019290840190600101611858565b600082601f83011261188557600080fd5b61189483833560208501611712565b9392505050565b6000602082840312156118ad57600080fd5b61189482611770565b600080604083850312156118c957600080fd5b6118d283611770565b91506118e060208401611770565b90509250929050565b600080600080600060a0868803121561190157600080fd5b61190a86611770565b945061191860208701611770565b9350604086013567ffffffffffffffff8082111561193557600080fd5b61194189838a0161180a565b9450606088013591508082111561195757600080fd5b61196389838a0161180a565b9350608088013591508082111561197957600080fd5b5061198688828901611874565b9150509295509295909350565b600080600080600060a086880312156119ab57600080fd5b6119b486611770565b94506119c260208701611770565b93506040860135925060608601359150608086013567ffffffffffffffff8111156119ec57600080fd5b61198688828901611874565b60008060408385031215611a0b57600080fd5b611a1483611770565b915060208301358015158114611a2957600080fd5b809150509250929050565b60008060408385031215611a4757600080fd5b611a5083611770565b946020939093013593505050565b600080600060608486031215611a7357600080fd5b611a7c84611770565b95602085013595506040909401359392505050565b60008060408385031215611aa457600080fd5b823567ffffffffffffffff80821115611abc57600080fd5b611ac88683870161178c565b93506020850135915080821115611ade57600080fd5b50611aeb8582860161180a565b9150509250929050565b600080600060608486031215611b0a57600080fd5b833567ffffffffffffffff80821115611b2257600080fd5b611b2e8783880161178c565b9450602086013593506040860135915080821115611b4b57600080fd5b50611b588682870161180a565b9150509250925092565b600060208284031215611b7457600080fd5b81356118948161209b565b600060208284031215611b9157600080fd5b81516118948161209b565b600060208284031215611bae57600080fd5b5035919050565b60008060408385031215611bc857600080fd5b82359150602083013567ffffffffffffffff811115611be657600080fd5b8301601f81018513611bf757600080fd5b611aeb85823560208401611712565b60008060408385031215611c1957600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015611c5857815187529582019590820190600101611c3c565b509495945050505050565b60008151808452611c7b816020860160208601611f04565b601f01601f19169290920160200192915050565b60008251611ca1818460208701611f04565b9190910192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611cd790830186611c28565b8281036060840152611ce98186611c28565b90508281036080840152611cfd8185611c63565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d4390830184611c63565b979650505050505050565b6020815260006118946020830184611c28565b604081526000611d746040830185611c28565b8281036020840152611d868185611c28565b95945050505050565b6020815260006118946020830184611c63565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b600067ffffffffffffffff821115611ee257611ee2611fdf565b5060051b60200190565b60008219821115611eff57611eff611fb3565b500190565b60005b83811015611f1f578181015183820152602001611f07565b8381111561060e5750506000910152565b600181811c90821680611f4457607f821691505b60208210811415611f6557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611f9157611f91611fdf565b6040525050565b6000600019821415611fac57611fac611fb3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561200e5760046000803e5060005160e01c5b90565b600060443d101561201f5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561204f57505050505090565b82850191508151818111156120675750505050505090565b843d87010160208285010111156120815750505050505090565b61209060208286010187611f6b565b509095945050505050565b6001600160e01b031981168114610b0357600080fdfea2646970667358221220cc15aed2b72200cef3976bb119dfee22d2bdc7bb59830568abe3204cd5a2186864736f6c63430008060033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000018435259505459515545532e4e41544956452053594d424f4c0000000000000000000000000000000000000000000000000000000000000000000000000000000443534e5300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101365760003560e01c8063715018a6116100b8578063a22cb4651161007c578063a22cb4651461029a578063ae882b65146102ad578063bd85b039146102c0578063e985e9c5146102e0578063f242432a1461031c578063f2fde38b1461032f57600080fd5b8063715018a61461023c578063782f08ae14610244578063869f7594146102575780638da5cb5b1461027757806395d89b411461029257600080fd5b806326b41d7c116100ff57806326b41d7c146101c15780632eb2c2d6146101d457806337da577c146101e75780634e1273f4146101fa5780634f558e791461021a57600080fd5b8062fdd58e1461013b57806301ffc9a71461016157806306fdde03146101845780630e89341c14610199578063156e29f6146101ac575b600080fd5b61014e610149366004611a34565b610342565b6040519081526020015b60405180910390f35b61017461016f366004611b62565b6103d8565b6040519015158152602001610158565b61018c610403565b6040516101589190611d8f565b61018c6101a7366004611b9c565b610491565b6101bf6101ba366004611a5e565b610533565b005b6101bf6101cf366004611af5565b61055b565b6101bf6101e23660046118e9565b610614565b6101bf6101f5366004611c06565b610660565b61020d610208366004611a91565b6106f1565b6040516101589190611d4e565b610174610228366004611b9c565b600090815260036020526040902054151590565b6101bf61081b565b6101bf610252366004611bb5565b61082f565b61014e610265366004611b9c565b60076020526000908152604090205481565b6004546040516001600160a01b039091168152602001610158565b61018c610a13565b6101bf6102a83660046119f8565b610a20565b61018c6102bb366004611b9c565b610a2f565b61014e6102ce366004611b9c565b60009081526003602052604090205490565b6101746102ee3660046118b6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101bf61032a366004611993565b610a48565b6101bf61033d36600461189b565b610a8d565b60006001600160a01b0383166103b25760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103fd57506103fd82610b06565b92915050565b6005805461041090611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461043c90611f30565b80156104895780601f1061045e57610100808354040283529160200191610489565b820191906000526020600020905b81548152906001019060200180831161046c57829003601f168201915b505050505081565b60008181526008602052604090208054606091906104ae90611f30565b80601f01602080910402602001604051908101604052809291908181526020018280546104da90611f30565b80156105275780601f106104fc57610100808354040283529160200191610527565b820191906000526020600020905b81548152906001019060200180831161050a57829003601f168201915b50505050509050919050565b61053b610b56565b61055683838360405180602001604052806000815250610bb0565b505050565b610563610b56565b80518351146105a35760405162461bcd60e51b815260206004820152600c60248201526b3632b733ba341032b93937b960a11b60448201526064016103a9565b60005b835181101561060e576105fc8482815181106105c4576105c4611fc9565b6020026020010151848484815181106105df576105df611fc9565b602002602001015160405180602001604052806000815250610bb0565b8061060681611f98565b9150506105a6565b50505050565b6001600160a01b038516331480610630575061063085336102ee565b61064c5760405162461bcd60e51b81526004016103a990611da2565b6106598585858585610cd3565b5050505050565b610668610b56565b600082815260076020526040902054156106b25760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b60448201526064016103a9565b60008281526007602052604080822083905551829184917f4e4144d58c74765aab6b864c8cb807767198960f6ae6b4b135c56d41b639b7fe9190a35050565b606081518351146107565760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103a9565b6000835167ffffffffffffffff81111561077257610772611fdf565b60405190808252806020026020018201604052801561079b578160200160208202803683370190505b50905060005b8451811015610813576107e68582815181106107bf576107bf611fc9565b60200260200101518583815181106107d9576107d9611fc9565b6020026020010151610342565b8282815181106107f8576107f8611fc9565b602090810291909101015261080c81611f98565b90506107a1565b509392505050565b610823610b56565b61082d6000610ebe565b565b610837610b56565b6108508160405180602001604052806000815250610f10565b156108895760405162461bcd60e51b8152602060048201526009602482015268656d7074792075726960b81b60448201526064016103a9565b6000828152600860205260409020805461092b9183916108a890611f30565b80601f01602080910402602001604051908101604052809291908181526020018280546108d490611f30565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050610f10565b156109635760405162461bcd60e51b815260206004820152600860248201526773616d652075726960c01b60448201526064016103a9565b600082815260036020526040812054116109af5760405162461bcd60e51b815260206004820152600d60248201526c37379039bab1b4103a37b5b2b760991b60448201526064016103a9565b600082815260086020908152604090912082516109ce92840190611679565b50806040516109dd9190611c8f565b6040519081900381209083907fcb8a581c366c006d079f78b3f29b10e2bf252c6a9df7fb60286aa83c09bbd0b190600090a35050565b6006805461041090611f30565b610a2b338383610f69565b5050565b6008602052600090815260409020805461041090611f30565b6001600160a01b038516331480610a645750610a6485336102ee565b610a805760405162461bcd60e51b81526004016103a990611da2565b610659858585858561104a565b610a95610b56565b6001600160a01b038116610afa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a9565b610b0381610ebe565b50565b60006001600160e01b03198216636cdb3d1360e11b1480610b3757506001600160e01b031982166303a24d0760e21b145b806103fd57506301ffc9a760e01b6001600160e01b03198316146103fd565b6004546001600160a01b0316331461082d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a9565b6001600160a01b038416610c105760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016103a9565b336000610c1c85611182565b90506000610c2985611182565b9050610c3a836000898585896111cd565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290610c6a908490611eec565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610cca836000898989896112cb565b50505050505050565b8151835114610d355760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016103a9565b6001600160a01b038416610d5b5760405162461bcd60e51b81526004016103a990611e39565b33610d6a8187878787876111cd565b60005b8451811015610e50576000858281518110610d8a57610d8a611fc9565b602002602001015190506000858381518110610da857610da8611fc9565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610df85760405162461bcd60e51b81526004016103a990611e7e565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610e35908490611eec565b9250508190555050505080610e4990611f98565b9050610d6d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610ea0929190611d61565b60405180910390a4610eb6818787878787611436565b505050505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081604051602001610f239190611c8f565b6040516020818303038152906040528051906020012083604051602001610f4a9190611c8f565b6040516020818303038152906040528051906020012014905092915050565b816001600160a01b0316836001600160a01b03161415610fdd5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103a9565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166110705760405162461bcd60e51b81526004016103a990611e39565b33600061107c85611182565b9050600061108985611182565b90506110998389898585896111cd565b6000868152602081815260408083206001600160a01b038c168452909152902054858110156110da5760405162461bcd60e51b81526004016103a990611e7e565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611117908490611eec565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611177848a8a8a8a8a6112cb565b505050505050505050565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106111bc576111bc611fc9565b602090810291909101015292915050565b6001600160a01b0385166112bd5760005b83518110156112bb57600760008583815181106111fd576111fd611fc9565b602002602001015181526020019081526020016000205483828151811061122657611226611fc9565b602002602001015161125d86848151811061124357611243611fc9565b602002602001015160009081526003602052604090205490565b6112679190611eec565b11156112a95760405162461bcd60e51b8152602060048201526011602482015270657863656564206d617820737570706c7960781b60448201526064016103a9565b806112b381611f98565b9150506111de565b505b610eb6868686868686611500565b6001600160a01b0384163b15610eb65760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061130f9089908990889088908890600401611d09565b602060405180830381600087803b15801561132957600080fd5b505af1925050508015611359575060408051601f3d908101601f1916820190925261135691810190611b7f565b60015b61140657611365611ff5565b806308c379a0141561139f575061137a612011565b8061138557506113a1565b8060405162461bcd60e51b81526004016103a99190611d8f565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103a9565b6001600160e01b0319811663f23a6e6160e01b14610cca5760405162461bcd60e51b81526004016103a990611df1565b6001600160a01b0384163b15610eb65760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061147a9089908990889088908890600401611cab565b602060405180830381600087803b15801561149457600080fd5b505af19250505080156114c4575060408051601f3d908101601f191682019092526114c191810190611b7f565b60015b6114d057611365611ff5565b6001600160e01b0319811663bc197c8160e01b14610cca5760405162461bcd60e51b81526004016103a990611df1565b6001600160a01b0385166115875760005b83518110156115855782818151811061152c5761152c611fc9565b60200260200101516003600086848151811061154a5761154a611fc9565b60200260200101518152602001908152602001600020600082825461156f9190611eec565b9091555061157e905081611f98565b9050611511565b505b6001600160a01b038416610eb65760005b8351811015610cca5760008482815181106115b5576115b5611fc9565b6020026020010151905060008483815181106115d3576115d3611fc9565b60200260200101519050600060036000848152602001908152602001600020549050818110156116565760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016103a9565b6000928352600360205260409092209103905561167281611f98565b9050611598565b82805461168590611f30565b90600052602060002090601f0160209004810192826116a757600085556116ed565b82601f106116c057805160ff19168380011785556116ed565b828001600101855582156116ed579182015b828111156116ed5782518255916020019190600101906116d2565b506116f99291506116fd565b5090565b5b808211156116f957600081556001016116fe565b600067ffffffffffffffff83111561172c5761172c611fdf565b604051611743601f8501601f191660200182611f6b565b80915083815284848401111561175857600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461178757600080fd5b919050565b600082601f83011261179d57600080fd5b813560206117aa82611ec8565b6040516117b78282611f6b565b8381528281019150858301600585901b870184018810156117d757600080fd5b60005b858110156117fd576117eb82611770565b845292840192908401906001016117da565b5090979650505050505050565b600082601f83011261181b57600080fd5b8135602061182882611ec8565b6040516118358282611f6b565b8381528281019150858301600585901b8701840188101561185557600080fd5b60005b858110156117fd57813584529284019290840190600101611858565b600082601f83011261188557600080fd5b61189483833560208501611712565b9392505050565b6000602082840312156118ad57600080fd5b61189482611770565b600080604083850312156118c957600080fd5b6118d283611770565b91506118e060208401611770565b90509250929050565b600080600080600060a0868803121561190157600080fd5b61190a86611770565b945061191860208701611770565b9350604086013567ffffffffffffffff8082111561193557600080fd5b61194189838a0161180a565b9450606088013591508082111561195757600080fd5b61196389838a0161180a565b9350608088013591508082111561197957600080fd5b5061198688828901611874565b9150509295509295909350565b600080600080600060a086880312156119ab57600080fd5b6119b486611770565b94506119c260208701611770565b93506040860135925060608601359150608086013567ffffffffffffffff8111156119ec57600080fd5b61198688828901611874565b60008060408385031215611a0b57600080fd5b611a1483611770565b915060208301358015158114611a2957600080fd5b809150509250929050565b60008060408385031215611a4757600080fd5b611a5083611770565b946020939093013593505050565b600080600060608486031215611a7357600080fd5b611a7c84611770565b95602085013595506040909401359392505050565b60008060408385031215611aa457600080fd5b823567ffffffffffffffff80821115611abc57600080fd5b611ac88683870161178c565b93506020850135915080821115611ade57600080fd5b50611aeb8582860161180a565b9150509250929050565b600080600060608486031215611b0a57600080fd5b833567ffffffffffffffff80821115611b2257600080fd5b611b2e8783880161178c565b9450602086013593506040860135915080821115611b4b57600080fd5b50611b588682870161180a565b9150509250925092565b600060208284031215611b7457600080fd5b81356118948161209b565b600060208284031215611b9157600080fd5b81516118948161209b565b600060208284031215611bae57600080fd5b5035919050565b60008060408385031215611bc857600080fd5b82359150602083013567ffffffffffffffff811115611be657600080fd5b8301601f81018513611bf757600080fd5b611aeb85823560208401611712565b60008060408385031215611c1957600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015611c5857815187529582019590820190600101611c3c565b509495945050505050565b60008151808452611c7b816020860160208601611f04565b601f01601f19169290920160200192915050565b60008251611ca1818460208701611f04565b9190910192915050565b6001600160a01b0386811682528516602082015260a060408201819052600090611cd790830186611c28565b8281036060840152611ce98186611c28565b90508281036080840152611cfd8185611c63565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d4390830184611c63565b979650505050505050565b6020815260006118946020830184611c28565b604081526000611d746040830185611c28565b8281036020840152611d868185611c28565b95945050505050565b6020815260006118946020830184611c63565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b600067ffffffffffffffff821115611ee257611ee2611fdf565b5060051b60200190565b60008219821115611eff57611eff611fb3565b500190565b60005b83811015611f1f578181015183820152602001611f07565b8381111561060e5750506000910152565b600181811c90821680611f4457607f821691505b60208210811415611f6557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611f9157611f91611fdf565b6040525050565b6000600019821415611fac57611fac611fb3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561200e5760046000803e5060005160e01c5b90565b600060443d101561201f5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561204f57505050505090565b82850191508151818111156120675750505050505090565b843d87010160208285010111156120815750505050505090565b61209060208286010187611f6b565b509095945050505050565b6001600160e01b031981168114610b0357600080fdfea2646970667358221220cc15aed2b72200cef3976bb119dfee22d2bdc7bb59830568abe3204cd5a2186864736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000018435259505459515545532e4e41544956452053594d424f4c0000000000000000000000000000000000000000000000000000000000000000000000000000000443534e5300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): CRYPTYQUES.NATIVE SYMBOL
Arg [1] : symbol_ (string): CSNS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [3] : 435259505459515545532e4e41544956452053594d424f4c0000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 43534e5300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55199:2983:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37512:230;;;;;;:::i;:::-;;:::i;:::-;;;19271:25:1;;;19259:2;19244:18;37512:230:0;;;;;;;;57896:283;;;;;;:::i;:::-;;:::i;:::-;;;11550:14:1;;11543:22;11525:41;;11513:2;11498:18;57896:283:0;11480:92:1;55248:18:0;;;:::i;:::-;;;;;;;:::i;56335:177::-;;;;;;:::i;:::-;;:::i;57145:155::-;;;;;;:::i;:::-;;:::i;:::-;;57308:344;;;;;;:::i;:::-;;:::i;39456:439::-;;;;;;:::i;:::-;;:::i;55709:260::-;;;;;;:::i;:::-;;:::i;37908:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53994:122::-;;;;;;:::i;:::-;54051:4;53872:16;;;:12;:16;;;;;;-1:-1:-1;;;53994:122:0;2819:103;;;:::i;55977:350::-;;;;;;:::i;:::-;;:::i;55333:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;2171:87;2244:6;;2171:87;;-1:-1:-1;;;;;2244:6:0;;;9191:51:1;;9179:2;9164:18;2171:87:0;9146:102:1;55273:20:0;;;:::i;38505:155::-;;;;;;:::i;:::-;;:::i;55410:43::-;;;;;;:::i;:::-;;:::i;53783:113::-;;;;;;:::i;:::-;53845:7;53872:16;;;:12;:16;;;;;;;53783:113;38732:168;;;;;;:::i;:::-;-1:-1:-1;;;;;38855:27:0;;;38831:4;38855:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;38732:168;38972:407;;;;;;:::i;:::-;;:::i;3077:201::-;;;;;;:::i;:::-;;:::i;37512:230::-;37598:7;-1:-1:-1;;;;;37626:21:0;;37618:76;;;;-1:-1:-1;;;37618:76:0;;13997:2:1;37618:76:0;;;13979:21:1;14036:2;14016:18;;;14009:30;14075:34;14055:18;;;14048:62;-1:-1:-1;;;14126:18:1;;;14119:40;14176:19;;37618:76:0;;;;;;;;;-1:-1:-1;37712:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;37712:22:0;;;;;;;;;;;;37512:230::o;57896:283::-;58035:4;-1:-1:-1;;;;;;58077:41:0;;-1:-1:-1;;;58077:41:0;;:94;;;58135:36;58159:11;58135:23;:36::i;:::-;58057:114;57896:283;-1:-1:-1;;57896:283:0:o;55248:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56335:177::-;56486:18;;;;:9;:18;;;;;56479:25;;56448:13;;56486:18;56479:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56335:177;;;:::o;57145:155::-;2057:13;:11;:13::i;:::-;57264:28:::1;57270:3;57275;57280:7;57264:28;;;;;;;;;;;::::0;:5:::1;:28::i;:::-;57145:155:::0;;;:::o;57308:344::-;2057:13;:11;:13::i;:::-;57485:8:::1;:15;57464:10;:17;:36;57456:61;;;::::0;-1:-1:-1;;;57456:61:0;;13249:2:1;57456:61:0::1;::::0;::::1;13231:21:1::0;13288:2;13268:18;;;13261:30;-1:-1:-1;;;13307:18:1;;;13300:42;13359:18;;57456:61:0::1;13221:162:1::0;57456:61:0::1;57533:9;57528:117;57552:10;:17;57548:1;:21;57528:117;;;57591:42;57597:10;57608:1;57597:13;;;;;;;;:::i;:::-;;;;;;;57612:3;57617:8;57626:1;57617:11;;;;;;;;:::i;:::-;;;;;;;57591:42;;;;;;;;;;;::::0;:5:::1;:42::i;:::-;57571:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57528:117;;;;57308:344:::0;;;:::o;39456:439::-;-1:-1:-1;;;;;39689:20:0;;798:10;39689:20;;:60;;-1:-1:-1;39713:36:0;39730:4;798:10;38732:168;:::i;39713:36::-;39667:157;;;;-1:-1:-1;;;39667:157:0;;;;;;;:::i;:::-;39835:52;39858:4;39864:2;39868:3;39873:7;39882:4;39835:22;:52::i;:::-;39456:439;;;;;:::o;55709:260::-;2057:13;:11;:13::i;:::-;55828:19:::1;::::0;;;:9:::1;:19;::::0;;;;;:24;55820:48:::1;;;::::0;-1:-1:-1;;;55820:48:0;;18987:2:1;55820:48:0::1;::::0;::::1;18969:21:1::0;19026:2;19006:18;;;18999:30;-1:-1:-1;;;19045:18:1;;;19038:41;19096:18;;55820:48:0::1;18959:161:1::0;55820:48:0::1;55879:19;::::0;;;:9:::1;:19;::::0;;;;;:32;;;55927:34;55901:10;;55889:8;;55927:34:::1;::::0;55879:19;55927:34:::1;55709:260:::0;;:::o;37908:524::-;38064:16;38125:3;:10;38106:8;:15;:29;38098:83;;;;-1:-1:-1;;;38098:83:0;;17766:2:1;38098:83:0;;;17748:21:1;17805:2;17785:18;;;17778:30;17844:34;17824:18;;;17817:62;-1:-1:-1;;;17895:18:1;;;17888:39;17944:19;;38098:83:0;17738:231:1;38098:83:0;38194:30;38241:8;:15;38227:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38227:30:0;;38194:63;;38275:9;38270:122;38294:8;:15;38290:1;:19;38270:122;;;38350:30;38360:8;38369:1;38360:11;;;;;;;;:::i;:::-;;;;;;;38373:3;38377:1;38373:6;;;;;;;;:::i;:::-;;;;;;;38350:9;:30::i;:::-;38331:13;38345:1;38331:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;38311:3;;;:::i;:::-;;;38270:122;;;-1:-1:-1;38411:13:0;37908:524;-1:-1:-1;;;37908:524:0:o;2819:103::-;2057:13;:11;:13::i;:::-;2884:30:::1;2911:1;2884:18;:30::i;:::-;2819:103::o:0;55977:350::-;2057:13;:11;:13::i;:::-;56068:24:::1;56083:4;56068:24;;;;;;;;;;;::::0;:14:::1;:24::i;:::-;56067:25;56059:47;;;::::0;-1:-1:-1;;;56059:47:0;;17019:2:1;56059:47:0::1;::::0;::::1;17001:21:1::0;17058:1;17038:18;;;17031:29;-1:-1:-1;;;17076:18:1;;;17069:39;17125:18;;56059:47:0::1;16991:158:1::0;56059:47:0::1;56147:19;::::0;;;:9:::1;:19;::::0;;;;56126:41;;::::1;::::0;56141:4;;56126:41:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:41::i;:::-;56125:42;56117:63;;;::::0;-1:-1:-1;;;56117:63:0;;16341:2:1;56117:63:0::1;::::0;::::1;16323:21:1::0;16380:1;16360:18;;;16353:29;-1:-1:-1;;;16398:18:1;;;16391:38;16446:18;;56117:63:0::1;16313:157:1::0;56117:63:0::1;56223:1;53872:16:::0;;;:12;:16;;;;;;56199:25:::1;56191:51;;;::::0;-1:-1:-1;;;56191:51:0;;16677:2:1;56191:51:0::1;::::0;::::1;16659:21:1::0;16716:2;16696:18;;;16689:30;-1:-1:-1;;;16735:18:1;;;16728:43;16788:18;;56191:51:0::1;16649:163:1::0;56191:51:0::1;56255:19;::::0;;;:9:::1;:19;::::0;;;;;;;:26;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;56314:4;56297:22;;;;;;:::i;:::-;;::::0;;;;::::1;::::0;;;56304:8;;56297:22:::1;::::0;;;::::1;55977:350:::0;;:::o;55273:20::-;;;;;;;:::i;38505:155::-;38600:52;798:10;38633:8;38643;38600:18;:52::i;:::-;38505:155;;:::o;55410:43::-;;;;;;;;;;;;;;;;:::i;38972:407::-;-1:-1:-1;;;;;39180:20:0;;798:10;39180:20;;:60;;-1:-1:-1;39204:36:0;39221:4;798:10;38732:168;:::i;39204:36::-;39158:157;;;;-1:-1:-1;;;39158:157:0;;;;;;;:::i;:::-;39326:45;39344:4;39350:2;39354;39358:6;39366:4;39326:17;:45::i;3077:201::-;2057:13;:11;:13::i;:::-;-1:-1:-1;;;;;3166:22:0;::::1;3158:73;;;::::0;-1:-1:-1;;;3158:73:0;;13590:2:1;3158:73:0::1;::::0;::::1;13572:21:1::0;13629:2;13609:18;;;13602:30;13668:34;13648:18;;;13641:62;-1:-1:-1;;;13719:18:1;;;13712:36;13765:19;;3158:73:0::1;13562:228:1::0;3158:73:0::1;3242:28;3261:8;3242:18;:28::i;:::-;3077:201:::0;:::o;36535:310::-;36637:4;-1:-1:-1;;;;;;36674:41:0;;-1:-1:-1;;;36674:41:0;;:110;;-1:-1:-1;;;;;;;36732:52:0;;-1:-1:-1;;;36732:52:0;36674:110;:163;;;-1:-1:-1;;;;;;;;;;11087:40:0;;;36801:36;10978:157;2336:132;2244:6;;-1:-1:-1;;;;;2244:6:0;798:10;2400:23;2392:68;;;;-1:-1:-1;;;2392:68:0;;15571:2:1;2392:68:0;;;15553:21:1;;;15590:18;;;15583:30;15649:34;15629:18;;;15622:62;15701:18;;2392:68:0;15543:182:1;44155:729:0;-1:-1:-1;;;;;44308:16:0;;44300:62;;;;-1:-1:-1;;;44300:62:0;;18585:2:1;44300:62:0;;;18567:21:1;18624:2;18604:18;;;18597:30;18663:34;18643:18;;;18636:62;-1:-1:-1;;;18714:18:1;;;18707:31;18755:19;;44300:62:0;18557:223:1;44300:62:0;798:10;44375:16;44440:21;44458:2;44440:17;:21::i;:::-;44417:44;;44472:24;44499:25;44517:6;44499:17;:25::i;:::-;44472:52;;44537:66;44558:8;44576:1;44580:2;44584:3;44589:7;44598:4;44537:20;:66::i;:::-;44616:9;:13;;;;;;;;;;;-1:-1:-1;;;;;44616:17:0;;;;;;;;;:27;;44637:6;;44616:9;:27;;44637:6;;44616:27;:::i;:::-;;;;-1:-1:-1;;44659:52:0;;;19481:25:1;;;19537:2;19522:18;;19515:34;;;-1:-1:-1;;;;;44659:52:0;;;;44692:1;;44659:52;;;;;;19454:18:1;44659:52:0;;;;;;;44802:74;44833:8;44851:1;44855:2;44859;44863:6;44871:4;44802:30;:74::i;:::-;44289:595;;;44155:729;;;;:::o;41691:1146::-;41918:7;:14;41904:3;:10;:28;41896:81;;;;-1:-1:-1;;;41896:81:0;;18176:2:1;41896:81:0;;;18158:21:1;18215:2;18195:18;;;18188:30;18254:34;18234:18;;;18227:62;-1:-1:-1;;;18305:18:1;;;18298:38;18353:19;;41896:81:0;18148:230:1;41896:81:0;-1:-1:-1;;;;;41996:16:0;;41988:66;;;;-1:-1:-1;;;41988:66:0;;;;;;;:::i;:::-;798:10;42111:60;798:10;42142:4;42148:2;42152:3;42157:7;42166:4;42111:20;:60::i;:::-;42189:9;42184:421;42208:3;:10;42204:1;:14;42184:421;;;42240:10;42253:3;42257:1;42253:6;;;;;;;;:::i;:::-;;;;;;;42240:19;;42274:14;42291:7;42299:1;42291:10;;;;;;;;:::i;:::-;;;;;;;;;;;;42318:19;42340:13;;;;;;;;;;-1:-1:-1;;;;;42340:19:0;;;;;;;;;;;;42291:10;;-1:-1:-1;42382:21:0;;;;42374:76;;;;-1:-1:-1;;;42374:76:0;;;;;;;:::i;:::-;42494:9;:13;;;;;;;;;;;-1:-1:-1;;;;;42494:19:0;;;;;;;;;;42516:20;;;42494:42;;42566:17;;;;;;;:27;;42516:20;;42494:9;42566:27;;42516:20;;42566:27;:::i;:::-;;;;;;;;42225:380;;;42220:3;;;;:::i;:::-;;;42184:421;;;;42652:2;-1:-1:-1;;;;;42622:47:0;42646:4;-1:-1:-1;;;;;42622:47:0;42636:8;-1:-1:-1;;;;;42622:47:0;;42656:3;42661:7;42622:47;;;;;;;:::i;:::-;;;;;;;;42754:75;42790:8;42800:4;42806:2;42810:3;42815:7;42824:4;42754:35;:75::i;:::-;41885:952;41691:1146;;;;;:::o;3438:191::-;3531:6;;;-1:-1:-1;;;;;3548:17:0;;;-1:-1:-1;;;;;;3548:17:0;;;;;;;3581:40;;3531:6;;;3548:17;3531:6;;3581:40;;3512:16;;3581:40;3501:128;3438:191;:::o;57660:228::-;57768:4;57875:1;57857:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;57847:32;;;;;;57826:1;57808:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;57798:32;;;;;;:81;57790:90;;57660:228;;;;:::o;48568:331::-;48723:8;-1:-1:-1;;;;;48714:17:0;:5;-1:-1:-1;;;;;48714:17:0;;;48706:71;;;;-1:-1:-1;;;48706:71:0;;17356:2:1;48706:71:0;;;17338:21:1;17395:2;17375:18;;;17368:30;17434:34;17414:18;;;17407:62;-1:-1:-1;;;17485:18:1;;;17478:39;17534:19;;48706:71:0;17328:231:1;48706:71:0;-1:-1:-1;;;;;48788:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;48788:46:0;;;;;;;;;;48850:41;;11525::1;;;48850::0;;11498:18:1;48850:41:0;;;;;;;48568:331;;;:::o;40359:974::-;-1:-1:-1;;;;;40547:16:0;;40539:66;;;;-1:-1:-1;;;40539:66:0;;;;;;;:::i;:::-;798:10;40618:16;40683:21;40701:2;40683:17;:21::i;:::-;40660:44;;40715:24;40742:25;40760:6;40742:17;:25::i;:::-;40715:52;;40780:60;40801:8;40811:4;40817:2;40821:3;40826:7;40835:4;40780:20;:60::i;:::-;40853:19;40875:13;;;;;;;;;;;-1:-1:-1;;;;;40875:19:0;;;;;;;;;;40913:21;;;;40905:76;;;;-1:-1:-1;;;40905:76:0;;;;;;;:::i;:::-;41017:9;:13;;;;;;;;;;;-1:-1:-1;;;;;41017:19:0;;;;;;;;;;41039:20;;;41017:42;;41081:17;;;;;;;:27;;41039:20;;41017:9;41081:27;;41039:20;;41081:27;:::i;:::-;;;;-1:-1:-1;;41126:46:0;;;19481:25:1;;;19537:2;19522:18;;19515:34;;;-1:-1:-1;;;;;41126:46:0;;;;;;;;;;;;;;19454:18:1;41126:46:0;;;;;;;41257:68;41288:8;41298:4;41304:2;41308;41312:6;41320:4;41257:30;:68::i;:::-;40528:805;;;;40359:974;;;;;:::o;52834:198::-;52954:16;;;52968:1;52954:16;;;;;;;;;52900;;52929:22;;52954:16;;;;;;;;;;;;-1:-1:-1;52954:16:0;52929:41;;52992:7;52981:5;52987:1;52981:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;53019:5;52834:198;-1:-1:-1;;52834:198:0:o;56520:617::-;-1:-1:-1;;;;;56787:18:0;;56783:270;;56827:9;56822:220;56846:3;:10;56842:1;:14;56822:220;;;56948:9;:17;56958:3;56962:1;56958:6;;;;;;;;:::i;:::-;;;;;;;56948:17;;;;;;;;;;;;56934:7;56942:1;56934:10;;;;;;;;:::i;:::-;;;;;;;56912:19;56924:3;56928:1;56924:6;;;;;;;;:::i;:::-;;;;;;;53845:7;53872:16;;;:12;:16;;;;;;;53783:113;56912:19;:32;;;;:::i;:::-;:53;;56882:144;;;;-1:-1:-1;;;56882:144:0;;14408:2:1;56882:144:0;;;14390:21:1;14447:2;14427:18;;;14420:30;-1:-1:-1;;;14466:18:1;;;14459:47;14523:18;;56882:144:0;14380:167:1;56882:144:0;56858:3;;;;:::i;:::-;;;;56822:220;;;;56783:270;57063:66;57090:8;57100:4;57106:2;57110:3;57115:7;57124:4;57063:26;:66::i;51261:744::-;-1:-1:-1;;;;;51476:13:0;;28414:19;:23;51472:526;;51512:72;;-1:-1:-1;;;51512:72:0;;-1:-1:-1;;;;;51512:38:0;;;;;:72;;51551:8;;51561:4;;51567:2;;51571:6;;51579:4;;51512:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51512:72:0;;;;;;;;-1:-1:-1;;51512:72:0;;;;;;;;;;;;:::i;:::-;;;51508:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;51860:6;51853:14;;-1:-1:-1;;;51853:14:0;;;;;;;;:::i;51508:479::-;;;51909:62;;-1:-1:-1;;;51909:62:0;;12003:2:1;51909:62:0;;;11985:21:1;12042:2;12022:18;;;12015:30;12081:34;12061:18;;;12054:62;-1:-1:-1;;;12132:18:1;;;12125:50;12192:19;;51909:62:0;11975:242:1;51508:479:0;-1:-1:-1;;;;;;51634:55:0;;-1:-1:-1;;;51634:55:0;51630:154;;51714:50;;-1:-1:-1;;;51714:50:0;;;;;;;:::i;52013:813::-;-1:-1:-1;;;;;52253:13:0;;28414:19;:23;52249:570;;52289:79;;-1:-1:-1;;;52289:79:0;;-1:-1:-1;;;;;52289:43:0;;;;;:79;;52333:8;;52343:4;;52349:3;;52354:7;;52363:4;;52289:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52289:79:0;;;;;;;;-1:-1:-1;;52289:79:0;;;;;;;;;;;;:::i;:::-;;;52285:523;;;;:::i;:::-;-1:-1:-1;;;;;;52450:60:0;;-1:-1:-1;;;52450:60:0;52446:159;;52535:50;;-1:-1:-1;;;52535:50:0;;;;;;;:::i;54191:931::-;-1:-1:-1;;;;;54513:18:0;;54509:160;;54553:9;54548:110;54572:3;:10;54568:1;:14;54548:110;;;54632:7;54640:1;54632:10;;;;;;;;:::i;:::-;;;;;;;54608:12;:20;54621:3;54625:1;54621:6;;;;;;;;:::i;:::-;;;;;;;54608:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;54584:3:0;;-1:-1:-1;54584:3:0;;:::i;:::-;;;54548:110;;;;54509:160;-1:-1:-1;;;;;54685:16:0;;54681:434;;54723:9;54718:386;54742:3;:10;54738:1;:14;54718:386;;;54778:10;54791:3;54795:1;54791:6;;;;;;;;:::i;:::-;;;;;;;54778:19;;54816:14;54833:7;54841:1;54833:10;;;;;;;;:::i;:::-;;;;;;;54816:27;;54862:14;54879:12;:16;54892:2;54879:16;;;;;;;;;;;;54862:33;;54932:6;54922;:16;;54914:69;;;;-1:-1:-1;;;54914:69:0;;15932:2:1;54914:69:0;;;15914:21:1;15971:2;15951:18;;;15944:30;16010:34;15990:18;;;15983:62;-1:-1:-1;;;16061:18:1;;;16054:38;16109:19;;54914:69:0;15904:230:1;54914:69:0;55035:16;;;;:12;:16;;;;;;55054:15;;55035:34;;54754:3;;;:::i;:::-;;;54718:386;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:2;;;369:1;366;359:12;328:2;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;88:394;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:2;;650:1;647;640:12;584:2;536:124;;;:::o;665:741::-;719:5;772:3;765:4;757:6;753:17;749:27;739:2;;790:1;787;780:12;739:2;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:2:1;;;1175:1;1172;1165:12;1118:2;1197:1;1207:169;1221:2;1218:1;1215:9;1207:169;;;1278:23;1297:3;1278:23;:::i;:::-;1266:36;;1322:12;;;;1354;;;;1239:1;1232:9;1207:169;;;-1:-1:-1;1394:6:1;;729:677;-1:-1:-1;;;;;;;729:677:1:o;1411:735::-;1465:5;1518:3;1511:4;1503:6;1499:17;1495:27;1485:2;;1536:1;1533;1526:12;1485:2;1572:6;1559:20;1598:4;1621:43;1661:2;1621:43;:::i;:::-;1693:2;1687:9;1705:31;1733:2;1725:6;1705:31;:::i;:::-;1771:18;;;1805:15;;;;-1:-1:-1;1840:15:1;;;1890:1;1886:10;;;1874:23;;1870:32;;1867:41;-1:-1:-1;1864:2:1;;;1921:1;1918;1911:12;1864:2;1943:1;1953:163;1967:2;1964:1;1961:9;1953:163;;;2024:17;;2012:30;;2062:12;;;;2094;;;;1985:1;1978:9;1953:163;;2151:220;2193:5;2246:3;2239:4;2231:6;2227:17;2223:27;2213:2;;2264:1;2261;2254:12;2213:2;2286:79;2361:3;2352:6;2339:20;2332:4;2324:6;2320:17;2286:79;:::i;:::-;2277:88;2203:168;-1:-1:-1;;;2203:168:1:o;2376:186::-;2435:6;2488:2;2476:9;2467:7;2463:23;2459:32;2456:2;;;2504:1;2501;2494:12;2456:2;2527:29;2546:9;2527:29;:::i;2567:260::-;2635:6;2643;2696:2;2684:9;2675:7;2671:23;2667:32;2664:2;;;2712:1;2709;2702:12;2664:2;2735:29;2754:9;2735:29;:::i;:::-;2725:39;;2783:38;2817:2;2806:9;2802:18;2783:38;:::i;:::-;2773:48;;2654:173;;;;;:::o;2832:943::-;2986:6;2994;3002;3010;3018;3071:3;3059:9;3050:7;3046:23;3042:33;3039:2;;;3088:1;3085;3078:12;3039:2;3111:29;3130:9;3111:29;:::i;:::-;3101:39;;3159:38;3193:2;3182:9;3178:18;3159:38;:::i;:::-;3149:48;;3248:2;3237:9;3233:18;3220:32;3271:18;3312:2;3304:6;3301:14;3298:2;;;3328:1;3325;3318:12;3298:2;3351:61;3404:7;3395:6;3384:9;3380:22;3351:61;:::i;:::-;3341:71;;3465:2;3454:9;3450:18;3437:32;3421:48;;3494:2;3484:8;3481:16;3478:2;;;3510:1;3507;3500:12;3478:2;3533:63;3588:7;3577:8;3566:9;3562:24;3533:63;:::i;:::-;3523:73;;3649:3;3638:9;3634:19;3621:33;3605:49;;3679:2;3669:8;3666:16;3663:2;;;3695:1;3692;3685:12;3663:2;;3718:51;3761:7;3750:8;3739:9;3735:24;3718:51;:::i;:::-;3708:61;;;3029:746;;;;;;;;:::o;3780:606::-;3884:6;3892;3900;3908;3916;3969:3;3957:9;3948:7;3944:23;3940:33;3937:2;;;3986:1;3983;3976:12;3937:2;4009:29;4028:9;4009:29;:::i;:::-;3999:39;;4057:38;4091:2;4080:9;4076:18;4057:38;:::i;:::-;4047:48;;4142:2;4131:9;4127:18;4114:32;4104:42;;4193:2;4182:9;4178:18;4165:32;4155:42;;4248:3;4237:9;4233:19;4220:33;4276:18;4268:6;4265:30;4262:2;;;4308:1;4305;4298:12;4262:2;4331:49;4372:7;4363:6;4352:9;4348:22;4331:49;:::i;4391:347::-;4456:6;4464;4517:2;4505:9;4496:7;4492:23;4488:32;4485:2;;;4533:1;4530;4523:12;4485:2;4556:29;4575:9;4556:29;:::i;:::-;4546:39;;4635:2;4624:9;4620:18;4607:32;4682:5;4675:13;4668:21;4661:5;4658:32;4648:2;;4704:1;4701;4694:12;4648:2;4727:5;4717:15;;;4475:263;;;;;:::o;4743:254::-;4811:6;4819;4872:2;4860:9;4851:7;4847:23;4843:32;4840:2;;;4888:1;4885;4878:12;4840:2;4911:29;4930:9;4911:29;:::i;:::-;4901:39;4987:2;4972:18;;;;4959:32;;-1:-1:-1;;;4830:167:1:o;5002:322::-;5079:6;5087;5095;5148:2;5136:9;5127:7;5123:23;5119:32;5116:2;;;5164:1;5161;5154:12;5116:2;5187:29;5206:9;5187:29;:::i;:::-;5177:39;5263:2;5248:18;;5235:32;;-1:-1:-1;5314:2:1;5299:18;;;5286:32;;5106:218;-1:-1:-1;;;5106:218:1:o;5329:595::-;5447:6;5455;5508:2;5496:9;5487:7;5483:23;5479:32;5476:2;;;5524:1;5521;5514:12;5476:2;5564:9;5551:23;5593:18;5634:2;5626:6;5623:14;5620:2;;;5650:1;5647;5640:12;5620:2;5673:61;5726:7;5717:6;5706:9;5702:22;5673:61;:::i;:::-;5663:71;;5787:2;5776:9;5772:18;5759:32;5743:48;;5816:2;5806:8;5803:16;5800:2;;;5832:1;5829;5822:12;5800:2;;5855:63;5910:7;5899:8;5888:9;5884:24;5855:63;:::i;:::-;5845:73;;;5466:458;;;;;:::o;5929:663::-;6056:6;6064;6072;6125:2;6113:9;6104:7;6100:23;6096:32;6093:2;;;6141:1;6138;6131:12;6093:2;6181:9;6168:23;6210:18;6251:2;6243:6;6240:14;6237:2;;;6267:1;6264;6257:12;6237:2;6290:61;6343:7;6334:6;6323:9;6319:22;6290:61;:::i;:::-;6280:71;;6398:2;6387:9;6383:18;6370:32;6360:42;;6455:2;6444:9;6440:18;6427:32;6411:48;;6484:2;6474:8;6471:16;6468:2;;;6500:1;6497;6490:12;6468:2;;6523:63;6578:7;6567:8;6556:9;6552:24;6523:63;:::i;:::-;6513:73;;;6083:509;;;;;:::o;6597:245::-;6655:6;6708:2;6696:9;6687:7;6683:23;6679:32;6676:2;;;6724:1;6721;6714:12;6676:2;6763:9;6750:23;6782:30;6806:5;6782:30;:::i;6847:249::-;6916:6;6969:2;6957:9;6948:7;6944:23;6940:32;6937:2;;;6985:1;6982;6975:12;6937:2;7017:9;7011:16;7036:30;7060:5;7036:30;:::i;7101:180::-;7160:6;7213:2;7201:9;7192:7;7188:23;7184:32;7181:2;;;7229:1;7226;7219:12;7181:2;-1:-1:-1;7252:23:1;;7171:110;-1:-1:-1;7171:110:1:o;7286:518::-;7364:6;7372;7425:2;7413:9;7404:7;7400:23;7396:32;7393:2;;;7441:1;7438;7431:12;7393:2;7477:9;7464:23;7454:33;;7538:2;7527:9;7523:18;7510:32;7565:18;7557:6;7554:30;7551:2;;;7597:1;7594;7587:12;7551:2;7620:22;;7673:4;7665:13;;7661:27;-1:-1:-1;7651:2:1;;7702:1;7699;7692:12;7651:2;7725:73;7790:7;7785:2;7772:16;7767:2;7763;7759:11;7725:73;:::i;7809:248::-;7877:6;7885;7938:2;7926:9;7917:7;7913:23;7909:32;7906:2;;;7954:1;7951;7944:12;7906:2;-1:-1:-1;;7977:23:1;;;8047:2;8032:18;;;8019:32;;-1:-1:-1;7896:161:1:o;8062:435::-;8115:3;8153:5;8147:12;8180:6;8175:3;8168:19;8206:4;8235:2;8230:3;8226:12;8219:19;;8272:2;8265:5;8261:14;8293:1;8303:169;8317:6;8314:1;8311:13;8303:169;;;8378:13;;8366:26;;8412:12;;;;8447:15;;;;8339:1;8332:9;8303:169;;;-1:-1:-1;8488:3:1;;8123:374;-1:-1:-1;;;;;8123:374:1:o;8502:257::-;8543:3;8581:5;8575:12;8608:6;8603:3;8596:19;8624:63;8680:6;8673:4;8668:3;8664:14;8657:4;8650:5;8646:16;8624:63;:::i;:::-;8741:2;8720:15;-1:-1:-1;;8716:29:1;8707:39;;;;8748:4;8703:50;;8551:208;-1:-1:-1;;8551:208:1:o;8764:276::-;8895:3;8933:6;8927:13;8949:53;8995:6;8990:3;8983:4;8975:6;8971:17;8949:53;:::i;:::-;9018:16;;;;;8903:137;-1:-1:-1;;8903:137:1:o;9253:826::-;-1:-1:-1;;;;;9650:15:1;;;9632:34;;9702:15;;9697:2;9682:18;;9675:43;9612:3;9749:2;9734:18;;9727:31;;;9575:4;;9781:57;;9818:19;;9810:6;9781:57;:::i;:::-;9886:9;9878:6;9874:22;9869:2;9858:9;9854:18;9847:50;9920:44;9957:6;9949;9920:44;:::i;:::-;9906:58;;10013:9;10005:6;10001:22;9995:3;9984:9;9980:19;9973:51;10041:32;10066:6;10058;10041:32;:::i;:::-;10033:40;9584:495;-1:-1:-1;;;;;;;;9584:495:1:o;10084:560::-;-1:-1:-1;;;;;10381:15:1;;;10363:34;;10433:15;;10428:2;10413:18;;10406:43;10480:2;10465:18;;10458:34;;;10523:2;10508:18;;10501:34;;;10343:3;10566;10551:19;;10544:32;;;10306:4;;10593:45;;10618:19;;10610:6;10593:45;:::i;:::-;10585:53;10315:329;-1:-1:-1;;;;;;;10315:329:1:o;10649:261::-;10828:2;10817:9;10810:21;10791:4;10848:56;10900:2;10889:9;10885:18;10877:6;10848:56;:::i;10915:465::-;11172:2;11161:9;11154:21;11135:4;11198:56;11250:2;11239:9;11235:18;11227:6;11198:56;:::i;:::-;11302:9;11294:6;11290:22;11285:2;11274:9;11270:18;11263:50;11330:44;11367:6;11359;11330:44;:::i;:::-;11322:52;11144:236;-1:-1:-1;;;;;11144:236:1:o;11577:219::-;11726:2;11715:9;11708:21;11689:4;11746:44;11786:2;11775:9;11771:18;11763:6;11746:44;:::i;12222:411::-;12424:2;12406:21;;;12463:2;12443:18;;;12436:30;12502:34;12497:2;12482:18;;12475:62;-1:-1:-1;;;12568:2:1;12553:18;;12546:45;12623:3;12608:19;;12396:237::o;12638:404::-;12840:2;12822:21;;;12879:2;12859:18;;;12852:30;12918:34;12913:2;12898:18;;12891:62;-1:-1:-1;;;12984:2:1;12969:18;;12962:38;13032:3;13017:19;;12812:230::o;14552:401::-;14754:2;14736:21;;;14793:2;14773:18;;;14766:30;14832:34;14827:2;14812:18;;14805:62;-1:-1:-1;;;14898:2:1;14883:18;;14876:35;14943:3;14928:19;;14726:227::o;14958:406::-;15160:2;15142:21;;;15199:2;15179:18;;;15172:30;15238:34;15233:2;15218:18;;15211:62;-1:-1:-1;;;15304:2:1;15289:18;;15282:40;15354:3;15339:19;;15132:232::o;19560:183::-;19620:4;19653:18;19645:6;19642:30;19639:2;;;19675:18;;:::i;:::-;-1:-1:-1;19720:1:1;19716:14;19732:4;19712:25;;19629:114::o;19748:128::-;19788:3;19819:1;19815:6;19812:1;19809:13;19806:2;;;19825:18;;:::i;:::-;-1:-1:-1;19861:9:1;;19796:80::o;19881:258::-;19953:1;19963:113;19977:6;19974:1;19971:13;19963:113;;;20053:11;;;20047:18;20034:11;;;20027:39;19999:2;19992:10;19963:113;;;20094:6;20091:1;20088:13;20085:2;;;-1:-1:-1;;20129:1:1;20111:16;;20104:27;19934:205::o;20144:380::-;20223:1;20219:12;;;;20266;;;20287:2;;20341:4;20333:6;20329:17;20319:27;;20287:2;20394;20386:6;20383:14;20363:18;20360:38;20357:2;;;20440:10;20435:3;20431:20;20428:1;20421:31;20475:4;20472:1;20465:15;20503:4;20500:1;20493:15;20357:2;;20199:325;;;:::o;20529:249::-;20639:2;20620:13;;-1:-1:-1;;20616:27:1;20604:40;;20674:18;20659:34;;20695:22;;;20656:62;20653:2;;;20721:18;;:::i;:::-;20757:2;20750:22;-1:-1:-1;;20576:202:1:o;20783:135::-;20822:3;-1:-1:-1;;20843:17:1;;20840:2;;;20863:18;;:::i;:::-;-1:-1:-1;20910:1:1;20899:13;;20830:88::o;20923:127::-;20984:10;20979:3;20975:20;20972:1;20965:31;21015:4;21012:1;21005:15;21039:4;21036:1;21029:15;21055:127;21116:10;21111:3;21107:20;21104:1;21097:31;21147:4;21144:1;21137:15;21171:4;21168:1;21161:15;21187:127;21248:10;21243:3;21239:20;21236:1;21229:31;21279:4;21276:1;21269:15;21303:4;21300:1;21293:15;21319:179;21354:3;21396:1;21378:16;21375:23;21372:2;;;21442:1;21439;21436;21421:23;-1:-1:-1;21479:1:1;21473:8;21468:3;21464:18;21372:2;21362:136;:::o;21503:671::-;21542:3;21584:4;21566:16;21563:26;21560:2;;;21550:624;:::o;21560:2::-;21626;21620:9;-1:-1:-1;;21691:16:1;21687:25;;21684:1;21620:9;21663:50;21742:4;21736:11;21766:16;21801:18;21872:2;21865:4;21857:6;21853:17;21850:25;21845:2;21837:6;21834:14;21831:45;21828:2;;;21879:5;;;;;21550:624;:::o;21828:2::-;21916:6;21910:4;21906:17;21895:28;;21952:3;21946:10;21979:2;21971:6;21968:14;21965:2;;;21985:5;;;;;;21550:624;:::o;21965:2::-;22069;22050:16;22044:4;22040:27;22036:36;22029:4;22020:6;22015:3;22011:16;22007:27;22004:69;22001:2;;;22076:5;;;;;;21550:624;:::o;22001:2::-;22092:57;22143:4;22134:6;22126;22122:19;22118:30;22112:4;22092:57;:::i;:::-;-1:-1:-1;22165:3:1;;21550:624;-1:-1:-1;;;;;21550:624:1:o;22179:131::-;-1:-1:-1;;;;;;22253:32:1;;22243:43;;22233:2;;22300:1;22297;22290:12

Swarm Source

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