ETH Price: $3,401.46 (-2.01%)
Gas: 16 Gwei

Token

Meta Dorados (DORADOS)
 

Overview

Max Total Supply

84 DORADOS

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
glaude.eth
Balance
1 DORADOS
0x1Dd622b5Cc25AB33B22506CcD8f91F988bE9b05c
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:
MetaDorados

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/3_Ballot.sol



pragma solidity >=0.7.0 <0.9.0;



contract MetaDorados is ERC721Enumerable, Ownable {

  using Strings for uint256;
  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  address[] public WhitelistedWallets;
  mapping(address => uint256) public WalletMintedBalance;
  bool public RevealedActive = false;
  bool public isPauseMode = false;
  bool public isWhitelistMode = false;
  bool public isPresalesMode = true;
  uint256 public PriceNFT = 0.084 ether; // Main Price
  uint256 public MaxCollection = 5999;
  uint256 public maxMintPerTransaction = 10;
  uint256 public NFTReservedForWhitelisted = 2500; //Reserved Quantity for Whitelisted Wallets
  uint256 public nftPerWalletDuringWhitelist = 5; 
  uint256 public NFTReservedForPresales = 2500; //Reserved Quantity for Presales
  uint256 public nftPerWalletDuringPresales = 5;
  uint256 public PreSalesPriceNFT = 0.064 ether;  //Pre sales price

  constructor(string memory _initBaseURI,string memory _initNotRevealedUri)
    ERC721("Meta Dorados", "DORADOS") 
    {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // Mint Engine
  function mint(uint256 _mintAmount) public payable {
    require(!isPauseMode, "Pause Mode ON");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "Select 1 NFT");
    require(_mintAmount <= maxMintPerTransaction, "Max Mint Amount Reached");
    require(supply + _mintAmount <= MaxCollection, "Collecton Sold");
    
   if (msg.sender != owner()) {
        if(isWhitelistMode == true) {
            require(isAddressWhitelisted(msg.sender), "Wallet not Whitelisted");
            uint256 ownerMintedCount = WalletMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerWalletDuringWhitelist, "Whitelist: Max NFT per Wallet Reached");
            require(supply + _mintAmount <= NFTReservedForWhitelisted, "Whitelist: No more NFTs available");
        }
        if (isPresalesMode == true) {
            uint256 ownerMintedCount = WalletMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerWalletDuringPresales, "PreSales: Max NFT per Wallet Reached");
            require(supply + _mintAmount <= NFTReservedForPresales, "PreSales: No more NFTs available");
            require(msg.value >= PreSalesPriceNFT * _mintAmount, "PreSales: Balance Insufficient");
        }
        else {
            require(msg.value >= PriceNFT * _mintAmount, "Main Sale: Balance Insufficient"); 
        }
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      WalletMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
   function isAddressWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < WhitelistedWallets.length; i++) {
      if (WhitelistedWallets[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
  {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    if(RevealedActive == false) {
        return notRevealedUri;
    }

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

  //Only Owner
  function TurnRevealMode() public onlyOwner {
      RevealedActive = true;
  }

  function addWhitelistedWallets(address[] calldata _users) public onlyOwner {
    delete WhitelistedWallets;
    WhitelistedWallets = _users;
  }

  function SetisPauseMode(bool _state) public onlyOwner {
    isPauseMode = _state;
  }

  function SetisPresalesMode(bool _state) public onlyOwner {
    isPresalesMode = _state;
  }

  function SetisWhitelistMode(bool _state) public onlyOwner {
    isWhitelistMode = _state;
  }

  function setPriceNFT(uint256 _newPriceNFT) public onlyOwner {
    PriceNFT = _newPriceNFT;
  }

  function setPreSalesPriceNFT(uint256 _newPreSalesPriceNFT) public onlyOwner {
    PreSalesPriceNFT = _newPreSalesPriceNFT;
  }

  function setNFTReservedForWhitelisted(uint256 _NFTReservedForWhitelisted) public onlyOwner {
    NFTReservedForWhitelisted = _NFTReservedForWhitelisted;
  }

  function setNFTReservedForPresales(uint256 _NFTReservedForPresales) public onlyOwner {
    NFTReservedForPresales = _NFTReservedForPresales;
  }
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }
 
  function withdraw() public payable onlyOwner {
    (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":[],"name":"MaxCollection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTReservedForPresales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTReservedForWhitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSalesPriceNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PriceNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RevealedActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"SetisPauseMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"SetisPresalesMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"SetisWhitelistMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TurnRevealMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"WhitelistedWallets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelistedWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPauseMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresalesMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerWalletDuringPresales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerWalletDuringWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_NFTReservedForPresales","type":"uint256"}],"name":"setNFTReservedForPresales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_NFTReservedForWhitelisted","type":"uint256"}],"name":"setNFTReservedForWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPreSalesPriceNFT","type":"uint256"}],"name":"setPreSalesPriceNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPriceNFT","type":"uint256"}],"name":"setPriceNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000263565b506010805463ffffffff1916630100000017905567012a6d8e1122000060115561176f601255600a6013556109c460148190556005601581905560169190915560175566e35fa931a000006018553480156200008357600080fd5b506040516200321538038062003215833981016040819052620000a691620003d6565b604080518082018252600c81526b4d65746120446f7261646f7360a01b602080830191825283518085019094526007845266444f5241444f5360c81b908401528151919291620000f99160009162000263565b5080516200010f90600190602084019062000263565b5050506200012c620001266200014a60201b60201c565b6200014e565b6200013782620001a0565b620001428162000208565b50506200047d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ef5760405162461bcd60e51b81526020600482018190526024820152600080516020620031f583398151915260448201526064015b60405180910390fd5b80516200020490600b90602084019062000263565b5050565b600a546001600160a01b03163314620002535760405162461bcd60e51b81526020600482018190526024820152600080516020620031f58339815191526044820152606401620001e6565b80516200020490600d9060208401905b828054620002719062000440565b90600052602060002090601f016020900481019282620002955760008555620002e0565b82601f10620002b057805160ff1916838001178555620002e0565b82800160010185558215620002e0579182015b82811115620002e0578251825591602001919060010190620002c3565b50620002ee929150620002f2565b5090565b5b80821115620002ee5760008155600101620002f3565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200033157600080fd5b81516001600160401b03808211156200034e576200034e62000309565b604051601f8301601f19908116603f0116810190828211818310171562000379576200037962000309565b816040528381526020925086838588010111156200039657600080fd5b600091505b83821015620003ba57858201830151818301840152908201906200039b565b83821115620003cc5760008385830101525b9695505050505050565b60008060408385031215620003ea57600080fd5b82516001600160401b03808211156200040257600080fd5b62000410868387016200031f565b935060208501519150808211156200042757600080fd5b5062000436858286016200031f565b9150509250929050565b600181811c908216806200045557607f821691505b602082108114156200047757634e487b7160e01b600052602260045260246000fd5b50919050565b612d68806200048d6000396000f3fe6080604052600436106102ff5760003560e01c806370a0823111610190578063bf9bbad2116100dc578063da3ef23f11610095578063e793c9601161006f578063e793c96014610894578063e985e9c5146108b3578063f2c4ce1e146108fc578063f2fde38b1461091c57600080fd5b8063da3ef23f1461083a578063dad8d8ca1461085a578063dfe7d8611461087457600080fd5b8063bf9bbad21461078f578063c3a875be146107a5578063c6682862146107c5578063c87b56dd146107da578063d5497a6e146107fa578063d95d75b11461081a57600080fd5b806395d89b4111610149578063a2a7a31c11610123578063a2a7a31c14610724578063aa09b9061461073a578063b88d4fde1461075a578063bc0ac7461461077a57600080fd5b806395d89b41146106dc578063a0712d68146106f1578063a22cb4651461070457600080fd5b806370a082311461061c57806370a45fa31461063c578063715018a614610669578063761ef7b61461067e578063899b97201461069e5780638da5cb5b146106be57600080fd5b80633ccfd60b1161024f57806355f804b3116102085780636339cc00116101e25780636339cc00146105b15780636352211e146105d1578063672597d5146105f15780636c0360eb1461060757600080fd5b806355f804b3146105655780635a642620146105855780635d4ddb0d1461059b57600080fd5b80633ccfd60b146104ba5780633f2be8e2146104c257806342842e0e146104d8578063438b6300146104f85780634f6ccce71461052557806350afc5ba1461054557600080fd5b8063109e4918116102bc5780632386cc0c116102965780632386cc0c1461044457806323b872dd1461046457806329bccc44146104845780632f745c591461049a57600080fd5b8063109e4918146103ee57806313f44d101461040f57806318160ddd1461042f57600080fd5b806301f569971461030457806301ffc9a71461032d57806306fdde031461035d578063081812fc1461037f578063081c8c44146103b7578063095ea7b3146103cc575b600080fd5b34801561031057600080fd5b5061031a60135481565b6040519081526020015b60405180910390f35b34801561033957600080fd5b5061034d610348366004612648565b61093c565b6040519015158152602001610324565b34801561036957600080fd5b50610372610967565b60405161032491906126bd565b34801561038b57600080fd5b5061039f61039a3660046126d0565b6109f9565b6040516001600160a01b039091168152602001610324565b3480156103c357600080fd5b50610372610a93565b3480156103d857600080fd5b506103ec6103e7366004612705565b610b21565b005b3480156103fa57600080fd5b5060105461034d906301000000900460ff1681565b34801561041b57600080fd5b5061034d61042a36600461272f565b610c37565b34801561043b57600080fd5b5060085461031a565b34801561045057600080fd5b506103ec61045f36600461274a565b610ca1565b34801561047057600080fd5b506103ec61047f3660046127bf565b610ce3565b34801561049057600080fd5b5061031a60155481565b3480156104a657600080fd5b5061031a6104b5366004612705565b610d14565b6103ec610daa565b3480156104ce57600080fd5b5061031a60185481565b3480156104e457600080fd5b506103ec6104f33660046127bf565b610e48565b34801561050457600080fd5b5061051861051336600461272f565b610e63565b60405161032491906127fb565b34801561053157600080fd5b5061031a6105403660046126d0565b610f05565b34801561055157600080fd5b506103ec6105603660046126d0565b610f98565b34801561057157600080fd5b506103ec6105803660046128cb565b610fc7565b34801561059157600080fd5b5061031a60145481565b3480156105a757600080fd5b5061031a60125481565b3480156105bd57600080fd5b506103ec6105cc3660046126d0565b611008565b3480156105dd57600080fd5b5061039f6105ec3660046126d0565b611037565b3480156105fd57600080fd5b5061031a60165481565b34801561061357600080fd5b506103726110ae565b34801561062857600080fd5b5061031a61063736600461272f565b6110bb565b34801561064857600080fd5b5061031a61065736600461272f565b600f6020526000908152604090205481565b34801561067557600080fd5b506103ec611142565b34801561068a57600080fd5b506103ec6106993660046126d0565b611178565b3480156106aa57600080fd5b506103ec6106b9366004612924565b6111a7565b3480156106ca57600080fd5b50600a546001600160a01b031661039f565b3480156106e857600080fd5b506103726111eb565b6103ec6106ff3660046126d0565b6111fa565b34801561071057600080fd5b506103ec61071f36600461293f565b61167b565b34801561073057600080fd5b5061031a60175481565b34801561074657600080fd5b5061039f6107553660046126d0565b611686565b34801561076657600080fd5b506103ec610775366004612972565b6116b0565b34801561078657600080fd5b506103ec6116e8565b34801561079b57600080fd5b5061031a60115481565b3480156107b157600080fd5b5060105461034d9062010000900460ff1681565b3480156107d157600080fd5b50610372611721565b3480156107e657600080fd5b506103726107f53660046126d0565b61172e565b34801561080657600080fd5b506103ec610815366004612924565b6118a8565b34801561082657600080fd5b506103ec610835366004612924565b6118ee565b34801561084657600080fd5b506103ec6108553660046128cb565b611936565b34801561086657600080fd5b5060105461034d9060ff1681565b34801561088057600080fd5b506103ec61088f3660046126d0565b611973565b3480156108a057600080fd5b5060105461034d90610100900460ff1681565b3480156108bf57600080fd5b5061034d6108ce3660046129ee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561090857600080fd5b506103ec6109173660046128cb565b6119a2565b34801561092857600080fd5b506103ec61093736600461272f565b6119df565b60006001600160e01b0319821663780e9d6360e01b1480610961575061096182611a77565b92915050565b60606000805461097690612a18565b80601f01602080910402602001604051908101604052809291908181526020018280546109a290612a18565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d8054610aa090612a18565b80601f0160208091040260200160405190810160405280929190818152602001828054610acc90612a18565b8015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b505050505081565b6000610b2c82611037565b9050806001600160a01b0316836001600160a01b03161415610b9a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a6e565b336001600160a01b0382161480610bb65750610bb681336108ce565b610c285760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a6e565b610c328383611ac7565b505050565b6000805b600e54811015610c9857826001600160a01b0316600e8281548110610c6257610c62612a53565b6000918252602090912001546001600160a01b03161415610c865750600192915050565b80610c9081612a7f565b915050610c3b565b50600092915050565b600a546001600160a01b03163314610ccb5760405162461bcd60e51b8152600401610a6e90612a9a565b610cd7600e6000612528565b610c32600e8383612546565b610ced3382611b35565b610d095760405162461bcd60e51b8152600401610a6e90612acf565b610c32838383611c2c565b6000610d1f836110bb565b8210610d815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a6e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dd45760405162461bcd60e51b8152600401610a6e90612a9a565b6000610de8600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e32576040519150601f19603f3d011682016040523d82523d6000602084013e610e37565b606091505b5050905080610e4557600080fd5b50565b610c32838383604051806020016040528060008152506116b0565b60606000610e70836110bb565b905060008167ffffffffffffffff811115610e8d57610e8d61283f565b604051908082528060200260200182016040528015610eb6578160200160208202803683370190505b50905060005b82811015610efd57610ece8582610d14565b828281518110610ee057610ee0612a53565b602090810291909101015280610ef581612a7f565b915050610ebc565b509392505050565b6000610f1060085490565b8210610f735760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a6e565b60088281548110610f8657610f86612a53565b90600052602060002001549050919050565b600a546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610a6e90612a9a565b601655565b600a546001600160a01b03163314610ff15760405162461bcd60e51b8152600401610a6e90612a9a565b805161100490600b9060208401906125a9565b5050565b600a546001600160a01b031633146110325760405162461bcd60e51b8152600401610a6e90612a9a565b601455565b6000818152600260205260408120546001600160a01b0316806109615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a6e565b600b8054610aa090612a18565b60006001600160a01b0382166111265760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a6e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461116c5760405162461bcd60e51b8152600401610a6e90612a9a565b6111766000611dd7565b565b600a546001600160a01b031633146111a25760405162461bcd60e51b8152600401610a6e90612a9a565b601155565b600a546001600160a01b031633146111d15760405162461bcd60e51b8152600401610a6e90612a9a565b601080549115156101000261ff0019909216919091179055565b60606001805461097690612a18565b601054610100900460ff16156112425760405162461bcd60e51b815260206004820152600d60248201526c2830bab9b29026b7b2329027a760991b6044820152606401610a6e565b600061124d60085490565b90506000821161128e5760405162461bcd60e51b815260206004820152600c60248201526b14d95b1958dd080c4813919560a21b6044820152606401610a6e565b6013548211156112e05760405162461bcd60e51b815260206004820152601760248201527f4d6178204d696e7420416d6f756e7420526561636865640000000000000000006044820152606401610a6e565b6012546112ed8383612b20565b111561132c5760405162461bcd60e51b815260206004820152600e60248201526d10dbdb1b1958dd1bdb8814dbdb1960921b6044820152606401610a6e565b600a546001600160a01b0316331461162b5760105462010000900460ff161515600114156114825761135d33610c37565b6113a25760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d081b9bdd0815da1a5d195b1a5cdd195960521b6044820152606401610a6e565b336000908152600f60205260409020546015546113bf8483612b20565b111561141b5760405162461bcd60e51b815260206004820152602560248201527f57686974656c6973743a204d6178204e4654207065722057616c6c65742052656044820152641858da195960da1b6064820152608401610a6e565b6014546114288484612b20565b11156114805760405162461bcd60e51b815260206004820152602160248201527f57686974656c6973743a204e6f206d6f7265204e46547320617661696c61626c6044820152606560f81b6064820152608401610a6e565b505b6010546301000000900460ff161515600114156115ce57336000908152600f60205260409020546017546114b68483612b20565b11156115105760405162461bcd60e51b8152602060048201526024808201527f50726553616c65733a204d6178204e4654207065722057616c6c65742052656160448201526318da195960e21b6064820152608401610a6e565b60165461151d8484612b20565b111561156b5760405162461bcd60e51b815260206004820181905260248201527f50726553616c65733a204e6f206d6f7265204e46547320617661696c61626c656044820152606401610a6e565b826018546115799190612b38565b3410156115c85760405162461bcd60e51b815260206004820152601e60248201527f50726553616c65733a2042616c616e636520496e73756666696369656e7400006044820152606401610a6e565b5061162b565b816011546115dc9190612b38565b34101561162b5760405162461bcd60e51b815260206004820152601f60248201527f4d61696e2053616c653a2042616c616e636520496e73756666696369656e74006044820152606401610a6e565b60015b828111610c3257336000908152600f6020526040812080549161165083612a7f565b909155506116699050336116648385612b20565b611e29565b8061167381612a7f565b91505061162e565b611004338383611e43565b600e818154811061169657600080fd5b6000918252602090912001546001600160a01b0316905081565b6116ba3383611b35565b6116d65760405162461bcd60e51b8152600401610a6e90612acf565b6116e284848484611f12565b50505050565b600a546001600160a01b031633146117125760405162461bcd60e51b8152600401610a6e90612a9a565b6010805460ff19166001179055565b600c8054610aa090612a18565b6000818152600260205260409020546060906001600160a01b03166117ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a6e565b60105460ff1661184957600d80546117c490612a18565b80601f01602080910402602001604051908101604052809291908181526020018280546117f090612a18565b801561183d5780601f106118125761010080835404028352916020019161183d565b820191906000526020600020905b81548152906001019060200180831161182057829003601f168201915b50505050509050919050565b6000611853611f45565b9050600081511161187357604051806020016040528060008152506118a1565b8061187d84611f54565b600c60405160200161189193929190612b57565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146118d25760405162461bcd60e51b8152600401610a6e90612a9a565b60108054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146119185760405162461bcd60e51b8152600401610a6e90612a9a565b6010805491151563010000000263ff00000019909216919091179055565b600a546001600160a01b031633146119605760405162461bcd60e51b8152600401610a6e90612a9a565b805161100490600c9060208401906125a9565b600a546001600160a01b0316331461199d5760405162461bcd60e51b8152600401610a6e90612a9a565b601855565b600a546001600160a01b031633146119cc5760405162461bcd60e51b8152600401610a6e90612a9a565b805161100490600d9060208401906125a9565b600a546001600160a01b03163314611a095760405162461bcd60e51b8152600401610a6e90612a9a565b6001600160a01b038116611a6e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6e565b610e4581611dd7565b60006001600160e01b031982166380ac58cd60e01b1480611aa857506001600160e01b03198216635b5e139f60e01b145b8061096157506301ffc9a760e01b6001600160e01b0319831614610961565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611afc82611037565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a6e565b6000611bb983611037565b9050806001600160a01b0316846001600160a01b03161480611bf45750836001600160a01b0316611be9846109f9565b6001600160a01b0316145b80611c2457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c3f82611037565b6001600160a01b031614611ca75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a6e565b6001600160a01b038216611d095760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6e565b611d14838383612052565b611d1f600082611ac7565b6001600160a01b0383166000908152600360205260408120805460019290611d48908490612c1b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d76908490612b20565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61100482826040518060200160405280600081525061210a565b816001600160a01b0316836001600160a01b03161415611ea55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a6e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f1d848484611c2c565b611f298484848461213d565b6116e25760405162461bcd60e51b8152600401610a6e90612c32565b6060600b805461097690612a18565b606081611f785750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fa25780611f8c81612a7f565b9150611f9b9050600a83612c9a565b9150611f7c565b60008167ffffffffffffffff811115611fbd57611fbd61283f565b6040519080825280601f01601f191660200182016040528015611fe7576020820181803683370190505b5090505b8415611c2457611ffc600183612c1b565b9150612009600a86612cae565b612014906030612b20565b60f81b81838151811061202957612029612a53565b60200101906001600160f81b031916908160001a90535061204b600a86612c9a565b9450611feb565b6001600160a01b0383166120ad576120a881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120d0565b816001600160a01b0316836001600160a01b0316146120d0576120d0838261224a565b6001600160a01b0382166120e757610c32816122e7565b826001600160a01b0316826001600160a01b031614610c3257610c328282612396565b61211483836123da565b612121600084848461213d565b610c325760405162461bcd60e51b8152600401610a6e90612c32565b60006001600160a01b0384163b1561223f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612181903390899088908890600401612cc2565b602060405180830381600087803b15801561219b57600080fd5b505af19250505080156121cb575060408051601f3d908101601f191682019092526121c891810190612cff565b60015b612225573d8080156121f9576040519150601f19603f3d011682016040523d82523d6000602084013e6121fe565b606091505b50805161221d5760405162461bcd60e51b8152600401610a6e90612c32565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c24565b506001949350505050565b60006001612257846110bb565b6122619190612c1b565b6000838152600760205260409020549091508082146122b4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122f990600190612c1b565b6000838152600960205260408120546008805493945090928490811061232157612321612a53565b90600052602060002001549050806008838154811061234257612342612a53565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061237a5761237a612d1c565b6001900381819060005260206000200160009055905550505050565b60006123a1836110bb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a6e565b6000818152600260205260409020546001600160a01b0316156124955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a6e565b6124a160008383612052565b6001600160a01b03821660009081526003602052604081208054600192906124ca908490612b20565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610e45919061261d565b828054828255906000526020600020908101928215612599579160200282015b828111156125995781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612566565b506125a592915061261d565b5090565b8280546125b590612a18565b90600052602060002090601f0160209004810192826125d75760008555612599565b82601f106125f057805160ff1916838001178555612599565b82800160010185558215612599579182015b82811115612599578251825591602001919060010190612602565b5b808211156125a5576000815560010161261e565b6001600160e01b031981168114610e4557600080fd5b60006020828403121561265a57600080fd5b81356118a181612632565b60005b83811015612680578181015183820152602001612668565b838111156116e25750506000910152565b600081518084526126a9816020860160208601612665565b601f01601f19169290920160200192915050565b6020815260006118a16020830184612691565b6000602082840312156126e257600080fd5b5035919050565b80356001600160a01b038116811461270057600080fd5b919050565b6000806040838503121561271857600080fd5b612721836126e9565b946020939093013593505050565b60006020828403121561274157600080fd5b6118a1826126e9565b6000806020838503121561275d57600080fd5b823567ffffffffffffffff8082111561277557600080fd5b818501915085601f83011261278957600080fd5b81358181111561279857600080fd5b8660208260051b85010111156127ad57600080fd5b60209290920196919550909350505050565b6000806000606084860312156127d457600080fd5b6127dd846126e9565b92506127eb602085016126e9565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561283357835183529284019291840191600101612817565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128705761287061283f565b604051601f8501601f19908116603f011681019082821181831017156128985761289861283f565b816040528093508581528686860111156128b157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156128dd57600080fd5b813567ffffffffffffffff8111156128f457600080fd5b8201601f8101841361290557600080fd5b611c2484823560208401612855565b8035801515811461270057600080fd5b60006020828403121561293657600080fd5b6118a182612914565b6000806040838503121561295257600080fd5b61295b836126e9565b915061296960208401612914565b90509250929050565b6000806000806080858703121561298857600080fd5b612991856126e9565b935061299f602086016126e9565b925060408501359150606085013567ffffffffffffffff8111156129c257600080fd5b8501601f810187136129d357600080fd5b6129e287823560208401612855565b91505092959194509250565b60008060408385031215612a0157600080fd5b612a0a836126e9565b9150612969602084016126e9565b600181811c90821680612a2c57607f821691505b60208210811415612a4d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a9357612a93612a69565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612b3357612b33612a69565b500190565b6000816000190483118215151615612b5257612b52612a69565b500290565b600084516020612b6a8285838a01612665565b855191840191612b7d8184848a01612665565b8554920191600090600181811c9080831680612b9a57607f831692505b858310811415612bb857634e487b7160e01b85526022600452602485fd5b808015612bcc5760018114612bdd57612c0a565b60ff19851688528388019550612c0a565b60008b81526020902060005b85811015612c025781548a820152908401908801612be9565b505083880195505b50939b9a5050505050505050505050565b600082821015612c2d57612c2d612a69565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612ca957612ca9612c84565b500490565b600082612cbd57612cbd612c84565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf590830184612691565b9695505050505050565b600060208284031215612d1157600080fd5b81516118a181612632565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220344d8681e55d7b9e47bb8cd120f70f304c7a0844d3b36dcab97bafd9303b59dc64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63365a55313563577447424573524e55446e4e366d75516464656d675352613331664e4c7772396e38397a752f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5448425a47617841544a47325146475479356f6d746f7265487465327659724c6f314758573975617454446f0000000000000000000000

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c806370a0823111610190578063bf9bbad2116100dc578063da3ef23f11610095578063e793c9601161006f578063e793c96014610894578063e985e9c5146108b3578063f2c4ce1e146108fc578063f2fde38b1461091c57600080fd5b8063da3ef23f1461083a578063dad8d8ca1461085a578063dfe7d8611461087457600080fd5b8063bf9bbad21461078f578063c3a875be146107a5578063c6682862146107c5578063c87b56dd146107da578063d5497a6e146107fa578063d95d75b11461081a57600080fd5b806395d89b4111610149578063a2a7a31c11610123578063a2a7a31c14610724578063aa09b9061461073a578063b88d4fde1461075a578063bc0ac7461461077a57600080fd5b806395d89b41146106dc578063a0712d68146106f1578063a22cb4651461070457600080fd5b806370a082311461061c57806370a45fa31461063c578063715018a614610669578063761ef7b61461067e578063899b97201461069e5780638da5cb5b146106be57600080fd5b80633ccfd60b1161024f57806355f804b3116102085780636339cc00116101e25780636339cc00146105b15780636352211e146105d1578063672597d5146105f15780636c0360eb1461060757600080fd5b806355f804b3146105655780635a642620146105855780635d4ddb0d1461059b57600080fd5b80633ccfd60b146104ba5780633f2be8e2146104c257806342842e0e146104d8578063438b6300146104f85780634f6ccce71461052557806350afc5ba1461054557600080fd5b8063109e4918116102bc5780632386cc0c116102965780632386cc0c1461044457806323b872dd1461046457806329bccc44146104845780632f745c591461049a57600080fd5b8063109e4918146103ee57806313f44d101461040f57806318160ddd1461042f57600080fd5b806301f569971461030457806301ffc9a71461032d57806306fdde031461035d578063081812fc1461037f578063081c8c44146103b7578063095ea7b3146103cc575b600080fd5b34801561031057600080fd5b5061031a60135481565b6040519081526020015b60405180910390f35b34801561033957600080fd5b5061034d610348366004612648565b61093c565b6040519015158152602001610324565b34801561036957600080fd5b50610372610967565b60405161032491906126bd565b34801561038b57600080fd5b5061039f61039a3660046126d0565b6109f9565b6040516001600160a01b039091168152602001610324565b3480156103c357600080fd5b50610372610a93565b3480156103d857600080fd5b506103ec6103e7366004612705565b610b21565b005b3480156103fa57600080fd5b5060105461034d906301000000900460ff1681565b34801561041b57600080fd5b5061034d61042a36600461272f565b610c37565b34801561043b57600080fd5b5060085461031a565b34801561045057600080fd5b506103ec61045f36600461274a565b610ca1565b34801561047057600080fd5b506103ec61047f3660046127bf565b610ce3565b34801561049057600080fd5b5061031a60155481565b3480156104a657600080fd5b5061031a6104b5366004612705565b610d14565b6103ec610daa565b3480156104ce57600080fd5b5061031a60185481565b3480156104e457600080fd5b506103ec6104f33660046127bf565b610e48565b34801561050457600080fd5b5061051861051336600461272f565b610e63565b60405161032491906127fb565b34801561053157600080fd5b5061031a6105403660046126d0565b610f05565b34801561055157600080fd5b506103ec6105603660046126d0565b610f98565b34801561057157600080fd5b506103ec6105803660046128cb565b610fc7565b34801561059157600080fd5b5061031a60145481565b3480156105a757600080fd5b5061031a60125481565b3480156105bd57600080fd5b506103ec6105cc3660046126d0565b611008565b3480156105dd57600080fd5b5061039f6105ec3660046126d0565b611037565b3480156105fd57600080fd5b5061031a60165481565b34801561061357600080fd5b506103726110ae565b34801561062857600080fd5b5061031a61063736600461272f565b6110bb565b34801561064857600080fd5b5061031a61065736600461272f565b600f6020526000908152604090205481565b34801561067557600080fd5b506103ec611142565b34801561068a57600080fd5b506103ec6106993660046126d0565b611178565b3480156106aa57600080fd5b506103ec6106b9366004612924565b6111a7565b3480156106ca57600080fd5b50600a546001600160a01b031661039f565b3480156106e857600080fd5b506103726111eb565b6103ec6106ff3660046126d0565b6111fa565b34801561071057600080fd5b506103ec61071f36600461293f565b61167b565b34801561073057600080fd5b5061031a60175481565b34801561074657600080fd5b5061039f6107553660046126d0565b611686565b34801561076657600080fd5b506103ec610775366004612972565b6116b0565b34801561078657600080fd5b506103ec6116e8565b34801561079b57600080fd5b5061031a60115481565b3480156107b157600080fd5b5060105461034d9062010000900460ff1681565b3480156107d157600080fd5b50610372611721565b3480156107e657600080fd5b506103726107f53660046126d0565b61172e565b34801561080657600080fd5b506103ec610815366004612924565b6118a8565b34801561082657600080fd5b506103ec610835366004612924565b6118ee565b34801561084657600080fd5b506103ec6108553660046128cb565b611936565b34801561086657600080fd5b5060105461034d9060ff1681565b34801561088057600080fd5b506103ec61088f3660046126d0565b611973565b3480156108a057600080fd5b5060105461034d90610100900460ff1681565b3480156108bf57600080fd5b5061034d6108ce3660046129ee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561090857600080fd5b506103ec6109173660046128cb565b6119a2565b34801561092857600080fd5b506103ec61093736600461272f565b6119df565b60006001600160e01b0319821663780e9d6360e01b1480610961575061096182611a77565b92915050565b60606000805461097690612a18565b80601f01602080910402602001604051908101604052809291908181526020018280546109a290612a18565b80156109ef5780601f106109c4576101008083540402835291602001916109ef565b820191906000526020600020905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d8054610aa090612a18565b80601f0160208091040260200160405190810160405280929190818152602001828054610acc90612a18565b8015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b505050505081565b6000610b2c82611037565b9050806001600160a01b0316836001600160a01b03161415610b9a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a6e565b336001600160a01b0382161480610bb65750610bb681336108ce565b610c285760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a6e565b610c328383611ac7565b505050565b6000805b600e54811015610c9857826001600160a01b0316600e8281548110610c6257610c62612a53565b6000918252602090912001546001600160a01b03161415610c865750600192915050565b80610c9081612a7f565b915050610c3b565b50600092915050565b600a546001600160a01b03163314610ccb5760405162461bcd60e51b8152600401610a6e90612a9a565b610cd7600e6000612528565b610c32600e8383612546565b610ced3382611b35565b610d095760405162461bcd60e51b8152600401610a6e90612acf565b610c32838383611c2c565b6000610d1f836110bb565b8210610d815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a6e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dd45760405162461bcd60e51b8152600401610a6e90612a9a565b6000610de8600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e32576040519150601f19603f3d011682016040523d82523d6000602084013e610e37565b606091505b5050905080610e4557600080fd5b50565b610c32838383604051806020016040528060008152506116b0565b60606000610e70836110bb565b905060008167ffffffffffffffff811115610e8d57610e8d61283f565b604051908082528060200260200182016040528015610eb6578160200160208202803683370190505b50905060005b82811015610efd57610ece8582610d14565b828281518110610ee057610ee0612a53565b602090810291909101015280610ef581612a7f565b915050610ebc565b509392505050565b6000610f1060085490565b8210610f735760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a6e565b60088281548110610f8657610f86612a53565b90600052602060002001549050919050565b600a546001600160a01b03163314610fc25760405162461bcd60e51b8152600401610a6e90612a9a565b601655565b600a546001600160a01b03163314610ff15760405162461bcd60e51b8152600401610a6e90612a9a565b805161100490600b9060208401906125a9565b5050565b600a546001600160a01b031633146110325760405162461bcd60e51b8152600401610a6e90612a9a565b601455565b6000818152600260205260408120546001600160a01b0316806109615760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a6e565b600b8054610aa090612a18565b60006001600160a01b0382166111265760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a6e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461116c5760405162461bcd60e51b8152600401610a6e90612a9a565b6111766000611dd7565b565b600a546001600160a01b031633146111a25760405162461bcd60e51b8152600401610a6e90612a9a565b601155565b600a546001600160a01b031633146111d15760405162461bcd60e51b8152600401610a6e90612a9a565b601080549115156101000261ff0019909216919091179055565b60606001805461097690612a18565b601054610100900460ff16156112425760405162461bcd60e51b815260206004820152600d60248201526c2830bab9b29026b7b2329027a760991b6044820152606401610a6e565b600061124d60085490565b90506000821161128e5760405162461bcd60e51b815260206004820152600c60248201526b14d95b1958dd080c4813919560a21b6044820152606401610a6e565b6013548211156112e05760405162461bcd60e51b815260206004820152601760248201527f4d6178204d696e7420416d6f756e7420526561636865640000000000000000006044820152606401610a6e565b6012546112ed8383612b20565b111561132c5760405162461bcd60e51b815260206004820152600e60248201526d10dbdb1b1958dd1bdb8814dbdb1960921b6044820152606401610a6e565b600a546001600160a01b0316331461162b5760105462010000900460ff161515600114156114825761135d33610c37565b6113a25760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d081b9bdd0815da1a5d195b1a5cdd195960521b6044820152606401610a6e565b336000908152600f60205260409020546015546113bf8483612b20565b111561141b5760405162461bcd60e51b815260206004820152602560248201527f57686974656c6973743a204d6178204e4654207065722057616c6c65742052656044820152641858da195960da1b6064820152608401610a6e565b6014546114288484612b20565b11156114805760405162461bcd60e51b815260206004820152602160248201527f57686974656c6973743a204e6f206d6f7265204e46547320617661696c61626c6044820152606560f81b6064820152608401610a6e565b505b6010546301000000900460ff161515600114156115ce57336000908152600f60205260409020546017546114b68483612b20565b11156115105760405162461bcd60e51b8152602060048201526024808201527f50726553616c65733a204d6178204e4654207065722057616c6c65742052656160448201526318da195960e21b6064820152608401610a6e565b60165461151d8484612b20565b111561156b5760405162461bcd60e51b815260206004820181905260248201527f50726553616c65733a204e6f206d6f7265204e46547320617661696c61626c656044820152606401610a6e565b826018546115799190612b38565b3410156115c85760405162461bcd60e51b815260206004820152601e60248201527f50726553616c65733a2042616c616e636520496e73756666696369656e7400006044820152606401610a6e565b5061162b565b816011546115dc9190612b38565b34101561162b5760405162461bcd60e51b815260206004820152601f60248201527f4d61696e2053616c653a2042616c616e636520496e73756666696369656e74006044820152606401610a6e565b60015b828111610c3257336000908152600f6020526040812080549161165083612a7f565b909155506116699050336116648385612b20565b611e29565b8061167381612a7f565b91505061162e565b611004338383611e43565b600e818154811061169657600080fd5b6000918252602090912001546001600160a01b0316905081565b6116ba3383611b35565b6116d65760405162461bcd60e51b8152600401610a6e90612acf565b6116e284848484611f12565b50505050565b600a546001600160a01b031633146117125760405162461bcd60e51b8152600401610a6e90612a9a565b6010805460ff19166001179055565b600c8054610aa090612a18565b6000818152600260205260409020546060906001600160a01b03166117ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a6e565b60105460ff1661184957600d80546117c490612a18565b80601f01602080910402602001604051908101604052809291908181526020018280546117f090612a18565b801561183d5780601f106118125761010080835404028352916020019161183d565b820191906000526020600020905b81548152906001019060200180831161182057829003601f168201915b50505050509050919050565b6000611853611f45565b9050600081511161187357604051806020016040528060008152506118a1565b8061187d84611f54565b600c60405160200161189193929190612b57565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146118d25760405162461bcd60e51b8152600401610a6e90612a9a565b60108054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146119185760405162461bcd60e51b8152600401610a6e90612a9a565b6010805491151563010000000263ff00000019909216919091179055565b600a546001600160a01b031633146119605760405162461bcd60e51b8152600401610a6e90612a9a565b805161100490600c9060208401906125a9565b600a546001600160a01b0316331461199d5760405162461bcd60e51b8152600401610a6e90612a9a565b601855565b600a546001600160a01b031633146119cc5760405162461bcd60e51b8152600401610a6e90612a9a565b805161100490600d9060208401906125a9565b600a546001600160a01b03163314611a095760405162461bcd60e51b8152600401610a6e90612a9a565b6001600160a01b038116611a6e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6e565b610e4581611dd7565b60006001600160e01b031982166380ac58cd60e01b1480611aa857506001600160e01b03198216635b5e139f60e01b145b8061096157506301ffc9a760e01b6001600160e01b0319831614610961565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611afc82611037565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a6e565b6000611bb983611037565b9050806001600160a01b0316846001600160a01b03161480611bf45750836001600160a01b0316611be9846109f9565b6001600160a01b0316145b80611c2457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c3f82611037565b6001600160a01b031614611ca75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a6e565b6001600160a01b038216611d095760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6e565b611d14838383612052565b611d1f600082611ac7565b6001600160a01b0383166000908152600360205260408120805460019290611d48908490612c1b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d76908490612b20565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61100482826040518060200160405280600081525061210a565b816001600160a01b0316836001600160a01b03161415611ea55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a6e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f1d848484611c2c565b611f298484848461213d565b6116e25760405162461bcd60e51b8152600401610a6e90612c32565b6060600b805461097690612a18565b606081611f785750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fa25780611f8c81612a7f565b9150611f9b9050600a83612c9a565b9150611f7c565b60008167ffffffffffffffff811115611fbd57611fbd61283f565b6040519080825280601f01601f191660200182016040528015611fe7576020820181803683370190505b5090505b8415611c2457611ffc600183612c1b565b9150612009600a86612cae565b612014906030612b20565b60f81b81838151811061202957612029612a53565b60200101906001600160f81b031916908160001a90535061204b600a86612c9a565b9450611feb565b6001600160a01b0383166120ad576120a881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120d0565b816001600160a01b0316836001600160a01b0316146120d0576120d0838261224a565b6001600160a01b0382166120e757610c32816122e7565b826001600160a01b0316826001600160a01b031614610c3257610c328282612396565b61211483836123da565b612121600084848461213d565b610c325760405162461bcd60e51b8152600401610a6e90612c32565b60006001600160a01b0384163b1561223f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612181903390899088908890600401612cc2565b602060405180830381600087803b15801561219b57600080fd5b505af19250505080156121cb575060408051601f3d908101601f191682019092526121c891810190612cff565b60015b612225573d8080156121f9576040519150601f19603f3d011682016040523d82523d6000602084013e6121fe565b606091505b50805161221d5760405162461bcd60e51b8152600401610a6e90612c32565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c24565b506001949350505050565b60006001612257846110bb565b6122619190612c1b565b6000838152600760205260409020549091508082146122b4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122f990600190612c1b565b6000838152600960205260408120546008805493945090928490811061232157612321612a53565b90600052602060002001549050806008838154811061234257612342612a53565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061237a5761237a612d1c565b6001900381819060005260206000200160009055905550505050565b60006123a1836110bb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a6e565b6000818152600260205260409020546001600160a01b0316156124955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a6e565b6124a160008383612052565b6001600160a01b03821660009081526003602052604081208054600192906124ca908490612b20565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610e45919061261d565b828054828255906000526020600020908101928215612599579160200282015b828111156125995781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612566565b506125a592915061261d565b5090565b8280546125b590612a18565b90600052602060002090601f0160209004810192826125d75760008555612599565b82601f106125f057805160ff1916838001178555612599565b82800160010185558215612599579182015b82811115612599578251825591602001919060010190612602565b5b808211156125a5576000815560010161261e565b6001600160e01b031981168114610e4557600080fd5b60006020828403121561265a57600080fd5b81356118a181612632565b60005b83811015612680578181015183820152602001612668565b838111156116e25750506000910152565b600081518084526126a9816020860160208601612665565b601f01601f19169290920160200192915050565b6020815260006118a16020830184612691565b6000602082840312156126e257600080fd5b5035919050565b80356001600160a01b038116811461270057600080fd5b919050565b6000806040838503121561271857600080fd5b612721836126e9565b946020939093013593505050565b60006020828403121561274157600080fd5b6118a1826126e9565b6000806020838503121561275d57600080fd5b823567ffffffffffffffff8082111561277557600080fd5b818501915085601f83011261278957600080fd5b81358181111561279857600080fd5b8660208260051b85010111156127ad57600080fd5b60209290920196919550909350505050565b6000806000606084860312156127d457600080fd5b6127dd846126e9565b92506127eb602085016126e9565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b8181101561283357835183529284019291840191600101612817565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156128705761287061283f565b604051601f8501601f19908116603f011681019082821181831017156128985761289861283f565b816040528093508581528686860111156128b157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156128dd57600080fd5b813567ffffffffffffffff8111156128f457600080fd5b8201601f8101841361290557600080fd5b611c2484823560208401612855565b8035801515811461270057600080fd5b60006020828403121561293657600080fd5b6118a182612914565b6000806040838503121561295257600080fd5b61295b836126e9565b915061296960208401612914565b90509250929050565b6000806000806080858703121561298857600080fd5b612991856126e9565b935061299f602086016126e9565b925060408501359150606085013567ffffffffffffffff8111156129c257600080fd5b8501601f810187136129d357600080fd5b6129e287823560208401612855565b91505092959194509250565b60008060408385031215612a0157600080fd5b612a0a836126e9565b9150612969602084016126e9565b600181811c90821680612a2c57607f821691505b60208210811415612a4d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a9357612a93612a69565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612b3357612b33612a69565b500190565b6000816000190483118215151615612b5257612b52612a69565b500290565b600084516020612b6a8285838a01612665565b855191840191612b7d8184848a01612665565b8554920191600090600181811c9080831680612b9a57607f831692505b858310811415612bb857634e487b7160e01b85526022600452602485fd5b808015612bcc5760018114612bdd57612c0a565b60ff19851688528388019550612c0a565b60008b81526020902060005b85811015612c025781548a820152908401908801612be9565b505083880195505b50939b9a5050505050505050505050565b600082821015612c2d57612c2d612a69565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612ca957612ca9612c84565b500490565b600082612cbd57612cbd612c84565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf590830184612691565b9695505050505050565b600060208284031215612d1157600080fd5b81516118a181612632565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220344d8681e55d7b9e47bb8cd120f70f304c7a0844d3b36dcab97bafd9303b59dc64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63365a55313563577447424573524e55446e4e366d75516464656d675352613331664e4c7772396e38397a752f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5448425a47617841544a47325146475479356f6d746f7265487465327659724c6f314758573975617454446f0000000000000000000000

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

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d63365a55313563577447424573524e55446e4e366d7551
Arg [4] : 6464656d675352613331664e4c7772396e38397a752f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d5448425a47617841544a47325146475479356f6d746f72
Arg [7] : 65487465327659724c6f314758573975617454446f0000000000000000000000


Deployed Bytecode Sourcemap

44531:5483:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45067:41;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;45067:41:0;;;;;;;;38305:224;;;;;;;;;;-1:-1:-1;38305:224:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;38305:224:0;582:187:1;25799:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27358:221::-;;;;;;;;;;-1:-1:-1;27358:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;27358:221:0;1710:203:1;44686:28:0;;;;;;;;;;;;;:::i;26881:411::-;;;;;;;;;;-1:-1:-1;26881:411:0;;;;;:::i;:::-;;:::i;:::-;;44933:33;;;;;;;;;;-1:-1:-1;44933:33:0;;;;;;;;;;;47362:242;;;;;;;;;;-1:-1:-1;47362:242:0;;;;;:::i;:::-;;:::i;38945:113::-;;;;;;;;;;-1:-1:-1;39033:10:0;:17;38945:113;;48509:147;;;;;;;;;;-1:-1:-1;48509:147:0;;;;;:::i;:::-;;:::i;28108:339::-;;;;;;;;;;-1:-1:-1;28108:339:0;;;;;:::i;:::-;;:::i;45209:46::-;;;;;;;;;;;;;;;;38613:256;;;;;;;;;;-1:-1:-1;38613:256:0;;;;;:::i;:::-;;:::i;49866:145::-;;;:::i;45393:45::-;;;;;;;;;;;;;;;;28518:185;;;;;;;;;;-1:-1:-1;28518:185:0;;;;;:::i;:::-;;:::i;47610:333::-;;;;;;;;;;-1:-1:-1;47610:333:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39135:233::-;;;;;;;;;;-1:-1:-1;39135:233:0;;;;;:::i;:::-;;:::i;49355:146::-;;;;;;;;;;-1:-1:-1;49355:146:0;;;;;:::i;:::-;;:::i;49505:98::-;;;;;;;;;;-1:-1:-1;49505:98:0;;;;;:::i;:::-;;:::i;45113:47::-;;;;;;;;;;;;;;;;45027:35;;;;;;;;;;;;;;;;49191:158;;;;;;;;;;-1:-1:-1;49191:158:0;;;;;:::i;:::-;;:::i;25493:239::-;;;;;;;;;;-1:-1:-1;25493:239:0;;;;;:::i;:::-;;:::i;45261:44::-;;;;;;;;;;;;;;;;44618:21;;;;;;;;;;;;;:::i;25223:208::-;;;;;;;;;;-1:-1:-1;25223:208:0;;;;;:::i;:::-;;:::i;44759:54::-;;;;;;;;;;-1:-1:-1;44759:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;4769:103;;;;;;;;;;;;;:::i;48955:96::-;;;;;;;;;;-1:-1:-1;48955:96:0;;;;;:::i;:::-;;:::i;48662:87::-;;;;;;;;;;-1:-1:-1;48662:87:0;;;;;:::i;:::-;;:::i;4118:::-;;;;;;;;;;-1:-1:-1;4191:6:0;;-1:-1:-1;;;;;4191:6:0;4118:87;;25968:104;;;;;;;;;;;;;:::i;45812:1541::-;;;;;;:::i;:::-;;:::i;27651:155::-;;;;;;;;;;-1:-1:-1;27651:155:0;;;;;:::i;:::-;;:::i;45343:45::-;;;;;;;;;;;;;;;;44719:35;;;;;;;;;;-1:-1:-1;44719:35:0;;;;;:::i;:::-;;:::i;28774:328::-;;;;;;;;;;-1:-1:-1;28774:328:0;;;;;:::i;:::-;;:::i;48424:79::-;;;;;;;;;;;;;:::i;44971:37::-;;;;;;;;;;;;;;;;44893:35;;;;;;;;;;-1:-1:-1;44893:35:0;;;;;;;;;;;44644:37;;;;;;;;;;;;;:::i;47949:453::-;;;;;;;;;;-1:-1:-1;47949:453:0;;;;;:::i;:::-;;:::i;48854:95::-;;;;;;;;;;-1:-1:-1;48854:95:0;;;;;:::i;:::-;;:::i;48755:93::-;;;;;;;;;;-1:-1:-1;48755:93:0;;;;;:::i;:::-;;:::i;49609:122::-;;;;;;;;;;-1:-1:-1;49609:122:0;;;;;:::i;:::-;;:::i;44818:34::-;;;;;;;;;;-1:-1:-1;44818:34:0;;;;;;;;49057:128;;;;;;;;;;-1:-1:-1;49057:128:0;;;;;:::i;:::-;;:::i;44857:31::-;;;;;;;;;;-1:-1:-1;44857:31:0;;;;;;;;;;;27877:164;;;;;;;;;;-1:-1:-1;27877:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27998:25:0;;;27974:4;27998:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27877:164;49739:120;;;;;;;;;;-1:-1:-1;49739:120:0;;;;;:::i;:::-;;:::i;5027:201::-;;;;;;;;;;-1:-1:-1;5027:201:0;;;;;:::i;:::-;;:::i;38305:224::-;38407:4;-1:-1:-1;;;;;;38431:50:0;;-1:-1:-1;;;38431:50:0;;:90;;;38485:36;38509:11;38485:23;:36::i;:::-;38424:97;38305:224;-1:-1:-1;;38305:224:0:o;25799:100::-;25853:13;25886:5;25879:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25799:100;:::o;27358:221::-;27434:7;30701:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30701:16:0;27454:73;;;;-1:-1:-1;;;27454:73:0;;7494:2:1;27454:73:0;;;7476:21:1;7533:2;7513:18;;;7506:30;7572:34;7552:18;;;7545:62;-1:-1:-1;;;7623:18:1;;;7616:42;7675:19;;27454:73:0;;;;;;;;;-1:-1:-1;27547:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27547:24:0;;27358:221::o;44686:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26881:411::-;26962:13;26978:23;26993:7;26978:14;:23::i;:::-;26962:39;;27026:5;-1:-1:-1;;;;;27020:11:0;:2;-1:-1:-1;;;;;27020:11:0;;;27012:57;;;;-1:-1:-1;;;27012:57:0;;7907:2:1;27012:57:0;;;7889:21:1;7946:2;7926:18;;;7919:30;7985:34;7965:18;;;7958:62;-1:-1:-1;;;8036:18:1;;;8029:31;8077:19;;27012:57:0;7705:397:1;27012:57:0;2922:10;-1:-1:-1;;;;;27104:21:0;;;;:62;;-1:-1:-1;27129:37:0;27146:5;2922:10;27877:164;:::i;27129:37::-;27082:168;;;;-1:-1:-1;;;27082:168:0;;8309:2:1;27082:168:0;;;8291:21:1;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;8458:26;8438:18;;;8431:54;8502:19;;27082:168:0;8107:420:1;27082:168:0;27263:21;27272:2;27276:7;27263:8;:21::i;:::-;26951:341;26881:411;;:::o;47362:242::-;47428:4;;47441:139;47462:18;:25;47458:29;;47441:139;;;47532:5;-1:-1:-1;;;;;47507:30:0;:18;47526:1;47507:21;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;47507:21:0;:30;47503:70;;;-1:-1:-1;47559:4:0;;47362:242;-1:-1:-1;;47362:242:0:o;47503:70::-;47489:3;;;;:::i;:::-;;;;47441:139;;;-1:-1:-1;47593:5:0;;47362:242;-1:-1:-1;;47362:242:0:o;48509:147::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;48591:25:::1;48598:18;;48591:25;:::i;:::-;48623:27;:18;48644:6:::0;;48623:27:::1;:::i;28108:339::-:0;28303:41;2922:10;28336:7;28303:18;:41::i;:::-;28295:103;;;;-1:-1:-1;;;28295:103:0;;;;;;;:::i;:::-;28411:28;28421:4;28427:2;28431:7;28411:9;:28::i;38613:256::-;38710:7;38746:23;38763:5;38746:16;:23::i;:::-;38738:5;:31;38730:87;;;;-1:-1:-1;;;38730:87:0;;9917:2:1;38730:87:0;;;9899:21:1;9956:2;9936:18;;;9929:30;9995:34;9975:18;;;9968:62;-1:-1:-1;;;10046:18:1;;;10039:41;10097:19;;38730:87:0;9715:407:1;38730:87:0;-1:-1:-1;;;;;;38835:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38613:256::o;49866:145::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;49919:7:::1;49940;4191:6:::0;;-1:-1:-1;;;;;4191:6:0;;4118:87;49940:7:::1;-1:-1:-1::0;;;;;49932:21:0::1;49961;49932:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49918:69;;;50002:2;49994:11;;;::::0;::::1;;49911:100;49866:145::o:0;28518:185::-;28656:39;28673:4;28679:2;28683:7;28656:39;;;;;;;;;;;;:16;:39::i;47610:333::-;47670:16;47698:23;47724:17;47734:6;47724:9;:17::i;:::-;47698:43;;47748:25;47790:15;47776:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47776:30:0;;47748:58;;47818:9;47813:103;47833:15;47829:1;:19;47813:103;;;47878:30;47898:6;47906:1;47878:19;:30::i;:::-;47864:8;47873:1;47864:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47850:3;;;;:::i;:::-;;;;47813:103;;;-1:-1:-1;47929:8:0;47610:333;-1:-1:-1;;;47610:333:0:o;39135:233::-;39210:7;39246:30;39033:10;:17;;38945:113;39246:30;39238:5;:38;39230:95;;;;-1:-1:-1;;;39230:95:0;;10539:2:1;39230:95:0;;;10521:21:1;10578:2;10558:18;;;10551:30;10617:34;10597:18;;;10590:62;-1:-1:-1;;;10668:18:1;;;10661:42;10720:19;;39230:95:0;10337:408:1;39230:95:0;39343:10;39354:5;39343:17;;;;;;;;:::i;:::-;;;;;;;;;39336:24;;39135:233;;;:::o;49355:146::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;49447:22:::1;:48:::0;49355:146::o;49505:98::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;49576:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49505:98:::0;:::o;49191:158::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;49289:25:::1;:54:::0;49191:158::o;25493:239::-;25565:7;25601:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25601:16:0;25636:19;25628:73;;;;-1:-1:-1;;;25628:73:0;;10952:2:1;25628:73:0;;;10934:21:1;10991:2;10971:18;;;10964:30;11030:34;11010:18;;;11003:62;-1:-1:-1;;;11081:18:1;;;11074:39;11130:19;;25628:73:0;10750:405:1;44618:21:0;;;;;;;:::i;25223:208::-;25295:7;-1:-1:-1;;;;;25323:19:0;;25315:74;;;;-1:-1:-1;;;25315:74:0;;11362:2:1;25315:74:0;;;11344:21:1;11401:2;11381:18;;;11374:30;11440:34;11420:18;;;11413:62;-1:-1:-1;;;11491:18:1;;;11484:40;11541:19;;25315:74:0;11160:406:1;25315:74:0;-1:-1:-1;;;;;;25407:16:0;;;;;:9;:16;;;;;;;25223:208::o;4769:103::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;4834:30:::1;4861:1;4834:18;:30::i;:::-;4769:103::o:0;48955:96::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;49022:8:::1;:23:::0;48955:96::o;48662:87::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;48723:11:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;48723:20:0;;::::1;::::0;;;::::1;::::0;;48662:87::o;25968:104::-;26024:13;26057:7;26050:14;;;;;:::i;45812:1541::-;45878:11;;;;;;;45877:12;45869:38;;;;-1:-1:-1;;;45869:38:0;;11773:2:1;45869:38:0;;;11755:21:1;11812:2;11792:18;;;11785:30;-1:-1:-1;;;11831:18:1;;;11824:43;11884:18;;45869:38:0;11571:337:1;45869:38:0;45914:14;45931:13;39033:10;:17;;38945:113;45931:13;45914:30;;45973:1;45959:11;:15;45951:40;;;;-1:-1:-1;;;45951:40:0;;12115:2:1;45951:40:0;;;12097:21:1;12154:2;12134:18;;;12127:30;-1:-1:-1;;;12173:18:1;;;12166:42;12225:18;;45951:40:0;11913:336:1;45951:40:0;46021:21;;46006:11;:36;;45998:72;;;;-1:-1:-1;;;45998:72:0;;12456:2:1;45998:72:0;;;12438:21:1;12495:2;12475:18;;;12468:30;12534:25;12514:18;;;12507:53;12577:18;;45998:72:0;12254:347:1;45998:72:0;46109:13;;46085:20;46094:11;46085:6;:20;:::i;:::-;:37;;46077:64;;;;-1:-1:-1;;;46077:64:0;;12941:2:1;46077:64:0;;;12923:21:1;12980:2;12960:18;;;12953:30;-1:-1:-1;;;12999:18:1;;;12992:44;13053:18;;46077:64:0;12739:338:1;46077:64:0;4191:6;;-1:-1:-1;;;;;4191:6:0;46157:10;:21;46153:1052;;46194:15;;;;;;;:23;;46213:4;46194:23;46191:431;;;46242:32;46263:10;46242:20;:32::i;:::-;46234:67;;;;-1:-1:-1;;;46234:67:0;;13284:2:1;46234:67:0;;;13266:21:1;13323:2;13303:18;;;13296:30;-1:-1:-1;;;13342:18:1;;;13335:52;13404:18;;46234:67:0;13082:346:1;46234:67:0;46363:10;46316:24;46343:31;;;:19;:31;;;;;;46431:27;;46397:30;46416:11;46343:31;46397:30;:::i;:::-;:61;;46389:111;;;;-1:-1:-1;;;46389:111:0;;13635:2:1;46389:111:0;;;13617:21:1;13674:2;13654:18;;;13647:30;13713:34;13693:18;;;13686:62;-1:-1:-1;;;13764:18:1;;;13757:35;13809:19;;46389:111:0;13433:401:1;46389:111:0;46547:25;;46523:20;46532:11;46523:6;:20;:::i;:::-;:49;;46515:95;;;;-1:-1:-1;;;46515:95:0;;14041:2:1;46515:95:0;;;14023:21:1;14080:2;14060:18;;;14053:30;14119:34;14099:18;;;14092:62;-1:-1:-1;;;14170:18:1;;;14163:31;14211:19;;46515:95:0;13839:397:1;46515:95:0;46219:403;46191:431;46636:14;;;;;;;:22;;46654:4;46636:22;46632:566;;;46722:10;46675:24;46702:31;;;:19;:31;;;;;;46790:26;;46756:30;46775:11;46702:31;46756:30;:::i;:::-;:60;;46748:109;;;;-1:-1:-1;;;46748:109:0;;14443:2:1;46748:109:0;;;14425:21:1;14482:2;14462:18;;;14455:30;14521:34;14501:18;;;14494:62;-1:-1:-1;;;14572:18:1;;;14565:34;14616:19;;46748:109:0;14241:400:1;46748:109:0;46904:22;;46880:20;46889:11;46880:6;:20;:::i;:::-;:46;;46872:91;;;;-1:-1:-1;;;46872:91:0;;14848:2:1;46872:91:0;;;14830:21:1;;;14867:18;;;14860:30;14926:34;14906:18;;;14899:62;14978:18;;46872:91:0;14646:356:1;46872:91:0;47018:11;46999:16;;:30;;;;:::i;:::-;46986:9;:43;;46978:86;;;;-1:-1:-1;;;46978:86:0;;15382:2:1;46978:86:0;;;15364:21:1;15421:2;15401:18;;;15394:30;15460:32;15440:18;;;15433:60;15510:18;;46978:86:0;15180:354:1;46978:86:0;46660:416;46632:566;;;47138:11;47127:8;;:22;;;;:::i;:::-;47114:9;:35;;47106:79;;;;-1:-1:-1;;;47106:79:0;;15741:2:1;47106:79:0;;;15723:21:1;15780:2;15760:18;;;15753:30;15819:33;15799:18;;;15792:61;15870:18;;47106:79:0;15539:355:1;47106:79:0;47230:1;47213:135;47238:11;47233:1;:16;47213:135;;47285:10;47265:31;;;;:19;:31;;;;;:33;;;;;;:::i;:::-;;;;-1:-1:-1;47307:33:0;;-1:-1:-1;47317:10:0;47329;47338:1;47329:6;:10;:::i;:::-;47307:9;:33::i;:::-;47251:3;;;;:::i;:::-;;;;47213:135;;27651:155;27746:52;2922:10;27779:8;27789;27746:18;:52::i;44719:35::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44719:35:0;;-1:-1:-1;44719:35:0;:::o;28774:328::-;28949:41;2922:10;28982:7;28949:18;:41::i;:::-;28941:103;;;;-1:-1:-1;;;28941:103:0;;;;;;;:::i;:::-;29055:39;29069:4;29075:2;29079:7;29088:5;29055:13;:39::i;:::-;28774:328;;;;:::o;48424:79::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;48476:14:::1;:21:::0;;-1:-1:-1;;48476:21:0::1;48493:4;48476:21;::::0;;48424:79::o;44644:37::-;;;;;;;:::i;47949:453::-;30677:4;30701:16;;;:7;:16;;;;;;48022:13;;-1:-1:-1;;;;;30701:16:0;48047:76;;;;-1:-1:-1;;;48047:76:0;;16101:2:1;48047:76:0;;;16083:21:1;16140:2;16120:18;;;16113:30;16179:34;16159:18;;;16152:62;-1:-1:-1;;;16230:18:1;;;16223:45;16285:19;;48047:76:0;15899:411:1;48047:76:0;48133:14;;;;48130:68;;48176:14;48169:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47949:453;;;:::o;48130:68::-;48206:28;48237:10;:8;:10::i;:::-;48206:41;;48294:1;48269:14;48263:28;:32;:133;;;;;;;;;;;;;;;;;48331:14;48347:18;:7;:16;:18::i;:::-;48367:13;48314:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48263:133;48256:140;47949:453;-1:-1:-1;;;47949:453:0:o;48854:95::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;48919:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48919:24:0;;::::1;::::0;;;::::1;::::0;;48854:95::o;48755:93::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;48819:14:::1;:23:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48819:23:0;;::::1;::::0;;;::::1;::::0;;48755:93::o;49609:122::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;49692:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49057:128::-:0;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;49140:16:::1;:39:::0;49057:128::o;49739:120::-;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;49821:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5027:201::-:0;4191:6;;-1:-1:-1;;;;;4191:6:0;2922:10;4338:23;4330:68;;;;-1:-1:-1;;;4330:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5116:22:0;::::1;5108:73;;;::::0;-1:-1:-1;;;5108:73:0;;18175:2:1;5108:73:0::1;::::0;::::1;18157:21:1::0;18214:2;18194:18;;;18187:30;18253:34;18233:18;;;18226:62;-1:-1:-1;;;18304:18:1;;;18297:36;18350:19;;5108:73:0::1;17973:402:1::0;5108:73:0::1;5192:28;5211:8;5192:18;:28::i;24854:305::-:0;24956:4;-1:-1:-1;;;;;;24993:40:0;;-1:-1:-1;;;24993:40:0;;:105;;-1:-1:-1;;;;;;;25050:48:0;;-1:-1:-1;;;25050:48:0;24993:105;:158;;;-1:-1:-1;;;;;;;;;;16659:40:0;;;25115:36;16550:157;34594:174;34669:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34669:29:0;-1:-1:-1;;;;;34669:29:0;;;;;;;;:24;;34723:23;34669:24;34723:14;:23::i;:::-;-1:-1:-1;;;;;34714:46:0;;;;;;;;;;;34594:174;;:::o;30906:348::-;30999:4;30701:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30701:16:0;31016:73;;;;-1:-1:-1;;;31016:73:0;;18582:2:1;31016:73:0;;;18564:21:1;18621:2;18601:18;;;18594:30;18660:34;18640:18;;;18633:62;-1:-1:-1;;;18711:18:1;;;18704:42;18763:19;;31016:73:0;18380:408:1;31016:73:0;31100:13;31116:23;31131:7;31116:14;:23::i;:::-;31100:39;;31169:5;-1:-1:-1;;;;;31158:16:0;:7;-1:-1:-1;;;;;31158:16:0;;:51;;;;31202:7;-1:-1:-1;;;;;31178:31:0;:20;31190:7;31178:11;:20::i;:::-;-1:-1:-1;;;;;31178:31:0;;31158:51;:87;;;-1:-1:-1;;;;;;27998:25:0;;;27974:4;27998:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31213:32;31150:96;30906:348;-1:-1:-1;;;;30906:348:0:o;33898:578::-;34057:4;-1:-1:-1;;;;;34030:31:0;:23;34045:7;34030:14;:23::i;:::-;-1:-1:-1;;;;;34030:31:0;;34022:85;;;;-1:-1:-1;;;34022:85:0;;18995:2:1;34022:85:0;;;18977:21:1;19034:2;19014:18;;;19007:30;19073:34;19053:18;;;19046:62;-1:-1:-1;;;19124:18:1;;;19117:39;19173:19;;34022:85:0;18793:405:1;34022:85:0;-1:-1:-1;;;;;34126:16:0;;34118:65;;;;-1:-1:-1;;;34118:65:0;;19405:2:1;34118:65:0;;;19387:21:1;19444:2;19424:18;;;19417:30;19483:34;19463:18;;;19456:62;-1:-1:-1;;;19534:18:1;;;19527:34;19578:19;;34118:65:0;19203:400:1;34118:65:0;34196:39;34217:4;34223:2;34227:7;34196:20;:39::i;:::-;34300:29;34317:1;34321:7;34300:8;:29::i;:::-;-1:-1:-1;;;;;34342:15:0;;;;;;:9;:15;;;;;:20;;34361:1;;34342:15;:20;;34361:1;;34342:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34373:13:0;;;;;;:9;:13;;;;;:18;;34390:1;;34373:13;:18;;34390:1;;34373:18;:::i;:::-;;;;-1:-1:-1;;34402:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34402:21:0;-1:-1:-1;;;;;34402:21:0;;;;;;;;;34441:27;;34402:16;;34441:27;;;;;;;33898:578;;;:::o;5388:191::-;5481:6;;;-1:-1:-1;;;;;5498:17:0;;;-1:-1:-1;;;;;;5498:17:0;;;;;;;5531:40;;5481:6;;;5498:17;5481:6;;5531:40;;5462:16;;5531:40;5451:128;5388:191;:::o;31596:110::-;31672:26;31682:2;31686:7;31672:26;;;;;;;;;;;;:9;:26::i;34910:315::-;35065:8;-1:-1:-1;;;;;35056:17:0;:5;-1:-1:-1;;;;;35056:17:0;;;35048:55;;;;-1:-1:-1;;;35048:55:0;;19940:2:1;35048:55:0;;;19922:21:1;19979:2;19959:18;;;19952:30;20018:27;19998:18;;;19991:55;20063:18;;35048:55:0;19738:349:1;35048:55:0;-1:-1:-1;;;;;35114:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35114:46:0;;;;;;;;;;35176:41;;722::1;;;35176::0;;695:18:1;35176:41:0;;;;;;;34910:315;;;:::o;29984:::-;30141:28;30151:4;30157:2;30161:7;30141:9;:28::i;:::-;30188:48;30211:4;30217:2;30221:7;30230:5;30188:22;:48::i;:::-;30180:111;;;;-1:-1:-1;;;30180:111:0;;;;;;;:::i;45686:102::-;45746:13;45775:7;45768:14;;;;;:::i;404:723::-;460:13;681:10;677:53;;-1:-1:-1;;708:10:0;;;;;;;;;;;;-1:-1:-1;;;708:10:0;;;;;404:723::o;677:53::-;755:5;740:12;796:78;803:9;;796:78;;829:8;;;;:::i;:::-;;-1:-1:-1;852:10:0;;-1:-1:-1;860:2:0;852:10;;:::i;:::-;;;796:78;;;884:19;916:6;906:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;906:17:0;;884:39;;934:154;941:10;;934:154;;968:11;978:1;968:11;;:::i;:::-;;-1:-1:-1;1037:10:0;1045:2;1037:5;:10;:::i;:::-;1024:24;;:2;:24;:::i;:::-;1011:39;;994:6;1001;994:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;994:56:0;;;;;;;;-1:-1:-1;1065:11:0;1074:2;1065:11;;:::i;:::-;;;934:154;;39981:589;-1:-1:-1;;;;;40187:18:0;;40183:187;;40222:40;40254:7;41397:10;:17;;41370:24;;;;:15;:24;;;;;:44;;;41425:24;;;;;;;;;;;;41293:164;40222:40;40183:187;;;40292:2;-1:-1:-1;;;;;40284:10:0;:4;-1:-1:-1;;;;;40284:10:0;;40280:90;;40311:47;40344:4;40350:7;40311:32;:47::i;:::-;-1:-1:-1;;;;;40384:16:0;;40380:183;;40417:45;40454:7;40417:36;:45::i;40380:183::-;40490:4;-1:-1:-1;;;;;40484:10:0;:2;-1:-1:-1;;;;;40484:10:0;;40480:83;;40511:40;40539:2;40543:7;40511:27;:40::i;31933:321::-;32063:18;32069:2;32073:7;32063:5;:18::i;:::-;32114:54;32145:1;32149:2;32153:7;32162:5;32114:22;:54::i;:::-;32092:154;;;;-1:-1:-1;;;32092:154:0;;;;;;;:::i;35790:799::-;35945:4;-1:-1:-1;;;;;35966:13:0;;6729:20;6777:8;35962:620;;36002:72;;-1:-1:-1;;;36002:72:0;;-1:-1:-1;;;;;36002:36:0;;;;;:72;;2922:10;;36053:4;;36059:7;;36068:5;;36002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36002:72:0;;;;;;;;-1:-1:-1;;36002:72:0;;;;;;;;;;;;:::i;:::-;;;35998:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36244:13:0;;36240:272;;36287:60;;-1:-1:-1;;;36287:60:0;;;;;;;:::i;36240:272::-;36462:6;36456:13;36447:6;36443:2;36439:15;36432:38;35998:529;-1:-1:-1;;;;;;36125:51:0;-1:-1:-1;;;36125:51:0;;-1:-1:-1;36118:58:0;;35962:620;-1:-1:-1;36566:4:0;35790:799;;;;;;:::o;42084:988::-;42350:22;42400:1;42375:22;42392:4;42375:16;:22::i;:::-;:26;;;;:::i;:::-;42412:18;42433:26;;;:17;:26;;;;;;42350:51;;-1:-1:-1;42566:28:0;;;42562:328;;-1:-1:-1;;;;;42633:18:0;;42611:19;42633:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42684:30;;;;;;:44;;;42801:30;;:17;:30;;;;;:43;;;42562:328;-1:-1:-1;42986:26:0;;;;:17;:26;;;;;;;;42979:33;;;-1:-1:-1;;;;;43030:18:0;;;;;:12;:18;;;;;:34;;;;;;;43023:41;42084:988::o;43367:1079::-;43645:10;:17;43620:22;;43645:21;;43665:1;;43645:21;:::i;:::-;43677:18;43698:24;;;:15;:24;;;;;;44071:10;:26;;43620:46;;-1:-1:-1;43698:24:0;;43620:46;;44071:26;;;;;;:::i;:::-;;;;;;;;;44049:48;;44135:11;44110:10;44121;44110:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44215:28;;;:15;:28;;;;;;;:41;;;44387:24;;;;;44380:31;44422:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43438:1008;;;43367:1079;:::o;40871:221::-;40956:14;40973:20;40990:2;40973:16;:20::i;:::-;-1:-1:-1;;;;;41004:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41049:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40871:221:0:o;32590:382::-;-1:-1:-1;;;;;32670:16:0;;32662:61;;;;-1:-1:-1;;;32662:61:0;;21967:2:1;32662:61:0;;;21949:21:1;;;21986:18;;;21979:30;22045:34;22025:18;;;22018:62;22097:18;;32662:61:0;21765:356:1;32662:61:0;30677:4;30701:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30701:16:0;:30;32734:58;;;;-1:-1:-1;;;32734:58:0;;22328:2:1;32734:58:0;;;22310:21:1;22367:2;22347:18;;;22340:30;22406;22386:18;;;22379:58;22454:18;;32734:58:0;22126:352:1;32734:58:0;32805:45;32834:1;32838:2;32842:7;32805:20;:45::i;:::-;-1:-1:-1;;;;;32863:13:0;;;;;;:9;:13;;;;;:18;;32880:1;;32863:13;:18;;32880:1;;32863:18;:::i;:::-;;;;-1:-1:-1;;32892:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32892:21:0;-1:-1:-1;;;;;32892:21:0;;;;;;;;32931:33;;32892:16;;;32931:33;;32892:16;;32931:33;32590:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:615::-;2632:6;2640;2693:2;2681:9;2672:7;2668:23;2664:32;2661:52;;;2709:1;2706;2699:12;2661:52;2749:9;2736:23;2778:18;2819:2;2811:6;2808:14;2805:34;;;2835:1;2832;2825:12;2805:34;2873:6;2862:9;2858:22;2848:32;;2918:7;2911:4;2907:2;2903:13;2899:27;2889:55;;2940:1;2937;2930:12;2889:55;2980:2;2967:16;3006:2;2998:6;2995:14;2992:34;;;3022:1;3019;3012:12;2992:34;3075:7;3070:2;3060:6;3057:1;3053:14;3049:2;3045:23;3041:32;3038:45;3035:65;;;3096:1;3093;3086:12;3035:65;3127:2;3119:11;;;;;3149:6;;-1:-1:-1;2546:615:1;;-1:-1:-1;;;;2546:615:1:o;3166:328::-;3243:6;3251;3259;3312:2;3300:9;3291:7;3287:23;3283:32;3280:52;;;3328:1;3325;3318:12;3280:52;3351:29;3370:9;3351:29;:::i;:::-;3341:39;;3399:38;3433:2;3422:9;3418:18;3399:38;:::i;:::-;3389:48;;3484:2;3473:9;3469:18;3456:32;3446:42;;3166:328;;;;;:::o;3499:632::-;3670:2;3722:21;;;3792:13;;3695:18;;;3814:22;;;3641:4;;3670:2;3893:15;;;;3867:2;3852:18;;;3641:4;3936:169;3950:6;3947:1;3944:13;3936:169;;;4011:13;;3999:26;;4080:15;;;;4045:12;;;;3972:1;3965:9;3936:169;;;-1:-1:-1;4122:3:1;;3499:632;-1:-1:-1;;;;;;3499:632:1:o;4136:127::-;4197:10;4192:3;4188:20;4185:1;4178:31;4228:4;4225:1;4218:15;4252:4;4249:1;4242:15;4268:632;4333:5;4363:18;4404:2;4396:6;4393:14;4390:40;;;4410:18;;:::i;:::-;4485:2;4479:9;4453:2;4539:15;;-1:-1:-1;;4535:24:1;;;4561:2;4531:33;4527:42;4515:55;;;4585:18;;;4605:22;;;4582:46;4579:72;;;4631:18;;:::i;:::-;4671:10;4667:2;4660:22;4700:6;4691:15;;4730:6;4722;4715:22;4770:3;4761:6;4756:3;4752:16;4749:25;4746:45;;;4787:1;4784;4777:12;4746:45;4837:6;4832:3;4825:4;4817:6;4813:17;4800:44;4892:1;4885:4;4876:6;4868;4864:19;4860:30;4853:41;;;;4268:632;;;;;:::o;4905:451::-;4974:6;5027:2;5015:9;5006:7;5002:23;4998:32;4995:52;;;5043:1;5040;5033:12;4995:52;5083:9;5070:23;5116:18;5108:6;5105:30;5102:50;;;5148:1;5145;5138:12;5102:50;5171:22;;5224:4;5216:13;;5212:27;-1:-1:-1;5202:55:1;;5253:1;5250;5243:12;5202:55;5276:74;5342:7;5337:2;5324:16;5319:2;5315;5311:11;5276:74;:::i;5361:160::-;5426:20;;5482:13;;5475:21;5465:32;;5455:60;;5511:1;5508;5501:12;5526:180;5582:6;5635:2;5623:9;5614:7;5610:23;5606:32;5603:52;;;5651:1;5648;5641:12;5603:52;5674:26;5690:9;5674:26;:::i;5711:254::-;5776:6;5784;5837:2;5825:9;5816:7;5812:23;5808:32;5805:52;;;5853:1;5850;5843:12;5805:52;5876:29;5895:9;5876:29;:::i;:::-;5866:39;;5924:35;5955:2;5944:9;5940:18;5924:35;:::i;:::-;5914:45;;5711:254;;;;;:::o;5970:667::-;6065:6;6073;6081;6089;6142:3;6130:9;6121:7;6117:23;6113:33;6110:53;;;6159:1;6156;6149:12;6110:53;6182:29;6201:9;6182:29;:::i;:::-;6172:39;;6230:38;6264:2;6253:9;6249:18;6230:38;:::i;:::-;6220:48;;6315:2;6304:9;6300:18;6287:32;6277:42;;6370:2;6359:9;6355:18;6342:32;6397:18;6389:6;6386:30;6383:50;;;6429:1;6426;6419:12;6383:50;6452:22;;6505:4;6497:13;;6493:27;-1:-1:-1;6483:55:1;;6534:1;6531;6524:12;6483:55;6557:74;6623:7;6618:2;6605:16;6600:2;6596;6592:11;6557:74;:::i;:::-;6547:84;;;5970:667;;;;;;;:::o;6642:260::-;6710:6;6718;6771:2;6759:9;6750:7;6746:23;6742:32;6739:52;;;6787:1;6784;6777:12;6739:52;6810:29;6829:9;6810:29;:::i;:::-;6800:39;;6858:38;6892:2;6881:9;6877:18;6858:38;:::i;6907:380::-;6986:1;6982:12;;;;7029;;;7050:61;;7104:4;7096:6;7092:17;7082:27;;7050:61;7157:2;7149:6;7146:14;7126:18;7123:38;7120:161;;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;;6907:380;;;:::o;8532:127::-;8593:10;8588:3;8584:20;8581:1;8574:31;8624:4;8621:1;8614:15;8648:4;8645:1;8638:15;8664:127;8725:10;8720:3;8716:20;8713:1;8706:31;8756:4;8753:1;8746:15;8780:4;8777:1;8770:15;8796:135;8835:3;-1:-1:-1;;8856:17:1;;8853:43;;;8876:18;;:::i;:::-;-1:-1:-1;8923:1:1;8912:13;;8796:135::o;8936:356::-;9138:2;9120:21;;;9157:18;;;9150:30;9216:34;9211:2;9196:18;;9189:62;9283:2;9268:18;;8936:356::o;9297:413::-;9499:2;9481:21;;;9538:2;9518:18;;;9511:30;9577:34;9572:2;9557:18;;9550:62;-1:-1:-1;;;9643:2:1;9628:18;;9621:47;9700:3;9685:19;;9297:413::o;12606:128::-;12646:3;12677:1;12673:6;12670:1;12667:13;12664:39;;;12683:18;;:::i;:::-;-1:-1:-1;12719:9:1;;12606:128::o;15007:168::-;15047:7;15113:1;15109;15105:6;15101:14;15098:1;15095:21;15090:1;15083:9;15076:17;15072:45;15069:71;;;15120:18;;:::i;:::-;-1:-1:-1;15160:9:1;;15007:168::o;16441:1527::-;16665:3;16703:6;16697:13;16729:4;16742:51;16786:6;16781:3;16776:2;16768:6;16764:15;16742:51;:::i;:::-;16856:13;;16815:16;;;;16878:55;16856:13;16815:16;16900:15;;;16878:55;:::i;:::-;17022:13;;16955:20;;;16995:1;;17082;17104:18;;;;17157;;;;17184:93;;17262:4;17252:8;17248:19;17236:31;;17184:93;17325:2;17315:8;17312:16;17292:18;17289:40;17286:167;;;-1:-1:-1;;;17352:33:1;;17408:4;17405:1;17398:15;17438:4;17359:3;17426:17;17286:167;17469:18;17496:110;;;;17620:1;17615:328;;;;17462:481;;17496:110;-1:-1:-1;;17531:24:1;;17517:39;;17576:20;;;;-1:-1:-1;17496:110:1;;17615:328;16388:1;16381:14;;;16425:4;16412:18;;17710:1;17724:169;17738:8;17735:1;17732:15;17724:169;;;17820:14;;17805:13;;;17798:37;17863:16;;;;17755:10;;17724:169;;;17728:3;;17924:8;17917:5;17913:20;17906:27;;17462:481;-1:-1:-1;17959:3:1;;16441:1527;-1:-1:-1;;;;;;;;;;;16441:1527:1:o;19608:125::-;19648:4;19676:1;19673;19670:8;19667:34;;;19681:18;;:::i;:::-;-1:-1:-1;19718:9:1;;19608:125::o;20092:414::-;20294:2;20276:21;;;20333:2;20313:18;;;20306:30;20372:34;20367:2;20352:18;;20345:62;-1:-1:-1;;;20438:2:1;20423:18;;20416:48;20496:3;20481:19;;20092:414::o;20511:127::-;20572:10;20567:3;20563:20;20560:1;20553:31;20603:4;20600:1;20593:15;20627:4;20624:1;20617:15;20643:120;20683:1;20709;20699:35;;20714:18;;:::i;:::-;-1:-1:-1;20748:9:1;;20643:120::o;20768:112::-;20800:1;20826;20816:35;;20831:18;;:::i;:::-;-1:-1:-1;20865:9:1;;20768:112::o;20885:489::-;-1:-1:-1;;;;;21154:15:1;;;21136:34;;21206:15;;21201:2;21186:18;;21179:43;21253:2;21238:18;;21231:34;;;21301:3;21296:2;21281:18;;21274:31;;;21079:4;;21322:46;;21348:19;;21340:6;21322:46;:::i;:::-;21314:54;20885:489;-1:-1:-1;;;;;;20885:489:1:o;21379:249::-;21448:6;21501:2;21489:9;21480:7;21476:23;21472:32;21469:52;;;21517:1;21514;21507:12;21469:52;21549:9;21543:16;21568:30;21592:5;21568:30;:::i;21633:127::-;21694:10;21689:3;21685:20;21682:1;21675:31;21725:4;21722:1;21715:15;21749:4;21746:1;21739:15

Swarm Source

ipfs://344d8681e55d7b9e47bb8cd120f70f304c7a0844d3b36dcab97bafd9303b59dc
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.