ETH Price: $3,010.06 (+4.48%)
Gas: 3 Gwei

Token

DarkEchelon (DARK)
 

Overview

Max Total Supply

520 DARK

Holders

478

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
DarkEchelon

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 2021-11-26
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity >=0.7.0 <0.9.0;



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

    string baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 90000000000000000;
    uint256 public maxSupply = 1098;
    uint256 public maxMintAmount = 4;
    uint256 public reservedForTeam = 10;
    
    string private signature;

    bool public paused = false;
    bool public revealed = false;

    // Whitelist
    uint256 public whitelistMintAmount = 3;
    uint256 public whitelistReserved = 1000;
    uint256 public whitelistCost = 90000000000000000;

    bool private whitelistedSale = true;
    string public notRevealedUri;

    string _name = "DarkEchelon";
    string _symbol = "DARK";

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

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function presaleMint(uint256 _mintAmount, string memory _signature) public payable {
        require(!paused, "Contract is paused");
        require(whitelistedSale);
        require(keccak256(abi.encodePacked((signature))) == keccak256(abi.encodePacked((_signature))), "Invalid signature");
        require(msg.sender != owner());
        
        uint256 supply = totalSupply();
        uint256 totalAmount;

        uint256 tokenCount = balanceOf(msg.sender);

        require(
            tokenCount + _mintAmount <= maxMintAmount,
            string(abi.encodePacked("Limit token ", tokenCount.toString()))
        );
        require(
            supply + _mintAmount <= maxSupply - reservedForTeam,
            "Max Supply"
        );

        // Whitelist
        require(whitelistReserved - _mintAmount >= 0);
        require(tokenCount + _mintAmount <= whitelistMintAmount, "Maximum per wallet is 3 during whitelist");

        totalAmount = whitelistCost * _mintAmount;

        require(
            msg.value >= totalAmount,
            string(
                abi.encodePacked(
                    "Incorrect amount ",
                    totalAmount.toString(),
                    " ",
                    msg.value.toString()
                )
            )
        );
        
        whitelistReserved -= _mintAmount;
        

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    // public
    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        uint256 totalAmount;

        require(!paused);
        require(_mintAmount > 0);

        // Owner
        if (msg.sender == owner()) {
            require(reservedForTeam >= _mintAmount);
            reservedForTeam -= _mintAmount;
        }

        if (msg.sender != owner()) {
            require(!whitelistedSale);
            uint256 tokenCount = balanceOf(msg.sender);

            require(
                tokenCount + _mintAmount <= maxMintAmount,
                string(abi.encodePacked("Limit token ", tokenCount.toString()))
            );
            require(
                supply + _mintAmount <= maxSupply - reservedForTeam,
                "Max Supply"
            );

            totalAmount = cost * _mintAmount;

            require(
                msg.value >= totalAmount,
                string(
                    abi.encodePacked(
                        "Incorrect amount ",
                        totalAmount.toString(),
                        " ",
                        msg.value.toString()
                    )
                )
            );
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);

        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

        if (revealed == false) {
            return notRevealedUri;
        }

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

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

    function setReserved(uint256 _reserved) public onlyOwner {
        reservedForTeam = _reserved;
    }

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

    function setWhitelistCost(uint256 _newCost) public onlyOwner {
        whitelistCost = _newCost;
    }

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

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

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

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

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

    function whitelistSale(bool _state) public onlyOwner {
        require(whitelistReserved > 0);
        whitelistedSale = _state;
    }
    
    function setSignature(string memory _signature) public onlyOwner {
        signature = _signature;
    }

    function setWhitelistReserved(uint256 _count) public onlyOwner {
        uint256 totalSupply = totalSupply();
        require(_count < maxSupply - totalSupply);
        whitelistReserved = _count;
    }

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

    function getBalance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }

    function isWhitelisted() public view returns (bool) {
        return whitelistedSale;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"string","name":"_signature","type":"string"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserved","type":"uint256"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_signature","type":"string"}],"name":"setSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setWhitelistReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"whitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620003a5565b5067013fbe85edc90000600d81905561044a600e556004600f55600a6010556012805461ffff1916905560036013556103e86014556015556016805460ff1916600117905560408051808201909152600b8082526a2230b935a2b1b432b637b760a91b6020909201918252620000a191601891620003a5565b50604080518082019091526004808252634441524b60e01b6020909201918252620000cf91601991620003a5565b50348015620000dd57600080fd5b506040516200326a3803806200326a833981016040819052620001009162000518565b601880546200010f9062000582565b80601f01602080910402602001604051908101604052809291908181526020018280546200013d9062000582565b80156200018e5780601f1062000162576101008083540402835291602001916200018e565b820191906000526020600020905b8154815290600101906020018083116200017057829003601f168201915b505050505060198054620001a29062000582565b80601f0160208091040260200160405190810160405280929190818152602001828054620001d09062000582565b8015620002215780601f10620001f55761010080835404028352916020019162000221565b820191906000526020600020905b8154815290600101906020018083116200020357829003601f168201915b505084516200023b935060009250602086019150620003a5565b50805162000251906001906020840190620003a5565b5050506200026e620002686200028c60201b60201c565b62000290565b6200027982620002e2565b62000284816200034a565b5050620005bf565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620003315760405162461bcd60e51b815260206004820181905260248201526000805160206200324a83398151915260448201526064015b60405180910390fd5b80516200034690600b906020840190620003a5565b5050565b600a546001600160a01b03163314620003955760405162461bcd60e51b815260206004820181905260248201526000805160206200324a833981519152604482015260640162000328565b8051620003469060179060208401905b828054620003b39062000582565b90600052602060002090601f016020900481019282620003d7576000855562000422565b82601f10620003f257805160ff191683800117855562000422565b8280016001018555821562000422579182015b828111156200042257825182559160200191906001019062000405565b506200043092915062000434565b5090565b5b8082111562000430576000815560010162000435565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200047357600080fd5b81516001600160401b03808211156200049057620004906200044b565b604051601f8301601f19908116603f01168101908282118183101715620004bb57620004bb6200044b565b81604052838152602092508683858801011115620004d857600080fd5b600091505b83821015620004fc5785820183015181830184015290820190620004dd565b838211156200050e5760008385830101525b9695505050505050565b600080604083850312156200052c57600080fd5b82516001600160401b03808211156200054457600080fd5b620005528683870162000461565b935060208501519150808211156200056957600080fd5b50620005788582860162000461565b9150509250929050565b600181811c908216806200059757607f821691505b60208210811415620005b957634e487b7160e01b600052602260045260246000fd5b50919050565b612c7b80620005cf6000396000f3fe6080604052600436106102935760003560e01c80636352211e1161015a578063b35e3b2e116100c1578063d5abeb011161007a578063d5abeb0114610762578063da3ef23f14610778578063e7b99ec714610798578063e985e9c5146107ae578063f2c4ce1e146107f7578063f2fde38b1461081757600080fd5b8063b35e3b2e146106b7578063b88d4fde146106d7578063c6682862146106f7578063c87b56dd1461070c578063cfb89aba1461072c578063d49479eb1461074257600080fd5b8063930079a211610113578063930079a21461063157806395d89b4114610647578063a0712d681461065c578063a22cb4651461066f578063a3d078a61461068f578063a475b5dd146106a257600080fd5b80636352211e1461058857806370a08231146105a8578063715018a6146105c85780637f00c7a6146105dd57806388039d8f146105fd5780638da5cb5b1461061357600080fd5b806329d80c84116101fe57806344a0d68a116101b757806344a0d68a146104d75780634f6ccce7146104f7578063518302271461051757806355f804b3146105365780635c975abb14610556578063611b40951461057057600080fd5b806329d80c84146104225780632d6e71b6146104425780632f745c59146104625780633ccfd60b1461048257806342842e0e1461048a578063438b6300146104aa57600080fd5b806312065fe01161025057806312065fe01461037e57806313faede6146103a157806318160ddd146103b7578063239c70ae146103cc57806323b872dd146103e25780632782fb221461040257600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef578063081812fc14610311578063081c8c4414610349578063095ea7b31461035e575b600080fd5b3480156102a457600080fd5b506102b86102b33660046124b5565b610837565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e83660046124e7565b610862565b005b3480156102fb57600080fd5b506103046108a8565b6040516102c4919061255a565b34801561031d57600080fd5b5061033161032c36600461256d565b61093a565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b506103046109cf565b34801561036a57600080fd5b506102ed61037936600461259d565b610a5d565b34801561038a57600080fd5b50610393610b73565b6040519081526020016102c4565b3480156103ad57600080fd5b50610393600d5481565b3480156103c357600080fd5b50600854610393565b3480156103d857600080fd5b50610393600f5481565b3480156103ee57600080fd5b506102ed6103fd3660046125c7565b610ba5565b34801561040e57600080fd5b506102ed61041d3660046126af565b610bd6565b34801561042e57600080fd5b506102ed61043d3660046124e7565b610c17565b34801561044e57600080fd5b506102ed61045d36600461256d565b610c63565b34801561046e57600080fd5b5061039361047d36600461259d565b610c92565b6102ed610d28565b34801561049657600080fd5b506102ed6104a53660046125c7565b610dc6565b3480156104b657600080fd5b506104ca6104c53660046126e4565b610de1565b6040516102c491906126ff565b3480156104e357600080fd5b506102ed6104f236600461256d565b610e83565b34801561050357600080fd5b5061039361051236600461256d565b610eb2565b34801561052357600080fd5b506012546102b890610100900460ff1681565b34801561054257600080fd5b506102ed6105513660046126af565b610f45565b34801561056257600080fd5b506012546102b89060ff1681565b34801561057c57600080fd5b5060165460ff166102b8565b34801561059457600080fd5b506103316105a336600461256d565b610f82565b3480156105b457600080fd5b506103936105c33660046126e4565b610ff9565b3480156105d457600080fd5b506102ed611080565b3480156105e957600080fd5b506102ed6105f836600461256d565b6110b6565b34801561060957600080fd5b5061039360145481565b34801561061f57600080fd5b50600a546001600160a01b0316610331565b34801561063d57600080fd5b5061039360105481565b34801561065357600080fd5b506103046110e5565b6102ed61066a36600461256d565b6110f4565b34801561067b57600080fd5b506102ed61068a366004612743565b6112d3565b6102ed61069d366004612776565b611398565b3480156106ae57600080fd5b506102ed611694565b3480156106c357600080fd5b506102ed6106d236600461256d565b6116cf565b3480156106e357600080fd5b506102ed6106f23660046127bd565b611725565b34801561070357600080fd5b50610304611757565b34801561071857600080fd5b5061030461072736600461256d565b611764565b34801561073857600080fd5b5061039360135481565b34801561074e57600080fd5b506102ed61075d36600461256d565b6118e3565b34801561076e57600080fd5b50610393600e5481565b34801561078457600080fd5b506102ed6107933660046126af565b611912565b3480156107a457600080fd5b5061039360155481565b3480156107ba57600080fd5b506102b86107c9366004612839565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561080357600080fd5b506102ed6108123660046126af565b61194f565b34801561082357600080fd5b506102ed6108323660046126e4565b61198c565b60006001600160e01b0319821663780e9d6360e01b148061085c575061085c82611a24565b92915050565b600a546001600160a01b031633146108955760405162461bcd60e51b815260040161088c90612863565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108b790612898565b80601f01602080910402602001604051908101604052809291908181526020018280546108e390612898565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088c565b506000908152600460205260409020546001600160a01b031690565b601780546109dc90612898565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612898565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b505050505081565b6000610a6882610f82565b9050806001600160a01b0316836001600160a01b03161415610ad65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088c565b336001600160a01b0382161480610af25750610af281336107c9565b610b645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088c565b610b6e8383611a74565b505050565b600a546000906001600160a01b03163314610ba05760405162461bcd60e51b815260040161088c90612863565b504790565b610baf3382611ae2565b610bcb5760405162461bcd60e51b815260040161088c906128d3565b610b6e838383611bd9565b600a546001600160a01b03163314610c005760405162461bcd60e51b815260040161088c90612863565b8051610c13906011906020840190612406565b5050565b600a546001600160a01b03163314610c415760405162461bcd60e51b815260040161088c90612863565b600060145411610c5057600080fd5b6016805460ff1916911515919091179055565b600a546001600160a01b03163314610c8d5760405162461bcd60e51b815260040161088c90612863565b601055565b6000610c9d83610ff9565b8210610cff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161088c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d525760405162461bcd60e51b815260040161088c90612863565b6000610d66600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610db0576040519150601f19603f3d011682016040523d82523d6000602084013e610db5565b606091505b5050905080610dc357600080fd5b50565b610b6e83838360405180602001604052806000815250611725565b60606000610dee83610ff9565b905060008167ffffffffffffffff811115610e0b57610e0b612603565b604051908082528060200260200182016040528015610e34578160200160208202803683370190505b50905060005b82811015610e7b57610e4c8582610c92565b828281518110610e5e57610e5e612924565b602090810291909101015280610e7381612950565b915050610e3a565b509392505050565b600a546001600160a01b03163314610ead5760405162461bcd60e51b815260040161088c90612863565b600d55565b6000610ebd60085490565b8210610f205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161088c565b60088281548110610f3357610f33612924565b90600052602060002001549050919050565b600a546001600160a01b03163314610f6f5760405162461bcd60e51b815260040161088c90612863565b8051610c1390600b906020840190612406565b6000818152600260205260408120546001600160a01b03168061085c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161088c565b60006001600160a01b0382166110645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161088c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110aa5760405162461bcd60e51b815260040161088c90612863565b6110b46000611d84565b565b600a546001600160a01b031633146110e05760405162461bcd60e51b815260040161088c90612863565b600f55565b6060600180546108b790612898565b60006110ff60085490565b60125490915060009060ff161561111557600080fd5b6000831161112257600080fd5b600a546001600160a01b031633141561115c5782601054101561114457600080fd5b8260106000828254611156919061296b565b90915550505b600a546001600160a01b0316331461129e5760165460ff161561117e57600080fd5b600061118933610ff9565b600f549091506111998583612982565b11156111a482611dd6565b6040516020016111b4919061299a565b604051602081830303815290604052906111e15760405162461bcd60e51b815260040161088c919061255a565b50601054600e546111f2919061296b565b6111fc8585612982565b11156112375760405162461bcd60e51b815260206004820152600a6024820152694d617820537570706c7960b01b604482015260640161088c565b83600d5461124591906129ce565b91508134101561125483611dd6565b61125d34611dd6565b60405160200161126e9291906129ed565b6040516020818303038152906040529061129b5760405162461bcd60e51b815260040161088c919061255a565b50505b60015b8381116112cd576112bb336112b68386612982565b611ed4565b806112c581612950565b9150506112a1565b50505050565b6001600160a01b03821633141561132c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60125460ff16156113e05760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161088c565b60165460ff166113ef57600080fd5b806040516020016114009190612a46565b6040516020818303038152906040528051906020012060116040516020016114289190612afc565b604051602081830303815290604052805190602001201461147f5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161088c565b600a546001600160a01b031633141561149757600080fd5b60006114a260085490565b90506000806114b033610ff9565b600f549091506114c08683612982565b11156114cb82611dd6565b6040516020016114db919061299a565b604051602081830303815290604052906115085760405162461bcd60e51b815260040161088c919061255a565b50601054600e54611519919061296b565b6115238685612982565b111561155e5760405162461bcd60e51b815260206004820152600a6024820152694d617820537570706c7960b01b604482015260640161088c565b60008560145461156e919061296b565b101561157957600080fd5b6013546115868683612982565b11156115e55760405162461bcd60e51b815260206004820152602860248201527f4d6178696d756d207065722077616c6c6574206973203320647572696e6720776044820152671a1a5d195b1a5cdd60c21b606482015260840161088c565b846015546115f391906129ce565b91508134101561160283611dd6565b61160b34611dd6565b60405160200161161c9291906129ed565b604051602081830303815290604052906116495760405162461bcd60e51b815260040161088c919061255a565b50846014600082825461165c919061296b565b90915550600190505b85811161168c5761167a336112b68387612982565b8061168481612950565b915050611665565b505050505050565b600a546001600160a01b031633146116be5760405162461bcd60e51b815260040161088c90612863565b6012805461ff001916610100179055565b600a546001600160a01b031633146116f95760405162461bcd60e51b815260040161088c90612863565b600061170460085490565b905080600e54611714919061296b565b821061171f57600080fd5b50601455565b61172f3383611ae2565b61174b5760405162461bcd60e51b815260040161088c906128d3565b6112cd84848484611eee565b600c80546109dc90612898565b6000818152600260205260409020546060906001600160a01b03166117e35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088c565b601254610100900460ff1661188457601780546117ff90612898565b80601f016020809104026020016040519081016040528092919081815260200182805461182b90612898565b80156118785780601f1061184d57610100808354040283529160200191611878565b820191906000526020600020905b81548152906001019060200180831161185b57829003601f168201915b50505050509050919050565b600061188e611f21565b905060008151116118ae57604051806020016040528060008152506118dc565b806118b884611dd6565b600c6040516020016118cc93929190612b08565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461190d5760405162461bcd60e51b815260040161088c90612863565b601555565b600a546001600160a01b0316331461193c5760405162461bcd60e51b815260040161088c90612863565b8051610c1390600c906020840190612406565b600a546001600160a01b031633146119795760405162461bcd60e51b815260040161088c90612863565b8051610c13906017906020840190612406565b600a546001600160a01b031633146119b65760405162461bcd60e51b815260040161088c90612863565b6001600160a01b038116611a1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b610dc381611d84565b60006001600160e01b031982166380ac58cd60e01b1480611a5557506001600160e01b03198216635b5e139f60e01b145b8061085c57506301ffc9a760e01b6001600160e01b031983161461085c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aa982610f82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b5b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088c565b6000611b6683610f82565b9050806001600160a01b0316846001600160a01b03161480611ba15750836001600160a01b0316611b968461093a565b6001600160a01b0316145b80611bd157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bec82610f82565b6001600160a01b031614611c545760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161088c565b6001600160a01b038216611cb65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b611cc1838383611f30565b611ccc600082611a74565b6001600160a01b0383166000908152600360205260408120805460019290611cf590849061296b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d23908490612982565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606081611dfa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e245780611e0e81612950565b9150611e1d9050600a83612b5b565b9150611dfe565b60008167ffffffffffffffff811115611e3f57611e3f612603565b6040519080825280601f01601f191660200182016040528015611e69576020820181803683370190505b5090505b8415611bd157611e7e60018361296b565b9150611e8b600a86612b6f565b611e96906030612982565b60f81b818381518110611eab57611eab612924565b60200101906001600160f81b031916908160001a905350611ecd600a86612b5b565b9450611e6d565b610c13828260405180602001604052806000815250611fe8565b611ef9848484611bd9565b611f058484848461201b565b6112cd5760405162461bcd60e51b815260040161088c90612b83565b6060600b80546108b790612898565b6001600160a01b038316611f8b57611f8681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fae565b816001600160a01b0316836001600160a01b031614611fae57611fae8382612128565b6001600160a01b038216611fc557610b6e816121c5565b826001600160a01b0316826001600160a01b031614610b6e57610b6e8282612274565b611ff283836122b8565b611fff600084848461201b565b610b6e5760405162461bcd60e51b815260040161088c90612b83565b60006001600160a01b0384163b1561211d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061205f903390899088908890600401612bd5565b602060405180830381600087803b15801561207957600080fd5b505af19250505080156120a9575060408051601f3d908101601f191682019092526120a691810190612c12565b60015b612103573d8080156120d7576040519150601f19603f3d011682016040523d82523d6000602084013e6120dc565b606091505b5080516120fb5760405162461bcd60e51b815260040161088c90612b83565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bd1565b506001949350505050565b6000600161213584610ff9565b61213f919061296b565b600083815260076020526040902054909150808214612192576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121d79060019061296b565b600083815260096020526040812054600880549394509092849081106121ff576121ff612924565b90600052602060002001549050806008838154811061222057612220612924565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225857612258612c2f565b6001900381819060005260206000200160009055905550505050565b600061227f83610ff9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661230e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088c565b6000818152600260205260409020546001600160a01b0316156123735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088c565b61237f60008383611f30565b6001600160a01b03821660009081526003602052604081208054600192906123a8908490612982565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461241290612898565b90600052602060002090601f016020900481019282612434576000855561247a565b82601f1061244d57805160ff191683800117855561247a565b8280016001018555821561247a579182015b8281111561247a57825182559160200191906001019061245f565b5061248692915061248a565b5090565b5b80821115612486576000815560010161248b565b6001600160e01b031981168114610dc357600080fd5b6000602082840312156124c757600080fd5b81356118dc8161249f565b803580151581146124e257600080fd5b919050565b6000602082840312156124f957600080fd5b6118dc826124d2565b60005b8381101561251d578181015183820152602001612505565b838111156112cd5750506000910152565b60008151808452612546816020860160208601612502565b601f01601f19169290920160200192915050565b6020815260006118dc602083018461252e565b60006020828403121561257f57600080fd5b5035919050565b80356001600160a01b03811681146124e257600080fd5b600080604083850312156125b057600080fd5b6125b983612586565b946020939093013593505050565b6000806000606084860312156125dc57600080fd5b6125e584612586565b92506125f360208501612586565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561263457612634612603565b604051601f8501601f19908116603f0116810190828211818310171561265c5761265c612603565b8160405280935085815286868601111561267557600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126126a057600080fd5b6118dc83833560208501612619565b6000602082840312156126c157600080fd5b813567ffffffffffffffff8111156126d857600080fd5b611bd18482850161268f565b6000602082840312156126f657600080fd5b6118dc82612586565b6020808252825182820181905260009190848201906040850190845b818110156127375783518352928401929184019160010161271b565b50909695505050505050565b6000806040838503121561275657600080fd5b61275f83612586565b915061276d602084016124d2565b90509250929050565b6000806040838503121561278957600080fd5b82359150602083013567ffffffffffffffff8111156127a757600080fd5b6127b38582860161268f565b9150509250929050565b600080600080608085870312156127d357600080fd5b6127dc85612586565b93506127ea60208601612586565b925060408501359150606085013567ffffffffffffffff81111561280d57600080fd5b8501601f8101871361281e57600080fd5b61282d87823560208401612619565b91505092959194509250565b6000806040838503121561284c57600080fd5b61285583612586565b915061276d60208401612586565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128ac57607f821691505b602082108114156128cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156129645761296461293a565b5060010190565b60008282101561297d5761297d61293a565b500390565b600082198211156129955761299561293a565b500190565b6b02634b6b4ba103a37b5b2b7160a51b8152600082516129c181600c850160208701612502565b91909101600c0192915050565b60008160001904831182151516156129e8576129e861293a565b500290565b70024b731b7b93932b1ba1030b6b7bab73a1607d1b815260008351612a19816011850160208801612502565b600160fd1b6011918401918201528351612a3a816012840160208801612502565b01601201949350505050565b60008251612a58818460208701612502565b9190910192915050565b8054600090600181811c9080831680612a7c57607f831692505b6020808410821415612a9e57634e487b7160e01b600052602260045260246000fd5b818015612ab25760018114612ac357612af0565b60ff19861689528489019650612af0565b60008881526020902060005b86811015612ae85781548b820152908501908301612acf565b505084890196505b50505050505092915050565b60006118dc8284612a62565b60008451612b1a818460208901612502565b845190830190612b2e818360208901612502565b612b3a81830186612a62565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b600082612b6a57612b6a612b45565b500490565b600082612b7e57612b7e612b45565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c089083018461252e565b9695505050505050565b600060208284031215612c2457600080fd5b81516118dc8161249f565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204174d9bcf1dd6ad0473c77e227bc8c3cce36581506cac80a34061685960fdc9964736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6466527a31357964716e5678744a56544e42684b5635506b797a384778786a417669685172683473556265782f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d506d6e3575744531656a45797a4a707963553741693534536275446950453251426f334e45567258425741372f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102935760003560e01c80636352211e1161015a578063b35e3b2e116100c1578063d5abeb011161007a578063d5abeb0114610762578063da3ef23f14610778578063e7b99ec714610798578063e985e9c5146107ae578063f2c4ce1e146107f7578063f2fde38b1461081757600080fd5b8063b35e3b2e146106b7578063b88d4fde146106d7578063c6682862146106f7578063c87b56dd1461070c578063cfb89aba1461072c578063d49479eb1461074257600080fd5b8063930079a211610113578063930079a21461063157806395d89b4114610647578063a0712d681461065c578063a22cb4651461066f578063a3d078a61461068f578063a475b5dd146106a257600080fd5b80636352211e1461058857806370a08231146105a8578063715018a6146105c85780637f00c7a6146105dd57806388039d8f146105fd5780638da5cb5b1461061357600080fd5b806329d80c84116101fe57806344a0d68a116101b757806344a0d68a146104d75780634f6ccce7146104f7578063518302271461051757806355f804b3146105365780635c975abb14610556578063611b40951461057057600080fd5b806329d80c84146104225780632d6e71b6146104425780632f745c59146104625780633ccfd60b1461048257806342842e0e1461048a578063438b6300146104aa57600080fd5b806312065fe01161025057806312065fe01461037e57806313faede6146103a157806318160ddd146103b7578063239c70ae146103cc57806323b872dd146103e25780632782fb221461040257600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef578063081812fc14610311578063081c8c4414610349578063095ea7b31461035e575b600080fd5b3480156102a457600080fd5b506102b86102b33660046124b5565b610837565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e83660046124e7565b610862565b005b3480156102fb57600080fd5b506103046108a8565b6040516102c4919061255a565b34801561031d57600080fd5b5061033161032c36600461256d565b61093a565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b506103046109cf565b34801561036a57600080fd5b506102ed61037936600461259d565b610a5d565b34801561038a57600080fd5b50610393610b73565b6040519081526020016102c4565b3480156103ad57600080fd5b50610393600d5481565b3480156103c357600080fd5b50600854610393565b3480156103d857600080fd5b50610393600f5481565b3480156103ee57600080fd5b506102ed6103fd3660046125c7565b610ba5565b34801561040e57600080fd5b506102ed61041d3660046126af565b610bd6565b34801561042e57600080fd5b506102ed61043d3660046124e7565b610c17565b34801561044e57600080fd5b506102ed61045d36600461256d565b610c63565b34801561046e57600080fd5b5061039361047d36600461259d565b610c92565b6102ed610d28565b34801561049657600080fd5b506102ed6104a53660046125c7565b610dc6565b3480156104b657600080fd5b506104ca6104c53660046126e4565b610de1565b6040516102c491906126ff565b3480156104e357600080fd5b506102ed6104f236600461256d565b610e83565b34801561050357600080fd5b5061039361051236600461256d565b610eb2565b34801561052357600080fd5b506012546102b890610100900460ff1681565b34801561054257600080fd5b506102ed6105513660046126af565b610f45565b34801561056257600080fd5b506012546102b89060ff1681565b34801561057c57600080fd5b5060165460ff166102b8565b34801561059457600080fd5b506103316105a336600461256d565b610f82565b3480156105b457600080fd5b506103936105c33660046126e4565b610ff9565b3480156105d457600080fd5b506102ed611080565b3480156105e957600080fd5b506102ed6105f836600461256d565b6110b6565b34801561060957600080fd5b5061039360145481565b34801561061f57600080fd5b50600a546001600160a01b0316610331565b34801561063d57600080fd5b5061039360105481565b34801561065357600080fd5b506103046110e5565b6102ed61066a36600461256d565b6110f4565b34801561067b57600080fd5b506102ed61068a366004612743565b6112d3565b6102ed61069d366004612776565b611398565b3480156106ae57600080fd5b506102ed611694565b3480156106c357600080fd5b506102ed6106d236600461256d565b6116cf565b3480156106e357600080fd5b506102ed6106f23660046127bd565b611725565b34801561070357600080fd5b50610304611757565b34801561071857600080fd5b5061030461072736600461256d565b611764565b34801561073857600080fd5b5061039360135481565b34801561074e57600080fd5b506102ed61075d36600461256d565b6118e3565b34801561076e57600080fd5b50610393600e5481565b34801561078457600080fd5b506102ed6107933660046126af565b611912565b3480156107a457600080fd5b5061039360155481565b3480156107ba57600080fd5b506102b86107c9366004612839565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561080357600080fd5b506102ed6108123660046126af565b61194f565b34801561082357600080fd5b506102ed6108323660046126e4565b61198c565b60006001600160e01b0319821663780e9d6360e01b148061085c575061085c82611a24565b92915050565b600a546001600160a01b031633146108955760405162461bcd60e51b815260040161088c90612863565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108b790612898565b80601f01602080910402602001604051908101604052809291908181526020018280546108e390612898565b80156109305780601f1061090557610100808354040283529160200191610930565b820191906000526020600020905b81548152906001019060200180831161091357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088c565b506000908152600460205260409020546001600160a01b031690565b601780546109dc90612898565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612898565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b505050505081565b6000610a6882610f82565b9050806001600160a01b0316836001600160a01b03161415610ad65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088c565b336001600160a01b0382161480610af25750610af281336107c9565b610b645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088c565b610b6e8383611a74565b505050565b600a546000906001600160a01b03163314610ba05760405162461bcd60e51b815260040161088c90612863565b504790565b610baf3382611ae2565b610bcb5760405162461bcd60e51b815260040161088c906128d3565b610b6e838383611bd9565b600a546001600160a01b03163314610c005760405162461bcd60e51b815260040161088c90612863565b8051610c13906011906020840190612406565b5050565b600a546001600160a01b03163314610c415760405162461bcd60e51b815260040161088c90612863565b600060145411610c5057600080fd5b6016805460ff1916911515919091179055565b600a546001600160a01b03163314610c8d5760405162461bcd60e51b815260040161088c90612863565b601055565b6000610c9d83610ff9565b8210610cff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161088c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d525760405162461bcd60e51b815260040161088c90612863565b6000610d66600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610db0576040519150601f19603f3d011682016040523d82523d6000602084013e610db5565b606091505b5050905080610dc357600080fd5b50565b610b6e83838360405180602001604052806000815250611725565b60606000610dee83610ff9565b905060008167ffffffffffffffff811115610e0b57610e0b612603565b604051908082528060200260200182016040528015610e34578160200160208202803683370190505b50905060005b82811015610e7b57610e4c8582610c92565b828281518110610e5e57610e5e612924565b602090810291909101015280610e7381612950565b915050610e3a565b509392505050565b600a546001600160a01b03163314610ead5760405162461bcd60e51b815260040161088c90612863565b600d55565b6000610ebd60085490565b8210610f205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161088c565b60088281548110610f3357610f33612924565b90600052602060002001549050919050565b600a546001600160a01b03163314610f6f5760405162461bcd60e51b815260040161088c90612863565b8051610c1390600b906020840190612406565b6000818152600260205260408120546001600160a01b03168061085c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161088c565b60006001600160a01b0382166110645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161088c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110aa5760405162461bcd60e51b815260040161088c90612863565b6110b46000611d84565b565b600a546001600160a01b031633146110e05760405162461bcd60e51b815260040161088c90612863565b600f55565b6060600180546108b790612898565b60006110ff60085490565b60125490915060009060ff161561111557600080fd5b6000831161112257600080fd5b600a546001600160a01b031633141561115c5782601054101561114457600080fd5b8260106000828254611156919061296b565b90915550505b600a546001600160a01b0316331461129e5760165460ff161561117e57600080fd5b600061118933610ff9565b600f549091506111998583612982565b11156111a482611dd6565b6040516020016111b4919061299a565b604051602081830303815290604052906111e15760405162461bcd60e51b815260040161088c919061255a565b50601054600e546111f2919061296b565b6111fc8585612982565b11156112375760405162461bcd60e51b815260206004820152600a6024820152694d617820537570706c7960b01b604482015260640161088c565b83600d5461124591906129ce565b91508134101561125483611dd6565b61125d34611dd6565b60405160200161126e9291906129ed565b6040516020818303038152906040529061129b5760405162461bcd60e51b815260040161088c919061255a565b50505b60015b8381116112cd576112bb336112b68386612982565b611ed4565b806112c581612950565b9150506112a1565b50505050565b6001600160a01b03821633141561132c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60125460ff16156113e05760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161088c565b60165460ff166113ef57600080fd5b806040516020016114009190612a46565b6040516020818303038152906040528051906020012060116040516020016114289190612afc565b604051602081830303815290604052805190602001201461147f5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161088c565b600a546001600160a01b031633141561149757600080fd5b60006114a260085490565b90506000806114b033610ff9565b600f549091506114c08683612982565b11156114cb82611dd6565b6040516020016114db919061299a565b604051602081830303815290604052906115085760405162461bcd60e51b815260040161088c919061255a565b50601054600e54611519919061296b565b6115238685612982565b111561155e5760405162461bcd60e51b815260206004820152600a6024820152694d617820537570706c7960b01b604482015260640161088c565b60008560145461156e919061296b565b101561157957600080fd5b6013546115868683612982565b11156115e55760405162461bcd60e51b815260206004820152602860248201527f4d6178696d756d207065722077616c6c6574206973203320647572696e6720776044820152671a1a5d195b1a5cdd60c21b606482015260840161088c565b846015546115f391906129ce565b91508134101561160283611dd6565b61160b34611dd6565b60405160200161161c9291906129ed565b604051602081830303815290604052906116495760405162461bcd60e51b815260040161088c919061255a565b50846014600082825461165c919061296b565b90915550600190505b85811161168c5761167a336112b68387612982565b8061168481612950565b915050611665565b505050505050565b600a546001600160a01b031633146116be5760405162461bcd60e51b815260040161088c90612863565b6012805461ff001916610100179055565b600a546001600160a01b031633146116f95760405162461bcd60e51b815260040161088c90612863565b600061170460085490565b905080600e54611714919061296b565b821061171f57600080fd5b50601455565b61172f3383611ae2565b61174b5760405162461bcd60e51b815260040161088c906128d3565b6112cd84848484611eee565b600c80546109dc90612898565b6000818152600260205260409020546060906001600160a01b03166117e35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088c565b601254610100900460ff1661188457601780546117ff90612898565b80601f016020809104026020016040519081016040528092919081815260200182805461182b90612898565b80156118785780601f1061184d57610100808354040283529160200191611878565b820191906000526020600020905b81548152906001019060200180831161185b57829003601f168201915b50505050509050919050565b600061188e611f21565b905060008151116118ae57604051806020016040528060008152506118dc565b806118b884611dd6565b600c6040516020016118cc93929190612b08565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461190d5760405162461bcd60e51b815260040161088c90612863565b601555565b600a546001600160a01b0316331461193c5760405162461bcd60e51b815260040161088c90612863565b8051610c1390600c906020840190612406565b600a546001600160a01b031633146119795760405162461bcd60e51b815260040161088c90612863565b8051610c13906017906020840190612406565b600a546001600160a01b031633146119b65760405162461bcd60e51b815260040161088c90612863565b6001600160a01b038116611a1b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b610dc381611d84565b60006001600160e01b031982166380ac58cd60e01b1480611a5557506001600160e01b03198216635b5e139f60e01b145b8061085c57506301ffc9a760e01b6001600160e01b031983161461085c565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aa982610f82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b5b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088c565b6000611b6683610f82565b9050806001600160a01b0316846001600160a01b03161480611ba15750836001600160a01b0316611b968461093a565b6001600160a01b0316145b80611bd157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bec82610f82565b6001600160a01b031614611c545760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161088c565b6001600160a01b038216611cb65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b611cc1838383611f30565b611ccc600082611a74565b6001600160a01b0383166000908152600360205260408120805460019290611cf590849061296b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d23908490612982565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606081611dfa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e245780611e0e81612950565b9150611e1d9050600a83612b5b565b9150611dfe565b60008167ffffffffffffffff811115611e3f57611e3f612603565b6040519080825280601f01601f191660200182016040528015611e69576020820181803683370190505b5090505b8415611bd157611e7e60018361296b565b9150611e8b600a86612b6f565b611e96906030612982565b60f81b818381518110611eab57611eab612924565b60200101906001600160f81b031916908160001a905350611ecd600a86612b5b565b9450611e6d565b610c13828260405180602001604052806000815250611fe8565b611ef9848484611bd9565b611f058484848461201b565b6112cd5760405162461bcd60e51b815260040161088c90612b83565b6060600b80546108b790612898565b6001600160a01b038316611f8b57611f8681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fae565b816001600160a01b0316836001600160a01b031614611fae57611fae8382612128565b6001600160a01b038216611fc557610b6e816121c5565b826001600160a01b0316826001600160a01b031614610b6e57610b6e8282612274565b611ff283836122b8565b611fff600084848461201b565b610b6e5760405162461bcd60e51b815260040161088c90612b83565b60006001600160a01b0384163b1561211d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061205f903390899088908890600401612bd5565b602060405180830381600087803b15801561207957600080fd5b505af19250505080156120a9575060408051601f3d908101601f191682019092526120a691810190612c12565b60015b612103573d8080156120d7576040519150601f19603f3d011682016040523d82523d6000602084013e6120dc565b606091505b5080516120fb5760405162461bcd60e51b815260040161088c90612b83565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bd1565b506001949350505050565b6000600161213584610ff9565b61213f919061296b565b600083815260076020526040902054909150808214612192576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121d79060019061296b565b600083815260096020526040812054600880549394509092849081106121ff576121ff612924565b90600052602060002001549050806008838154811061222057612220612924565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225857612258612c2f565b6001900381819060005260206000200160009055905550505050565b600061227f83610ff9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661230e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088c565b6000818152600260205260409020546001600160a01b0316156123735760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088c565b61237f60008383611f30565b6001600160a01b03821660009081526003602052604081208054600192906123a8908490612982565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461241290612898565b90600052602060002090601f016020900481019282612434576000855561247a565b82601f1061244d57805160ff191683800117855561247a565b8280016001018555821561247a579182015b8281111561247a57825182559160200191906001019061245f565b5061248692915061248a565b5090565b5b80821115612486576000815560010161248b565b6001600160e01b031981168114610dc357600080fd5b6000602082840312156124c757600080fd5b81356118dc8161249f565b803580151581146124e257600080fd5b919050565b6000602082840312156124f957600080fd5b6118dc826124d2565b60005b8381101561251d578181015183820152602001612505565b838111156112cd5750506000910152565b60008151808452612546816020860160208601612502565b601f01601f19169290920160200192915050565b6020815260006118dc602083018461252e565b60006020828403121561257f57600080fd5b5035919050565b80356001600160a01b03811681146124e257600080fd5b600080604083850312156125b057600080fd5b6125b983612586565b946020939093013593505050565b6000806000606084860312156125dc57600080fd5b6125e584612586565b92506125f360208501612586565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561263457612634612603565b604051601f8501601f19908116603f0116810190828211818310171561265c5761265c612603565b8160405280935085815286868601111561267557600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126126a057600080fd5b6118dc83833560208501612619565b6000602082840312156126c157600080fd5b813567ffffffffffffffff8111156126d857600080fd5b611bd18482850161268f565b6000602082840312156126f657600080fd5b6118dc82612586565b6020808252825182820181905260009190848201906040850190845b818110156127375783518352928401929184019160010161271b565b50909695505050505050565b6000806040838503121561275657600080fd5b61275f83612586565b915061276d602084016124d2565b90509250929050565b6000806040838503121561278957600080fd5b82359150602083013567ffffffffffffffff8111156127a757600080fd5b6127b38582860161268f565b9150509250929050565b600080600080608085870312156127d357600080fd5b6127dc85612586565b93506127ea60208601612586565b925060408501359150606085013567ffffffffffffffff81111561280d57600080fd5b8501601f8101871361281e57600080fd5b61282d87823560208401612619565b91505092959194509250565b6000806040838503121561284c57600080fd5b61285583612586565b915061276d60208401612586565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128ac57607f821691505b602082108114156128cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156129645761296461293a565b5060010190565b60008282101561297d5761297d61293a565b500390565b600082198211156129955761299561293a565b500190565b6b02634b6b4ba103a37b5b2b7160a51b8152600082516129c181600c850160208701612502565b91909101600c0192915050565b60008160001904831182151516156129e8576129e861293a565b500290565b70024b731b7b93932b1ba1030b6b7bab73a1607d1b815260008351612a19816011850160208801612502565b600160fd1b6011918401918201528351612a3a816012840160208801612502565b01601201949350505050565b60008251612a58818460208701612502565b9190910192915050565b8054600090600181811c9080831680612a7c57607f831692505b6020808410821415612a9e57634e487b7160e01b600052602260045260246000fd5b818015612ab25760018114612ac357612af0565b60ff19861689528489019650612af0565b60008881526020902060005b86811015612ae85781548b820152908501908301612acf565b505084890196505b50505050505092915050565b60006118dc8284612a62565b60008451612b1a818460208901612502565b845190830190612b2e818360208901612502565b612b3a81830186612a62565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b600082612b6a57612b6a612b45565b500490565b600082612b7e57612b7e612b45565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c089083018461252e565b9695505050505050565b600060208284031215612c2457600080fd5b81516118dc8161249f565b634e487b7160e01b600052603160045260246000fdfea26469706673582212204174d9bcf1dd6ad0473c77e227bc8c3cce36581506cac80a34061685960fdc9964736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6466527a31357964716e5678744a56544e42684b5635506b797a384778786a417669685172683473556265782f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d506d6e3575744531656a45797a4a707963553741693534536275446950453251426f334e45567258425741372f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmdfRz15ydqnVxtJVTNBhKV5Pkyz8GxxjAvihQrh4sUbex/
Arg [1] : _initNotRevealedUri (string): ipfs://QmPmn5utE1ejEyzJpycU7Ai54SbuDiPE2QBo3NEVrXBWA7/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d6466527a31357964716e5678744a56544e42684b563550
Arg [4] : 6b797a384778786a417669685172683473556265782f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d506d6e3575744531656a45797a4a707963553741693534
Arg [7] : 536275446950453251426f334e45567258425741372f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43226:7009:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37004:224;;;;;;;;;;-1:-1:-1;37004:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37004:224:0;;;;;;;;49295:79;;;;;;;;;;-1:-1:-1;49295:79:0;;;;;:::i;:::-;;:::i;:::-;;24896:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26455:221::-;;;;;;;;;;-1:-1:-1;26455:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;26455:221:0;1878:203:1;43864:28:0;;;;;;;;;;;;;:::i;25978:411::-;;;;;;;;;;-1:-1:-1;25978:411:0;;;;;:::i;:::-;;:::i;50022:109::-;;;;;;;;;;;;;:::i;:::-;;;2669:25:1;;;2657:2;2642:18;50022:109:0;2523:177:1;43382:39:0;;;;;;;;;;;;;;;;37644:113;;;;;;;;;;-1:-1:-1;37732:10:0;:17;37644:113;;43466:32;;;;;;;;;;;;;;;;27345:339;;;;;;;;;;-1:-1:-1;27345:339:0;;;;;:::i;:::-;;:::i;49531:106::-;;;;;;;;;;-1:-1:-1;49531:106:0;;;;;:::i;:::-;;:::i;49382:137::-;;;;;;;;;;-1:-1:-1;49382:137:0;;;;;:::i;:::-;;:::i;48443:103::-;;;;;;;;;;-1:-1:-1;48443:103:0;;;;;:::i;:::-;;:::i;37312:256::-;;;;;;;;;;-1:-1:-1;37312:256:0;;;;;:::i;:::-;;:::i;49859:155::-;;;:::i;27755:185::-;;;;;;;;;;-1:-1:-1;27755:185:0;;;;;:::i;:::-;;:::i;47215:392::-;;;;;;;;;;-1:-1:-1;47215:392:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48554:86::-;;;;;;;;;;-1:-1:-1;48554:86:0;;;;;:::i;:::-;;:::i;37834:233::-;;;;;;;;;;-1:-1:-1;37834:233:0;;;;;:::i;:::-;;:::i;43619:28::-;;;;;;;;;;-1:-1:-1;43619:28:0;;;;;;;;;;;49024:104;;;;;;;;;;-1:-1:-1;49024:104:0;;;;;:::i;:::-;;:::i;43586:26::-;;;;;;;;;;-1:-1:-1;43586:26:0;;;;;;;;50139:93;;;;;;;;;;-1:-1:-1;50209:15:0;;;;50139:93;;24590:239;;;;;;;;;;-1:-1:-1;24590:239:0;;;;;:::i;:::-;;:::i;24320:208::-;;;;;;;;;;-1:-1:-1;24320:208:0;;;;;:::i;:::-;;:::i;4595:94::-;;;;;;;;;;;;;:::i;48760:122::-;;;;;;;;;;-1:-1:-1;48760:122:0;;;;;:::i;:::-;;:::i;43719:39::-;;;;;;;;;;;;;;;;3944:87;;;;;;;;;;-1:-1:-1;4017:6:0;;-1:-1:-1;;;;;4017:6:0;3944:87;;43505:35;;;;;;;;;;;;;;;;25065:104;;;;;;;;;;;;;:::i;45855:1352::-;;;;;;:::i;:::-;;:::i;26748:295::-;;;;;;;;;;-1:-1:-1;26748:295:0;;;;;:::i;:::-;;:::i;44328:1504::-;;;;;;:::i;:::-;;:::i;48366:69::-;;;;;;;;;;;;;:::i;49645:206::-;;;;;;;;;;-1:-1:-1;49645:206:0;;;;;:::i;:::-;;:::i;28011:328::-;;;;;;;;;;-1:-1:-1;28011:328:0;;;;;:::i;:::-;;:::i;43338:37::-;;;;;;;;;;;;;:::i;47615:725::-;;;;;;;;;;-1:-1:-1;47615:725:0;;;;;:::i;:::-;;:::i;43674:38::-;;;;;;;;;;;;;;;;48648:104;;;;;;;;;;-1:-1:-1;48648:104:0;;;;;:::i;:::-;;:::i;43428:31::-;;;;;;;;;;;;;;;;49136:151;;;;;;;;;;-1:-1:-1;49136:151:0;;;;;:::i;:::-;;:::i;43765:48::-;;;;;;;;;;;;;;;;27114:164;;;;;;;;;;-1:-1:-1;27114:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27235:25:0;;;27211:4;27235:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27114:164;48890:126;;;;;;;;;;-1:-1:-1;48890:126:0;;;;;:::i;:::-;;:::i;4844:192::-;;;;;;;;;;-1:-1:-1;4844:192:0;;;;;:::i;:::-;;:::i;37004:224::-;37106:4;-1:-1:-1;;;;;;37130:50:0;;-1:-1:-1;;;37130:50:0;;:90;;;37184:36;37208:11;37184:23;:36::i;:::-;37123:97;37004:224;-1:-1:-1;;37004:224:0:o;49295:79::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;;;;;;;;;49351:6:::1;:15:::0;;-1:-1:-1;;49351:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49295:79::o;24896:100::-;24950:13;24983:5;24976:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24896:100;:::o;26455:221::-;26531:7;29938:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29938:16:0;26551:73;;;;-1:-1:-1;;;26551:73:0;;7728:2:1;26551:73:0;;;7710:21:1;7767:2;7747:18;;;7740:30;7806:34;7786:18;;;7779:62;-1:-1:-1;;;7857:18:1;;;7850:42;7909:19;;26551:73:0;7526:408:1;26551:73:0;-1:-1:-1;26644:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26644:24:0;;26455:221::o;43864:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25978:411::-;26059:13;26075:23;26090:7;26075:14;:23::i;:::-;26059:39;;26123:5;-1:-1:-1;;;;;26117:11:0;:2;-1:-1:-1;;;;;26117:11:0;;;26109:57;;;;-1:-1:-1;;;26109:57:0;;8141:2:1;26109:57:0;;;8123:21:1;8180:2;8160:18;;;8153:30;8219:34;8199:18;;;8192:62;-1:-1:-1;;;8270:18:1;;;8263:31;8311:19;;26109:57:0;7939:397:1;26109:57:0;2812:10;-1:-1:-1;;;;;26201:21:0;;;;:62;;-1:-1:-1;26226:37:0;26243:5;2812:10;27114:164;:::i;26226:37::-;26179:168;;;;-1:-1:-1;;;26179:168:0;;8543:2:1;26179:168:0;;;8525:21:1;8582:2;8562:18;;;8555:30;8621:34;8601:18;;;8594:62;8692:26;8672:18;;;8665:54;8736:19;;26179:168:0;8341:420:1;26179:168:0;26360:21;26369:2;26373:7;26360:8;:21::i;:::-;26048:341;25978:411;;:::o;50022:109::-;4017:6;;50075:7;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;-1:-1:-1;50102:21:0::1;50022:109:::0;:::o;27345:339::-;27540:41;2812:10;27573:7;27540:18;:41::i;:::-;27532:103;;;;-1:-1:-1;;;27532:103:0;;;;;;;:::i;:::-;27648:28;27658:4;27664:2;27668:7;27648:9;:28::i;49531:106::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;49607:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49531:106:::0;:::o;49382:137::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;49474:1:::1;49454:17;;:21;49446:30;;;::::0;::::1;;49487:15;:24:::0;;-1:-1:-1;;49487:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49382:137::o;48443:103::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;48511:15:::1;:27:::0;48443:103::o;37312:256::-;37409:7;37445:23;37462:5;37445:16;:23::i;:::-;37437:5;:31;37429:87;;;;-1:-1:-1;;;37429:87:0;;9386:2:1;37429:87:0;;;9368:21:1;9425:2;9405:18;;;9398:30;9464:34;9444:18;;;9437:62;-1:-1:-1;;;9515:18:1;;;9508:41;9566:19;;37429:87:0;9184:407:1;37429:87:0;-1:-1:-1;;;;;;37534:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37312:256::o;49859:155::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;49916:7:::1;49937;4017:6:::0;;-1:-1:-1;;;;;4017:6:0;;3944:87;49937:7:::1;-1:-1:-1::0;;;;;49929:21:0::1;49958;49929:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49915:69;;;50003:2;49995:11;;;::::0;::::1;;49904:110;49859:155::o:0;27755:185::-;27893:39;27910:4;27916:2;27920:7;27893:39;;;;;;;;;;;;:16;:39::i;47215:392::-;47302:16;47336:23;47362:17;47372:6;47362:9;:17::i;:::-;47336:43;;47390:25;47432:15;47418:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47418:30:0;;47390:58;;47466:9;47461:113;47481:15;47477:1;:19;47461:113;;;47532:30;47552:6;47560:1;47532:19;:30::i;:::-;47518:8;47527:1;47518:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47498:3;;;;:::i;:::-;;;;47461:113;;;-1:-1:-1;47591:8:0;47215:392;-1:-1:-1;;;47215:392:0:o;48554:86::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;48617:4:::1;:15:::0;48554:86::o;37834:233::-;37909:7;37945:30;37732:10;:17;;37644:113;37945:30;37937:5;:38;37929:95;;;;-1:-1:-1;;;37929:95:0;;10412:2:1;37929:95:0;;;10394:21:1;10451:2;10431:18;;;10424:30;10490:34;10470:18;;;10463:62;-1:-1:-1;;;10541:18:1;;;10534:42;10593:19;;37929:95:0;10210:408:1;37929:95:0;38042:10;38053:5;38042:17;;;;;;;;:::i;:::-;;;;;;;;;38035:24;;37834:233;;;:::o;49024:104::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;49099:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;24590:239::-:0;24662:7;24698:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24698:16:0;24733:19;24725:73;;;;-1:-1:-1;;;24725:73:0;;10825:2:1;24725:73:0;;;10807:21:1;10864:2;10844:18;;;10837:30;10903:34;10883:18;;;10876:62;-1:-1:-1;;;10954:18:1;;;10947:39;11003:19;;24725:73:0;10623:405:1;24320:208:0;24392:7;-1:-1:-1;;;;;24420:19:0;;24412:74;;;;-1:-1:-1;;;24412:74:0;;11235:2:1;24412:74:0;;;11217:21:1;11274:2;11254:18;;;11247:30;11313:34;11293:18;;;11286:62;-1:-1:-1;;;11364:18:1;;;11357:40;11414:19;;24412:74:0;11033:406:1;24412:74:0;-1:-1:-1;;;;;;24504:16:0;;;;;:9;:16;;;;;;;24320:208::o;4595:94::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;4660:21:::1;4678:1;4660:9;:21::i;:::-;4595:94::o:0;48760:122::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;48841:13:::1;:33:::0;48760:122::o;25065:104::-;25121:13;25154:7;25147:14;;;;;:::i;45855:1352::-;45916:14;45933:13;37732:10;:17;;37644:113;45933:13;45998:6;;45916:30;;-1:-1:-1;45957:19:0;;45998:6;;45997:7;45989:16;;;;;;46038:1;46024:11;:15;46016:24;;;;;;4017:6;;-1:-1:-1;;;;;4017:6:0;46075:10;:21;46071:138;;;46140:11;46121:15;;:30;;46113:39;;;;;;46186:11;46167:15;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;46071:138:0;4017:6;;-1:-1:-1;;;;;4017:6:0;46225:10;:21;46221:864;;46272:15;;;;46271:16;46263:25;;;;;;46303:18;46324:21;46334:10;46324:9;:21::i;:::-;46416:13;;46303:42;;-1:-1:-1;46388:24:0;46401:11;46303:42;46388:24;:::i;:::-;:41;;46488:21;:10;:19;:21::i;:::-;46455:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;46362:164;;;;;-1:-1:-1;;;46362:164:0;;;;;;;;:::i;:::-;;46603:15;;46591:9;;:27;;;;:::i;:::-;46567:20;46576:11;46567:6;:20;:::i;:::-;:51;;46541:123;;;;-1:-1:-1;;;46541:123:0;;12345:2:1;46541:123:0;;;12327:21:1;12384:2;12364:18;;;12357:30;-1:-1:-1;;;12403:18:1;;;12396:40;12453:18;;46541:123:0;12143:334:1;46541:123:0;46702:11;46695:4;;:18;;;;:::i;:::-;46681:32;;46769:11;46756:9;:24;;46917:22;:11;:20;:22::i;:::-;46996:20;:9;:18;:20::i;:::-;46828:211;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46730:343;;;;;-1:-1:-1;;;46730:343:0;;;;;;;;:::i;:::-;;46248:837;46221:864;47114:1;47097:103;47122:11;47117:1;:16;47097:103;;47155:33;47165:10;47177;47186:1;47177:6;:10;:::i;:::-;47155:9;:33::i;:::-;47135:3;;;;:::i;:::-;;;;47097:103;;;;45905:1302;;45855:1352;:::o;26748:295::-;-1:-1:-1;;;;;26851:24:0;;2812:10;26851:24;;26843:62;;;;-1:-1:-1;;;26843:62:0;;13626:2:1;26843:62:0;;;13608:21:1;13665:2;13645:18;;;13638:30;13704:27;13684:18;;;13677:55;13749:18;;26843:62:0;13424:349:1;26843:62:0;2812:10;26918:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26918:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26918:53:0;;;;;;;;;;26987:48;;540:41:1;;;26918:42:0;;2812:10;26987:48;;513:18:1;26987:48:0;;;;;;;26748:295;;:::o;44328:1504::-;44431:6;;;;44430:7;44422:38;;;;-1:-1:-1;;;44422:38:0;;13980:2:1;44422:38:0;;;13962:21:1;14019:2;13999:18;;;13992:30;-1:-1:-1;;;14038:18:1;;;14031:48;14096:18;;44422:38:0;13778:342:1;44422:38:0;44479:15;;;;44471:24;;;;;;44586:10;44568:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;44558:41;;;;;;44542:9;44524:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;44514:40;;;;;;:85;44506:115;;;;-1:-1:-1;;;44506:115:0;;15914:2:1;44506:115:0;;;15896:21:1;15953:2;15933:18;;;15926:30;-1:-1:-1;;;15972:18:1;;;15965:47;16029:18;;44506:115:0;15712:341:1;44506:115:0;4017:6;;-1:-1:-1;;;;;4017:6:0;44640:10;:21;;44632:30;;;;;;44683:14;44700:13;37732:10;:17;;37644:113;44700:13;44683:30;;44724:19;44756:18;44777:21;44787:10;44777:9;:21::i;:::-;44861:13;;44756:42;;-1:-1:-1;44833:24:0;44846:11;44756:42;44833:24;:::i;:::-;:41;;44929:21;:10;:19;:21::i;:::-;44896:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;44811:152;;;;;-1:-1:-1;;;44811:152:0;;;;;;;;:::i;:::-;;45032:15;;45020:9;;:27;;;;:::i;:::-;44996:20;45005:11;44996:6;:20;:::i;:::-;:51;;44974:111;;;;-1:-1:-1;;;44974:111:0;;12345:2:1;44974:111:0;;;12327:21:1;12384:2;12364:18;;;12357:30;-1:-1:-1;;;12403:18:1;;;12396:40;12453:18;;44974:111:0;12143:334:1;44974:111:0;45163:1;45148:11;45128:17;;:31;;;;:::i;:::-;:36;;45120:45;;;;;;45212:19;;45184:24;45197:11;45184:10;:24;:::i;:::-;:47;;45176:100;;;;-1:-1:-1;;;45176:100:0;;16260:2:1;45176:100:0;;;16242:21:1;16299:2;16279:18;;;16272:30;16338:34;16318:18;;;16311:62;-1:-1:-1;;;16389:18:1;;;16382:38;16437:19;;45176:100:0;16058:404:1;45176:100:0;45319:11;45303:13;;:27;;;;:::i;:::-;45289:41;;45378:11;45365:9;:24;;45510:22;:11;:20;:22::i;:::-;45581:20;:9;:18;:20::i;:::-;45429:191;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45343:303;;;;;-1:-1:-1;;;45343:303:0;;;;;;;;:::i;:::-;;45688:11;45667:17;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;45739:1:0;;-1:-1:-1;45722:103:0;45747:11;45742:1;:16;45722:103;;45780:33;45790:10;45802;45811:1;45802:6;:10;:::i;45780:33::-;45760:3;;;;:::i;:::-;;;;45722:103;;;;44411:1421;;;44328:1504;;:::o;48366:69::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;48412:8:::1;:15:::0;;-1:-1:-1;;48412:15:0::1;;;::::0;;48366:69::o;49645:206::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;49719:19:::1;49741:13;37732:10:::0;:17;;37644:113;49741:13:::1;49719:35;;49794:11;49782:9;;:23;;;;:::i;:::-;49773:6;:32;49765:41;;;::::0;::::1;;-1:-1:-1::0;49817:17:0::1;:26:::0;49645:206::o;28011:328::-;28186:41;2812:10;28219:7;28186:18;:41::i;:::-;28178:103;;;;-1:-1:-1;;;28178:103:0;;;;;;;:::i;:::-;28292:39;28306:4;28312:2;28316:7;28325:5;28292:13;:39::i;43338:37::-;;;;;;;:::i;47615:725::-;29914:4;29938:16;;;:7;:16;;;;;;47733:13;;-1:-1:-1;;;;;29938:16:0;47764:113;;;;-1:-1:-1;;;47764:113:0;;16669:2:1;47764:113:0;;;16651:21:1;16708:2;16688:18;;;16681:30;16747:34;16727:18;;;16720:62;-1:-1:-1;;;16798:18:1;;;16791:45;16853:19;;47764:113:0;16467:411:1;47764:113:0;47894:8;;;;;;;47890:71;;47935:14;47928:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47615:725;;;:::o;47890:71::-;47973:28;48004:10;:8;:10::i;:::-;47973:41;;48076:1;48051:14;48045:28;:32;:287;;;;;;;;;;;;;;;;;48169:14;48210:18;:7;:16;:18::i;:::-;48255:13;48126:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48045:287;48025:307;47615:725;-1:-1:-1;;;47615:725:0:o;48648:104::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;48720:13:::1;:24:::0;48648:104::o;49136:151::-;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;49246:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;48890:126::-:0;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;48976:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4844:192::-:0;4017:6;;-1:-1:-1;;;;;4017:6:0;2812:10;4164:23;4156:68;;;;-1:-1:-1;;;4156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4933:22:0;::::1;4925:73;;;::::0;-1:-1:-1;;;4925:73:0;;17640:2:1;4925:73:0::1;::::0;::::1;17622:21:1::0;17679:2;17659:18;;;17652:30;17718:34;17698:18;;;17691:62;-1:-1:-1;;;17769:18:1;;;17762:36;17815:19;;4925:73:0::1;17438:402:1::0;4925:73:0::1;5009:19;5019:8;5009:9;:19::i;23951:305::-:0;24053:4;-1:-1:-1;;;;;;24090:40:0;;-1:-1:-1;;;24090:40:0;;:105;;-1:-1:-1;;;;;;;24147:48:0;;-1:-1:-1;;;24147:48:0;24090:105;:158;;;-1:-1:-1;;;;;;;;;;16039:40:0;;;24212:36;15930:157;33831:174;33906:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33906:29:0;-1:-1:-1;;;;;33906:29:0;;;;;;;;:24;;33960:23;33906:24;33960:14;:23::i;:::-;-1:-1:-1;;;;;33951:46:0;;;;;;;;;;;33831:174;;:::o;30143:348::-;30236:4;29938:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29938:16:0;30253:73;;;;-1:-1:-1;;;30253:73:0;;18047:2:1;30253:73:0;;;18029:21:1;18086:2;18066:18;;;18059:30;18125:34;18105:18;;;18098:62;-1:-1:-1;;;18176:18:1;;;18169:42;18228:19;;30253:73:0;17845:408:1;30253:73:0;30337:13;30353:23;30368:7;30353:14;:23::i;:::-;30337:39;;30406:5;-1:-1:-1;;;;;30395:16:0;:7;-1:-1:-1;;;;;30395:16:0;;:51;;;;30439:7;-1:-1:-1;;;;;30415:31:0;:20;30427:7;30415:11;:20::i;:::-;-1:-1:-1;;;;;30415:31:0;;30395:51;:87;;;-1:-1:-1;;;;;;27235:25:0;;;27211:4;27235:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30450:32;30387:96;30143:348;-1:-1:-1;;;;30143:348:0:o;33135:578::-;33294:4;-1:-1:-1;;;;;33267:31:0;:23;33282:7;33267:14;:23::i;:::-;-1:-1:-1;;;;;33267:31:0;;33259:85;;;;-1:-1:-1;;;33259:85:0;;18460:2:1;33259:85:0;;;18442:21:1;18499:2;18479:18;;;18472:30;18538:34;18518:18;;;18511:62;-1:-1:-1;;;18589:18:1;;;18582:39;18638:19;;33259:85:0;18258:405:1;33259:85:0;-1:-1:-1;;;;;33363:16:0;;33355:65;;;;-1:-1:-1;;;33355:65:0;;18870:2:1;33355:65:0;;;18852:21:1;18909:2;18889:18;;;18882:30;18948:34;18928:18;;;18921:62;-1:-1:-1;;;18999:18:1;;;18992:34;19043:19;;33355:65:0;18668:400:1;33355:65:0;33433:39;33454:4;33460:2;33464:7;33433:20;:39::i;:::-;33537:29;33554:1;33558:7;33537:8;:29::i;:::-;-1:-1:-1;;;;;33579:15:0;;;;;;:9;:15;;;;;:20;;33598:1;;33579:15;:20;;33598:1;;33579:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33610:13:0;;;;;;:9;:13;;;;;:18;;33627:1;;33610:13;:18;;33627:1;;33610:18;:::i;:::-;;;;-1:-1:-1;;33639:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33639:21:0;-1:-1:-1;;;;;33639:21:0;;;;;;;;;33678:27;;33639:16;;33678:27;;;;;;;33135:578;;;:::o;5044:173::-;5119:6;;;-1:-1:-1;;;;;5136:17:0;;;-1:-1:-1;;;;;;5136:17:0;;;;;;;5169:40;;5119:6;;;5136:17;5119:6;;5169:40;;5100:16;;5169:40;5089:128;5044:173;:::o;348:723::-;404:13;625:10;621:53;;-1:-1:-1;;652:10:0;;;;;;;;;;;;-1:-1:-1;;;652:10:0;;;;;348:723::o;621:53::-;699:5;684:12;740:78;747:9;;740:78;;773:8;;;;:::i;:::-;;-1:-1:-1;796:10:0;;-1:-1:-1;804:2:0;796:10;;:::i;:::-;;;740:78;;;828:19;860:6;850:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;850:17:0;;828:39;;878:154;885:10;;878:154;;912:11;922:1;912:11;;:::i;:::-;;-1:-1:-1;981:10:0;989:2;981:5;:10;:::i;:::-;968:24;;:2;:24;:::i;:::-;955:39;;938:6;945;938:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;938:56:0;;;;;;;;-1:-1:-1;1009:11:0;1018:2;1009:11;;:::i;:::-;;;878:154;;30833:110;30909:26;30919:2;30923:7;30909:26;;;;;;;;;;;;:9;:26::i;29221:315::-;29378:28;29388:4;29394:2;29398:7;29378:9;:28::i;:::-;29425:48;29448:4;29454:2;29458:7;29467:5;29425:22;:48::i;:::-;29417:111;;;;-1:-1:-1;;;29417:111:0;;;;;;;:::i;44208:108::-;44268:13;44301:7;44294:14;;;;;:::i;38680:589::-;-1:-1:-1;;;;;38886:18:0;;38882:187;;38921:40;38953:7;40096:10;:17;;40069:24;;;;:15;:24;;;;;:44;;;40124:24;;;;;;;;;;;;39992:164;38921:40;38882:187;;;38991:2;-1:-1:-1;;;;;38983:10:0;:4;-1:-1:-1;;;;;38983:10:0;;38979:90;;39010:47;39043:4;39049:7;39010:32;:47::i;:::-;-1:-1:-1;;;;;39083:16:0;;39079:183;;39116:45;39153:7;39116:36;:45::i;39079:183::-;39189:4;-1:-1:-1;;;;;39183:10:0;:2;-1:-1:-1;;;;;39183:10:0;;39179:83;;39210:40;39238:2;39242:7;39210:27;:40::i;31170:321::-;31300:18;31306:2;31310:7;31300:5;:18::i;:::-;31351:54;31382:1;31386:2;31390:7;31399:5;31351:22;:54::i;:::-;31329:154;;;;-1:-1:-1;;;31329:154:0;;;;;;;:::i;34570:799::-;34725:4;-1:-1:-1;;;;;34746:13:0;;6313:20;6361:8;34742:620;;34782:72;;-1:-1:-1;;;34782:72:0;;-1:-1:-1;;;;;34782:36:0;;;;;:72;;2812:10;;34833:4;;34839:7;;34848:5;;34782:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34782:72:0;;;;;;;;-1:-1:-1;;34782:72:0;;;;;;;;;;;;:::i;:::-;;;34778:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35024:13:0;;35020:272;;35067:60;;-1:-1:-1;;;35067:60:0;;;;;;;:::i;35020:272::-;35242:6;35236:13;35227:6;35223:2;35219:15;35212:38;34778:529;-1:-1:-1;;;;;;34905:51:0;-1:-1:-1;;;34905:51:0;;-1:-1:-1;34898:58:0;;34742:620;-1:-1:-1;35346:4:0;34570:799;;;;;;:::o;40783:988::-;41049:22;41099:1;41074:22;41091:4;41074:16;:22::i;:::-;:26;;;;:::i;:::-;41111:18;41132:26;;;:17;:26;;;;;;41049:51;;-1:-1:-1;41265:28:0;;;41261:328;;-1:-1:-1;;;;;41332:18:0;;41310:19;41332:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41383:30;;;;;;:44;;;41500:30;;:17;:30;;;;;:43;;;41261:328;-1:-1:-1;41685:26:0;;;;:17;:26;;;;;;;;41678:33;;;-1:-1:-1;;;;;41729:18:0;;;;;:12;:18;;;;;:34;;;;;;;41722:41;40783:988::o;42066:1079::-;42344:10;:17;42319:22;;42344:21;;42364:1;;42344:21;:::i;:::-;42376:18;42397:24;;;:15;:24;;;;;;42770:10;:26;;42319:46;;-1:-1:-1;42397:24:0;;42319:46;;42770:26;;;;;;:::i;:::-;;;;;;;;;42748:48;;42834:11;42809:10;42820;42809:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42914:28;;;:15;:28;;;;;;;:41;;;43086:24;;;;;43079:31;43121:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42137:1008;;;42066:1079;:::o;39570:221::-;39655:14;39672:20;39689:2;39672:16;:20::i;:::-;-1:-1:-1;;;;;39703:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39748:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39570:221:0:o;31827:382::-;-1:-1:-1;;;;;31907:16:0;;31899:61;;;;-1:-1:-1;;;31899:61:0;;20948:2:1;31899:61:0;;;20930:21:1;;;20967:18;;;20960:30;21026:34;21006:18;;;20999:62;21078:18;;31899:61:0;20746:356:1;31899:61:0;29914:4;29938:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29938:16:0;:30;31971:58;;;;-1:-1:-1;;;31971:58:0;;21309:2:1;31971:58:0;;;21291:21:1;21348:2;21328:18;;;21321:30;21387;21367:18;;;21360:58;21435:18;;31971:58:0;21107:352:1;31971:58:0;32042:45;32071:1;32075:2;32079:7;32042:20;:45::i;:::-;-1:-1:-1;;;;;32100:13:0;;;;;;:9;:13;;;;;:18;;32117:1;;32100:13;:18;;32117:1;;32100:18;:::i;:::-;;;;-1:-1:-1;;32129:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32129:21:0;-1:-1:-1;;;;;32129:21:0;;;;;;;;32168:33;;32129:16;;;32168:33;;32129:16;;32168:33;31827:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:632;3235:5;3265:18;3306:2;3298:6;3295:14;3292:40;;;3312:18;;:::i;:::-;3387:2;3381:9;3355:2;3441:15;;-1:-1:-1;;3437:24:1;;;3463:2;3433:33;3429:42;3417:55;;;3487:18;;;3507:22;;;3484:46;3481:72;;;3533:18;;:::i;:::-;3573:10;3569:2;3562:22;3602:6;3593:15;;3632:6;3624;3617:22;3672:3;3663:6;3658:3;3654:16;3651:25;3648:45;;;3689:1;3686;3679:12;3648:45;3739:6;3734:3;3727:4;3719:6;3715:17;3702:44;3794:1;3787:4;3778:6;3770;3766:19;3762:30;3755:41;;;;3170:632;;;;;:::o;3807:222::-;3850:5;3903:3;3896:4;3888:6;3884:17;3880:27;3870:55;;3921:1;3918;3911:12;3870:55;3943:80;4019:3;4010:6;3997:20;3990:4;3982:6;3978:17;3943:80;:::i;4034:322::-;4103:6;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;4212:9;4199:23;4245:18;4237:6;4234:30;4231:50;;;4277:1;4274;4267:12;4231:50;4300;4342:7;4333:6;4322:9;4318:22;4300:50;:::i;4361:186::-;4420:6;4473:2;4461:9;4452:7;4448:23;4444:32;4441:52;;;4489:1;4486;4479:12;4441:52;4512:29;4531:9;4512:29;:::i;4552:632::-;4723:2;4775:21;;;4845:13;;4748:18;;;4867:22;;;4694:4;;4723:2;4946:15;;;;4920:2;4905:18;;;4694:4;4989:169;5003:6;5000:1;4997:13;4989:169;;;5064:13;;5052:26;;5133:15;;;;5098:12;;;;5025:1;5018:9;4989:169;;;-1:-1:-1;5175:3:1;;4552:632;-1:-1:-1;;;;;;4552:632:1:o;5189:254::-;5254:6;5262;5315:2;5303:9;5294:7;5290:23;5286:32;5283:52;;;5331:1;5328;5321:12;5283:52;5354:29;5373:9;5354:29;:::i;:::-;5344:39;;5402:35;5433:2;5422:9;5418:18;5402:35;:::i;:::-;5392:45;;5189:254;;;;;:::o;5448:390::-;5526:6;5534;5587:2;5575:9;5566:7;5562:23;5558:32;5555:52;;;5603:1;5600;5593:12;5555:52;5639:9;5626:23;5616:33;;5700:2;5689:9;5685:18;5672:32;5727:18;5719:6;5716:30;5713:50;;;5759:1;5756;5749:12;5713:50;5782;5824:7;5815:6;5804:9;5800:22;5782:50;:::i;:::-;5772:60;;;5448:390;;;;;:::o;5843:667::-;5938:6;5946;5954;5962;6015:3;6003:9;5994:7;5990:23;5986:33;5983:53;;;6032:1;6029;6022:12;5983:53;6055:29;6074:9;6055:29;:::i;:::-;6045:39;;6103:38;6137:2;6126:9;6122:18;6103:38;:::i;:::-;6093:48;;6188:2;6177:9;6173:18;6160:32;6150:42;;6243:2;6232:9;6228:18;6215:32;6270:18;6262:6;6259:30;6256:50;;;6302:1;6299;6292:12;6256:50;6325:22;;6378:4;6370:13;;6366:27;-1:-1:-1;6356:55:1;;6407:1;6404;6397:12;6356:55;6430:74;6496:7;6491:2;6478:16;6473:2;6469;6465:11;6430:74;:::i;:::-;6420:84;;;5843:667;;;;;;;:::o;6515:260::-;6583:6;6591;6644:2;6632:9;6623:7;6619:23;6615:32;6612:52;;;6660:1;6657;6650:12;6612:52;6683:29;6702:9;6683:29;:::i;:::-;6673:39;;6731:38;6765:2;6754:9;6750:18;6731:38;:::i;6780:356::-;6982:2;6964:21;;;7001:18;;;6994:30;7060:34;7055:2;7040:18;;7033:62;7127:2;7112:18;;6780:356::o;7141:380::-;7220:1;7216:12;;;;7263;;;7284:61;;7338:4;7330:6;7326:17;7316:27;;7284:61;7391:2;7383:6;7380:14;7360:18;7357:38;7354:161;;;7437:10;7432:3;7428:20;7425:1;7418:31;7472:4;7469:1;7462:15;7500:4;7497:1;7490:15;7354:161;;7141:380;;;:::o;8766:413::-;8968:2;8950:21;;;9007:2;8987:18;;;8980:30;9046:34;9041:2;9026:18;;9019:62;-1:-1:-1;;;9112:2:1;9097:18;;9090:47;9169:3;9154:19;;8766:413::o;9806:127::-;9867:10;9862:3;9858:20;9855:1;9848:31;9898:4;9895:1;9888:15;9922:4;9919:1;9912:15;9938:127;9999:10;9994:3;9990:20;9987:1;9980:31;10030:4;10027:1;10020:15;10054:4;10051:1;10044:15;10070:135;10109:3;-1:-1:-1;;10130:17:1;;10127:43;;;10150:18;;:::i;:::-;-1:-1:-1;10197:1:1;10186:13;;10070:135::o;11444:125::-;11484:4;11512:1;11509;11506:8;11503:34;;;11517:18;;:::i;:::-;-1:-1:-1;11554:9:1;;11444:125::o;11574:128::-;11614:3;11645:1;11641:6;11638:1;11635:13;11632:39;;;11651:18;;:::i;:::-;-1:-1:-1;11687:9:1;;11574:128::o;11707:431::-;-1:-1:-1;;;11964:3:1;11957:27;11939:3;12013:6;12007:13;12029:62;12084:6;12079:2;12074:3;12070:12;12063:4;12055:6;12051:17;12029:62;:::i;:::-;12111:16;;;;12129:2;12107:25;;11707:431;-1:-1:-1;;11707:431:1:o;12482:168::-;12522:7;12588:1;12584;12580:6;12576:14;12573:1;12570:21;12565:1;12558:9;12551:17;12547:45;12544:71;;;12595:18;;:::i;:::-;-1:-1:-1;12635:9:1;;12482:168::o;12655:764::-;-1:-1:-1;;;13061:3:1;13054:32;13036:3;13115:6;13109:13;13131:62;13186:6;13181:2;13176:3;13172:12;13165:4;13157:6;13153:17;13131:62;:::i;:::-;-1:-1:-1;;;13252:2:1;13212:16;;;13244:11;;;13237:24;13286:13;;13308:63;13286:13;13357:2;13349:11;;13342:4;13330:17;;13308:63;:::i;:::-;13391:17;13410:2;13387:26;;12655:764;-1:-1:-1;;;;12655:764:1:o;14125:276::-;14256:3;14294:6;14288:13;14310:53;14356:6;14351:3;14344:4;14336:6;14332:17;14310:53;:::i;:::-;14379:16;;;;;14125:276;-1:-1:-1;;14125:276:1:o;14532:973::-;14617:12;;14582:3;;14672:1;14692:18;;;;14745;;;;14772:61;;14826:4;14818:6;14814:17;14804:27;;14772:61;14852:2;14900;14892:6;14889:14;14869:18;14866:38;14863:161;;;14946:10;14941:3;14937:20;14934:1;14927:31;14981:4;14978:1;14971:15;15009:4;15006:1;14999:15;14863:161;15040:18;15067:104;;;;15185:1;15180:319;;;;15033:466;;15067:104;-1:-1:-1;;15100:24:1;;15088:37;;15145:16;;;;-1:-1:-1;15067:104:1;;15180:319;14479:1;14472:14;;;14516:4;14503:18;;15274:1;15288:165;15302:6;15299:1;15296:13;15288:165;;;15380:14;;15367:11;;;15360:35;15423:16;;;;15317:10;;15288:165;;;15292:3;;15482:6;15477:3;15473:16;15466:23;;15033:466;;;;;;;14532:973;;;;:::o;15510:197::-;15638:3;15663:38;15697:3;15689:6;15663:38;:::i;16883:550::-;17107:3;17145:6;17139:13;17161:53;17207:6;17202:3;17195:4;17187:6;17183:17;17161:53;:::i;:::-;17277:13;;17236:16;;;;17299:57;17277:13;17236:16;17333:4;17321:17;;17299:57;:::i;:::-;17372:55;17417:8;17410:5;17406:20;17398:6;17372:55;:::i;:::-;17365:62;16883:550;-1:-1:-1;;;;;;;16883:550:1:o;19073:127::-;19134:10;19129:3;19125:20;19122:1;19115:31;19165:4;19162:1;19155:15;19189:4;19186:1;19179:15;19205:120;19245:1;19271;19261:35;;19276:18;;:::i;:::-;-1:-1:-1;19310:9:1;;19205:120::o;19330:112::-;19362:1;19388;19378:35;;19393:18;;:::i;:::-;-1:-1:-1;19427:9:1;;19330:112::o;19447:414::-;19649:2;19631:21;;;19688:2;19668:18;;;19661:30;19727:34;19722:2;19707:18;;19700:62;-1:-1:-1;;;19793:2:1;19778:18;;19771:48;19851:3;19836:19;;19447:414::o;19866:489::-;-1:-1:-1;;;;;20135:15:1;;;20117:34;;20187:15;;20182:2;20167:18;;20160:43;20234:2;20219:18;;20212:34;;;20282:3;20277:2;20262:18;;20255:31;;;20060:4;;20303:46;;20329:19;;20321:6;20303:46;:::i;:::-;20295:54;19866:489;-1:-1:-1;;;;;;19866:489:1:o;20360:249::-;20429:6;20482:2;20470:9;20461:7;20457:23;20453:32;20450:52;;;20498:1;20495;20488:12;20450:52;20530:9;20524:16;20549:30;20573:5;20549:30;:::i;20614:127::-;20675:10;20670:3;20666:20;20663:1;20656:31;20706:4;20703:1;20696:15;20730:4;20727:1;20720:15

Swarm Source

ipfs://4174d9bcf1dd6ad0473c77e227bc8c3cce36581506cac80a34061685960fdc99
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.