ETH Price: $2,599.96 (-2.27%)
Gas: 1 Gwei

Token

DigiDogsNFT (DDN)
 

Overview

Max Total Supply

0 DDN

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DDN
0x51E538632AC132E69464162c649BAc8627fC9908
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:
DigiDogsNFT

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-22
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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

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

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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/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

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

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

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

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

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

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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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 {}
}

pragma solidity ^0.8.5;

contract DigiDogsNFT is ERC721, Ownable {
    using Strings for uint256;
    uint256 public cost = 0.069 ether;
    uint256 public maxSupply = 8888;
    uint256 public maxMintAmount = 5;
    uint256 public tokenCount = 0;
    bool public paused = false;
    bool public reveal;
    string public baseURI;
    string public notRevealedUri;

    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _initBaseURI, string memory _initNotRevealedUri)
        ERC721("DigiDogsNFT", "DDN")
    {
        baseURI = _initBaseURI;
        notRevealedUri = _initNotRevealedUri;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (reveal) {
            return
                bytes(baseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            baseURI,
                            "/",
                            tokenId.toString(),
                            ".json"
                        )
                    )
                    : "";
        } else {
            return bytes(notRevealedUri).length > 0 ? notRevealedUri : "";
        }
    }

    function mint(uint256 _amount) external payable {
        require(!paused, "DigiDogsNFT - The Contract is Paused");
        require(
            tokenCount + _amount <= maxSupply,
            "DigiDogsNFT - max NFT limit exceeded"
        );
        if (msg.sender != owner()) {
            require(
                _amount <= maxMintAmount,
                "DigiDogsNFT - max mint amount limit exceeded"
            );
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(
                ownerMintedCount + _amount <= maxMintAmount,
                "DigiDogsNFT - max NFT per address exceeded"
            );
            require(
                msg.value >= cost * _amount,
                "DigiDogsNFT - insufficient ethers"
            );
        }
        for (uint256 i = 1; i <= _amount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, ++tokenCount);
        }
    }

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

    function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
        maxMintAmount = _maxMintAmount;
    }

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

    function burn(uint256 tokenId) public {
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "DigiDogsNFT - Only token owner can burn."
        );
        _burn(tokenId);
    }

    function pause() public onlyOwner {
        paused = !paused;
    }

    function revealNFT() external onlyOwner {
        reveal = !reveal;
    }

    function withdraw() public onlyOwner {
        uint256 amount = address(this).balance;
        (bool os1, ) = payable(0xEAa13156a5D2651832164EcC8302C40fD2C401A1).call{
            value: (amount * 3) / 100
        }("");
        require(os1);
        (bool os2, ) = payable(0xF85bc06ec8018F672d619aB35Ed3f574A2B23C7c).call{
            value: (amount * 17) / 100
        }("");
        require(os2);
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

608060405266f52322698080006007556122b860085560056009556000600a55600b805460ff191690553480156200003657600080fd5b50604051620025fa380380620025fa8339810160408190526200005991620002d7565b604080518082018252600b81526a111a59da511bd9dcd3919560aa1b60208083019182528351808501909452600384526222222760e91b908401528151919291620000a79160009162000164565b508051620000bd90600190602084019062000164565b505050620000da620000d46200010e60201b60201c565b62000112565b8151620000ef90600c90602085019062000164565b5080516200010590600d90602084019062000164565b5050506200037e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001729062000341565b90600052602060002090601f016020900481019282620001965760008555620001e1565b82601f10620001b157805160ff1916838001178555620001e1565b82800160010185558215620001e1579182015b82811115620001e1578251825591602001919060010190620001c4565b50620001ef929150620001f3565b5090565b5b80821115620001ef5760008155600101620001f4565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200023257600080fd5b81516001600160401b03808211156200024f576200024f6200020a565b604051601f8301601f19908116603f011681019082821181831017156200027a576200027a6200020a565b816040528381526020925086838588010111156200029757600080fd5b600091505b83821015620002bb57858201830151818301840152908201906200029c565b83821115620002cd5760008385830101525b9695505050505050565b60008060408385031215620002eb57600080fd5b82516001600160401b03808211156200030357600080fd5b620003118683870162000220565b935060208501519150808211156200032857600080fd5b50620003378582860162000220565b9150509250929050565b600181811c908216806200035657607f821691505b602082108114156200037857634e487b7160e01b600052602260045260246000fd5b50919050565b61226c806200038e6000396000f3fe6080604052600436106101ee5760003560e01c80635c975abb1161010d5780639f181b5e116100a0578063b88d4fde1161006f578063b88d4fde1461053e578063c87b56dd1461055e578063d5abeb011461057e578063e985e9c514610594578063f2fde38b146105dd57600080fd5b80639f181b5e146104d6578063a0712d68146104ec578063a22cb465146104ff578063a475b5dd1461051f57600080fd5b8063715018a6116100dc578063715018a6146104795780638456cb591461048e5780638da5cb5b146104a357806395d89b41146104c157600080fd5b80635c975abb1461040a5780636352211e146104245780636c0360eb1461044457806370a082311461045957600080fd5b806318cae2691161018557806342842e0e1161015457806342842e0e1461038a57806342966c68146103aa57806344a0d68a146103ca57806355f804b3146103ea57600080fd5b806318cae26914610312578063239c70ae1461033f57806323b872dd146103555780633ccfd60b1461037557600080fd5b8063081c8c44116101c1578063081c8c4414610299578063088a4ed0146102ae578063095ea7b3146102ce57806313faede6146102ee57600080fd5b806301ffc9a7146101f357806304b4bba91461022857806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c0f565b6105fd565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064f565b005b34801561024b57600080fd5b5061025461069f565b60405161021f9190611c8b565b34801561026d57600080fd5b5061028161027c366004611c9e565b610731565b6040516001600160a01b03909116815260200161021f565b3480156102a557600080fd5b506102546107c6565b3480156102ba57600080fd5b5061023d6102c9366004611c9e565b610854565b3480156102da57600080fd5b5061023d6102e9366004611cce565b610883565b3480156102fa57600080fd5b5061030460075481565b60405190815260200161021f565b34801561031e57600080fd5b5061030461032d366004611cf8565b600e6020526000908152604090205481565b34801561034b57600080fd5b5061030460095481565b34801561036157600080fd5b5061023d610370366004611d13565b610999565b34801561038157600080fd5b5061023d6109ca565b34801561039657600080fd5b5061023d6103a5366004611d13565b610b66565b3480156103b657600080fd5b5061023d6103c5366004611c9e565b610b81565b3480156103d657600080fd5b5061023d6103e5366004611c9e565b610bf4565b3480156103f657600080fd5b5061023d610405366004611ddb565b610c23565b34801561041657600080fd5b50600b546102139060ff1681565b34801561043057600080fd5b5061028161043f366004611c9e565b610c64565b34801561045057600080fd5b50610254610cdb565b34801561046557600080fd5b50610304610474366004611cf8565b610ce8565b34801561048557600080fd5b5061023d610d6f565b34801561049a57600080fd5b5061023d610da5565b3480156104af57600080fd5b506006546001600160a01b0316610281565b3480156104cd57600080fd5b50610254610de3565b3480156104e257600080fd5b50610304600a5481565b61023d6104fa366004611c9e565b610df2565b34801561050b57600080fd5b5061023d61051a366004611e24565b611075565b34801561052b57600080fd5b50600b5461021390610100900460ff1681565b34801561054a57600080fd5b5061023d610559366004611e60565b61113a565b34801561056a57600080fd5b50610254610579366004611c9e565b61116c565b34801561058a57600080fd5b5061030460085481565b3480156105a057600080fd5b506102136105af366004611edc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105e957600080fd5b5061023d6105f8366004611cf8565b611318565b60006001600160e01b031982166380ac58cd60e01b148061062e57506001600160e01b03198216635b5e139f60e01b145b8061064957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106825760405162461bcd60e51b815260040161067990611f0f565b60405180910390fd5b600b805461ff001981166101009182900460ff1615909102179055565b6060600080546106ae90611f44565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90611f44565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610679565b506000908152600460205260409020546001600160a01b031690565b600d80546107d390611f44565b80601f01602080910402602001604051908101604052809291908181526020018280546107ff90611f44565b801561084c5780601f106108215761010080835404028352916020019161084c565b820191906000526020600020905b81548152906001019060200180831161082f57829003601f168201915b505050505081565b6006546001600160a01b0316331461087e5760405162461bcd60e51b815260040161067990611f0f565b600955565b600061088e82610c64565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610679565b336001600160a01b0382161480610918575061091881336105af565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610679565b61099483836113b0565b505050565b6109a3338261141e565b6109bf5760405162461bcd60e51b815260040161067990611f7f565b610994838383611515565b6006546001600160a01b031633146109f45760405162461bcd60e51b815260040161067990611f0f565b47600073eaa13156a5d2651832164ecc8302c40fd2c401a16064610a19846003611fe6565b610a23919061201b565b604051600081818185875af1925050503d8060008114610a5f576040519150601f19603f3d011682016040523d82523d6000602084013e610a64565b606091505b5050905080610a7257600080fd5b600073f85bc06ec8018f672d619ab35ed3f574a2b23c7c6064610a96856011611fe6565b610aa0919061201b565b604051600081818185875af1925050503d8060008114610adc576040519150601f19603f3d011682016040523d82523d6000602084013e610ae1565b606091505b5050905080610aef57600080fd5b6000610b036006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b4d576040519150601f19603f3d011682016040523d82523d6000602084013e610b52565b606091505b5050905080610b6057600080fd5b50505050565b6109948383836040518060200160405280600081525061113a565b610b8b338261141e565b610be85760405162461bcd60e51b815260206004820152602860248201527f44696769446f67734e4654202d204f6e6c7920746f6b656e206f776e6572206360448201526730b710313ab9371760c11b6064820152608401610679565b610bf1816116b5565b50565b6006546001600160a01b03163314610c1e5760405162461bcd60e51b815260040161067990611f0f565b600755565b6006546001600160a01b03163314610c4d5760405162461bcd60e51b815260040161067990611f0f565b8051610c6090600c906020840190611b60565b5050565b6000818152600260205260408120546001600160a01b0316806106495760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610679565b600c80546107d390611f44565b60006001600160a01b038216610d535760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610679565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d995760405162461bcd60e51b815260040161067990611f0f565b610da36000611750565b565b6006546001600160a01b03163314610dcf5760405162461bcd60e51b815260040161067990611f0f565b600b805460ff19811660ff90911615179055565b6060600180546106ae90611f44565b600b5460ff1615610e515760405162461bcd60e51b8152602060048201526024808201527f44696769446f67734e4654202d2054686520436f6e74726163742069732050616044820152631d5cd95960e21b6064820152608401610679565b60085481600a54610e62919061202f565b1115610ebc5760405162461bcd60e51b8152602060048201526024808201527f44696769446f67734e4654202d206d6178204e4654206c696d697420657863656044820152631959195960e21b6064820152608401610679565b6006546001600160a01b0316331461101c57600954811115610f355760405162461bcd60e51b815260206004820152602c60248201527f44696769446f67734e4654202d206d6178206d696e7420616d6f756e74206c6960448201526b1b5a5d08195e18d95959195960a21b6064820152608401610679565b336000908152600e6020526040902054600954610f52838361202f565b1115610fb35760405162461bcd60e51b815260206004820152602a60248201527f44696769446f67734e4654202d206d6178204e465420706572206164647265736044820152691cc8195e18d95959195960b21b6064820152608401610679565b81600754610fc19190611fe6565b34101561101a5760405162461bcd60e51b815260206004820152602160248201527f44696769446f67734e4654202d20696e73756666696369656e742065746865726044820152607360f81b6064820152608401610679565b505b60015b818111610c6057336000908152600e6020526040812080549161104183612047565b919050555061106333600a6000815461105990612047565b91829055506117a2565b8061106d81612047565b91505061101f565b6001600160a01b0382163314156110ce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610679565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611144338361141e565b6111605760405162461bcd60e51b815260040161067990611f7f565b610b60848484846117bc565b6000818152600260205260409020546060906001600160a01b03166111eb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610679565b600b54610100900460ff1615611257576000600c805461120a90611f44565b9050116112265760405180602001604052806000815250610649565b600c611231836117ef565b60405160200161124292919061207e565b60405160208183030381529060405292915050565b6000600d805461126690611f44565b9050116112825760405180602001604052806000815250610649565b600d805461128f90611f44565b80601f01602080910402602001604051908101604052809291908181526020018280546112bb90611f44565b80156113085780601f106112dd57610100808354040283529160200191611308565b820191906000526020600020905b8154815290600101906020018083116112eb57829003601f168201915b505050505092915050565b919050565b6006546001600160a01b031633146113425760405162461bcd60e51b815260040161067990611f0f565b6001600160a01b0381166113a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610679565b610bf181611750565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113e582610c64565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610679565b60006114a283610c64565b9050806001600160a01b0316846001600160a01b031614806114dd5750836001600160a01b03166114d284610731565b6001600160a01b0316145b8061150d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661152882610c64565b6001600160a01b0316146115905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610679565b6001600160a01b0382166115f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610679565b6115fd6000826113b0565b6001600160a01b0383166000908152600360205260408120805460019290611626908490612149565b90915550506001600160a01b038216600090815260036020526040812080546001929061165490849061202f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006116c082610c64565b90506116cd6000836113b0565b6001600160a01b03811660009081526003602052604081208054600192906116f6908490612149565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c608282604051806020016040528060008152506118ed565b6117c7848484611515565b6117d384848484611920565b610b605760405162461bcd60e51b815260040161067990612160565b6060816118135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561183d578061182781612047565b91506118369050600a8361201b565b9150611817565b60008167ffffffffffffffff81111561185857611858611d4f565b6040519080825280601f01601f191660200182016040528015611882576020820181803683370190505b5090505b841561150d57611897600183612149565b91506118a4600a866121b2565b6118af90603061202f565b60f81b8183815181106118c4576118c46121c6565b60200101906001600160f81b031916908160001a9053506118e6600a8661201b565b9450611886565b6118f78383611a1e565b6119046000848484611920565b6109945760405162461bcd60e51b815260040161067990612160565b60006001600160a01b0384163b15611a1357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119649033908990889088906004016121dc565b6020604051808303816000875af192505050801561199f575060408051601f3d908101601f1916820190925261199c91810190612219565b60015b6119f9573d8080156119cd576040519150601f19603f3d011682016040523d82523d6000602084013e6119d2565b606091505b5080516119f15760405162461bcd60e51b815260040161067990612160565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150d565b506001949350505050565b6001600160a01b038216611a745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610679565b6000818152600260205260409020546001600160a01b031615611ad95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610679565b6001600160a01b0382166000908152600360205260408120805460019290611b0290849061202f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b6c90611f44565b90600052602060002090601f016020900481019282611b8e5760008555611bd4565b82601f10611ba757805160ff1916838001178555611bd4565b82800160010185558215611bd4579182015b82811115611bd4578251825591602001919060010190611bb9565b50611be0929150611be4565b5090565b5b80821115611be05760008155600101611be5565b6001600160e01b031981168114610bf157600080fd5b600060208284031215611c2157600080fd5b8135611c2c81611bf9565b9392505050565b60005b83811015611c4e578181015183820152602001611c36565b83811115610b605750506000910152565b60008151808452611c77816020860160208601611c33565b601f01601f19169290920160200192915050565b602081526000611c2c6020830184611c5f565b600060208284031215611cb057600080fd5b5035919050565b80356001600160a01b038116811461131357600080fd5b60008060408385031215611ce157600080fd5b611cea83611cb7565b946020939093013593505050565b600060208284031215611d0a57600080fd5b611c2c82611cb7565b600080600060608486031215611d2857600080fd5b611d3184611cb7565b9250611d3f60208501611cb7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d8057611d80611d4f565b604051601f8501601f19908116603f01168101908282118183101715611da857611da8611d4f565b81604052809350858152868686011115611dc157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ded57600080fd5b813567ffffffffffffffff811115611e0457600080fd5b8201601f81018413611e1557600080fd5b61150d84823560208401611d65565b60008060408385031215611e3757600080fd5b611e4083611cb7565b915060208301358015158114611e5557600080fd5b809150509250929050565b60008060008060808587031215611e7657600080fd5b611e7f85611cb7565b9350611e8d60208601611cb7565b925060408501359150606085013567ffffffffffffffff811115611eb057600080fd5b8501601f81018713611ec157600080fd5b611ed087823560208401611d65565b91505092959194509250565b60008060408385031215611eef57600080fd5b611ef883611cb7565b9150611f0660208401611cb7565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f5857607f821691505b60208210811415611f7957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561200057612000611fd0565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261202a5761202a612005565b500490565b6000821982111561204257612042611fd0565b500190565b600060001982141561205b5761205b611fd0565b5060010190565b60008151612074818560208601611c33565b9290920192915050565b600080845481600182811c91508083168061209a57607f831692505b60208084108214156120ba57634e487b7160e01b86526022600452602486fd5b8180156120ce57600181146120df5761210c565b60ff1986168952848901965061210c565b60008b81526020902060005b868110156121045781548b8201529085019083016120eb565b505084890196505b50505050505061214061212f61212983602f60f81b815260010190565b86612062565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561215b5761215b611fd0565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826121c1576121c1612005565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220f90830184611c5f565b9695505050505050565b60006020828403121561222b57600080fd5b8151611c2c81611bf956fea2646970667358221220748f0fdd444f678cdee6fe55d624459089898a184d03c004e978830a3feadab564736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d634a6577583355365338384c4b396d455244684d52346b397063554c4d6d3163466a624367654d6f5568344200000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d534e54374751534d4773644d4d42364e736445317258526a6e6362364c476947764b513443393445554779530000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80635c975abb1161010d5780639f181b5e116100a0578063b88d4fde1161006f578063b88d4fde1461053e578063c87b56dd1461055e578063d5abeb011461057e578063e985e9c514610594578063f2fde38b146105dd57600080fd5b80639f181b5e146104d6578063a0712d68146104ec578063a22cb465146104ff578063a475b5dd1461051f57600080fd5b8063715018a6116100dc578063715018a6146104795780638456cb591461048e5780638da5cb5b146104a357806395d89b41146104c157600080fd5b80635c975abb1461040a5780636352211e146104245780636c0360eb1461044457806370a082311461045957600080fd5b806318cae2691161018557806342842e0e1161015457806342842e0e1461038a57806342966c68146103aa57806344a0d68a146103ca57806355f804b3146103ea57600080fd5b806318cae26914610312578063239c70ae1461033f57806323b872dd146103555780633ccfd60b1461037557600080fd5b8063081c8c44116101c1578063081c8c4414610299578063088a4ed0146102ae578063095ea7b3146102ce57806313faede6146102ee57600080fd5b806301ffc9a7146101f357806304b4bba91461022857806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c0f565b6105fd565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064f565b005b34801561024b57600080fd5b5061025461069f565b60405161021f9190611c8b565b34801561026d57600080fd5b5061028161027c366004611c9e565b610731565b6040516001600160a01b03909116815260200161021f565b3480156102a557600080fd5b506102546107c6565b3480156102ba57600080fd5b5061023d6102c9366004611c9e565b610854565b3480156102da57600080fd5b5061023d6102e9366004611cce565b610883565b3480156102fa57600080fd5b5061030460075481565b60405190815260200161021f565b34801561031e57600080fd5b5061030461032d366004611cf8565b600e6020526000908152604090205481565b34801561034b57600080fd5b5061030460095481565b34801561036157600080fd5b5061023d610370366004611d13565b610999565b34801561038157600080fd5b5061023d6109ca565b34801561039657600080fd5b5061023d6103a5366004611d13565b610b66565b3480156103b657600080fd5b5061023d6103c5366004611c9e565b610b81565b3480156103d657600080fd5b5061023d6103e5366004611c9e565b610bf4565b3480156103f657600080fd5b5061023d610405366004611ddb565b610c23565b34801561041657600080fd5b50600b546102139060ff1681565b34801561043057600080fd5b5061028161043f366004611c9e565b610c64565b34801561045057600080fd5b50610254610cdb565b34801561046557600080fd5b50610304610474366004611cf8565b610ce8565b34801561048557600080fd5b5061023d610d6f565b34801561049a57600080fd5b5061023d610da5565b3480156104af57600080fd5b506006546001600160a01b0316610281565b3480156104cd57600080fd5b50610254610de3565b3480156104e257600080fd5b50610304600a5481565b61023d6104fa366004611c9e565b610df2565b34801561050b57600080fd5b5061023d61051a366004611e24565b611075565b34801561052b57600080fd5b50600b5461021390610100900460ff1681565b34801561054a57600080fd5b5061023d610559366004611e60565b61113a565b34801561056a57600080fd5b50610254610579366004611c9e565b61116c565b34801561058a57600080fd5b5061030460085481565b3480156105a057600080fd5b506102136105af366004611edc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105e957600080fd5b5061023d6105f8366004611cf8565b611318565b60006001600160e01b031982166380ac58cd60e01b148061062e57506001600160e01b03198216635b5e139f60e01b145b8061064957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106825760405162461bcd60e51b815260040161067990611f0f565b60405180910390fd5b600b805461ff001981166101009182900460ff1615909102179055565b6060600080546106ae90611f44565b80601f01602080910402602001604051908101604052809291908181526020018280546106da90611f44565b80156107275780601f106106fc57610100808354040283529160200191610727565b820191906000526020600020905b81548152906001019060200180831161070a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610679565b506000908152600460205260409020546001600160a01b031690565b600d80546107d390611f44565b80601f01602080910402602001604051908101604052809291908181526020018280546107ff90611f44565b801561084c5780601f106108215761010080835404028352916020019161084c565b820191906000526020600020905b81548152906001019060200180831161082f57829003601f168201915b505050505081565b6006546001600160a01b0316331461087e5760405162461bcd60e51b815260040161067990611f0f565b600955565b600061088e82610c64565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610679565b336001600160a01b0382161480610918575061091881336105af565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610679565b61099483836113b0565b505050565b6109a3338261141e565b6109bf5760405162461bcd60e51b815260040161067990611f7f565b610994838383611515565b6006546001600160a01b031633146109f45760405162461bcd60e51b815260040161067990611f0f565b47600073eaa13156a5d2651832164ecc8302c40fd2c401a16064610a19846003611fe6565b610a23919061201b565b604051600081818185875af1925050503d8060008114610a5f576040519150601f19603f3d011682016040523d82523d6000602084013e610a64565b606091505b5050905080610a7257600080fd5b600073f85bc06ec8018f672d619ab35ed3f574a2b23c7c6064610a96856011611fe6565b610aa0919061201b565b604051600081818185875af1925050503d8060008114610adc576040519150601f19603f3d011682016040523d82523d6000602084013e610ae1565b606091505b5050905080610aef57600080fd5b6000610b036006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b4d576040519150601f19603f3d011682016040523d82523d6000602084013e610b52565b606091505b5050905080610b6057600080fd5b50505050565b6109948383836040518060200160405280600081525061113a565b610b8b338261141e565b610be85760405162461bcd60e51b815260206004820152602860248201527f44696769446f67734e4654202d204f6e6c7920746f6b656e206f776e6572206360448201526730b710313ab9371760c11b6064820152608401610679565b610bf1816116b5565b50565b6006546001600160a01b03163314610c1e5760405162461bcd60e51b815260040161067990611f0f565b600755565b6006546001600160a01b03163314610c4d5760405162461bcd60e51b815260040161067990611f0f565b8051610c6090600c906020840190611b60565b5050565b6000818152600260205260408120546001600160a01b0316806106495760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610679565b600c80546107d390611f44565b60006001600160a01b038216610d535760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610679565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610d995760405162461bcd60e51b815260040161067990611f0f565b610da36000611750565b565b6006546001600160a01b03163314610dcf5760405162461bcd60e51b815260040161067990611f0f565b600b805460ff19811660ff90911615179055565b6060600180546106ae90611f44565b600b5460ff1615610e515760405162461bcd60e51b8152602060048201526024808201527f44696769446f67734e4654202d2054686520436f6e74726163742069732050616044820152631d5cd95960e21b6064820152608401610679565b60085481600a54610e62919061202f565b1115610ebc5760405162461bcd60e51b8152602060048201526024808201527f44696769446f67734e4654202d206d6178204e4654206c696d697420657863656044820152631959195960e21b6064820152608401610679565b6006546001600160a01b0316331461101c57600954811115610f355760405162461bcd60e51b815260206004820152602c60248201527f44696769446f67734e4654202d206d6178206d696e7420616d6f756e74206c6960448201526b1b5a5d08195e18d95959195960a21b6064820152608401610679565b336000908152600e6020526040902054600954610f52838361202f565b1115610fb35760405162461bcd60e51b815260206004820152602a60248201527f44696769446f67734e4654202d206d6178204e465420706572206164647265736044820152691cc8195e18d95959195960b21b6064820152608401610679565b81600754610fc19190611fe6565b34101561101a5760405162461bcd60e51b815260206004820152602160248201527f44696769446f67734e4654202d20696e73756666696369656e742065746865726044820152607360f81b6064820152608401610679565b505b60015b818111610c6057336000908152600e6020526040812080549161104183612047565b919050555061106333600a6000815461105990612047565b91829055506117a2565b8061106d81612047565b91505061101f565b6001600160a01b0382163314156110ce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610679565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611144338361141e565b6111605760405162461bcd60e51b815260040161067990611f7f565b610b60848484846117bc565b6000818152600260205260409020546060906001600160a01b03166111eb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610679565b600b54610100900460ff1615611257576000600c805461120a90611f44565b9050116112265760405180602001604052806000815250610649565b600c611231836117ef565b60405160200161124292919061207e565b60405160208183030381529060405292915050565b6000600d805461126690611f44565b9050116112825760405180602001604052806000815250610649565b600d805461128f90611f44565b80601f01602080910402602001604051908101604052809291908181526020018280546112bb90611f44565b80156113085780601f106112dd57610100808354040283529160200191611308565b820191906000526020600020905b8154815290600101906020018083116112eb57829003601f168201915b505050505092915050565b919050565b6006546001600160a01b031633146113425760405162461bcd60e51b815260040161067990611f0f565b6001600160a01b0381166113a75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610679565b610bf181611750565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113e582610c64565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610679565b60006114a283610c64565b9050806001600160a01b0316846001600160a01b031614806114dd5750836001600160a01b03166114d284610731565b6001600160a01b0316145b8061150d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661152882610c64565b6001600160a01b0316146115905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610679565b6001600160a01b0382166115f25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610679565b6115fd6000826113b0565b6001600160a01b0383166000908152600360205260408120805460019290611626908490612149565b90915550506001600160a01b038216600090815260036020526040812080546001929061165490849061202f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006116c082610c64565b90506116cd6000836113b0565b6001600160a01b03811660009081526003602052604081208054600192906116f6908490612149565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c608282604051806020016040528060008152506118ed565b6117c7848484611515565b6117d384848484611920565b610b605760405162461bcd60e51b815260040161067990612160565b6060816118135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561183d578061182781612047565b91506118369050600a8361201b565b9150611817565b60008167ffffffffffffffff81111561185857611858611d4f565b6040519080825280601f01601f191660200182016040528015611882576020820181803683370190505b5090505b841561150d57611897600183612149565b91506118a4600a866121b2565b6118af90603061202f565b60f81b8183815181106118c4576118c46121c6565b60200101906001600160f81b031916908160001a9053506118e6600a8661201b565b9450611886565b6118f78383611a1e565b6119046000848484611920565b6109945760405162461bcd60e51b815260040161067990612160565b60006001600160a01b0384163b15611a1357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119649033908990889088906004016121dc565b6020604051808303816000875af192505050801561199f575060408051601f3d908101601f1916820190925261199c91810190612219565b60015b6119f9573d8080156119cd576040519150601f19603f3d011682016040523d82523d6000602084013e6119d2565b606091505b5080516119f15760405162461bcd60e51b815260040161067990612160565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150d565b506001949350505050565b6001600160a01b038216611a745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610679565b6000818152600260205260409020546001600160a01b031615611ad95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610679565b6001600160a01b0382166000908152600360205260408120805460019290611b0290849061202f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b6c90611f44565b90600052602060002090601f016020900481019282611b8e5760008555611bd4565b82601f10611ba757805160ff1916838001178555611bd4565b82800160010185558215611bd4579182015b82811115611bd4578251825591602001919060010190611bb9565b50611be0929150611be4565b5090565b5b80821115611be05760008155600101611be5565b6001600160e01b031981168114610bf157600080fd5b600060208284031215611c2157600080fd5b8135611c2c81611bf9565b9392505050565b60005b83811015611c4e578181015183820152602001611c36565b83811115610b605750506000910152565b60008151808452611c77816020860160208601611c33565b601f01601f19169290920160200192915050565b602081526000611c2c6020830184611c5f565b600060208284031215611cb057600080fd5b5035919050565b80356001600160a01b038116811461131357600080fd5b60008060408385031215611ce157600080fd5b611cea83611cb7565b946020939093013593505050565b600060208284031215611d0a57600080fd5b611c2c82611cb7565b600080600060608486031215611d2857600080fd5b611d3184611cb7565b9250611d3f60208501611cb7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d8057611d80611d4f565b604051601f8501601f19908116603f01168101908282118183101715611da857611da8611d4f565b81604052809350858152868686011115611dc157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ded57600080fd5b813567ffffffffffffffff811115611e0457600080fd5b8201601f81018413611e1557600080fd5b61150d84823560208401611d65565b60008060408385031215611e3757600080fd5b611e4083611cb7565b915060208301358015158114611e5557600080fd5b809150509250929050565b60008060008060808587031215611e7657600080fd5b611e7f85611cb7565b9350611e8d60208601611cb7565b925060408501359150606085013567ffffffffffffffff811115611eb057600080fd5b8501601f81018713611ec157600080fd5b611ed087823560208401611d65565b91505092959194509250565b60008060408385031215611eef57600080fd5b611ef883611cb7565b9150611f0660208401611cb7565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f5857607f821691505b60208210811415611f7957634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561200057612000611fd0565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261202a5761202a612005565b500490565b6000821982111561204257612042611fd0565b500190565b600060001982141561205b5761205b611fd0565b5060010190565b60008151612074818560208601611c33565b9290920192915050565b600080845481600182811c91508083168061209a57607f831692505b60208084108214156120ba57634e487b7160e01b86526022600452602486fd5b8180156120ce57600181146120df5761210c565b60ff1986168952848901965061210c565b60008b81526020902060005b868110156121045781548b8201529085019083016120eb565b505084890196505b50505050505061214061212f61212983602f60f81b815260010190565b86612062565b64173539b7b760d91b815260050190565b95945050505050565b60008282101561215b5761215b611fd0565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826121c1576121c1612005565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061220f90830184611c5f565b9695505050505050565b60006020828403121561222b57600080fd5b8151611c2c81611bf956fea2646970667358221220748f0fdd444f678cdee6fe55d624459089898a184d03c004e978830a3feadab564736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d634a6577583355365338384c4b396d455244684d52346b397063554c4d6d3163466a624367654d6f5568344200000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d534e54374751534d4773644d4d42364e736445317258526a6e6362364c476947764b513443393445554779530000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmcJewX3U6S88LK9mERDhMR4k9pcULMm1cFjbCgeMoUh4B
Arg [1] : _initNotRevealedUri (string): ipfs://QmSNT7GQSMGsdMMB6NsdE1rXRjncb6LGiGvKQ4C94EUGyS

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [3] : 697066733a2f2f516d634a6577583355365338384c4b396d455244684d52346b
Arg [4] : 397063554c4d6d3163466a624367654d6f556834420000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d534e54374751534d4773644d4d42364e73644531725852
Arg [7] : 6a6e6362364c476947764b513443393445554779530000000000000000000000


Deployed Bytecode Sourcemap

36771:3623:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23661:355;;;;;;;;;;-1:-1:-1;23661:355:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23661:355:0;;;;;;;;39791:75;;;;;;;;;;;;;:::i;:::-;;24830:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26523:308::-;;;;;;;;;;-1:-1:-1;26523:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;26523:308:0;1550:203:1;37089:28:0;;;;;;;;;;;;;:::i;39265:116::-;;;;;;;;;;-1:-1:-1;39265:116:0;;;;;:::i;:::-;;:::i;26046:411::-;;;;;;;;;;-1:-1:-1;26046:411:0;;;;;:::i;:::-;;:::i;36850:33::-;;;;;;;;;;;;;;;;;;;2341:25:1;;;2329:2;2314:18;36850:33:0;2195:177:1;37126:55:0;;;;;;;;;;-1:-1:-1;37126:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;36928:32;;;;;;;;;;;;;;;;27582:376;;;;;;;;;;-1:-1:-1;27582:376:0;;;;;:::i;:::-;;:::i;39874:517::-;;;;;;;;;;;;;:::i;28029:185::-;;;;;;;;;;-1:-1:-1;28029:185:0;;;;;:::i;:::-;;:::i;39495:211::-;;;;;;;;;;-1:-1:-1;39495:211:0;;;;;:::i;:::-;;:::i;39171:86::-;;;;;;;;;;-1:-1:-1;39171:86:0;;;;;:::i;:::-;;:::i;39389:98::-;;;;;;;;;;-1:-1:-1;39389:98:0;;;;;:::i;:::-;;:::i;37003:26::-;;;;;;;;;;-1:-1:-1;37003:26:0;;;;;;;;24437:326;;;;;;;;;;-1:-1:-1;24437:326:0;;;;;:::i;:::-;;:::i;37061:21::-;;;;;;;;;;;;;:::i;24080:295::-;;;;;;;;;;-1:-1:-1;24080:295:0;;;;;:::i;:::-;;:::i;4634:94::-;;;;;;;;;;;;;:::i;39714:69::-;;;;;;;;;;;;;:::i;3983:87::-;;;;;;;;;;-1:-1:-1;4056:6:0;;-1:-1:-1;;;;;4056:6:0;3983:87;;24999:104;;;;;;;;;;;;;:::i;36967:29::-;;;;;;;;;;;;;;;;38165:980;;;;;;:::i;:::-;;:::i;26903:327::-;;;;;;;;;;-1:-1:-1;26903:327:0;;;;;:::i;:::-;;:::i;37036:18::-;;;;;;;;;;-1:-1:-1;37036:18:0;;;;;;;;;;;28285:365;;;;;;;;;;-1:-1:-1;28285:365:0;;;;;:::i;:::-;;:::i;37404:753::-;;;;;;;;;;-1:-1:-1;37404:753:0;;;;;:::i;:::-;;:::i;36890:31::-;;;;;;;;;;;;;;;;27301:214;;;;;;;;;;-1:-1:-1;27301:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27472:25:0;;;27443:4;27472:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27301:214;4883:229;;;;;;;;;;-1:-1:-1;4883:229:0;;;;;:::i;:::-;;:::i;23661:355::-;23808:4;-1:-1:-1;;;;;;23850:40:0;;-1:-1:-1;;;23850:40:0;;:105;;-1:-1:-1;;;;;;;23907:48:0;;-1:-1:-1;;;23907:48:0;23850:105;:158;;;-1:-1:-1;;;;;;;;;;16614:40:0;;;23972:36;23830:178;23661:355;-1:-1:-1;;23661:355:0:o;39791:75::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;;;;;;;;;39852:6:::1;::::0;;-1:-1:-1;;39842:16:0;::::1;39852:6;::::0;;;::::1;;;39851:7;39842:16:::0;;::::1;;::::0;;39791:75::o;24830:100::-;24884:13;24917:5;24910:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24830:100;:::o;26523:308::-;26644:7;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;26669:110;;;;-1:-1:-1;;;26669:110:0;;6363:2:1;26669:110:0;;;6345:21:1;6402:2;6382:18;;;6375:30;6441:34;6421:18;;;6414:62;-1:-1:-1;;;6492:18:1;;;6485:42;6544:19;;26669:110:0;6161:408:1;26669:110:0;-1:-1:-1;26799:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26799:24:0;;26523:308::o;37089:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39265:116::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39343:13:::1;:30:::0;39265:116::o;26046:411::-;26127:13;26143:23;26158:7;26143:14;:23::i;:::-;26127:39;;26191:5;-1:-1:-1;;;;;26185:11:0;:2;-1:-1:-1;;;;;26185:11:0;;;26177:57;;;;-1:-1:-1;;;26177:57:0;;6776:2:1;26177:57:0;;;6758:21:1;6815:2;6795:18;;;6788:30;6854:34;6834:18;;;6827:62;-1:-1:-1;;;6905:18:1;;;6898:31;6946:19;;26177:57:0;6574:397:1;26177:57:0;2832:10;-1:-1:-1;;;;;26269:21:0;;;;:62;;-1:-1:-1;26294:37:0;26311:5;2832:10;27301:214;:::i;26294:37::-;26247:168;;;;-1:-1:-1;;;26247:168:0;;7178:2:1;26247:168:0;;;7160:21:1;7217:2;7197:18;;;7190:30;7256:34;7236:18;;;7229:62;7327:26;7307:18;;;7300:54;7371:19;;26247:168:0;6976:420:1;26247:168:0;26428:21;26437:2;26441:7;26428:8;:21::i;:::-;26116:341;26046:411;;:::o;27582:376::-;27791:41;2832:10;27824:7;27791:18;:41::i;:::-;27769:140;;;;-1:-1:-1;;;27769:140:0;;;;;;;:::i;:::-;27922:28;27932:4;27938:2;27942:7;27922:9;:28::i;39874:517::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39939:21:::1;39922:14;39994:42;40079:3;40065:10;39939:21:::0;40074:1:::1;40065:10;:::i;:::-;40064:18;;;;:::i;:::-;39986:111;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39971:126;;;40116:3;40108:12;;;::::0;::::1;;40132:8;40154:42;40240:3;40225:11;:6:::0;40234:2:::1;40225:11;:::i;:::-;40224:19;;;;:::i;:::-;40146:112;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40131:127;;;40277:3;40269:12;;;::::0;::::1;;40293:7;40314;4056:6:::0;;-1:-1:-1;;;;;4056:6:0;;3983:87;40314:7:::1;-1:-1:-1::0;;;;;40306:21:0::1;40335;40306:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40292:69;;;40380:2;40372:11;;;::::0;::::1;;39911:480;;;;39874:517::o:0;28029:185::-;28167:39;28184:4;28190:2;28194:7;28167:39;;;;;;;;;;;;:16;:39::i;39495:211::-;39566:39;39585:10;39597:7;39566:18;:39::i;:::-;39544:129;;;;-1:-1:-1;;;39544:129:0;;8793:2:1;39544:129:0;;;8775:21:1;8832:2;8812:18;;;8805:30;8871:34;8851:18;;;8844:62;-1:-1:-1;;;8922:18:1;;;8915:38;8970:19;;39544:129:0;8591:404:1;39544:129:0;39684:14;39690:7;39684:5;:14::i;:::-;39495:211;:::o;39171:86::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39234:4:::1;:15:::0;39171:86::o;39389:98::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39461:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39389:98:::0;:::o;24437:326::-;24554:7;24595:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24595:16:0;24644:19;24622:110;;;;-1:-1:-1;;;24622:110:0;;9202:2:1;24622:110:0;;;9184:21:1;9241:2;9221:18;;;9214:30;9280:34;9260:18;;;9253:62;-1:-1:-1;;;9331:18:1;;;9324:39;9380:19;;24622:110:0;9000:405:1;37061:21:0;;;;;;;:::i;24080:295::-;24197:7;-1:-1:-1;;;;;24244:19:0;;24222:111;;;;-1:-1:-1;;;24222:111:0;;9612:2:1;24222:111:0;;;9594:21:1;9651:2;9631:18;;;9624:30;9690:34;9670:18;;;9663:62;-1:-1:-1;;;9741:18:1;;;9734:40;9791:19;;24222:111:0;9410:406:1;24222:111:0;-1:-1:-1;;;;;;24351:16:0;;;;;:9;:16;;;;;;;24080:295::o;4634:94::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;4699:21:::1;4717:1;4699:9;:21::i;:::-;4634:94::o:0;39714:69::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;39769:6:::1;::::0;;-1:-1:-1;;39759:16:0;::::1;39769:6;::::0;;::::1;39768:7;39759:16;::::0;;39714:69::o;24999:104::-;25055:13;25088:7;25081:14;;;;;:::i;38165:980::-;38233:6;;;;38232:7;38224:56;;;;-1:-1:-1;;;38224:56:0;;10023:2:1;38224:56:0;;;10005:21:1;10062:2;10042:18;;;10035:30;10101:34;10081:18;;;10074:62;-1:-1:-1;;;10152:18:1;;;10145:34;10196:19;;38224:56:0;9821:400:1;38224:56:0;38337:9;;38326:7;38313:10;;:20;;;;:::i;:::-;:33;;38291:119;;;;-1:-1:-1;;;38291:119:0;;10561:2:1;38291:119:0;;;10543:21:1;10600:2;10580:18;;;10573:30;10639:34;10619:18;;;10612:62;-1:-1:-1;;;10690:18:1;;;10683:34;10734:19;;38291:119:0;10359:400:1;38291:119:0;4056:6;;-1:-1:-1;;;;;4056:6:0;38425:10;:21;38421:557;;38500:13;;38489:7;:24;;38463:130;;;;-1:-1:-1;;;38463:130:0;;10966:2:1;38463:130:0;;;10948:21:1;11005:2;10985:18;;;10978:30;11044:34;11024:18;;;11017:62;-1:-1:-1;;;11095:18:1;;;11088:42;11147:19;;38463:130:0;10764:408:1;38463:130:0;38656:10;38608:24;38635:32;;;:20;:32;;;;;;38738:13;;38708:26;38727:7;38635:32;38708:26;:::i;:::-;:43;;38682:147;;;;-1:-1:-1;;;38682:147:0;;11379:2:1;38682:147:0;;;11361:21:1;11418:2;11398:18;;;11391:30;11457:34;11437:18;;;11430:62;-1:-1:-1;;;11508:18:1;;;11501:40;11558:19;;38682:147:0;11177:406:1;38682:147:0;38890:7;38883:4;;:14;;;;:::i;:::-;38870:9;:27;;38844:122;;;;-1:-1:-1;;;38844:122:0;;11790:2:1;38844:122:0;;;11772:21:1;11829:2;11809:18;;;11802:30;11868:34;11848:18;;;11841:62;-1:-1:-1;;;11919:18:1;;;11912:31;11960:19;;38844:122:0;11588:397:1;38844:122:0;38448:530;38421:557;39005:1;38988:150;39013:7;39008:1;:12;38988:150;;39063:10;39042:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;39091:35;39101:10;39115;;39113:12;;;;;:::i;:::-;;;;;-1:-1:-1;39091:9:0;:35::i;:::-;39022:3;;;;:::i;:::-;;;;38988:150;;26903:327;-1:-1:-1;;;;;27038:24:0;;2832:10;27038:24;;27030:62;;;;-1:-1:-1;;;27030:62:0;;12332:2:1;27030:62:0;;;12314:21:1;12371:2;12351:18;;;12344:30;12410:27;12390:18;;;12383:55;12455:18;;27030:62:0;12130:349:1;27030:62:0;2832:10;27105:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27105:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27105:53:0;;;;;;;;;;27174:48;;540:41:1;;;27105:42:0;;2832:10;27174:48;;513:18:1;27174:48:0;;;;;;;26903:327;;:::o;28285:365::-;28474:41;2832:10;28507:7;28474:18;:41::i;:::-;28452:140;;;;-1:-1:-1;;;28452:140:0;;;;;;;:::i;:::-;28603:39;28617:4;28623:2;28627:7;28636:5;28603:13;:39::i;37404:753::-;30262:4;30286:16;;;:7;:16;;;;;;37505:13;;-1:-1:-1;;;;;30286:16:0;37536:113;;;;-1:-1:-1;;;37536:113:0;;12686:2:1;37536:113:0;;;12668:21:1;12725:2;12705:18;;;12698:30;12764:34;12744:18;;;12737:62;-1:-1:-1;;;12815:18:1;;;12808:45;12870:19;;37536:113:0;12484:411:1;37536:113:0;37664:6;;;;;;;37660:490;;;37735:1;37717:7;37711:21;;;;;:::i;:::-;;;:25;:333;;;;;;;;;;;;;;;;;37840:7;37912:18;:7;:16;:18::i;:::-;37793:202;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37687:357;37404:753;-1:-1:-1;;37404:753:0:o;37660:490::-;38115:1;38090:14;38084:28;;;;;:::i;:::-;;;:32;:54;;;;;;;;;;;;;;;;;38119:14;38084:54;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38077:61;37404:753;-1:-1:-1;;37404:753:0:o;37660:490::-;37404:753;;;:::o;4883:229::-;4056:6;;-1:-1:-1;;;;;4056:6:0;2832:10;4203:23;4195:68;;;;-1:-1:-1;;;4195:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4986:22:0;::::1;4964:110;;;::::0;-1:-1:-1;;;4964:110:0;;15093:2:1;4964:110:0::1;::::0;::::1;15075:21:1::0;15132:2;15112:18;;;15105:30;15171:34;15151:18;;;15144:62;-1:-1:-1;;;15222:18:1;;;15215:36;15268:19;;4964:110:0::1;14891:402:1::0;4964:110:0::1;5085:19;5095:8;5085:9;:19::i;34320:174::-:0;34395:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34395:29:0;-1:-1:-1;;;;;34395:29:0;;;;;;;;:24;;34449:23;34395:24;34449:14;:23::i;:::-;-1:-1:-1;;;;;34440:46:0;;;;;;;;;;;34320:174;;:::o;30491:452::-;30620:4;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;30642:110;;;;-1:-1:-1;;;30642:110:0;;15500:2:1;30642:110:0;;;15482:21:1;15539:2;15519:18;;;15512:30;15578:34;15558:18;;;15551:62;-1:-1:-1;;;15629:18:1;;;15622:42;15681:19;;30642:110:0;15298:408:1;30642:110:0;30763:13;30779:23;30794:7;30779:14;:23::i;:::-;30763:39;;30832:5;-1:-1:-1;;;;;30821:16:0;:7;-1:-1:-1;;;;;30821:16:0;;:64;;;;30878:7;-1:-1:-1;;;;;30854:31:0;:20;30866:7;30854:11;:20::i;:::-;-1:-1:-1;;;;;30854:31:0;;30821:64;:113;;;-1:-1:-1;;;;;;27472:25:0;;;27443:4;27472:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30902:32;30813:122;30491:452;-1:-1:-1;;;;30491:452:0:o;33587:615::-;33760:4;-1:-1:-1;;;;;33733:31:0;:23;33748:7;33733:14;:23::i;:::-;-1:-1:-1;;;;;33733:31:0;;33711:122;;;;-1:-1:-1;;;33711:122:0;;15913:2:1;33711:122:0;;;15895:21:1;15952:2;15932:18;;;15925:30;15991:34;15971:18;;;15964:62;-1:-1:-1;;;16042:18:1;;;16035:39;16091:19;;33711:122:0;15711:405:1;33711:122:0;-1:-1:-1;;;;;33852:16:0;;33844:65;;;;-1:-1:-1;;;33844:65:0;;16323:2:1;33844:65:0;;;16305:21:1;16362:2;16342:18;;;16335:30;16401:34;16381:18;;;16374:62;-1:-1:-1;;;16452:18:1;;;16445:34;16496:19;;33844:65:0;16121:400:1;33844:65:0;34026:29;34043:1;34047:7;34026:8;:29::i;:::-;-1:-1:-1;;;;;34068:15:0;;;;;;:9;:15;;;;;:20;;34087:1;;34068:15;:20;;34087:1;;34068:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34099:13:0;;;;;;:9;:13;;;;;:18;;34116:1;;34099:13;:18;;34116:1;;34099:18;:::i;:::-;;;;-1:-1:-1;;34128:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34128:21:0;-1:-1:-1;;;;;34128:21:0;;;;;;;;;34167:27;;34128:16;;34167:27;;;;;;;33587:615;;;:::o;32890:360::-;32950:13;32966:23;32981:7;32966:14;:23::i;:::-;32950:39;;33091:29;33108:1;33112:7;33091:8;:29::i;:::-;-1:-1:-1;;;;;33133:16:0;;;;;;:9;:16;;;;;:21;;33153:1;;33133:16;:21;;33153:1;;33133:21;:::i;:::-;;;;-1:-1:-1;;33172:16:0;;;;:7;:16;;;;;;33165:23;;-1:-1:-1;;;;;;33165:23:0;;;33206:36;33180:7;;33172:16;-1:-1:-1;;;;;33206:36:0;;;;;33172:16;;33206:36;32939:311;32890:360;:::o;5120:173::-;5195:6;;;-1:-1:-1;;;;;5212:17:0;;;-1:-1:-1;;;;;;5212:17:0;;;;;;;5245:40;;5195:6;;;5212:17;5195:6;;5245:40;;5176:16;;5245:40;5165:128;5120:173;:::o;31285:110::-;31361:26;31371:2;31375:7;31361:26;;;;;;;;;;;;:9;:26::i;29532:352::-;29689:28;29699:4;29705:2;29709:7;29689:9;:28::i;:::-;29750:48;29773:4;29779:2;29783:7;29792:5;29750:22;:48::i;:::-;29728:148;;;;-1:-1:-1;;;29728:148:0;;;;;;;:::i;340:723::-;396:13;617:10;613:53;;-1:-1:-1;;644:10:0;;;;;;;;;;;;-1:-1:-1;;;644:10:0;;;;;340:723::o;613:53::-;691:5;676:12;732:78;739:9;;732:78;;765:8;;;;:::i;:::-;;-1:-1:-1;788:10:0;;-1:-1:-1;796:2:0;788:10;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;842:17:0;;820:39;;870:154;877:10;;870:154;;904:11;914:1;904:11;;:::i;:::-;;-1:-1:-1;973:10:0;981:2;973:5;:10;:::i;:::-;960:24;;:2;:24;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;930:56:0;;;;;;;;-1:-1:-1;1001:11:0;1010:2;1001:11;;:::i;:::-;;;870:154;;31622:321;31752:18;31758:2;31762:7;31752:5;:18::i;:::-;31803:54;31834:1;31838:2;31842:7;31851:5;31803:22;:54::i;:::-;31781:154;;;;-1:-1:-1;;;31781:154:0;;;;;;;:::i;35059:980::-;35214:4;-1:-1:-1;;;;;35235:13:0;;6385:20;6433:8;35231:801;;35288:175;;-1:-1:-1;;;35288:175:0;;-1:-1:-1;;;;;35288:36:0;;;;;:175;;2832:10;;35382:4;;35409:7;;35439:5;;35288:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35288:175:0;;;;;;;;-1:-1:-1;;35288:175:0;;;;;;;;;;;;:::i;:::-;;;35267:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35646:13:0;;35642:320;;35689:108;;-1:-1:-1;;;35689:108:0;;;;;;;:::i;35642:320::-;35912:6;35906:13;35897:6;35893:2;35889:15;35882:38;35267:710;-1:-1:-1;;;;;;35527:51:0;-1:-1:-1;;;35527:51:0;;-1:-1:-1;35520:58:0;;35231:801;-1:-1:-1;36016:4:0;35059:980;;;;;;:::o;32279:382::-;-1:-1:-1;;;;;32359:16:0;;32351:61;;;;-1:-1:-1;;;32351:61:0;;18285:2:1;32351:61:0;;;18267:21:1;;;18304:18;;;18297:30;18363:34;18343:18;;;18336:62;18415:18;;32351:61:0;18083:356:1;32351:61:0;30262:4;30286:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30286:16:0;:30;32423:58;;;;-1:-1:-1;;;32423:58:0;;18646:2:1;32423:58:0;;;18628:21:1;18685:2;18665:18;;;18658:30;18724;18704:18;;;18697:58;18772:18;;32423:58:0;18444:352:1;32423:58:0;-1:-1:-1;;;;;32552:13:0;;;;;;:9;:13;;;;;:18;;32569:1;;32552:13;:18;;32569:1;;32552:18;:::i;:::-;;;;-1:-1:-1;;32581:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32581:21:0;-1:-1:-1;;;;;32581:21:0;;;;;;;;32620:33;;32581:16;;;32620:33;;32581:16;;32620:33;32279:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:186::-;2436:6;2489:2;2477:9;2468:7;2464:23;2460:32;2457:52;;;2505:1;2502;2495:12;2457:52;2528:29;2547:9;2528:29;:::i;2568:328::-;2645:6;2653;2661;2714:2;2702:9;2693:7;2689:23;2685:32;2682:52;;;2730:1;2727;2720:12;2682:52;2753:29;2772:9;2753:29;:::i;:::-;2743:39;;2801:38;2835:2;2824:9;2820:18;2801:38;:::i;:::-;2791:48;;2886:2;2875:9;2871:18;2858:32;2848:42;;2568:328;;;;;:::o;2901:127::-;2962:10;2957:3;2953:20;2950:1;2943:31;2993:4;2990:1;2983:15;3017:4;3014:1;3007:15;3033:632;3098:5;3128:18;3169:2;3161:6;3158:14;3155:40;;;3175:18;;:::i;:::-;3250:2;3244:9;3218:2;3304:15;;-1:-1:-1;;3300:24:1;;;3326:2;3296:33;3292:42;3280:55;;;3350:18;;;3370:22;;;3347:46;3344:72;;;3396:18;;:::i;:::-;3436:10;3432:2;3425:22;3465:6;3456:15;;3495:6;3487;3480:22;3535:3;3526:6;3521:3;3517:16;3514:25;3511:45;;;3552:1;3549;3542:12;3511:45;3602:6;3597:3;3590:4;3582:6;3578:17;3565:44;3657:1;3650:4;3641:6;3633;3629:19;3625:30;3618:41;;;;3033:632;;;;;:::o;3670:451::-;3739:6;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3881:18;3873:6;3870:30;3867:50;;;3913:1;3910;3903:12;3867:50;3936:22;;3989:4;3981:13;;3977:27;-1:-1:-1;3967:55:1;;4018:1;4015;4008:12;3967:55;4041:74;4107:7;4102:2;4089:16;4084:2;4080;4076:11;4041:74;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:667::-;4573:6;4581;4589;4597;4650:3;4638:9;4629:7;4625:23;4621:33;4618:53;;;4667:1;4664;4657:12;4618:53;4690:29;4709:9;4690:29;:::i;:::-;4680:39;;4738:38;4772:2;4761:9;4757:18;4738:38;:::i;:::-;4728:48;;4823:2;4812:9;4808:18;4795:32;4785:42;;4878:2;4867:9;4863:18;4850:32;4905:18;4897:6;4894:30;4891:50;;;4937:1;4934;4927:12;4891:50;4960:22;;5013:4;5005:13;;5001:27;-1:-1:-1;4991:55:1;;5042:1;5039;5032:12;4991:55;5065:74;5131:7;5126:2;5113:16;5108:2;5104;5100:11;5065:74;:::i;:::-;5055:84;;;4478:667;;;;;;;:::o;5150:260::-;5218:6;5226;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5318:29;5337:9;5318:29;:::i;:::-;5308:39;;5366:38;5400:2;5389:9;5385:18;5366:38;:::i;:::-;5356:48;;5150:260;;;;;:::o;5415:356::-;5617:2;5599:21;;;5636:18;;;5629:30;5695:34;5690:2;5675:18;;5668:62;5762:2;5747:18;;5415:356::o;5776:380::-;5855:1;5851:12;;;;5898;;;5919:61;;5973:4;5965:6;5961:17;5951:27;;5919:61;6026:2;6018:6;6015:14;5995:18;5992:38;5989:161;;;6072:10;6067:3;6063:20;6060:1;6053:31;6107:4;6104:1;6097:15;6135:4;6132:1;6125:15;5989:161;;5776:380;;;:::o;7401:413::-;7603:2;7585:21;;;7642:2;7622:18;;;7615:30;7681:34;7676:2;7661:18;;7654:62;-1:-1:-1;;;7747:2:1;7732:18;;7725:47;7804:3;7789:19;;7401:413::o;7819:127::-;7880:10;7875:3;7871:20;7868:1;7861:31;7911:4;7908:1;7901:15;7935:4;7932:1;7925:15;7951:168;7991:7;8057:1;8053;8049:6;8045:14;8042:1;8039:21;8034:1;8027:9;8020:17;8016:45;8013:71;;;8064:18;;:::i;:::-;-1:-1:-1;8104:9:1;;7951:168::o;8124:127::-;8185:10;8180:3;8176:20;8173:1;8166:31;8216:4;8213:1;8206:15;8240:4;8237:1;8230:15;8256:120;8296:1;8322;8312:35;;8327:18;;:::i;:::-;-1:-1:-1;8361:9:1;;8256:120::o;10226:128::-;10266:3;10297:1;10293:6;10290:1;10287:13;10284:39;;;10303:18;;:::i;:::-;-1:-1:-1;10339:9:1;;10226:128::o;11990:135::-;12029:3;-1:-1:-1;;12050:17:1;;12047:43;;;12070:18;;:::i;:::-;-1:-1:-1;12117:1:1;12106:13;;11990:135::o;13145:185::-;13187:3;13225:5;13219:12;13240:52;13285:6;13280:3;13273:4;13266:5;13262:16;13240:52;:::i;:::-;13308:16;;;;;13145:185;-1:-1:-1;;13145:185:1:o;13453:1433::-;13831:3;13860:1;13893:6;13887:13;13923:3;13945:1;13973:9;13969:2;13965:18;13955:28;;14033:2;14022:9;14018:18;14055;14045:61;;14099:4;14091:6;14087:17;14077:27;;14045:61;14125:2;14173;14165:6;14162:14;14142:18;14139:38;14136:165;;;-1:-1:-1;;;14200:33:1;;14256:4;14253:1;14246:15;14286:4;14207:3;14274:17;14136:165;14317:18;14344:104;;;;14462:1;14457:320;;;;14310:467;;14344:104;-1:-1:-1;;14377:24:1;;14365:37;;14422:16;;;;-1:-1:-1;14344:104:1;;14457:320;12973:1;12966:14;;;13010:4;12997:18;;14552:1;14566:165;14580:6;14577:1;14574:13;14566:165;;;14658:14;;14645:11;;;14638:35;14701:16;;;;14595:10;;14566:165;;;14570:3;;14760:6;14755:3;14751:16;14744:23;;14310:467;;;;;;;14793:87;14818:61;14844:34;14874:3;-1:-1:-1;;;13091:16:1;;13132:1;13123:11;;13026:114;14844:34;14836:6;14818:61;:::i;:::-;-1:-1:-1;;;13395:20:1;;13440:1;13431:11;;13335:113;14793:87;14786:94;13453:1433;-1:-1:-1;;;;;13453:1433:1:o;16526:125::-;16566:4;16594:1;16591;16588:8;16585:34;;;16599:18;;:::i;:::-;-1:-1:-1;16636:9:1;;16526:125::o;16656:414::-;16858:2;16840:21;;;16897:2;16877:18;;;16870:30;16936:34;16931:2;16916:18;;16909:62;-1:-1:-1;;;17002:2:1;16987:18;;16980:48;17060:3;17045:19;;16656:414::o;17075:112::-;17107:1;17133;17123:35;;17138:18;;:::i;:::-;-1:-1:-1;17172:9:1;;17075:112::o;17192:127::-;17253:10;17248:3;17244:20;17241:1;17234:31;17284:4;17281:1;17274:15;17308:4;17305:1;17298:15;17324:500;-1:-1:-1;;;;;17593:15:1;;;17575:34;;17645:15;;17640:2;17625:18;;17618:43;17692:2;17677:18;;17670:34;;;17740:3;17735:2;17720:18;;17713:31;;;17518:4;;17761:57;;17798:19;;17790:6;17761:57;:::i;:::-;17753:65;17324:500;-1:-1:-1;;;;;;17324:500:1:o;17829:249::-;17898:6;17951:2;17939:9;17930:7;17926:23;17922:32;17919:52;;;17967:1;17964;17957:12;17919:52;17999:9;17993:16;18018:30;18042:5;18018:30;:::i

Swarm Source

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