ETH Price: $3,468.66 (-2.75%)
Gas: 10 Gwei

Token

CyberV (CyberV)
 

Overview

Max Total Supply

2,077 CyberV

Holders

1,175

Market

Volume (24H)

0.18 ETH

Min Price (24H)

$624.36 @ 0.180000 ETH

Max Price (24H)

$624.36 @ 0.180000 ETH
Balance
1 CyberV
0x1331560e76aba4f42b406d4ddc95c510d723f2d8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Secure your exclusive genesis CyberV avatar, a rare and coveted digital collectible symbolizing your entry into the CyberV NFT ecosystem.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CyberV

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, GNU LGPLv3 license
File 1 of 20 : CyberV.sol
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity ^0.8.20;

import "IERC20.sol";
import "SafeERC20.sol";
import "ERC721Enumerable.sol";
import "Ownable2Step.sol";
import "ReentrancyGuard.sol";
import "Strings.sol";
import "ECDSA.sol";

contract CyberV is ERC721Enumerable, Ownable2Step, ReentrancyGuard {
    using SafeERC20 for IERC20;

    // base url
    string private _baseTokenURI;
    // signer
    address public signer;
    // total count
    uint256 public totalCount = 2077;
    // mint price
    uint256 public price = 127*10**15;
    // mint time stamp
    uint256 public whitelistStartTime;
    uint256 public whitelistEndTime;
    uint256 public publicStartTime;
    uint256 public publicEndTime;
    // count per address
    uint8 public countPerAddress = 2;

    // owner -> count
    mapping(address => uint256) public mintStats;

    constructor(string memory baseTokenURI, address _owner, address _signer) ERC721("CyberV", "CyberV") {
        _baseTokenURI = baseTokenURI;
        _transferOwnership(_owner);
        signer = _signer;
    }

    function getMintPeriod() public view returns(uint256) {
        if (block.timestamp >= whitelistStartTime && block.timestamp <= whitelistEndTime) {
            return 1;
        }
        else if (block.timestamp >= publicStartTime && block.timestamp <= publicEndTime) {
            return 2;
        }
        return 0;
    }

    function mint(uint256 _count, bytes calldata _signature) external payable nonReentrant {
        uint256 mintPeriod = getMintPeriod();
        require(
            mintPeriod > 0,
            "CyberV: mint not started or already closed"
        );

        require(
            _count > 0 && _count <= countPerAddress - mintStats[msg.sender],
            "CyberV: invalid count"
        );

        require(
            totalSupply() < totalCount,
            "CyberV: exceed total available supply"
        );

        require(msg.value == price * _count, "CyberV: invalid eth value");

        if (mintPeriod == 1) {
            bytes32 message = ECDSA.toEthSignedMessageHash(
              keccak256(
                abi.encodePacked(_getChainID(), address(this), msg.sender)
              )
            );
            require(
              ECDSA.recover(message, _signature) == signer,
              "CyberV: invalid signature"
            );
        }

        for(uint i=0; i<_count; i++) {
            mintStats[msg.sender] = mintStats[msg.sender] + 1;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "CyberV: nonexistent token id");

        return
            string(
                abi.encodePacked(
                    _baseTokenURI,
                    "/",
                    Strings.toString(_tokenId)
                )
            );
    }

    function setSigner(address _signer) external onlyOwner {
        signer = _signer;
    }

    function setBaseURI(string memory baseTokenURI) external onlyOwner {
        _baseTokenURI = baseTokenURI;
    }

    function setWhiteListMintTimeFrame(uint256 _whitelistStartTime, uint256 _whitelistEndTime) external onlyOwner {
        whitelistStartTime = _whitelistStartTime;
        whitelistEndTime = _whitelistEndTime;
    }

    function setPublicMintTimeFrame(uint256 _publicStartTime, uint256 _publicEndTime) external onlyOwner {
        publicStartTime = _publicStartTime;
        publicEndTime = _publicEndTime;
    }

    function withdraw(address _erc20) external onlyOwner {
        if (_erc20 == address(0)) {
            (bool sent, bytes memory data) = payable(owner()).call{value: address(this).balance}("");
            require(sent, "Failed to withdraw Ether");
        } else {
            IERC20 token = IERC20(_erc20);
            token.safeTransfer(owner(), token.balanceOf(address(this)));
        }
    }

    function _getChainID() internal view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    receive() external payable {}
}

File 2 of 20 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 3 of 20 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "IERC20.sol";
import "draft-IERC20Permit.sol";
import "Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 4 of 20 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 5 of 20 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 6 of 20 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "ERC721.sol";
import "IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 20 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "ERC165.sol";

/**
 * @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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 8 of 20 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "IERC165.sol";

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 9 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 10 of 20 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 20 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";

/**
 * @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 12 of 20 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 13 of 20 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "Math.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

File 14 of 20 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 15 of 20 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "IERC165.sol";

/**
 * @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 16 of 20 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 17 of 20 : Ownable2Step.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

import "Ownable.sol";

/**
 * @dev Contract module which provides 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} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() external {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

File 18 of 20 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

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

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

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

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

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

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

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

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

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

File 19 of 20 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

File 20 of 20 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

Settings
{
  "evmVersion": "istanbul",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "libraries": {
    "CyberV.sol": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","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":[],"name":"countPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPeriod","outputs":[{"internalType":"uint256","name":"","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":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintStats","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicStartTime","type":"uint256"},{"internalType":"uint256","name":"_publicEndTime","type":"uint256"}],"name":"setPublicMintTimeFrame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistStartTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistEndTime","type":"uint256"}],"name":"setWhiteListMintTimeFrame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[],"name":"whitelistEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261081d600f556701c331d3be7980006010556015805460ff191660021790553480156200003057600080fd5b5060405162002ffc38038062002ffc8339810160408190526200005391620001ac565b60408051808201825260068082526521bcb132b92b60d11b602080840182905284518086019095529184529083015290600062000091838262000335565b506001620000a0828262000335565b505050620000bd620000b76200010560201b60201c565b62000109565b6001600c55600d620000d0848262000335565b50620000dc8262000109565b600e80546001600160a01b0319166001600160a01b039290921691909117905550620004019050565b3390565b600b80546001600160a01b0319169055620001248162000127565b50565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b0381168114620001a757600080fd5b919050565b600080600060608486031215620001c257600080fd5b83516001600160401b0380821115620001da57600080fd5b818601915086601f830112620001ef57600080fd5b81518181111562000204576200020462000179565b604051601f8201601f19908116603f011681019083821181831017156200022f576200022f62000179565b816040528281526020935089848487010111156200024c57600080fd5b600091505b8282101562000270578482018401518183018501529083019062000251565b60008484830101528097505050506200028b8187016200018f565b935050506200029d604085016200018f565b90509250925092565b600181811c90821680620002bb57607f821691505b602082108103620002dc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033057600081815260208120601f850160051c810160208610156200030b5750805b601f850160051c820191505b818110156200032c5782815560010162000317565b5050505b505050565b81516001600160401b0381111562000351576200035162000179565b6200036981620003628454620002a6565b84620002e2565b602080601f831160018114620003a15760008415620003885750858301515b600019600386901b1c1916600185901b1785556200032c565b600085815260208120601f198616915b82811015620003d257888601518255948401946001909101908401620003b1565b5085821015620003f15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612beb80620004116000396000f3fe60806040526004361061021e5760003560e01c806370a0823111610123578063a8d759e2116100ab578063db7fd4081161006f578063db7fd40814610613578063e30c397814610626578063e985e9c514610644578063ebdfd7221461068d578063f2fde38b146106a357600080fd5b8063a8d759e21461055a578063b5748c5114610587578063b88d4fde146105b3578063c87b56dd146105d3578063cec0489a146105f357600080fd5b80639292caaf116100f25780639292caaf146104e457806394b76cde146104fa57806395d89b411461050f578063a035b1fe14610524578063a22cb4651461053a57600080fd5b806370a082311461047c578063715018a61461049c57806379ba5097146104b15780638da5cb5b146104c657600080fd5b806334eafb11116101a657806351cff8d91161017557806351cff8d9146103e657806355f804b3146104065780635fd1bbc4146104265780636352211e1461043c5780636c19e7831461045c57600080fd5b806334eafb111461037057806342842e0e1461038657806347ec7725146103a65780634f6ccce7146103c657600080fd5b806318160ddd116101ed57806318160ddd146102db578063238ac933146102fa57806323b872dd1461031a5780632c27e5811461033a5780632f745c591461035057600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a6102453660046123f7565b6106c3565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106ee565b604051610256919061246b565b34801561028d57600080fd5b506102a161029c36600461247e565b610780565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046124b3565b6107a7565b005b3480156102e757600080fd5b506008545b604051908152602001610256565b34801561030657600080fd5b50600e546102a1906001600160a01b031681565b34801561032657600080fd5b506102d96103353660046124dd565b6108c1565b34801561034657600080fd5b506102ec60145481565b34801561035c57600080fd5b506102ec61036b3660046124b3565b6108f2565b34801561037c57600080fd5b506102ec600f5481565b34801561039257600080fd5b506102d96103a13660046124dd565b610988565b3480156103b257600080fd5b506102d96103c1366004612519565b6109a3565b3480156103d257600080fd5b506102ec6103e136600461247e565b6109b6565b3480156103f257600080fd5b506102d961040136600461253b565b610a49565b34801561041257600080fd5b506102d96104213660046125e2565b610ba9565b34801561043257600080fd5b506102ec60135481565b34801561044857600080fd5b506102a161045736600461247e565b610bbd565b34801561046857600080fd5b506102d961047736600461253b565b610c1d565b34801561048857600080fd5b506102ec61049736600461253b565b610c47565b3480156104a857600080fd5b506102d9610ccd565b3480156104bd57600080fd5b506102d9610ce1565b3480156104d257600080fd5b50600a546001600160a01b03166102a1565b3480156104f057600080fd5b506102ec60115481565b34801561050657600080fd5b506102ec610d58565b34801561051b57600080fd5b50610274610d9e565b34801561053057600080fd5b506102ec60105481565b34801561054657600080fd5b506102d9610555366004612639565b610dad565b34801561056657600080fd5b506102ec61057536600461253b565b60166020526000908152604090205481565b34801561059357600080fd5b506015546105a19060ff1681565b60405160ff9091168152602001610256565b3480156105bf57600080fd5b506102d96105ce366004612670565b610db8565b3480156105df57600080fd5b506102746105ee36600461247e565b610df0565b3480156105ff57600080fd5b506102d961060e366004612519565b610e89565b6102d96106213660046126ec565b610e9c565b34801561063257600080fd5b50600b546001600160a01b03166102a1565b34801561065057600080fd5b5061024a61065f366004612768565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069957600080fd5b506102ec60125481565b3480156106af57600080fd5b506102d96106be36600461253b565b61120a565b60006001600160e01b0319821663780e9d6360e01b14806106e857506106e88261127b565b92915050565b6060600080546106fd9061279b565b80601f01602080910402602001604051908101604052809291908181526020018280546107299061279b565b80156107765780601f1061074b57610100808354040283529160200191610776565b820191906000526020600020905b81548152906001019060200180831161075957829003601f168201915b5050505050905090565b600061078b826112cb565b506000908152600460205260409020546001600160a01b031690565b60006107b282610bbd565b9050806001600160a01b0316836001600160a01b0316036108245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806108405750610840813361065f565b6108b25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161081b565b6108bc838361132a565b505050565b6108cb3382611398565b6108e75760405162461bcd60e51b815260040161081b906127d5565b6108bc838383611417565b60006108fd83610c47565b821061095f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161081b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108bc83838360405180602001604052806000815250610db8565b6109ab611588565b601391909155601455565b60006109c160085490565b8210610a245760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081b565b60088281548110610a3757610a37612822565b90600052602060002001549050919050565b610a51611588565b6001600160a01b038116610b1557600080610a74600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610abe576040519150601f19603f3d011682016040523d82523d6000602084013e610ac3565b606091505b5091509150816108bc5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2077697468647261772045746865720000000000000000604482015260640161081b565b80610ba4610b2b600a546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b939190612838565b6001600160a01b03841691906115e2565b505b50565b610bb1611588565b600d610ba4828261289f565b6000818152600260205260408120546001600160a01b0316806106e85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161081b565b610c25611588565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610cb15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161081b565b506001600160a01b031660009081526003602052604090205490565b610cd5611588565b610cdf6000611634565b565b600b5433906001600160a01b03168114610d4f5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b606482015260840161081b565b610ba681611634565b60006011544210158015610d6e57506012544211155b15610d795750600190565b6013544210158015610d8d57506014544211155b15610d985750600290565b50600090565b6060600180546106fd9061279b565b610ba433838361164d565b610dc23383611398565b610dde5760405162461bcd60e51b815260040161081b906127d5565b610dea8484848461171b565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e575760405162461bcd60e51b815260206004820152601c60248201527f4379626572563a206e6f6e6578697374656e7420746f6b656e20696400000000604482015260640161081b565b600d610e628361174e565b604051602001610e7392919061295f565b6040516020818303038152906040529050919050565b610e91611588565b601191909155601255565b610ea46117e1565b6000610eae610d58565b905060008111610f135760405162461bcd60e51b815260206004820152602a60248201527f4379626572563a206d696e74206e6f742073746172746564206f7220616c726560448201526918591e4818db1bdcd95960b21b606482015260840161081b565b600084118015610f42575033600090815260166020526040902054601554610f3e919060ff16612a09565b8411155b610f865760405162461bcd60e51b815260206004820152601560248201527410de58995c958e881a5b9d985b1a590818dbdd5b9d605a1b604482015260640161081b565b600f5460085410610fe75760405162461bcd60e51b815260206004820152602560248201527f4379626572563a2065786365656420746f74616c20617661696c61626c6520736044820152647570706c7960d81b606482015260840161081b565b83601054610ff59190612a1c565b34146110435760405162461bcd60e51b815260206004820152601960248201527f4379626572563a20696e76616c6964206574682076616c756500000000000000604482015260640161081b565b806001036111965760006110ec46303360405160200161108c93929190928352606091821b6bffffffffffffffffffffffff199081166020850152911b16603482015260480190565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b600e54604080516020601f88018190048102820181019092528681529293506001600160a01b039091169161113e91849190889088908190840183828082843760009201919091525061183a92505050565b6001600160a01b0316146111945760405162461bcd60e51b815260206004820152601960248201527f4379626572563a20696e76616c6964207369676e617475726500000000000000604482015260640161081b565b505b60005b848110156111fe57336000908152601660205260409020546111bc906001612a33565b336000818152601660205260409020919091556111ec906111dc60085490565b6111e7906001612a33565b61185e565b806111f681612a46565b915050611199565b50506108bc6001600c55565b611212611588565b600b80546001600160a01b0383166001600160a01b03199091168117909155611243600a546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60006001600160e01b031982166380ac58cd60e01b14806112ac57506001600160e01b03198216635b5e139f60e01b145b806106e857506301ffc9a760e01b6001600160e01b03198316146106e8565b6000818152600260205260409020546001600160a01b0316610ba65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061135f82610bbd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113a483610bbd565b9050806001600160a01b0316846001600160a01b031614806113eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061140f5750836001600160a01b031661140484610780565b6001600160a01b0316145b949350505050565b826001600160a01b031661142a82610bbd565b6001600160a01b0316146114505760405162461bcd60e51b815260040161081b90612a5f565b6001600160a01b0382166114b25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081b565b6114bf8383836001611878565b826001600160a01b03166114d282610bbd565b6001600160a01b0316146114f85760405162461bcd60e51b815260040161081b90612a5f565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b03163314610cdf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526108bc9084906119ac565b600b80546001600160a01b0319169055610ba681611a7e565b816001600160a01b0316836001600160a01b0316036116ae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611726848484611417565b61173284848484611ad0565b610dea5760405162461bcd60e51b815260040161081b90612aa4565b6060600061175b83611bd1565b600101905060008167ffffffffffffffff81111561177b5761177b612556565b6040519080825280601f01601f1916602001820160405280156117a5576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846117af57509392505050565b6002600c54036118335760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161081b565b6002600c55565b60008060006118498585611ca9565b9150915061185681611cee565b509392505050565b610ba4828260405180602001604052806000815250611e38565b60018111156118e75760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161081b565b816001600160a01b0385166119435761193e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611966565b836001600160a01b0316856001600160a01b031614611966576119668582611e6b565b6001600160a01b0384166119825761197d81611f08565b6119a5565b846001600160a01b0316846001600160a01b0316146119a5576119a58482611fb7565b5050505050565b6000611a01826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611ffb9092919063ffffffff16565b8051909150156108bc5780806020019051810190611a1f9190612af6565b6108bc5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161081b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611bc657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b14903390899088908890600401612b13565b6020604051808303816000875af1925050508015611b4f575060408051601f3d908101601f19168201909252611b4c91810190612b50565b60015b611bac573d808015611b7d576040519150601f19603f3d011682016040523d82523d6000602084013e611b82565b606091505b508051600003611ba45760405162461bcd60e51b815260040161081b90612aa4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061140f565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c105772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611c3c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c5a57662386f26fc10000830492506010015b6305f5e1008310611c72576305f5e100830492506008015b6127108310611c8657612710830492506004015b60648310611c98576064830492506002015b600a83106106e85760010192915050565b6000808251604103611cdf5760208301516040840151606085015160001a611cd38782858561200a565b94509450505050611ce7565b506000905060025b9250929050565b6000816004811115611d0257611d02612b6d565b03611d0a5750565b6001816004811115611d1e57611d1e612b6d565b03611d6b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161081b565b6002816004811115611d7f57611d7f612b6d565b03611dcc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161081b565b6003816004811115611de057611de0612b6d565b03610ba65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161081b565b611e4283836120ce565b611e4f6000848484611ad0565b6108bc5760405162461bcd60e51b815260040161081b90612aa4565b60006001611e7884610c47565b611e829190612a09565b600083815260076020526040902054909150808214611ed5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f1a90600190612a09565b60008381526009602052604081205460088054939450909284908110611f4257611f42612822565b906000526020600020015490508060088381548110611f6357611f63612822565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f9b57611f9b612b83565b6001900381819060005260206000200160009055905550505050565b6000611fc283610c47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b606061140f8484600085612268565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561204157506000905060036120c5565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612095573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120be576000600192509250506120c5565b9150600090505b94509492505050565b6001600160a01b0382166121245760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081b565b6000818152600260205260409020546001600160a01b0316156121895760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081b565b612197600083836001611878565b6000818152600260205260409020546001600160a01b0316156121fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610ba4565b6060824710156122c95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161081b565b600080866001600160a01b031685876040516122e59190612b99565b60006040518083038185875af1925050503d8060008114612322576040519150601f19603f3d011682016040523d82523d6000602084013e612327565b606091505b509150915061233887838387612343565b979650505050505050565b606083156123b25782516000036123ab576001600160a01b0385163b6123ab5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161081b565b508161140f565b61140f83838151156123c75781518083602001fd5b8060405162461bcd60e51b815260040161081b919061246b565b6001600160e01b031981168114610ba657600080fd5b60006020828403121561240957600080fd5b8135612414816123e1565b9392505050565b60005b8381101561243657818101518382015260200161241e565b50506000910152565b6000815180845261245781602086016020860161241b565b601f01601f19169290920160200192915050565b602081526000612414602083018461243f565b60006020828403121561249057600080fd5b5035919050565b80356001600160a01b03811681146124ae57600080fd5b919050565b600080604083850312156124c657600080fd5b6124cf83612497565b946020939093013593505050565b6000806000606084860312156124f257600080fd5b6124fb84612497565b925061250960208501612497565b9150604084013590509250925092565b6000806040838503121561252c57600080fd5b50508035926020909101359150565b60006020828403121561254d57600080fd5b61241482612497565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561258757612587612556565b604051601f8501601f19908116603f011681019082821181831017156125af576125af612556565b816040528093508581528686860111156125c857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125f457600080fd5b813567ffffffffffffffff81111561260b57600080fd5b8201601f8101841361261c57600080fd5b61140f8482356020840161256c565b8015158114610ba657600080fd5b6000806040838503121561264c57600080fd5b61265583612497565b915060208301356126658161262b565b809150509250929050565b6000806000806080858703121561268657600080fd5b61268f85612497565b935061269d60208601612497565b925060408501359150606085013567ffffffffffffffff8111156126c057600080fd5b8501601f810187136126d157600080fd5b6126e08782356020840161256c565b91505092959194509250565b60008060006040848603121561270157600080fd5b83359250602084013567ffffffffffffffff8082111561272057600080fd5b818601915086601f83011261273457600080fd5b81358181111561274357600080fd5b87602082850101111561275557600080fd5b6020830194508093505050509250925092565b6000806040838503121561277b57600080fd5b61278483612497565b915061279260208401612497565b90509250929050565b600181811c908216806127af57607f821691505b6020821081036127cf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561284a57600080fd5b5051919050565b601f8211156108bc57600081815260208120601f850160051c810160208610156128785750805b601f850160051c820191505b8181101561289757828155600101612884565b505050505050565b815167ffffffffffffffff8111156128b9576128b9612556565b6128cd816128c7845461279b565b84612851565b602080601f83116001811461290257600084156128ea5750858301515b600019600386901b1c1916600185901b178555612897565b600085815260208120601f198616915b8281101561293157888601518255948401946001909101908401612912565b508582101561294f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461296d8161279b565b60018281168015612985576001811461299a576129c9565b60ff19841687528215158302870194506129c9565b8860005260208060002060005b858110156129c05781548a8201529084019082016129a7565b50505082870194505b50602f60f81b8452865192506129e58382860160208a0161241b565b919092010195945050505050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106e8576106e86129f3565b80820281158282048414176106e8576106e86129f3565b808201808211156106e8576106e86129f3565b600060018201612a5857612a586129f3565b5060010190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060208284031215612b0857600080fd5b81516124148161262b565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b469083018461243f565b9695505050505050565b600060208284031215612b6257600080fd5b8151612414816123e1565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b60008251612bab81846020870161241b565b919091019291505056fea2646970667358221220ea4f441eaa20b4add03b14a60c98cb118c1bdc9ade2feb8294883eeae19a31a064736f6c634300081400330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000d2210783d2b6c007ca695e94c3f142ae0f1918600000000000000000000000006288454b799cfe11447449f49a03d4578bc18087000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6170692d6e66742e676d6e6574776f726b2e61692f6e66742f6d657461646174612f63796265727600000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021e5760003560e01c806370a0823111610123578063a8d759e2116100ab578063db7fd4081161006f578063db7fd40814610613578063e30c397814610626578063e985e9c514610644578063ebdfd7221461068d578063f2fde38b146106a357600080fd5b8063a8d759e21461055a578063b5748c5114610587578063b88d4fde146105b3578063c87b56dd146105d3578063cec0489a146105f357600080fd5b80639292caaf116100f25780639292caaf146104e457806394b76cde146104fa57806395d89b411461050f578063a035b1fe14610524578063a22cb4651461053a57600080fd5b806370a082311461047c578063715018a61461049c57806379ba5097146104b15780638da5cb5b146104c657600080fd5b806334eafb11116101a657806351cff8d91161017557806351cff8d9146103e657806355f804b3146104065780635fd1bbc4146104265780636352211e1461043c5780636c19e7831461045c57600080fd5b806334eafb111461037057806342842e0e1461038657806347ec7725146103a65780634f6ccce7146103c657600080fd5b806318160ddd116101ed57806318160ddd146102db578063238ac933146102fa57806323b872dd1461031a5780632c27e5811461033a5780632f745c591461035057600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a6102453660046123f7565b6106c3565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106ee565b604051610256919061246b565b34801561028d57600080fd5b506102a161029c36600461247e565b610780565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046124b3565b6107a7565b005b3480156102e757600080fd5b506008545b604051908152602001610256565b34801561030657600080fd5b50600e546102a1906001600160a01b031681565b34801561032657600080fd5b506102d96103353660046124dd565b6108c1565b34801561034657600080fd5b506102ec60145481565b34801561035c57600080fd5b506102ec61036b3660046124b3565b6108f2565b34801561037c57600080fd5b506102ec600f5481565b34801561039257600080fd5b506102d96103a13660046124dd565b610988565b3480156103b257600080fd5b506102d96103c1366004612519565b6109a3565b3480156103d257600080fd5b506102ec6103e136600461247e565b6109b6565b3480156103f257600080fd5b506102d961040136600461253b565b610a49565b34801561041257600080fd5b506102d96104213660046125e2565b610ba9565b34801561043257600080fd5b506102ec60135481565b34801561044857600080fd5b506102a161045736600461247e565b610bbd565b34801561046857600080fd5b506102d961047736600461253b565b610c1d565b34801561048857600080fd5b506102ec61049736600461253b565b610c47565b3480156104a857600080fd5b506102d9610ccd565b3480156104bd57600080fd5b506102d9610ce1565b3480156104d257600080fd5b50600a546001600160a01b03166102a1565b3480156104f057600080fd5b506102ec60115481565b34801561050657600080fd5b506102ec610d58565b34801561051b57600080fd5b50610274610d9e565b34801561053057600080fd5b506102ec60105481565b34801561054657600080fd5b506102d9610555366004612639565b610dad565b34801561056657600080fd5b506102ec61057536600461253b565b60166020526000908152604090205481565b34801561059357600080fd5b506015546105a19060ff1681565b60405160ff9091168152602001610256565b3480156105bf57600080fd5b506102d96105ce366004612670565b610db8565b3480156105df57600080fd5b506102746105ee36600461247e565b610df0565b3480156105ff57600080fd5b506102d961060e366004612519565b610e89565b6102d96106213660046126ec565b610e9c565b34801561063257600080fd5b50600b546001600160a01b03166102a1565b34801561065057600080fd5b5061024a61065f366004612768565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069957600080fd5b506102ec60125481565b3480156106af57600080fd5b506102d96106be36600461253b565b61120a565b60006001600160e01b0319821663780e9d6360e01b14806106e857506106e88261127b565b92915050565b6060600080546106fd9061279b565b80601f01602080910402602001604051908101604052809291908181526020018280546107299061279b565b80156107765780601f1061074b57610100808354040283529160200191610776565b820191906000526020600020905b81548152906001019060200180831161075957829003601f168201915b5050505050905090565b600061078b826112cb565b506000908152600460205260409020546001600160a01b031690565b60006107b282610bbd565b9050806001600160a01b0316836001600160a01b0316036108245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806108405750610840813361065f565b6108b25760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161081b565b6108bc838361132a565b505050565b6108cb3382611398565b6108e75760405162461bcd60e51b815260040161081b906127d5565b6108bc838383611417565b60006108fd83610c47565b821061095f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161081b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108bc83838360405180602001604052806000815250610db8565b6109ab611588565b601391909155601455565b60006109c160085490565b8210610a245760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161081b565b60088281548110610a3757610a37612822565b90600052602060002001549050919050565b610a51611588565b6001600160a01b038116610b1557600080610a74600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610abe576040519150601f19603f3d011682016040523d82523d6000602084013e610ac3565b606091505b5091509150816108bc5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2077697468647261772045746865720000000000000000604482015260640161081b565b80610ba4610b2b600a546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610b6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b939190612838565b6001600160a01b03841691906115e2565b505b50565b610bb1611588565b600d610ba4828261289f565b6000818152600260205260408120546001600160a01b0316806106e85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161081b565b610c25611588565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610cb15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161081b565b506001600160a01b031660009081526003602052604090205490565b610cd5611588565b610cdf6000611634565b565b600b5433906001600160a01b03168114610d4f5760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b606482015260840161081b565b610ba681611634565b60006011544210158015610d6e57506012544211155b15610d795750600190565b6013544210158015610d8d57506014544211155b15610d985750600290565b50600090565b6060600180546106fd9061279b565b610ba433838361164d565b610dc23383611398565b610dde5760405162461bcd60e51b815260040161081b906127d5565b610dea8484848461171b565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e575760405162461bcd60e51b815260206004820152601c60248201527f4379626572563a206e6f6e6578697374656e7420746f6b656e20696400000000604482015260640161081b565b600d610e628361174e565b604051602001610e7392919061295f565b6040516020818303038152906040529050919050565b610e91611588565b601191909155601255565b610ea46117e1565b6000610eae610d58565b905060008111610f135760405162461bcd60e51b815260206004820152602a60248201527f4379626572563a206d696e74206e6f742073746172746564206f7220616c726560448201526918591e4818db1bdcd95960b21b606482015260840161081b565b600084118015610f42575033600090815260166020526040902054601554610f3e919060ff16612a09565b8411155b610f865760405162461bcd60e51b815260206004820152601560248201527410de58995c958e881a5b9d985b1a590818dbdd5b9d605a1b604482015260640161081b565b600f5460085410610fe75760405162461bcd60e51b815260206004820152602560248201527f4379626572563a2065786365656420746f74616c20617661696c61626c6520736044820152647570706c7960d81b606482015260840161081b565b83601054610ff59190612a1c565b34146110435760405162461bcd60e51b815260206004820152601960248201527f4379626572563a20696e76616c6964206574682076616c756500000000000000604482015260640161081b565b806001036111965760006110ec46303360405160200161108c93929190928352606091821b6bffffffffffffffffffffffff199081166020850152911b16603482015260480190565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b600e54604080516020601f88018190048102820181019092528681529293506001600160a01b039091169161113e91849190889088908190840183828082843760009201919091525061183a92505050565b6001600160a01b0316146111945760405162461bcd60e51b815260206004820152601960248201527f4379626572563a20696e76616c6964207369676e617475726500000000000000604482015260640161081b565b505b60005b848110156111fe57336000908152601660205260409020546111bc906001612a33565b336000818152601660205260409020919091556111ec906111dc60085490565b6111e7906001612a33565b61185e565b806111f681612a46565b915050611199565b50506108bc6001600c55565b611212611588565b600b80546001600160a01b0383166001600160a01b03199091168117909155611243600a546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60006001600160e01b031982166380ac58cd60e01b14806112ac57506001600160e01b03198216635b5e139f60e01b145b806106e857506301ffc9a760e01b6001600160e01b03198316146106e8565b6000818152600260205260409020546001600160a01b0316610ba65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061135f82610bbd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113a483610bbd565b9050806001600160a01b0316846001600160a01b031614806113eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061140f5750836001600160a01b031661140484610780565b6001600160a01b0316145b949350505050565b826001600160a01b031661142a82610bbd565b6001600160a01b0316146114505760405162461bcd60e51b815260040161081b90612a5f565b6001600160a01b0382166114b25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161081b565b6114bf8383836001611878565b826001600160a01b03166114d282610bbd565b6001600160a01b0316146114f85760405162461bcd60e51b815260040161081b90612a5f565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b03163314610cdf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161081b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526108bc9084906119ac565b600b80546001600160a01b0319169055610ba681611a7e565b816001600160a01b0316836001600160a01b0316036116ae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161081b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611726848484611417565b61173284848484611ad0565b610dea5760405162461bcd60e51b815260040161081b90612aa4565b6060600061175b83611bd1565b600101905060008167ffffffffffffffff81111561177b5761177b612556565b6040519080825280601f01601f1916602001820160405280156117a5576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846117af57509392505050565b6002600c54036118335760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161081b565b6002600c55565b60008060006118498585611ca9565b9150915061185681611cee565b509392505050565b610ba4828260405180602001604052806000815250611e38565b60018111156118e75760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b606482015260840161081b565b816001600160a01b0385166119435761193e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611966565b836001600160a01b0316856001600160a01b031614611966576119668582611e6b565b6001600160a01b0384166119825761197d81611f08565b6119a5565b846001600160a01b0316846001600160a01b0316146119a5576119a58482611fb7565b5050505050565b6000611a01826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611ffb9092919063ffffffff16565b8051909150156108bc5780806020019051810190611a1f9190612af6565b6108bc5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161081b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611bc657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b14903390899088908890600401612b13565b6020604051808303816000875af1925050508015611b4f575060408051601f3d908101601f19168201909252611b4c91810190612b50565b60015b611bac573d808015611b7d576040519150601f19603f3d011682016040523d82523d6000602084013e611b82565b606091505b508051600003611ba45760405162461bcd60e51b815260040161081b90612aa4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061140f565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611c105772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611c3c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611c5a57662386f26fc10000830492506010015b6305f5e1008310611c72576305f5e100830492506008015b6127108310611c8657612710830492506004015b60648310611c98576064830492506002015b600a83106106e85760010192915050565b6000808251604103611cdf5760208301516040840151606085015160001a611cd38782858561200a565b94509450505050611ce7565b506000905060025b9250929050565b6000816004811115611d0257611d02612b6d565b03611d0a5750565b6001816004811115611d1e57611d1e612b6d565b03611d6b5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161081b565b6002816004811115611d7f57611d7f612b6d565b03611dcc5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161081b565b6003816004811115611de057611de0612b6d565b03610ba65760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161081b565b611e4283836120ce565b611e4f6000848484611ad0565b6108bc5760405162461bcd60e51b815260040161081b90612aa4565b60006001611e7884610c47565b611e829190612a09565b600083815260076020526040902054909150808214611ed5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f1a90600190612a09565b60008381526009602052604081205460088054939450909284908110611f4257611f42612822565b906000526020600020015490508060088381548110611f6357611f63612822565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f9b57611f9b612b83565b6001900381819060005260206000200160009055905550505050565b6000611fc283610c47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b606061140f8484600085612268565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561204157506000905060036120c5565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612095573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120be576000600192509250506120c5565b9150600090505b94509492505050565b6001600160a01b0382166121245760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161081b565b6000818152600260205260409020546001600160a01b0316156121895760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081b565b612197600083836001611878565b6000818152600260205260409020546001600160a01b0316156121fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161081b565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610ba4565b6060824710156122c95760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161081b565b600080866001600160a01b031685876040516122e59190612b99565b60006040518083038185875af1925050503d8060008114612322576040519150601f19603f3d011682016040523d82523d6000602084013e612327565b606091505b509150915061233887838387612343565b979650505050505050565b606083156123b25782516000036123ab576001600160a01b0385163b6123ab5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161081b565b508161140f565b61140f83838151156123c75781518083602001fd5b8060405162461bcd60e51b815260040161081b919061246b565b6001600160e01b031981168114610ba657600080fd5b60006020828403121561240957600080fd5b8135612414816123e1565b9392505050565b60005b8381101561243657818101518382015260200161241e565b50506000910152565b6000815180845261245781602086016020860161241b565b601f01601f19169290920160200192915050565b602081526000612414602083018461243f565b60006020828403121561249057600080fd5b5035919050565b80356001600160a01b03811681146124ae57600080fd5b919050565b600080604083850312156124c657600080fd5b6124cf83612497565b946020939093013593505050565b6000806000606084860312156124f257600080fd5b6124fb84612497565b925061250960208501612497565b9150604084013590509250925092565b6000806040838503121561252c57600080fd5b50508035926020909101359150565b60006020828403121561254d57600080fd5b61241482612497565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561258757612587612556565b604051601f8501601f19908116603f011681019082821181831017156125af576125af612556565b816040528093508581528686860111156125c857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125f457600080fd5b813567ffffffffffffffff81111561260b57600080fd5b8201601f8101841361261c57600080fd5b61140f8482356020840161256c565b8015158114610ba657600080fd5b6000806040838503121561264c57600080fd5b61265583612497565b915060208301356126658161262b565b809150509250929050565b6000806000806080858703121561268657600080fd5b61268f85612497565b935061269d60208601612497565b925060408501359150606085013567ffffffffffffffff8111156126c057600080fd5b8501601f810187136126d157600080fd5b6126e08782356020840161256c565b91505092959194509250565b60008060006040848603121561270157600080fd5b83359250602084013567ffffffffffffffff8082111561272057600080fd5b818601915086601f83011261273457600080fd5b81358181111561274357600080fd5b87602082850101111561275557600080fd5b6020830194508093505050509250925092565b6000806040838503121561277b57600080fd5b61278483612497565b915061279260208401612497565b90509250929050565b600181811c908216806127af57607f821691505b6020821081036127cf57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561284a57600080fd5b5051919050565b601f8211156108bc57600081815260208120601f850160051c810160208610156128785750805b601f850160051c820191505b8181101561289757828155600101612884565b505050505050565b815167ffffffffffffffff8111156128b9576128b9612556565b6128cd816128c7845461279b565b84612851565b602080601f83116001811461290257600084156128ea5750858301515b600019600386901b1c1916600185901b178555612897565b600085815260208120601f198616915b8281101561293157888601518255948401946001909101908401612912565b508582101561294f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461296d8161279b565b60018281168015612985576001811461299a576129c9565b60ff19841687528215158302870194506129c9565b8860005260208060002060005b858110156129c05781548a8201529084019082016129a7565b50505082870194505b50602f60f81b8452865192506129e58382860160208a0161241b565b919092010195945050505050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106e8576106e86129f3565b80820281158282048414176106e8576106e86129f3565b808201808211156106e8576106e86129f3565b600060018201612a5857612a586129f3565b5060010190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060208284031215612b0857600080fd5b81516124148161262b565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b469083018461243f565b9695505050505050565b600060208284031215612b6257600080fd5b8151612414816123e1565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b60008251612bab81846020870161241b565b919091019291505056fea2646970667358221220ea4f441eaa20b4add03b14a60c98cb118c1bdc9ade2feb8294883eeae19a31a064736f6c63430008140033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000d2210783d2b6c007ca695e94c3f142ae0f1918600000000000000000000000006288454b799cfe11447449f49a03d4578bc18087000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6170692d6e66742e676d6e6574776f726b2e61692f6e66742f6d657461646174612f63796265727600000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseTokenURI (string): https://api-nft.gmnetwork.ai/nft/metadata/cyberv
Arg [1] : _owner (address): 0xD2210783D2b6c007Ca695e94C3F142Ae0F191860
Arg [2] : _signer (address): 0x6288454B799CFE11447449f49a03d4578Bc18087

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000d2210783d2b6c007ca695e94c3f142ae0f191860
Arg [2] : 0000000000000000000000006288454b799cfe11447449f49a03d4578bc18087
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [4] : 68747470733a2f2f6170692d6e66742e676d6e6574776f726b2e61692f6e6674
Arg [5] : 2f6d657461646174612f63796265727600000000000000000000000000000000


Deployed Bytecode Sourcemap

244:3948:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1000:222:6;;;;;;;;;;-1:-1:-1;1000:222:6;;;;;:::i;:::-;;:::i;:::-;;;565:14:20;;558:22;540:41;;528:2;513:18;1000:222:6;;;;;;;;2392:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3856:167::-;;;;;;;;;;-1:-1:-1;3856:167:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:20;;;1679:51;;1667:2;1652:18;3856:167:5;1533:203:20;3389:406:5;;;;;;;;;;-1:-1:-1;3389:406:5;;;;;:::i;:::-;;:::i;:::-;;1625:111:6;;;;;;;;;;-1:-1:-1;1712:10:6;:17;1625:111;;;2324:25:20;;;2312:2;2297:18;1625:111:6;2178:177:20;414:21:2;;;;;;;;;;-1:-1:-1;414:21:2;;;;-1:-1:-1;;;;;414:21:2;;;4533:326:5;;;;;;;;;;-1:-1:-1;4533:326:5;;;;;:::i;:::-;;:::i;690:28:2:-;;;;;;;;;;;;;;;;1301:253:6;;;;;;;;;;-1:-1:-1;1301:253:6;;;;;:::i;:::-;;:::i;460:32:2:-;;;;;;;;;;;;;;;;4925:179:5;;;;;;;;;;-1:-1:-1;4925:179:5;;;;;:::i;:::-;;:::i;3397:192:2:-;;;;;;;;;;-1:-1:-1;3397:192:2;;;;;:::i;:::-;;:::i;1808:230:6:-;;;;;;;;;;-1:-1:-1;1808:230:6;;;;;:::i;:::-;;:::i;3595:396:2:-;;;;;;;;;;-1:-1:-1;3595:396:2;;;;;:::i;:::-;;:::i;3060:112::-;;;;;;;;;;-1:-1:-1;3060:112:2;;;;;:::i;:::-;;:::i;654:30::-;;;;;;;;;;;;;;;;2111:219:5;;;;;;;;;;-1:-1:-1;2111:219:5;;;;;:::i;:::-;;:::i;2966:88:2:-;;;;;;;;;;-1:-1:-1;2966:88:2;;;;;:::i;:::-;;:::i;1850:204:5:-;;;;;;;;;;-1:-1:-1;1850:204:5;;;;;:::i;:::-;;:::i;1822:101:14:-;;;;;;;;;;;;;:::i;1732:206:15:-;;;;;;;;;;;;;:::i;1192:85:14:-;;;;;;;;;;-1:-1:-1;1264:6:14;;-1:-1:-1;;;;;1264:6:14;1192:85;;578:33:2;;;;;;;;;;;;;;;;1074:326;;;;;;;;;;;;;:::i;2554:102:5:-;;;;;;;;;;;;;:::i;516:33:2:-;;;;;;;;;;;;;;;;4090:153:5;;;;;;;;;;-1:-1:-1;4090:153:5;;;;;:::i;:::-;;:::i;810:44:2:-;;;;;;;;;;-1:-1:-1;810:44:2;;;;;:::i;:::-;;;;;;;;;;;;;;749:32;;;;;;;;;;-1:-1:-1;749:32:2;;;;;;;;;;;4977:4:20;4965:17;;;4947:36;;4935:2;4920:18;749:32:2;4805:184:20;5170:314:5;;;;;;;;;;-1:-1:-1;5170:314:5;;;;;:::i;:::-;;:::i;2542:418:2:-;;;;;;;;;;-1:-1:-1;2542:418:2;;;;;:::i;:::-;;:::i;3178:213::-;;;;;;;;;;-1:-1:-1;3178:213:2;;;;;:::i;:::-;;:::i;1406:1130::-;;;;;;:::i;:::-;;:::i;845:99:15:-;;;;;;;;;;-1:-1:-1;924:13:15;;-1:-1:-1;;;;;924:13:15;845:99;;4309:162:5;;;;;;;;;;-1:-1:-1;4309:162:5;;;;;:::i;:::-;-1:-1:-1;;;;;4429:25:5;;;4406:4;4429:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4309:162;617:31:2;;;;;;;;;;;;;;;;1137:178:15;;;;;;;;;;-1:-1:-1;1137:178:15;;;;;:::i;:::-;;:::i;1000:222:6:-;1102:4;-1:-1:-1;;;;;;1125:50:6;;-1:-1:-1;;;1125:50:6;;:90;;;1179:36;1203:11;1179:23;:36::i;:::-;1118:97;1000:222;-1:-1:-1;;1000:222:6:o;2392:98:5:-;2446:13;2478:5;2471:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2392:98;:::o;3856:167::-;3932:7;3951:23;3966:7;3951:14;:23::i;:::-;-1:-1:-1;3992:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;3992:24:5;;3856:167::o;3389:406::-;3469:13;3485:23;3500:7;3485:14;:23::i;:::-;3469:39;;3532:5;-1:-1:-1;;;;;3526:11:5;:2;-1:-1:-1;;;;;3526:11:5;;3518:57;;;;-1:-1:-1;;;3518:57:5;;7182:2:20;3518:57:5;;;7164:21:20;7221:2;7201:18;;;7194:30;7260:34;7240:18;;;7233:62;-1:-1:-1;;;7311:18:20;;;7304:31;7352:19;;3518:57:5;;;;;;;;;719:10:1;-1:-1:-1;;;;;3607:21:5;;;;:62;;-1:-1:-1;3632:37:5;3649:5;719:10:1;4309:162:5;:::i;3632:37::-;3586:170;;;;-1:-1:-1;;;3586:170:5;;7584:2:20;3586:170:5;;;7566:21:20;7623:2;7603:18;;;7596:30;7662:34;7642:18;;;7635:62;7733:31;7713:18;;;7706:59;7782:19;;3586:170:5;7382:425:20;3586:170:5;3767:21;3776:2;3780:7;3767:8;:21::i;:::-;3459:336;3389:406;;:::o;4533:326::-;4722:41;719:10:1;4755:7:5;4722:18;:41::i;:::-;4714:99;;;;-1:-1:-1;;;4714:99:5;;;;;;;:::i;:::-;4824:28;4834:4;4840:2;4844:7;4824:9;:28::i;1301:253:6:-;1398:7;1433:23;1450:5;1433:16;:23::i;:::-;1425:5;:31;1417:87;;;;-1:-1:-1;;;1417:87:6;;8428:2:20;1417:87:6;;;8410:21:20;8467:2;8447:18;;;8440:30;8506:34;8486:18;;;8479:62;-1:-1:-1;;;8557:18:20;;;8550:41;8608:19;;1417:87:6;8226:407:20;1417:87:6;-1:-1:-1;;;;;;1521:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1301:253::o;4925:179:5:-;5058:39;5075:4;5081:2;5085:7;5058:39;;;;;;;;;;;;:16;:39::i;3397:192:2:-;1085:13:14;:11;:13::i;:::-;3508:15:2::1;:34:::0;;;;3552:13:::1;:30:::0;3397:192::o;1808:230:6:-;1883:7;1918:30;1712:10;:17;;1625:111;1918:30;1910:5;:38;1902:95;;;;-1:-1:-1;;;1902:95:6;;8840:2:20;1902:95:6;;;8822:21:20;8879:2;8859:18;;;8852:30;8918:34;8898:18;;;8891:62;-1:-1:-1;;;8969:18:20;;;8962:42;9021:19;;1902:95:6;8638:408:20;1902:95:6;2014:10;2025:5;2014:17;;;;;;;;:::i;:::-;;;;;;;;;2007:24;;1808:230;;;:::o;3595:396:2:-;1085:13:14;:11;:13::i;:::-;-1:-1:-1;;;;;3662:20:2;::::1;3658:327;;3699:9;3710:17:::0;3739:7:::1;1264:6:14::0;;-1:-1:-1;;;;;1264:6:14;;1192:85;3739:7:2::1;-1:-1:-1::0;;;;;3731:21:2::1;3760;3731:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3698:88;;;;3808:4;3800:41;;;::::0;-1:-1:-1;;;3800:41:2;;9595:2:20;3800:41:2::1;::::0;::::1;9577:21:20::0;9634:2;9614:18;;;9607:30;9673:26;9653:18;;;9646:54;9717:18;;3800:41:2::1;9393:348:20::0;3658:327:2::1;3894:6:::0;3915:59:::1;3934:7;1264:6:14::0;;-1:-1:-1;;;;;1264:6:14;;1192:85;3934:7:2::1;3943:30;::::0;-1:-1:-1;;;3943:30:2;;3967:4:::1;3943:30;::::0;::::1;1679:51:20::0;-1:-1:-1;;;;;3943:15:2;::::1;::::0;::::1;::::0;1652:18:20;;3943:30:2::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3915:18:2;::::1;::::0;:59;:18:::1;:59::i;:::-;3858:127;3658:327;3595:396:::0;:::o;3060:112::-;1085:13:14;:11;:13::i;:::-;3137::2::1;:28;3153:12:::0;3137:13;:28:::1;:::i;2111:219:5:-:0;2183:7;6851:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6851:16:5;;2245:56;;;;-1:-1:-1;;;2245:56:5;;12341:2:20;2245:56:5;;;12323:21:20;12380:2;12360:18;;;12353:30;-1:-1:-1;;;12399:18:20;;;12392:54;12463:18;;2245:56:5;12139:348:20;2966:88:2;1085:13:14;:11;:13::i;:::-;3031:6:2::1;:16:::0;;-1:-1:-1;;;;;;3031:16:2::1;-1:-1:-1::0;;;;;3031:16:2;;;::::1;::::0;;;::::1;::::0;;2966:88::o;1850:204:5:-;1922:7;-1:-1:-1;;;;;1949:19:5;;1941:73;;;;-1:-1:-1;;;1941:73:5;;12694:2:20;1941:73:5;;;12676:21:20;12733:2;12713:18;;;12706:30;12772:34;12752:18;;;12745:62;-1:-1:-1;;;12823:18:20;;;12816:39;12872:19;;1941:73:5;12492:405:20;1941:73:5;-1:-1:-1;;;;;;2031:16:5;;;;;:9;:16;;;;;;;1850:204::o;1822:101:14:-;1085:13;:11;:13::i;:::-;1886:30:::1;1913:1;1886:18;:30::i;:::-;1822:101::o:0;1732:206:15:-;924:13;;719:10:1;;-1:-1:-1;;;;;924:13:15;1825:24;;1817:78;;;;-1:-1:-1;;;1817:78:15;;13104:2:20;1817:78:15;;;13086:21:20;13143:2;13123:18;;;13116:30;13182:34;13162:18;;;13155:62;-1:-1:-1;;;13233:18:20;;;13226:39;13282:19;;1817:78:15;12902:405:20;1817:78:15;1905:26;1924:6;1905:18;:26::i;1074:326:2:-;1119:7;1161:18;;1142:15;:37;;:76;;;;;1202:16;;1183:15;:35;;1142:76;1138:238;;;-1:-1:-1;1241:1:2;;1074:326::o;1138:238::-;1290:15;;1271;:34;;:70;;;;;1328:13;;1309:15;:32;;1271:70;1267:109;;;-1:-1:-1;1364:1:2;;1074:326::o;1267:109::-;-1:-1:-1;1392:1:2;;1074:326::o;2554:102:5:-;2610:13;2642:7;2635:14;;;;;:::i;4090:153::-;4184:52;719:10:1;4217:8:5;4227;4184:18;:52::i;5170:314::-;5338:41;719:10:1;5371:7:5;5338:18;:41::i;:::-;5330:99;;;;-1:-1:-1;;;5330:99:5;;;;;;;:::i;:::-;5439:38;5453:4;5459:2;5463:7;5472:4;5439:13;:38::i;:::-;5170:314;;;;:::o;2542:418:2:-;7242:4:5;6851:16;;;:7;:16;;;;;;2656:13:2;;-1:-1:-1;;;;;6851:16:5;2685:58:2;;;;-1:-1:-1;;;2685:58:2;;13514:2:20;2685:58:2;;;13496:21:20;13553:2;13533:18;;;13526:30;13592;13572:18;;;13565:58;13640:18;;2685:58:2;13312:352:20;2685:58:2;2835:13;2895:26;2912:8;2895:16;:26::i;:::-;2797:142;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2754:199;;2542:418;;;:::o;3178:213::-;1085:13:14;:11;:13::i;:::-;3298:18:2::1;:40:::0;;;;3348:16:::1;:36:::0;3178:213::o;1406:1130::-;2261:21:16;:19;:21::i;:::-;1503:18:2::1;1524:15;:13;:15::i;:::-;1503:36;;1583:1;1570:10;:14;1549:103;;;::::0;-1:-1:-1;;;1549:103:2;;15040:2:20;1549:103:2::1;::::0;::::1;15022:21:20::0;15079:2;15059:18;;;15052:30;15118:34;15098:18;;;15091:62;-1:-1:-1;;;15169:18:20;;;15162:40;15219:19;;1549:103:2::1;14838:406:20::0;1549:103:2::1;1693:1;1684:6;:10;:63;;;;-1:-1:-1::0;1736:10:2::1;1726:21;::::0;;;:9:::1;:21;::::0;;;;;1708:15:::1;::::0;:39:::1;::::0;1726:21;1708:15:::1;;:39;:::i;:::-;1698:6;:49;;1684:63;1663:131;;;::::0;-1:-1:-1;;;1663:131:2;;15716:2:20;1663:131:2::1;::::0;::::1;15698:21:20::0;15755:2;15735:18;;;15728:30;-1:-1:-1;;;15774:18:20;;;15767:51;15835:18;;1663:131:2::1;15514:345:20::0;1663:131:2::1;1842:10;::::0;1712::6;:17;1826:26:2::1;1805:110;;;::::0;-1:-1:-1;;;1805:110:2;;16066:2:20;1805:110:2::1;::::0;::::1;16048:21:20::0;16105:2;16085:18;;;16078:30;16144:34;16124:18;;;16117:62;-1:-1:-1;;;16195:18:20;;;16188:35;16240:19;;1805:110:2::1;15864:401:20::0;1805:110:2::1;1955:6;1947:5;;:14;;;;:::i;:::-;1934:9;:27;1926:65;;;::::0;-1:-1:-1;;;1926:65:2;;16645:2:20;1926:65:2::1;::::0;::::1;16627:21:20::0;16684:2;16664:18;;;16657:30;16723:27;16703:18;;;16696:55;16768:18;;1926:65:2::1;16443:349:20::0;1926:65:2::1;2006:10;2020:1;2006:15:::0;2002:361:::1;;2037:15;2055:159;4111:9:::0;2166:4:::1;2173:10;2126:58;;;;;;;;;16982:19:20::0;;;17089:2;17085:15;;;-1:-1:-1;;17081:24:20;;;17076:2;17067:12;;17060:46;17140:15;;17136:24;17131:2;17122:12;;17115:46;17186:2;17177:12;;16797:398;2126:58:2::1;;::::0;;-1:-1:-1;;2126:58:2;;::::1;::::0;;;;;;2099:101;;2126:58:::1;2099:101:::0;;::::1;::::0;20782:66:20;7452:58:3;;;20770:79:20;20865:12;;;;20858:28;;;;7452:58:3;;;;;;;;;;20902:12:20;;;;7452:58:3;;;7442:69;;;;;;7253:265;2055:159:2::1;2289:6;::::0;2251:34:::1;::::0;;::::1;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;2037:177;;-1:-1:-1;;;;;;2289:6:2;;::::1;::::0;2251:34:::1;::::0;2037:177;;2251:34;2274:10;;;;;;2251:34;::::1;2274:10:::0;;;;2251:34;::::1;;::::0;::::1;::::0;;;;-1:-1:-1;2251:13:2::1;::::0;-1:-1:-1;;;2251:34:2:i:1;:::-;-1:-1:-1::0;;;;;2251:44:2::1;;2228:124;;;::::0;-1:-1:-1;;;2228:124:2;;17402:2:20;2228:124:2::1;::::0;::::1;17384:21:20::0;17441:2;17421:18;;;17414:30;17480:27;17460:18;;;17453:55;17525:18;;2228:124:2::1;17200:349:20::0;2228:124:2::1;2023:340;2002:361;2377:6;2373:157;2389:6;2387:1;:8;2373:157;;;2450:10;2440:21;::::0;;;:9:::1;:21;::::0;;;;;:25:::1;::::0;2464:1:::1;2440:25;:::i;:::-;2426:10;2416:21;::::0;;;:9:::1;:21;::::0;;;;:49;;;;2479:40:::1;::::0;2501:13:::1;1712:10:6::0;:17;;1625:111;2501:13:2::1;:17;::::0;2517:1:::1;2501:17;:::i;:::-;2479:9;:40::i;:::-;2397:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2373:157;;;;1493:1043;2303:20:16::0;1716:1;2809:7;:22;2629:209;1137:178:15;1085:13:14;:11;:13::i;:::-;1226::15::1;:24:::0;;-1:-1:-1;;;;;1226:24:15;::::1;-1:-1:-1::0;;;;;;1226:24:15;;::::1;::::0;::::1;::::0;;;1290:7:::1;1264:6:14::0;;-1:-1:-1;;;;;1264:6:14;;1192:85;1290:7:15::1;-1:-1:-1::0;;;;;1265:43:15::1;;;;;;;;;;;1137:178:::0;:::o;1491:300:5:-;1593:4;-1:-1:-1;;;;;;1628:40:5;;-1:-1:-1;;;1628:40:5;;:104;;-1:-1:-1;;;;;;;1684:48:5;;-1:-1:-1;;;1684:48:5;1628:104;:156;;;-1:-1:-1;;;;;;;;;;935:40:4;;;1748:36:5;827:155:4;13387:133:5;7242:4;6851:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6851:16:5;13460:53;;;;-1:-1:-1;;;13460:53:5;;12341:2:20;13460:53:5;;;12323:21:20;12380:2;12360:18;;;12353:30;-1:-1:-1;;;12399:18:20;;;12392:54;12463:18;;13460:53:5;12139:348:20;12689:171:5;12763:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12763:29:5;-1:-1:-1;;;;;12763:29:5;;;;;;;;:24;;12816:23;12763:24;12816:14;:23::i;:::-;-1:-1:-1;;;;;12807:46:5;;;;;;;;;;;12689:171;;:::o;7461:261::-;7554:4;7570:13;7586:23;7601:7;7586:14;:23::i;:::-;7570:39;;7638:5;-1:-1:-1;;;;;7627:16:5;:7;-1:-1:-1;;;;;7627:16:5;;:52;;;-1:-1:-1;;;;;;4429:25:5;;;4406:4;4429:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7647:32;7627:87;;;;7707:7;-1:-1:-1;;;;;7683:31:5;:20;7695:7;7683:11;:20::i;:::-;-1:-1:-1;;;;;7683:31:5;;7627:87;7619:96;7461:261;-1:-1:-1;;;;7461:261:5:o;11344:1233::-;11498:4;-1:-1:-1;;;;;11471:31:5;:23;11486:7;11471:14;:23::i;:::-;-1:-1:-1;;;;;11471:31:5;;11463:81;;;;-1:-1:-1;;;11463:81:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;11562:16:5;;11554:65;;;;-1:-1:-1;;;11554:65:5;;18432:2:20;11554:65:5;;;18414:21:20;18471:2;18451:18;;;18444:30;18510:34;18490:18;;;18483:62;-1:-1:-1;;;18561:18:20;;;18554:34;18605:19;;11554:65:5;18230:400:20;11554:65:5;11630:42;11651:4;11657:2;11661:7;11670:1;11630:20;:42::i;:::-;11799:4;-1:-1:-1;;;;;11772:31:5;:23;11787:7;11772:14;:23::i;:::-;-1:-1:-1;;;;;11772:31:5;;11764:81;;;;-1:-1:-1;;;11764:81:5;;;;;;;:::i;:::-;11914:24;;;;:15;:24;;;;;;;;11907:31;;-1:-1:-1;;;;;;11907:31:5;;;;;;-1:-1:-1;;;;;12382:15:5;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;12382:20:5;;;12416:13;;;;;;;;;:18;;11907:31;12416:18;;;12454:16;;;:7;:16;;;;;;:21;;;;;;;;;;12491:27;;11930:7;;12491:27;;;3459:336;3389:406;;:::o;1350:130:14:-;1264:6;;-1:-1:-1;;;;;1264:6:14;719:10:1;1413:23:14;1405:68;;;;-1:-1:-1;;;1405:68:14;;18837:2:20;1405:68:14;;;18819:21:20;;;18856:18;;;18849:30;18915:34;18895:18;;;18888:62;18967:18;;1405:68:14;18635:356:20;731:205:17;870:58;;;-1:-1:-1;;;;;19188:32:20;;870:58:17;;;19170:51:20;19237:18;;;;19230:34;;;870:58:17;;;;;;;;;;19143:18:20;;;;870:58:17;;;;;;;;-1:-1:-1;;;;;870:58:17;-1:-1:-1;;;870:58:17;;;843:86;;863:5;;843:19;:86::i;1499:153:15:-;1588:13;1581:20;;-1:-1:-1;;;;;;1581:20:15;;;1611:34;1636:8;1611:24;:34::i;12996:307:5:-;13146:8;-1:-1:-1;;;;;13137:17:5;:5;-1:-1:-1;;;;;13137:17:5;;13129:55;;;;-1:-1:-1;;;13129:55:5;;19477:2:20;13129:55:5;;;19459:21:20;19516:2;19496:18;;;19489:30;19555:27;19535:18;;;19528:55;19600:18;;13129:55:5;19275:349:20;13129:55:5;-1:-1:-1;;;;;13194:25:5;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13194:46:5;;;;;;;;;;13255:41;;540::20;;;13255::5;;513:18:20;13255:41:5;;;;;;;12996:307;;;:::o;6345:305::-;6495:28;6505:4;6511:2;6515:7;6495:9;:28::i;:::-;6541:47;6564:4;6570:2;6574:7;6583:4;6541:22;:47::i;:::-;6533:110;;;;-1:-1:-1;;;6533:110:5;;;;;;;:::i;408:696:18:-;464:13;513:14;530:17;541:5;530:10;:17::i;:::-;550:1;530:21;513:38;;565:20;599:6;588:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;588:18:18;-1:-1:-1;565:41:18;-1:-1:-1;726:28:18;;;742:2;726:28;781:280;-1:-1:-1;;812:5:18;-1:-1:-1;;;946:2:18;935:14;;930:30;812:5;917:44;1005:2;996:11;;;-1:-1:-1;1025:21:18;781:280;1025:21;-1:-1:-1;1081:6:18;408:696;-1:-1:-1;;;408:696:18:o;2336:287:16:-;1759:1;2468:7;;:19;2460:63;;;;-1:-1:-1;;;2460:63:16;;20382:2:20;2460:63:16;;;20364:21:20;20421:2;20401:18;;;20394:30;20460:33;20440:18;;;20433:61;20511:18;;2460:63:16;20180:355:20;2460:63:16;1759:1;2598:7;:18;2336:287::o;3658:227:3:-;3736:7;3756:17;3775:18;3797:27;3808:4;3814:9;3797:10;:27::i;:::-;3755:69;;;;3834:18;3846:5;3834:11;:18::i;:::-;-1:-1:-1;3869:9:3;3658:227;-1:-1:-1;;;3658:227:3:o;8052:108:5:-;8127:26;8137:2;8141:7;8127:26;;;;;;;;;;;;:9;:26::i;2107:890:6:-;2366:1;2354:9;:13;2350:219;;;2495:63;;-1:-1:-1;;;2495:63:6;;21127:2:20;2495:63:6;;;21109:21:20;21166:2;21146:18;;;21139:30;21205:34;21185:18;;;21178:62;-1:-1:-1;;;21256:18:20;;;21249:51;21317:19;;2495:63:6;20925:417:20;2350:219:6;2597:12;-1:-1:-1;;;;;2624:18:6;;2620:183;;2658:40;2690:7;3806:10;:17;;3779:24;;;;:15;:24;;;;;:44;;;3833:24;;;;;;;;;;;;3703:161;2658:40;2620:183;;;2727:2;-1:-1:-1;;;;;2719:10:6;:4;-1:-1:-1;;;;;2719:10:6;;2715:88;;2745:47;2778:4;2784:7;2745:32;:47::i;:::-;-1:-1:-1;;;;;2816:16:6;;2812:179;;2848:45;2885:7;2848:36;:45::i;:::-;2812:179;;;2920:4;-1:-1:-1;;;;;2914:10:6;:2;-1:-1:-1;;;;;2914:10:6;;2910:81;;2940:40;2968:2;2972:7;2940:27;:40::i;:::-;2268:729;2107:890;;;;:::o;3715:706:17:-;4134:23;4160:69;4188:4;4160:69;;;;;;;;;;;;;;;;;4168:5;-1:-1:-1;;;;;4160:27:17;;;:69;;;;;:::i;:::-;4243:17;;4134:95;;-1:-1:-1;4243:21:17;4239:176;;4338:10;4327:30;;;;;;;;;;;;:::i;:::-;4319:85;;;;-1:-1:-1;;;4319:85:17;;21799:2:20;4319:85:17;;;21781:21:20;21838:2;21818:18;;;21811:30;21877:34;21857:18;;;21850:62;-1:-1:-1;;;21928:18:20;;;21921:40;21978:19;;4319:85:17;21597:406:20;2424:187:14;2516:6;;;-1:-1:-1;;;;;2532:17:14;;;-1:-1:-1;;;;;;2532:17:14;;;;;;;2564:40;;2516:6;;;2532:17;2516:6;;2564:40;;2497:16;;2564:40;2487:124;2424:187;:::o;14072:831:5:-;14221:4;-1:-1:-1;;;;;14241:13:5;;1465:19:0;:23;14237:660:5;;14276:71;;-1:-1:-1;;;14276:71:5;;-1:-1:-1;;;;;14276:36:5;;;;;:71;;719:10:1;;14327:4:5;;14333:7;;14342:4;;14276:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14276:71:5;;;;;;;;-1:-1:-1;;14276:71:5;;;;;;;;;;;;:::i;:::-;;;14272:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14514:6;:13;14531:1;14514:18;14510:321;;14556:60;;-1:-1:-1;;;14556:60:5;;;;;;;:::i;14510:321::-;14783:6;14777:13;14768:6;14764:2;14760:15;14753:38;14272:573;-1:-1:-1;;;;;;14397:51:5;-1:-1:-1;;;14397:51:5;;-1:-1:-1;14390:58:5;;14237:660;-1:-1:-1;14882:4:5;14072:831;;;;;;:::o;9889:890:13:-;9942:7;;-1:-1:-1;;;10017:15:13;;10013:99;;-1:-1:-1;;;10052:15:13;;;-1:-1:-1;10095:2:13;10085:12;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;-1:-1:-1;10207:2:13;10197:12;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;-1:-1:-1;10319:2:13;10309:12;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;-1:-1:-1;10429:1:13;10419:11;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;-1:-1:-1;10538:1:13;10528:11;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;-1:-1:-1;10647:1:13;10637:11;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;10766:6;9889:890;-1:-1:-1;;9889:890:13:o;2142:730:3:-;2223:7;2232:12;2260:9;:16;2280:2;2260:22;2256:610;;2596:4;2581:20;;2575:27;2645:4;2630:20;;2624:27;2702:4;2687:20;;2681:27;2298:9;2673:36;2743:25;2754:4;2673:36;2575:27;2624;2743:10;:25::i;:::-;2736:32;;;;;;;;;2256:610;-1:-1:-1;2815:1:3;;-1:-1:-1;2819:35:3;2256:610;2142:730;;;;;:::o;567:511::-;644:20;635:5;:29;;;;;;;;:::i;:::-;;631:441;;567:511;:::o;631:441::-;740:29;731:5;:38;;;;;;;;:::i;:::-;;727:345;;785:34;;-1:-1:-1;;;785:34:3;;23090:2:20;785:34:3;;;23072:21:20;23129:2;23109:18;;;23102:30;23168:26;23148:18;;;23141:54;23212:18;;785:34:3;22888:348:20;727:345:3;849:35;840:5;:44;;;;;;;;:::i;:::-;;836:236;;900:41;;-1:-1:-1;;;900:41:3;;23443:2:20;900:41:3;;;23425:21:20;23482:2;23462:18;;;23455:30;23521:33;23501:18;;;23494:61;23572:18;;900:41:3;23241:355:20;836:236:3;971:30;962:5;:39;;;;;;;;:::i;:::-;;958:114;;1017:44;;-1:-1:-1;;;1017:44:3;;23803:2:20;1017:44:3;;;23785:21:20;23842:2;23822:18;;;23815:30;23881:34;23861:18;;;23854:62;-1:-1:-1;;;23932:18:20;;;23925:32;23974:19;;1017:44:3;23601:398:20;8381:309:5;8505:18;8511:2;8515:7;8505:5;:18::i;:::-;8554:53;8585:1;8589:2;8593:7;8602:4;8554:22;:53::i;:::-;8533:150;;;;-1:-1:-1;;;8533:150:5;;;;;;;:::i;4481:970:6:-;4743:22;4793:1;4768:22;4785:4;4768:16;:22::i;:::-;:26;;;;:::i;:::-;4804:18;4825:26;;;:17;:26;;;;;;4743:51;;-1:-1:-1;4955:28:6;;;4951:323;;-1:-1:-1;;;;;5021:18:6;;4999:19;5021:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5070:30;;;;;;:44;;;5186:30;;:17;:30;;;;;:43;;;4951:323;-1:-1:-1;5367:26:6;;;;:17;:26;;;;;;;;5360:33;;;-1:-1:-1;;;;;5410:18:6;;;;;:12;:18;;;;;:34;;;;;;;5403:41;4481:970::o;5739:1061::-;6013:10;:17;5988:22;;6013:21;;6033:1;;6013:21;:::i;:::-;6044:18;6065:24;;;:15;:24;;;;;;6433:10;:26;;5988:46;;-1:-1:-1;6065:24:6;;5988:46;;6433:26;;;;;;:::i;:::-;;;;;;;;;6411:48;;6495:11;6470:10;6481;6470:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6574:28;;;:15;:28;;;;;;;:41;;;6743:24;;;;;6736:31;6777:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5810:990;;;5739:1061;:::o;3291:217::-;3375:14;3392:20;3409:2;3392:16;:20::i;:::-;-1:-1:-1;;;;;3422:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3466:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3291:217:6:o;3873:223:0:-;4006:12;4037:52;4059:6;4067:4;4073:1;4076:12;4037:21;:52::i;5066:1494:3:-;5192:7;;6116:66;6103:79;;6099:161;;;-1:-1:-1;6214:1:3;;-1:-1:-1;6218:30:3;6198:51;;6099:161;6371:24;;;6354:14;6371:24;;;;;;;;;24363:25:20;;;24436:4;24424:17;;24404:18;;;24397:45;;;;24458:18;;;24451:34;;;24501:18;;;24494:34;;;6371:24:3;;24335:19:20;;6371:24:3;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6371:24:3;;-1:-1:-1;;6371:24:3;;;-1:-1:-1;;;;;;;6409:20:3;;6405:101;;6461:1;6465:29;6445:50;;;;;;;6405:101;6524:6;-1:-1:-1;6532:20:3;;-1:-1:-1;5066:1494:3;;;;;;;;:::o;9012:920:5:-;-1:-1:-1;;;;;9091:16:5;;9083:61;;;;-1:-1:-1;;;9083:61:5;;24741:2:20;9083:61:5;;;24723:21:20;;;24760:18;;;24753:30;24819:34;24799:18;;;24792:62;24871:18;;9083:61:5;24539:356:20;9083:61:5;7242:4;6851:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6851:16:5;7265:31;9154:58;;;;-1:-1:-1;;;9154:58:5;;25102:2:20;9154:58:5;;;25084:21:20;25141:2;25121:18;;;25114:30;25180;25160:18;;;25153:58;25228:18;;9154:58:5;24900:352:20;9154:58:5;9223:48;9252:1;9256:2;9260:7;9269:1;9223:20;:48::i;:::-;7242:4;6851:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6851:16:5;7265:31;9358:58;;;;-1:-1:-1;;;9358:58:5;;25102:2:20;9358:58:5;;;25084:21:20;25141:2;25121:18;;;25114:30;25180;25160:18;;;25153:58;25228:18;;9358:58:5;24900:352:20;9358:58:5;-1:-1:-1;;;;;9758:13:5;;;;;;:9;:13;;;;;;;;:18;;9775:1;9758:18;;;9797:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9797:21:5;;;;;9834:33;9805:7;;9758:13;;9834:33;;9758:13;;9834:33;9878:47;5170:314;4960:446:0;5125:12;5182:5;5157:21;:30;;5149:81;;;;-1:-1:-1;;;5149:81:0;;25459:2:20;5149:81:0;;;25441:21:20;25498:2;25478:18;;;25471:30;25537:34;25517:18;;;25510:62;-1:-1:-1;;;25588:18:20;;;25581:36;25634:19;;5149:81:0;25257:402:20;5149:81:0;5241:12;5255:23;5282:6;-1:-1:-1;;;;;5282:11:0;5301:5;5308:4;5282:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5240:73;;;;5330:69;5357:6;5365:7;5374:10;5386:12;5330:26;:69::i;:::-;5323:76;4960:446;-1:-1:-1;;;;;;;4960:446:0:o;7466:628::-;7646:12;7674:7;7670:418;;;7701:10;:17;7722:1;7701:22;7697:286;;-1:-1:-1;;;;;1465:19:0;;;7908:60;;;;-1:-1:-1;;;7908:60:0;;26158:2:20;7908:60:0;;;26140:21:20;26197:2;26177:18;;;26170:30;26236:31;26216:18;;;26209:59;26285:18;;7908:60:0;25956:353:20;7908:60:0;-1:-1:-1;8003:10:0;7996:17;;7670:418;8044:33;8052:10;8064:12;8775:17;;:21;8771:379;;9003:10;8997:17;9059:15;9046:10;9042:2;9038:19;9031:44;8771:379;9126:12;9119:20;;-1:-1:-1;;;9119:20:0;;;;;;;;:::i;14:131:20:-;-1:-1:-1;;;;;;88:32:20;;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;:::-;384:5;150:245;-1:-1:-1;;;150:245:20:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:20;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:20;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:20:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:20;;1348:180;-1:-1:-1;1348:180:20:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:20;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:20:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:248::-;2761:6;2769;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;-1:-1:-1;;2861:23:20;;;2931:2;2916:18;;;2903:32;;-1:-1:-1;2693:248:20:o;2946:186::-;3005:6;3058:2;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3097:29;3116:9;3097:29;:::i;3137:127::-;3198:10;3193:3;3189:20;3186:1;3179:31;3229:4;3226:1;3219:15;3253:4;3250:1;3243:15;3269:632;3334:5;3364:18;3405:2;3397:6;3394:14;3391:40;;;3411:18;;:::i;:::-;3486:2;3480:9;3454:2;3540:15;;-1:-1:-1;;3536:24:20;;;3562:2;3532:33;3528:42;3516:55;;;3586:18;;;3606:22;;;3583:46;3580:72;;;3632:18;;:::i;:::-;3672:10;3668:2;3661:22;3701:6;3692:15;;3731:6;3723;3716:22;3771:3;3762:6;3757:3;3753:16;3750:25;3747:45;;;3788:1;3785;3778:12;3747:45;3838:6;3833:3;3826:4;3818:6;3814:17;3801:44;3893:1;3886:4;3877:6;3869;3865:19;3861:30;3854:41;;;;3269:632;;;;;:::o;3906:451::-;3975:6;4028:2;4016:9;4007:7;4003:23;3999:32;3996:52;;;4044:1;4041;4034:12;3996:52;4084:9;4071:23;4117:18;4109:6;4106:30;4103:50;;;4149:1;4146;4139:12;4103:50;4172:22;;4225:4;4217:13;;4213:27;-1:-1:-1;4203:55:20;;4254:1;4251;4244:12;4203:55;4277:74;4343:7;4338:2;4325:16;4320:2;4316;4312:11;4277:74;:::i;4362:118::-;4448:5;4441:13;4434:21;4427:5;4424:32;4414:60;;4470:1;4467;4460:12;4485:315;4550:6;4558;4611:2;4599:9;4590:7;4586:23;4582:32;4579:52;;;4627:1;4624;4617:12;4579:52;4650:29;4669:9;4650:29;:::i;:::-;4640:39;;4729:2;4718:9;4714:18;4701:32;4742:28;4764:5;4742:28;:::i;:::-;4789:5;4779:15;;;4485:315;;;;;:::o;4994:667::-;5089:6;5097;5105;5113;5166:3;5154:9;5145:7;5141:23;5137:33;5134:53;;;5183:1;5180;5173:12;5134:53;5206:29;5225:9;5206:29;:::i;:::-;5196:39;;5254:38;5288:2;5277:9;5273:18;5254:38;:::i;:::-;5244:48;;5339:2;5328:9;5324:18;5311:32;5301:42;;5394:2;5383:9;5379:18;5366:32;5421:18;5413:6;5410:30;5407:50;;;5453:1;5450;5443:12;5407:50;5476:22;;5529:4;5521:13;;5517:27;-1:-1:-1;5507:55:20;;5558:1;5555;5548:12;5507:55;5581:74;5647:7;5642:2;5629:16;5624:2;5620;5616:11;5581:74;:::i;:::-;5571:84;;;4994:667;;;;;;;:::o;5666:659::-;5745:6;5753;5761;5814:2;5802:9;5793:7;5789:23;5785:32;5782:52;;;5830:1;5827;5820:12;5782:52;5866:9;5853:23;5843:33;;5927:2;5916:9;5912:18;5899:32;5950:18;5991:2;5983:6;5980:14;5977:34;;;6007:1;6004;5997:12;5977:34;6045:6;6034:9;6030:22;6020:32;;6090:7;6083:4;6079:2;6075:13;6071:27;6061:55;;6112:1;6109;6102:12;6061:55;6152:2;6139:16;6178:2;6170:6;6167:14;6164:34;;;6194:1;6191;6184:12;6164:34;6239:7;6234:2;6225:6;6221:2;6217:15;6213:24;6210:37;6207:57;;;6260:1;6257;6250:12;6207:57;6291:2;6287;6283:11;6273:21;;6313:6;6303:16;;;;;5666:659;;;;;:::o;6330:260::-;6398:6;6406;6459:2;6447:9;6438:7;6434:23;6430:32;6427:52;;;6475:1;6472;6465:12;6427:52;6498:29;6517:9;6498:29;:::i;:::-;6488:39;;6546:38;6580:2;6569:9;6565:18;6546:38;:::i;:::-;6536:48;;6330:260;;;;;:::o;6595:380::-;6674:1;6670:12;;;;6717;;;6738:61;;6792:4;6784:6;6780:17;6770:27;;6738:61;6845:2;6837:6;6834:14;6814:18;6811:38;6808:161;;6891:10;6886:3;6882:20;6879:1;6872:31;6926:4;6923:1;6916:15;6954:4;6951:1;6944:15;6808:161;;6595:380;;;:::o;7812:409::-;8014:2;7996:21;;;8053:2;8033:18;;;8026:30;8092:34;8087:2;8072:18;;8065:62;-1:-1:-1;;;8158:2:20;8143:18;;8136:43;8211:3;8196:19;;7812:409::o;9051:127::-;9112:10;9107:3;9103:20;9100:1;9093:31;9143:4;9140:1;9133:15;9167:4;9164:1;9157:15;9746:184;9816:6;9869:2;9857:9;9848:7;9844:23;9840:32;9837:52;;;9885:1;9882;9875:12;9837:52;-1:-1:-1;9908:16:20;;9746:184;-1:-1:-1;9746:184:20:o;10061:545::-;10163:2;10158:3;10155:11;10152:448;;;10199:1;10224:5;10220:2;10213:17;10269:4;10265:2;10255:19;10339:2;10327:10;10323:19;10320:1;10316:27;10310:4;10306:38;10375:4;10363:10;10360:20;10357:47;;;-1:-1:-1;10398:4:20;10357:47;10453:2;10448:3;10444:12;10441:1;10437:20;10431:4;10427:31;10417:41;;10508:82;10526:2;10519:5;10516:13;10508:82;;;10571:17;;;10552:1;10541:13;10508:82;;;10512:3;;;10061:545;;;:::o;10782:1352::-;10908:3;10902:10;10935:18;10927:6;10924:30;10921:56;;;10957:18;;:::i;:::-;10986:97;11076:6;11036:38;11068:4;11062:11;11036:38;:::i;:::-;11030:4;10986:97;:::i;:::-;11138:4;;11202:2;11191:14;;11219:1;11214:663;;;;11921:1;11938:6;11935:89;;;-1:-1:-1;11990:19:20;;;11984:26;11935:89;-1:-1:-1;;10739:1:20;10735:11;;;10731:24;10727:29;10717:40;10763:1;10759:11;;;10714:57;12037:81;;11184:944;;11214:663;10008:1;10001:14;;;10045:4;10032:18;;-1:-1:-1;;11250:20:20;;;11368:236;11382:7;11379:1;11376:14;11368:236;;;11471:19;;;11465:26;11450:42;;11563:27;;;;11531:1;11519:14;;;;11398:19;;11368:236;;;11372:3;11632:6;11623:7;11620:19;11617:201;;;11693:19;;;11687:26;-1:-1:-1;;11776:1:20;11772:14;;;11788:3;11768:24;11764:37;11760:42;11745:58;11730:74;;11617:201;-1:-1:-1;;;;;11864:1:20;11848:14;;;11844:22;11831:36;;-1:-1:-1;10782:1352:20:o;13669:1164::-;13946:3;13975:1;14008:6;14002:13;14038:36;14064:9;14038:36;:::i;:::-;14093:1;14110:18;;;14137:133;;;;14284:1;14279:356;;;;14103:532;;14137:133;-1:-1:-1;;14170:24:20;;14158:37;;14243:14;;14236:22;14224:35;;14215:45;;;-1:-1:-1;14137:133:20;;14279:356;14310:6;14307:1;14300:17;14340:4;14385:2;14382:1;14372:16;14410:1;14424:165;14438:6;14435:1;14432:13;14424:165;;;14516:14;;14503:11;;;14496:35;14559:16;;;;14453:10;;14424:165;;;14428:3;;;14618:6;14613:3;14609:16;14602:23;;14103:532;;-1:-1:-1;;;14651:3:20;14644:16;14691:6;14685:13;14669:29;;14707:77;14775:8;14770:2;14765:3;14761:12;14754:4;14746:6;14742:17;14707:77;:::i;:::-;14804:18;;;;14800:27;;;-1:-1:-1;;;;;13669:1164:20:o;15249:127::-;15310:10;15305:3;15301:20;15298:1;15291:31;15341:4;15338:1;15331:15;15365:4;15362:1;15355:15;15381:128;15448:9;;;15469:11;;;15466:37;;;15483:18;;:::i;16270:168::-;16343:9;;;16374;;16391:15;;;16385:22;;16371:37;16361:71;;16412:18;;:::i;17554:125::-;17619:9;;;17640:10;;;17637:36;;;17653:18;;:::i;17684:135::-;17723:3;17744:17;;;17741:43;;17764:18;;:::i;:::-;-1:-1:-1;17811:1:20;17800:13;;17684:135::o;17824:401::-;18026:2;18008:21;;;18065:2;18045:18;;;18038:30;18104:34;18099:2;18084:18;;18077:62;-1:-1:-1;;;18170:2:20;18155:18;;18148:35;18215:3;18200:19;;17824:401::o;19629:414::-;19831:2;19813:21;;;19870:2;19850:18;;;19843:30;19909:34;19904:2;19889:18;;19882:62;-1:-1:-1;;;19975:2:20;19960:18;;19953:48;20033:3;20018:19;;19629:414::o;21347:245::-;21414:6;21467:2;21455:9;21446:7;21442:23;21438:32;21435:52;;;21483:1;21480;21473:12;21435:52;21515:9;21509:16;21534:28;21556:5;21534:28;:::i;22008:489::-;-1:-1:-1;;;;;22277:15:20;;;22259:34;;22329:15;;22324:2;22309:18;;22302:43;22376:2;22361:18;;22354:34;;;22424:3;22419:2;22404:18;;22397:31;;;22202:4;;22445:46;;22471:19;;22463:6;22445:46;:::i;:::-;22437:54;22008:489;-1:-1:-1;;;;;;22008:489:20:o;22502:249::-;22571:6;22624:2;22612:9;22603:7;22599:23;22595:32;22592:52;;;22640:1;22637;22630:12;22592:52;22672:9;22666:16;22691:30;22715:5;22691:30;:::i;22756:127::-;22817:10;22812:3;22808:20;22805:1;22798:31;22848:4;22845:1;22838:15;22872:4;22869:1;22862:15;24004:127;24065:10;24060:3;24056:20;24053:1;24046:31;24096:4;24093:1;24086:15;24120:4;24117:1;24110:15;25664:287;25793:3;25831:6;25825:13;25847:66;25906:6;25901:3;25894:4;25886:6;25882:17;25847:66;:::i;:::-;25929:16;;;;;25664:287;-1:-1:-1;;25664:287:20:o

Swarm Source

ipfs://ea4f441eaa20b4add03b14a60c98cb118c1bdc9ade2feb8294883eeae19a31a0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.