ETH Price: $3,239.12 (+2.15%)
Gas: 1 Gwei

Token

CyberDoge (CDoge)
 

Overview

Max Total Supply

364 CDoge

Holders

220

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 CDoge
0x3d5c204c96dbba691a8b8826b5121ec918a727cd
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CyberDoge

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-03
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

        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: contract/CyberDoge.sol


pragma solidity ^0.8.0;



contract CyberDoge is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.06 ether;
    uint256 public maxSupply = 5555;
    uint256 public discount = 0.01 ether;
    uint256 public maxMintAmount = 20;
    mapping(address=>bool) public whitelistedAdresses;
    bool public paused = true;
    bool public revealed;
    string public notRevealedUri;

    constructor(
        string memory _name,    
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    // public
    function mint(uint256 _mintAmount) public payable {
        require(!paused);
        uint256 supply = totalSupply();
        require(supply>=2);
        uint256 priceToPay = cost;
        if (msg.sender != owner()) {
            if(whitelistedAdresses[msg.sender] == true) {
                priceToPay -= discount;
            }
            require(msg.value >= priceToPay * _mintAmount,"not enough value");
        }
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender,supply+i);
        }
    }

    function mintUniqueAddress(address _user) public onlyOwner{
        uint256 supply = totalSupply();
        require(supply<2);
        _safeMint(_user,supply+1);
    }
    
    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

        if(!revealed) {
            return notRevealedUri;
        }

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

    //only owner
    function reveal() public onlyOwner() {
        revealed = true;
    }

    function setCost(uint256 _newCost) public onlyOwner() {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
        maxMintAmount = _newmaxMintAmount;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner() {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner() {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner() {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner() {
        paused = _state;
    }

    function setDiscount(uint256 _percent) public onlyOwner() {
        discount = _percent;
    }

    function whitelistUsers(address[] memory _users,bool whitelisted) public onlyOwner() {
        for(uint256 i = 0; i< _users.length;i++){
            whitelistedAdresses[_users[i]]=whitelisted;
        }
    }

    function withdraw() public payable onlyOwner() {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"mintUniqueAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setDiscount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAdresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200020c565b5066d529ae9e860000600d556115b3600e55662386f26fc10000600f5560146010556012805460ff191660011790553480156200006457600080fd5b5060405162002bcd38038062002bcd83398101604081905262000087916200037f565b835184908490620000a09060009060208501906200020c565b508051620000b69060019060208401906200020c565b505050620000d3620000cd620000f360201b60201c565b620000f7565b620000de8262000149565b620000e981620001b1565b5050505062000475565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001985760405162461bcd60e51b8152602060048201819052602482015260008051602062002bad83398151915260448201526064015b60405180910390fd5b8051620001ad90600b9060208401906200020c565b5050565b600a546001600160a01b03163314620001fc5760405162461bcd60e51b8152602060048201819052602482015260008051602062002bad83398151915260448201526064016200018f565b8051620001ad9060139060208401905b8280546200021a9062000438565b90600052602060002090601f0160209004810192826200023e576000855562000289565b82601f106200025957805160ff191683800117855562000289565b8280016001018555821562000289579182015b82811115620002895782518255916020019190600101906200026c565b50620002979291506200029b565b5090565b5b808211156200029757600081556001016200029c565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002da57600080fd5b81516001600160401b0380821115620002f757620002f7620002b2565b604051601f8301601f19908116603f01168101908282118183101715620003225762000322620002b2565b816040528381526020925086838588010111156200033f57600080fd5b600091505b8382101562000363578582018301518183018401529082019062000344565b83821115620003755760008385830101525b9695505050505050565b600080600080608085870312156200039657600080fd5b84516001600160401b0380821115620003ae57600080fd5b620003bc88838901620002c8565b95506020870151915080821115620003d357600080fd5b620003e188838901620002c8565b94506040870151915080821115620003f857600080fd5b6200040688838901620002c8565b935060608701519150808211156200041d57600080fd5b506200042c87828801620002c8565b91505092959194509250565b600181811c908216806200044d57607f821691505b602082108114156200046f57634e487b7160e01b600052602260045260246000fd5b50919050565b61272880620004856000396000f3fe6080604052600436106102465760003560e01c80635c975abb11610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610679578063da3ef23f1461068f578063dabd2719146106af578063e985e9c5146106cf578063f2c4ce1e14610718578063f2fde38b1461073857600080fd5b8063a22cb465146105ef578063a475b5dd1461060f578063b88d4fde14610624578063c668286214610644578063c87b56dd1461065957600080fd5b8063715018a6116100fd578063715018a6146105745780637f00c7a6146105895780638da5cb5b146105a957806395d89b41146105c7578063a0712d68146105dc57600080fd5b80635c975abb146104e45780635f2e39ae146104fe5780636352211e1461051e5780636b6f4a9d1461053e57806370a082311461055457600080fd5b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce71461043557806350f1370914610455578063518302271461047557806354dcd4c61461049457806355f804b3146104c457600080fd5b80632f745c59146103a05780633ccfd60b146103c057806342842e0e146103c8578063438b6300146103e857806344a0d68a1461041557600080fd5b8063095ea7b31161020e578063095ea7b31461031157806313faede61461033157806318160ddd14610355578063239c70ae1461036a57806323b872dd1461038057600080fd5b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063081c8c44146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611fab565b610758565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611fdd565b610783565b005b3480156102ae57600080fd5b506102b76107c9565b6040516102779190612050565b3480156102d057600080fd5b506102e46102df366004612063565b61085b565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102b76108f0565b34801561031d57600080fd5b506102a061032c366004612093565b61097e565b34801561033d57600080fd5b50610347600d5481565b604051908152602001610277565b34801561036157600080fd5b50600854610347565b34801561037657600080fd5b5061034760105481565b34801561038c57600080fd5b506102a061039b3660046120bd565b610a94565b3480156103ac57600080fd5b506103476103bb366004612093565b610ac5565b6102a0610b5b565b3480156103d457600080fd5b506102a06103e33660046120bd565b610bdd565b3480156103f457600080fd5b506104086104033660046120f9565b610bf8565b6040516102779190612114565b34801561042157600080fd5b506102a0610430366004612063565b610c9a565b34801561044157600080fd5b50610347610450366004612063565b610cc9565b34801561046157600080fd5b506102a061047036600461219f565b610d5c565b34801561048157600080fd5b5060125461026b90610100900460ff1681565b3480156104a057600080fd5b5061026b6104af3660046120f9565b60116020526000908152604090205460ff1681565b3480156104d057600080fd5b506102a06104df3660046122b6565b610ded565b3480156104f057600080fd5b5060125461026b9060ff1681565b34801561050a57600080fd5b506102a06105193660046120f9565b610e2e565b34801561052a57600080fd5b506102e4610539366004612063565b610e86565b34801561054a57600080fd5b50610347600f5481565b34801561056057600080fd5b5061034761056f3660046120f9565b610efd565b34801561058057600080fd5b506102a0610f84565b34801561059557600080fd5b506102a06105a4366004612063565b610fba565b3480156105b557600080fd5b50600a546001600160a01b03166102e4565b3480156105d357600080fd5b506102b7610fe9565b6102a06105ea366004612063565b610ff8565b3480156105fb57600080fd5b506102a061060a3660046122ff565b611115565b34801561061b57600080fd5b506102a0611120565b34801561063057600080fd5b506102a061063f366004612332565b61115b565b34801561065057600080fd5b506102b761118d565b34801561066557600080fd5b506102b7610674366004612063565b61119a565b34801561068557600080fd5b50610347600e5481565b34801561069b57600080fd5b506102a06106aa3660046122b6565b611319565b3480156106bb57600080fd5b506102a06106ca366004612063565b611356565b3480156106db57600080fd5b5061026b6106ea3660046123ae565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072457600080fd5b506102a06107333660046122b6565b611385565b34801561074457600080fd5b506102a06107533660046120f9565b6113c2565b60006001600160e01b0319821663780e9d6360e01b148061077d575061077d8261145a565b92915050565b600a546001600160a01b031633146107b65760405162461bcd60e51b81526004016107ad906123d8565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546107d89061240d565b80601f01602080910402602001604051908101604052809291908181526020018280546108049061240d565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ad565b506000908152600460205260409020546001600160a01b031690565b601380546108fd9061240d565b80601f01602080910402602001604051908101604052809291908181526020018280546109299061240d565b80156109765780601f1061094b57610100808354040283529160200191610976565b820191906000526020600020905b81548152906001019060200180831161095957829003601f168201915b505050505081565b600061098982610e86565b9050806001600160a01b0316836001600160a01b031614156109f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ad565b336001600160a01b0382161480610a135750610a1381336106ea565b610a855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ad565b610a8f83836114aa565b505050565b610a9e3382611518565b610aba5760405162461bcd60e51b81526004016107ad90612448565b610a8f83838361160f565b6000610ad083610efd565b8210610b325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b855760405162461bcd60e51b81526004016107ad906123d8565b604051600090339047908381818185875af1925050503d8060008114610bc7576040519150601f19603f3d011682016040523d82523d6000602084013e610bcc565b606091505b5050905080610bda57600080fd5b50565b610a8f8383836040518060200160405280600081525061115b565b60606000610c0583610efd565b905060008167ffffffffffffffff811115610c2257610c22612158565b604051908082528060200260200182016040528015610c4b578160200160208202803683370190505b50905060005b82811015610c9257610c638582610ac5565b828281518110610c7557610c75612499565b602090810291909101015280610c8a816124c5565b915050610c51565b509392505050565b600a546001600160a01b03163314610cc45760405162461bcd60e51b81526004016107ad906123d8565b600d55565b6000610cd460085490565b8210610d375760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ad565b60088281548110610d4a57610d4a612499565b90600052602060002001549050919050565b600a546001600160a01b03163314610d865760405162461bcd60e51b81526004016107ad906123d8565b60005b8251811015610a8f578160116000858481518110610da957610da9612499565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610de5816124c5565b915050610d89565b600a546001600160a01b03163314610e175760405162461bcd60e51b81526004016107ad906123d8565b8051610e2a90600b906020840190611efc565b5050565b600a546001600160a01b03163314610e585760405162461bcd60e51b81526004016107ad906123d8565b6000610e6360085490565b905060028110610e7257600080fd5b610e2a82610e818360016124e0565b6117ba565b6000818152600260205260408120546001600160a01b03168061077d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ad565b60006001600160a01b038216610f685760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ad565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fae5760405162461bcd60e51b81526004016107ad906123d8565b610fb860006117d4565b565b600a546001600160a01b03163314610fe45760405162461bcd60e51b81526004016107ad906123d8565b601055565b6060600180546107d89061240d565b60125460ff161561100857600080fd5b600061101360085490565b9050600281101561102357600080fd5b600d54600a546001600160a01b031633146110b1573360009081526011602052604090205460ff1615156001141561106557600f5461106290826124f8565b90505b61106f838261250f565b3410156110b15760405162461bcd60e51b815260206004820152601060248201526f6e6f7420656e6f7567682076616c756560801b60448201526064016107ad565b600083116110be57600080fd5b6010548311156110cd57600080fd5b600e546110da84846124e0565b11156110e557600080fd5b60015b83811161110f576110fd33610e8183866124e0565b80611107816124c5565b9150506110e8565b50505050565b610e2a338383611826565b600a546001600160a01b0316331461114a5760405162461bcd60e51b81526004016107ad906123d8565b6012805461ff001916610100179055565b6111653383611518565b6111815760405162461bcd60e51b81526004016107ad90612448565b61110f848484846118f5565b600c80546108fd9061240d565b6000818152600260205260409020546060906001600160a01b03166112195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ad565b601254610100900460ff166112ba57601380546112359061240d565b80601f01602080910402602001604051908101604052809291908181526020018280546112619061240d565b80156112ae5780601f10611283576101008083540402835291602001916112ae565b820191906000526020600020905b81548152906001019060200180831161129157829003601f168201915b50505050509050919050565b60006112c4611928565b905060008151116112e45760405180602001604052806000815250611312565b806112ee84611937565b600c6040516020016113029392919061252e565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113435760405162461bcd60e51b81526004016107ad906123d8565b8051610e2a90600c906020840190611efc565b600a546001600160a01b031633146113805760405162461bcd60e51b81526004016107ad906123d8565b600f55565b600a546001600160a01b031633146113af5760405162461bcd60e51b81526004016107ad906123d8565b8051610e2a906013906020840190611efc565b600a546001600160a01b031633146113ec5760405162461bcd60e51b81526004016107ad906123d8565b6001600160a01b0381166114515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ad565b610bda816117d4565b60006001600160e01b031982166380ac58cd60e01b148061148b57506001600160e01b03198216635b5e139f60e01b145b8061077d57506301ffc9a760e01b6001600160e01b031983161461077d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114df82610e86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ad565b600061159c83610e86565b9050806001600160a01b0316846001600160a01b031614806115d75750836001600160a01b03166115cc8461085b565b6001600160a01b0316145b8061160757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661162282610e86565b6001600160a01b03161461168a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ad565b6001600160a01b0382166116ec5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ad565b6116f7838383611a35565b6117026000826114aa565b6001600160a01b038316600090815260036020526040812080546001929061172b9084906124f8565b90915550506001600160a01b03821660009081526003602052604081208054600192906117599084906124e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e2a828260405180602001604052806000815250611aed565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ad565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61190084848461160f565b61190c84848484611b20565b61110f5760405162461bcd60e51b81526004016107ad906125f2565b6060600b80546107d89061240d565b60608161195b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611985578061196f816124c5565b915061197e9050600a8361265a565b915061195f565b60008167ffffffffffffffff8111156119a0576119a0612158565b6040519080825280601f01601f1916602001820160405280156119ca576020820181803683370190505b5090505b8415611607576119df6001836124f8565b91506119ec600a8661266e565b6119f79060306124e0565b60f81b818381518110611a0c57611a0c612499565b60200101906001600160f81b031916908160001a905350611a2e600a8661265a565b94506119ce565b6001600160a01b038316611a9057611a8b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ab3565b816001600160a01b0316836001600160a01b031614611ab357611ab38382611c1e565b6001600160a01b038216611aca57610a8f81611cbb565b826001600160a01b0316826001600160a01b031614610a8f57610a8f8282611d6a565b611af78383611dae565b611b046000848484611b20565b610a8f5760405162461bcd60e51b81526004016107ad906125f2565b60006001600160a01b0384163b15611c1357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b64903390899088908890600401612682565b6020604051808303816000875af1925050508015611b9f575060408051601f3d908101601f19168201909252611b9c918101906126bf565b60015b611bf9573d808015611bcd576040519150601f19603f3d011682016040523d82523d6000602084013e611bd2565b606091505b508051611bf15760405162461bcd60e51b81526004016107ad906125f2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611607565b506001949350505050565b60006001611c2b84610efd565b611c3591906124f8565b600083815260076020526040902054909150808214611c88576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ccd906001906124f8565b60008381526009602052604081205460088054939450909284908110611cf557611cf5612499565b906000526020600020015490508060088381548110611d1657611d16612499565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d4e57611d4e6126dc565b6001900381819060005260206000200160009055905550505050565b6000611d7583610efd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e045760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ad565b6000818152600260205260409020546001600160a01b031615611e695760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ad565b611e7560008383611a35565b6001600160a01b0382166000908152600360205260408120805460019290611e9e9084906124e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f089061240d565b90600052602060002090601f016020900481019282611f2a5760008555611f70565b82601f10611f4357805160ff1916838001178555611f70565b82800160010185558215611f70579182015b82811115611f70578251825591602001919060010190611f55565b50611f7c929150611f80565b5090565b5b80821115611f7c5760008155600101611f81565b6001600160e01b031981168114610bda57600080fd5b600060208284031215611fbd57600080fd5b813561131281611f95565b80358015158114611fd857600080fd5b919050565b600060208284031215611fef57600080fd5b61131282611fc8565b60005b83811015612013578181015183820152602001611ffb565b8381111561110f5750506000910152565b6000815180845261203c816020860160208601611ff8565b601f01601f19169290920160200192915050565b6020815260006113126020830184612024565b60006020828403121561207557600080fd5b5035919050565b80356001600160a01b0381168114611fd857600080fd5b600080604083850312156120a657600080fd5b6120af8361207c565b946020939093013593505050565b6000806000606084860312156120d257600080fd5b6120db8461207c565b92506120e96020850161207c565b9150604084013590509250925092565b60006020828403121561210b57600080fd5b6113128261207c565b6020808252825182820181905260009190848201906040850190845b8181101561214c57835183529284019291840191600101612130565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561219757612197612158565b604052919050565b600080604083850312156121b257600080fd5b823567ffffffffffffffff808211156121ca57600080fd5b818501915085601f8301126121de57600080fd5b81356020828211156121f2576121f2612158565b8160051b925061220381840161216e565b828152928401810192818101908985111561221d57600080fd5b948201945b84861015612242576122338661207c565b82529482019490820190612222565b96506122519050878201611fc8565b9450505050509250929050565b600067ffffffffffffffff83111561227857612278612158565b61228b601f8401601f191660200161216e565b905082815283838301111561229f57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156122c857600080fd5b813567ffffffffffffffff8111156122df57600080fd5b8201601f810184136122f057600080fd5b6116078482356020840161225e565b6000806040838503121561231257600080fd5b61231b8361207c565b915061232960208401611fc8565b90509250929050565b6000806000806080858703121561234857600080fd5b6123518561207c565b935061235f6020860161207c565b925060408501359150606085013567ffffffffffffffff81111561238257600080fd5b8501601f8101871361239357600080fd5b6123a28782356020840161225e565b91505092959194509250565b600080604083850312156123c157600080fd5b6123ca8361207c565b91506123296020840161207c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061242157607f821691505b6020821081141561244257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124d9576124d96124af565b5060010190565b600082198211156124f3576124f36124af565b500190565b60008282101561250a5761250a6124af565b500390565b6000816000190483118215151615612529576125296124af565b500290565b6000845160206125418285838a01611ff8565b8551918401916125548184848a01611ff8565b8554920191600090600181811c908083168061257157607f831692505b85831081141561258f57634e487b7160e01b85526022600452602485fd5b8080156125a357600181146125b4576125e1565b60ff198516885283880195506125e1565b60008b81526020902060005b858110156125d95781548a8201529084019088016125c0565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261266957612669612644565b500490565b60008261267d5761267d612644565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126b590830184612024565b9695505050505050565b6000602082840312156126d157600080fd5b815161131281611f95565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205af51fb83cefc7f5957698f943de4ec29d1ed3a9878f7eb89ac9fd9bcc62a5ad64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000094379626572446f67650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543446f67650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53513438626e697452766557765832795a31777a6138635433757869696e535276716f37374e69456b4b47452f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d506d6a4b6e507150764a724e46786a41746b6439623148624b4b6d7248766874734234744d70776e636e774a0000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80635c975abb11610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb0114610679578063da3ef23f1461068f578063dabd2719146106af578063e985e9c5146106cf578063f2c4ce1e14610718578063f2fde38b1461073857600080fd5b8063a22cb465146105ef578063a475b5dd1461060f578063b88d4fde14610624578063c668286214610644578063c87b56dd1461065957600080fd5b8063715018a6116100fd578063715018a6146105745780637f00c7a6146105895780638da5cb5b146105a957806395d89b41146105c7578063a0712d68146105dc57600080fd5b80635c975abb146104e45780635f2e39ae146104fe5780636352211e1461051e5780636b6f4a9d1461053e57806370a082311461055457600080fd5b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce71461043557806350f1370914610455578063518302271461047557806354dcd4c61461049457806355f804b3146104c457600080fd5b80632f745c59146103a05780633ccfd60b146103c057806342842e0e146103c8578063438b6300146103e857806344a0d68a1461041557600080fd5b8063095ea7b31161020e578063095ea7b31461031157806313faede61461033157806318160ddd14610355578063239c70ae1461036a57806323b872dd1461038057600080fd5b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063081c8c44146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611fab565b610758565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611fdd565b610783565b005b3480156102ae57600080fd5b506102b76107c9565b6040516102779190612050565b3480156102d057600080fd5b506102e46102df366004612063565b61085b565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102b76108f0565b34801561031d57600080fd5b506102a061032c366004612093565b61097e565b34801561033d57600080fd5b50610347600d5481565b604051908152602001610277565b34801561036157600080fd5b50600854610347565b34801561037657600080fd5b5061034760105481565b34801561038c57600080fd5b506102a061039b3660046120bd565b610a94565b3480156103ac57600080fd5b506103476103bb366004612093565b610ac5565b6102a0610b5b565b3480156103d457600080fd5b506102a06103e33660046120bd565b610bdd565b3480156103f457600080fd5b506104086104033660046120f9565b610bf8565b6040516102779190612114565b34801561042157600080fd5b506102a0610430366004612063565b610c9a565b34801561044157600080fd5b50610347610450366004612063565b610cc9565b34801561046157600080fd5b506102a061047036600461219f565b610d5c565b34801561048157600080fd5b5060125461026b90610100900460ff1681565b3480156104a057600080fd5b5061026b6104af3660046120f9565b60116020526000908152604090205460ff1681565b3480156104d057600080fd5b506102a06104df3660046122b6565b610ded565b3480156104f057600080fd5b5060125461026b9060ff1681565b34801561050a57600080fd5b506102a06105193660046120f9565b610e2e565b34801561052a57600080fd5b506102e4610539366004612063565b610e86565b34801561054a57600080fd5b50610347600f5481565b34801561056057600080fd5b5061034761056f3660046120f9565b610efd565b34801561058057600080fd5b506102a0610f84565b34801561059557600080fd5b506102a06105a4366004612063565b610fba565b3480156105b557600080fd5b50600a546001600160a01b03166102e4565b3480156105d357600080fd5b506102b7610fe9565b6102a06105ea366004612063565b610ff8565b3480156105fb57600080fd5b506102a061060a3660046122ff565b611115565b34801561061b57600080fd5b506102a0611120565b34801561063057600080fd5b506102a061063f366004612332565b61115b565b34801561065057600080fd5b506102b761118d565b34801561066557600080fd5b506102b7610674366004612063565b61119a565b34801561068557600080fd5b50610347600e5481565b34801561069b57600080fd5b506102a06106aa3660046122b6565b611319565b3480156106bb57600080fd5b506102a06106ca366004612063565b611356565b3480156106db57600080fd5b5061026b6106ea3660046123ae565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072457600080fd5b506102a06107333660046122b6565b611385565b34801561074457600080fd5b506102a06107533660046120f9565b6113c2565b60006001600160e01b0319821663780e9d6360e01b148061077d575061077d8261145a565b92915050565b600a546001600160a01b031633146107b65760405162461bcd60e51b81526004016107ad906123d8565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546107d89061240d565b80601f01602080910402602001604051908101604052809291908181526020018280546108049061240d565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ad565b506000908152600460205260409020546001600160a01b031690565b601380546108fd9061240d565b80601f01602080910402602001604051908101604052809291908181526020018280546109299061240d565b80156109765780601f1061094b57610100808354040283529160200191610976565b820191906000526020600020905b81548152906001019060200180831161095957829003601f168201915b505050505081565b600061098982610e86565b9050806001600160a01b0316836001600160a01b031614156109f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ad565b336001600160a01b0382161480610a135750610a1381336106ea565b610a855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ad565b610a8f83836114aa565b505050565b610a9e3382611518565b610aba5760405162461bcd60e51b81526004016107ad90612448565b610a8f83838361160f565b6000610ad083610efd565b8210610b325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107ad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b855760405162461bcd60e51b81526004016107ad906123d8565b604051600090339047908381818185875af1925050503d8060008114610bc7576040519150601f19603f3d011682016040523d82523d6000602084013e610bcc565b606091505b5050905080610bda57600080fd5b50565b610a8f8383836040518060200160405280600081525061115b565b60606000610c0583610efd565b905060008167ffffffffffffffff811115610c2257610c22612158565b604051908082528060200260200182016040528015610c4b578160200160208202803683370190505b50905060005b82811015610c9257610c638582610ac5565b828281518110610c7557610c75612499565b602090810291909101015280610c8a816124c5565b915050610c51565b509392505050565b600a546001600160a01b03163314610cc45760405162461bcd60e51b81526004016107ad906123d8565b600d55565b6000610cd460085490565b8210610d375760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107ad565b60088281548110610d4a57610d4a612499565b90600052602060002001549050919050565b600a546001600160a01b03163314610d865760405162461bcd60e51b81526004016107ad906123d8565b60005b8251811015610a8f578160116000858481518110610da957610da9612499565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610de5816124c5565b915050610d89565b600a546001600160a01b03163314610e175760405162461bcd60e51b81526004016107ad906123d8565b8051610e2a90600b906020840190611efc565b5050565b600a546001600160a01b03163314610e585760405162461bcd60e51b81526004016107ad906123d8565b6000610e6360085490565b905060028110610e7257600080fd5b610e2a82610e818360016124e0565b6117ba565b6000818152600260205260408120546001600160a01b03168061077d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ad565b60006001600160a01b038216610f685760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ad565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fae5760405162461bcd60e51b81526004016107ad906123d8565b610fb860006117d4565b565b600a546001600160a01b03163314610fe45760405162461bcd60e51b81526004016107ad906123d8565b601055565b6060600180546107d89061240d565b60125460ff161561100857600080fd5b600061101360085490565b9050600281101561102357600080fd5b600d54600a546001600160a01b031633146110b1573360009081526011602052604090205460ff1615156001141561106557600f5461106290826124f8565b90505b61106f838261250f565b3410156110b15760405162461bcd60e51b815260206004820152601060248201526f6e6f7420656e6f7567682076616c756560801b60448201526064016107ad565b600083116110be57600080fd5b6010548311156110cd57600080fd5b600e546110da84846124e0565b11156110e557600080fd5b60015b83811161110f576110fd33610e8183866124e0565b80611107816124c5565b9150506110e8565b50505050565b610e2a338383611826565b600a546001600160a01b0316331461114a5760405162461bcd60e51b81526004016107ad906123d8565b6012805461ff001916610100179055565b6111653383611518565b6111815760405162461bcd60e51b81526004016107ad90612448565b61110f848484846118f5565b600c80546108fd9061240d565b6000818152600260205260409020546060906001600160a01b03166112195760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ad565b601254610100900460ff166112ba57601380546112359061240d565b80601f01602080910402602001604051908101604052809291908181526020018280546112619061240d565b80156112ae5780601f10611283576101008083540402835291602001916112ae565b820191906000526020600020905b81548152906001019060200180831161129157829003601f168201915b50505050509050919050565b60006112c4611928565b905060008151116112e45760405180602001604052806000815250611312565b806112ee84611937565b600c6040516020016113029392919061252e565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113435760405162461bcd60e51b81526004016107ad906123d8565b8051610e2a90600c906020840190611efc565b600a546001600160a01b031633146113805760405162461bcd60e51b81526004016107ad906123d8565b600f55565b600a546001600160a01b031633146113af5760405162461bcd60e51b81526004016107ad906123d8565b8051610e2a906013906020840190611efc565b600a546001600160a01b031633146113ec5760405162461bcd60e51b81526004016107ad906123d8565b6001600160a01b0381166114515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ad565b610bda816117d4565b60006001600160e01b031982166380ac58cd60e01b148061148b57506001600160e01b03198216635b5e139f60e01b145b8061077d57506301ffc9a760e01b6001600160e01b031983161461077d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114df82610e86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115915760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ad565b600061159c83610e86565b9050806001600160a01b0316846001600160a01b031614806115d75750836001600160a01b03166115cc8461085b565b6001600160a01b0316145b8061160757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661162282610e86565b6001600160a01b03161461168a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ad565b6001600160a01b0382166116ec5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ad565b6116f7838383611a35565b6117026000826114aa565b6001600160a01b038316600090815260036020526040812080546001929061172b9084906124f8565b90915550506001600160a01b03821660009081526003602052604081208054600192906117599084906124e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e2a828260405180602001604052806000815250611aed565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118885760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ad565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61190084848461160f565b61190c84848484611b20565b61110f5760405162461bcd60e51b81526004016107ad906125f2565b6060600b80546107d89061240d565b60608161195b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611985578061196f816124c5565b915061197e9050600a8361265a565b915061195f565b60008167ffffffffffffffff8111156119a0576119a0612158565b6040519080825280601f01601f1916602001820160405280156119ca576020820181803683370190505b5090505b8415611607576119df6001836124f8565b91506119ec600a8661266e565b6119f79060306124e0565b60f81b818381518110611a0c57611a0c612499565b60200101906001600160f81b031916908160001a905350611a2e600a8661265a565b94506119ce565b6001600160a01b038316611a9057611a8b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ab3565b816001600160a01b0316836001600160a01b031614611ab357611ab38382611c1e565b6001600160a01b038216611aca57610a8f81611cbb565b826001600160a01b0316826001600160a01b031614610a8f57610a8f8282611d6a565b611af78383611dae565b611b046000848484611b20565b610a8f5760405162461bcd60e51b81526004016107ad906125f2565b60006001600160a01b0384163b15611c1357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b64903390899088908890600401612682565b6020604051808303816000875af1925050508015611b9f575060408051601f3d908101601f19168201909252611b9c918101906126bf565b60015b611bf9573d808015611bcd576040519150601f19603f3d011682016040523d82523d6000602084013e611bd2565b606091505b508051611bf15760405162461bcd60e51b81526004016107ad906125f2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611607565b506001949350505050565b60006001611c2b84610efd565b611c3591906124f8565b600083815260076020526040902054909150808214611c88576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ccd906001906124f8565b60008381526009602052604081205460088054939450909284908110611cf557611cf5612499565b906000526020600020015490508060088381548110611d1657611d16612499565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d4e57611d4e6126dc565b6001900381819060005260206000200160009055905550505050565b6000611d7583610efd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e045760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ad565b6000818152600260205260409020546001600160a01b031615611e695760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ad565b611e7560008383611a35565b6001600160a01b0382166000908152600360205260408120805460019290611e9e9084906124e0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f089061240d565b90600052602060002090601f016020900481019282611f2a5760008555611f70565b82601f10611f4357805160ff1916838001178555611f70565b82800160010185558215611f70579182015b82811115611f70578251825591602001919060010190611f55565b50611f7c929150611f80565b5090565b5b80821115611f7c5760008155600101611f81565b6001600160e01b031981168114610bda57600080fd5b600060208284031215611fbd57600080fd5b813561131281611f95565b80358015158114611fd857600080fd5b919050565b600060208284031215611fef57600080fd5b61131282611fc8565b60005b83811015612013578181015183820152602001611ffb565b8381111561110f5750506000910152565b6000815180845261203c816020860160208601611ff8565b601f01601f19169290920160200192915050565b6020815260006113126020830184612024565b60006020828403121561207557600080fd5b5035919050565b80356001600160a01b0381168114611fd857600080fd5b600080604083850312156120a657600080fd5b6120af8361207c565b946020939093013593505050565b6000806000606084860312156120d257600080fd5b6120db8461207c565b92506120e96020850161207c565b9150604084013590509250925092565b60006020828403121561210b57600080fd5b6113128261207c565b6020808252825182820181905260009190848201906040850190845b8181101561214c57835183529284019291840191600101612130565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561219757612197612158565b604052919050565b600080604083850312156121b257600080fd5b823567ffffffffffffffff808211156121ca57600080fd5b818501915085601f8301126121de57600080fd5b81356020828211156121f2576121f2612158565b8160051b925061220381840161216e565b828152928401810192818101908985111561221d57600080fd5b948201945b84861015612242576122338661207c565b82529482019490820190612222565b96506122519050878201611fc8565b9450505050509250929050565b600067ffffffffffffffff83111561227857612278612158565b61228b601f8401601f191660200161216e565b905082815283838301111561229f57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156122c857600080fd5b813567ffffffffffffffff8111156122df57600080fd5b8201601f810184136122f057600080fd5b6116078482356020840161225e565b6000806040838503121561231257600080fd5b61231b8361207c565b915061232960208401611fc8565b90509250929050565b6000806000806080858703121561234857600080fd5b6123518561207c565b935061235f6020860161207c565b925060408501359150606085013567ffffffffffffffff81111561238257600080fd5b8501601f8101871361239357600080fd5b6123a28782356020840161225e565b91505092959194509250565b600080604083850312156123c157600080fd5b6123ca8361207c565b91506123296020840161207c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061242157607f821691505b6020821081141561244257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124d9576124d96124af565b5060010190565b600082198211156124f3576124f36124af565b500190565b60008282101561250a5761250a6124af565b500390565b6000816000190483118215151615612529576125296124af565b500290565b6000845160206125418285838a01611ff8565b8551918401916125548184848a01611ff8565b8554920191600090600181811c908083168061257157607f831692505b85831081141561258f57634e487b7160e01b85526022600452602485fd5b8080156125a357600181146125b4576125e1565b60ff198516885283880195506125e1565b60008b81526020902060005b858110156125d95781548a8201529084019088016125c0565b505083880195505b50939b9a5050505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261266957612669612644565b500490565b60008261267d5761267d612644565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126b590830184612024565b9695505050505050565b6000602082840312156126d157600080fd5b815161131281611f95565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205af51fb83cefc7f5957698f943de4ec29d1ed3a9878f7eb89ac9fd9bcc62a5ad64736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000094379626572446f67650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543446f67650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d53513438626e697452766557765832795a31777a6138635433757869696e535276716f37374e69456b4b47452f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d506d6a4b6e507150764a724e46786a41746b6439623148624b4b6d7248766874734234744d70776e636e774a0000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CyberDoge
Arg [1] : _symbol (string): CDoge
Arg [2] : _initBaseURI (string): ipfs://QmSQ48bnitRveWvX2yZ1wza8cT3uxiinSRvqo77NiEkKGE/
Arg [3] : _initNotRevealedUri (string): ipfs://QmPmjKnPqPvJrNFxjAtkd9b1HbKKmrHvhtsB4tMpwncnwJ

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4379626572446f67650000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 43446f6765000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d53513438626e697452766557765832795a31777a613863
Arg [10] : 5433757869696e535276716f37374e69456b4b47452f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [12] : 697066733a2f2f516d506d6a4b6e507150764a724e46786a41746b6439623148
Arg [13] : 624b4b6d7248766874734234744d70776e636e774a0000000000000000000000


Deployed Bytecode Sourcemap

44405:4029:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38189:224;;;;;;;;;;-1:-1:-1;38189:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38189:224:0;;;;;;;;47848:81;;;;;;;;;;-1:-1:-1;47848:81:0;;;;;:::i;:::-;;:::i;:::-;;25683:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27242:221::-;;;;;;;;;;-1:-1:-1;27242:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;27242:221:0;1878:203:1;44834:28:0;;;;;;;;;;;;;:::i;26765:411::-;;;;;;;;;;-1:-1:-1;26765:411:0;;;;;:::i;:::-;;:::i;44559:32::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;44559:32:0;2523:177:1;38829:113:0;;;;;;;;;;-1:-1:-1;38917:10:0;:17;38829:113;;44679:33;;;;;;;;;;;;;;;;27992:339;;;;;;;;;;-1:-1:-1;27992:339:0;;;;;:::i;:::-;;:::i;38497:256::-;;;;;;;;;;-1:-1:-1;38497:256:0;;;;;:::i;:::-;;:::i;48261:170::-;;;:::i;28402:185::-;;;;;;;;;;-1:-1:-1;28402:185:0;;;;;:::i;:::-;;:::i;46180:390::-;;;;;;;;;;-1:-1:-1;46180:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47232:88::-;;;;;;;;;;-1:-1:-1;47232:88:0;;;;;:::i;:::-;;:::i;39019:233::-;;;;;;;;;;-1:-1:-1;39019:233:0;;;;;:::i;:::-;;:::i;48041:212::-;;;;;;;;;;-1:-1:-1;48041:212:0;;;;;:::i;:::-;;:::i;44807:20::-;;;;;;;;;;-1:-1:-1;44807:20:0;;;;;;;;;;;44719:49;;;;;;;;;;-1:-1:-1;44719:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47596:106;;;;;;;;;;-1:-1:-1;47596:106:0;;;;;:::i;:::-;;:::i;44775:25::-;;;;;;;;;;-1:-1:-1;44775:25:0;;;;;;;;45997:171;;;;;;;;;;-1:-1:-1;45997:171:0;;;;;:::i;:::-;;:::i;25377:239::-;;;;;;;;;;-1:-1:-1;25377:239:0;;;;;:::i;:::-;;:::i;44636:36::-;;;;;;;;;;;;;;;;25107:208;;;;;;;;;;-1:-1:-1;25107:208:0;;;;;:::i;:::-;;:::i;4653:103::-;;;;;;;;;;;;;:::i;47328:124::-;;;;;;;;;;-1:-1:-1;47328:124:0;;;;;:::i;:::-;;:::i;4002:87::-;;;;;;;;;;-1:-1:-1;4075:6:0;;-1:-1:-1;;;;;4075:6:0;4002:87;;25852:104;;;;;;;;;;;;;:::i;45308:681::-;;;;;;:::i;:::-;;:::i;27535:155::-;;;;;;;;;;-1:-1:-1;27535:155:0;;;;;:::i;:::-;;:::i;47153:71::-;;;;;;;;;;;;;:::i;28658:328::-;;;;;;;;;;-1:-1:-1;28658:328:0;;;;;:::i;:::-;;:::i;44515:37::-;;;;;;;;;;;;;:::i;46578:549::-;;;;;;;;;;-1:-1:-1;46578:549:0;;;;;:::i;:::-;;:::i;44598:31::-;;;;;;;;;;;;;;;;47710:130;;;;;;;;;;-1:-1:-1;47710:130:0;;;;;:::i;:::-;;:::i;47937:96::-;;;;;;;;;;-1:-1:-1;47937:96:0;;;;;:::i;:::-;;:::i;27761:164::-;;;;;;;;;;-1:-1:-1;27761:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27882:25:0;;;27858:4;27882:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27761:164;47460:128;;;;;;;;;;-1:-1:-1;47460:128:0;;;;;:::i;:::-;;:::i;4911:201::-;;;;;;;;;;-1:-1:-1;4911:201:0;;;;;:::i;:::-;;:::i;38189:224::-;38291:4;-1:-1:-1;;;;;;38315:50:0;;-1:-1:-1;;;38315:50:0;;:90;;;38369:36;38393:11;38369:23;:36::i;:::-;38308:97;38189:224;-1:-1:-1;;38189:224:0:o;47848:81::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;;;;;;;;;47906:6:::1;:15:::0;;-1:-1:-1;;47906:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47848:81::o;25683:100::-;25737:13;25770:5;25763:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25683:100;:::o;27242:221::-;27318:7;30585:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30585:16:0;27338:73;;;;-1:-1:-1;;;27338:73:0;;8317:2:1;27338:73:0;;;8299:21:1;8356:2;8336:18;;;8329:30;8395:34;8375:18;;;8368:62;-1:-1:-1;;;8446:18:1;;;8439:42;8498:19;;27338:73:0;8115:408:1;27338:73:0;-1:-1:-1;27431:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27431:24:0;;27242:221::o;44834:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26765:411::-;26846:13;26862:23;26877:7;26862:14;:23::i;:::-;26846:39;;26910:5;-1:-1:-1;;;;;26904:11:0;:2;-1:-1:-1;;;;;26904:11:0;;;26896:57;;;;-1:-1:-1;;;26896:57:0;;8730:2:1;26896:57:0;;;8712:21:1;8769:2;8749:18;;;8742:30;8808:34;8788:18;;;8781:62;-1:-1:-1;;;8859:18:1;;;8852:31;8900:19;;26896:57:0;8528:397:1;26896:57:0;2806:10;-1:-1:-1;;;;;26988:21:0;;;;:62;;-1:-1:-1;27013:37:0;27030:5;2806:10;27761:164;:::i;27013:37::-;26966:168;;;;-1:-1:-1;;;26966:168:0;;9132:2:1;26966:168:0;;;9114:21:1;9171:2;9151:18;;;9144:30;9210:34;9190:18;;;9183:62;9281:26;9261:18;;;9254:54;9325:19;;26966:168:0;8930:420:1;26966:168:0;27147:21;27156:2;27160:7;27147:8;:21::i;:::-;26835:341;26765:411;;:::o;27992:339::-;28187:41;2806:10;28220:7;28187:18;:41::i;:::-;28179:103;;;;-1:-1:-1;;;28179:103:0;;;;;;;:::i;:::-;28295:28;28305:4;28311:2;28315:7;28295:9;:28::i;38497:256::-;38594:7;38630:23;38647:5;38630:16;:23::i;:::-;38622:5;:31;38614:87;;;;-1:-1:-1;;;38614:87:0;;9975:2:1;38614:87:0;;;9957:21:1;10014:2;9994:18;;;9987:30;10053:34;10033:18;;;10026:62;-1:-1:-1;;;10104:18:1;;;10097:41;10155:19;;38614:87:0;9773:407:1;38614:87:0;-1:-1:-1;;;;;;38719:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38497:256::o;48261:170::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;48338:58:::1;::::0;48320:12:::1;::::0;48346:10:::1;::::0;48370:21:::1;::::0;48320:12;48338:58;48320:12;48338:58;48370:21;48346:10;48338:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48319:77;;;48415:7;48407:16;;;::::0;::::1;;48308:123;48261:170::o:0;28402:185::-;28540:39;28557:4;28563:2;28567:7;28540:39;;;;;;;;;;;;:16;:39::i;46180:390::-;46267:16;46301:23;46327:17;46337:6;46327:9;:17::i;:::-;46301:43;;46355:25;46397:15;46383:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46383:30:0;;46355:58;;46429:9;46424:113;46444:15;46440:1;:19;46424:113;;;46495:30;46515:6;46523:1;46495:19;:30::i;:::-;46481:8;46490:1;46481:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46461:3;;;;:::i;:::-;;;;46424:113;;;-1:-1:-1;46554:8:0;46180:390;-1:-1:-1;;;46180:390:0:o;47232:88::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;47297:4:::1;:15:::0;47232:88::o;39019:233::-;39094:7;39130:30;38917:10;:17;;38829:113;39130:30;39122:5;:38;39114:95;;;;-1:-1:-1;;;39114:95:0;;11001:2:1;39114:95:0;;;10983:21:1;11040:2;11020:18;;;11013:30;11079:34;11059:18;;;11052:62;-1:-1:-1;;;11130:18:1;;;11123:42;11182:19;;39114:95:0;10799:408:1;39114:95:0;39227:10;39238:5;39227:17;;;;;;;;:::i;:::-;;;;;;;;;39220:24;;39019:233;;;:::o;48041:212::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;48141:9:::1;48137:109;48159:6;:13;48156:1;:16;48137:109;;;48223:11;48192:19;:30;48212:6;48219:1;48212:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;48192:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;48192:30:0;:42;;-1:-1:-1;;48192:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48173:3;::::1;::::0;::::1;:::i;:::-;;;;48137:109;;47596:106:::0;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;47673:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47596:106:::0;:::o;45997:171::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;46066:14:::1;46083:13;38917:10:::0;:17;;38829:113;46083:13:::1;46066:30;;46122:1;46115:6;:8;46107:17;;;::::0;::::1;;46135:25;46145:5:::0;46151:8:::1;:6:::0;46158:1:::1;46151:8;:::i;:::-;46135:9;:25::i;25377:239::-:0;25449:7;25485:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25485:16:0;25520:19;25512:73;;;;-1:-1:-1;;;25512:73:0;;11547:2:1;25512:73:0;;;11529:21:1;11586:2;11566:18;;;11559:30;11625:34;11605:18;;;11598:62;-1:-1:-1;;;11676:18:1;;;11669:39;11725:19;;25512:73:0;11345:405:1;25107:208:0;25179:7;-1:-1:-1;;;;;25207:19:0;;25199:74;;;;-1:-1:-1;;;25199:74:0;;11957:2:1;25199:74:0;;;11939:21:1;11996:2;11976:18;;;11969:30;12035:34;12015:18;;;12008:62;-1:-1:-1;;;12086:18:1;;;12079:40;12136:19;;25199:74:0;11755:406:1;25199:74:0;-1:-1:-1;;;;;;25291:16:0;;;;;:9;:16;;;;;;;25107:208::o;4653:103::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;4718:30:::1;4745:1;4718:18;:30::i;:::-;4653:103::o:0;47328:124::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;47411:13:::1;:33:::0;47328:124::o;25852:104::-;25908:13;25941:7;25934:14;;;;;:::i;45308:681::-;45378:6;;;;45377:7;45369:16;;;;;;45396:14;45413:13;38917:10;:17;;38829:113;45413:13;45396:30;;45453:1;45445:6;:9;;45437:18;;;;;;45487:4;;4075:6;;-1:-1:-1;;;;;4075:6:0;45506:10;:21;45502:234;;45567:10;45547:31;;;;:19;:31;;;;;;;;:39;;:31;:39;45544:101;;;45621:8;;45607:22;;;;:::i;:::-;;;45544:101;45680:24;45693:11;45680:10;:24;:::i;:::-;45667:9;:37;;45659:65;;;;-1:-1:-1;;;45659:65:0;;12671:2:1;45659:65:0;;;12653:21:1;12710:2;12690:18;;;12683:30;-1:-1:-1;;;12729:18:1;;;12722:46;12785:18;;45659:65:0;12469:340:1;45659:65:0;45768:1;45754:11;:15;45746:24;;;;;;45804:13;;45789:11;:28;;45781:37;;;;;;45861:9;;45837:20;45846:11;45837:6;:20;:::i;:::-;:33;;45829:42;;;;;;45899:1;45882:100;45907:11;45902:1;:16;45882:100;;45940:30;45950:10;45961:8;45968:1;45961:6;:8;:::i;45940:30::-;45920:3;;;;:::i;:::-;;;;45882:100;;;;45358:631;;45308:681;:::o;27535:155::-;27630:52;2806:10;27663:8;27673;27630:18;:52::i;47153:71::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;47201:8:::1;:15:::0;;-1:-1:-1;;47201:15:0::1;;;::::0;;47153:71::o;28658:328::-;28833:41;2806:10;28866:7;28833:18;:41::i;:::-;28825:103;;;;-1:-1:-1;;;28825:103:0;;;;;;;:::i;:::-;28939:39;28953:4;28959:2;28963:7;28972:5;28939:13;:39::i;44515:37::-;;;;;;;:::i;46578:549::-;30561:4;30585:16;;;:7;:16;;;;;;46696:13;;-1:-1:-1;;;;;30585:16:0;46727:113;;;;-1:-1:-1;;;46727:113:0;;13016:2:1;46727:113:0;;;12998:21:1;13055:2;13035:18;;;13028:30;13094:34;13074:18;;;13067:62;-1:-1:-1;;;13145:18:1;;;13138:45;13200:19;;46727:113:0;12814:411:1;46727:113:0;46857:8;;;;;;;46853:62;;46889:14;46882:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46578:549;;;:::o;46853:62::-;46927:28;46958:10;:8;:10::i;:::-;46927:41;;47017:1;46992:14;46986:28;:32;:133;;;;;;;;;;;;;;;;;47054:14;47070:18;:7;:16;:18::i;:::-;47090:13;47037:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46986:133;46979:140;46578:549;-1:-1:-1;;;46578:549:0:o;47710:130::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;47799:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47937:96::-:0;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;48006:8:::1;:19:::0;47937:96::o;47460:128::-;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;47548:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4911:201::-:0;4075:6;;-1:-1:-1;;;;;4075:6:0;2806:10;4222:23;4214:68;;;;-1:-1:-1;;;4214:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5000:22:0;::::1;4992:73;;;::::0;-1:-1:-1;;;4992:73:0;;15090:2:1;4992:73:0::1;::::0;::::1;15072:21:1::0;15129:2;15109:18;;;15102:30;15168:34;15148:18;;;15141:62;-1:-1:-1;;;15219:18:1;;;15212:36;15265:19;;4992:73:0::1;14888:402:1::0;4992:73:0::1;5076:28;5095:8;5076:18;:28::i;24738:305::-:0;24840:4;-1:-1:-1;;;;;;24877:40:0;;-1:-1:-1;;;24877:40:0;;:105;;-1:-1:-1;;;;;;;24934:48:0;;-1:-1:-1;;;24934:48:0;24877:105;:158;;;-1:-1:-1;;;;;;;;;;16543:40:0;;;24999:36;16434:157;34478:174;34553:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34553:29:0;-1:-1:-1;;;;;34553:29:0;;;;;;;;:24;;34607:23;34553:24;34607:14;:23::i;:::-;-1:-1:-1;;;;;34598:46:0;;;;;;;;;;;34478:174;;:::o;30790:348::-;30883:4;30585:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30585:16:0;30900:73;;;;-1:-1:-1;;;30900:73:0;;15497:2:1;30900:73:0;;;15479:21:1;15536:2;15516:18;;;15509:30;15575:34;15555:18;;;15548:62;-1:-1:-1;;;15626:18:1;;;15619:42;15678:19;;30900:73:0;15295:408:1;30900:73:0;30984:13;31000:23;31015:7;31000:14;:23::i;:::-;30984:39;;31053:5;-1:-1:-1;;;;;31042:16:0;:7;-1:-1:-1;;;;;31042:16:0;;:51;;;;31086:7;-1:-1:-1;;;;;31062:31:0;:20;31074:7;31062:11;:20::i;:::-;-1:-1:-1;;;;;31062:31:0;;31042:51;:87;;;-1:-1:-1;;;;;;27882:25:0;;;27858:4;27882:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31097:32;31034:96;30790:348;-1:-1:-1;;;;30790:348:0:o;33782:578::-;33941:4;-1:-1:-1;;;;;33914:31:0;:23;33929:7;33914:14;:23::i;:::-;-1:-1:-1;;;;;33914:31:0;;33906:85;;;;-1:-1:-1;;;33906:85:0;;15910:2:1;33906:85:0;;;15892:21:1;15949:2;15929:18;;;15922:30;15988:34;15968:18;;;15961:62;-1:-1:-1;;;16039:18:1;;;16032:39;16088:19;;33906:85:0;15708:405:1;33906:85:0;-1:-1:-1;;;;;34010:16:0;;34002:65;;;;-1:-1:-1;;;34002:65:0;;16320:2:1;34002:65:0;;;16302:21:1;16359:2;16339:18;;;16332:30;16398:34;16378:18;;;16371:62;-1:-1:-1;;;16449:18:1;;;16442:34;16493:19;;34002:65:0;16118:400:1;34002:65:0;34080:39;34101:4;34107:2;34111:7;34080:20;:39::i;:::-;34184:29;34201:1;34205:7;34184:8;:29::i;:::-;-1:-1:-1;;;;;34226:15:0;;;;;;:9;:15;;;;;:20;;34245:1;;34226:15;:20;;34245:1;;34226:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34257:13:0;;;;;;:9;:13;;;;;:18;;34274:1;;34257:13;:18;;34274:1;;34257:18;:::i;:::-;;;;-1:-1:-1;;34286:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34286:21:0;-1:-1:-1;;;;;34286:21:0;;;;;;;;;34325:27;;34286:16;;34325:27;;;;;;;33782:578;;;:::o;31480:110::-;31556:26;31566:2;31570:7;31556:26;;;;;;;;;;;;:9;:26::i;5272:191::-;5365:6;;;-1:-1:-1;;;;;5382:17:0;;;-1:-1:-1;;;;;;5382:17:0;;;;;;;5415:40;;5365:6;;;5382:17;5365:6;;5415:40;;5346:16;;5415:40;5335:128;5272:191;:::o;34794:315::-;34949:8;-1:-1:-1;;;;;34940:17:0;:5;-1:-1:-1;;;;;34940:17:0;;;34932:55;;;;-1:-1:-1;;;34932:55:0;;16725:2:1;34932:55:0;;;16707:21:1;16764:2;16744:18;;;16737:30;16803:27;16783:18;;;16776:55;16848:18;;34932:55:0;16523:349:1;34932:55:0;-1:-1:-1;;;;;34998:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34998:46:0;;;;;;;;;;35060:41;;540::1;;;35060::0;;513:18:1;35060:41:0;;;;;;;34794:315;;;:::o;29868:::-;30025:28;30035:4;30041:2;30045:7;30025:9;:28::i;:::-;30072:48;30095:4;30101:2;30105:7;30114:5;30072:22;:48::i;:::-;30064:111;;;;-1:-1:-1;;;30064:111:0;;;;;;;:::i;45177:108::-;45237:13;45270:7;45263:14;;;;;:::i;288:723::-;344:13;565:10;561:53;;-1:-1:-1;;592:10:0;;;;;;;;;;;;-1:-1:-1;;;592:10:0;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:0;;-1:-1:-1;744:2:0;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:0;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:0;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:0;;;;;;;;-1:-1:-1;949:11:0;958:2;949:11;;:::i;:::-;;;818:154;;39865:589;-1:-1:-1;;;;;40071:18:0;;40067:187;;40106:40;40138:7;41281:10;:17;;41254:24;;;;:15;:24;;;;;:44;;;41309:24;;;;;;;;;;;;41177:164;40106:40;40067:187;;;40176:2;-1:-1:-1;;;;;40168:10:0;:4;-1:-1:-1;;;;;40168:10:0;;40164:90;;40195:47;40228:4;40234:7;40195:32;:47::i;:::-;-1:-1:-1;;;;;40268:16:0;;40264:183;;40301:45;40338:7;40301:36;:45::i;40264:183::-;40374:4;-1:-1:-1;;;;;40368:10:0;:2;-1:-1:-1;;;;;40368:10:0;;40364:83;;40395:40;40423:2;40427:7;40395:27;:40::i;31817:321::-;31947:18;31953:2;31957:7;31947:5;:18::i;:::-;31998:54;32029:1;32033:2;32037:7;32046:5;31998:22;:54::i;:::-;31976:154;;;;-1:-1:-1;;;31976:154:0;;;;;;;:::i;35674:799::-;35829:4;-1:-1:-1;;;;;35850:13:0;;6613:20;6661:8;35846:620;;35886:72;;-1:-1:-1;;;35886:72:0;;-1:-1:-1;;;;;35886:36:0;;;;;:72;;2806:10;;35937:4;;35943:7;;35952:5;;35886:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35886:72:0;;;;;;;;-1:-1:-1;;35886:72:0;;;;;;;;;;;;:::i;:::-;;;35882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36128:13:0;;36124:272;;36171:60;;-1:-1:-1;;;36171:60:0;;;;;;;:::i;36124:272::-;36346:6;36340:13;36331:6;36327:2;36323:15;36316:38;35882:529;-1:-1:-1;;;;;;36009:51:0;-1:-1:-1;;;36009:51:0;;-1:-1:-1;36002:58:0;;35846:620;-1:-1:-1;36450:4:0;35674:799;;;;;;:::o;41968:988::-;42234:22;42284:1;42259:22;42276:4;42259:16;:22::i;:::-;:26;;;;:::i;:::-;42296:18;42317:26;;;:17;:26;;;;;;42234:51;;-1:-1:-1;42450:28:0;;;42446:328;;-1:-1:-1;;;;;42517:18:0;;42495:19;42517:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42568:30;;;;;;:44;;;42685:30;;:17;:30;;;;;:43;;;42446:328;-1:-1:-1;42870:26:0;;;;:17;:26;;;;;;;;42863:33;;;-1:-1:-1;;;;;42914:18:0;;;;;:12;:18;;;;;:34;;;;;;;42907:41;41968:988::o;43251:1079::-;43529:10;:17;43504:22;;43529:21;;43549:1;;43529:21;:::i;:::-;43561:18;43582:24;;;:15;:24;;;;;;43955:10;:26;;43504:46;;-1:-1:-1;43582:24:0;;43504:46;;43955:26;;;;;;:::i;:::-;;;;;;;;;43933:48;;44019:11;43994:10;44005;43994:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44099:28;;;:15;:28;;;;;;;:41;;;44271:24;;;;;44264:31;44306:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43322:1008;;;43251:1079;:::o;40755:221::-;40840:14;40857:20;40874:2;40857:16;:20::i;:::-;-1:-1:-1;;;;;40888:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40933:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40755:221:0:o;32474:382::-;-1:-1:-1;;;;;32554:16:0;;32546:61;;;;-1:-1:-1;;;32546:61:0;;18752:2:1;32546:61:0;;;18734:21:1;;;18771:18;;;18764:30;18830:34;18810:18;;;18803:62;18882:18;;32546:61:0;18550:356:1;32546:61:0;30561:4;30585:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30585:16:0;:30;32618:58;;;;-1:-1:-1;;;32618:58:0;;19113:2:1;32618:58:0;;;19095:21:1;19152:2;19132:18;;;19125:30;19191;19171:18;;;19164:58;19239:18;;32618:58:0;18911:352:1;32618:58:0;32689:45;32718:1;32722:2;32726:7;32689:20;:45::i;:::-;-1:-1:-1;;;;;32747:13:0;;;;;;:9;:13;;;;;:18;;32764:1;;32747:13;:18;;32764:1;;32747:18;:::i;:::-;;;;-1:-1:-1;;32776:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32776:21:0;-1:-1:-1;;;;;32776:21:0;;;;;;;;32815:33;;32776:16;;;32815:33;;32776:16;;32815:33;32474:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:275;4069:2;4063:9;4134:2;4115:13;;-1:-1:-1;;4111:27:1;4099:40;;4169:18;4154:34;;4190:22;;;4151:62;4148:88;;;4216:18;;:::i;:::-;4252:2;4245:22;3998:275;;-1:-1:-1;3998:275:1:o;4278:1022::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4485:9;4472:23;4514:18;4555:2;4547:6;4544:14;4541:34;;;4571:1;4568;4561:12;4541:34;4609:6;4598:9;4594:22;4584:32;;4654:7;4647:4;4643:2;4639:13;4635:27;4625:55;;4676:1;4673;4666:12;4625:55;4712:2;4699:16;4734:4;4757:2;4753;4750:10;4747:36;;;4763:18;;:::i;:::-;4809:2;4806:1;4802:10;4792:20;;4832:28;4856:2;4852;4848:11;4832:28;:::i;:::-;4894:15;;;4964:11;;;4960:20;;;4925:12;;;;4992:19;;;4989:39;;;5024:1;5021;5014:12;4989:39;5048:11;;;;5068:148;5084:6;5079:3;5076:15;5068:148;;;5150:23;5169:3;5150:23;:::i;:::-;5138:36;;5101:12;;;;5194;;;;5068:148;;;5235:5;-1:-1:-1;5259:35:1;;-1:-1:-1;5275:18:1;;;5259:35;:::i;:::-;5249:45;;;;;;4278:1022;;;;;:::o;5305:407::-;5370:5;5404:18;5396:6;5393:30;5390:56;;;5426:18;;:::i;:::-;5464:57;5509:2;5488:15;;-1:-1:-1;;5484:29:1;5515:4;5480:40;5464:57;:::i;:::-;5455:66;;5544:6;5537:5;5530:21;5584:3;5575:6;5570:3;5566:16;5563:25;5560:45;;;5601:1;5598;5591:12;5560:45;5650:6;5645:3;5638:4;5631:5;5627:16;5614:43;5704:1;5697:4;5688:6;5681:5;5677:18;5673:29;5666:40;5305:407;;;;;:::o;5717:451::-;5786:6;5839:2;5827:9;5818:7;5814:23;5810:32;5807:52;;;5855:1;5852;5845:12;5807:52;5895:9;5882:23;5928:18;5920:6;5917:30;5914:50;;;5960:1;5957;5950:12;5914:50;5983:22;;6036:4;6028:13;;6024:27;-1:-1:-1;6014:55:1;;6065:1;6062;6055:12;6014:55;6088:74;6154:7;6149:2;6136:16;6131:2;6127;6123:11;6088:74;:::i;6173:254::-;6238:6;6246;6299:2;6287:9;6278:7;6274:23;6270:32;6267:52;;;6315:1;6312;6305:12;6267:52;6338:29;6357:9;6338:29;:::i;:::-;6328:39;;6386:35;6417:2;6406:9;6402:18;6386:35;:::i;:::-;6376:45;;6173:254;;;;;:::o;6432:667::-;6527:6;6535;6543;6551;6604:3;6592:9;6583:7;6579:23;6575:33;6572:53;;;6621:1;6618;6611:12;6572:53;6644:29;6663:9;6644:29;:::i;:::-;6634:39;;6692:38;6726:2;6715:9;6711:18;6692:38;:::i;:::-;6682:48;;6777:2;6766:9;6762:18;6749:32;6739:42;;6832:2;6821:9;6817:18;6804:32;6859:18;6851:6;6848:30;6845:50;;;6891:1;6888;6881:12;6845:50;6914:22;;6967:4;6959:13;;6955:27;-1:-1:-1;6945:55:1;;6996:1;6993;6986:12;6945:55;7019:74;7085:7;7080:2;7067:16;7062:2;7058;7054:11;7019:74;:::i;:::-;7009:84;;;6432:667;;;;;;;:::o;7104:260::-;7172:6;7180;7233:2;7221:9;7212:7;7208:23;7204:32;7201:52;;;7249:1;7246;7239:12;7201:52;7272:29;7291:9;7272:29;:::i;:::-;7262:39;;7320:38;7354:2;7343:9;7339:18;7320:38;:::i;7369:356::-;7571:2;7553:21;;;7590:18;;;7583:30;7649:34;7644:2;7629:18;;7622:62;7716:2;7701:18;;7369:356::o;7730:380::-;7809:1;7805:12;;;;7852;;;7873:61;;7927:4;7919:6;7915:17;7905:27;;7873:61;7980:2;7972:6;7969:14;7949:18;7946:38;7943:161;;;8026:10;8021:3;8017:20;8014:1;8007:31;8061:4;8058:1;8051:15;8089:4;8086:1;8079:15;7943:161;;7730:380;;;:::o;9355:413::-;9557:2;9539:21;;;9596:2;9576:18;;;9569:30;9635:34;9630:2;9615:18;;9608:62;-1:-1:-1;;;9701:2:1;9686:18;;9679:47;9758:3;9743:19;;9355:413::o;10395:127::-;10456:10;10451:3;10447:20;10444:1;10437:31;10487:4;10484:1;10477:15;10511:4;10508:1;10501:15;10527:127;10588:10;10583:3;10579:20;10576:1;10569:31;10619:4;10616:1;10609:15;10643:4;10640:1;10633:15;10659:135;10698:3;-1:-1:-1;;10719:17:1;;10716:43;;;10739:18;;:::i;:::-;-1:-1:-1;10786:1:1;10775:13;;10659:135::o;11212:128::-;11252:3;11283:1;11279:6;11276:1;11273:13;11270:39;;;11289:18;;:::i;:::-;-1:-1:-1;11325:9:1;;11212:128::o;12166:125::-;12206:4;12234:1;12231;12228:8;12225:34;;;12239:18;;:::i;:::-;-1:-1:-1;12276:9:1;;12166:125::o;12296:168::-;12336:7;12402:1;12398;12394:6;12390:14;12387:1;12384:21;12379:1;12372:9;12365:17;12361:45;12358:71;;;12409:18;;:::i;:::-;-1:-1:-1;12449:9:1;;12296:168::o;13356:1527::-;13580:3;13618:6;13612:13;13644:4;13657:51;13701:6;13696:3;13691:2;13683:6;13679:15;13657:51;:::i;:::-;13771:13;;13730:16;;;;13793:55;13771:13;13730:16;13815:15;;;13793:55;:::i;:::-;13937:13;;13870:20;;;13910:1;;13997;14019:18;;;;14072;;;;14099:93;;14177:4;14167:8;14163:19;14151:31;;14099:93;14240:2;14230:8;14227:16;14207:18;14204:40;14201:167;;;-1:-1:-1;;;14267:33:1;;14323:4;14320:1;14313:15;14353:4;14274:3;14341:17;14201:167;14384:18;14411:110;;;;14535:1;14530:328;;;;14377:481;;14411:110;-1:-1:-1;;14446:24:1;;14432:39;;14491:20;;;;-1:-1:-1;14411:110:1;;14530:328;13303:1;13296:14;;;13340:4;13327:18;;14625:1;14639:169;14653:8;14650:1;14647:15;14639:169;;;14735:14;;14720:13;;;14713:37;14778:16;;;;14670:10;;14639:169;;;14643:3;;14839:8;14832:5;14828:20;14821:27;;14377:481;-1:-1:-1;14874:3:1;;13356:1527;-1:-1:-1;;;;;;;;;;;13356:1527:1:o;16877:414::-;17079:2;17061:21;;;17118:2;17098:18;;;17091:30;17157:34;17152:2;17137:18;;17130:62;-1:-1:-1;;;17223:2:1;17208:18;;17201:48;17281:3;17266:19;;16877:414::o;17296:127::-;17357:10;17352:3;17348:20;17345:1;17338:31;17388:4;17385:1;17378:15;17412:4;17409:1;17402:15;17428:120;17468:1;17494;17484:35;;17499:18;;:::i;:::-;-1:-1:-1;17533:9:1;;17428:120::o;17553:112::-;17585:1;17611;17601:35;;17616:18;;:::i;:::-;-1:-1:-1;17650:9:1;;17553:112::o;17670:489::-;-1:-1:-1;;;;;17939:15:1;;;17921:34;;17991:15;;17986:2;17971:18;;17964:43;18038:2;18023:18;;18016:34;;;18086:3;18081:2;18066:18;;18059:31;;;17864:4;;18107:46;;18133:19;;18125:6;18107:46;:::i;:::-;18099:54;17670:489;-1:-1:-1;;;;;;17670:489:1:o;18164:249::-;18233:6;18286:2;18274:9;18265:7;18261:23;18257:32;18254:52;;;18302:1;18299;18292:12;18254:52;18334:9;18328:16;18353:30;18377:5;18353:30;:::i;18418:127::-;18479:10;18474:3;18470:20;18467:1;18460:31;18510:4;18507:1;18500:15;18534:4;18531:1;18524:15

Swarm Source

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