ETH Price: $3,067.42 (+2.55%)
Gas: 5 Gwei

Token

Pixel Doodle Kongz (PDK)
 

Overview

Max Total Supply

0 PDK

Holders

839

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PDK
0xE233b953063618303ec5aCc34ecEC307E35dBd63
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:
PixelDoodleKongz

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-26
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/pixeldoodlekongz.sol


pragma solidity ^0.8.0;




contract PixelDoodleKongz is ERC721, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter public tokenSupply;

    string public baseURI;

    bool public mintIsActive = false;

    uint256 public maxSupply = 8888;
    uint256 public maxFreeSupply = 1000;
    uint256 public mintPrice = 30000000000000000; // 0.03 ETH
    uint256 public maxMintPerTransaction = 4;

    string public _baseTokenURI;
    address public secondWallet = 0x8D306E255f3cdcaFdf9E99AbD4C6CeaF8d9Bd9b6;

    // constructor
    constructor(string memory _initialBaseUri) ERC721("Pixel Doodle Kongz", "PDK") {
        setBaseURI(_initialBaseUri);
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        _baseTokenURI = newBaseURI;
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseTokenURI;
    }

    function setMintCost(uint256 _newPrice) external onlyOwner() {
        mintPrice = _newPrice;
    }

    function setMaxMint(uint256 _maxMint) external onlyOwner() {
        maxMintPerTransaction = _maxMint;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner() {
        maxSupply = _maxSupply;
    }

    function flipMintState() external onlyOwner {
        mintIsActive = !mintIsActive;
    }

    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        uint halfAmount = balance/2;
        payable(msg.sender).transfer(halfAmount);
        payable(secondWallet).transfer(halfAmount);
    }

    // mint
    function devMint(uint256 numberOfTokens) public onlyOwner {
        uint256 supply = tokenSupply.current() + 1;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            tokenSupply.increment();
            _safeMint(msg.sender, supply + i);
        }
    }

    function freeMint(uint256 numberOfTokens) external {
        require(mintIsActive, "Mint is not active");
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0.");
        require(numberOfTokens <= maxMintPerTransaction, "Mint amount too large");
        require(tokenSupply.current()  + numberOfTokens <= maxFreeSupply, "Not enough free mints remaining");
        
        uint256 supply = tokenSupply.current() + 1;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            tokenSupply.increment();
            _safeMint(msg.sender, supply + i);
        }
    }

    function mint(uint256 numberOfTokens) external payable  {
        require(mintIsActive, "Mint is not active");
        require(numberOfTokens > 0, "Number of tokens can not be less than or equal to 0.");
        require(numberOfTokens <= maxMintPerTransaction, "Mint amount too large");
        require(mintPrice * numberOfTokens == msg.value, "Sent ETH value is incorrect.");
        require(tokenSupply.current() + numberOfTokens <= maxSupply, "Purchase would exceed max supply.");
        
        uint256 supply = tokenSupply.current() + 1; 
        for (uint256 i = 0; i < numberOfTokens; i++) {
            tokenSupply.increment();
            _safeMint(msg.sender, supply + i);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseUri","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":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secondWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintCost","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":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"_value","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526009805460ff191690556122b8600a556103e8600b55666a94d74f430000600c556004600d55600f80546001600160a01b031916738d306e255f3cdcafdf9e99abd4c6ceaf8d9bd9b61790553480156200005d57600080fd5b506040516200245e3803806200245e8339810160408190526200008091620002a4565b60408051808201825260128152712834bc32b6102237b7b236329025b7b733bd60711b60208083019182528351808501909452600384526250444b60e81b908401528151919291620000d591600091620001e8565b508051620000eb906001906020840190620001e8565b50505062000108620001026200011a60201b60201c565b6200011e565b620001138162000170565b50620003bd565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001cf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001e490600e906020840190620001e8565b5050565b828054620001f69062000380565b90600052602060002090601f0160209004810192826200021a576000855562000265565b82601f106200023557805160ff191683800117855562000265565b8280016001018555821562000265579182015b828111156200026557825182559160200191906001019062000248565b506200027392915062000277565b5090565b5b8082111562000273576000815560010162000278565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002b857600080fd5b82516001600160401b0380821115620002d057600080fd5b818501915085601f830112620002e557600080fd5b815181811115620002fa57620002fa6200028e565b604051601f8201601f19908116603f011681019083821181831017156200032557620003256200028e565b8160405282815288868487010111156200033e57600080fd5b600093505b8284101562000362578484018601518185018701529285019262000343565b82841115620003745760008684830101525b98975050505050505050565b600181811c908216806200039557607f821691505b60208210811415620003b757634e487b7160e01b600052602260045260246000fd5b50919050565b61209180620003cd6000396000f3fe6080604052600436106101f95760003560e01c80636c0360eb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd1461056a578063cfc86f7b1461058a578063d5abeb011461059f578063e985e9c5146105b5578063f2fde38b146105fe57600080fd5b806395d89b4114610502578063a0712d6814610517578063a22cb4651461052a578063b88d4fde1461054a57600080fd5b80637824407f116100dc5780637824407f1461048d5780637c928fe9146104a45780638545f4ea146104c45780638da5cb5b146104e457600080fd5b80636c0360eb146104235780636f8b44b01461043857806370a0823114610458578063715018a61461047857600080fd5b80633ccfd60b11610190578063547520fe1161015f578063547520fe1461039857806355f804b3146103b857806359c74f29146103d85780636352211e146103ed5780636817c76c1461040d57600080fd5b80633ccfd60b1461033357806342842e0e14610348578063471a429414610368578063475133341461038257600080fd5b8063095ea7b3116101cc578063095ea7b3146102b157806312cef27a146102d357806323b872dd146102f3578063375a069a1461031357600080fd5b806301f56997146101fe57806301ffc9a71461022757806306fdde0314610257578063081812fc14610279575b600080fd5b34801561020a57600080fd5b50610214600d5481565b6040519081526020015b60405180910390f35b34801561023357600080fd5b50610247610242366004611a9a565b61061e565b604051901515815260200161021e565b34801561026357600080fd5b5061026c610670565b60405161021e9190611b0f565b34801561028557600080fd5b50610299610294366004611b22565b610702565b6040516001600160a01b03909116815260200161021e565b3480156102bd57600080fd5b506102d16102cc366004611b57565b61079c565b005b3480156102df57600080fd5b50600f54610299906001600160a01b031681565b3480156102ff57600080fd5b506102d161030e366004611b81565b6108b2565b34801561031f57600080fd5b506102d161032e366004611b22565b6108e3565b34801561033f57600080fd5b506102d1610963565b34801561035457600080fd5b506102d1610363366004611b81565b610a06565b34801561037457600080fd5b506009546102479060ff1681565b34801561038e57600080fd5b50610214600b5481565b3480156103a457600080fd5b506102d16103b3366004611b22565b610a21565b3480156103c457600080fd5b506102d16103d3366004611c49565b610a50565b3480156103e457600080fd5b506102d1610a91565b3480156103f957600080fd5b50610299610408366004611b22565b610acf565b34801561041957600080fd5b50610214600c5481565b34801561042f57600080fd5b5061026c610b46565b34801561044457600080fd5b506102d1610453366004611b22565b610bd4565b34801561046457600080fd5b50610214610473366004611c92565b610c03565b34801561048457600080fd5b506102d1610c8a565b34801561049957600080fd5b506007546102149081565b3480156104b057600080fd5b506102d16104bf366004611b22565b610cc0565b3480156104d057600080fd5b506102d16104df366004611b22565b610e27565b3480156104f057600080fd5b506006546001600160a01b0316610299565b34801561050e57600080fd5b5061026c610e56565b6102d1610525366004611b22565b610e65565b34801561053657600080fd5b506102d1610545366004611cad565b611032565b34801561055657600080fd5b506102d1610565366004611ce9565b61103d565b34801561057657600080fd5b5061026c610585366004611b22565b611075565b34801561059657600080fd5b5061026c611150565b3480156105ab57600080fd5b50610214600a5481565b3480156105c157600080fd5b506102476105d0366004611d65565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060a57600080fd5b506102d1610619366004611c92565b61115d565b60006001600160e01b031982166380ac58cd60e01b148061064f57506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461067f90611d98565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90611d98565b80156106f85780601f106106cd576101008083540402835291602001916106f8565b820191906000526020600020905b8154815290600101906020018083116106db57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a782610acf565b9050806001600160a01b0316836001600160a01b031614156108155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610777565b336001600160a01b0382161480610831575061083181336105d0565b6108a35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610777565b6108ad83836111f8565b505050565b6108bc3382611266565b6108d85760405162461bcd60e51b815260040161077790611dd3565b6108ad83838361135d565b6006546001600160a01b0316331461090d5760405162461bcd60e51b815260040161077790611e24565b600061091860075490565b610923906001611e6f565b905060005b828110156108ad5761093e600780546001019055565b6109513361094c8385611e6f565b6114fd565b8061095b81611e87565b915050610928565b6006546001600160a01b0316331461098d5760405162461bcd60e51b815260040161077790611e24565b47600061099b600283611eb8565b604051909150339082156108fc029083906000818181858888f193505050501580156109cb573d6000803e3d6000fd5b50600f546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108ad573d6000803e3d6000fd5b6108ad8383836040518060200160405280600081525061103d565b6006546001600160a01b03163314610a4b5760405162461bcd60e51b815260040161077790611e24565b600d55565b6006546001600160a01b03163314610a7a5760405162461bcd60e51b815260040161077790611e24565b8051610a8d90600e9060208401906119eb565b5050565b6006546001600160a01b03163314610abb5760405162461bcd60e51b815260040161077790611e24565b6009805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b03168061066a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610777565b60088054610b5390611d98565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7f90611d98565b8015610bcc5780601f10610ba157610100808354040283529160200191610bcc565b820191906000526020600020905b815481529060010190602001808311610baf57829003601f168201915b505050505081565b6006546001600160a01b03163314610bfe5760405162461bcd60e51b815260040161077790611e24565b600a55565b60006001600160a01b038216610c6e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610777565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cb45760405162461bcd60e51b815260040161077790611e24565b610cbe6000611517565b565b60095460ff16610d075760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b6044820152606401610777565b60008111610d275760405162461bcd60e51b815260040161077790611ecc565b600d54811115610d715760405162461bcd60e51b81526020600482015260156024820152744d696e7420616d6f756e7420746f6f206c6172676560581b6044820152606401610777565b600b5481610d7e60075490565b610d889190611e6f565b1115610dd65760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e696e67006044820152606401610777565b6000610de160075490565b610dec906001611e6f565b905060005b828110156108ad57610e07600780546001019055565b610e153361094c8385611e6f565b80610e1f81611e87565b915050610df1565b6006546001600160a01b03163314610e515760405162461bcd60e51b815260040161077790611e24565b600c55565b60606001805461067f90611d98565b60095460ff16610eac5760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b6044820152606401610777565b60008111610ecc5760405162461bcd60e51b815260040161077790611ecc565b600d54811115610f165760405162461bcd60e51b81526020600482015260156024820152744d696e7420616d6f756e7420746f6f206c6172676560581b6044820152606401610777565b3481600c54610f259190611f20565b14610f725760405162461bcd60e51b815260206004820152601c60248201527f53656e74204554482076616c756520697320696e636f72726563742e000000006044820152606401610777565b600a5481610f7f60075490565b610f899190611e6f565b1115610fe15760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b6064820152608401610777565b6000610fec60075490565b610ff7906001611e6f565b905060005b828110156108ad57611012600780546001019055565b6110203361094c8385611e6f565b8061102a81611e87565b915050610ffc565b610a8d338383611569565b6110473383611266565b6110635760405162461bcd60e51b815260040161077790611dd3565b61106f84848484611638565b50505050565b6000818152600260205260409020546060906001600160a01b03166110f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b60006110fe61166b565b9050600081511161111e5760405180602001604052806000815250611149565b806111288461167a565b604051602001611139929190611f3f565b6040516020818303038152906040525b9392505050565b600e8054610b5390611d98565b6006546001600160a01b031633146111875760405162461bcd60e51b815260040161077790611e24565b6001600160a01b0381166111ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b6111f581611517565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122d82610acf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112df5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610777565b60006112ea83610acf565b9050806001600160a01b0316846001600160a01b031614806113255750836001600160a01b031661131a84610702565b6001600160a01b0316145b8061135557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661137082610acf565b6001600160a01b0316146113d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610777565b6001600160a01b03821661143a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610777565b6114456000826111f8565b6001600160a01b038316600090815260036020526040812080546001929061146e908490611f6e565b90915550506001600160a01b038216600090815260036020526040812080546001929061149c908490611e6f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a8d828260405180602001604052806000815250611778565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115cb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610777565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61164384848461135d565b61164f848484846117ab565b61106f5760405162461bcd60e51b815260040161077790611f85565b6060600e805461067f90611d98565b60608161169e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116c857806116b281611e87565b91506116c19050600a83611eb8565b91506116a2565b60008167ffffffffffffffff8111156116e3576116e3611bbd565b6040519080825280601f01601f19166020018201604052801561170d576020820181803683370190505b5090505b841561135557611722600183611f6e565b915061172f600a86611fd7565b61173a906030611e6f565b60f81b81838151811061174f5761174f611feb565b60200101906001600160f81b031916908160001a905350611771600a86611eb8565b9450611711565b61178283836118a9565b61178f60008484846117ab565b6108ad5760405162461bcd60e51b815260040161077790611f85565b60006001600160a01b0384163b1561189e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ef903390899088908890600401612001565b6020604051808303816000875af192505050801561182a575060408051601f3d908101601f191682019092526118279181019061203e565b60015b611884573d808015611858576040519150601f19603f3d011682016040523d82523d6000602084013e61185d565b606091505b50805161187c5760405162461bcd60e51b815260040161077790611f85565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611355565b506001949350505050565b6001600160a01b0382166118ff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610777565b6000818152600260205260409020546001600160a01b0316156119645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610777565b6001600160a01b038216600090815260036020526040812080546001929061198d908490611e6f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119f790611d98565b90600052602060002090601f016020900481019282611a195760008555611a5f565b82601f10611a3257805160ff1916838001178555611a5f565b82800160010185558215611a5f579182015b82811115611a5f578251825591602001919060010190611a44565b50611a6b929150611a6f565b5090565b5b80821115611a6b5760008155600101611a70565b6001600160e01b0319811681146111f557600080fd5b600060208284031215611aac57600080fd5b813561114981611a84565b60005b83811015611ad2578181015183820152602001611aba565b8381111561106f5750506000910152565b60008151808452611afb816020860160208601611ab7565b601f01601f19169290920160200192915050565b6020815260006111496020830184611ae3565b600060208284031215611b3457600080fd5b5035919050565b80356001600160a01b0381168114611b5257600080fd5b919050565b60008060408385031215611b6a57600080fd5b611b7383611b3b565b946020939093013593505050565b600080600060608486031215611b9657600080fd5b611b9f84611b3b565b9250611bad60208501611b3b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bee57611bee611bbd565b604051601f8501601f19908116603f01168101908282118183101715611c1657611c16611bbd565b81604052809350858152868686011115611c2f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5b57600080fd5b813567ffffffffffffffff811115611c7257600080fd5b8201601f81018413611c8357600080fd5b61135584823560208401611bd3565b600060208284031215611ca457600080fd5b61114982611b3b565b60008060408385031215611cc057600080fd5b611cc983611b3b565b915060208301358015158114611cde57600080fd5b809150509250929050565b60008060008060808587031215611cff57600080fd5b611d0885611b3b565b9350611d1660208601611b3b565b925060408501359150606085013567ffffffffffffffff811115611d3957600080fd5b8501601f81018713611d4a57600080fd5b611d5987823560208401611bd3565b91505092959194509250565b60008060408385031215611d7857600080fd5b611d8183611b3b565b9150611d8f60208401611b3b565b90509250929050565b600181811c90821680611dac57607f821691505b60208210811415611dcd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e8257611e82611e59565b500190565b6000600019821415611e9b57611e9b611e59565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ec757611ec7611ea2565b500490565b60208082526034908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373604082015273103a3430b71037b91032b8bab0b6103a3790181760611b606082015260800190565b6000816000190483118215151615611f3a57611f3a611e59565b500290565b60008351611f51818460208801611ab7565b835190830190611f65818360208801611ab7565b01949350505050565b600082821015611f8057611f80611e59565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082611fe657611fe6611ea2565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061203490830184611ae3565b9695505050505050565b60006020828403121561205057600080fd5b815161114981611a8456fea264697066735822122071a7d6dee546b84dc224519a9285db4114dfb7288b091e67f6caac3c37646e7c64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61755568756653706f6e59765a48376d6e46636644566f766d653159775a6e68516f3951317937475a6948352f00000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636c0360eb1161010d57806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd1461056a578063cfc86f7b1461058a578063d5abeb011461059f578063e985e9c5146105b5578063f2fde38b146105fe57600080fd5b806395d89b4114610502578063a0712d6814610517578063a22cb4651461052a578063b88d4fde1461054a57600080fd5b80637824407f116100dc5780637824407f1461048d5780637c928fe9146104a45780638545f4ea146104c45780638da5cb5b146104e457600080fd5b80636c0360eb146104235780636f8b44b01461043857806370a0823114610458578063715018a61461047857600080fd5b80633ccfd60b11610190578063547520fe1161015f578063547520fe1461039857806355f804b3146103b857806359c74f29146103d85780636352211e146103ed5780636817c76c1461040d57600080fd5b80633ccfd60b1461033357806342842e0e14610348578063471a429414610368578063475133341461038257600080fd5b8063095ea7b3116101cc578063095ea7b3146102b157806312cef27a146102d357806323b872dd146102f3578063375a069a1461031357600080fd5b806301f56997146101fe57806301ffc9a71461022757806306fdde0314610257578063081812fc14610279575b600080fd5b34801561020a57600080fd5b50610214600d5481565b6040519081526020015b60405180910390f35b34801561023357600080fd5b50610247610242366004611a9a565b61061e565b604051901515815260200161021e565b34801561026357600080fd5b5061026c610670565b60405161021e9190611b0f565b34801561028557600080fd5b50610299610294366004611b22565b610702565b6040516001600160a01b03909116815260200161021e565b3480156102bd57600080fd5b506102d16102cc366004611b57565b61079c565b005b3480156102df57600080fd5b50600f54610299906001600160a01b031681565b3480156102ff57600080fd5b506102d161030e366004611b81565b6108b2565b34801561031f57600080fd5b506102d161032e366004611b22565b6108e3565b34801561033f57600080fd5b506102d1610963565b34801561035457600080fd5b506102d1610363366004611b81565b610a06565b34801561037457600080fd5b506009546102479060ff1681565b34801561038e57600080fd5b50610214600b5481565b3480156103a457600080fd5b506102d16103b3366004611b22565b610a21565b3480156103c457600080fd5b506102d16103d3366004611c49565b610a50565b3480156103e457600080fd5b506102d1610a91565b3480156103f957600080fd5b50610299610408366004611b22565b610acf565b34801561041957600080fd5b50610214600c5481565b34801561042f57600080fd5b5061026c610b46565b34801561044457600080fd5b506102d1610453366004611b22565b610bd4565b34801561046457600080fd5b50610214610473366004611c92565b610c03565b34801561048457600080fd5b506102d1610c8a565b34801561049957600080fd5b506007546102149081565b3480156104b057600080fd5b506102d16104bf366004611b22565b610cc0565b3480156104d057600080fd5b506102d16104df366004611b22565b610e27565b3480156104f057600080fd5b506006546001600160a01b0316610299565b34801561050e57600080fd5b5061026c610e56565b6102d1610525366004611b22565b610e65565b34801561053657600080fd5b506102d1610545366004611cad565b611032565b34801561055657600080fd5b506102d1610565366004611ce9565b61103d565b34801561057657600080fd5b5061026c610585366004611b22565b611075565b34801561059657600080fd5b5061026c611150565b3480156105ab57600080fd5b50610214600a5481565b3480156105c157600080fd5b506102476105d0366004611d65565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561060a57600080fd5b506102d1610619366004611c92565b61115d565b60006001600160e01b031982166380ac58cd60e01b148061064f57506001600160e01b03198216635b5e139f60e01b145b8061066a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461067f90611d98565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90611d98565b80156106f85780601f106106cd576101008083540402835291602001916106f8565b820191906000526020600020905b8154815290600101906020018083116106db57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107a782610acf565b9050806001600160a01b0316836001600160a01b031614156108155760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610777565b336001600160a01b0382161480610831575061083181336105d0565b6108a35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610777565b6108ad83836111f8565b505050565b6108bc3382611266565b6108d85760405162461bcd60e51b815260040161077790611dd3565b6108ad83838361135d565b6006546001600160a01b0316331461090d5760405162461bcd60e51b815260040161077790611e24565b600061091860075490565b610923906001611e6f565b905060005b828110156108ad5761093e600780546001019055565b6109513361094c8385611e6f565b6114fd565b8061095b81611e87565b915050610928565b6006546001600160a01b0316331461098d5760405162461bcd60e51b815260040161077790611e24565b47600061099b600283611eb8565b604051909150339082156108fc029083906000818181858888f193505050501580156109cb573d6000803e3d6000fd5b50600f546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108ad573d6000803e3d6000fd5b6108ad8383836040518060200160405280600081525061103d565b6006546001600160a01b03163314610a4b5760405162461bcd60e51b815260040161077790611e24565b600d55565b6006546001600160a01b03163314610a7a5760405162461bcd60e51b815260040161077790611e24565b8051610a8d90600e9060208401906119eb565b5050565b6006546001600160a01b03163314610abb5760405162461bcd60e51b815260040161077790611e24565b6009805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b03168061066a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610777565b60088054610b5390611d98565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7f90611d98565b8015610bcc5780601f10610ba157610100808354040283529160200191610bcc565b820191906000526020600020905b815481529060010190602001808311610baf57829003601f168201915b505050505081565b6006546001600160a01b03163314610bfe5760405162461bcd60e51b815260040161077790611e24565b600a55565b60006001600160a01b038216610c6e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610777565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610cb45760405162461bcd60e51b815260040161077790611e24565b610cbe6000611517565b565b60095460ff16610d075760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b6044820152606401610777565b60008111610d275760405162461bcd60e51b815260040161077790611ecc565b600d54811115610d715760405162461bcd60e51b81526020600482015260156024820152744d696e7420616d6f756e7420746f6f206c6172676560581b6044820152606401610777565b600b5481610d7e60075490565b610d889190611e6f565b1115610dd65760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e696e67006044820152606401610777565b6000610de160075490565b610dec906001611e6f565b905060005b828110156108ad57610e07600780546001019055565b610e153361094c8385611e6f565b80610e1f81611e87565b915050610df1565b6006546001600160a01b03163314610e515760405162461bcd60e51b815260040161077790611e24565b600c55565b60606001805461067f90611d98565b60095460ff16610eac5760405162461bcd60e51b81526020600482015260126024820152714d696e74206973206e6f742061637469766560701b6044820152606401610777565b60008111610ecc5760405162461bcd60e51b815260040161077790611ecc565b600d54811115610f165760405162461bcd60e51b81526020600482015260156024820152744d696e7420616d6f756e7420746f6f206c6172676560581b6044820152606401610777565b3481600c54610f259190611f20565b14610f725760405162461bcd60e51b815260206004820152601c60248201527f53656e74204554482076616c756520697320696e636f72726563742e000000006044820152606401610777565b600a5481610f7f60075490565b610f899190611e6f565b1115610fe15760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152601760f91b6064820152608401610777565b6000610fec60075490565b610ff7906001611e6f565b905060005b828110156108ad57611012600780546001019055565b6110203361094c8385611e6f565b8061102a81611e87565b915050610ffc565b610a8d338383611569565b6110473383611266565b6110635760405162461bcd60e51b815260040161077790611dd3565b61106f84848484611638565b50505050565b6000818152600260205260409020546060906001600160a01b03166110f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610777565b60006110fe61166b565b9050600081511161111e5760405180602001604052806000815250611149565b806111288461167a565b604051602001611139929190611f3f565b6040516020818303038152906040525b9392505050565b600e8054610b5390611d98565b6006546001600160a01b031633146111875760405162461bcd60e51b815260040161077790611e24565b6001600160a01b0381166111ec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610777565b6111f581611517565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122d82610acf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112df5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610777565b60006112ea83610acf565b9050806001600160a01b0316846001600160a01b031614806113255750836001600160a01b031661131a84610702565b6001600160a01b0316145b8061135557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661137082610acf565b6001600160a01b0316146113d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610777565b6001600160a01b03821661143a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610777565b6114456000826111f8565b6001600160a01b038316600090815260036020526040812080546001929061146e908490611f6e565b90915550506001600160a01b038216600090815260036020526040812080546001929061149c908490611e6f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a8d828260405180602001604052806000815250611778565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115cb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610777565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61164384848461135d565b61164f848484846117ab565b61106f5760405162461bcd60e51b815260040161077790611f85565b6060600e805461067f90611d98565b60608161169e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116c857806116b281611e87565b91506116c19050600a83611eb8565b91506116a2565b60008167ffffffffffffffff8111156116e3576116e3611bbd565b6040519080825280601f01601f19166020018201604052801561170d576020820181803683370190505b5090505b841561135557611722600183611f6e565b915061172f600a86611fd7565b61173a906030611e6f565b60f81b81838151811061174f5761174f611feb565b60200101906001600160f81b031916908160001a905350611771600a86611eb8565b9450611711565b61178283836118a9565b61178f60008484846117ab565b6108ad5760405162461bcd60e51b815260040161077790611f85565b60006001600160a01b0384163b1561189e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ef903390899088908890600401612001565b6020604051808303816000875af192505050801561182a575060408051601f3d908101601f191682019092526118279181019061203e565b60015b611884573d808015611858576040519150601f19603f3d011682016040523d82523d6000602084013e61185d565b606091505b50805161187c5760405162461bcd60e51b815260040161077790611f85565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611355565b506001949350505050565b6001600160a01b0382166118ff5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610777565b6000818152600260205260409020546001600160a01b0316156119645760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610777565b6001600160a01b038216600090815260036020526040812080546001929061198d908490611e6f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546119f790611d98565b90600052602060002090601f016020900481019282611a195760008555611a5f565b82601f10611a3257805160ff1916838001178555611a5f565b82800160010185558215611a5f579182015b82811115611a5f578251825591602001919060010190611a44565b50611a6b929150611a6f565b5090565b5b80821115611a6b5760008155600101611a70565b6001600160e01b0319811681146111f557600080fd5b600060208284031215611aac57600080fd5b813561114981611a84565b60005b83811015611ad2578181015183820152602001611aba565b8381111561106f5750506000910152565b60008151808452611afb816020860160208601611ab7565b601f01601f19169290920160200192915050565b6020815260006111496020830184611ae3565b600060208284031215611b3457600080fd5b5035919050565b80356001600160a01b0381168114611b5257600080fd5b919050565b60008060408385031215611b6a57600080fd5b611b7383611b3b565b946020939093013593505050565b600080600060608486031215611b9657600080fd5b611b9f84611b3b565b9250611bad60208501611b3b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bee57611bee611bbd565b604051601f8501601f19908116603f01168101908282118183101715611c1657611c16611bbd565b81604052809350858152868686011115611c2f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c5b57600080fd5b813567ffffffffffffffff811115611c7257600080fd5b8201601f81018413611c8357600080fd5b61135584823560208401611bd3565b600060208284031215611ca457600080fd5b61114982611b3b565b60008060408385031215611cc057600080fd5b611cc983611b3b565b915060208301358015158114611cde57600080fd5b809150509250929050565b60008060008060808587031215611cff57600080fd5b611d0885611b3b565b9350611d1660208601611b3b565b925060408501359150606085013567ffffffffffffffff811115611d3957600080fd5b8501601f81018713611d4a57600080fd5b611d5987823560208401611bd3565b91505092959194509250565b60008060408385031215611d7857600080fd5b611d8183611b3b565b9150611d8f60208401611b3b565b90509250929050565b600181811c90821680611dac57607f821691505b60208210811415611dcd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e8257611e82611e59565b500190565b6000600019821415611e9b57611e9b611e59565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611ec757611ec7611ea2565b500490565b60208082526034908201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373604082015273103a3430b71037b91032b8bab0b6103a3790181760611b606082015260800190565b6000816000190483118215151615611f3a57611f3a611e59565b500290565b60008351611f51818460208801611ab7565b835190830190611f65818360208801611ab7565b01949350505050565b600082821015611f8057611f80611e59565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082611fe657611fe6611ea2565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061203490830184611ae3565b9695505050505050565b60006020828403121561205057600080fd5b815161114981611a8456fea264697066735822122071a7d6dee546b84dc224519a9285db4114dfb7288b091e67f6caac3c37646e7c64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61755568756653706f6e59765a48376d6e46636644566f766d653159775a6e68516f3951317937475a6948352f00000000000000000000

-----Decoded View---------------
Arg [0] : _initialBaseUri (string): ipfs://QmauUhufSponYvZH7mnFcfDVovme1YwZnhQo9Q1y7GZiH5/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d61755568756653706f6e59765a48376d6e46636644566f
Arg [3] : 766d653159775a6e68516f3951317937475a6948352f00000000000000000000


Deployed Bytecode Sourcemap

37725:3215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38077:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;38077:40:0;;;;;;;;25207:305;;;;;;;;;;-1:-1:-1;25207:305:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;25207:305:0;582:187:1;26152:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27711:221::-;;;;;;;;;;-1:-1:-1;27711:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;27711:221:0;1710:203:1;27234:411:0;;;;;;;;;;-1:-1:-1;27234:411:0;;;;;:::i;:::-;;:::i;:::-;;38160:72;;;;;;;;;;-1:-1:-1;38160:72:0;;;;-1:-1:-1;;;;;38160:72:0;;;28461:339;;;;;;;;;;-1:-1:-1;28461:339:0;;;;;:::i;:::-;;:::i;39319:272::-;;;;;;;;;;-1:-1:-1;39319:272:0;;;;;:::i;:::-;;:::i;39062:236::-;;;;;;;;;;;;;:::i;28871:185::-;;;;;;;;;;-1:-1:-1;28871:185:0;;;;;:::i;:::-;;:::i;37893:32::-;;;;;;;;;;-1:-1:-1;37893:32:0;;;;;;;;37972:35;;;;;;;;;;;;;;;;38733:110;;;;;;;;;;-1:-1:-1;38733:110:0;;;;;:::i;:::-;;:::i;38394:108::-;;;;;;;;;;-1:-1:-1;38394:108:0;;;;;:::i;:::-;;:::i;38963:91::-;;;;;;;;;;;;;:::i;25846:239::-;;;;;;;;;;-1:-1:-1;25846:239:0;;;;;:::i;:::-;;:::i;38014:44::-;;;;;;;;;;;;;;;;37863:21;;;;;;;;;;;;;:::i;38851:104::-;;;;;;;;;;-1:-1:-1;38851:104:0;;;;;:::i;:::-;;:::i;25576:208::-;;;;;;;;;;-1:-1:-1;25576:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;37819:35::-;;;;;;;;;;-1:-1:-1;37819:35:0;;;;;;39599:618;;;;;;;;;;-1:-1:-1;39599:618:0;;;;;:::i;:::-;;:::i;38624:101::-;;;;;;;;;;-1:-1:-1;38624:101:0;;;;;:::i;:::-;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;26321:104;;;;;;;;;;;;;:::i;40225:712::-;;;;;;:::i;:::-;;:::i;28004:155::-;;;;;;;;;;-1:-1:-1;28004:155:0;;;;;:::i;:::-;;:::i;29127:328::-;;;;;;;;;;-1:-1:-1;29127:328:0;;;;;:::i;:::-;;:::i;26496:334::-;;;;;;;;;;-1:-1:-1;26496:334:0;;;;;:::i;:::-;;:::i;38126:27::-;;;;;;;;;;;;;:::i;37934:31::-;;;;;;;;;;;;;;;;28230:164;;;;;;;;;;-1:-1:-1;28230:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28230:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25207:305::-;25309:4;-1:-1:-1;;;;;;25346:40:0;;-1:-1:-1;;;25346:40:0;;:105;;-1:-1:-1;;;;;;;25403:48:0;;-1:-1:-1;;;25403:48:0;25346:105;:158;;;-1:-1:-1;;;;;;;;;;18085:40:0;;;25468:36;25326:178;25207:305;-1:-1:-1;;25207:305:0:o;26152:100::-;26206:13;26239:5;26232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26152:100;:::o;27711:221::-;27787:7;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;27807:73;;;;-1:-1:-1;;;27807:73:0;;5980:2:1;27807:73:0;;;5962:21:1;6019:2;5999:18;;;5992:30;6058:34;6038:18;;;6031:62;-1:-1:-1;;;6109:18:1;;;6102:42;6161:19;;27807:73:0;;;;;;;;;-1:-1:-1;27900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27900:24:0;;27711:221::o;27234:411::-;27315:13;27331:23;27346:7;27331:14;:23::i;:::-;27315:39;;27379:5;-1:-1:-1;;;;;27373:11:0;:2;-1:-1:-1;;;;;27373:11:0;;;27365:57;;;;-1:-1:-1;;;27365:57:0;;6393:2:1;27365:57:0;;;6375:21:1;6432:2;6412:18;;;6405:30;6471:34;6451:18;;;6444:62;-1:-1:-1;;;6522:18:1;;;6515:31;6563:19;;27365:57:0;6191:397:1;27365:57:0;4348:10;-1:-1:-1;;;;;27457:21:0;;;;:62;;-1:-1:-1;27482:37:0;27499:5;4348:10;28230:164;:::i;27482:37::-;27435:168;;;;-1:-1:-1;;;27435:168:0;;6795:2:1;27435:168:0;;;6777:21:1;6834:2;6814:18;;;6807:30;6873:34;6853:18;;;6846:62;6944:26;6924:18;;;6917:54;6988:19;;27435:168:0;6593:420:1;27435:168:0;27616:21;27625:2;27629:7;27616:8;:21::i;:::-;27304:341;27234:411;;:::o;28461:339::-;28656:41;4348:10;28689:7;28656:18;:41::i;:::-;28648:103;;;;-1:-1:-1;;;28648:103:0;;;;;;;:::i;:::-;28764:28;28774:4;28780:2;28784:7;28764:9;:28::i;39319:272::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39388:14:::1;39405:21;:11;964:14:::0;;872:114;39405:21:::1;:25;::::0;39429:1:::1;39405:25;:::i;:::-;39388:42;;39446:9;39441:143;39465:14;39461:1;:18;39441:143;;;39501:23;:11;1083:19:::0;;1101:1;1083:19;;;994:127;39501:23:::1;39539:33;39549:10;39561;39570:1:::0;39561:6;:10:::1;:::i;:::-;39539:9;:33::i;:::-;39481:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39441:143;;39062:236:::0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39127:21:::1;39112:12;39177:9;39185:1;39127:21:::0;39177:9:::1;:::i;:::-;39197:40;::::0;39159:27;;-1:-1:-1;39205:10:0::1;::::0;39197:40;::::1;;;::::0;39159:27;;39197:40:::1;::::0;;;39159:27;39205:10;39197:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39256:12:0::1;::::0;39248:42:::1;::::0;-1:-1:-1;;;;;39256:12:0;;::::1;::::0;39248:42;::::1;;;::::0;39279:10;;39256:12:::1;39248:42:::0;39256:12;39248:42;39279:10;39256:12;39248:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;28871:185:::0;29009:39;29026:4;29032:2;29036:7;29009:39;;;;;;;;;;;;:16;:39::i;38733:110::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;38803:21:::1;:32:::0;38733:110::o;38394:108::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;38468:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38394:108:::0;:::o;38963:91::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;39034:12:::1;::::0;;-1:-1:-1;;39018:28:0;::::1;39034:12;::::0;;::::1;39033:13;39018:28;::::0;;38963:91::o;25846:239::-;25918:7;25954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25954:16:0;25989:19;25981:73;;;;-1:-1:-1;;;25981:73:0;;8661:2:1;25981:73:0;;;8643:21:1;8700:2;8680:18;;;8673:30;8739:34;8719:18;;;8712:62;-1:-1:-1;;;8790:18:1;;;8783:39;8839:19;;25981:73:0;8459:405:1;37863:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38851:104::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;38925:9:::1;:22:::0;38851:104::o;25576:208::-;25648:7;-1:-1:-1;;;;;25676:19:0;;25668:74;;;;-1:-1:-1;;;25668:74:0;;9071:2:1;25668:74:0;;;9053:21:1;9110:2;9090:18;;;9083:30;9149:34;9129:18;;;9122:62;-1:-1:-1;;;9200:18:1;;;9193:40;9250:19;;25668:74:0;8869:406:1;25668:74:0;-1:-1:-1;;;;;;25760:16:0;;;;;:9;:16;;;;;;;25576:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;39599:618::-;39669:12;;;;39661:43;;;;-1:-1:-1;;;39661:43:0;;9482:2:1;39661:43:0;;;9464:21:1;9521:2;9501:18;;;9494:30;-1:-1:-1;;;9540:18:1;;;9533:48;9598:18;;39661:43:0;9280:342:1;39661:43:0;39740:1;39723:14;:18;39715:83;;;;-1:-1:-1;;;39715:83:0;;;;;;;:::i;:::-;39835:21;;39817:14;:39;;39809:73;;;;-1:-1:-1;;;39809:73:0;;10250:2:1;39809:73:0;;;10232:21:1;10289:2;10269:18;;;10262:30;-1:-1:-1;;;10308:18:1;;;10301:51;10369:18;;39809:73:0;10048:345:1;39809:73:0;39944:13;;39926:14;39901:21;:11;964:14;;872:114;39901:21;:39;;;;:::i;:::-;:56;;39893:100;;;;-1:-1:-1;;;39893:100:0;;10600:2:1;39893:100:0;;;10582:21:1;10639:2;10619:18;;;10612:30;10678:33;10658:18;;;10651:61;10729:18;;39893:100:0;10398:355:1;39893:100:0;40014:14;40031:21;:11;964:14;;872:114;40031:21;:25;;40055:1;40031:25;:::i;:::-;40014:42;;40072:9;40067:143;40091:14;40087:1;:18;40067:143;;;40127:23;:11;1083:19;;1101:1;1083:19;;;994:127;40127:23;40165:33;40175:10;40187;40196:1;40187:6;:10;:::i;40165:33::-;40107:3;;;;:::i;:::-;;;;40067:143;;38624:101;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;38696:9:::1;:21:::0;38624:101::o;26321:104::-;26377:13;26410:7;26403:14;;;;;:::i;40225:712::-;40300:12;;;;40292:43;;;;-1:-1:-1;;;40292:43:0;;9482:2:1;40292:43:0;;;9464:21:1;9521:2;9501:18;;;9494:30;-1:-1:-1;;;9540:18:1;;;9533:48;9598:18;;40292:43:0;9280:342:1;40292:43:0;40371:1;40354:14;:18;40346:83;;;;-1:-1:-1;;;40346:83:0;;;;;;;:::i;:::-;40466:21;;40448:14;:39;;40440:73;;;;-1:-1:-1;;;40440:73:0;;10250:2:1;40440:73:0;;;10232:21:1;10289:2;10269:18;;;10262:30;-1:-1:-1;;;10308:18:1;;;10301:51;10369:18;;40440:73:0;10048:345:1;40440:73:0;40562:9;40544:14;40532:9;;:26;;;;:::i;:::-;:39;40524:80;;;;-1:-1:-1;;;40524:80:0;;11133:2:1;40524:80:0;;;11115:21:1;11172:2;11152:18;;;11145:30;11211;11191:18;;;11184:58;11259:18;;40524:80:0;10931:352:1;40524:80:0;40665:9;;40647:14;40623:21;:11;964:14;;872:114;40623:21;:38;;;;:::i;:::-;:51;;40615:97;;;;-1:-1:-1;;;40615:97:0;;11490:2:1;40615:97:0;;;11472:21:1;11529:2;11509:18;;;11502:30;11568:34;11548:18;;;11541:62;-1:-1:-1;;;11619:18:1;;;11612:31;11660:19;;40615:97:0;11288:397:1;40615:97:0;40733:14;40750:21;:11;964:14;;872:114;40750:21;:25;;40774:1;40750:25;:::i;:::-;40733:42;;40792:9;40787:143;40811:14;40807:1;:18;40787:143;;;40847:23;:11;1083:19;;1101:1;1083:19;;;994:127;40847:23;40885:33;40895:10;40907;40916:1;40907:6;:10;:::i;40885:33::-;40827:3;;;;:::i;:::-;;;;40787:143;;28004:155;28099:52;4348:10;28132:8;28142;28099:18;:52::i;29127:328::-;29302:41;4348:10;29335:7;29302:18;:41::i;:::-;29294:103;;;;-1:-1:-1;;;29294:103:0;;;;;;;:::i;:::-;29408:39;29422:4;29428:2;29432:7;29441:5;29408:13;:39::i;:::-;29127:328;;;;:::o;26496:334::-;31030:4;31054:16;;;:7;:16;;;;;;26569:13;;-1:-1:-1;;;;;31054:16:0;26595:76;;;;-1:-1:-1;;;26595:76:0;;11892:2:1;26595:76:0;;;11874:21:1;11931:2;11911:18;;;11904:30;11970:34;11950:18;;;11943:62;-1:-1:-1;;;12021:18:1;;;12014:45;12076:19;;26595:76:0;11690:411:1;26595:76:0;26684:21;26708:10;:8;:10::i;:::-;26684:34;;26760:1;26742:7;26736:21;:25;:86;;;;;;;;;;;;;;;;;26788:7;26797:18;:7;:16;:18::i;:::-;26771:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26736:86;26729:93;26496:334;-1:-1:-1;;;26496:334:0:o;38126:27::-;;;;;;;:::i;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;12783:2:1;6534:73:0::1;::::0;::::1;12765:21:1::0;12822:2;12802:18;;;12795:30;12861:34;12841:18;;;12834:62;-1:-1:-1;;;12912:18:1;;;12905:36;12958:19;;6534:73:0::1;12581:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;34947:174::-;35022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35022:29:0;-1:-1:-1;;;;;35022:29:0;;;;;;;;:24;;35076:23;35022:24;35076:14;:23::i;:::-;-1:-1:-1;;;;;35067:46:0;;;;;;;;;;;34947:174;;:::o;31259:348::-;31352:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;31369:73;;;;-1:-1:-1;;;31369:73:0;;13190:2:1;31369:73:0;;;13172:21:1;13229:2;13209:18;;;13202:30;13268:34;13248:18;;;13241:62;-1:-1:-1;;;13319:18:1;;;13312:42;13371:19;;31369:73:0;12988:408:1;31369:73:0;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31522:5;-1:-1:-1;;;;;31511:16:0;:7;-1:-1:-1;;;;;31511:16:0;;:51;;;;31555:7;-1:-1:-1;;;;;31531:31:0;:20;31543:7;31531:11;:20::i;:::-;-1:-1:-1;;;;;31531:31:0;;31511:51;:87;;;-1:-1:-1;;;;;;28351:25:0;;;28327:4;28351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31566:32;31503:96;31259:348;-1:-1:-1;;;;31259:348:0:o;34251:578::-;34410:4;-1:-1:-1;;;;;34383:31:0;:23;34398:7;34383:14;:23::i;:::-;-1:-1:-1;;;;;34383:31:0;;34375:85;;;;-1:-1:-1;;;34375:85:0;;13603:2:1;34375:85:0;;;13585:21:1;13642:2;13622:18;;;13615:30;13681:34;13661:18;;;13654:62;-1:-1:-1;;;13732:18:1;;;13725:39;13781:19;;34375:85:0;13401:405:1;34375:85:0;-1:-1:-1;;;;;34479:16:0;;34471:65;;;;-1:-1:-1;;;34471:65:0;;14013:2:1;34471:65:0;;;13995:21:1;14052:2;14032:18;;;14025:30;14091:34;14071:18;;;14064:62;-1:-1:-1;;;14142:18:1;;;14135:34;14186:19;;34471:65:0;13811:400:1;34471:65:0;34653:29;34670:1;34674:7;34653:8;:29::i;:::-;-1:-1:-1;;;;;34695:15:0;;;;;;:9;:15;;;;;:20;;34714:1;;34695:15;:20;;34714:1;;34695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34726:13:0;;;;;;:9;:13;;;;;:18;;34743:1;;34726:13;:18;;34743:1;;34726:18;:::i;:::-;;;;-1:-1:-1;;34755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34755:21:0;-1:-1:-1;;;;;34755:21:0;;;;;;;;;34794:27;;34755:16;;34794:27;;;;;;;34251:578;;;:::o;31949:110::-;32025:26;32035:2;32039:7;32025:26;;;;;;;;;;;;:9;:26::i;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35263:315::-;35418:8;-1:-1:-1;;;;;35409:17:0;:5;-1:-1:-1;;;;;35409:17:0;;;35401:55;;;;-1:-1:-1;;;35401:55:0;;14548:2:1;35401:55:0;;;14530:21:1;14587:2;14567:18;;;14560:30;14626:27;14606:18;;;14599:55;14671:18;;35401:55:0;14346:349:1;35401:55:0;-1:-1:-1;;;;;35467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35467:46:0;;;;;;;;;;35529:41;;722::1;;;35529::0;;695:18:1;35529:41:0;;;;;;;35263:315;;;:::o;30337:::-;30494:28;30504:4;30510:2;30514:7;30494:9;:28::i;:::-;30541:48;30564:4;30570:2;30574:7;30583:5;30541:22;:48::i;:::-;30533:111;;;;-1:-1:-1;;;30533:111:0;;;;;;;:::i;38510:106::-;38562:13;38595;38588:20;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32286:321;32416:18;32422:2;32426:7;32416:5;:18::i;:::-;32467:54;32498:1;32502:2;32506:7;32515:5;32467:22;:54::i;:::-;32445:154;;;;-1:-1:-1;;;32445:154:0;;;;;;;:::i;36143:799::-;36298:4;-1:-1:-1;;;;;36319:13:0;;8155:20;8203:8;36315:620;;36355:72;;-1:-1:-1;;;36355:72:0;;-1:-1:-1;;;;;36355:36:0;;;;;:72;;4348:10;;36406:4;;36412:7;;36421:5;;36355:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36355:72:0;;;;;;;;-1:-1:-1;;36355:72:0;;;;;;;;;;;;:::i;:::-;;;36351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36597:13:0;;36593:272;;36640:60;;-1:-1:-1;;;36640:60:0;;;;;;;:::i;36593:272::-;36815:6;36809:13;36800:6;36796:2;36792:15;36785:38;36351:529;-1:-1:-1;;;;;;36478:51:0;-1:-1:-1;;;36478:51:0;;-1:-1:-1;36471:58:0;;36315:620;-1:-1:-1;36919:4:0;36143:799;;;;;;:::o;32943:382::-;-1:-1:-1;;;;;33023:16:0;;33015:61;;;;-1:-1:-1;;;33015:61:0;;16318:2:1;33015:61:0;;;16300:21:1;;;16337:18;;;16330:30;16396:34;16376:18;;;16369:62;16448:18;;33015:61:0;16116:356:1;33015:61:0;31030:4;31054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31054:16:0;:30;33087:58;;;;-1:-1:-1;;;33087:58:0;;16679:2:1;33087:58:0;;;16661:21:1;16718:2;16698:18;;;16691:30;16757;16737:18;;;16730:58;16805:18;;33087:58:0;16477:352:1;33087:58:0;-1:-1:-1;;;;;33216:13:0;;;;;;:9;:13;;;;;:18;;33233:1;;33216:13;:18;;33233:1;;33216:18;:::i;:::-;;;;-1:-1:-1;;33245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33245:21:0;-1:-1:-1;;;;;33245:21:0;;;;;;;;33284:33;;33245:16;;;33284:33;;33245:16;;33284:33;32943:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;7018:413::-;7220:2;7202:21;;;7259:2;7239:18;;;7232:30;7298:34;7293:2;7278:18;;7271:62;-1:-1:-1;;;7364:2:1;7349:18;;7342:47;7421:3;7406:19;;7018:413::o;7436:356::-;7638:2;7620:21;;;7657:18;;;7650:30;7716:34;7711:2;7696:18;;7689:62;7783:2;7768:18;;7436:356::o;7797:127::-;7858:10;7853:3;7849:20;7846:1;7839:31;7889:4;7886:1;7879:15;7913:4;7910:1;7903:15;7929:128;7969:3;8000:1;7996:6;7993:1;7990:13;7987:39;;;8006:18;;:::i;:::-;-1:-1:-1;8042:9:1;;7929:128::o;8062:135::-;8101:3;-1:-1:-1;;8122:17:1;;8119:43;;;8142:18;;:::i;:::-;-1:-1:-1;8189:1:1;8178:13;;8062:135::o;8202:127::-;8263:10;8258:3;8254:20;8251:1;8244:31;8294:4;8291:1;8284:15;8318:4;8315:1;8308:15;8334:120;8374:1;8400;8390:35;;8405:18;;:::i;:::-;-1:-1:-1;8439:9:1;;8334:120::o;9627:416::-;9829:2;9811:21;;;9868:2;9848:18;;;9841:30;9907:34;9902:2;9887:18;;9880:62;-1:-1:-1;;;9973:2:1;9958:18;;9951:50;10033:3;10018:19;;9627:416::o;10758:168::-;10798:7;10864:1;10860;10856:6;10852:14;10849:1;10846:21;10841:1;10834:9;10827:17;10823:45;10820:71;;;10871:18;;:::i;:::-;-1:-1:-1;10911:9:1;;10758:168::o;12106:470::-;12285:3;12323:6;12317:13;12339:53;12385:6;12380:3;12373:4;12365:6;12361:17;12339:53;:::i;:::-;12455:13;;12414:16;;;;12477:57;12455:13;12414:16;12511:4;12499:17;;12477:57;:::i;:::-;12550:20;;12106:470;-1:-1:-1;;;;12106:470:1:o;14216:125::-;14256:4;14284:1;14281;14278:8;14275:34;;;14289:18;;:::i;:::-;-1:-1:-1;14326:9:1;;14216:125::o;14700:414::-;14902:2;14884:21;;;14941:2;14921:18;;;14914:30;14980:34;14975:2;14960:18;;14953:62;-1:-1:-1;;;15046:2:1;15031:18;;15024:48;15104:3;15089:19;;14700:414::o;15119:112::-;15151:1;15177;15167:35;;15182:18;;:::i;:::-;-1:-1:-1;15216:9:1;;15119:112::o;15236:127::-;15297:10;15292:3;15288:20;15285:1;15278:31;15328:4;15325:1;15318:15;15352:4;15349:1;15342:15;15368:489;-1:-1:-1;;;;;15637:15:1;;;15619:34;;15689:15;;15684:2;15669:18;;15662:43;15736:2;15721:18;;15714:34;;;15784:3;15779:2;15764:18;;15757:31;;;15562:4;;15805:46;;15831:19;;15823:6;15805:46;:::i;:::-;15797:54;15368:489;-1:-1:-1;;;;;;15368:489:1:o;15862:249::-;15931:6;15984:2;15972:9;15963:7;15959:23;15955:32;15952:52;;;16000:1;15997;15990:12;15952:52;16032:9;16026:16;16051:30;16075:5;16051:30;:::i

Swarm Source

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