ETH Price: $3,086.20 (-0.08%)
Gas: 5 Gwei

Token

Piligrim (Pi)
 

Overview

Max Total Supply

2,222 Pi

Holders

725

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
thatguyderek.eth
Balance
1 Pi
0xCBEDA136b27939256907B07922c6e83F07b94802
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:
Piligrim

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-07
*/

/**
 *Submitted for verification at Etherscan.io on 2021-10-31
*/

// SPDX-License-Identifier: MIT AND GPL-3.0

// 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/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/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/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/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/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/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/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/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/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/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/piligrim.sol

pragma solidity >=0.7.0 <0.9.0;



contract Piligrim is ERC721Enumerable, Ownable {
    using Strings for uint256;
    string private baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public preSaleCost = 0.02 ether;
    uint256 public cost = 0.02 ether;
    uint256 public maxSupply = 2222;
    uint256 public preSaleMaxSupply = 2222;
    uint256 public maxMintAmountPresale = 9;
    uint256 public maxMintAmount = 9;
    uint256 public nftPerAddressLimitPresale = 9;
    uint256 public nftPerAddressLimit = 9;
    uint256 public preSaleDate = 1647554200;
    uint256 public preSaleEndDate = 1652180399;
    uint256 public publicSaleDate = 1652180400;
    bool public paused = false;
    bool public revealed = false;
    mapping(address => bool) whitelistedAddresses;
    mapping(address => uint256) public addressMintedBalance;

    constructor(string memory _name, string memory _symbol, string memory _initNotRevealedUri) ERC721(_name, _symbol) {
        setNotRevealedURI(_initNotRevealedUri);
    }
    
    //MODIFIERS
    modifier notPaused {
         require(!paused, "the contract is paused");
         _;
    }

    modifier saleStarted {
        require(block.timestamp >= preSaleDate, "Sale has not started yet");
        _;
    }

    modifier minimumMintAmount(uint256 _mintAmount) {
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        _;
    }

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

    function presaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount, uint256 _supply) internal {
            uint256 actualCost;
            block.timestamp < preSaleEndDate ? actualCost = preSaleCost : actualCost = cost;
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            require(_ownerMintedCount + _mintAmount <= nftPerAddressLimitPresale, "max NFT per address exceeded for presale");
            require(msg.value >= actualCost * _mintAmount, "insufficient funds");
            require(_mintAmount <= maxMintAmountPresale,"max mint amount per transaction exceeded");
            require(_supply + _mintAmount <= preSaleMaxSupply,"max NFT presale limit exceeded");
    }

    function publicsaleValidations(uint256 _ownerMintedCount, uint256 _mintAmount) internal {
        require(_ownerMintedCount + _mintAmount <= nftPerAddressLimit,"max NFT per address exceeded");
        require(msg.value >= cost * _mintAmount, "insufficient funds");
        require(_mintAmount <= maxMintAmount,"max mint amount per transaction exceeded");
    }

    //MINT
    function mint(uint256 _mintAmount) public payable notPaused saleStarted minimumMintAmount(_mintAmount) {
        uint256 supply = totalSupply();
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];

        //Do some validations depending on which step of the sale we are in
        block.timestamp < publicSaleDate ? presaleValidations(ownerMintedCount, _mintAmount, supply) : publicsaleValidations(ownerMintedCount, _mintAmount);

        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + i);
        }
    }
    
    function gift(uint256 _mintAmount, address destination) public onlyOwner {
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[destination]++;
            _safeMint(destination, supply + i);
        }
    }

    //PUBLIC VIEWS
    function isWhitelisted(address _user) public view returns (bool) {
        return whitelistedAddresses[_user];
    }

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

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

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

    function getCurrentCost() public view returns (uint256) {
        if (block.timestamp < preSaleEndDate) {
            return preSaleCost;
        } else {
            return cost;
        }
    }

    //ONLY OWNER VIEWS
    function getBaseURI() public view onlyOwner returns (string memory) {
        return baseURI;
    }

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

    //ONLY OWNER SETTERS

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

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    
    function setNftPerAddressLimitPreSale(uint256 _limit) public onlyOwner {
        nftPerAddressLimitPresale = _limit;
    }

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        preSaleCost = _newCost;
    }

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

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

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

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

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

    function setPresaleMaxSupply(uint256 _newPresaleMaxSupply) public onlyOwner {
        preSaleMaxSupply = _newPresaleMaxSupply;
    }

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

    function setPreSaleDate(uint256 _preSaleDate) public onlyOwner {
        preSaleDate = _preSaleDate;
    }

    function setPreSaleEndDate(uint256 _preSaleEndDate) public onlyOwner {
        preSaleEndDate = _preSaleEndDate;
    }

    function setPublicSaleDate(uint256 _publicSaleDate) public onlyOwner {
        publicSaleDate = _publicSaleDate;
    }

    function whitelistUsers(address[] memory addresses) public onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistedAddresses[addresses[i]] = true;
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEndDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleDate","type":"uint256"}],"name":"setPreSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preSaleEndDate","type":"uint256"}],"name":"setPreSaleEndDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMaxSupply","type":"uint256"}],"name":"setPresaleMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSaleDate","type":"uint256"}],"name":"setPublicSaleDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001d9565b5066470de4df820000600e819055600f556108ae60108190556011556009601281905560138190556014819055601555636233ae9860165563627a45af60175563627a45b06018556019805461ffff191690553480156200008857600080fd5b506040516200351238038062003512833981016040819052620000ab916200034c565b825183908390620000c4906000906020850190620001d9565b508051620000da906001906020840190620001d9565b505050620000f7620000f16200010b60201b60201c565b6200010f565b620001028162000161565b50505062000419565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d590600d906020840190620001d9565b5050565b828054620001e790620003dd565b90600052602060002090601f0160209004810192826200020b576000855562000256565b82601f106200022657805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025657825182559160200191906001019062000239565b506200026492915062000268565b5090565b5b8082111562000264576000815560010162000269565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002a757600080fd5b81516001600160401b0380821115620002c457620002c46200027f565b604051601f8301601f19908116603f01168101908282118183101715620002ef57620002ef6200027f565b816040528381526020925086838588010111156200030c57600080fd5b600091505b8382101562000330578582018301518183018401529082019062000311565b83821115620003425760008385830101525b9695505050505050565b6000806000606084860312156200036257600080fd5b83516001600160401b03808211156200037a57600080fd5b620003888783880162000295565b945060208601519150808211156200039f57600080fd5b620003ad8783880162000295565b93506040860151915080821115620003c457600080fd5b50620003d38682870162000295565b9150509250925092565b600181811c90821680620003f257607f821691505b6020821081036200041357634e487b7160e01b600052602260045260246000fd5b50919050565b6130e980620004296000396000f3fe6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced387314610a42578063edec5f2714610a58578063f2c4ce1e14610a78578063f2fde38b14610a9857600080fd5b8063d0eb26b0146109a3578063d5abeb01146109c3578063da3ef23f146109d9578063e985e9c5146109f957600080fd5b8063ba7d2c76116100dc578063ba7d2c7614610942578063c668286214610958578063c87b56dd1461096d578063cc9ff9c61461098d57600080fd5b8063a22cb465146108ed578063a475b5dd1461090d578063b88d4fde1461092257600080fd5b80637f00c7a61161017a5780638fdcf942116101495780638fdcf9421461088f57806395d89b41146108af578063a0712d68146108c4578063a18116f1146108d757600080fd5b80637f00c7a61461081c578063831e60de1461083c57806383a076be146108515780638da5cb5b1461087157600080fd5b8063715018a6116101b6578063715018a6146107bb578063743c7f6b146107d05780637967a50a146107f05780637effc0321461080657600080fd5b80636f9fb98a1461077157806370a0823114610786578063714c5398146107a657600080fd5b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146106f75780636352211e14610711578063669736c0146107315780636f8b44b01461075157600080fd5b806344a0d68a146106785780634f6ccce71461069857806351830227146106b857806355f804b3146106d757600080fd5b80633ccfd60b1161029b5780633ccfd60b1461060357806342842e0e1461060b57806342f0ca0d1461062b578063438b63001461064b57600080fd5b80632e09282e146105945780632f745c59146105aa5780633af32abf146105ca57600080fd5b80630a50716b1161033957806318cae2691161030857806318cae2691461051b5780631985cc6514610548578063239c70ae1461055e57806323b872dd1461057457600080fd5b80630a50716b146104a25780630e54a883146104c257806313faede6146104e257806318160ddd1461050657600080fd5b8063081812fc11610375578063081812fc14610415578063081c8c441461044d578063095ea7b3146104625780630a403f041461048257600080fd5b806301ffc9a71461039c57806302329a29146103d157806306fdde03146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b736600461291c565b610ab8565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103f16103ec366004612949565b610ae3565b005b3480156103ff57600080fd5b50610408610b29565b6040516103c891906129bc565b34801561042157600080fd5b506104356104303660046129cf565b610bbb565b6040516001600160a01b0390911681526020016103c8565b34801561045957600080fd5b50610408610c50565b34801561046e57600080fd5b506103f161047d3660046129ff565b610cde565b34801561048e57600080fd5b506103f161049d3660046129cf565b610df3565b3480156104ae57600080fd5b506103f16104bd3660046129cf565b610e22565b3480156104ce57600080fd5b506103f16104dd3660046129cf565b610e51565b3480156104ee57600080fd5b506104f8600f5481565b6040519081526020016103c8565b34801561051257600080fd5b506008546104f8565b34801561052757600080fd5b506104f8610536366004612a29565b601b6020526000908152604090205481565b34801561055457600080fd5b506104f860165481565b34801561056a57600080fd5b506104f860135481565b34801561058057600080fd5b506103f161058f366004612a44565b610e80565b3480156105a057600080fd5b506104f860145481565b3480156105b657600080fd5b506104f86105c53660046129ff565b610eb1565b3480156105d657600080fd5b506103bc6105e5366004612a29565b6001600160a01b03166000908152601a602052604090205460ff1690565b6103f1610f47565b34801561061757600080fd5b506103f1610626366004612a44565b610fc9565b34801561063757600080fd5b506103f16106463660046129cf565b610fe4565b34801561065757600080fd5b5061066b610666366004612a29565b611013565b6040516103c89190612a80565b34801561068457600080fd5b506103f16106933660046129cf565b6110b5565b3480156106a457600080fd5b506104f86106b33660046129cf565b6110e4565b3480156106c457600080fd5b506019546103bc90610100900460ff1681565b3480156106e357600080fd5b506103f16106f2366004612b63565b611177565b34801561070357600080fd5b506019546103bc9060ff1681565b34801561071d57600080fd5b5061043561072c3660046129cf565b6111b8565b34801561073d57600080fd5b506103f161074c3660046129cf565b61122f565b34801561075d57600080fd5b506103f161076c3660046129cf565b61125e565b34801561077d57600080fd5b506104f861128d565b34801561079257600080fd5b506104f86107a1366004612a29565b6112bf565b3480156107b257600080fd5b50610408611346565b3480156107c757600080fd5b506103f1611380565b3480156107dc57600080fd5b506103f16107eb3660046129cf565b6113b6565b3480156107fc57600080fd5b506104f860175481565b34801561081257600080fd5b506104f860125481565b34801561082857600080fd5b506103f16108373660046129cf565b6113e5565b34801561084857600080fd5b506104f8611414565b34801561085d57600080fd5b506103f161086c366004612bac565b61142e565b34801561087d57600080fd5b50600a546001600160a01b0316610435565b34801561089b57600080fd5b506103f16108aa3660046129cf565b611569565b3480156108bb57600080fd5b50610408611598565b6103f16108d23660046129cf565b6115a7565b3480156108e357600080fd5b506104f860115481565b3480156108f957600080fd5b506103f1610908366004612bd8565b61177e565b34801561091957600080fd5b506103f1611842565b34801561092e57600080fd5b506103f161093d366004612c02565b61187d565b34801561094e57600080fd5b506104f860155481565b34801561096457600080fd5b506104086118af565b34801561097957600080fd5b506104086109883660046129cf565b6118bc565b34801561099957600080fd5b506104f8600e5481565b3480156109af57600080fd5b506103f16109be3660046129cf565b611a40565b3480156109cf57600080fd5b506104f860105481565b3480156109e557600080fd5b506103f16109f4366004612b63565b611a6f565b348015610a0557600080fd5b506103bc610a14366004612c7e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4e57600080fd5b506104f860185481565b348015610a6457600080fd5b506103f1610a73366004612ca8565b611aac565b348015610a8457600080fd5b506103f1610a93366004612b63565b611b3e565b348015610aa457600080fd5b506103f1610ab3366004612a29565b611b7b565b60006001600160e01b0319821663780e9d6360e01b1480610add5750610add82611c13565b92915050565b600a546001600160a01b03163314610b165760405162461bcd60e51b8152600401610b0d90612d55565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610b3890612d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6490612d8a565b8015610bb15780601f10610b8657610100808354040283529160200191610bb1565b820191906000526020600020905b815481529060010190602001808311610b9457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0d565b506000908152600460205260409020546001600160a01b031690565b600d8054610c5d90612d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8990612d8a565b8015610cd65780601f10610cab57610100808354040283529160200191610cd6565b820191906000526020600020905b815481529060010190602001808311610cb957829003601f168201915b505050505081565b6000610ce9826111b8565b9050806001600160a01b0316836001600160a01b031603610d565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b0d565b336001600160a01b0382161480610d725750610d728133610a14565b610de45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b0d565b610dee8383611c63565b505050565b600a546001600160a01b03163314610e1d5760405162461bcd60e51b8152600401610b0d90612d55565b601155565b600a546001600160a01b03163314610e4c5760405162461bcd60e51b8152600401610b0d90612d55565b601455565b600a546001600160a01b03163314610e7b5760405162461bcd60e51b8152600401610b0d90612d55565b601855565b610e8a3382611cd1565b610ea65760405162461bcd60e51b8152600401610b0d90612dc4565b610dee838383611dc8565b6000610ebc836112bf565b8210610f1e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b0d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f715760405162461bcd60e51b8152600401610b0d90612d55565b604051600090339047908381818185875af1925050503d8060008114610fb3576040519150601f19603f3d011682016040523d82523d6000602084013e610fb8565b606091505b5050905080610fc657600080fd5b50565b610dee8383836040518060200160405280600081525061187d565b600a546001600160a01b0316331461100e5760405162461bcd60e51b8152600401610b0d90612d55565b601755565b60606000611020836112bf565b905060008167ffffffffffffffff81111561103d5761103d612ac4565b604051908082528060200260200182016040528015611066578160200160208202803683370190505b50905060005b828110156110ad5761107e8582610eb1565b82828151811061109057611090612e15565b6020908102919091010152806110a581612e41565b91505061106c565b509392505050565b600a546001600160a01b031633146110df5760405162461bcd60e51b8152600401610b0d90612d55565b600f55565b60006110ef60085490565b82106111525760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b0d565b6008828154811061116557611165612e15565b90600052602060002001549050919050565b600a546001600160a01b031633146111a15760405162461bcd60e51b8152600401610b0d90612d55565b80516111b490600b90602084019061286d565b5050565b6000818152600260205260408120546001600160a01b031680610add5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b0d565b600a546001600160a01b031633146112595760405162461bcd60e51b8152600401610b0d90612d55565b601255565b600a546001600160a01b031633146112885760405162461bcd60e51b8152600401610b0d90612d55565b601055565b600a546000906001600160a01b031633146112ba5760405162461bcd60e51b8152600401610b0d90612d55565b504790565b60006001600160a01b03821661132a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b0d565b506001600160a01b031660009081526003602052604090205490565b600a546060906001600160a01b031633146113735760405162461bcd60e51b8152600401610b0d90612d55565b600b8054610b3890612d8a565b600a546001600160a01b031633146113aa5760405162461bcd60e51b8152600401610b0d90612d55565b6113b46000611f73565b565b600a546001600160a01b031633146113e05760405162461bcd60e51b8152600401610b0d90612d55565b601655565b600a546001600160a01b0316331461140f5760405162461bcd60e51b8152600401610b0d90612d55565b601355565b60006017544210156114275750600e5490565b50600f5490565b600a546001600160a01b031633146114585760405162461bcd60e51b8152600401610b0d90612d55565b600082116114a85760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b0d565b60006114b360085490565b6010549091506114c38483612e5a565b111561150a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0d565b60015b838111611563576001600160a01b0383166000908152601b6020526040812080549161153883612e41565b9091555061155190508361154c8385612e5a565b611fc5565b8061155b81612e41565b91505061150d565b50505050565b600a546001600160a01b031633146115935760405162461bcd60e51b8152600401610b0d90612d55565b600e55565b606060018054610b3890612d8a565b60195460ff16156115f35760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b0d565b6016544210156116455760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b0d565b80600081116116965760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b0d565b60006116a160085490565b336000908152601b60205260409020546018549192509042106116cd576116c88185611fdf565b6116d8565b6116d88185846120ae565b6010546116e58584612e5a565b111561172c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0d565b60015b84811161177757336000908152601b6020526040812080549161175183612e41565b9091555061176590503361154c8386612e5a565b8061176f81612e41565b91505061172f565b5050505050565b336001600160a01b038316036117d65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b0d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461186c5760405162461bcd60e51b8152600401610b0d90612d55565b6019805461ff001916610100179055565b6118873383611cd1565b6118a35760405162461bcd60e51b8152600401610b0d90612dc4565b61156384848484612260565b600c8054610c5d90612d8a565b6000818152600260205260409020546060906001600160a01b031661193b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b0d565b601954610100900460ff166119dc57600d805461195790612d8a565b80601f016020809104026020016040519081016040528092919081815260200182805461198390612d8a565b80156119d05780601f106119a5576101008083540402835291602001916119d0565b820191906000526020600020905b8154815290600101906020018083116119b357829003601f168201915b50505050509050919050565b60006119e6612293565b90506000815111611a065760405180602001604052806000815250611a34565b80611a10846122a2565b600c604051602001611a2493929190612e72565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b03163314611a6a5760405162461bcd60e51b8152600401610b0d90612d55565b601555565b600a546001600160a01b03163314611a995760405162461bcd60e51b8152600401610b0d90612d55565b80516111b490600c90602084019061286d565b600a546001600160a01b03163314611ad65760405162461bcd60e51b8152600401610b0d90612d55565b60005b81518110156111b4576001601a6000848481518110611afa57611afa612e15565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611b3681612e41565b915050611ad9565b600a546001600160a01b03163314611b685760405162461bcd60e51b8152600401610b0d90612d55565b80516111b490600d90602084019061286d565b600a546001600160a01b03163314611ba55760405162461bcd60e51b8152600401610b0d90612d55565b6001600160a01b038116611c0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0d565b610fc681611f73565b60006001600160e01b031982166380ac58cd60e01b1480611c4457506001600160e01b03198216635b5e139f60e01b145b80610add57506301ffc9a760e01b6001600160e01b0319831614610add565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c98826111b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d4a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0d565b6000611d55836111b8565b9050806001600160a01b0316846001600160a01b03161480611d905750836001600160a01b0316611d8584610bbb565b6001600160a01b0316145b80611dc057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ddb826111b8565b6001600160a01b031614611e435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b0d565b6001600160a01b038216611ea55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b0d565b611eb08383836123a3565b611ebb600082611c63565b6001600160a01b0383166000908152600360205260408120805460019290611ee4908490612f35565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f12908490612e5a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111b482826040518060200160405280600081525061245b565b601554611fec8284612e5a565b111561203a5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b0d565b80600f546120489190612f4c565b34101561208c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0d565b6013548111156111b45760405162461bcd60e51b8152600401610b0d90612f6b565b600060175442106120c35750600f54806120c9565b50600e54805b50336000908152601a602052604090205460ff166121295760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b0d565b6014546121368486612e5a565b11156121955760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b6064820152608401610b0d565b61219f8382612f4c565b3410156121e35760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0d565b6012548311156122055760405162461bcd60e51b8152600401610b0d90612f6b565b6011546122128484612e5a565b11156115635760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b0d565b61226b848484611dc8565b6122778484848461248e565b6115635760405162461bcd60e51b8152600401610b0d90612fb3565b6060600b8054610b3890612d8a565b6060816000036122c95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122f357806122dd81612e41565b91506122ec9050600a8361301b565b91506122cd565b60008167ffffffffffffffff81111561230e5761230e612ac4565b6040519080825280601f01601f191660200182016040528015612338576020820181803683370190505b5090505b8415611dc05761234d600183612f35565b915061235a600a8661302f565b612365906030612e5a565b60f81b81838151811061237a5761237a612e15565b60200101906001600160f81b031916908160001a90535061239c600a8661301b565b945061233c565b6001600160a01b0383166123fe576123f981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612421565b816001600160a01b0316836001600160a01b03161461242157612421838261258f565b6001600160a01b03821661243857610dee8161262c565b826001600160a01b0316826001600160a01b031614610dee57610dee82826126db565b612465838361271f565b612472600084848461248e565b610dee5760405162461bcd60e51b8152600401610b0d90612fb3565b60006001600160a01b0384163b1561258457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124d2903390899088908890600401613043565b6020604051808303816000875af192505050801561250d575060408051601f3d908101601f1916820190925261250a91810190613080565b60015b61256a573d80801561253b576040519150601f19603f3d011682016040523d82523d6000602084013e612540565b606091505b5080516000036125625760405162461bcd60e51b8152600401610b0d90612fb3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc0565b506001949350505050565b6000600161259c846112bf565b6125a69190612f35565b6000838152600760205260409020549091508082146125f9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061263e90600190612f35565b6000838152600960205260408120546008805493945090928490811061266657612666612e15565b90600052602060002001549050806008838154811061268757612687612e15565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126bf576126bf61309d565b6001900381819060005260206000200160009055905550505050565b60006126e6836112bf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127755760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b0d565b6000818152600260205260409020546001600160a01b0316156127da5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b0d565b6127e6600083836123a3565b6001600160a01b038216600090815260036020526040812080546001929061280f908490612e5a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461287990612d8a565b90600052602060002090601f01602090048101928261289b57600085556128e1565b82601f106128b457805160ff19168380011785556128e1565b828001600101855582156128e1579182015b828111156128e15782518255916020019190600101906128c6565b506128ed9291506128f1565b5090565b5b808211156128ed57600081556001016128f2565b6001600160e01b031981168114610fc657600080fd5b60006020828403121561292e57600080fd5b8135611a3481612906565b80358015158114611a3b57600080fd5b60006020828403121561295b57600080fd5b611a3482612939565b60005b8381101561297f578181015183820152602001612967565b838111156115635750506000910152565b600081518084526129a8816020860160208601612964565b601f01601f19169290920160200192915050565b602081526000611a346020830184612990565b6000602082840312156129e157600080fd5b5035919050565b80356001600160a01b0381168114611a3b57600080fd5b60008060408385031215612a1257600080fd5b612a1b836129e8565b946020939093013593505050565b600060208284031215612a3b57600080fd5b611a34826129e8565b600080600060608486031215612a5957600080fd5b612a62846129e8565b9250612a70602085016129e8565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612ab857835183529284019291840191600101612a9c565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612b0357612b03612ac4565b604052919050565b600067ffffffffffffffff831115612b2557612b25612ac4565b612b38601f8401601f1916602001612ada565b9050828152838383011115612b4c57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612b7557600080fd5b813567ffffffffffffffff811115612b8c57600080fd5b8201601f81018413612b9d57600080fd5b611dc084823560208401612b0b565b60008060408385031215612bbf57600080fd5b82359150612bcf602084016129e8565b90509250929050565b60008060408385031215612beb57600080fd5b612bf4836129e8565b9150612bcf60208401612939565b60008060008060808587031215612c1857600080fd5b612c21856129e8565b9350612c2f602086016129e8565b925060408501359150606085013567ffffffffffffffff811115612c5257600080fd5b8501601f81018713612c6357600080fd5b612c7287823560208401612b0b565b91505092959194509250565b60008060408385031215612c9157600080fd5b612c9a836129e8565b9150612bcf602084016129e8565b60006020808385031215612cbb57600080fd5b823567ffffffffffffffff80821115612cd357600080fd5b818501915085601f830112612ce757600080fd5b813581811115612cf957612cf9612ac4565b8060051b9150612d0a848301612ada565b8181529183018401918481019088841115612d2457600080fd5b938501935b83851015612d4957612d3a856129e8565b82529385019390850190612d29565b98975050505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d9e57607f821691505b602082108103612dbe57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612e5357612e53612e2b565b5060010190565b60008219821115612e6d57612e6d612e2b565b500190565b600084516020612e858285838a01612964565b855191840191612e988184848a01612964565b8554920191600090600181811c9080831680612eb557607f831692505b8583108103612ed257634e487b7160e01b85526022600452602485fd5b808015612ee65760018114612ef757612f24565b60ff19851688528388019550612f24565b60008b81526020902060005b85811015612f1c5781548a820152908401908801612f03565b505083880195505b50939b9a5050505050505050505050565b600082821015612f4757612f47612e2b565b500390565b6000816000190483118215151615612f6657612f66612e2b565b500290565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261302a5761302a613005565b500490565b60008261303e5761303e613005565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061307690830184612990565b9695505050505050565b60006020828403121561309257600080fd5b8151611a3481612906565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a8a4b73a334877d195d798d75943f24c2447421d02a34693f5f134f46687be0d64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000850696c696772696d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025069000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d567a35796f44714e70787072683470576244785a5a6e75516138345775536f6744584b51737a4d7a6b6f366700000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103975760003560e01c80636f9fb98a116101dc578063a22cb46511610102578063d0eb26b0116100a0578063eced38731161006f578063eced387314610a42578063edec5f2714610a58578063f2c4ce1e14610a78578063f2fde38b14610a9857600080fd5b8063d0eb26b0146109a3578063d5abeb01146109c3578063da3ef23f146109d9578063e985e9c5146109f957600080fd5b8063ba7d2c76116100dc578063ba7d2c7614610942578063c668286214610958578063c87b56dd1461096d578063cc9ff9c61461098d57600080fd5b8063a22cb465146108ed578063a475b5dd1461090d578063b88d4fde1461092257600080fd5b80637f00c7a61161017a5780638fdcf942116101495780638fdcf9421461088f57806395d89b41146108af578063a0712d68146108c4578063a18116f1146108d757600080fd5b80637f00c7a61461081c578063831e60de1461083c57806383a076be146108515780638da5cb5b1461087157600080fd5b8063715018a6116101b6578063715018a6146107bb578063743c7f6b146107d05780637967a50a146107f05780637effc0321461080657600080fd5b80636f9fb98a1461077157806370a0823114610786578063714c5398146107a657600080fd5b80632e09282e116102c157806344a0d68a1161025f5780635c975abb1161022e5780635c975abb146106f75780636352211e14610711578063669736c0146107315780636f8b44b01461075157600080fd5b806344a0d68a146106785780634f6ccce71461069857806351830227146106b857806355f804b3146106d757600080fd5b80633ccfd60b1161029b5780633ccfd60b1461060357806342842e0e1461060b57806342f0ca0d1461062b578063438b63001461064b57600080fd5b80632e09282e146105945780632f745c59146105aa5780633af32abf146105ca57600080fd5b80630a50716b1161033957806318cae2691161030857806318cae2691461051b5780631985cc6514610548578063239c70ae1461055e57806323b872dd1461057457600080fd5b80630a50716b146104a25780630e54a883146104c257806313faede6146104e257806318160ddd1461050657600080fd5b8063081812fc11610375578063081812fc14610415578063081c8c441461044d578063095ea7b3146104625780630a403f041461048257600080fd5b806301ffc9a71461039c57806302329a29146103d157806306fdde03146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b736600461291c565b610ab8565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103f16103ec366004612949565b610ae3565b005b3480156103ff57600080fd5b50610408610b29565b6040516103c891906129bc565b34801561042157600080fd5b506104356104303660046129cf565b610bbb565b6040516001600160a01b0390911681526020016103c8565b34801561045957600080fd5b50610408610c50565b34801561046e57600080fd5b506103f161047d3660046129ff565b610cde565b34801561048e57600080fd5b506103f161049d3660046129cf565b610df3565b3480156104ae57600080fd5b506103f16104bd3660046129cf565b610e22565b3480156104ce57600080fd5b506103f16104dd3660046129cf565b610e51565b3480156104ee57600080fd5b506104f8600f5481565b6040519081526020016103c8565b34801561051257600080fd5b506008546104f8565b34801561052757600080fd5b506104f8610536366004612a29565b601b6020526000908152604090205481565b34801561055457600080fd5b506104f860165481565b34801561056a57600080fd5b506104f860135481565b34801561058057600080fd5b506103f161058f366004612a44565b610e80565b3480156105a057600080fd5b506104f860145481565b3480156105b657600080fd5b506104f86105c53660046129ff565b610eb1565b3480156105d657600080fd5b506103bc6105e5366004612a29565b6001600160a01b03166000908152601a602052604090205460ff1690565b6103f1610f47565b34801561061757600080fd5b506103f1610626366004612a44565b610fc9565b34801561063757600080fd5b506103f16106463660046129cf565b610fe4565b34801561065757600080fd5b5061066b610666366004612a29565b611013565b6040516103c89190612a80565b34801561068457600080fd5b506103f16106933660046129cf565b6110b5565b3480156106a457600080fd5b506104f86106b33660046129cf565b6110e4565b3480156106c457600080fd5b506019546103bc90610100900460ff1681565b3480156106e357600080fd5b506103f16106f2366004612b63565b611177565b34801561070357600080fd5b506019546103bc9060ff1681565b34801561071d57600080fd5b5061043561072c3660046129cf565b6111b8565b34801561073d57600080fd5b506103f161074c3660046129cf565b61122f565b34801561075d57600080fd5b506103f161076c3660046129cf565b61125e565b34801561077d57600080fd5b506104f861128d565b34801561079257600080fd5b506104f86107a1366004612a29565b6112bf565b3480156107b257600080fd5b50610408611346565b3480156107c757600080fd5b506103f1611380565b3480156107dc57600080fd5b506103f16107eb3660046129cf565b6113b6565b3480156107fc57600080fd5b506104f860175481565b34801561081257600080fd5b506104f860125481565b34801561082857600080fd5b506103f16108373660046129cf565b6113e5565b34801561084857600080fd5b506104f8611414565b34801561085d57600080fd5b506103f161086c366004612bac565b61142e565b34801561087d57600080fd5b50600a546001600160a01b0316610435565b34801561089b57600080fd5b506103f16108aa3660046129cf565b611569565b3480156108bb57600080fd5b50610408611598565b6103f16108d23660046129cf565b6115a7565b3480156108e357600080fd5b506104f860115481565b3480156108f957600080fd5b506103f1610908366004612bd8565b61177e565b34801561091957600080fd5b506103f1611842565b34801561092e57600080fd5b506103f161093d366004612c02565b61187d565b34801561094e57600080fd5b506104f860155481565b34801561096457600080fd5b506104086118af565b34801561097957600080fd5b506104086109883660046129cf565b6118bc565b34801561099957600080fd5b506104f8600e5481565b3480156109af57600080fd5b506103f16109be3660046129cf565b611a40565b3480156109cf57600080fd5b506104f860105481565b3480156109e557600080fd5b506103f16109f4366004612b63565b611a6f565b348015610a0557600080fd5b506103bc610a14366004612c7e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a4e57600080fd5b506104f860185481565b348015610a6457600080fd5b506103f1610a73366004612ca8565b611aac565b348015610a8457600080fd5b506103f1610a93366004612b63565b611b3e565b348015610aa457600080fd5b506103f1610ab3366004612a29565b611b7b565b60006001600160e01b0319821663780e9d6360e01b1480610add5750610add82611c13565b92915050565b600a546001600160a01b03163314610b165760405162461bcd60e51b8152600401610b0d90612d55565b60405180910390fd5b6019805460ff1916911515919091179055565b606060008054610b3890612d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6490612d8a565b8015610bb15780601f10610b8657610100808354040283529160200191610bb1565b820191906000526020600020905b815481529060010190602001808311610b9457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0d565b506000908152600460205260409020546001600160a01b031690565b600d8054610c5d90612d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8990612d8a565b8015610cd65780601f10610cab57610100808354040283529160200191610cd6565b820191906000526020600020905b815481529060010190602001808311610cb957829003601f168201915b505050505081565b6000610ce9826111b8565b9050806001600160a01b0316836001600160a01b031603610d565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b0d565b336001600160a01b0382161480610d725750610d728133610a14565b610de45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b0d565b610dee8383611c63565b505050565b600a546001600160a01b03163314610e1d5760405162461bcd60e51b8152600401610b0d90612d55565b601155565b600a546001600160a01b03163314610e4c5760405162461bcd60e51b8152600401610b0d90612d55565b601455565b600a546001600160a01b03163314610e7b5760405162461bcd60e51b8152600401610b0d90612d55565b601855565b610e8a3382611cd1565b610ea65760405162461bcd60e51b8152600401610b0d90612dc4565b610dee838383611dc8565b6000610ebc836112bf565b8210610f1e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b0d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f715760405162461bcd60e51b8152600401610b0d90612d55565b604051600090339047908381818185875af1925050503d8060008114610fb3576040519150601f19603f3d011682016040523d82523d6000602084013e610fb8565b606091505b5050905080610fc657600080fd5b50565b610dee8383836040518060200160405280600081525061187d565b600a546001600160a01b0316331461100e5760405162461bcd60e51b8152600401610b0d90612d55565b601755565b60606000611020836112bf565b905060008167ffffffffffffffff81111561103d5761103d612ac4565b604051908082528060200260200182016040528015611066578160200160208202803683370190505b50905060005b828110156110ad5761107e8582610eb1565b82828151811061109057611090612e15565b6020908102919091010152806110a581612e41565b91505061106c565b509392505050565b600a546001600160a01b031633146110df5760405162461bcd60e51b8152600401610b0d90612d55565b600f55565b60006110ef60085490565b82106111525760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b0d565b6008828154811061116557611165612e15565b90600052602060002001549050919050565b600a546001600160a01b031633146111a15760405162461bcd60e51b8152600401610b0d90612d55565b80516111b490600b90602084019061286d565b5050565b6000818152600260205260408120546001600160a01b031680610add5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b0d565b600a546001600160a01b031633146112595760405162461bcd60e51b8152600401610b0d90612d55565b601255565b600a546001600160a01b031633146112885760405162461bcd60e51b8152600401610b0d90612d55565b601055565b600a546000906001600160a01b031633146112ba5760405162461bcd60e51b8152600401610b0d90612d55565b504790565b60006001600160a01b03821661132a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b0d565b506001600160a01b031660009081526003602052604090205490565b600a546060906001600160a01b031633146113735760405162461bcd60e51b8152600401610b0d90612d55565b600b8054610b3890612d8a565b600a546001600160a01b031633146113aa5760405162461bcd60e51b8152600401610b0d90612d55565b6113b46000611f73565b565b600a546001600160a01b031633146113e05760405162461bcd60e51b8152600401610b0d90612d55565b601655565b600a546001600160a01b0316331461140f5760405162461bcd60e51b8152600401610b0d90612d55565b601355565b60006017544210156114275750600e5490565b50600f5490565b600a546001600160a01b031633146114585760405162461bcd60e51b8152600401610b0d90612d55565b600082116114a85760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b0d565b60006114b360085490565b6010549091506114c38483612e5a565b111561150a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0d565b60015b838111611563576001600160a01b0383166000908152601b6020526040812080549161153883612e41565b9091555061155190508361154c8385612e5a565b611fc5565b8061155b81612e41565b91505061150d565b50505050565b600a546001600160a01b031633146115935760405162461bcd60e51b8152600401610b0d90612d55565b600e55565b606060018054610b3890612d8a565b60195460ff16156115f35760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610b0d565b6016544210156116455760405162461bcd60e51b815260206004820152601860248201527f53616c6520686173206e6f7420737461727465642079657400000000000000006044820152606401610b0d565b80600081116116965760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610b0d565b60006116a160085490565b336000908152601b60205260409020546018549192509042106116cd576116c88185611fdf565b6116d8565b6116d88185846120ae565b6010546116e58584612e5a565b111561172c5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610b0d565b60015b84811161177757336000908152601b6020526040812080549161175183612e41565b9091555061176590503361154c8386612e5a565b8061176f81612e41565b91505061172f565b5050505050565b336001600160a01b038316036117d65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b0d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461186c5760405162461bcd60e51b8152600401610b0d90612d55565b6019805461ff001916610100179055565b6118873383611cd1565b6118a35760405162461bcd60e51b8152600401610b0d90612dc4565b61156384848484612260565b600c8054610c5d90612d8a565b6000818152600260205260409020546060906001600160a01b031661193b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b0d565b601954610100900460ff166119dc57600d805461195790612d8a565b80601f016020809104026020016040519081016040528092919081815260200182805461198390612d8a565b80156119d05780601f106119a5576101008083540402835291602001916119d0565b820191906000526020600020905b8154815290600101906020018083116119b357829003601f168201915b50505050509050919050565b60006119e6612293565b90506000815111611a065760405180602001604052806000815250611a34565b80611a10846122a2565b600c604051602001611a2493929190612e72565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b03163314611a6a5760405162461bcd60e51b8152600401610b0d90612d55565b601555565b600a546001600160a01b03163314611a995760405162461bcd60e51b8152600401610b0d90612d55565b80516111b490600c90602084019061286d565b600a546001600160a01b03163314611ad65760405162461bcd60e51b8152600401610b0d90612d55565b60005b81518110156111b4576001601a6000848481518110611afa57611afa612e15565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611b3681612e41565b915050611ad9565b600a546001600160a01b03163314611b685760405162461bcd60e51b8152600401610b0d90612d55565b80516111b490600d90602084019061286d565b600a546001600160a01b03163314611ba55760405162461bcd60e51b8152600401610b0d90612d55565b6001600160a01b038116611c0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b0d565b610fc681611f73565b60006001600160e01b031982166380ac58cd60e01b1480611c4457506001600160e01b03198216635b5e139f60e01b145b80610add57506301ffc9a760e01b6001600160e01b0319831614610add565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c98826111b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d4a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b0d565b6000611d55836111b8565b9050806001600160a01b0316846001600160a01b03161480611d905750836001600160a01b0316611d8584610bbb565b6001600160a01b0316145b80611dc057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ddb826111b8565b6001600160a01b031614611e435760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b0d565b6001600160a01b038216611ea55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b0d565b611eb08383836123a3565b611ebb600082611c63565b6001600160a01b0383166000908152600360205260408120805460019290611ee4908490612f35565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f12908490612e5a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111b482826040518060200160405280600081525061245b565b601554611fec8284612e5a565b111561203a5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610b0d565b80600f546120489190612f4c565b34101561208c5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0d565b6013548111156111b45760405162461bcd60e51b8152600401610b0d90612f6b565b600060175442106120c35750600f54806120c9565b50600e54805b50336000908152601a602052604090205460ff166121295760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610b0d565b6014546121368486612e5a565b11156121955760405162461bcd60e51b815260206004820152602860248201527f6d6178204e465420706572206164647265737320657863656564656420666f726044820152672070726573616c6560c01b6064820152608401610b0d565b61219f8382612f4c565b3410156121e35760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610b0d565b6012548311156122055760405162461bcd60e51b8152600401610b0d90612f6b565b6011546122128484612e5a565b11156115635760405162461bcd60e51b815260206004820152601e60248201527f6d6178204e46542070726573616c65206c696d697420657863656564656400006044820152606401610b0d565b61226b848484611dc8565b6122778484848461248e565b6115635760405162461bcd60e51b8152600401610b0d90612fb3565b6060600b8054610b3890612d8a565b6060816000036122c95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122f357806122dd81612e41565b91506122ec9050600a8361301b565b91506122cd565b60008167ffffffffffffffff81111561230e5761230e612ac4565b6040519080825280601f01601f191660200182016040528015612338576020820181803683370190505b5090505b8415611dc05761234d600183612f35565b915061235a600a8661302f565b612365906030612e5a565b60f81b81838151811061237a5761237a612e15565b60200101906001600160f81b031916908160001a90535061239c600a8661301b565b945061233c565b6001600160a01b0383166123fe576123f981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612421565b816001600160a01b0316836001600160a01b03161461242157612421838261258f565b6001600160a01b03821661243857610dee8161262c565b826001600160a01b0316826001600160a01b031614610dee57610dee82826126db565b612465838361271f565b612472600084848461248e565b610dee5760405162461bcd60e51b8152600401610b0d90612fb3565b60006001600160a01b0384163b1561258457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124d2903390899088908890600401613043565b6020604051808303816000875af192505050801561250d575060408051601f3d908101601f1916820190925261250a91810190613080565b60015b61256a573d80801561253b576040519150601f19603f3d011682016040523d82523d6000602084013e612540565b606091505b5080516000036125625760405162461bcd60e51b8152600401610b0d90612fb3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dc0565b506001949350505050565b6000600161259c846112bf565b6125a69190612f35565b6000838152600760205260409020549091508082146125f9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061263e90600190612f35565b6000838152600960205260408120546008805493945090928490811061266657612666612e15565b90600052602060002001549050806008838154811061268757612687612e15565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126bf576126bf61309d565b6001900381819060005260206000200160009055905550505050565b60006126e6836112bf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127755760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b0d565b6000818152600260205260409020546001600160a01b0316156127da5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b0d565b6127e6600083836123a3565b6001600160a01b038216600090815260036020526040812080546001929061280f908490612e5a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461287990612d8a565b90600052602060002090601f01602090048101928261289b57600085556128e1565b82601f106128b457805160ff19168380011785556128e1565b828001600101855582156128e1579182015b828111156128e15782518255916020019190600101906128c6565b506128ed9291506128f1565b5090565b5b808211156128ed57600081556001016128f2565b6001600160e01b031981168114610fc657600080fd5b60006020828403121561292e57600080fd5b8135611a3481612906565b80358015158114611a3b57600080fd5b60006020828403121561295b57600080fd5b611a3482612939565b60005b8381101561297f578181015183820152602001612967565b838111156115635750506000910152565b600081518084526129a8816020860160208601612964565b601f01601f19169290920160200192915050565b602081526000611a346020830184612990565b6000602082840312156129e157600080fd5b5035919050565b80356001600160a01b0381168114611a3b57600080fd5b60008060408385031215612a1257600080fd5b612a1b836129e8565b946020939093013593505050565b600060208284031215612a3b57600080fd5b611a34826129e8565b600080600060608486031215612a5957600080fd5b612a62846129e8565b9250612a70602085016129e8565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015612ab857835183529284019291840191600101612a9c565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612b0357612b03612ac4565b604052919050565b600067ffffffffffffffff831115612b2557612b25612ac4565b612b38601f8401601f1916602001612ada565b9050828152838383011115612b4c57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612b7557600080fd5b813567ffffffffffffffff811115612b8c57600080fd5b8201601f81018413612b9d57600080fd5b611dc084823560208401612b0b565b60008060408385031215612bbf57600080fd5b82359150612bcf602084016129e8565b90509250929050565b60008060408385031215612beb57600080fd5b612bf4836129e8565b9150612bcf60208401612939565b60008060008060808587031215612c1857600080fd5b612c21856129e8565b9350612c2f602086016129e8565b925060408501359150606085013567ffffffffffffffff811115612c5257600080fd5b8501601f81018713612c6357600080fd5b612c7287823560208401612b0b565b91505092959194509250565b60008060408385031215612c9157600080fd5b612c9a836129e8565b9150612bcf602084016129e8565b60006020808385031215612cbb57600080fd5b823567ffffffffffffffff80821115612cd357600080fd5b818501915085601f830112612ce757600080fd5b813581811115612cf957612cf9612ac4565b8060051b9150612d0a848301612ada565b8181529183018401918481019088841115612d2457600080fd5b938501935b83851015612d4957612d3a856129e8565b82529385019390850190612d29565b98975050505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d9e57607f821691505b602082108103612dbe57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612e5357612e53612e2b565b5060010190565b60008219821115612e6d57612e6d612e2b565b500190565b600084516020612e858285838a01612964565b855191840191612e988184848a01612964565b8554920191600090600181811c9080831680612eb557607f831692505b8583108103612ed257634e487b7160e01b85526022600452602485fd5b808015612ee65760018114612ef757612f24565b60ff19851688528388019550612f24565b60008b81526020902060005b85811015612f1c5781548a820152908401908801612f03565b505083880195505b50939b9a5050505050505050505050565b600082821015612f4757612f47612e2b565b500390565b6000816000190483118215151615612f6657612f66612e2b565b500290565b60208082526028908201527f6d6178206d696e7420616d6f756e7420706572207472616e73616374696f6e20604082015267195e18d95959195960c21b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261302a5761302a613005565b500490565b60008261303e5761303e613005565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061307690830184612990565b9695505050505050565b60006020828403121561309257600080fd5b8151611a3481612906565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220a8a4b73a334877d195d798d75943f24c2447421d02a34693f5f134f46687be0d64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000850696c696772696d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025069000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d567a35796f44714e70787072683470576244785a5a6e75516138345775536f6744584b51737a4d7a6b6f366700000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Piligrim
Arg [1] : _symbol (string): Pi
Arg [2] : _initNotRevealedUri (string): https://gateway.pinata.cloud/ipfs/QmVz5yoDqNpxprh4pWbDxZZnuQa84WuSogDXKQszMzko6g

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 50696c696772696d000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 5069000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d567a35796f44714e70787072683470576244785a5a6e755161383457
Arg [10] : 75536f6744584b51737a4d7a6b6f366700000000000000000000000000000000


Deployed Bytecode Sourcemap

43303:7613:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34803:224;;;;;;;;;;-1:-1:-1;34803:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34803:224:0;;;;;;;;48710:79;;;;;;;;;;-1:-1:-1;48710:79:0;;;;;:::i;:::-;;:::i;:::-;;21704:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23263:221::-;;;;;;;;;;-1:-1:-1;23263:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;23263:221:0;1878:203:1;43462:28:0;;;;;;;;;;;;;:::i;22786:411::-;;;;;;;;;;-1:-1:-1;22786:411:0;;;;;:::i;:::-;;:::i;49913:134::-;;;;;;;;;;-1:-1:-1;49913:134:0;;;;;:::i;:::-;;:::i;48801:124::-;;;;;;;;;;-1:-1:-1;48801:124:0;;;;;:::i;:::-;;:::i;50407:120::-;;;;;;;;;;-1:-1:-1;50407:120:0;;;;;:::i;:::-;;:::i;43543:32::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;43543:32:0;2523:177:1;35443:113:0;;;;;;;;;;-1:-1:-1;35531:10:0;:17;35443:113;;44109:55;;;;;;;;;;-1:-1:-1;44109:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;43845:39;;;;;;;;;;;;;;;;43711:32;;;;;;;;;;;;;;;;24153:339;;;;;;;;;;-1:-1:-1;24153:339:0;;;;;:::i;:::-;;:::i;43750:44::-;;;;;;;;;;;;;;;;35111:256;;;;;;;;;;-1:-1:-1;35111:256:0;;;;;:::i;:::-;;:::i;47170:118::-;;;;;;;;;;-1:-1:-1;47170:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;47253:27:0;47229:4;47253:27;;;:20;:27;;;;;;;;;47170:118;50745:168;;;:::i;24563:185::-;;;;;;;;;;-1:-1:-1;24563:185:0;;;;;:::i;:::-;;:::i;50279:120::-;;;;;;;;;;-1:-1:-1;50279:120:0;;;;;:::i;:::-;;:::i;47296:358::-;;;;;;;;;;-1:-1:-1;47296:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49159:86::-;;;;;;;;;;-1:-1:-1;49159:86:0;;;;;:::i;:::-;;:::i;35633:233::-;;;;;;;;;;-1:-1:-1;35633:233:0;;;;;:::i;:::-;;:::i;44022:28::-;;;;;;;;;;-1:-1:-1;44022:28:0;;;;;;;;;;;49531:104;;;;;;;;;;-1:-1:-1;49531:104:0;;;;;:::i;:::-;;:::i;43989:26::-;;;;;;;;;;-1:-1:-1;43989:26:0;;;;;;;;21398:239;;;;;;;;;;-1:-1:-1;21398:239:0;;;;;:::i;:::-;;:::i;49257:136::-;;;;;;;;;;-1:-1:-1;49257:136:0;;;;;:::i;:::-;;:::i;50055:100::-;;;;;;;;;;-1:-1:-1;50055:100:0;;;;;:::i;:::-;;:::i;48480:117::-;;;;;;;;;;;;;:::i;21128:208::-;;;;;;;;;;-1:-1:-1;21128:208:0;;;;;:::i;:::-;;:::i;48371:101::-;;;;;;;;;;;;;:::i;42600:94::-;;;;;;;;;;;;;:::i;50163:108::-;;;;;;;;;;-1:-1:-1;50163:108:0;;;;;:::i;:::-;;:::i;43891:42::-;;;;;;;;;;;;;;;;43665:39;;;;;;;;;;;;;;;;49401:122;;;;;;;;;;-1:-1:-1;49401:122:0;;;;;:::i;:::-;;:::i;48138:201::-;;;;;;;;;;;;;:::i;46709:433::-;;;;;;;;;;-1:-1:-1;46709:433:0;;;;;:::i;:::-;;:::i;41949:87::-;;;;;;;;;;-1:-1:-1;42022:6:0;;-1:-1:-1;;;;;42022:6:0;41949:87;;49051:100;;;;;;;;;;-1:-1:-1;49051:100:0;;;;;:::i;:::-;;:::i;21873:104::-;;;;;;;;;;;;;:::i;45993:704::-;;;;;;:::i;:::-;;:::i;43620:38::-;;;;;;;;;;;;;;;;23556:295;;;;;;;;;;-1:-1:-1;23556:295:0;;;;;:::i;:::-;;:::i;48633:69::-;;;;;;;;;;;;;:::i;24819:328::-;;;;;;;;;;-1:-1:-1;24819:328:0;;;;;:::i;:::-;;:::i;43801:37::-;;;;;;;;;;;;;;;;43418;;;;;;;;;;;;;:::i;47662:468::-;;;;;;;;;;-1:-1:-1;47662:468:0;;;;;:::i;:::-;;:::i;43497:39::-;;;;;;;;;;;;;;;;48933:110;;;;;;;;;;-1:-1:-1;48933:110:0;;;;;:::i;:::-;;:::i;43582:31::-;;;;;;;;;;;;;;;;49643:128;;;;;;;;;;-1:-1:-1;49643:128:0;;;;;:::i;:::-;;:::i;23922:164::-;;;;;;;;;;-1:-1:-1;23922:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24043:25:0;;;24019:4;24043:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23922:164;43940:42;;;;;;;;;;;;;;;;50535:202;;;;;;;;;;-1:-1:-1;50535:202:0;;;;;:::i;:::-;;:::i;49779:126::-;;;;;;;;;;-1:-1:-1;49779:126:0;;;;;:::i;:::-;;:::i;42849:192::-;;;;;;;;;;-1:-1:-1;42849:192:0;;;;;:::i;:::-;;:::i;34803:224::-;34905:4;-1:-1:-1;;;;;;34929:50:0;;-1:-1:-1;;;34929:50:0;;:90;;;34983:36;35007:11;34983:23;:36::i;:::-;34922:97;34803:224;-1:-1:-1;;34803:224:0:o;48710:79::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;;;;;;;;;48766:6:::1;:15:::0;;-1:-1:-1;;48766:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48710:79::o;21704:100::-;21758:13;21791:5;21784:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21704:100;:::o;23263:221::-;23339:7;26746:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26746:16:0;23359:73;;;;-1:-1:-1;;;23359:73:0;;8506:2:1;23359:73:0;;;8488:21:1;8545:2;8525:18;;;8518:30;8584:34;8564:18;;;8557:62;-1:-1:-1;;;8635:18:1;;;8628:42;8687:19;;23359:73:0;8304:408:1;23359:73:0;-1:-1:-1;23452:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23452:24:0;;23263:221::o;43462:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22786:411::-;22867:13;22883:23;22898:7;22883:14;:23::i;:::-;22867:39;;22931:5;-1:-1:-1;;;;;22925:11:0;:2;-1:-1:-1;;;;;22925:11:0;;22917:57;;;;-1:-1:-1;;;22917:57:0;;8919:2:1;22917:57:0;;;8901:21:1;8958:2;8938:18;;;8931:30;8997:34;8977:18;;;8970:62;-1:-1:-1;;;9048:18:1;;;9041:31;9089:19;;22917:57:0;8717:397:1;22917:57:0;16261:10;-1:-1:-1;;;;;23009:21:0;;;;:62;;-1:-1:-1;23034:37:0;23051:5;16261:10;23922:164;:::i;23034:37::-;22987:168;;;;-1:-1:-1;;;22987:168:0;;9321:2:1;22987:168:0;;;9303:21:1;9360:2;9340:18;;;9333:30;9399:34;9379:18;;;9372:62;9470:26;9450:18;;;9443:54;9514:19;;22987:168:0;9119:420:1;22987:168:0;23168:21;23177:2;23181:7;23168:8;:21::i;:::-;22856:341;22786:411;;:::o;49913:134::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;50000:16:::1;:39:::0;49913:134::o;48801:124::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;48883:25:::1;:34:::0;48801:124::o;50407:120::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;50487:14:::1;:32:::0;50407:120::o;24153:339::-;24348:41;16261:10;24381:7;24348:18;:41::i;:::-;24340:103;;;;-1:-1:-1;;;24340:103:0;;;;;;;:::i;:::-;24456:28;24466:4;24472:2;24476:7;24456:9;:28::i;35111:256::-;35208:7;35244:23;35261:5;35244:16;:23::i;:::-;35236:5;:31;35228:87;;;;-1:-1:-1;;;35228:87:0;;10164:2:1;35228:87:0;;;10146:21:1;10203:2;10183:18;;;10176:30;10242:34;10222:18;;;10215:62;-1:-1:-1;;;10293:18:1;;;10286:41;10344:19;;35228:87:0;9962:407:1;35228:87:0;-1:-1:-1;;;;;;35333:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35111:256::o;50745:168::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;50820:58:::1;::::0;50802:12:::1;::::0;50828:10:::1;::::0;50852:21:::1;::::0;50802:12;50820:58;50802:12;50820:58;50852:21;50828:10;50820:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50801:77;;;50897:7;50889:16;;;::::0;::::1;;50790:123;50745:168::o:0;24563:185::-;24701:39;24718:4;24724:2;24728:7;24701:39;;;;;;;;;;;;:16;:39::i;50279:120::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;50359:14:::1;:32:::0;50279:120::o;47296:358::-;47356:16;47385:23;47411:17;47421:6;47411:9;:17::i;:::-;47385:43;;47439:25;47481:15;47467:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47467:30:0;;47439:58;;47513:9;47508:113;47528:15;47524:1;:19;47508:113;;;47579:30;47599:6;47607:1;47579:19;:30::i;:::-;47565:8;47574:1;47565:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47545:3;;;;:::i;:::-;;;;47508:113;;;-1:-1:-1;47638:8:0;47296:358;-1:-1:-1;;;47296:358:0:o;49159:86::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;49222:4:::1;:15:::0;49159:86::o;35633:233::-;35708:7;35744:30;35531:10;:17;;35443:113;35744:30;35736:5;:38;35728:95;;;;-1:-1:-1;;;35728:95:0;;11190:2:1;35728:95:0;;;11172:21:1;11229:2;11209:18;;;11202:30;11268:34;11248:18;;;11241:62;-1:-1:-1;;;11319:18:1;;;11312:42;11371:19;;35728:95:0;10988:408:1;35728:95:0;35841:10;35852:5;35841:17;;;;;;;;:::i;:::-;;;;;;;;;35834:24;;35633:233;;;:::o;49531:104::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;49606:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49531:104:::0;:::o;21398:239::-;21470:7;21506:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21506:16:0;;21533:73;;;;-1:-1:-1;;;21533:73:0;;11603:2:1;21533:73:0;;;11585:21:1;11642:2;11622:18;;;11615:30;11681:34;11661:18;;;11654:62;-1:-1:-1;;;11732:18:1;;;11725:39;11781:19;;21533:73:0;11401:405:1;49257:136:0;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;49345:20:::1;:40:::0;49257:136::o;50055:100::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;50125:9:::1;:22:::0;50055:100::o;48480:117::-;42022:6;;48541:7;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;-1:-1:-1;48568:21:0::1;48480:117:::0;:::o;21128:208::-;21200:7;-1:-1:-1;;;;;21228:19:0;;21220:74;;;;-1:-1:-1;;;21220:74:0;;12013:2:1;21220:74:0;;;11995:21:1;12052:2;12032:18;;;12025:30;12091:34;12071:18;;;12064:62;-1:-1:-1;;;12142:18:1;;;12135:40;12192:19;;21220:74:0;11811:406:1;21220:74:0;-1:-1:-1;;;;;;21312:16:0;;;;;:9;:16;;;;;;;21128:208::o;48371:101::-;42022:6;;48424:13;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;48457:7:::1;48450:14;;;;;:::i;42600:94::-:0;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;42665:21:::1;42683:1;42665:9;:21::i;:::-;42600:94::o:0;50163:108::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;50237:11:::1;:26:::0;50163:108::o;49401:122::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;49482:13:::1;:33:::0;49401:122::o;48138:201::-;48185:7;48227:14;;48209:15;:32;48205:127;;;-1:-1:-1;48265:11:0;;;48138:201::o;48205:127::-;-1:-1:-1;48316:4:0;;;48138:201::o;46709:433::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;46815:1:::1;46801:11;:15;46793:55;;;::::0;-1:-1:-1;;;46793:55:0;;12424:2:1;46793:55:0::1;::::0;::::1;12406:21:1::0;12463:2;12443:18;;;12436:30;12502:29;12482:18;;;12475:57;12549:18;;46793:55:0::1;12222:351:1::0;46793:55:0::1;46859:14;46876:13;35531:10:::0;:17;;35443:113;46876:13:::1;46932:9;::::0;46859:30;;-1:-1:-1;46908:20:0::1;46917:11:::0;46859:30;46908:20:::1;:::i;:::-;:33;;46900:68;;;::::0;-1:-1:-1;;;46900:68:0;;12913:2:1;46900:68:0::1;::::0;::::1;12895:21:1::0;12952:2;12932:18;;;12925:30;-1:-1:-1;;;12971:18:1;;;12964:52;13033:18;;46900:68:0::1;12711:346:1::0;46900:68:0::1;46998:1;46981:154;47006:11;47001:1;:16;46981:154;;-1:-1:-1::0;;;;;47039:33:0;::::1;;::::0;;;:20:::1;:33;::::0;;;;:35;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;47089:34:0::1;::::0;-1:-1:-1;47099:11:0;47112:10:::1;47121:1:::0;47112:6;:10:::1;:::i;:::-;47089:9;:34::i;:::-;47019:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46981:154;;;;46782:360;46709:433:::0;;:::o;49051:100::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;49121:11:::1;:22:::0;49051:100::o;21873:104::-;21929:13;21962:7;21955:14;;;;;:::i;45993:704::-;44413:6;;;;44412:7;44404:42;;;;-1:-1:-1;;;44404:42:0;;13264:2:1;44404:42:0;;;13246:21:1;13303:2;13283:18;;;13276:30;-1:-1:-1;;;13322:18:1;;;13315:52;13384:18;;44404:42:0;13062:346:1;44404:42:0;44534:11:::1;;44515:15;:30;;44507:67;;;::::0;-1:-1:-1;;;44507:67:0;;13615:2:1;44507:67:0::1;::::0;::::1;13597:21:1::0;13654:2;13634:18;;;13627:30;13693:26;13673:18;;;13666:54;13737:18;;44507:67:0::1;13413:348:1::0;44507:67:0::1;46083:11:::2;44683:1;44669:11;:15;44661:55;;;::::0;-1:-1:-1;;;44661:55:0;;12424:2:1;44661:55:0::2;::::0;::::2;12406:21:1::0;12463:2;12443:18;;;12436:30;12502:29;12482:18;;;12475:57;12549:18;;44661:55:0::2;12222:351:1::0;44661:55:0::2;46107:14:::3;46124:13;35531:10:::0;:17;;35443:113;46124:13:::3;46196:10;46148:24;46175:32:::0;;;:20:::3;:32;::::0;;;;;46315:14:::3;::::0;46107:30;;-1:-1:-1;46175:32:0;46297:15:::3;:32;:147;;46392:52;46414:16;46432:11;46392:21;:52::i;:::-;46297:147;;;46332:57;46351:16;46369:11;46382:6;46332:18;:57::i;:::-;46489:9;::::0;46465:20:::3;46474:11:::0;46465:6;:20:::3;:::i;:::-;:33;;46457:68;;;::::0;-1:-1:-1;;;46457:68:0;;12913:2:1;46457:68:0::3;::::0;::::3;12895:21:1::0;12952:2;12932:18;;;12925:30;-1:-1:-1;;;12971:18:1;;;12964:52;13033:18;;46457:68:0::3;12711:346:1::0;46457:68:0::3;46555:1;46538:152;46563:11;46558:1;:16;46538:152;;46617:10;46596:32;::::0;;;:20:::3;:32;::::0;;;;:34;;;::::3;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;46645:33:0::3;::::0;-1:-1:-1;46655:10:0::3;46667;46676:1:::0;46667:6;:10:::3;:::i;46645:33::-;46576:3:::0;::::3;::::0;::::3;:::i;:::-;;;;46538:152;;;;46096:601;;44585:1:::2;45993:704:::0;:::o;23556:295::-;16261:10;-1:-1:-1;;;;;23659:24:0;;;23651:62;;;;-1:-1:-1;;;23651:62:0;;13968:2:1;23651:62:0;;;13950:21:1;14007:2;13987:18;;;13980:30;14046:27;14026:18;;;14019:55;14091:18;;23651:62:0;13766:349:1;23651:62:0;16261:10;23726:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23726:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23726:53:0;;;;;;;;;;23795:48;;540:41:1;;;23726:42:0;;16261:10;23795:48;;513:18:1;23795:48:0;;;;;;;23556:295;;:::o;48633:69::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;48679:8:::1;:15:::0;;-1:-1:-1;;48679:15:0::1;;;::::0;;48633:69::o;24819:328::-;24994:41;16261:10;25027:7;24994:18;:41::i;:::-;24986:103;;;;-1:-1:-1;;;24986:103:0;;;;;;;:::i;:::-;25100:39;25114:4;25120:2;25124:7;25133:5;25100:13;:39::i;43418:37::-;;;;;;;:::i;47662:468::-;26722:4;26746:16;;;:7;:16;;;;;;47735:13;;-1:-1:-1;;;;;26746:16:0;47761:76;;;;-1:-1:-1;;;47761:76:0;;14322:2:1;47761:76:0;;;14304:21:1;14361:2;14341:18;;;14334:30;14400:34;14380:18;;;14373:62;-1:-1:-1;;;14451:18:1;;;14444:45;14506:19;;47761:76:0;14120:411:1;47761:76:0;47855:8;;;;;;;47850:273;;47887:14;47880:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47662:468;;;:::o;47850:273::-;47934:28;47965:10;:8;:10::i;:::-;47934:41;;48028:1;48003:14;47997:28;:32;:114;;;;;;;;;;;;;;;;;48056:14;48071:18;:7;:16;:18::i;:::-;48091:13;48039:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47997:114;47990:121;47662:468;-1:-1:-1;;;47662:468:0:o;47850:273::-;47662:468;;;:::o;48933:110::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;49008:18:::1;:27:::0;48933:110::o;49643:128::-;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;49730:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50535:202::-:0;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;50620:9:::1;50615:115;50639:9;:16;50635:1;:20;50615:115;;;50714:4;50677:20;:34;50698:9;50708:1;50698:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50677:34:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50677:34:0;:41;;-1:-1:-1;;50677:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50657:3;::::1;::::0;::::1;:::i;:::-;;;;50615:115;;49779:126:::0;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;49865:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42849:192::-:0;42022:6;;-1:-1:-1;;;;;42022:6:0;16261:10;42169:23;42161:68;;;;-1:-1:-1;;;42161:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42938:22:0;::::1;42930:73;;;::::0;-1:-1:-1;;;42930:73:0;;16396:2:1;42930:73:0::1;::::0;::::1;16378:21:1::0;16435:2;16415:18;;;16408:30;16474:34;16454:18;;;16447:62;-1:-1:-1;;;16525:18:1;;;16518:36;16571:19;;42930:73:0::1;16194:402:1::0;42930:73:0::1;43014:19;43024:8;43014:9;:19::i;20759:305::-:0;20861:4;-1:-1:-1;;;;;;20898:40:0;;-1:-1:-1;;;20898:40:0;;:105;;-1:-1:-1;;;;;;;20955:48:0;;-1:-1:-1;;;20955:48:0;20898:105;:158;;;-1:-1:-1;;;;;;;;;;19372:40:0;;;21020:36;19263:157;30639:174;30714:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30714:29:0;-1:-1:-1;;;;;30714:29:0;;;;;;;;:24;;30768:23;30714:24;30768:14;:23::i;:::-;-1:-1:-1;;;;;30759:46:0;;;;;;;;;;;30639:174;;:::o;26951:348::-;27044:4;26746:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26746:16:0;27061:73;;;;-1:-1:-1;;;27061:73:0;;16803:2:1;27061:73:0;;;16785:21:1;16842:2;16822:18;;;16815:30;16881:34;16861:18;;;16854:62;-1:-1:-1;;;16932:18:1;;;16925:42;16984:19;;27061:73:0;16601:408:1;27061:73:0;27145:13;27161:23;27176:7;27161:14;:23::i;:::-;27145:39;;27214:5;-1:-1:-1;;;;;27203:16:0;:7;-1:-1:-1;;;;;27203:16:0;;:51;;;;27247:7;-1:-1:-1;;;;;27223:31:0;:20;27235:7;27223:11;:20::i;:::-;-1:-1:-1;;;;;27223:31:0;;27203:51;:87;;;-1:-1:-1;;;;;;24043:25:0;;;24019:4;24043:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27258:32;27195:96;26951:348;-1:-1:-1;;;;26951:348:0:o;29943:578::-;30102:4;-1:-1:-1;;;;;30075:31:0;:23;30090:7;30075:14;:23::i;:::-;-1:-1:-1;;;;;30075:31:0;;30067:85;;;;-1:-1:-1;;;30067:85:0;;17216:2:1;30067:85:0;;;17198:21:1;17255:2;17235:18;;;17228:30;17294:34;17274:18;;;17267:62;-1:-1:-1;;;17345:18:1;;;17338:39;17394:19;;30067:85:0;17014:405:1;30067:85:0;-1:-1:-1;;;;;30171:16:0;;30163:65;;;;-1:-1:-1;;;30163:65:0;;17626:2:1;30163:65:0;;;17608:21:1;17665:2;17645:18;;;17638:30;17704:34;17684:18;;;17677:62;-1:-1:-1;;;17755:18:1;;;17748:34;17799:19;;30163:65:0;17424:400:1;30163:65:0;30241:39;30262:4;30268:2;30272:7;30241:20;:39::i;:::-;30345:29;30362:1;30366:7;30345:8;:29::i;:::-;-1:-1:-1;;;;;30387:15:0;;;;;;:9;:15;;;;;:20;;30406:1;;30387:15;:20;;30406:1;;30387:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30418:13:0;;;;;;:9;:13;;;;;:18;;30435:1;;30418:13;:18;;30435:1;;30418:18;:::i;:::-;;;;-1:-1:-1;;30447:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30447:21:0;-1:-1:-1;;;;;30447:21:0;;;;;;;;;30486:27;;30447:16;;30486:27;;;;;;;29943:578;;;:::o;43049:173::-;43124:6;;;-1:-1:-1;;;;;43141:17:0;;;-1:-1:-1;;;;;;43141:17:0;;;;;;;43174:40;;43124:6;;;43141:17;43124:6;;43174:40;;43105:16;;43174:40;43094:128;43049:173;:::o;27641:110::-;27717:26;27727:2;27731:7;27717:26;;;;;;;;;;;;:9;:26::i;45609:364::-;45751:18;;45716:31;45736:11;45716:17;:31;:::i;:::-;:53;;45708:93;;;;-1:-1:-1;;;45708:93:0;;18161:2:1;45708:93:0;;;18143:21:1;18200:2;18180:18;;;18173:30;18239;18219:18;;;18212:58;18287:18;;45708:93:0;17959:352:1;45708:93:0;45840:11;45833:4;;:18;;;;:::i;:::-;45820:9;:31;;45812:62;;;;-1:-1:-1;;;45812:62:0;;18691:2:1;45812:62:0;;;18673:21:1;18730:2;18710:18;;;18703:30;-1:-1:-1;;;18749:18:1;;;18742:48;18807:18;;45812:62:0;18489:342:1;45812:62:0;45908:13;;45893:11;:28;;45885:80;;;;-1:-1:-1;;;45885:80:0;;;;;;;:::i;44877:724::-;44994:18;45045:14;;45027:15;:32;:79;;-1:-1:-1;45102:4:0;;;45027:79;;;-1:-1:-1;45075:11:0;;;45027:79;-1:-1:-1;45143:10:0;47229:4;47253:27;;;:20;:27;;;;;;;;45121:61;;;;-1:-1:-1;;;45121:61:0;;19447:2:1;45121:61:0;;;19429:21:1;19486:2;19466:18;;;19459:30;19525:25;19505:18;;;19498:53;19568:18;;45121:61:0;19245:347:1;45121:61:0;45240:25;;45205:31;45225:11;45205:17;:31;:::i;:::-;:60;;45197:113;;;;-1:-1:-1;;;45197:113:0;;19799:2:1;45197:113:0;;;19781:21:1;19838:2;19818:18;;;19811:30;19877:34;19857:18;;;19850:62;-1:-1:-1;;;19928:18:1;;;19921:38;19976:19;;45197:113:0;19597:404:1;45197:113:0;45346:24;45359:11;45346:10;:24;:::i;:::-;45333:9;:37;;45325:68;;;;-1:-1:-1;;;45325:68:0;;18691:2:1;45325:68:0;;;18673:21:1;18730:2;18710:18;;;18703:30;-1:-1:-1;;;18749:18:1;;;18742:48;18807:18;;45325:68:0;18489:342:1;45325:68:0;45431:20;;45416:11;:35;;45408:87;;;;-1:-1:-1;;;45408:87:0;;;;;;;:::i;:::-;45543:16;;45518:21;45528:11;45518:7;:21;:::i;:::-;:41;;45510:83;;;;-1:-1:-1;;;45510:83:0;;20208:2:1;45510:83:0;;;20190:21:1;20247:2;20227:18;;;20220:30;20286:32;20266:18;;;20259:60;20336:18;;45510:83:0;20006:354:1;26029:315:0;26186:28;26196:4;26202:2;26206:7;26186:9;:28::i;:::-;26233:48;26256:4;26262:2;26266:7;26275:5;26233:22;:48::i;:::-;26225:111;;;;-1:-1:-1;;;26225:111:0;;;;;;;:::i;44761:108::-;44821:13;44854:7;44847:14;;;;;:::i;16706:723::-;16762:13;16983:5;16992:1;16983:10;16979:53;;-1:-1:-1;;17010:10:0;;;;;;;;;;;;-1:-1:-1;;;17010:10:0;;;;;16706:723::o;16979:53::-;17057:5;17042:12;17098:78;17105:9;;17098:78;;17131:8;;;;:::i;:::-;;-1:-1:-1;17154:10:0;;-1:-1:-1;17162:2:0;17154:10;;:::i;:::-;;;17098:78;;;17186:19;17218:6;17208:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17208:17:0;;17186:39;;17236:154;17243:10;;17236:154;;17270:11;17280:1;17270:11;;:::i;:::-;;-1:-1:-1;17339:10:0;17347:2;17339:5;:10;:::i;:::-;17326:24;;:2;:24;:::i;:::-;17313:39;;17296:6;17303;17296:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17296:56:0;;;;;;;;-1:-1:-1;17367:11:0;17376:2;17367:11;;:::i;:::-;;;17236:154;;36479:589;-1:-1:-1;;;;;36685:18:0;;36681:187;;36720:40;36752:7;37895:10;:17;;37868:24;;;;:15;:24;;;;;:44;;;37923:24;;;;;;;;;;;;37791:164;36720:40;36681:187;;;36790:2;-1:-1:-1;;;;;36782:10:0;:4;-1:-1:-1;;;;;36782:10:0;;36778:90;;36809:47;36842:4;36848:7;36809:32;:47::i;:::-;-1:-1:-1;;;;;36882:16:0;;36878:183;;36915:45;36952:7;36915:36;:45::i;36878:183::-;36988:4;-1:-1:-1;;;;;36982:10:0;:2;-1:-1:-1;;;;;36982:10:0;;36978:83;;37009:40;37037:2;37041:7;37009:27;:40::i;27978:321::-;28108:18;28114:2;28118:7;28108:5;:18::i;:::-;28159:54;28190:1;28194:2;28198:7;28207:5;28159:22;:54::i;:::-;28137:154;;;;-1:-1:-1;;;28137:154:0;;;;;;;:::i;31378:799::-;31533:4;-1:-1:-1;;;;;31554:13:0;;8548:20;8596:8;31550:620;;31590:72;;-1:-1:-1;;;31590:72:0;;-1:-1:-1;;;;;31590:36:0;;;;;:72;;16261:10;;31641:4;;31647:7;;31656:5;;31590:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31590:72:0;;;;;;;;-1:-1:-1;;31590:72:0;;;;;;;;;;;;:::i;:::-;;;31586:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31832:6;:13;31849:1;31832:18;31828:272;;31875:60;;-1:-1:-1;;;31875:60:0;;;;;;;:::i;31828:272::-;32050:6;32044:13;32035:6;32031:2;32027:15;32020:38;31586:529;-1:-1:-1;;;;;;31713:51:0;-1:-1:-1;;;31713:51:0;;-1:-1:-1;31706:58:0;;31550:620;-1:-1:-1;32154:4:0;31378:799;;;;;;:::o;38582:988::-;38848:22;38898:1;38873:22;38890:4;38873:16;:22::i;:::-;:26;;;;:::i;:::-;38910:18;38931:26;;;:17;:26;;;;;;38848:51;;-1:-1:-1;39064:28:0;;;39060:328;;-1:-1:-1;;;;;39131:18:0;;39109:19;39131:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39182:30;;;;;;:44;;;39299:30;;:17;:30;;;;;:43;;;39060:328;-1:-1:-1;39484:26:0;;;;:17;:26;;;;;;;;39477:33;;;-1:-1:-1;;;;;39528:18:0;;;;;:12;:18;;;;;:34;;;;;;;39521:41;38582:988::o;39865:1079::-;40143:10;:17;40118:22;;40143:21;;40163:1;;40143:21;:::i;:::-;40175:18;40196:24;;;:15;:24;;;;;;40569:10;:26;;40118:46;;-1:-1:-1;40196:24:0;;40118:46;;40569:26;;;;;;:::i;:::-;;;;;;;;;40547:48;;40633:11;40608:10;40619;40608:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40713:28;;;:15;:28;;;;;;;:41;;;40885:24;;;;;40878:31;40920:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39936:1008;;;39865:1079;:::o;37369:221::-;37454:14;37471:20;37488:2;37471:16;:20::i;:::-;-1:-1:-1;;;;;37502:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37547:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37369:221:0:o;28635:382::-;-1:-1:-1;;;;;28715:16:0;;28707:61;;;;-1:-1:-1;;;28707:61:0;;22240:2:1;28707:61:0;;;22222:21:1;;;22259:18;;;22252:30;22318:34;22298:18;;;22291:62;22370:18;;28707:61:0;22038:356:1;28707:61:0;26722:4;26746:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26746:16:0;:30;28779:58;;;;-1:-1:-1;;;28779:58:0;;22601:2:1;28779:58:0;;;22583:21:1;22640:2;22620:18;;;22613:30;22679;22659:18;;;22652:58;22727:18;;28779:58:0;22399:352:1;28779:58:0;28850:45;28879:1;28883:2;28887:7;28850:20;:45::i;:::-;-1:-1:-1;;;;;28908:13:0;;;;;;:9;:13;;;;;:18;;28925:1;;28908:13;:18;;28925:1;;28908:18;:::i;:::-;;;;-1:-1:-1;;28937:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28937:21:0;-1:-1:-1;;;;;28937:21:0;;;;;;;;28976:33;;28937:16;;;28976:33;;28937:16;;28976:33;28635:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;757:180;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:1;;3229:632;-1:-1:-1;;;;;;3229:632:1:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:275;4069:2;4063:9;4134:2;4115:13;;-1:-1:-1;;4111:27:1;4099:40;;4169:18;4154:34;;4190:22;;;4151:62;4148:88;;;4216:18;;:::i;:::-;4252:2;4245:22;3998:275;;-1:-1:-1;3998:275:1:o;4278:407::-;4343:5;4377:18;4369:6;4366:30;4363:56;;;4399:18;;:::i;:::-;4437:57;4482:2;4461:15;;-1:-1:-1;;4457:29:1;4488:4;4453:40;4437:57;:::i;:::-;4428:66;;4517:6;4510:5;4503:21;4557:3;4548:6;4543:3;4539:16;4536:25;4533:45;;;4574:1;4571;4564:12;4533:45;4623:6;4618:3;4611:4;4604:5;4600:16;4587:43;4677:1;4670:4;4661:6;4654:5;4650:18;4646:29;4639:40;4278:407;;;;;:::o;4690:451::-;4759:6;4812:2;4800:9;4791:7;4787:23;4783:32;4780:52;;;4828:1;4825;4818:12;4780:52;4868:9;4855:23;4901:18;4893:6;4890:30;4887:50;;;4933:1;4930;4923:12;4887:50;4956:22;;5009:4;5001:13;;4997:27;-1:-1:-1;4987:55:1;;5038:1;5035;5028:12;4987:55;5061:74;5127:7;5122:2;5109:16;5104:2;5100;5096:11;5061:74;:::i;5146:254::-;5214:6;5222;5275:2;5263:9;5254:7;5250:23;5246:32;5243:52;;;5291:1;5288;5281:12;5243:52;5327:9;5314:23;5304:33;;5356:38;5390:2;5379:9;5375:18;5356:38;:::i;:::-;5346:48;;5146:254;;;;;:::o;5405:::-;5470:6;5478;5531:2;5519:9;5510:7;5506:23;5502:32;5499:52;;;5547:1;5544;5537:12;5499:52;5570:29;5589:9;5570:29;:::i;:::-;5560:39;;5618:35;5649:2;5638:9;5634:18;5618:35;:::i;5664:667::-;5759:6;5767;5775;5783;5836:3;5824:9;5815:7;5811:23;5807:33;5804:53;;;5853:1;5850;5843:12;5804:53;5876:29;5895:9;5876:29;:::i;:::-;5866:39;;5924:38;5958:2;5947:9;5943:18;5924:38;:::i;:::-;5914:48;;6009:2;5998:9;5994:18;5981:32;5971:42;;6064:2;6053:9;6049:18;6036:32;6091:18;6083:6;6080:30;6077:50;;;6123:1;6120;6113:12;6077:50;6146:22;;6199:4;6191:13;;6187:27;-1:-1:-1;6177:55:1;;6228:1;6225;6218:12;6177:55;6251:74;6317:7;6312:2;6299:16;6294:2;6290;6286:11;6251:74;:::i;:::-;6241:84;;;5664:667;;;;;;;:::o;6336:260::-;6404:6;6412;6465:2;6453:9;6444:7;6440:23;6436:32;6433:52;;;6481:1;6478;6471:12;6433:52;6504:29;6523:9;6504:29;:::i;:::-;6494:39;;6552:38;6586:2;6575:9;6571:18;6552:38;:::i;6601:952::-;6685:6;6716:2;6759;6747:9;6738:7;6734:23;6730:32;6727:52;;;6775:1;6772;6765:12;6727:52;6815:9;6802:23;6844:18;6885:2;6877:6;6874:14;6871:34;;;6901:1;6898;6891:12;6871:34;6939:6;6928:9;6924:22;6914:32;;6984:7;6977:4;6973:2;6969:13;6965:27;6955:55;;7006:1;7003;6996:12;6955:55;7042:2;7029:16;7064:2;7060;7057:10;7054:36;;;7070:18;;:::i;:::-;7116:2;7113:1;7109:10;7099:20;;7139:28;7163:2;7159;7155:11;7139:28;:::i;:::-;7201:15;;;7271:11;;;7267:20;;;7232:12;;;;7299:19;;;7296:39;;;7331:1;7328;7321:12;7296:39;7355:11;;;;7375:148;7391:6;7386:3;7383:15;7375:148;;;7457:23;7476:3;7457:23;:::i;:::-;7445:36;;7408:12;;;;7501;;;;7375:148;;;7542:5;6601:952;-1:-1:-1;;;;;;;;6601:952:1:o;7558:356::-;7760:2;7742:21;;;7779:18;;;7772:30;7838:34;7833:2;7818:18;;7811:62;7905:2;7890:18;;7558:356::o;7919:380::-;7998:1;7994:12;;;;8041;;;8062:61;;8116:4;8108:6;8104:17;8094:27;;8062:61;8169:2;8161:6;8158:14;8138:18;8135:38;8132:161;;8215:10;8210:3;8206:20;8203:1;8196:31;8250:4;8247:1;8240:15;8278:4;8275:1;8268:15;8132:161;;7919:380;;;:::o;9544:413::-;9746:2;9728:21;;;9785:2;9765:18;;;9758:30;9824:34;9819:2;9804:18;;9797:62;-1:-1:-1;;;9890:2:1;9875:18;;9868:47;9947:3;9932:19;;9544:413::o;10584:127::-;10645:10;10640:3;10636:20;10633:1;10626:31;10676:4;10673:1;10666:15;10700:4;10697:1;10690:15;10716:127;10777:10;10772:3;10768:20;10765:1;10758:31;10808:4;10805:1;10798:15;10832:4;10829:1;10822:15;10848:135;10887:3;10908:17;;;10905:43;;10928:18;;:::i;:::-;-1:-1:-1;10975:1:1;10964:13;;10848:135::o;12578:128::-;12618:3;12649:1;12645:6;12642:1;12639:13;12636:39;;;12655:18;;:::i;:::-;-1:-1:-1;12691:9:1;;12578:128::o;14662:1527::-;14886:3;14924:6;14918:13;14950:4;14963:51;15007:6;15002:3;14997:2;14989:6;14985:15;14963:51;:::i;:::-;15077:13;;15036:16;;;;15099:55;15077:13;15036:16;15121:15;;;15099:55;:::i;:::-;15243:13;;15176:20;;;15216:1;;15303;15325:18;;;;15378;;;;15405:93;;15483:4;15473:8;15469:19;15457:31;;15405:93;15546:2;15536:8;15533:16;15513:18;15510:40;15507:167;;-1:-1:-1;;;15573:33:1;;15629:4;15626:1;15619:15;15659:4;15580:3;15647:17;15507:167;15690:18;15717:110;;;;15841:1;15836:328;;;;15683:481;;15717:110;-1:-1:-1;;15752:24:1;;15738:39;;15797:20;;;;-1:-1:-1;15717:110:1;;15836:328;14609:1;14602:14;;;14646:4;14633:18;;15931:1;15945:169;15959:8;15956:1;15953:15;15945:169;;;16041:14;;16026:13;;;16019:37;16084:16;;;;15976:10;;15945:169;;;15949:3;;16145:8;16138:5;16134:20;16127:27;;15683:481;-1:-1:-1;16180:3:1;;14662:1527;-1:-1:-1;;;;;;;;;;;14662:1527:1:o;17829:125::-;17869:4;17897:1;17894;17891:8;17888:34;;;17902:18;;:::i;:::-;-1:-1:-1;17939:9:1;;17829:125::o;18316:168::-;18356:7;18422:1;18418;18414:6;18410:14;18407:1;18404:21;18399:1;18392:9;18385:17;18381:45;18378:71;;;18429:18;;:::i;:::-;-1:-1:-1;18469:9:1;;18316:168::o;18836:404::-;19038:2;19020:21;;;19077:2;19057:18;;;19050:30;19116:34;19111:2;19096:18;;19089:62;-1:-1:-1;;;19182:2:1;19167:18;;19160:38;19230:3;19215:19;;18836:404::o;20365:414::-;20567:2;20549:21;;;20606:2;20586:18;;;20579:30;20645:34;20640:2;20625:18;;20618:62;-1:-1:-1;;;20711:2:1;20696:18;;20689:48;20769:3;20754:19;;20365:414::o;20784:127::-;20845:10;20840:3;20836:20;20833:1;20826:31;20876:4;20873:1;20866:15;20900:4;20897:1;20890:15;20916:120;20956:1;20982;20972:35;;20987:18;;:::i;:::-;-1:-1:-1;21021:9:1;;20916:120::o;21041:112::-;21073:1;21099;21089:35;;21104:18;;:::i;:::-;-1:-1:-1;21138:9:1;;21041:112::o;21158:489::-;-1:-1:-1;;;;;21427:15:1;;;21409:34;;21479:15;;21474:2;21459:18;;21452:43;21526:2;21511:18;;21504:34;;;21574:3;21569:2;21554:18;;21547:31;;;21352:4;;21595:46;;21621:19;;21613:6;21595:46;:::i;:::-;21587:54;21158:489;-1:-1:-1;;;;;;21158:489:1:o;21652:249::-;21721:6;21774:2;21762:9;21753:7;21749:23;21745:32;21742:52;;;21790:1;21787;21780:12;21742:52;21822:9;21816:16;21841:30;21865:5;21841:30;:::i;21906:127::-;21967:10;21962:3;21958:20;21955:1;21948:31;21998:4;21995:1;21988:15;22022:4;22019:1;22012:15

Swarm Source

ipfs://a8a4b73a334877d195d798d75943f24c2447421d02a34693f5f134f46687be0d
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.