POL Price: $0.613243 (-1.02%)
 

Overview

Max Total Supply

1,289,474 ANICUBE

Holders

1,288,317

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ANICUBE
0x706f9ac0c9d08d725b899cc8c2582620745cf930
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
AnicubeOriginCollection

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-04-20
*/

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

// 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/token/ERC721/IERC721.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

// 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/token/ERC721/ERC721.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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: contracts/files/common/meta-transactions/ContentMixin.sol


pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: contracts/files/common/meta-transactions/Initializable.sol


pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

// File: contracts/files/common/meta-transactions/EIP712Base.sol


pragma solidity ^0.8.0;

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

// File: contracts/files/common/meta-transactions/NativeMetaTransaction.sol


pragma solidity ^0.8.0;


contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

// File: contracts/files/ERC721BasePolygon.sol


pragma solidity ^0.8.0;





/**
 * @title ERC721BasePolygon
 * ERC721BasePolygon - ERC721 contract that whitelists a trading address on Polygon
 */
abstract contract ERC721BasePolygon is ERC721, ContextMixin, NativeMetaTransaction, Ownable {

    address private _admin;

    modifier onlyOwnerOrAdmin {
      require(owner() == _msgSender() || admin() == _msgSender(), "Caller is not the owner or the admin.");
      _;
    }
    
    /**
     * @dev Returns the address of the current admin.
     */
    function admin() public view virtual returns (address) {
        return _admin;
    }

    /**
     * @dev Set address of current admin.
     * Can only be called by the current owner.
     */
    function setAdmin(address newAdmin) public virtual onlyOwner {
        _admin = newAdmin;
    }

    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721(_name, _symbol) {
        _initializeEIP712(_name);
    }

    mapping(address => bool) proxyToApproved;

    function flipProxyState(address _proxyAddress) public onlyOwner {
        proxyToApproved[_proxyAddress] = !proxyToApproved[_proxyAddress];
    }

    /**
     * Override isApprovedForAll to auto-approve OS's proxy contract
     */
    function isApprovedForAll(
        address _owner,
        address _operator
    ) public override view returns (bool isOperator) {
      // if OpenSea's ERC721 Proxy Address is detected, auto-return true
        if (_operator == address(0x58807baD0B376efc12F5AD86aAc70E78ed67deaE)) {
            return true;
        }

        if (proxyToApproved[_operator]) {
            return true;
        }
        
        // otherwise, use the default ERC721.isApprovedForAll()
        return ERC721.isApprovedForAll(_owner, _operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

// File: contracts/files/Airdropable.sol

pragma solidity ^0.8.0;




contract Airdropable is ERC721BasePolygon, ReentrancyGuard {

    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _supplyCounter;

    string private _tokenURI;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    )
        ERC721BasePolygon(_name, _symbol)
    {
        _tokenURI = _uri;
    }

    function drop(address[] calldata recipients) external onlyOwnerOrAdmin {
        for (uint i = 0; i < recipients.length; i++) {
            address recipient = recipients[i];
            _drop(recipient);
        }
    }

    function _drop(address recipient) private {
            uint256 currentTokenId = _supplyCounter.current();
            _supplyCounter.increment();
            _safeMint(recipient, currentTokenId);
    }

    function totalSupply() public view returns (uint256) {
        return _supplyCounter.current();
    }

    function setTokenURI(string memory _newTokenURI) public onlyOwner {
        _tokenURI = _newTokenURI;
    }

    function tokenURI(uint256 tokenId)
        public 
        view
        virtual 
        override
        returns (string memory) 
    {
        require(
            _exists(tokenId),
            "ERC721MetaData: URI Query for nonexistent token"
        );

        return _tokenURI;
    }
}

// File: contracts/files/AnicubeOriginCollection.sol

pragma solidity ^0.8.0;

contract AnicubeOriginCollection is Airdropable {

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    )
        Airdropable(_name, _symbol, _uri)
    {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"drop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newTokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff191690553480156200001b57600080fd5b5060405162002624380380620026248339810160408190526200003e916200040a565b8282828282818181600090805190602001906200005d92919062000297565b5080516200007390600190602084019062000297565b505050620000906200008a620000c460201b60201c565b620000e0565b6200009b8262000132565b50506001600c558051620000b790600e90602084019062000297565b50505050505050620004d8565b6000620000db6200019660201b6200105d1760201c565b905090565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60065460ff16156200017b5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200018681620001f5565b506006805460ff19166001179055565b600033301415620001ef57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620001f29050565b50335b90565b6040518060800160405280604f8152602001620025d5604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600755565b828054620002a5906200049b565b90600052602060002090601f016020900481019282620002c9576000855562000314565b82601f10620002e457805160ff191683800117855562000314565b8280016001018555821562000314579182015b8281111562000314578251825591602001919060010190620002f7565b506200032292915062000326565b5090565b5b8082111562000322576000815560010162000327565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200036557600080fd5b81516001600160401b03808211156200038257620003826200033d565b604051601f8301601f19908116603f01168101908282118183101715620003ad57620003ad6200033d565b81604052838152602092508683858801011115620003ca57600080fd5b600091505b83821015620003ee5785820183015181830184015290820190620003cf565b83821115620004005760008385830101525b9695505050505050565b6000806000606084860312156200042057600080fd5b83516001600160401b03808211156200043857600080fd5b620004468783880162000353565b945060208601519150808211156200045d57600080fd5b6200046b8783880162000353565b935060408601519150808211156200048257600080fd5b50620004918682870162000353565b9150509250925092565b600181811c90821680620004b057607f821691505b60208210811415620004d257634e487b7160e01b600052602260045260246000fd5b50919050565b6120ed80620004e86000396000f3fe60806040526004361061019c5760003560e01c8063704b6c02116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c51461049b578063f2fde38b146104bb578063f73c814b146104db578063f851a440146104fb57600080fd5b8063b88d4fde1461043b578063c87b56dd1461045b578063e0df5b6f1461047b57600080fd5b80638da5cb5b116100c65780638da5cb5b146103c85780638ef5eaf0146103e657806395d89b4114610406578063a22cb4651461041b57600080fd5b8063704b6c021461037357806370a0823114610393578063715018a6146103b357600080fd5b806318160ddd116101595780632d0335ab116101335780632d0335ab146102ea5780633408e4701461032057806342842e0e146103335780636352211e1461035357600080fd5b806318160ddd1461029257806320379ee5146102b557806323b872dd146102ca57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b3146102305780630c53c51c146102525780630f7e597014610265575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611a0e565b610519565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61056b565b6040516101cd9190611a83565b34801561020457600080fd5b50610218610213366004611a96565b6105fd565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611acb565b610697565b005b6101eb610260366004611ba1565b6107bf565b34801561027157600080fd5b506101eb604051806040016040528060018152602001603160f81b81525081565b34801561029e57600080fd5b506102a76109a9565b6040519081526020016101cd565b3480156102c157600080fd5b506007546102a7565b3480156102d657600080fd5b506102506102e5366004611c1d565b6109b9565b3480156102f657600080fd5b506102a7610305366004611c59565b6001600160a01b031660009081526008602052604090205490565b34801561032c57600080fd5b50466102a7565b34801561033f57600080fd5b5061025061034e366004611c1d565b6109f1565b34801561035f57600080fd5b5061021861036e366004611a96565b610a0c565b34801561037f57600080fd5b5061025061038e366004611c59565b610a83565b34801561039f57600080fd5b506102a76103ae366004611c59565b610aee565b3480156103bf57600080fd5b50610250610b75565b3480156103d457600080fd5b506009546001600160a01b0316610218565b3480156103f257600080fd5b50610250610401366004611c74565b610bca565b34801561041257600080fd5b506101eb610cd7565b34801561042757600080fd5b50610250610436366004611ce9565b610ce6565b34801561044757600080fd5b50610250610456366004611d25565b610cfc565b34801561046757600080fd5b506101eb610476366004611a96565b610d3b565b34801561048757600080fd5b50610250610496366004611d8d565b610e4c565b3480156104a757600080fd5b506101c16104b6366004611dd6565b610ea8565b3480156104c757600080fd5b506102506104d6366004611c59565b610f31565b3480156104e757600080fd5b506102506104f6366004611c59565b610feb565b34801561050757600080fd5b50600a546001600160a01b0316610218565b60006001600160e01b031982166380ac58cd60e01b148061054a57506001600160e01b03198216635b5e139f60e01b145b8061056557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461057a90611e09565b80601f01602080910402602001604051908101604052809291908181526020018280546105a690611e09565b80156105f35780601f106105c8576101008083540402835291602001916105f3565b820191906000526020600020905b8154815290600101906020018083116105d657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661067b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106a282610a0c565b9050806001600160a01b0316836001600160a01b031614156107105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610672565b806001600160a01b03166107226110ba565b6001600160a01b0316148061073e575061073e816104b66110ba565b6107b05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610672565b6107ba83836110c4565b505050565b60408051606081810183526001600160a01b038816600081815260086020908152908590205484528301529181018690526107fd8782878787611132565b6108535760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610672565b6001600160a01b038716600090815260086020526040902054610877906001611222565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906108c790899033908a90611e44565b60405180910390a1600080306001600160a01b0316888a6040516020016108ef929190611e79565b60408051601f198184030181529082905261090991611eb0565b6000604051808303816000865af19150503d8060008114610946576040519150601f19603f3d011682016040523d82523d6000602084013e61094b565b606091505b50915091508161099d5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610672565b98975050505050505050565b60006109b4600d5490565b905090565b6109ca6109c46110ba565b8261122e565b6109e65760405162461bcd60e51b815260040161067290611ecc565b6107ba838383611305565b6107ba83838360405180602001604052806000815250610cfc565b6000818152600260205260408120546001600160a01b0316806105655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610672565b610a8b6110ba565b6001600160a01b0316610aa66009546001600160a01b031690565b6001600160a01b031614610acc5760405162461bcd60e51b815260040161067290611f1d565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610b595760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610672565b506001600160a01b031660009081526003602052604090205490565b610b7d6110ba565b6001600160a01b0316610b986009546001600160a01b031690565b6001600160a01b031614610bbe5760405162461bcd60e51b815260040161067290611f1d565b610bc860006114a5565b565b610bd26110ba565b6001600160a01b0316610bed6009546001600160a01b031690565b6001600160a01b03161480610c2b5750610c056110ba565b6001600160a01b0316610c20600a546001600160a01b031690565b6001600160a01b0316145b610c855760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f7420746865206f776e6572206f722074686520616044820152643236b4b71760d91b6064820152608401610672565b60005b818110156107ba576000838383818110610ca457610ca4611f52565b9050602002016020810190610cb99190611c59565b9050610cc4816114f7565b5080610ccf81611f7e565b915050610c88565b60606001805461057a90611e09565b610cf8610cf16110ba565b838361151c565b5050565b610d0d610d076110ba565b8361122e565b610d295760405162461bcd60e51b815260040161067290611ecc565b610d35848484846115eb565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461446174613a2055524920517565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610672565b600e8054610dc790611e09565b80601f0160208091040260200160405190810160405280929190818152602001828054610df390611e09565b8015610e405780601f10610e1557610100808354040283529160200191610e40565b820191906000526020600020905b815481529060010190602001808311610e2357829003601f168201915b50505050509050919050565b610e546110ba565b6001600160a01b0316610e6f6009546001600160a01b031690565b6001600160a01b031614610e955760405162461bcd60e51b815260040161067290611f1d565b8051610cf890600e90602084019061195f565b60006001600160a01b0382167358807bad0b376efc12f5ad86aac70e78ed67deae1415610ed757506001610565565b6001600160a01b0382166000908152600b602052604090205460ff1615610f0057506001610565565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff165b9392505050565b610f396110ba565b6001600160a01b0316610f546009546001600160a01b031690565b6001600160a01b031614610f7a5760405162461bcd60e51b815260040161067290611f1d565b6001600160a01b038116610fdf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610672565b610fe8816114a5565b50565b610ff36110ba565b6001600160a01b031661100e6009546001600160a01b031690565b6001600160a01b0316146110345760405162461bcd60e51b815260040161067290611f1d565b6001600160a01b03166000908152600b60205260409020805460ff19811660ff90911615179055565b6000333014156110b457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506110b79050565b50335b90565b60006109b461105d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110f982610a0c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166111985760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610672565b60016111ab6111a68761161e565b61169b565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156111f9573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000610f2a8284611f99565b6000818152600260205260408120546001600160a01b03166112a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610672565b60006112b283610a0c565b9050806001600160a01b0316846001600160a01b031614806112ed5750836001600160a01b03166112e2846105fd565b6001600160a01b0316145b806112fd57506112fd8185610ea8565b949350505050565b826001600160a01b031661131882610a0c565b6001600160a01b0316146113805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610672565b6001600160a01b0382166113e25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610672565b6113ed6000826110c4565b6001600160a01b0383166000908152600360205260408120805460019290611416908490611fb1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611444908490611f99565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611502600d5490565b9050611512600d80546001019055565b610cf882826116cb565b816001600160a01b0316836001600160a01b0316141561157e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610672565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115f6848484611305565b611602848484846116e5565b610d355760405162461bcd60e51b815260040161067290611fc8565b6000604051806080016040528060438152602001612075604391398051602091820120835184830151604080870151805190860120905161167e950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006116a660075490565b60405161190160f01b602082015260228101919091526042810183905260620161167e565b610cf88282604051806020016040528060008152506117ea565b60006001600160a01b0384163b156117df57836001600160a01b031663150b7a0261170e6110ba565b8786866040518563ffffffff1660e01b8152600401611730949392919061201a565b6020604051808303816000875af192505050801561176b575060408051601f3d908101601f1916820190925261176891810190612057565b60015b6117c5573d808015611799576040519150601f19603f3d011682016040523d82523d6000602084013e61179e565b606091505b5080516117bd5760405162461bcd60e51b815260040161067290611fc8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112fd565b506001949350505050565b6117f4838361181d565b61180160008484846116e5565b6107ba5760405162461bcd60e51b815260040161067290611fc8565b6001600160a01b0382166118735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610672565b6000818152600260205260409020546001600160a01b0316156118d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610672565b6001600160a01b0382166000908152600360205260408120805460019290611901908490611f99565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461196b90611e09565b90600052602060002090601f01602090048101928261198d57600085556119d3565b82601f106119a657805160ff19168380011785556119d3565b828001600101855582156119d3579182015b828111156119d35782518255916020019190600101906119b8565b506119df9291506119e3565b5090565b5b808211156119df57600081556001016119e4565b6001600160e01b031981168114610fe857600080fd5b600060208284031215611a2057600080fd5b8135610f2a816119f8565b60005b83811015611a46578181015183820152602001611a2e565b83811115610d355750506000910152565b60008151808452611a6f816020860160208601611a2b565b601f01601f19169290920160200192915050565b602081526000610f2a6020830184611a57565b600060208284031215611aa857600080fd5b5035919050565b80356001600160a01b0381168114611ac657600080fd5b919050565b60008060408385031215611ade57600080fd5b611ae783611aaf565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b2657611b26611af5565b604051601f8501601f19908116603f01168101908282118183101715611b4e57611b4e611af5565b81604052809350858152868686011115611b6757600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611b9257600080fd5b610f2a83833560208501611b0b565b600080600080600060a08688031215611bb957600080fd5b611bc286611aaf565b9450602086013567ffffffffffffffff811115611bde57600080fd5b611bea88828901611b81565b9450506040860135925060608601359150608086013560ff81168114611c0f57600080fd5b809150509295509295909350565b600080600060608486031215611c3257600080fd5b611c3b84611aaf565b9250611c4960208501611aaf565b9150604084013590509250925092565b600060208284031215611c6b57600080fd5b610f2a82611aaf565b60008060208385031215611c8757600080fd5b823567ffffffffffffffff80821115611c9f57600080fd5b818501915085601f830112611cb357600080fd5b813581811115611cc257600080fd5b8660208260051b8501011115611cd757600080fd5b60209290920196919550909350505050565b60008060408385031215611cfc57600080fd5b611d0583611aaf565b915060208301358015158114611d1a57600080fd5b809150509250929050565b60008060008060808587031215611d3b57600080fd5b611d4485611aaf565b9350611d5260208601611aaf565b925060408501359150606085013567ffffffffffffffff811115611d7557600080fd5b611d8187828801611b81565b91505092959194509250565b600060208284031215611d9f57600080fd5b813567ffffffffffffffff811115611db657600080fd5b8201601f81018413611dc757600080fd5b6112fd84823560208401611b0b565b60008060408385031215611de957600080fd5b611df283611aaf565b9150611e0060208401611aaf565b90509250929050565b600181811c90821680611e1d57607f821691505b60208210811415611e3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03848116825283166020820152606060408201819052600090611e7090830184611a57565b95945050505050565b60008351611e8b818460208801611a2b565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251611ec2818460208701611a2b565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611f9257611f92611f68565b5060010190565b60008219821115611fac57611fac611f68565b500190565b600082821015611fc357611fc3611f68565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204d90830184611a57565b9695505050505050565b60006020828403121561206957600080fd5b8151610f2a816119f856fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212206ba48c3b61eda59c04ee5f1dfaa2d82ace86089a5445651e045703e8808d3a4764736f6c634300080c0033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000019416e6963756265204f726967696e20436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000007414e4943554245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6471723361794a69337844445441534d4a6256396341737a4a3236797539374e435445324b4d414b4c3844330000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063704b6c02116100ec578063b88d4fde1161008a578063e985e9c511610064578063e985e9c51461049b578063f2fde38b146104bb578063f73c814b146104db578063f851a440146104fb57600080fd5b8063b88d4fde1461043b578063c87b56dd1461045b578063e0df5b6f1461047b57600080fd5b80638da5cb5b116100c65780638da5cb5b146103c85780638ef5eaf0146103e657806395d89b4114610406578063a22cb4651461041b57600080fd5b8063704b6c021461037357806370a0823114610393578063715018a6146103b357600080fd5b806318160ddd116101595780632d0335ab116101335780632d0335ab146102ea5780633408e4701461032057806342842e0e146103335780636352211e1461035357600080fd5b806318160ddd1461029257806320379ee5146102b557806323b872dd146102ca57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b3146102305780630c53c51c146102525780630f7e597014610265575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611a0e565b610519565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61056b565b6040516101cd9190611a83565b34801561020457600080fd5b50610218610213366004611a96565b6105fd565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611acb565b610697565b005b6101eb610260366004611ba1565b6107bf565b34801561027157600080fd5b506101eb604051806040016040528060018152602001603160f81b81525081565b34801561029e57600080fd5b506102a76109a9565b6040519081526020016101cd565b3480156102c157600080fd5b506007546102a7565b3480156102d657600080fd5b506102506102e5366004611c1d565b6109b9565b3480156102f657600080fd5b506102a7610305366004611c59565b6001600160a01b031660009081526008602052604090205490565b34801561032c57600080fd5b50466102a7565b34801561033f57600080fd5b5061025061034e366004611c1d565b6109f1565b34801561035f57600080fd5b5061021861036e366004611a96565b610a0c565b34801561037f57600080fd5b5061025061038e366004611c59565b610a83565b34801561039f57600080fd5b506102a76103ae366004611c59565b610aee565b3480156103bf57600080fd5b50610250610b75565b3480156103d457600080fd5b506009546001600160a01b0316610218565b3480156103f257600080fd5b50610250610401366004611c74565b610bca565b34801561041257600080fd5b506101eb610cd7565b34801561042757600080fd5b50610250610436366004611ce9565b610ce6565b34801561044757600080fd5b50610250610456366004611d25565b610cfc565b34801561046757600080fd5b506101eb610476366004611a96565b610d3b565b34801561048757600080fd5b50610250610496366004611d8d565b610e4c565b3480156104a757600080fd5b506101c16104b6366004611dd6565b610ea8565b3480156104c757600080fd5b506102506104d6366004611c59565b610f31565b3480156104e757600080fd5b506102506104f6366004611c59565b610feb565b34801561050757600080fd5b50600a546001600160a01b0316610218565b60006001600160e01b031982166380ac58cd60e01b148061054a57506001600160e01b03198216635b5e139f60e01b145b8061056557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461057a90611e09565b80601f01602080910402602001604051908101604052809291908181526020018280546105a690611e09565b80156105f35780601f106105c8576101008083540402835291602001916105f3565b820191906000526020600020905b8154815290600101906020018083116105d657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661067b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106a282610a0c565b9050806001600160a01b0316836001600160a01b031614156107105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610672565b806001600160a01b03166107226110ba565b6001600160a01b0316148061073e575061073e816104b66110ba565b6107b05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610672565b6107ba83836110c4565b505050565b60408051606081810183526001600160a01b038816600081815260086020908152908590205484528301529181018690526107fd8782878787611132565b6108535760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610672565b6001600160a01b038716600090815260086020526040902054610877906001611222565b6001600160a01b0388166000908152600860205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b906108c790899033908a90611e44565b60405180910390a1600080306001600160a01b0316888a6040516020016108ef929190611e79565b60408051601f198184030181529082905261090991611eb0565b6000604051808303816000865af19150503d8060008114610946576040519150601f19603f3d011682016040523d82523d6000602084013e61094b565b606091505b50915091508161099d5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610672565b98975050505050505050565b60006109b4600d5490565b905090565b6109ca6109c46110ba565b8261122e565b6109e65760405162461bcd60e51b815260040161067290611ecc565b6107ba838383611305565b6107ba83838360405180602001604052806000815250610cfc565b6000818152600260205260408120546001600160a01b0316806105655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610672565b610a8b6110ba565b6001600160a01b0316610aa66009546001600160a01b031690565b6001600160a01b031614610acc5760405162461bcd60e51b815260040161067290611f1d565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610b595760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610672565b506001600160a01b031660009081526003602052604090205490565b610b7d6110ba565b6001600160a01b0316610b986009546001600160a01b031690565b6001600160a01b031614610bbe5760405162461bcd60e51b815260040161067290611f1d565b610bc860006114a5565b565b610bd26110ba565b6001600160a01b0316610bed6009546001600160a01b031690565b6001600160a01b03161480610c2b5750610c056110ba565b6001600160a01b0316610c20600a546001600160a01b031690565b6001600160a01b0316145b610c855760405162461bcd60e51b815260206004820152602560248201527f43616c6c6572206973206e6f7420746865206f776e6572206f722074686520616044820152643236b4b71760d91b6064820152608401610672565b60005b818110156107ba576000838383818110610ca457610ca4611f52565b9050602002016020810190610cb99190611c59565b9050610cc4816114f7565b5080610ccf81611f7e565b915050610c88565b60606001805461057a90611e09565b610cf8610cf16110ba565b838361151c565b5050565b610d0d610d076110ba565b8361122e565b610d295760405162461bcd60e51b815260040161067290611ecc565b610d35848484846115eb565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461446174613a2055524920517565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610672565b600e8054610dc790611e09565b80601f0160208091040260200160405190810160405280929190818152602001828054610df390611e09565b8015610e405780601f10610e1557610100808354040283529160200191610e40565b820191906000526020600020905b815481529060010190602001808311610e2357829003601f168201915b50505050509050919050565b610e546110ba565b6001600160a01b0316610e6f6009546001600160a01b031690565b6001600160a01b031614610e955760405162461bcd60e51b815260040161067290611f1d565b8051610cf890600e90602084019061195f565b60006001600160a01b0382167358807bad0b376efc12f5ad86aac70e78ed67deae1415610ed757506001610565565b6001600160a01b0382166000908152600b602052604090205460ff1615610f0057506001610565565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff165b9392505050565b610f396110ba565b6001600160a01b0316610f546009546001600160a01b031690565b6001600160a01b031614610f7a5760405162461bcd60e51b815260040161067290611f1d565b6001600160a01b038116610fdf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610672565b610fe8816114a5565b50565b610ff36110ba565b6001600160a01b031661100e6009546001600160a01b031690565b6001600160a01b0316146110345760405162461bcd60e51b815260040161067290611f1d565b6001600160a01b03166000908152600b60205260409020805460ff19811660ff90911615179055565b6000333014156110b457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506110b79050565b50335b90565b60006109b461105d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110f982610a0c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166111985760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610672565b60016111ab6111a68761161e565b61169b565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156111f9573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000610f2a8284611f99565b6000818152600260205260408120546001600160a01b03166112a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610672565b60006112b283610a0c565b9050806001600160a01b0316846001600160a01b031614806112ed5750836001600160a01b03166112e2846105fd565b6001600160a01b0316145b806112fd57506112fd8185610ea8565b949350505050565b826001600160a01b031661131882610a0c565b6001600160a01b0316146113805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610672565b6001600160a01b0382166113e25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610672565b6113ed6000826110c4565b6001600160a01b0383166000908152600360205260408120805460019290611416908490611fb1565b90915550506001600160a01b0382166000908152600360205260408120805460019290611444908490611f99565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611502600d5490565b9050611512600d80546001019055565b610cf882826116cb565b816001600160a01b0316836001600160a01b0316141561157e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610672565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115f6848484611305565b611602848484846116e5565b610d355760405162461bcd60e51b815260040161067290611fc8565b6000604051806080016040528060438152602001612075604391398051602091820120835184830151604080870151805190860120905161167e950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006116a660075490565b60405161190160f01b602082015260228101919091526042810183905260620161167e565b610cf88282604051806020016040528060008152506117ea565b60006001600160a01b0384163b156117df57836001600160a01b031663150b7a0261170e6110ba565b8786866040518563ffffffff1660e01b8152600401611730949392919061201a565b6020604051808303816000875af192505050801561176b575060408051601f3d908101601f1916820190925261176891810190612057565b60015b6117c5573d808015611799576040519150601f19603f3d011682016040523d82523d6000602084013e61179e565b606091505b5080516117bd5760405162461bcd60e51b815260040161067290611fc8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112fd565b506001949350505050565b6117f4838361181d565b61180160008484846116e5565b6107ba5760405162461bcd60e51b815260040161067290611fc8565b6001600160a01b0382166118735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610672565b6000818152600260205260409020546001600160a01b0316156118d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610672565b6001600160a01b0382166000908152600360205260408120805460019290611901908490611f99565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461196b90611e09565b90600052602060002090601f01602090048101928261198d57600085556119d3565b82601f106119a657805160ff19168380011785556119d3565b828001600101855582156119d3579182015b828111156119d35782518255916020019190600101906119b8565b506119df9291506119e3565b5090565b5b808211156119df57600081556001016119e4565b6001600160e01b031981168114610fe857600080fd5b600060208284031215611a2057600080fd5b8135610f2a816119f8565b60005b83811015611a46578181015183820152602001611a2e565b83811115610d355750506000910152565b60008151808452611a6f816020860160208601611a2b565b601f01601f19169290920160200192915050565b602081526000610f2a6020830184611a57565b600060208284031215611aa857600080fd5b5035919050565b80356001600160a01b0381168114611ac657600080fd5b919050565b60008060408385031215611ade57600080fd5b611ae783611aaf565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611b2657611b26611af5565b604051601f8501601f19908116603f01168101908282118183101715611b4e57611b4e611af5565b81604052809350858152868686011115611b6757600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112611b9257600080fd5b610f2a83833560208501611b0b565b600080600080600060a08688031215611bb957600080fd5b611bc286611aaf565b9450602086013567ffffffffffffffff811115611bde57600080fd5b611bea88828901611b81565b9450506040860135925060608601359150608086013560ff81168114611c0f57600080fd5b809150509295509295909350565b600080600060608486031215611c3257600080fd5b611c3b84611aaf565b9250611c4960208501611aaf565b9150604084013590509250925092565b600060208284031215611c6b57600080fd5b610f2a82611aaf565b60008060208385031215611c8757600080fd5b823567ffffffffffffffff80821115611c9f57600080fd5b818501915085601f830112611cb357600080fd5b813581811115611cc257600080fd5b8660208260051b8501011115611cd757600080fd5b60209290920196919550909350505050565b60008060408385031215611cfc57600080fd5b611d0583611aaf565b915060208301358015158114611d1a57600080fd5b809150509250929050565b60008060008060808587031215611d3b57600080fd5b611d4485611aaf565b9350611d5260208601611aaf565b925060408501359150606085013567ffffffffffffffff811115611d7557600080fd5b611d8187828801611b81565b91505092959194509250565b600060208284031215611d9f57600080fd5b813567ffffffffffffffff811115611db657600080fd5b8201601f81018413611dc757600080fd5b6112fd84823560208401611b0b565b60008060408385031215611de957600080fd5b611df283611aaf565b9150611e0060208401611aaf565b90509250929050565b600181811c90821680611e1d57607f821691505b60208210811415611e3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03848116825283166020820152606060408201819052600090611e7090830184611a57565b95945050505050565b60008351611e8b818460208801611a2b565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251611ec2818460208701611a2b565b9190910192915050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611f9257611f92611f68565b5060010190565b60008219821115611fac57611fac611f68565b500190565b600082821015611fc357611fc3611f68565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061204d90830184611a57565b9695505050505050565b60006020828403121561206957600080fd5b8151610f2a816119f856fe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212206ba48c3b61eda59c04ee5f1dfaa2d82ace86089a5445651e045703e8808d3a4764736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000019416e6963756265204f726967696e20436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000007414e4943554245000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6471723361794a69337844445441534d4a6256396341737a4a3236797539374e435445324b4d414b4c3844330000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Anicube Origin Collection
Arg [1] : _symbol (string): ANICUBE
Arg [2] : _uri (string): ipfs://Qmdqr3ayJi3xDDTASMJbV9cAszJ26yu97NCTE2KMAKL8D3

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [4] : 416e6963756265204f726967696e20436f6c6c656374696f6e00000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 414e494355424500000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d6471723361794a69337844445441534d4a625639634173
Arg [9] : 7a4a3236797539374e435445324b4d414b4c3844330000000000000000000000


Deployed Bytecode Sourcemap

57584:220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25439:305;;;;;;;;;;-1:-1:-1;25439:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25439:305:0;;;;;;;;26384:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27943:221::-;;;;;;;;;;-1:-1:-1;27943:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27943:221:0;1528:203:1;27466:411:0;;;;;;;;;;-1:-1:-1;27466:411:0;;;;;:::i;:::-;;:::i;:::-;;51629:1151;;;;;;:::i;:::-;;:::i;48784:43::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48784:43:0;;;;;56964:103;;;;;;;;;;;;;:::i;:::-;;;4229:25:1;;;4217:2;4202:18;56964:103:0;4083:177:1;49793:101:0;;;;;;;;;;-1:-1:-1;49871:15:0;;49793:101;;28693:339;;;;;;;;;;-1:-1:-1;28693:339:0;;;;;:::i;:::-;;:::i;53206:107::-;;;;;;;;;;-1:-1:-1;53206:107:0;;;;;:::i;:::-;-1:-1:-1;;;;;53293:12:0;53259:13;53293:12;;;:6;:12;;;;;;;53206:107;49902:161;;;;;;;;;;-1:-1:-1;50016:9:0;49902:161;;29103:185;;;;;;;;;;-1:-1:-1;29103:185:0;;;;;:::i;:::-;;:::i;26078:239::-;;;;;;;;;;-1:-1:-1;26078:239:0;;;;;:::i;:::-;;:::i;54600:97::-;;;;;;;;;;-1:-1:-1;54600:97:0;;;;;:::i;:::-;;:::i;25808:208::-;;;;;;;;;;-1:-1:-1;25808:208:0;;;;;:::i;:::-;;:::i;39588:103::-;;;;;;;;;;;;;:::i;38937:87::-;;;;;;;;;;-1:-1:-1;39010:6:0;;-1:-1:-1;;;;;39010:6:0;38937:87;;56517:225;;;;;;;;;;-1:-1:-1;56517:225:0;;;;;:::i;:::-;;:::i;26553:104::-;;;;;;;;;;;;;:::i;28236:155::-;;;;;;;;;;-1:-1:-1;28236:155:0;;;;;:::i;:::-;;:::i;29359:328::-;;;;;;;;;;-1:-1:-1;29359:328:0;;;;;:::i;:::-;;:::i;57192:302::-;;;;;;;;;;-1:-1:-1;57192:302:0;;;;;:::i;:::-;;:::i;57075:109::-;;;;;;;;;;-1:-1:-1;57075:109:0;;;;;:::i;:::-;;:::i;55152:550::-;;;;;;;;;;-1:-1:-1;55152:550:0;;;;;:::i;:::-;;:::i;39846:201::-;;;;;;;;;;-1:-1:-1;39846:201:0;;;;;:::i;:::-;;:::i;54909:147::-;;;;;;;;;;-1:-1:-1;54909:147:0;;;;;:::i;:::-;;:::i;54395:87::-;;;;;;;;;;-1:-1:-1;54468:6:0;;-1:-1:-1;;;;;54468:6:0;54395:87;;25439:305;25541:4;-1:-1:-1;;;;;;25578:40:0;;-1:-1:-1;;;25578:40:0;;:105;;-1:-1:-1;;;;;;;25635:48:0;;-1:-1:-1;;;25635:48:0;25578:105;:158;;;-1:-1:-1;;;;;;;;;;23996:40:0;;;25700:36;25558:178;25439:305;-1:-1:-1;;25439:305:0:o;26384:100::-;26438:13;26471:5;26464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26384:100;:::o;27943:221::-;28019:7;31286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31286:16:0;28039:73;;;;-1:-1:-1;;;28039:73:0;;7792:2:1;28039:73:0;;;7774:21:1;7831:2;7811:18;;;7804:30;7870:34;7850:18;;;7843:62;-1:-1:-1;;;7921:18:1;;;7914:42;7973:19;;28039:73:0;;;;;;;;;-1:-1:-1;28132:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28132:24:0;;27943:221::o;27466:411::-;27547:13;27563:23;27578:7;27563:14;:23::i;:::-;27547:39;;27611:5;-1:-1:-1;;;;;27605:11:0;:2;-1:-1:-1;;;;;27605:11:0;;;27597:57;;;;-1:-1:-1;;;27597:57:0;;8205:2:1;27597:57:0;;;8187:21:1;8244:2;8224:18;;;8217:30;8283:34;8263:18;;;8256:62;-1:-1:-1;;;8334:18:1;;;8327:31;8375:19;;27597:57:0;8003:397:1;27597:57:0;27705:5;-1:-1:-1;;;;;27689:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27689:21:0;;:62;;;;27714:37;27731:5;27738:12;:10;:12::i;27714:37::-;27667:168;;;;-1:-1:-1;;;27667:168:0;;8607:2:1;27667:168:0;;;8589:21:1;8646:2;8626:18;;;8619:30;8685:34;8665:18;;;8658:62;8756:26;8736:18;;;8729:54;8800:19;;27667:168:0;8405:420:1;27667:168:0;27848:21;27857:2;27861:7;27848:8;:21::i;:::-;27536:341;27466:411;;:::o;51629:1151::-;51887:152;;;51830:12;51887:152;;;;;-1:-1:-1;;;;;51925:19:0;;51855:29;51925:19;;;:6;:19;;;;;;;;;51887:152;;;;;;;;;;;52074:45;51932:11;51887:152;52102:4;52108;52114;52074:6;:45::i;:::-;52052:128;;;;-1:-1:-1;;;52052:128:0;;9032:2:1;52052:128:0;;;9014:21:1;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;-1:-1:-1;;;9161:18:1;;;9154:31;9202:19;;52052:128:0;8830:397:1;52052:128:0;-1:-1:-1;;;;;52269:19:0;;;;;;:6;:19;;;;;;:26;;52293:1;52269:23;:26::i;:::-;-1:-1:-1;;;;;52247:19:0;;;;;;:6;:19;;;;;;;:48;;;;52313:126;;;;;52254:11;;52385:10;;52411:17;;52313:126;:::i;:::-;;;;;;;;52550:12;52564:23;52599:4;-1:-1:-1;;;;;52591:18:0;52641:17;52660:11;52624:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;52624:48:0;;;;;;;;;;52591:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52549:134;;;;52702:7;52694:48;;;;-1:-1:-1;;;52694:48:0;;10570:2:1;52694:48:0;;;10552:21:1;10609:2;10589:18;;;10582:30;10648;10628:18;;;10621:58;10696:18;;52694:48:0;10368:352:1;52694:48:0;52762:10;51629:1151;-1:-1:-1;;;;;;;;51629:1151:0:o;56964:103::-;57008:7;57035:24;:14;995;;903:114;57035:24;57028:31;;56964:103;:::o;28693:339::-;28888:41;28907:12;:10;:12::i;:::-;28921:7;28888:18;:41::i;:::-;28880:103;;;;-1:-1:-1;;;28880:103:0;;;;;;;:::i;:::-;28996:28;29006:4;29012:2;29016:7;28996:9;:28::i;29103:185::-;29241:39;29258:4;29264:2;29268:7;29241:39;;;;;;;;;;;;:16;:39::i;26078:239::-;26150:7;26186:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26186:16:0;26221:19;26213:73;;;;-1:-1:-1;;;26213:73:0;;11345:2:1;26213:73:0;;;11327:21:1;11384:2;11364:18;;;11357:30;11423:34;11403:18;;;11396:62;-1:-1:-1;;;11474:18:1;;;11467:39;11523:19;;26213:73:0;11143:405:1;54600:97:0;39168:12;:10;:12::i;:::-;-1:-1:-1;;;;;39157:23:0;:7;39010:6;;-1:-1:-1;;;;;39010:6:0;;38937:87;39157:7;-1:-1:-1;;;;;39157:23:0;;39149:68;;;;-1:-1:-1;;;39149:68:0;;;;;;;:::i;:::-;54672:6:::1;:17:::0;;-1:-1:-1;;;;;;54672:17:0::1;-1:-1:-1::0;;;;;54672:17:0;;;::::1;::::0;;;::::1;::::0;;54600:97::o;25808:208::-;25880:7;-1:-1:-1;;;;;25908:19:0;;25900:74;;;;-1:-1:-1;;;25900:74:0;;12116:2:1;25900:74:0;;;12098:21:1;12155:2;12135:18;;;12128:30;12194:34;12174:18;;;12167:62;-1:-1:-1;;;12245:18:1;;;12238:40;12295:19;;25900:74:0;11914:406:1;25900:74:0;-1:-1:-1;;;;;;25992:16:0;;;;;:9;:16;;;;;;;25808:208::o;39588:103::-;39168:12;:10;:12::i;:::-;-1:-1:-1;;;;;39157:23:0;:7;39010:6;;-1:-1:-1;;;;;39010:6:0;;38937:87;39157:7;-1:-1:-1;;;;;39157:23:0;;39149:68;;;;-1:-1:-1;;;39149:68:0;;;;;;;:::i;:::-;39653:30:::1;39680:1;39653:18;:30::i;:::-;39588:103::o:0;56517:225::-;54211:12;:10;:12::i;:::-;-1:-1:-1;;;;;54200:23:0;:7;39010:6;;-1:-1:-1;;;;;39010:6:0;;38937:87;54200:7;-1:-1:-1;;;;;54200:23:0;;:50;;;;54238:12;:10;:12::i;:::-;-1:-1:-1;;;;;54227:23:0;:7;54468:6;;-1:-1:-1;;;;;54468:6:0;;54395:87;54227:7;-1:-1:-1;;;;;54227:23:0;;54200:50;54192:100;;;;-1:-1:-1;;;54192:100:0;;12527:2:1;54192:100:0;;;12509:21:1;12566:2;12546:18;;;12539:30;12605:34;12585:18;;;12578:62;-1:-1:-1;;;12656:18:1;;;12649:35;12701:19;;54192:100:0;12325:401:1;54192:100:0;56604:6:::1;56599:136;56616:21:::0;;::::1;56599:136;;;56659:17;56679:10;;56690:1;56679:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;56659:33;;56707:16;56713:9;56707:5;:16::i;:::-;-1:-1:-1::0;56639:3:0;::::1;::::0;::::1;:::i;:::-;;;;56599:136;;26553:104:::0;26609:13;26642:7;26635:14;;;;;:::i;28236:155::-;28331:52;28350:12;:10;:12::i;:::-;28364:8;28374;28331:18;:52::i;:::-;28236:155;;:::o;29359:328::-;29534:41;29553:12;:10;:12::i;:::-;29567:7;29534:18;:41::i;:::-;29526:103;;;;-1:-1:-1;;;29526:103:0;;;;;;;:::i;:::-;29640:39;29654:4;29660:2;29664:7;29673:5;29640:13;:39::i;:::-;29359:328;;;;:::o;57192:302::-;31262:4;31286:16;;;:7;:16;;;;;;57312:13;;-1:-1:-1;;;;;31286:16:0;57344:113;;;;-1:-1:-1;;;57344:113:0;;13337:2:1;57344:113:0;;;13319:21:1;13376:2;13356:18;;;13349:30;13415:34;13395:18;;;13388:62;-1:-1:-1;;;13466:18:1;;;13459:45;13521:19;;57344:113:0;13135:411:1;57344:113:0;57477:9;57470:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57192:302;;;:::o;57075:109::-;39168:12;:10;:12::i;:::-;-1:-1:-1;;;;;39157:23:0;:7;39010:6;;-1:-1:-1;;;;;39010:6:0;;38937:87;39157:7;-1:-1:-1;;;;;39157:23:0;;39149:68;;;;-1:-1:-1;;;39149:68:0;;;;;;;:::i;:::-;57152:24;;::::1;::::0;:9:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;55152:550::-:0;55268:15;-1:-1:-1;;;;;55374:64:0;;55395:42;55374:64;55370:108;;;-1:-1:-1;55462:4:0;55455:11;;55370:108;-1:-1:-1;;;;;55494:26:0;;;;;;:15;:26;;;;;;;;55490:70;;;-1:-1:-1;55544:4:0;55537:11;;55490:70;-1:-1:-1;;;;;28583:25:0;;;28559:4;28583:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;55652:42;55645:49;55152:550;-1:-1:-1;;;55152:550:0:o;39846:201::-;39168:12;:10;:12::i;:::-;-1:-1:-1;;;;;39157:23:0;:7;39010:6;;-1:-1:-1;;;;;39010:6:0;;38937:87;39157:7;-1:-1:-1;;;;;39157:23:0;;39149:68;;;;-1:-1:-1;;;39149:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39935:22:0;::::1;39927:73;;;::::0;-1:-1:-1;;;39927:73:0;;13753:2:1;39927:73:0::1;::::0;::::1;13735:21:1::0;13792:2;13772:18;;;13765:30;13831:34;13811:18;;;13804:62;-1:-1:-1;;;13882:18:1;;;13875:36;13928:19;;39927:73:0::1;13551:402:1::0;39927:73:0::1;40011:28;40030:8;40011:18;:28::i;:::-;39846:201:::0;:::o;54909:147::-;39168:12;:10;:12::i;:::-;-1:-1:-1;;;;;39157:23:0;:7;39010:6;;-1:-1:-1;;;;;39010:6:0;;38937:87;39157:7;-1:-1:-1;;;;;39157:23:0;;39149:68;;;;-1:-1:-1;;;39149:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55018:30:0::1;;::::0;;;:15:::1;:30;::::0;;;;;;-1:-1:-1;;54984:64:0;::::1;55018:30;::::0;;::::1;55017:31;54984:64;::::0;;54909:147::o;40542:650::-;40613:22;40657:10;40679:4;40657:27;40653:508;;;40701:18;40722:8;;40701:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;40761:8:0;40972:17;40966:24;-1:-1:-1;;;;;40940:134:0;;-1:-1:-1;40653:508:0;;-1:-1:-1;40653:508:0;;-1:-1:-1;41138:10:0;40653:508;40542:650;:::o;55846:161::-;55936:14;55975:24;:22;:24::i;35179:174::-;35254:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35254:29:0;-1:-1:-1;;;;;35254:29:0;;;;;;;;:24;;35308:23;35254:24;35308:14;:23::i;:::-;-1:-1:-1;;;;;35299:46:0;;;;;;;;;;;35179:174;;:::o;53321:486::-;53499:4;-1:-1:-1;;;;;53524:20:0;;53516:70;;;;-1:-1:-1;;;53516:70:0;;14160:2:1;53516:70:0;;;14142:21:1;14199:2;14179:18;;;14172:30;14238:34;14218:18;;;14211:62;-1:-1:-1;;;14289:18:1;;;14282:35;14334:19;;53516:70:0;13958:401:1;53516:70:0;53640:159;53668:47;53687:27;53707:6;53687:19;:27::i;:::-;53668:18;:47::i;:::-;53640:159;;;;;;;;;;;;14591:25:1;;;;14664:4;14652:17;;14632:18;;;14625:45;14686:18;;;14679:34;;;14729:18;;;14722:34;;;14563:19;;53640:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53617:182:0;:6;-1:-1:-1;;;;;53617:182:0;;53597:202;;53321:486;;;;;;;:::o;44059:98::-;44117:7;44144:5;44148:1;44144;:5;:::i;31491:348::-;31584:4;31286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31286:16:0;31601:73;;;;-1:-1:-1;;;31601:73:0;;15102:2:1;31601:73:0;;;15084:21:1;15141:2;15121:18;;;15114:30;15180:34;15160:18;;;15153:62;-1:-1:-1;;;15231:18:1;;;15224:42;15283:19;;31601:73:0;14900:408:1;31601:73:0;31685:13;31701:23;31716:7;31701:14;:23::i;:::-;31685:39;;31754:5;-1:-1:-1;;;;;31743:16:0;:7;-1:-1:-1;;;;;31743:16:0;;:51;;;;31787:7;-1:-1:-1;;;;;31763:31:0;:20;31775:7;31763:11;:20::i;:::-;-1:-1:-1;;;;;31763:31:0;;31743:51;:87;;;;31798:32;31815:5;31822:7;31798:16;:32::i;:::-;31735:96;31491:348;-1:-1:-1;;;;31491:348:0:o;34483:578::-;34642:4;-1:-1:-1;;;;;34615:31:0;:23;34630:7;34615:14;:23::i;:::-;-1:-1:-1;;;;;34615:31:0;;34607:85;;;;-1:-1:-1;;;34607:85:0;;15515:2:1;34607:85:0;;;15497:21:1;15554:2;15534:18;;;15527:30;15593:34;15573:18;;;15566:62;-1:-1:-1;;;15644:18:1;;;15637:39;15693:19;;34607:85:0;15313:405:1;34607:85:0;-1:-1:-1;;;;;34711:16:0;;34703:65;;;;-1:-1:-1;;;34703:65:0;;15925:2:1;34703:65:0;;;15907:21:1;15964:2;15944:18;;;15937:30;16003:34;15983:18;;;15976:62;-1:-1:-1;;;16054:18:1;;;16047:34;16098:19;;34703:65:0;15723:400:1;34703:65:0;34885:29;34902:1;34906:7;34885:8;:29::i;:::-;-1:-1:-1;;;;;34927:15:0;;;;;;:9;:15;;;;;:20;;34946:1;;34927:15;:20;;34946:1;;34927:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34958:13:0;;;;;;:9;:13;;;;;:18;;34975:1;;34958:13;:18;;34975:1;;34958:18;:::i;:::-;;;;-1:-1:-1;;34987:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34987:21:0;-1:-1:-1;;;;;34987:21:0;;;;;;;;;35026:27;;34987:16;;35026:27;;;;;;;34483:578;;;:::o;40207:191::-;40300:6;;;-1:-1:-1;;;;;40317:17:0;;;-1:-1:-1;;;;;;40317:17:0;;;;;;;40350:40;;40300:6;;;40317:17;40300:6;;40350:40;;40281:16;;40350:40;40270:128;40207:191;:::o;56750:206::-;56807:22;56832:24;:14;995;;903:114;56832:24;56807:49;;56871:26;:14;1114:19;;1132:1;1114:19;;;1025:127;56871:26;56912:36;56922:9;56933:14;56912:9;:36::i;35495:315::-;35650:8;-1:-1:-1;;;;;35641:17:0;:5;-1:-1:-1;;;;;35641:17:0;;;35633:55;;;;-1:-1:-1;;;35633:55:0;;16460:2:1;35633:55:0;;;16442:21:1;16499:2;16479:18;;;16472:30;16538:27;16518:18;;;16511:55;16583:18;;35633:55:0;16258:349:1;35633:55:0;-1:-1:-1;;;;;35699:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35699:46:0;;;;;;;;;;35761:41;;540::1;;;35761::0;;513:18:1;35761:41:0;;;;;;;35495:315;;;:::o;30569:::-;30726:28;30736:4;30742:2;30746:7;30726:9;:28::i;:::-;30773:48;30796:4;30802:2;30806:7;30815:5;30773:22;:48::i;:::-;30765:111;;;;-1:-1:-1;;;30765:111:0;;;;;;;:::i;52788:410::-;52898:7;50965:100;;;;;;;;;;;;;;;;;50945:127;;;;;;;53052:12;;53087:11;;;;53131:24;;;;;53121:35;;;;;;52971:204;;;;;17262:25:1;;;17318:2;17303:18;;17296:34;;;;-1:-1:-1;;;;;17366:32:1;17361:2;17346:18;;17339:60;17430:2;17415:18;;17408:34;17249:3;17234:19;;17031:417;52971:204:0;;;;;;;;;;;;;52943:247;;;;;;52923:267;;52788:410;;;:::o;50432:258::-;50531:7;50633:20;49871:15;;;49793:101;50633:20;50604:63;;-1:-1:-1;;;50604:63:0;;;17711:27:1;17754:11;;;17747:27;;;;17790:12;;;17783:28;;;17827:12;;50604:63:0;17453:392:1;32181:110:0;32257:26;32267:2;32271:7;32257:26;;;;;;;;;;;;:9;:26::i;36375:799::-;36530:4;-1:-1:-1;;;;;36551:13:0;;15127:20;15175:8;36547:620;;36603:2;-1:-1:-1;;;;;36587:36:0;;36624:12;:10;:12::i;:::-;36638:4;36644:7;36653:5;36587:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36587:72:0;;;;;;;;-1:-1:-1;;36587:72:0;;;;;;;;;;;;:::i;:::-;;;36583:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36829:13:0;;36825:272;;36872:60;;-1:-1:-1;;;36872:60:0;;;;;;;:::i;36825:272::-;37047:6;37041:13;37032:6;37028:2;37024:15;37017:38;36583:529;-1:-1:-1;;;;;;36710:51:0;-1:-1:-1;;;36710:51:0;;-1:-1:-1;36703:58:0;;36547:620;-1:-1:-1;37151:4:0;36375:799;;;;;;:::o;32518:321::-;32648:18;32654:2;32658:7;32648:5;:18::i;:::-;32699:54;32730:1;32734:2;32738:7;32747:5;32699:22;:54::i;:::-;32677:154;;;;-1:-1:-1;;;32677:154:0;;;;;;;:::i;33175:382::-;-1:-1:-1;;;;;33255:16:0;;33247:61;;;;-1:-1:-1;;;33247:61:0;;18800:2:1;33247:61:0;;;18782:21:1;;;18819:18;;;18812:30;18878:34;18858:18;;;18851:62;18930:18;;33247:61:0;18598:356:1;33247:61:0;31262:4;31286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31286:16:0;:30;33319:58;;;;-1:-1:-1;;;33319:58:0;;19161:2:1;33319:58:0;;;19143:21:1;19200:2;19180:18;;;19173:30;19239;19219:18;;;19212:58;19287:18;;33319:58:0;18959:352:1;33319:58:0;-1:-1:-1;;;;;33448:13:0;;;;;;:9;:13;;;;;:18;;33465:1;;33448:13;:18;;33465:1;;33448:18;:::i;:::-;;;;-1:-1:-1;;33477:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33477:21:0;-1:-1:-1;;;;;33477:21:0;;;;;;;;33516:33;;33477:16;;;33516:33;;33477:16;;33516:33;33175:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:631;2369:5;2399:18;2440:2;2432:6;2429:14;2426:40;;;2446:18;;:::i;:::-;2521:2;2515:9;2489:2;2575:15;;-1:-1:-1;;2571:24:1;;;2597:2;2567:33;2563:42;2551:55;;;2621:18;;;2641:22;;;2618:46;2615:72;;;2667:18;;:::i;:::-;2707:10;2703:2;2696:22;2736:6;2727:15;;2766:6;2758;2751:22;2806:3;2797:6;2792:3;2788:16;2785:25;2782:45;;;2823:1;2820;2813:12;2782:45;2873:6;2868:3;2861:4;2853:6;2849:17;2836:44;2928:1;2921:4;2912:6;2904;2900:19;2896:30;2889:41;;;;2305:631;;;;;:::o;2941:220::-;2983:5;3036:3;3029:4;3021:6;3017:17;3013:27;3003:55;;3054:1;3051;3044:12;3003:55;3076:79;3151:3;3142:6;3129:20;3122:4;3114:6;3110:17;3076:79;:::i;3166:689::-;3268:6;3276;3284;3292;3300;3353:3;3341:9;3332:7;3328:23;3324:33;3321:53;;;3370:1;3367;3360:12;3321:53;3393:29;3412:9;3393:29;:::i;:::-;3383:39;;3473:2;3462:9;3458:18;3445:32;3500:18;3492:6;3489:30;3486:50;;;3532:1;3529;3522:12;3486:50;3555:49;3596:7;3587:6;3576:9;3572:22;3555:49;:::i;:::-;3545:59;;;3651:2;3640:9;3636:18;3623:32;3613:42;;3702:2;3691:9;3687:18;3674:32;3664:42;;3756:3;3745:9;3741:19;3728:33;3801:4;3794:5;3790:16;3783:5;3780:27;3770:55;;3821:1;3818;3811:12;3770:55;3844:5;3834:15;;;3166:689;;;;;;;;:::o;4447:328::-;4524:6;4532;4540;4593:2;4581:9;4572:7;4568:23;4564:32;4561:52;;;4609:1;4606;4599:12;4561:52;4632:29;4651:9;4632:29;:::i;:::-;4622:39;;4680:38;4714:2;4703:9;4699:18;4680:38;:::i;:::-;4670:48;;4765:2;4754:9;4750:18;4737:32;4727:42;;4447:328;;;;;:::o;4780:186::-;4839:6;4892:2;4880:9;4871:7;4867:23;4863:32;4860:52;;;4908:1;4905;4898:12;4860:52;4931:29;4950:9;4931:29;:::i;4971:615::-;5057:6;5065;5118:2;5106:9;5097:7;5093:23;5089:32;5086:52;;;5134:1;5131;5124:12;5086:52;5174:9;5161:23;5203:18;5244:2;5236:6;5233:14;5230:34;;;5260:1;5257;5250:12;5230:34;5298:6;5287:9;5283:22;5273:32;;5343:7;5336:4;5332:2;5328:13;5324:27;5314:55;;5365:1;5362;5355:12;5314:55;5405:2;5392:16;5431:2;5423:6;5420:14;5417:34;;;5447:1;5444;5437:12;5417:34;5500:7;5495:2;5485:6;5482:1;5478:14;5474:2;5470:23;5466:32;5463:45;5460:65;;;5521:1;5518;5511:12;5460:65;5552:2;5544:11;;;;;5574:6;;-1:-1:-1;4971:615:1;;-1:-1:-1;;;;4971:615:1:o;5591:347::-;5656:6;5664;5717:2;5705:9;5696:7;5692:23;5688:32;5685:52;;;5733:1;5730;5723:12;5685:52;5756:29;5775:9;5756:29;:::i;:::-;5746:39;;5835:2;5824:9;5820:18;5807:32;5882:5;5875:13;5868:21;5861:5;5858:32;5848:60;;5904:1;5901;5894:12;5848:60;5927:5;5917:15;;;5591:347;;;;;:::o;5943:537::-;6038:6;6046;6054;6062;6115:3;6103:9;6094:7;6090:23;6086:33;6083:53;;;6132:1;6129;6122:12;6083:53;6155:29;6174:9;6155:29;:::i;:::-;6145:39;;6203:38;6237:2;6226:9;6222:18;6203:38;:::i;:::-;6193:48;;6288:2;6277:9;6273:18;6260:32;6250:42;;6343:2;6332:9;6328:18;6315:32;6370:18;6362:6;6359:30;6356:50;;;6402:1;6399;6392:12;6356:50;6425:49;6466:7;6457:6;6446:9;6442:22;6425:49;:::i;:::-;6415:59;;;5943:537;;;;;;;:::o;6485:450::-;6554:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:52;;;6623:1;6620;6613:12;6575:52;6663:9;6650:23;6696:18;6688:6;6685:30;6682:50;;;6728:1;6725;6718:12;6682:50;6751:22;;6804:4;6796:13;;6792:27;-1:-1:-1;6782:55:1;;6833:1;6830;6823:12;6782:55;6856:73;6921:7;6916:2;6903:16;6898:2;6894;6890:11;6856:73;:::i;6940:260::-;7008:6;7016;7069:2;7057:9;7048:7;7044:23;7040:32;7037:52;;;7085:1;7082;7075:12;7037:52;7108:29;7127:9;7108:29;:::i;:::-;7098:39;;7156:38;7190:2;7179:9;7175:18;7156:38;:::i;:::-;7146:48;;6940:260;;;;;:::o;7205:380::-;7284:1;7280:12;;;;7327;;;7348:61;;7402:4;7394:6;7390:17;7380:27;;7348:61;7455:2;7447:6;7444:14;7424:18;7421:38;7418:161;;;7501:10;7496:3;7492:20;7489:1;7482:31;7536:4;7533:1;7526:15;7564:4;7561:1;7554:15;7418:161;;7205:380;;;:::o;9232:432::-;-1:-1:-1;;;;;9489:15:1;;;9471:34;;9541:15;;9536:2;9521:18;;9514:43;9593:2;9588;9573:18;;9566:30;;;9414:4;;9613:45;;9639:18;;9631:6;9613:45;:::i;:::-;9605:53;9232:432;-1:-1:-1;;;;;9232:432:1:o;9669:415::-;9826:3;9864:6;9858:13;9880:53;9926:6;9921:3;9914:4;9906:6;9902:17;9880:53;:::i;:::-;10002:2;9998:15;;;;-1:-1:-1;;9994:53:1;9955:16;;;;9980:68;;;10075:2;10064:14;;9669:415;-1:-1:-1;;9669:415:1:o;10089:274::-;10218:3;10256:6;10250:13;10272:53;10318:6;10313:3;10306:4;10298:6;10294:17;10272:53;:::i;:::-;10341:16;;;;;10089:274;-1:-1:-1;;10089:274:1:o;10725:413::-;10927:2;10909:21;;;10966:2;10946:18;;;10939:30;11005:34;11000:2;10985:18;;10978:62;-1:-1:-1;;;11071:2:1;11056:18;;11049:47;11128:3;11113:19;;10725:413::o;11553:356::-;11755:2;11737:21;;;11774:18;;;11767:30;11833:34;11828:2;11813:18;;11806:62;11900:2;11885:18;;11553:356::o;12731:127::-;12792:10;12787:3;12783:20;12780:1;12773:31;12823:4;12820:1;12813:15;12847:4;12844:1;12837:15;12863:127;12924:10;12919:3;12915:20;12912:1;12905:31;12955:4;12952:1;12945:15;12979:4;12976:1;12969:15;12995:135;13034:3;-1:-1:-1;;13055:17:1;;13052:43;;;13075:18;;:::i;:::-;-1:-1:-1;13122:1:1;13111:13;;12995:135::o;14767:128::-;14807:3;14838:1;14834:6;14831:1;14828:13;14825:39;;;14844:18;;:::i;:::-;-1:-1:-1;14880:9:1;;14767:128::o;16128:125::-;16168:4;16196:1;16193;16190:8;16187:34;;;16201:18;;:::i;:::-;-1:-1:-1;16238:9:1;;16128:125::o;16612:414::-;16814:2;16796:21;;;16853:2;16833:18;;;16826:30;16892:34;16887:2;16872:18;;16865:62;-1:-1:-1;;;16958:2:1;16943:18;;16936:48;17016:3;17001:19;;16612:414::o;17850:489::-;-1:-1:-1;;;;;18119:15:1;;;18101:34;;18171:15;;18166:2;18151:18;;18144:43;18218:2;18203:18;;18196:34;;;18266:3;18261:2;18246:18;;18239:31;;;18044:4;;18287:46;;18313:19;;18305:6;18287:46;:::i;:::-;18279:54;17850:489;-1:-1:-1;;;;;;17850:489:1:o;18344:249::-;18413:6;18466:2;18454:9;18445:7;18441:23;18437:32;18434:52;;;18482:1;18479;18472:12;18434:52;18514:9;18508:16;18533:30;18557:5;18533:30;:::i

Swarm Source

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