ETH Price: $3,210.02 (-1.38%)
Gas: 2 Gwei

Winter Elves NFT (ELF)
 

Overview

TokenID

105

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
WinterElfs

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-24
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

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





pragma solidity ^0.8.0;

contract WinterElfs is ERC721Enumerable, Ownable {
    using Strings for uint256;
    uint256 public totalCount = 8888; //Total
    uint256 public price = 0.06 ether; // 0.06 eth
    string public baseURI;
    string public URIPost = ".json";
    string public notRevealURI;
    bool public revealed = false;
    uint256 addressRegistryCount;

    constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealURI
    ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setRevealURI(_initNotRevealURI);
    }
    
    function _notRevealURI() internal view virtual returns (string memory) {
        return notRevealURI;
    }

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

    function reveal(bool shouldReveal) public onlyOwner {
        revealed = shouldReveal;
    }

    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }
    
    function setRevealURI(string memory _newURI) public onlyOwner {
        notRevealURI = _newURI;
    }

    function setURIPost(bool _asJson) public onlyOwner {
        URIPost = _asJson ? ".json" : "";
    }

    function changePrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

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

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

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

    function setTokenURI(string memory _tokenURI)
        public
        onlyOwner
    {
        setBaseURI(_tokenURI);
    }

    function mintElf(address _to ,uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= totalCount);
        require(_mintAmount > 0);
        require(_mintAmount <= 10);

        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    function burn(uint256 tokenId) public {
        _burn(tokenId);
    }

    function _burn(uint256 tokenId)
        internal
        virtual
        override(ERC721)
    {
        _burn(tokenId);
    }

    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 withdraw() public payable onlyOwner {
    require(payable(msg.sender).send(address(this).balance));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"URIPost","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintElf","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"shouldReveal","type":"bool"}],"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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_asJson","type":"bool"}],"name":"setURIPost","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":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6122b8600b5566d529ae9e860000600c5560c06040526005608081905264173539b7b760d91b60a09081526200003991600e919062000208565b506010805460ff191690553480156200005157600080fd5b50604051620029f0380380620029f0833981016040819052620000749162000359565b8351849084906200008d90600090602085019062000208565b508051620000a390600190602084019062000208565b505050620000c0620000ba620000e060201b60201c565b620000e4565b620000cb8262000136565b620000d6816200019e565b5050505062000495565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000140620000e0565b6001600160a01b031662000153620001f9565b6001600160a01b031614620001855760405162461bcd60e51b81526004016200017c906200040d565b60405180910390fd5b80516200019a90600d90602084019062000208565b5050565b620001a8620000e0565b6001600160a01b0316620001bb620001f9565b6001600160a01b031614620001e45760405162461bcd60e51b81526004016200017c906200040d565b80516200019a90600f90602084019062000208565b600a546001600160a01b031690565b828054620002169062000442565b90600052602060002090601f0160209004810192826200023a576000855562000285565b82601f106200025557805160ff191683800117855562000285565b8280016001018555821562000285579182015b828111156200028557825182559160200191906001019062000268565b506200029392915062000297565b5090565b5b8082111562000293576000815560010162000298565b600082601f830112620002bf578081fd5b81516001600160401b0380821115620002dc57620002dc6200047f565b6040516020601f8401601f19168201810183811183821017156200030457620003046200047f565b60405283825285840181018710156200031b578485fd5b8492505b838310156200033e57858301810151828401820152918201916200031f565b838311156200034f57848185840101525b5095945050505050565b600080600080608085870312156200036f578384fd5b84516001600160401b038082111562000386578586fd5b6200039488838901620002ae565b95506020870151915080821115620003aa578485fd5b620003b888838901620002ae565b94506040870151915080821115620003ce578384fd5b620003dc88838901620002ae565b93506060870151915080821115620003f2578283fd5b506200040187828801620002ae565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200045757607f821691505b602082108114156200047957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61254b80620004a56000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063a811a37b116100a0578063d021aa501161006f578063d021aa501461058f578063e0df5b6f146105a4578063e985e9c5146105c4578063e98d657f146105e4578063f2fde38b146105f757610204565b8063a811a37b1461050f578063b88d4fde1461052f578063ba405b011461054f578063c87b56dd1461056f57610204565b8063940cd05b116100e7578063940cd05b1461048557806395d89b41146104a5578063a035b1fe146104ba578063a22cb465146104cf578063a2b40d19146104ef57610204565b80636c0360eb1461042657806370a082311461043b578063715018a61461045b5780638da5cb5b1461047057610204565b806334eafb111161019b578063438b63001161016a578063438b6300146103845780634f6ccce7146103b157806351830227146103d157806355f804b3146103e65780636352211e1461040657610204565b806334eafb11146103275780633ccfd60b1461033c57806342842e0e1461034457806342966c681461036457610204565b8063095ea7b3116101d7578063095ea7b3146102a357806318160ddd146102c557806323b872dd146102e75780632f745c591461030757610204565b806301ffc9a71461020957806306fdde031461023f578063079400f214610261578063081812fc14610276575b600080fd5b34801561021557600080fd5b50610229610224366004611c9b565b610617565b6040516102369190611eb4565b60405180910390f35b34801561024b57600080fd5b50610254610644565b6040516102369190611ebf565b34801561026d57600080fd5b506102546106d6565b34801561028257600080fd5b50610296610291366004611d19565b610764565b6040516102369190611e1f565b3480156102af57600080fd5b506102c36102be366004611c58565b6107b0565b005b3480156102d157600080fd5b506102da610848565b60405161023691906123cf565b3480156102f357600080fd5b506102c3610302366004611b7b565b61084e565b34801561031357600080fd5b506102da610322366004611c58565b610886565b34801561033357600080fd5b506102da6108d8565b6102c36108de565b34801561035057600080fd5b506102c361035f366004611b7b565b610943565b34801561037057600080fd5b506102c361037f366004611d19565b61095e565b34801561039057600080fd5b506103a461039f366004611b2f565b61096a565b6040516102369190611e70565b3480156103bd57600080fd5b506102da6103cc366004611d19565b610a28565b3480156103dd57600080fd5b50610229610a83565b3480156103f257600080fd5b506102c3610401366004611cd3565b610a8c565b34801561041257600080fd5b50610296610421366004611d19565b610ae2565b34801561043257600080fd5b50610254610b17565b34801561044757600080fd5b506102da610456366004611b2f565b610b24565b34801561046757600080fd5b506102c3610b68565b34801561047c57600080fd5b50610296610bb1565b34801561049157600080fd5b506102c36104a0366004611c81565b610bc0565b3480156104b157600080fd5b50610254610c12565b3480156104c657600080fd5b506102da610c21565b3480156104db57600080fd5b506102c36104ea366004611c2f565b610c27565b3480156104fb57600080fd5b506102c361050a366004611d19565b610cf5565b34801561051b57600080fd5b506102c361052a366004611cd3565b610d39565b34801561053b57600080fd5b506102c361054a366004611bb6565b610d8b565b34801561055b57600080fd5b506102c361056a366004611c81565b610dca565b34801561057b57600080fd5b5061025461058a366004611d19565b610e56565b34801561059b57600080fd5b50610254610f78565b3480156105b057600080fd5b506102c36105bf366004611cd3565b610f85565b3480156105d057600080fd5b506102296105df366004611b49565b610fcd565b6102c36105f2366004611c58565b610ffb565b34801561060357600080fd5b506102c3610612366004611b2f565b61106b565b60006001600160e01b0319821663780e9d6360e01b148061063c575061063c826110d9565b90505b919050565b60606000805461065390612453565b80601f016020809104026020016040519081016040528092919081815260200182805461067f90612453565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b5050505050905090565b600e80546106e390612453565b80601f016020809104026020016040519081016040528092919081815260200182805461070f90612453565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b505050505081565b600061076f82611119565b6107945760405162461bcd60e51b815260040161078b906121d8565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107bb82610ae2565b9050806001600160a01b0316836001600160a01b031614156107ef5760405162461bcd60e51b815260040161078b906122f1565b806001600160a01b0316610801611136565b6001600160a01b0316148061081d575061081d816105df611136565b6108395760405162461bcd60e51b815260040161078b906120b3565b610843838361113a565b505050565b60085490565b61085f610859611136565b826111a8565b61087b5760405162461bcd60e51b815260040161078b90612332565b61084383838361122d565b600061089183610b24565b82106108af5760405162461bcd60e51b815260040161078b90611ed2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b5481565b6108e6611136565b6001600160a01b03166108f7610bb1565b6001600160a01b03161461091d5760405162461bcd60e51b815260040161078b90612224565b60405133904780156108fc02916000818181858888f1935050505061094157600080fd5b565b61084383838360405180602001604052806000815250610d8b565b6109678161135a565b50565b6060600061097783610b24565b905060008167ffffffffffffffff8111156109a257634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109cb578160200160208202803683370190505b50905060005b82811015610a20576109e38582610886565b828281518110610a0357634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a188161248e565b9150506109d1565b509392505050565b6000610a32610848565b8210610a505760405162461bcd60e51b815260040161078b90612383565b60088281548110610a7157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b60105460ff1681565b610a94611136565b6001600160a01b0316610aa5610bb1565b6001600160a01b031614610acb5760405162461bcd60e51b815260040161078b90612224565b8051610ade90600d9060208401906119ff565b5050565b6000818152600260205260408120546001600160a01b03168061063c5760405162461bcd60e51b815260040161078b9061215a565b600d80546106e390612453565b60006001600160a01b038216610b4c5760405162461bcd60e51b815260040161078b90612110565b506001600160a01b031660009081526003602052604090205490565b610b70611136565b6001600160a01b0316610b81610bb1565b6001600160a01b031614610ba75760405162461bcd60e51b815260040161078b90612224565b6109416000611363565b600a546001600160a01b031690565b610bc8611136565b6001600160a01b0316610bd9610bb1565b6001600160a01b031614610bff5760405162461bcd60e51b815260040161078b90612224565b6010805460ff1916911515919091179055565b60606001805461065390612453565b600c5481565b610c2f611136565b6001600160a01b0316826001600160a01b03161415610c605760405162461bcd60e51b815260040161078b90612030565b8060056000610c6d611136565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610cb1611136565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ce99190611eb4565b60405180910390a35050565b610cfd611136565b6001600160a01b0316610d0e610bb1565b6001600160a01b031614610d345760405162461bcd60e51b815260040161078b90612224565b600c55565b610d41611136565b6001600160a01b0316610d52610bb1565b6001600160a01b031614610d785760405162461bcd60e51b815260040161078b90612224565b8051610ade90600f9060208401906119ff565b610d9c610d96611136565b836111a8565b610db85760405162461bcd60e51b815260040161078b90612332565b610dc4848484846113b5565b50505050565b610dd2611136565b6001600160a01b0316610de3610bb1565b6001600160a01b031614610e095760405162461bcd60e51b815260040161078b90612224565b80610e235760405180602001604052806000815250610e42565b60405180604001604052806005815260200164173539b7b760d91b8152505b8051610ade91600e916020909101906119ff565b6060610e6182611119565b610e7d5760405162461bcd60e51b815260040161078b906122a2565b60105460ff16610f1957600f8054610e9490612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec090612453565b8015610f0d5780601f10610ee257610100808354040283529160200191610f0d565b820191906000526020600020905b815481529060010190602001808311610ef057829003601f168201915b5050505050905061063f565b6000610f236113e8565b90506000815111610f435760405180602001604052806000815250610f71565b80610f4d846113f7565b600e604051602001610f6193929190611d5d565b6040516020818303038152906040525b9392505050565b600f80546106e390612453565b610f8d611136565b6001600160a01b0316610f9e610bb1565b6001600160a01b031614610fc45760405162461bcd60e51b815260040161078b90612224565b61096781610a8c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000611005610848565b600b5490915061101583836123e4565b111561102057600080fd5b6000821161102d57600080fd5b600a82111561103b57600080fd5b60005b82811015610dc4576110598461105483856123e4565b611512565b806110638161248e565b91505061103e565b611073611136565b6001600160a01b0316611084610bb1565b6001600160a01b0316146110aa5760405162461bcd60e51b815260040161078b90612224565b6001600160a01b0381166110d05760405162461bcd60e51b815260040161078b90611f6f565b61096781611363565b60006001600160e01b031982166380ac58cd60e01b148061110a57506001600160e01b03198216635b5e139f60e01b145b8061063c575061063c8261152c565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061116f82610ae2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111b382611119565b6111cf5760405162461bcd60e51b815260040161078b90612067565b60006111da83610ae2565b9050806001600160a01b0316846001600160a01b031614806112155750836001600160a01b031661120a84610764565b6001600160a01b0316145b8061122557506112258185610fcd565b949350505050565b826001600160a01b031661124082610ae2565b6001600160a01b0316146112665760405162461bcd60e51b815260040161078b90612259565b6001600160a01b03821661128c5760405162461bcd60e51b815260040161078b90611fec565b611297838383611545565b6112a260008261113a565b6001600160a01b03831660009081526003602052604081208054600192906112cb908490612410565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f99084906123e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109678161135a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113c084848461122d565b6113cc848484846115ce565b610dc45760405162461bcd60e51b815260040161078b90611f1d565b6060600d805461065390612453565b60608161141c57506040805180820190915260018152600360fc1b602082015261063f565b8160005b811561144657806114308161248e565b915061143f9050600a836123fc565b9150611420565b60008167ffffffffffffffff81111561146f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611499576020820181803683370190505b5090505b8415611225576114ae600183612410565b91506114bb600a866124a9565b6114c69060306123e4565b60f81b8183815181106114e957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061150b600a866123fc565b945061149d565b610ade8282604051806020016040528060008152506116e9565b6001600160e01b031981166301ffc9a760e01b14919050565b611550838383610843565b6001600160a01b03831661156c576115678161171c565b61158f565b816001600160a01b0316836001600160a01b03161461158f5761158f8382611760565b6001600160a01b0382166115ab576115a6816117fd565b610843565b826001600160a01b0316826001600160a01b0316146108435761084382826118d6565b60006115e2846001600160a01b031661191a565b156116de57836001600160a01b031663150b7a026115fe611136565b8786866040518563ffffffff1660e01b81526004016116209493929190611e33565b602060405180830381600087803b15801561163a57600080fd5b505af192505050801561166a575060408051601f3d908101601f1916820190925261166791810190611cb7565b60015b6116c4573d808015611698576040519150601f19603f3d011682016040523d82523d6000602084013e61169d565b606091505b5080516116bc5760405162461bcd60e51b815260040161078b90611f1d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611225565b506001949350505050565b6116f38383611920565b61170060008484846115ce565b6108435760405162461bcd60e51b815260040161078b90611f1d565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161176d84610b24565b6117779190612410565b6000838152600760205260409020549091508082146117ca576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061180f90600190612410565b6000838152600960205260408120546008805493945090928490811061184557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061187457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118ba57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006118e183610b24565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b0382166119465760405162461bcd60e51b815260040161078b906121a3565b61194f81611119565b1561196c5760405162461bcd60e51b815260040161078b90611fb5565b61197860008383611545565b6001600160a01b03821660009081526003602052604081208054600192906119a19084906123e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a0b90612453565b90600052602060002090601f016020900481019282611a2d5760008555611a73565b82601f10611a4657805160ff1916838001178555611a73565b82800160010185558215611a73579182015b82811115611a73578251825591602001919060010190611a58565b50611a7f929150611a83565b5090565b5b80821115611a7f5760008155600101611a84565b600067ffffffffffffffff80841115611ab357611ab36124e9565b604051601f8501601f191681016020018281118282101715611ad757611ad76124e9565b604052848152915081838501861015611aef57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461063f57600080fd5b8035801515811461063f57600080fd5b600060208284031215611b40578081fd5b610f7182611b08565b60008060408385031215611b5b578081fd5b611b6483611b08565b9150611b7260208401611b08565b90509250929050565b600080600060608486031215611b8f578081fd5b611b9884611b08565b9250611ba660208501611b08565b9150604084013590509250925092565b60008060008060808587031215611bcb578081fd5b611bd485611b08565b9350611be260208601611b08565b925060408501359150606085013567ffffffffffffffff811115611c04578182fd5b8501601f81018713611c14578182fd5b611c2387823560208401611a98565b91505092959194509250565b60008060408385031215611c41578182fd5b611c4a83611b08565b9150611b7260208401611b1f565b60008060408385031215611c6a578182fd5b611c7383611b08565b946020939093013593505050565b600060208284031215611c92578081fd5b610f7182611b1f565b600060208284031215611cac578081fd5b8135610f71816124ff565b600060208284031215611cc8578081fd5b8151610f71816124ff565b600060208284031215611ce4578081fd5b813567ffffffffffffffff811115611cfa578182fd5b8201601f81018413611d0a578182fd5b61122584823560208401611a98565b600060208284031215611d2a578081fd5b5035919050565b60008151808452611d49816020860160208601612427565b601f01601f19169290920160200192915050565b600084516020611d708285838a01612427565b855191840191611d838184848a01612427565b8554920191839060028104600180831680611d9f57607f831692505b858310811415611dbd57634e487b7160e01b88526022600452602488fd5b808015611dd15760018114611de257611e0e565b60ff19851688528388019550611e0e565b611deb8b6123d8565b895b85811015611e065781548a820152908401908801611ded565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e6690830184611d31565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ea857835183529284019291840191600101611e8c565b50909695505050505050565b901515815260200190565b600060208252610f716020830184611d31565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156123f7576123f76124bd565b500190565b60008261240b5761240b6124d3565b500490565b600082821015612422576124226124bd565b500390565b60005b8381101561244257818101518382015260200161242a565b83811115610dc45750506000910152565b60028104600182168061246757607f821691505b6020821081141561248857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124a2576124a26124bd565b5060010190565b6000826124b8576124b86124d3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096757600080fdfea2646970667358221220e8b27415dace92e3a5a39c1057c3047983e5250e38c186da4591f89297a41d5c64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001057696e74657220456c766573204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454c4600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e64795a70706d514e58574a41326e6d466d4e5a536e46395935614b4d37447544554c58364a33437a7735702f000000000000000000000000000000000000000000000000000000000000000000000000000000000046697066733a2f2f516d5852725167695755334d466738433955524b59613863627673386a3154676e3654425838355a626a6e7767622f6e6f7452657665616c65642e6a736f6e0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636c0360eb11610118578063a811a37b116100a0578063d021aa501161006f578063d021aa501461058f578063e0df5b6f146105a4578063e985e9c5146105c4578063e98d657f146105e4578063f2fde38b146105f757610204565b8063a811a37b1461050f578063b88d4fde1461052f578063ba405b011461054f578063c87b56dd1461056f57610204565b8063940cd05b116100e7578063940cd05b1461048557806395d89b41146104a5578063a035b1fe146104ba578063a22cb465146104cf578063a2b40d19146104ef57610204565b80636c0360eb1461042657806370a082311461043b578063715018a61461045b5780638da5cb5b1461047057610204565b806334eafb111161019b578063438b63001161016a578063438b6300146103845780634f6ccce7146103b157806351830227146103d157806355f804b3146103e65780636352211e1461040657610204565b806334eafb11146103275780633ccfd60b1461033c57806342842e0e1461034457806342966c681461036457610204565b8063095ea7b3116101d7578063095ea7b3146102a357806318160ddd146102c557806323b872dd146102e75780632f745c591461030757610204565b806301ffc9a71461020957806306fdde031461023f578063079400f214610261578063081812fc14610276575b600080fd5b34801561021557600080fd5b50610229610224366004611c9b565b610617565b6040516102369190611eb4565b60405180910390f35b34801561024b57600080fd5b50610254610644565b6040516102369190611ebf565b34801561026d57600080fd5b506102546106d6565b34801561028257600080fd5b50610296610291366004611d19565b610764565b6040516102369190611e1f565b3480156102af57600080fd5b506102c36102be366004611c58565b6107b0565b005b3480156102d157600080fd5b506102da610848565b60405161023691906123cf565b3480156102f357600080fd5b506102c3610302366004611b7b565b61084e565b34801561031357600080fd5b506102da610322366004611c58565b610886565b34801561033357600080fd5b506102da6108d8565b6102c36108de565b34801561035057600080fd5b506102c361035f366004611b7b565b610943565b34801561037057600080fd5b506102c361037f366004611d19565b61095e565b34801561039057600080fd5b506103a461039f366004611b2f565b61096a565b6040516102369190611e70565b3480156103bd57600080fd5b506102da6103cc366004611d19565b610a28565b3480156103dd57600080fd5b50610229610a83565b3480156103f257600080fd5b506102c3610401366004611cd3565b610a8c565b34801561041257600080fd5b50610296610421366004611d19565b610ae2565b34801561043257600080fd5b50610254610b17565b34801561044757600080fd5b506102da610456366004611b2f565b610b24565b34801561046757600080fd5b506102c3610b68565b34801561047c57600080fd5b50610296610bb1565b34801561049157600080fd5b506102c36104a0366004611c81565b610bc0565b3480156104b157600080fd5b50610254610c12565b3480156104c657600080fd5b506102da610c21565b3480156104db57600080fd5b506102c36104ea366004611c2f565b610c27565b3480156104fb57600080fd5b506102c361050a366004611d19565b610cf5565b34801561051b57600080fd5b506102c361052a366004611cd3565b610d39565b34801561053b57600080fd5b506102c361054a366004611bb6565b610d8b565b34801561055b57600080fd5b506102c361056a366004611c81565b610dca565b34801561057b57600080fd5b5061025461058a366004611d19565b610e56565b34801561059b57600080fd5b50610254610f78565b3480156105b057600080fd5b506102c36105bf366004611cd3565b610f85565b3480156105d057600080fd5b506102296105df366004611b49565b610fcd565b6102c36105f2366004611c58565b610ffb565b34801561060357600080fd5b506102c3610612366004611b2f565b61106b565b60006001600160e01b0319821663780e9d6360e01b148061063c575061063c826110d9565b90505b919050565b60606000805461065390612453565b80601f016020809104026020016040519081016040528092919081815260200182805461067f90612453565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b5050505050905090565b600e80546106e390612453565b80601f016020809104026020016040519081016040528092919081815260200182805461070f90612453565b801561075c5780601f106107315761010080835404028352916020019161075c565b820191906000526020600020905b81548152906001019060200180831161073f57829003601f168201915b505050505081565b600061076f82611119565b6107945760405162461bcd60e51b815260040161078b906121d8565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107bb82610ae2565b9050806001600160a01b0316836001600160a01b031614156107ef5760405162461bcd60e51b815260040161078b906122f1565b806001600160a01b0316610801611136565b6001600160a01b0316148061081d575061081d816105df611136565b6108395760405162461bcd60e51b815260040161078b906120b3565b610843838361113a565b505050565b60085490565b61085f610859611136565b826111a8565b61087b5760405162461bcd60e51b815260040161078b90612332565b61084383838361122d565b600061089183610b24565b82106108af5760405162461bcd60e51b815260040161078b90611ed2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b5481565b6108e6611136565b6001600160a01b03166108f7610bb1565b6001600160a01b03161461091d5760405162461bcd60e51b815260040161078b90612224565b60405133904780156108fc02916000818181858888f1935050505061094157600080fd5b565b61084383838360405180602001604052806000815250610d8b565b6109678161135a565b50565b6060600061097783610b24565b905060008167ffffffffffffffff8111156109a257634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109cb578160200160208202803683370190505b50905060005b82811015610a20576109e38582610886565b828281518110610a0357634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a188161248e565b9150506109d1565b509392505050565b6000610a32610848565b8210610a505760405162461bcd60e51b815260040161078b90612383565b60088281548110610a7157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b60105460ff1681565b610a94611136565b6001600160a01b0316610aa5610bb1565b6001600160a01b031614610acb5760405162461bcd60e51b815260040161078b90612224565b8051610ade90600d9060208401906119ff565b5050565b6000818152600260205260408120546001600160a01b03168061063c5760405162461bcd60e51b815260040161078b9061215a565b600d80546106e390612453565b60006001600160a01b038216610b4c5760405162461bcd60e51b815260040161078b90612110565b506001600160a01b031660009081526003602052604090205490565b610b70611136565b6001600160a01b0316610b81610bb1565b6001600160a01b031614610ba75760405162461bcd60e51b815260040161078b90612224565b6109416000611363565b600a546001600160a01b031690565b610bc8611136565b6001600160a01b0316610bd9610bb1565b6001600160a01b031614610bff5760405162461bcd60e51b815260040161078b90612224565b6010805460ff1916911515919091179055565b60606001805461065390612453565b600c5481565b610c2f611136565b6001600160a01b0316826001600160a01b03161415610c605760405162461bcd60e51b815260040161078b90612030565b8060056000610c6d611136565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610cb1611136565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ce99190611eb4565b60405180910390a35050565b610cfd611136565b6001600160a01b0316610d0e610bb1565b6001600160a01b031614610d345760405162461bcd60e51b815260040161078b90612224565b600c55565b610d41611136565b6001600160a01b0316610d52610bb1565b6001600160a01b031614610d785760405162461bcd60e51b815260040161078b90612224565b8051610ade90600f9060208401906119ff565b610d9c610d96611136565b836111a8565b610db85760405162461bcd60e51b815260040161078b90612332565b610dc4848484846113b5565b50505050565b610dd2611136565b6001600160a01b0316610de3610bb1565b6001600160a01b031614610e095760405162461bcd60e51b815260040161078b90612224565b80610e235760405180602001604052806000815250610e42565b60405180604001604052806005815260200164173539b7b760d91b8152505b8051610ade91600e916020909101906119ff565b6060610e6182611119565b610e7d5760405162461bcd60e51b815260040161078b906122a2565b60105460ff16610f1957600f8054610e9490612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec090612453565b8015610f0d5780601f10610ee257610100808354040283529160200191610f0d565b820191906000526020600020905b815481529060010190602001808311610ef057829003601f168201915b5050505050905061063f565b6000610f236113e8565b90506000815111610f435760405180602001604052806000815250610f71565b80610f4d846113f7565b600e604051602001610f6193929190611d5d565b6040516020818303038152906040525b9392505050565b600f80546106e390612453565b610f8d611136565b6001600160a01b0316610f9e610bb1565b6001600160a01b031614610fc45760405162461bcd60e51b815260040161078b90612224565b61096781610a8c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000611005610848565b600b5490915061101583836123e4565b111561102057600080fd5b6000821161102d57600080fd5b600a82111561103b57600080fd5b60005b82811015610dc4576110598461105483856123e4565b611512565b806110638161248e565b91505061103e565b611073611136565b6001600160a01b0316611084610bb1565b6001600160a01b0316146110aa5760405162461bcd60e51b815260040161078b90612224565b6001600160a01b0381166110d05760405162461bcd60e51b815260040161078b90611f6f565b61096781611363565b60006001600160e01b031982166380ac58cd60e01b148061110a57506001600160e01b03198216635b5e139f60e01b145b8061063c575061063c8261152c565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061116f82610ae2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006111b382611119565b6111cf5760405162461bcd60e51b815260040161078b90612067565b60006111da83610ae2565b9050806001600160a01b0316846001600160a01b031614806112155750836001600160a01b031661120a84610764565b6001600160a01b0316145b8061122557506112258185610fcd565b949350505050565b826001600160a01b031661124082610ae2565b6001600160a01b0316146112665760405162461bcd60e51b815260040161078b90612259565b6001600160a01b03821661128c5760405162461bcd60e51b815260040161078b90611fec565b611297838383611545565b6112a260008261113a565b6001600160a01b03831660009081526003602052604081208054600192906112cb908490612410565b90915550506001600160a01b03821660009081526003602052604081208054600192906112f99084906123e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109678161135a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113c084848461122d565b6113cc848484846115ce565b610dc45760405162461bcd60e51b815260040161078b90611f1d565b6060600d805461065390612453565b60608161141c57506040805180820190915260018152600360fc1b602082015261063f565b8160005b811561144657806114308161248e565b915061143f9050600a836123fc565b9150611420565b60008167ffffffffffffffff81111561146f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611499576020820181803683370190505b5090505b8415611225576114ae600183612410565b91506114bb600a866124a9565b6114c69060306123e4565b60f81b8183815181106114e957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061150b600a866123fc565b945061149d565b610ade8282604051806020016040528060008152506116e9565b6001600160e01b031981166301ffc9a760e01b14919050565b611550838383610843565b6001600160a01b03831661156c576115678161171c565b61158f565b816001600160a01b0316836001600160a01b03161461158f5761158f8382611760565b6001600160a01b0382166115ab576115a6816117fd565b610843565b826001600160a01b0316826001600160a01b0316146108435761084382826118d6565b60006115e2846001600160a01b031661191a565b156116de57836001600160a01b031663150b7a026115fe611136565b8786866040518563ffffffff1660e01b81526004016116209493929190611e33565b602060405180830381600087803b15801561163a57600080fd5b505af192505050801561166a575060408051601f3d908101601f1916820190925261166791810190611cb7565b60015b6116c4573d808015611698576040519150601f19603f3d011682016040523d82523d6000602084013e61169d565b606091505b5080516116bc5760405162461bcd60e51b815260040161078b90611f1d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611225565b506001949350505050565b6116f38383611920565b61170060008484846115ce565b6108435760405162461bcd60e51b815260040161078b90611f1d565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161176d84610b24565b6117779190612410565b6000838152600760205260409020549091508082146117ca576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061180f90600190612410565b6000838152600960205260408120546008805493945090928490811061184557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061187457634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118ba57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006118e183610b24565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b0382166119465760405162461bcd60e51b815260040161078b906121a3565b61194f81611119565b1561196c5760405162461bcd60e51b815260040161078b90611fb5565b61197860008383611545565b6001600160a01b03821660009081526003602052604081208054600192906119a19084906123e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a0b90612453565b90600052602060002090601f016020900481019282611a2d5760008555611a73565b82601f10611a4657805160ff1916838001178555611a73565b82800160010185558215611a73579182015b82811115611a73578251825591602001919060010190611a58565b50611a7f929150611a83565b5090565b5b80821115611a7f5760008155600101611a84565b600067ffffffffffffffff80841115611ab357611ab36124e9565b604051601f8501601f191681016020018281118282101715611ad757611ad76124e9565b604052848152915081838501861015611aef57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461063f57600080fd5b8035801515811461063f57600080fd5b600060208284031215611b40578081fd5b610f7182611b08565b60008060408385031215611b5b578081fd5b611b6483611b08565b9150611b7260208401611b08565b90509250929050565b600080600060608486031215611b8f578081fd5b611b9884611b08565b9250611ba660208501611b08565b9150604084013590509250925092565b60008060008060808587031215611bcb578081fd5b611bd485611b08565b9350611be260208601611b08565b925060408501359150606085013567ffffffffffffffff811115611c04578182fd5b8501601f81018713611c14578182fd5b611c2387823560208401611a98565b91505092959194509250565b60008060408385031215611c41578182fd5b611c4a83611b08565b9150611b7260208401611b1f565b60008060408385031215611c6a578182fd5b611c7383611b08565b946020939093013593505050565b600060208284031215611c92578081fd5b610f7182611b1f565b600060208284031215611cac578081fd5b8135610f71816124ff565b600060208284031215611cc8578081fd5b8151610f71816124ff565b600060208284031215611ce4578081fd5b813567ffffffffffffffff811115611cfa578182fd5b8201601f81018413611d0a578182fd5b61122584823560208401611a98565b600060208284031215611d2a578081fd5b5035919050565b60008151808452611d49816020860160208601612427565b601f01601f19169290920160200192915050565b600084516020611d708285838a01612427565b855191840191611d838184848a01612427565b8554920191839060028104600180831680611d9f57607f831692505b858310811415611dbd57634e487b7160e01b88526022600452602488fd5b808015611dd15760018114611de257611e0e565b60ff19851688528388019550611e0e565b611deb8b6123d8565b895b85811015611e065781548a820152908401908801611ded565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e6690830184611d31565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611ea857835183529284019291840191600101611e8c565b50909695505050505050565b901515815260200190565b600060208252610f716020830184611d31565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156123f7576123f76124bd565b500190565b60008261240b5761240b6124d3565b500490565b600082821015612422576124226124bd565b500390565b60005b8381101561244257818101518382015260200161242a565b83811115610dc45750506000910152565b60028104600182168061246757607f821691505b6020821081141561248857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124a2576124a26124bd565b5060010190565b6000826124b8576124b86124d3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096757600080fdfea2646970667358221220e8b27415dace92e3a5a39c1057c3047983e5250e38c186da4591f89297a41d5c64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001057696e74657220456c766573204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454c4600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e64795a70706d514e58574a41326e6d466d4e5a536e46395935614b4d37447544554c58364a33437a7735702f000000000000000000000000000000000000000000000000000000000000000000000000000000000046697066733a2f2f516d5852725167695755334d466738433955524b59613863627673386a3154676e3654425838355a626a6e7767622f6e6f7452657665616c65642e6a736f6e0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Winter Elves NFT
Arg [1] : _symbol (string): ELF
Arg [2] : _initBaseURI (string): ipfs://QmNdyZppmQNXWJA2nmFmNZSnF9Y5aKM7DuDULX6J3Czw5p/
Arg [3] : _initNotRevealURI (string): ipfs://QmXRrQgiWU3MFg8C9URKYa8cbvs8j1Tgn6TBX85Zbjnwgb/notRevealed.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 57696e74657220456c766573204e465400000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 454c460000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d4e64795a70706d514e58574a41326e6d466d4e5a536e46
Arg [10] : 395935614b4d37447544554c58364a33437a7735702f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000046
Arg [12] : 697066733a2f2f516d5852725167695755334d466738433955524b5961386362
Arg [13] : 7673386a3154676e3654425838355a626a6e7767622f6e6f7452657665616c65
Arg [14] : 642e6a736f6e0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43221:3048:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34722:224;;;;;;;;;;-1:-1:-1;34722:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22614:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43436:31::-;;;;;;;;;;;;;:::i;24173:221::-;;;;;;;;;;-1:-1:-1;24173:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23696:411::-;;;;;;;;;;-1:-1:-1;23696:411:0;;;;;:::i;:::-;;:::i;:::-;;35362:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25063:339::-;;;;;;;;;;-1:-1:-1;25063:339:0;;;;;:::i;:::-;;:::i;35030:256::-;;;;;;;;;;-1:-1:-1;35030:256:0;;;;;:::i;:::-;;:::i;43309:32::-;;;;;;;;;;;;;:::i;46152:114::-;;;:::i;25473:185::-;;;;;;;;;;-1:-1:-1;25473:185:0;;;;;:::i;:::-;;:::i;45578:71::-;;;;;;;;;;-1:-1:-1;45578:71:0;;;;;:::i;:::-;;:::i;45796:348::-;;;;;;;;;;-1:-1:-1;45796:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35552:233::-;;;;;;;;;;-1:-1:-1;35552:233:0;;;;;:::i;:::-;;:::i;43507:28::-;;;;;;;;;;;;;:::i;44170:96::-;;;;;;;;;;-1:-1:-1;44170:96:0;;;;;:::i;:::-;;:::i;22308:239::-;;;;;;;;;;-1:-1:-1;22308:239:0;;;;;:::i;:::-;;:::i;43408:21::-;;;;;;;;;;;;;:::i;22038:208::-;;;;;;;;;;-1:-1:-1;22038:208:0;;;;;:::i;:::-;;:::i;42519:94::-;;;;;;;;;;;;;:::i;41868:87::-;;;;;;;;;;;;;:::i;44068:94::-;;;;;;;;;;-1:-1:-1;44068:94:0;;;;;:::i;:::-;;:::i;22783:104::-;;;;;;;;;;;;;:::i;43356:33::-;;;;;;;;;;;;;:::i;24466:295::-;;;;;;;;;;-1:-1:-1;24466:295:0;;;;;:::i;:::-;;:::i;44499:93::-;;;;;;;;;;-1:-1:-1;44499:93:0;;;;;:::i;:::-;;:::i;44278:103::-;;;;;;;;;;-1:-1:-1;44278:103:0;;;;;:::i;:::-;;:::i;25729:328::-;;;;;;;;;;-1:-1:-1;25729:328:0;;;;;:::i;:::-;;:::i;44389:102::-;;;;;;;;;;-1:-1:-1;44389:102:0;;;;;:::i;:::-;;:::i;44600:480::-;;;;;;;;;;-1:-1:-1;44600:480:0;;;;;:::i;:::-;;:::i;43474:26::-;;;;;;;;;;;;;:::i;45088:126::-;;;;;;;;;;-1:-1:-1;45088:126:0;;;;;:::i;:::-;;:::i;24832:164::-;;;;;;;;;;-1:-1:-1;24832:164:0;;;;;:::i;:::-;;:::i;45222:348::-;;;;;;:::i;:::-;;:::i;42768:192::-;;;;;;;;;;-1:-1:-1;42768:192:0;;;;;:::i;:::-;;:::i;34722:224::-;34824:4;-1:-1:-1;;;;;;34848:50:0;;-1:-1:-1;;;34848:50:0;;:90;;;34902:36;34926:11;34902:23;:36::i;:::-;34841:97;;34722:224;;;;:::o;22614:100::-;22668:13;22701:5;22694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22614:100;:::o;43436:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24173:221::-;24249:7;24277:16;24285:7;24277;:16::i;:::-;24269:73;;;;-1:-1:-1;;;24269:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;24362:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24362:24:0;;24173:221::o;23696:411::-;23777:13;23793:23;23808:7;23793:14;:23::i;:::-;23777:39;;23841:5;-1:-1:-1;;;;;23835:11:0;:2;-1:-1:-1;;;;;23835:11:0;;;23827:57;;;;-1:-1:-1;;;23827:57:0;;;;;;;:::i;:::-;23935:5;-1:-1:-1;;;;;23919:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23919:21:0;;:62;;;;23944:37;23961:5;23968:12;:10;:12::i;23944:37::-;23897:168;;;;-1:-1:-1;;;23897:168:0;;;;;;;:::i;:::-;24078:21;24087:2;24091:7;24078:8;:21::i;:::-;23696:411;;;:::o;35362:113::-;35450:10;:17;35362:113;:::o;25063:339::-;25258:41;25277:12;:10;:12::i;:::-;25291:7;25258:18;:41::i;:::-;25250:103;;;;-1:-1:-1;;;25250:103:0;;;;;;;:::i;:::-;25366:28;25376:4;25382:2;25386:7;25366:9;:28::i;35030:256::-;35127:7;35163:23;35180:5;35163:16;:23::i;:::-;35155:5;:31;35147:87;;;;-1:-1:-1;;;35147:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35252:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35030:256::o;43309:32::-;;;;:::o;46152:114::-;42099:12;:10;:12::i;:::-;-1:-1:-1;;;;;42088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42088:23:0;;42080:68;;;;-1:-1:-1;;;42080:68:0;;;;;;;:::i;:::-;46212:47:::1;::::0;46220:10:::1;::::0;46237:21:::1;46212:47:::0;::::1;;;::::0;::::1;::::0;;;46237:21;46220:10;46212:47;::::1;;;;;;46204:56;;;::::0;::::1;;46152:114::o:0;25473:185::-;25611:39;25628:4;25634:2;25638:7;25611:39;;;;;;;;;;;;:16;:39::i;45578:71::-;45627:14;45633:7;45627:5;:14::i;:::-;45578:71;:::o;45796:348::-;45871:16;45899:23;45925:17;45935:6;45925:9;:17::i;:::-;45899:43;;45949:25;45991:15;45977:30;;;;;;-1:-1:-1;;;45977:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45977:30:0;;45949:58;;46019:9;46014:103;46034:15;46030:1;:19;46014:103;;;46079:30;46099:6;46107:1;46079:19;:30::i;:::-;46065:8;46074:1;46065:11;;;;;;-1:-1:-1;;;46065:11:0;;;;;;;;;;;;;;;;;;:44;46051:3;;;;:::i;:::-;;;;46014:103;;;-1:-1:-1;46130:8:0;45796:348;-1:-1:-1;;;45796:348:0:o;35552:233::-;35627:7;35663:30;:28;:30::i;:::-;35655:5;:38;35647:95;;;;-1:-1:-1;;;35647:95:0;;;;;;;:::i;:::-;35760:10;35771:5;35760:17;;;;;;-1:-1:-1;;;35760:17:0;;;;;;;;;;;;;;;;;35753:24;;35552:233;;;:::o;43507:28::-;;;;;;:::o;44170:96::-;42099:12;:10;:12::i;:::-;-1:-1:-1;;;;;42088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42088:23:0;;42080:68;;;;-1:-1:-1;;;42080:68:0;;;;;;;:::i;:::-;44241:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44170:96:::0;:::o;22308:239::-;22380:7;22416:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22416:16:0;22451:19;22443:73;;;;-1:-1:-1;;;22443:73:0;;;;;;;:::i;43408:21::-;;;;;;;:::i;22038:208::-;22110:7;-1:-1:-1;;;;;22138:19:0;;22130:74;;;;-1:-1:-1;;;22130:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22222:16:0;;;;;:9;:16;;;;;;;22038:208::o;42519:94::-;42099:12;:10;:12::i;:::-;-1:-1:-1;;;;;42088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42088:23:0;;42080:68;;;;-1:-1:-1;;;42080:68:0;;;;;;;:::i;:::-;42584:21:::1;42602:1;42584:9;:21::i;41868:87::-:0;41941:6;;-1:-1:-1;;;;;41941:6:0;41868:87;:::o;44068:94::-;42099:12;:10;:12::i;:::-;-1:-1:-1;;;;;42088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42088:23:0;;42080:68;;;;-1:-1:-1;;;42080:68:0;;;;;;;:::i;:::-;44131:8:::1;:23:::0;;-1:-1:-1;;44131:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44068:94::o;22783:104::-;22839:13;22872:7;22865:14;;;;;:::i;43356:33::-;;;;:::o;24466:295::-;24581:12;:10;:12::i;:::-;-1:-1:-1;;;;;24569:24:0;:8;-1:-1:-1;;;;;24569:24:0;;;24561:62;;;;-1:-1:-1;;;24561:62:0;;;;;;;:::i;:::-;24681:8;24636:18;:32;24655:12;:10;:12::i;:::-;-1:-1:-1;;;;;24636:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24636:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24636:53:0;;;;;;;;;;;24720:12;:10;:12::i;:::-;-1:-1:-1;;;;;24705:48:0;;24744:8;24705:48;;;;;;:::i;:::-;;;;;;;;24466:295;;:::o;44499:93::-;42099:12;:10;:12::i;:::-;-1:-1:-1;;;;;42088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42088:23:0;;42080:68;;;;-1:-1:-1;;;42080:68:0;;;;;;;:::i;:::-;44567:5:::1;:17:::0;44499:93::o;44278:103::-;42099:12;:10;:12::i;:::-;-1:-1:-1;;;;;42088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42088:23:0;;42080:68;;;;-1:-1:-1;;;42080:68:0;;;;;;;:::i;:::-;44351:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;25729:328::-:0;25904:41;25923:12;:10;:12::i;:::-;25937:7;25904:18;:41::i;:::-;25896:103;;;;-1:-1:-1;;;25896:103:0;;;;;;;:::i;:::-;26010:39;26024:4;26030:2;26034:7;26043:5;26010:13;:39::i;:::-;25729:328;;;;:::o;44389:102::-;42099:12;:10;:12::i;:::-;-1:-1:-1;;;;;42088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42088:23:0;;42080:68;;;;-1:-1:-1;;;42080:68:0;;;;;;;:::i;:::-;44461:7:::1;:22;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;-1:-1:-1::0;;;44461:22:0::1;;::::0;::::1;44451:32:::0;;::::1;::::0;:7:::1;::::0;:32:::1;::::0;;::::1;::::0;::::1;:::i;44600:480::-:0;44698:13;44739:16;44747:7;44739;:16::i;:::-;44723:97;;;;-1:-1:-1;;;44723:97:0;;;;;;;:::i;:::-;44832:8;;;;44829:55;;44864:12;44857:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44829:55;44892:28;44923:10;:8;:10::i;:::-;44892:41;;44978:1;44953:14;44947:28;:32;:127;;;;;;;;;;;;;;;;;45015:14;45031:18;:7;:16;:18::i;:::-;45051:7;44998:61;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44947:127;44940:134;44600:480;-1:-1:-1;;;44600:480:0:o;43474:26::-;;;;;;;:::i;45088:126::-;42099:12;:10;:12::i;:::-;-1:-1:-1;;;;;42088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42088:23:0;;42080:68;;;;-1:-1:-1;;;42080:68:0;;;;;;;:::i;:::-;45185:21:::1;45196:9;45185:10;:21::i;24832:164::-:0;-1:-1:-1;;;;;24953:25:0;;;24929:4;24953:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24832:164::o;45222:348::-;45299:14;45316:13;:11;:13::i;:::-;45372:10;;45299:30;;-1:-1:-1;45348:20:0;45357:11;45299:30;45348:20;:::i;:::-;:34;;45340:43;;;;;;45416:1;45402:11;:15;45394:24;;;;;;45452:2;45437:11;:17;;45429:26;;;;;;45473:9;45468:95;45492:11;45488:1;:15;45468:95;;;45525:26;45535:3;45540:10;45549:1;45540:6;:10;:::i;:::-;45525:9;:26::i;:::-;45505:3;;;;:::i;:::-;;;;45468:95;;42768:192;42099:12;:10;:12::i;:::-;-1:-1:-1;;;;;42088:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42088:23:0;;42080:68;;;;-1:-1:-1;;;42080:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42857:22:0;::::1;42849:73;;;;-1:-1:-1::0;;;42849:73:0::1;;;;;;;:::i;:::-;42933:19;42943:8;42933:9;:19::i;21669:305::-:0;21771:4;-1:-1:-1;;;;;;21808:40:0;;-1:-1:-1;;;21808:40:0;;:105;;-1:-1:-1;;;;;;;21865:48:0;;-1:-1:-1;;;21865:48:0;21808:105;:158;;;;21930:36;21954:11;21930:23;:36::i;27567:127::-;27632:4;27656:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27656:16:0;:30;;;27567:127::o;20123:98::-;20203:10;20123:98;:::o;31549:174::-;31624:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31624:29:0;-1:-1:-1;;;;;31624:29:0;;;;;;;;:24;;31678:23;31624:24;31678:14;:23::i;:::-;-1:-1:-1;;;;;31669:46:0;;;;;;;;;;;31549:174;;:::o;27861:348::-;27954:4;27979:16;27987:7;27979;:16::i;:::-;27971:73;;;;-1:-1:-1;;;27971:73:0;;;;;;;:::i;:::-;28055:13;28071:23;28086:7;28071:14;:23::i;:::-;28055:39;;28124:5;-1:-1:-1;;;;;28113:16:0;:7;-1:-1:-1;;;;;28113:16:0;;:51;;;;28157:7;-1:-1:-1;;;;;28133:31:0;:20;28145:7;28133:11;:20::i;:::-;-1:-1:-1;;;;;28133:31:0;;28113:51;:87;;;;28168:32;28185:5;28192:7;28168:16;:32::i;:::-;28105:96;27861:348;-1:-1:-1;;;;27861:348:0:o;30853:578::-;31012:4;-1:-1:-1;;;;;30985:31:0;:23;31000:7;30985:14;:23::i;:::-;-1:-1:-1;;;;;30985:31:0;;30977:85;;;;-1:-1:-1;;;30977:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31081:16:0;;31073:65;;;;-1:-1:-1;;;31073:65:0;;;;;;;:::i;:::-;31151:39;31172:4;31178:2;31182:7;31151:20;:39::i;:::-;31255:29;31272:1;31276:7;31255:8;:29::i;:::-;-1:-1:-1;;;;;31297:15:0;;;;;;:9;:15;;;;;:20;;31316:1;;31297:15;:20;;31316:1;;31297:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31328:13:0;;;;;;:9;:13;;;;;:18;;31345:1;;31328:13;:18;;31345:1;;31328:18;:::i;:::-;;;;-1:-1:-1;;31357:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31357:21:0;-1:-1:-1;;;;;31357:21:0;;;;;;;;;31396:27;;31357:16;;31396:27;;;;;;;30853:578;;;:::o;45657:131::-;45766:14;45772:7;45766:5;:14::i;42968:173::-;43043:6;;;-1:-1:-1;;;;;43060:17:0;;;-1:-1:-1;;;;;;43060:17:0;;;;;;;43093:40;;43043:6;;;43060:17;43043:6;;43093:40;;43024:16;;43093:40;42968:173;;:::o;26939:315::-;27096:28;27106:4;27112:2;27116:7;27096:9;:28::i;:::-;27143:48;27166:4;27172:2;27176:7;27185:5;27143:22;:48::i;:::-;27135:111;;;;-1:-1:-1;;;27135:111:0;;;;;;;:::i;43952:108::-;44012:13;44045:7;44038:14;;;;;:::i;344:723::-;400:13;621:10;617:53;;-1:-1:-1;648:10:0;;;;;;;;;;;;-1:-1:-1;;;648:10:0;;;;;;617:53;695:5;680:12;736:78;743:9;;736:78;;769:8;;;;:::i;:::-;;-1:-1:-1;792:10:0;;-1:-1:-1;800:2:0;792:10;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;-1:-1:-1;;;846:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;846:17:0;;824:39;;874:154;881:10;;874:154;;908:11;918:1;908:11;;:::i;:::-;;-1:-1:-1;977:10:0;985:2;977:5;:10;:::i;:::-;964:24;;:2;:24;:::i;:::-;951:39;;934:6;941;934:14;;;;;;-1:-1:-1;;;934:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;934:56:0;;;;;;;;-1:-1:-1;1005:11:0;1014:2;1005:11;;:::i;:::-;;;874:154;;28551:110;28627:26;28637:2;28641:7;28627:26;;;;;;;;;;;;:9;:26::i;12809:157::-;-1:-1:-1;;;;;;12918:40:0;;-1:-1:-1;;;12918:40:0;12809:157;;;:::o;36398:589::-;36542:45;36569:4;36575:2;36579:7;36542:26;:45::i;:::-;-1:-1:-1;;;;;36604:18:0;;36600:187;;36639:40;36671:7;36639:31;:40::i;:::-;36600:187;;;36709:2;-1:-1:-1;;;;;36701:10:0;:4;-1:-1:-1;;;;;36701:10:0;;36697:90;;36728:47;36761:4;36767:7;36728:32;:47::i;:::-;-1:-1:-1;;;;;36801:16:0;;36797:183;;36834:45;36871:7;36834:36;:45::i;:::-;36797:183;;;36907:4;-1:-1:-1;;;;;36901:10:0;:2;-1:-1:-1;;;;;36901:10:0;;36897:83;;36928:40;36956:2;36960:7;36928:27;:40::i;32288:799::-;32443:4;32464:15;:2;-1:-1:-1;;;;;32464:13:0;;:15::i;:::-;32460:620;;;32516:2;-1:-1:-1;;;;;32500:36:0;;32537:12;:10;:12::i;:::-;32551:4;32557:7;32566:5;32500:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32500:72:0;;;;;;;;-1:-1:-1;;32500:72:0;;;;;;;;;;;;:::i;:::-;;;32496:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32742:13:0;;32738:272;;32785:60;;-1:-1:-1;;;32785:60:0;;;;;;;:::i;32738:272::-;32960:6;32954:13;32945:6;32941:2;32937:15;32930:38;32496:529;-1:-1:-1;;;;;;32623:51:0;-1:-1:-1;;;32623:51:0;;-1:-1:-1;32616:58:0;;32460:620;-1:-1:-1;33064:4:0;32288:799;;;;;;:::o;28888:321::-;29018:18;29024:2;29028:7;29018:5;:18::i;:::-;29069:54;29100:1;29104:2;29108:7;29117:5;29069:22;:54::i;:::-;29047:154;;;;-1:-1:-1;;;29047:154:0;;;;;;;:::i;37710:164::-;37814:10;:17;;37787:24;;;;:15;:24;;;;;:44;;;37842:24;;;;;;;;;;;;37710:164::o;38501:988::-;38767:22;38817:1;38792:22;38809:4;38792:16;:22::i;:::-;:26;;;;:::i;:::-;38829:18;38850:26;;;:17;:26;;;;;;38767:51;;-1:-1:-1;38983:28:0;;;38979:328;;-1:-1:-1;;;;;39050:18:0;;39028:19;39050:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39101:30;;;;;;:44;;;39218:30;;:17;:30;;;;;:43;;;38979:328;-1:-1:-1;39403:26:0;;;;:17;:26;;;;;;;;39396:33;;;-1:-1:-1;;;;;39447:18:0;;;;;:12;:18;;;;;:34;;;;;;;39440:41;38501:988::o;39784:1079::-;40062:10;:17;40037:22;;40062:21;;40082:1;;40062:21;:::i;:::-;40094:18;40115:24;;;:15;:24;;;;;;40488:10;:26;;40037:46;;-1:-1:-1;40115:24:0;;40037:46;;40488:26;;;;-1:-1:-1;;;40488:26:0;;;;;;;;;;;;;;;;;40466:48;;40552:11;40527:10;40538;40527:22;;;;;;-1:-1:-1;;;40527:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40632:28;;;:15;:28;;;;;;;:41;;;40804:24;;;;;40797:31;40839:10;:16;;;;;-1:-1:-1;;;40839:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39784:1079;;;;:::o;37288:221::-;37373:14;37390:20;37407:2;37390:16;:20::i;:::-;-1:-1:-1;;;;;37421:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37466:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37288:221:0:o;2869:387::-;3192:20;3240:8;;;2869:387::o;29545:382::-;-1:-1:-1;;;;;29625:16:0;;29617:61;;;;-1:-1:-1;;;29617:61:0;;;;;;;:::i;:::-;29698:16;29706:7;29698;:16::i;:::-;29697:17;29689:58;;;;-1:-1:-1;;;29689:58:0;;;;;;;:::i;:::-;29760:45;29789:1;29793:2;29797:7;29760:20;:45::i;:::-;-1:-1:-1;;;;;29818:13:0;;;;;;:9;:13;;;;;:18;;29835:1;;29818:13;:18;;29835:1;;29818:18;:::i;:::-;;;;-1:-1:-1;;29847:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29847:21:0;-1:-1:-1;;;;;29847:21:0;;;;;;;;29886:33;;29847:16;;;29886:33;;29847:16;;29886:33;29545:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:1532::-;;4986:6;4980:13;5012:4;5025:51;5069:6;5064:3;5059:2;5051:6;5047:15;5025:51;:::i;:::-;5139:13;;5098:16;;;;5161:55;5139:13;5098:16;5183:15;;;5161:55;:::i;:::-;5307:13;;5238:20;;;5278:3;;5384:1;5369:17;;5405:1;5441:18;;;;5468:2;;5546:4;5536:8;5532:19;5520:31;;5468:2;5609;5599:8;5596:16;5576:18;5573:40;5570:2;;;-1:-1:-1;;;5636:33:1;;5692:4;5689:1;5682:15;5722:4;5643:3;5710:17;5570:2;5753:18;5780:110;;;;5904:1;5899:332;;;;5746:485;;5780:110;-1:-1:-1;;5815:24:1;;5801:39;;5860:20;;;;-1:-1:-1;5780:110:1;;5899:332;5935:39;5967:6;5935:39;:::i;:::-;5996:3;6012:169;6026:8;6023:1;6020:15;6012:169;;;6108:14;;6093:13;;;6086:37;6151:16;;;;6043:10;;6012:169;;;6016:3;;6212:8;6205:5;6201:20;6194:27;;5746:485;-1:-1:-1;6247:3:1;;4956:1300;-1:-1:-1;;;;;;;;;;;4956:1300:1:o;6261:203::-;-1:-1:-1;;;;;6425:32:1;;;;6407:51;;6395:2;6380:18;;6362:102::o;6469:490::-;-1:-1:-1;;;;;6738:15:1;;;6720:34;;6790:15;;6785:2;6770:18;;6763:43;6837:2;6822:18;;6815:34;;;6885:3;6880:2;6865:18;;6858:31;;;6469:490;;6906:47;;6933:19;;6925:6;6906:47;:::i;:::-;6898:55;6672:287;-1:-1:-1;;;;;;6672:287:1:o;6964:635::-;7135:2;7187:21;;;7257:13;;7160:18;;;7279:22;;;6964:635;;7135:2;7358:15;;;;7332:2;7317:18;;;6964:635;7404:169;7418:6;7415:1;7412:13;7404:169;;;7479:13;;7467:26;;7548:15;;;;7513:12;;;;7440:1;7433:9;7404:169;;;-1:-1:-1;7590:3:1;;7115:484;-1:-1:-1;;;;;;7115:484:1:o;7604:187::-;7769:14;;7762:22;7744:41;;7732:2;7717:18;;7699:92::o;7796:221::-;;7945:2;7934:9;7927:21;7965:46;8007:2;7996:9;7992:18;7984:6;7965:46;:::i;8022:407::-;8224:2;8206:21;;;8263:2;8243:18;;;8236:30;8302:34;8297:2;8282:18;;8275:62;-1:-1:-1;;;8368:2:1;8353:18;;8346:41;8419:3;8404:19;;8196:233::o;8434:414::-;8636:2;8618:21;;;8675:2;8655:18;;;8648:30;8714:34;8709:2;8694:18;;8687:62;-1:-1:-1;;;8780:2:1;8765:18;;8758:48;8838:3;8823:19;;8608:240::o;8853:402::-;9055:2;9037:21;;;9094:2;9074:18;;;9067:30;9133:34;9128:2;9113:18;;9106:62;-1:-1:-1;;;9199:2:1;9184:18;;9177:36;9245:3;9230:19;;9027:228::o;9260:352::-;9462:2;9444:21;;;9501:2;9481:18;;;9474:30;9540;9535:2;9520:18;;9513:58;9603:2;9588:18;;9434:178::o;9617:400::-;9819:2;9801:21;;;9858:2;9838:18;;;9831:30;9897:34;9892:2;9877:18;;9870:62;-1:-1:-1;;;9963:2:1;9948:18;;9941:34;10007:3;9992:19;;9791:226::o;10022:349::-;10224:2;10206:21;;;10263:2;10243:18;;;10236:30;10302:27;10297:2;10282:18;;10275:55;10362:2;10347:18;;10196:175::o;10376:408::-;10578:2;10560:21;;;10617:2;10597:18;;;10590:30;10656:34;10651:2;10636:18;;10629:62;-1:-1:-1;;;10722:2:1;10707:18;;10700:42;10774:3;10759:19;;10550:234::o;10789:420::-;10991:2;10973:21;;;11030:2;11010:18;;;11003:30;11069:34;11064:2;11049:18;;11042:62;11140:26;11135:2;11120:18;;11113:54;11199:3;11184:19;;10963:246::o;11214:406::-;11416:2;11398:21;;;11455:2;11435:18;;;11428:30;11494:34;11489:2;11474:18;;11467:62;-1:-1:-1;;;11560:2:1;11545:18;;11538:40;11610:3;11595:19;;11388:232::o;11625:405::-;11827:2;11809:21;;;11866:2;11846:18;;;11839:30;11905:34;11900:2;11885:18;;11878:62;-1:-1:-1;;;11971:2:1;11956:18;;11949:39;12020:3;12005:19;;11799:231::o;12035:356::-;12237:2;12219:21;;;12256:18;;;12249:30;12315:34;12310:2;12295:18;;12288:62;12382:2;12367:18;;12209:182::o;12396:408::-;12598:2;12580:21;;;12637:2;12617:18;;;12610:30;12676:34;12671:2;12656:18;;12649:62;-1:-1:-1;;;12742:2:1;12727:18;;12720:42;12794:3;12779:19;;12570:234::o;12809:356::-;13011:2;12993:21;;;13030:18;;;13023:30;13089:34;13084:2;13069:18;;13062:62;13156:2;13141:18;;12983:182::o;13170:405::-;13372:2;13354:21;;;13411:2;13391:18;;;13384:30;13450:34;13445:2;13430:18;;13423:62;-1:-1:-1;;;13516:2:1;13501:18;;13494:39;13565:3;13550:19;;13344:231::o;13580:411::-;13782:2;13764:21;;;13821:2;13801:18;;;13794:30;13860:34;13855:2;13840:18;;13833:62;-1:-1:-1;;;13926:2:1;13911:18;;13904:45;13981:3;13966:19;;13754:237::o;13996:397::-;14198:2;14180:21;;;14237:2;14217:18;;;14210:30;14276:34;14271:2;14256:18;;14249:62;-1:-1:-1;;;14342:2:1;14327:18;;14320:31;14383:3;14368:19;;14170:223::o;14398:413::-;14600:2;14582:21;;;14639:2;14619:18;;;14612:30;14678:34;14673:2;14658:18;;14651:62;-1:-1:-1;;;14744:2:1;14729:18;;14722:47;14801:3;14786:19;;14572:239::o;14816:408::-;15018:2;15000:21;;;15057:2;15037:18;;;15030:30;15096:34;15091:2;15076:18;;15069:62;-1:-1:-1;;;15162:2:1;15147:18;;15140:42;15214:3;15199:19;;14990:234::o;15229:177::-;15375:25;;;15363:2;15348:18;;15330:76::o;15411:129::-;;15479:17;;;15529:4;15513:21;;;15469:71::o;15545:128::-;;15616:1;15612:6;15609:1;15606:13;15603:2;;;15622:18;;:::i;:::-;-1:-1:-1;15658:9:1;;15593:80::o;15678:120::-;;15744:1;15734:2;;15749:18;;:::i;:::-;-1:-1:-1;15783:9:1;;15724:74::o;15803:125::-;;15871:1;15868;15865:8;15862:2;;;15876:18;;:::i;:::-;-1:-1:-1;15913:9:1;;15852:76::o;15933:258::-;16005:1;16015:113;16029:6;16026:1;16023:13;16015:113;;;16105:11;;;16099:18;16086:11;;;16079:39;16051:2;16044:10;16015:113;;;16146:6;16143:1;16140:13;16137:2;;;-1:-1:-1;;16181:1:1;16163:16;;16156:27;15986:205::o;16196:380::-;16281:1;16271:12;;16328:1;16318:12;;;16339:2;;16393:4;16385:6;16381:17;16371:27;;16339:2;16446;16438:6;16435:14;16415:18;16412:38;16409:2;;;16492:10;16487:3;16483:20;16480:1;16473:31;16527:4;16524:1;16517:15;16555:4;16552:1;16545:15;16409:2;;16251:325;;;:::o;16581:135::-;;-1:-1:-1;;16641:17:1;;16638:2;;;16661:18;;:::i;:::-;-1:-1:-1;16708:1:1;16697:13;;16628:88::o;16721:112::-;;16779:1;16769:2;;16784:18;;:::i;:::-;-1:-1:-1;16818:9:1;;16759:74::o;16838:127::-;16899:10;16894:3;16890:20;16887:1;16880:31;16930:4;16927:1;16920:15;16954:4;16951:1;16944:15;16970:127;17031:10;17026:3;17022:20;17019:1;17012:31;17062:4;17059:1;17052:15;17086:4;17083:1;17076:15;17102:127;17163:10;17158:3;17154:20;17151:1;17144:31;17194:4;17191:1;17184:15;17218:4;17215:1;17208:15;17234:133;-1:-1:-1;;;;;;17310:32:1;;17300:43;;17290:2;;17357:1;17354;17347:12

Swarm Source

ipfs://e8b27415dace92e3a5a39c1057c3047983e5250e38c186da4591f89297a41d5c
Loading...
Loading
Loading...
Loading
[ 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.