ETH Price: $3,117.29 (+0.44%)
Gas: 4 Gwei

Token

PhotoSapiens-Genesis (PSGEN)
 

Overview

Max Total Supply

249 PSGEN

Holders

239

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
arj.eth
Balance
1 PSGEN
0x2f1e8158a8d7bfc325de7682f72cd16ecaa96267
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:
PhotoSapiens

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/IPFSTool.sol

pragma solidity ^0.8.10;

library IPFSTool {
    bytes constant sha256MultiHash = hex"1220";
    bytes constant ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";

    /// @return The IPFS hash in base58
    function ipfsToString(bytes32 ipfs) public pure returns (string memory) {
        return toBase58(concat(sha256MultiHash, toBytes(ipfs)));
    }

    function toBase58(bytes memory source) internal pure returns (string memory) {
        uint8[] memory digits = new uint8[](48);
        digits[0] = 0;
        uint8 digitlength = 1;
        for (uint256 i = 0; i < source.length; ++i) {
            uint256 carry = uint8(source[i]);
            for (uint256 j = 0; j < digitlength; ++j) {
                carry += uint256(digits[j]) * 256;
                digits[j] = uint8(carry % 58);
                carry = carry / 58;
            }

            while (carry > 0) {
                digits[digitlength] = uint8(carry % 58);
                digitlength++;
                carry = carry / 58;
            }
        }
        return toAlphabet(reverse(truncate(digits, digitlength)));
    }

    function toBytes(bytes32 input) internal pure returns (bytes memory) {
        bytes memory output = new bytes(32);
        for (uint8 i = 0; i < 32; i++) {
            output[i] = input[i];
        }
        return output;
    }

    function truncate(uint8[] memory array, uint8 length) internal pure returns (uint8[] memory) {
        uint8[] memory output = new uint8[](length);
        for (uint256 i = 0; i < length; i++) {
            output[i] = array[i];
        }
        return output;
    }

    function reverse(uint8[] memory input) internal pure returns (uint8[] memory) {
        uint8[] memory output = new uint8[](input.length);
        for (uint256 i = 0; i < input.length; i++) {
            output[i] = input[input.length - 1 - i];
        }
        return output;
    }

    function toAlphabet(uint8[] memory indices) internal pure returns (string memory) {
        string memory output = "";
        for (uint256 i = 0; i < indices.length; i++) {
            string memory temp = string(abi.encodePacked(output, ALPHABET[indices[i]]));
            output = temp;
        }
        return output;
    }

    function concat(bytes memory byteArray, bytes memory byteArray2) internal pure returns (bytes memory) {
        bytes memory returnArray = new bytes(byteArray.length + byteArray2.length);
        uint256 i = 0;
        for (i; i < byteArray.length; i++) {
            returnArray[i] = byteArray[i];
        }
        for (i; i < (byteArray.length + byteArray2.length); i++) {
            returnArray[i] = byteArray2[i - byteArray.length];
        }
        return returnArray;
    }
}

// File: contracts/PhotoSapiens.sol

pragma solidity ^0.8.10;




contract PhotoSapiens is ERC721Enumerable, Ownable {
    struct ECDSASignature {
        bytes32 r;
        bytes32 s;
        uint8 v;
    }

    uint256 private constant _price = 0.1 ether;

    function getPrice() external pure returns (uint256) {
        return _price;
    }

    uint32 private immutable _launchDate;
    uint32 private _whitelistTime; // (in seconds since epoch)

    address private immutable _whitelistSignerAddress;
    address private immutable _backendSignerAddress;
    address private _adminAddress;
    address private immutable _treasuryAddress;

    constructor(
        uint32 launchDate,
        uint32 whitelistTimeHours, // NOTE: in hours
        address adminAddress,
        address treasuryAddress,
        address whitelistSignerAddress,
        address backendSignerAddress
    ) ERC721("PhotoSapiens-Genesis", "PSGEN") {
        _launchDate = launchDate;
        _whitelistTime = (whitelistTimeHours * 1 hours);
        _adminAddress = adminAddress;
        _treasuryAddress = treasuryAddress;
        _whitelistSignerAddress = whitelistSignerAddress;
        _backendSignerAddress = backendSignerAddress;
    }

    function mint(
        address to,
        bytes32 ipfsHash,
        ECDSASignature memory tokenSignature,
        ECDSASignature memory whitelistSignature
    ) external payable {
        require(msg.value == _price, "incorrect amount paid");
        require(totalSupply() < 10000, "supply cap exceeded");
        require(_launchDate <= block.timestamp, "pre-launch");

        if (block.timestamp <= _launchDate + _whitelistTime) {
            require(balanceOf(to) == 0, "already minted a token for address");
            bytes32 whitelistHash = keccak256(abi.encode("photosapiens-whitelist", to));
            require(ecrecover(whitelistHash, whitelistSignature.v, whitelistSignature.r, whitelistSignature.s) == _whitelistSignerAddress, "not whitelisted");
        }

        bytes32 tokenHash = keccak256(abi.encode(to, ipfsHash));
        address signer = ecrecover(tokenHash, tokenSignature.v, tokenSignature.r, tokenSignature.s);
        require(signer == _backendSignerAddress, "signature does not match");
        ERC721._safeMint(to, uint256(ipfsHash));
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721) {
        require(_launchDate + _whitelistTime < block.timestamp, "cannot transfer during whitelist period");
        ERC721._transfer(from, to, tokenId);
    }

    function _baseURI() internal pure override returns (string memory) {
        // point to ipfs hash
        return "ipfs://";
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "token does not exist");
        string memory baseURI = _baseURI();
        string memory ipfsHash = IPFSTool.ipfsToString(bytes32(tokenId));
        return string(abi.encodePacked(baseURI, ipfsHash));
    }

    // -----------------------------------------------------------------------//
    // 🛑 ADMIN ZONE                                                          //
    // -----------------------------------------------------------------------//

    modifier onlyAdmin() {
        require(msg.sender == _adminAddress);
        _;
    }

    // Sets the admin address to the given (non-0x00) address.
    function setAdmin(address newAdminAddress) external onlyAdmin {
        require(newAdminAddress != address(0));
        _adminAddress = newAdminAddress;
    }

    // setWhitelistTime changes the whitelist period to the given time (in hours).
    function setWhitelistTime(uint32 newWhitelistTime) external onlyAdmin {
        _whitelistTime = (newWhitelistTime * 1 hours);
    }

    // getWhitelistPeriod returns the start and end of the whitelist period in seconds since epoch.
    function getWhitelistPeriod() external view returns (uint32, uint32) {
        return (_launchDate, _launchDate + _whitelistTime);
    }

    // transferBalance transfers the given amount to the treasury address.
    function transferBalance(uint256 amount) external onlyAdmin {
        require(amount <= address(this).balance);
        address payable receiver = payable(_treasuryAddress);
        receiver.transfer(amount);
    }
}

// File: contracts/Migrations.sol

pragma solidity ^0.8.10;

contract Migrations {
    address public owner = msg.sender;
    uint256 public last_completed_migration;

    modifier restricted() {
        require(msg.sender == owner, "This function is restricted to the contract's owner");
        _;
    }

    function setCompleted(uint256 completed) public restricted {
        last_completed_migration = completed;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint32","name":"launchDate","type":"uint32"},{"internalType":"uint32","name":"whitelistTimeHours","type":"uint32"},{"internalType":"address","name":"adminAddress","type":"address"},{"internalType":"address","name":"treasuryAddress","type":"address"},{"internalType":"address","name":"whitelistSignerAddress","type":"address"},{"internalType":"address","name":"backendSignerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getWhitelistPeriod","outputs":[{"internalType":"uint32","name":"","type":"uint32"},{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32","name":"ipfsHash","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct PhotoSapiens.ECDSASignature","name":"tokenSignature","type":"tuple"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct PhotoSapiens.ECDSASignature","name":"whitelistSignature","type":"tuple"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdminAddress","type":"address"}],"name":"setAdmin","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":"uint32","name":"newWhitelistTime","type":"uint32"}],"name":"setWhitelistTime","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":"uint256","name":"amount","type":"uint256"}],"name":"transferBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040523480156200001257600080fd5b50604051620026633803806200266383398101604081905262000035916200026a565b604080518082018252601481527f50686f746f53617069656e732d47656e657369730000000000000000000000006020808301918252835180850190945260058452642829a3a2a760d91b908401528151919291620000979160009162000192565b508051620000ad90600190602084019062000192565b505050620000ca620000c46200013c60201b60201c565b62000140565b63ffffffff8616608052620000e285610e10620002eb565b600a805463ffffffff60a01b1916600160a01b63ffffffff9390931692909202919091179055600b80546001600160a01b0319166001600160a01b0395861617905591831660e052821660a0521660c05250620003639050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a09062000326565b90600052602060002090601f016020900481019282620001c457600085556200020f565b82601f10620001df57805160ff19168380011785556200020f565b828001600101855582156200020f579182015b828111156200020f578251825591602001919060010190620001f2565b506200021d92915062000221565b5090565b5b808211156200021d576000815560010162000222565b805163ffffffff811681146200024d57600080fd5b919050565b80516001600160a01b03811681146200024d57600080fd5b60008060008060008060c087890312156200028457600080fd5b6200028f8762000238565b95506200029f6020880162000238565b9450620002af6040880162000252565b9350620002bf6060880162000252565b9250620002cf6080880162000252565b9150620002df60a0880162000252565b90509295509295509295565b600063ffffffff808316818516818304811182151516156200031d57634e487b7160e01b600052601160045260246000fd5b02949350505050565b600181811c908216806200033b57607f821691505b602082108114156200035d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516122b1620003b26000396000610eaa01526000610afc015260006109ae01526000818161080b015281816108810152818161119d01526113a901526122b16000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610411578063e985e9c514610431578063f2fde38b1461047a578063f946f49f1461049a57600080fd5b8063a22cb465146103b1578063b88d4fde146103d1578063c855e4dc146103f157600080fd5b806370a082311461030e578063715018a61461032e5780638a60c4c1146103435780638da5cb5b1461036357806395d89b411461038157806398d5fdca1461039657600080fd5b80632e2fdf83116101235780632e2fdf831461025b5780632f745c591461026e57806342842e0e1461028e5780634f6ccce7146102ae5780636352211e146102ce578063704b6c02146102ee57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b610186366004611c31565b6104cc565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104f7565b6040516101979190611cad565b3480156101ce57600080fd5b506101e26101dd366004611cc0565b610589565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611cf5565b610623565b005b34801561022857600080fd5b506008545b604051908152602001610197565b34801561024757600080fd5b5061021a610256366004611d1f565b610739565b61021a610269366004611e0e565b61076a565b34801561027a57600080fd5b5061022d610289366004611cf5565b610b8d565b34801561029a57600080fd5b5061021a6102a9366004611d1f565b610c23565b3480156102ba57600080fd5b5061022d6102c9366004611cc0565b610c3e565b3480156102da57600080fd5b506101e26102e9366004611cc0565b610cd1565b3480156102fa57600080fd5b5061021a610309366004611e5e565b610d48565b34801561031a57600080fd5b5061022d610329366004611e5e565b610d94565b34801561033a57600080fd5b5061021a610e1b565b34801561034f57600080fd5b5061021a61035e366004611cc0565b610e81565b34801561036f57600080fd5b50600a546001600160a01b03166101e2565b34801561038d57600080fd5b506101b5610efd565b3480156103a257600080fd5b5067016345785d8a000061022d565b3480156103bd57600080fd5b5061021a6103cc366004611e79565b610f0c565b3480156103dd57600080fd5b5061021a6103ec366004611edd565b610f1b565b3480156103fd57600080fd5b5061021a61040c366004611f88565b610f53565b34801561041d57600080fd5b506101b561042c366004611cc0565b610f99565b34801561043d57600080fd5b5061018b61044c366004611fae565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561048657600080fd5b5061021a610495366004611e5e565b6110c8565b3480156104a657600080fd5b506104af611193565b6040805163ffffffff938416815292909116602083015201610197565b60006001600160e01b0319821663780e9d6360e01b14806104f157506104f1826111dc565b92915050565b60606000805461050690611fe1565b80601f016020809104026020016040519081016040528092919081815260200182805461053290611fe1565b801561057f5780601f106105545761010080835404028352916020019161057f565b820191906000526020600020905b81548152906001019060200180831161056257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062e82610cd1565b9050806001600160a01b0316836001600160a01b0316141561069c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105fe565b336001600160a01b03821614806106b857506106b8813361044c565b61072a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105fe565b610734838361122c565b505050565b610743338261129a565b61075f5760405162461bcd60e51b81526004016105fe9061201c565b610734838383611391565b67016345785d8a000034146107b95760405162461bcd60e51b81526020600482015260156024820152741a5b98dbdc9c9958dd08185b5bdd5b9d081c185a59605a1b60448201526064016105fe565b6127106107c560085490565b106108085760405162461bcd60e51b81526020600482015260136024820152721cdd5c1c1b1e4818d85c08195e18d959591959606a1b60448201526064016105fe565b427f000000000000000000000000000000000000000000000000000000000000000063ffffffff16111561086b5760405162461bcd60e51b815260206004820152600a6024820152690e0e4ca5ad8c2eadcc6d60b31b60448201526064016105fe565b600a546108a590600160a01b900463ffffffff167f0000000000000000000000000000000000000000000000000000000000000000612083565b63ffffffff164211610a4b576108ba84610d94565b156109125760405162461bcd60e51b815260206004820152602260248201527f616c7265616479206d696e746564206120746f6b656e20666f72206164647265604482015261737360f01b60648201526084016105fe565b604080516020810182905260166060820152751c1a1bdd1bdcd85c1a595b9ccb5dda1a5d195b1a5cdd60521b60808201526001600160a01b0386169181019190915260009060a00160408051601f198184030181528282528051602091820120858301518651878401516000875293860180865283905260ff909116938501939093526060840192909252608083015291506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169060019060a0016020604051602081039080840390855afa1580156109f7573d6000803e3d6000fd5b505050602060405103516001600160a01b031614610a495760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016105fe565b505b604080516001600160a01b0386166020820152908101849052600090606001604051602081830303815290604052805190602001209050600060018285604001518660000151876020015160405160008152602001604052604051610acc949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa158015610aee573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614610b7b5760405162461bcd60e51b815260206004820152601860248201527f7369676e617475726520646f6573206e6f74206d61746368000000000000000060448201526064016105fe565b610b85868661143b565b505050505050565b6000610b9883610d94565b8210610bfa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105fe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61073483838360405180602001604052806000815250610f1b565b6000610c4960085490565b8210610cac5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105fe565b60088281548110610cbf57610cbf6120ab565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105fe565b600b546001600160a01b03163314610d5f57600080fd5b6001600160a01b038116610d7257600080fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610dff5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105fe565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fe565b610e7f6000611455565b565b600b546001600160a01b03163314610e9857600080fd5b47811115610ea557600080fd5b6040517f0000000000000000000000000000000000000000000000000000000000000000906001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610734573d6000803e3d6000fd5b60606001805461050690611fe1565b610f173383836114a7565b5050565b610f25338361129a565b610f415760405162461bcd60e51b81526004016105fe9061201c565b610f4d84848484611576565b50505050565b600b546001600160a01b03163314610f6a57600080fd5b610f7681610e106120c1565b600a60146101000a81548163ffffffff021916908363ffffffff16021790555050565b6000818152600260205260409020546060906001600160a01b0316610ff75760405162461bcd60e51b81526020600482015260146024820152731d1bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016105fe565b600061101d604080518082019091526007815266697066733a2f2f60c81b602082015290565b604051630a81aeff60e01b81526004810185905290915060009073324e496a7c71bd76193ae741fd4c910a0d76182990630a81aeff90602401600060405180830381865af4158015611073573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261109b91908101906120ed565b905081816040516020016110b0929190612164565b60405160208183030381529060405292505050919050565b600a546001600160a01b031633146111225760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fe565b6001600160a01b0381166111875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b61119081611455565b50565b600a5460009081907f0000000000000000000000000000000000000000000000000000000000000000906111d490600160a01b900463ffffffff1682612083565b915091509091565b60006001600160e01b031982166380ac58cd60e01b148061120d57506001600160e01b03198216635b5e139f60e01b145b806104f157506301ffc9a760e01b6001600160e01b03198316146104f1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126182610cd1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b600061131e83610cd1565b9050806001600160a01b0316846001600160a01b031614806113595750836001600160a01b031661134e84610589565b6001600160a01b0316145b8061138957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b600a5442906113cd90600160a01b900463ffffffff167f0000000000000000000000000000000000000000000000000000000000000000612083565b63ffffffff16106114305760405162461bcd60e51b815260206004820152602760248201527f63616e6e6f74207472616e7366657220647572696e672077686974656c697374604482015266081c195c9a5bd960ca1b60648201526084016105fe565b6107348383836115a9565b610f17828260405180602001604052806000815250611754565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115095760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611581848484611391565b61158d84848484611787565b610f4d5760405162461bcd60e51b81526004016105fe9061218a565b826001600160a01b03166115bc82610cd1565b6001600160a01b0316146116245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105fe565b6001600160a01b0382166116865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b611691838383611885565b61169c60008261122c565b6001600160a01b03831660009081526003602052604081208054600192906116c59084906121dc565b90915550506001600160a01b03821660009081526003602052604081208054600192906116f39084906121f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61175e838361193d565b61176b6000848484611787565b6107345760405162461bcd60e51b81526004016105fe9061218a565b60006001600160a01b0384163b1561187a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117cb90339089908890889060040161220b565b6020604051808303816000875af1925050508015611806575060408051601f3d908101601f1916820190925261180391810190612248565b60015b611860573d808015611834576040519150601f19603f3d011682016040523d82523d6000602084013e611839565b606091505b5080516118585760405162461bcd60e51b81526004016105fe9061218a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611389565b506001949350505050565b6001600160a01b0383166118e0576118db81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611903565b816001600160a01b0316836001600160a01b031614611903576119038382611a8b565b6001600160a01b03821661191a5761073481611b28565b826001600160a01b0316826001600160a01b031614610734576107348282611bd7565b6001600160a01b0382166119935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fe565b6000818152600260205260409020546001600160a01b0316156119f85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fe565b611a0460008383611885565b6001600160a01b0382166000908152600360205260408120805460019290611a2d9084906121f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611a9884610d94565b611aa291906121dc565b600083815260076020526040902054909150808214611af5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b3a906001906121dc565b60008381526009602052604081205460088054939450909284908110611b6257611b626120ab565b906000526020600020015490508060088381548110611b8357611b836120ab565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bbb57611bbb612265565b6001900381819060005260206000200160009055905550505050565b6000611be283610d94565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b03198116811461119057600080fd5b600060208284031215611c4357600080fd5b8135611c4e81611c1b565b9392505050565b60005b83811015611c70578181015183820152602001611c58565b83811115610f4d5750506000910152565b60008151808452611c99816020860160208601611c55565b601f01601f19169290920160200192915050565b602081526000611c4e6020830184611c81565b600060208284031215611cd257600080fd5b5035919050565b80356001600160a01b0381168114611cf057600080fd5b919050565b60008060408385031215611d0857600080fd5b611d1183611cd9565b946020939093013593505050565b600080600060608486031215611d3457600080fd5b611d3d84611cd9565b9250611d4b60208501611cd9565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d9a57611d9a611d5b565b604052919050565b600060608284031215611db457600080fd5b6040516060810181811067ffffffffffffffff82111715611dd757611dd7611d5b565b80604052508091508235815260208301356020820152604083013560ff81168114611e0157600080fd5b6040919091015292915050565b6000806000806101008587031215611e2557600080fd5b611e2e85611cd9565b935060208501359250611e448660408701611da2565b9150611e538660a08701611da2565b905092959194509250565b600060208284031215611e7057600080fd5b611c4e82611cd9565b60008060408385031215611e8c57600080fd5b611e9583611cd9565b915060208301358015158114611eaa57600080fd5b809150509250929050565b600067ffffffffffffffff821115611ecf57611ecf611d5b565b50601f01601f191660200190565b60008060008060808587031215611ef357600080fd5b611efc85611cd9565b9350611f0a60208601611cd9565b925060408501359150606085013567ffffffffffffffff811115611f2d57600080fd5b8501601f81018713611f3e57600080fd5b8035611f51611f4c82611eb5565b611d71565b818152886020838501011115611f6657600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600060208284031215611f9a57600080fd5b813563ffffffff81168114611c4e57600080fd5b60008060408385031215611fc157600080fd5b611fca83611cd9565b9150611fd860208401611cd9565b90509250929050565b600181811c90821680611ff557607f821691505b6020821081141561201657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff8083168185168083038211156120a2576120a261206d565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff808316818516818304811182151516156120e4576120e461206d565b02949350505050565b6000602082840312156120ff57600080fd5b815167ffffffffffffffff81111561211657600080fd5b8201601f8101841361212757600080fd5b8051612135611f4c82611eb5565b81815285602083850101111561214a57600080fd5b61215b826020830160208601611c55565b95945050505050565b60008351612176818460208801611c55565b8351908301906120a2818360208801611c55565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000828210156121ee576121ee61206d565b500390565b600082198211156122065761220661206d565b500190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061223e90830184611c81565b9695505050505050565b60006020828403121561225a57600080fd5b8151611c4e81611c1b565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220bb0048e6d2a3adb778222878ae1a7bd1cbc70849b33b68c4742867ddb911895664736f6c634300080a00330000000000000000000000000000000000000000000000000000000061fe3c9000000000000000000000000000000000000000000000000000000000000000180000000000000000000000003483f57cfb0984f7fce75f9b245fb32c8a28ccfc000000000000000000000000ab45cd0a65f43af45716f704a9ec53fce43efce700000000000000000000000034463b15108b651188277b9d0a6cda6f71d8fd1100000000000000000000000038a86d721459d35109c0cad45e2fa0f227d2f632

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610411578063e985e9c514610431578063f2fde38b1461047a578063f946f49f1461049a57600080fd5b8063a22cb465146103b1578063b88d4fde146103d1578063c855e4dc146103f157600080fd5b806370a082311461030e578063715018a61461032e5780638a60c4c1146103435780638da5cb5b1461036357806395d89b411461038157806398d5fdca1461039657600080fd5b80632e2fdf83116101235780632e2fdf831461025b5780632f745c591461026e57806342842e0e1461028e5780634f6ccce7146102ae5780636352211e146102ce578063704b6c02146102ee57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b610186366004611c31565b6104cc565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104f7565b6040516101979190611cad565b3480156101ce57600080fd5b506101e26101dd366004611cc0565b610589565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611cf5565b610623565b005b34801561022857600080fd5b506008545b604051908152602001610197565b34801561024757600080fd5b5061021a610256366004611d1f565b610739565b61021a610269366004611e0e565b61076a565b34801561027a57600080fd5b5061022d610289366004611cf5565b610b8d565b34801561029a57600080fd5b5061021a6102a9366004611d1f565b610c23565b3480156102ba57600080fd5b5061022d6102c9366004611cc0565b610c3e565b3480156102da57600080fd5b506101e26102e9366004611cc0565b610cd1565b3480156102fa57600080fd5b5061021a610309366004611e5e565b610d48565b34801561031a57600080fd5b5061022d610329366004611e5e565b610d94565b34801561033a57600080fd5b5061021a610e1b565b34801561034f57600080fd5b5061021a61035e366004611cc0565b610e81565b34801561036f57600080fd5b50600a546001600160a01b03166101e2565b34801561038d57600080fd5b506101b5610efd565b3480156103a257600080fd5b5067016345785d8a000061022d565b3480156103bd57600080fd5b5061021a6103cc366004611e79565b610f0c565b3480156103dd57600080fd5b5061021a6103ec366004611edd565b610f1b565b3480156103fd57600080fd5b5061021a61040c366004611f88565b610f53565b34801561041d57600080fd5b506101b561042c366004611cc0565b610f99565b34801561043d57600080fd5b5061018b61044c366004611fae565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561048657600080fd5b5061021a610495366004611e5e565b6110c8565b3480156104a657600080fd5b506104af611193565b6040805163ffffffff938416815292909116602083015201610197565b60006001600160e01b0319821663780e9d6360e01b14806104f157506104f1826111dc565b92915050565b60606000805461050690611fe1565b80601f016020809104026020016040519081016040528092919081815260200182805461053290611fe1565b801561057f5780601f106105545761010080835404028352916020019161057f565b820191906000526020600020905b81548152906001019060200180831161056257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062e82610cd1565b9050806001600160a01b0316836001600160a01b0316141561069c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105fe565b336001600160a01b03821614806106b857506106b8813361044c565b61072a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105fe565b610734838361122c565b505050565b610743338261129a565b61075f5760405162461bcd60e51b81526004016105fe9061201c565b610734838383611391565b67016345785d8a000034146107b95760405162461bcd60e51b81526020600482015260156024820152741a5b98dbdc9c9958dd08185b5bdd5b9d081c185a59605a1b60448201526064016105fe565b6127106107c560085490565b106108085760405162461bcd60e51b81526020600482015260136024820152721cdd5c1c1b1e4818d85c08195e18d959591959606a1b60448201526064016105fe565b427f0000000000000000000000000000000000000000000000000000000061fe3c9063ffffffff16111561086b5760405162461bcd60e51b815260206004820152600a6024820152690e0e4ca5ad8c2eadcc6d60b31b60448201526064016105fe565b600a546108a590600160a01b900463ffffffff167f0000000000000000000000000000000000000000000000000000000061fe3c90612083565b63ffffffff164211610a4b576108ba84610d94565b156109125760405162461bcd60e51b815260206004820152602260248201527f616c7265616479206d696e746564206120746f6b656e20666f72206164647265604482015261737360f01b60648201526084016105fe565b604080516020810182905260166060820152751c1a1bdd1bdcd85c1a595b9ccb5dda1a5d195b1a5cdd60521b60808201526001600160a01b0386169181019190915260009060a00160408051601f198184030181528282528051602091820120858301518651878401516000875293860180865283905260ff909116938501939093526060840192909252608083015291506001600160a01b037f00000000000000000000000034463b15108b651188277b9d0a6cda6f71d8fd11169060019060a0016020604051602081039080840390855afa1580156109f7573d6000803e3d6000fd5b505050602060405103516001600160a01b031614610a495760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016105fe565b505b604080516001600160a01b0386166020820152908101849052600090606001604051602081830303815290604052805190602001209050600060018285604001518660000151876020015160405160008152602001604052604051610acc949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa158015610aee573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000038a86d721459d35109c0cad45e2fa0f227d2f6326001600160a01b0316816001600160a01b031614610b7b5760405162461bcd60e51b815260206004820152601860248201527f7369676e617475726520646f6573206e6f74206d61746368000000000000000060448201526064016105fe565b610b85868661143b565b505050505050565b6000610b9883610d94565b8210610bfa5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105fe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61073483838360405180602001604052806000815250610f1b565b6000610c4960085490565b8210610cac5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105fe565b60088281548110610cbf57610cbf6120ab565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105fe565b600b546001600160a01b03163314610d5f57600080fd5b6001600160a01b038116610d7257600080fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610dff5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105fe565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fe565b610e7f6000611455565b565b600b546001600160a01b03163314610e9857600080fd5b47811115610ea557600080fd5b6040517f000000000000000000000000ab45cd0a65f43af45716f704a9ec53fce43efce7906001600160a01b0382169083156108fc029084906000818181858888f19350505050158015610734573d6000803e3d6000fd5b60606001805461050690611fe1565b610f173383836114a7565b5050565b610f25338361129a565b610f415760405162461bcd60e51b81526004016105fe9061201c565b610f4d84848484611576565b50505050565b600b546001600160a01b03163314610f6a57600080fd5b610f7681610e106120c1565b600a60146101000a81548163ffffffff021916908363ffffffff16021790555050565b6000818152600260205260409020546060906001600160a01b0316610ff75760405162461bcd60e51b81526020600482015260146024820152731d1bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016105fe565b600061101d604080518082019091526007815266697066733a2f2f60c81b602082015290565b604051630a81aeff60e01b81526004810185905290915060009073324e496a7c71bd76193ae741fd4c910a0d76182990630a81aeff90602401600060405180830381865af4158015611073573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261109b91908101906120ed565b905081816040516020016110b0929190612164565b60405160208183030381529060405292505050919050565b600a546001600160a01b031633146111225760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105fe565b6001600160a01b0381166111875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b61119081611455565b50565b600a5460009081907f0000000000000000000000000000000000000000000000000000000061fe3c90906111d490600160a01b900463ffffffff1682612083565b915091509091565b60006001600160e01b031982166380ac58cd60e01b148061120d57506001600160e01b03198216635b5e139f60e01b145b806104f157506301ffc9a760e01b6001600160e01b03198316146104f1565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126182610cd1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b600061131e83610cd1565b9050806001600160a01b0316846001600160a01b031614806113595750836001600160a01b031661134e84610589565b6001600160a01b0316145b8061138957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b600a5442906113cd90600160a01b900463ffffffff167f0000000000000000000000000000000000000000000000000000000061fe3c90612083565b63ffffffff16106114305760405162461bcd60e51b815260206004820152602760248201527f63616e6e6f74207472616e7366657220647572696e672077686974656c697374604482015266081c195c9a5bd960ca1b60648201526084016105fe565b6107348383836115a9565b610f17828260405180602001604052806000815250611754565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115095760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611581848484611391565b61158d84848484611787565b610f4d5760405162461bcd60e51b81526004016105fe9061218a565b826001600160a01b03166115bc82610cd1565b6001600160a01b0316146116245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105fe565b6001600160a01b0382166116865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b611691838383611885565b61169c60008261122c565b6001600160a01b03831660009081526003602052604081208054600192906116c59084906121dc565b90915550506001600160a01b03821660009081526003602052604081208054600192906116f39084906121f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61175e838361193d565b61176b6000848484611787565b6107345760405162461bcd60e51b81526004016105fe9061218a565b60006001600160a01b0384163b1561187a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117cb90339089908890889060040161220b565b6020604051808303816000875af1925050508015611806575060408051601f3d908101601f1916820190925261180391810190612248565b60015b611860573d808015611834576040519150601f19603f3d011682016040523d82523d6000602084013e611839565b606091505b5080516118585760405162461bcd60e51b81526004016105fe9061218a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611389565b506001949350505050565b6001600160a01b0383166118e0576118db81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611903565b816001600160a01b0316836001600160a01b031614611903576119038382611a8b565b6001600160a01b03821661191a5761073481611b28565b826001600160a01b0316826001600160a01b031614610734576107348282611bd7565b6001600160a01b0382166119935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fe565b6000818152600260205260409020546001600160a01b0316156119f85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fe565b611a0460008383611885565b6001600160a01b0382166000908152600360205260408120805460019290611a2d9084906121f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611a9884610d94565b611aa291906121dc565b600083815260076020526040902054909150808214611af5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b3a906001906121dc565b60008381526009602052604081205460088054939450909284908110611b6257611b626120ab565b906000526020600020015490508060088381548110611b8357611b836120ab565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bbb57611bbb612265565b6001900381819060005260206000200160009055905550505050565b6000611be283610d94565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b03198116811461119057600080fd5b600060208284031215611c4357600080fd5b8135611c4e81611c1b565b9392505050565b60005b83811015611c70578181015183820152602001611c58565b83811115610f4d5750506000910152565b60008151808452611c99816020860160208601611c55565b601f01601f19169290920160200192915050565b602081526000611c4e6020830184611c81565b600060208284031215611cd257600080fd5b5035919050565b80356001600160a01b0381168114611cf057600080fd5b919050565b60008060408385031215611d0857600080fd5b611d1183611cd9565b946020939093013593505050565b600080600060608486031215611d3457600080fd5b611d3d84611cd9565b9250611d4b60208501611cd9565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d9a57611d9a611d5b565b604052919050565b600060608284031215611db457600080fd5b6040516060810181811067ffffffffffffffff82111715611dd757611dd7611d5b565b80604052508091508235815260208301356020820152604083013560ff81168114611e0157600080fd5b6040919091015292915050565b6000806000806101008587031215611e2557600080fd5b611e2e85611cd9565b935060208501359250611e448660408701611da2565b9150611e538660a08701611da2565b905092959194509250565b600060208284031215611e7057600080fd5b611c4e82611cd9565b60008060408385031215611e8c57600080fd5b611e9583611cd9565b915060208301358015158114611eaa57600080fd5b809150509250929050565b600067ffffffffffffffff821115611ecf57611ecf611d5b565b50601f01601f191660200190565b60008060008060808587031215611ef357600080fd5b611efc85611cd9565b9350611f0a60208601611cd9565b925060408501359150606085013567ffffffffffffffff811115611f2d57600080fd5b8501601f81018713611f3e57600080fd5b8035611f51611f4c82611eb5565b611d71565b818152886020838501011115611f6657600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b600060208284031215611f9a57600080fd5b813563ffffffff81168114611c4e57600080fd5b60008060408385031215611fc157600080fd5b611fca83611cd9565b9150611fd860208401611cd9565b90509250929050565b600181811c90821680611ff557607f821691505b6020821081141561201657634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff8083168185168083038211156120a2576120a261206d565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff808316818516818304811182151516156120e4576120e461206d565b02949350505050565b6000602082840312156120ff57600080fd5b815167ffffffffffffffff81111561211657600080fd5b8201601f8101841361212757600080fd5b8051612135611f4c82611eb5565b81815285602083850101111561214a57600080fd5b61215b826020830160208601611c55565b95945050505050565b60008351612176818460208801611c55565b8351908301906120a2818360208801611c55565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000828210156121ee576121ee61206d565b500390565b600082198211156122065761220661206d565b500190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061223e90830184611c81565b9695505050505050565b60006020828403121561225a57600080fd5b8151611c4e81611c1b565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220bb0048e6d2a3adb778222878ae1a7bd1cbc70849b33b68c4742867ddb911895664736f6c634300080a0033

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

0000000000000000000000000000000000000000000000000000000061fe3c9000000000000000000000000000000000000000000000000000000000000000180000000000000000000000003483f57cfb0984f7fce75f9b245fb32c8a28ccfc000000000000000000000000ab45cd0a65f43af45716f704a9ec53fce43efce700000000000000000000000034463b15108b651188277b9d0a6cda6f71d8fd1100000000000000000000000038a86d721459d35109c0cad45e2fa0f227d2f632

-----Decoded View---------------
Arg [0] : launchDate (uint32): 1644051600
Arg [1] : whitelistTimeHours (uint32): 24
Arg [2] : adminAddress (address): 0x3483F57cFB0984F7fcE75F9b245FB32c8A28CCfC
Arg [3] : treasuryAddress (address): 0xaB45Cd0a65F43Af45716F704A9Ec53fCE43EFCE7
Arg [4] : whitelistSignerAddress (address): 0x34463B15108b651188277B9d0a6cdA6F71d8fd11
Arg [5] : backendSignerAddress (address): 0x38a86d721459d35109c0CAd45E2Fa0F227d2F632

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000061fe3c90
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [2] : 0000000000000000000000003483f57cfb0984f7fce75f9b245fb32c8a28ccfc
Arg [3] : 000000000000000000000000ab45cd0a65f43af45716f704a9ec53fce43efce7
Arg [4] : 00000000000000000000000034463b15108b651188277b9d0a6cda6f71d8fd11
Arg [5] : 00000000000000000000000038a86d721459d35109c0cad45e2fa0f227d2f632


Deployed Bytecode Sourcemap

47351:4415:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35747:224;;;;;;;;;;-1:-1:-1;35747:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35747:224:0;;;;;;;;22172:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23731:221::-;;;;;;;;;;-1:-1:-1;23731:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23731:221:0;1528:203:1;23254:411:0;;;;;;;;;;-1:-1:-1;23254:411:0;;;;;:::i;:::-;;:::i;:::-;;36387:113;;;;;;;;;;-1:-1:-1;36475:10:0;:17;36387:113;;;2319:25:1;;;2307:2;2292:18;36387:113:0;2173:177:1;24481:339:0;;;;;;;;;;-1:-1:-1;24481:339:0;;;;;:::i;:::-;;:::i;48548:1090::-;;;;;;:::i;:::-;;:::i;36055:256::-;;;;;;;;;;-1:-1:-1;36055:256:0;;;;;:::i;:::-;;:::i;24891:185::-;;;;;;;;;;-1:-1:-1;24891:185:0;;;;;:::i;:::-;;:::i;36577:233::-;;;;;;;;;;-1:-1:-1;36577:233:0;;;;;:::i;:::-;;:::i;21866:239::-;;;;;;;;;;-1:-1:-1;21866:239:0;;;;;:::i;:::-;;:::i;50827:161::-;;;;;;;;;;-1:-1:-1;50827:161:0;;;;;:::i;:::-;;:::i;21596:208::-;;;;;;;;;;-1:-1:-1;21596:208:0;;;;;:::i;:::-;;:::i;43606:103::-;;;;;;;;;;;;;:::i;51545:218::-;;;;;;;;;;-1:-1:-1;51545:218:0;;;;;:::i;:::-;;:::i;42955:87::-;;;;;;;;;;-1:-1:-1;43028:6:0;;-1:-1:-1;;;;;43028:6:0;42955:87;;22341:104;;;;;;;;;;;;;:::i;47557:84::-;;;;;;;;;;-1:-1:-1;47539:9:0;47557:84;;24024:155;;;;;;;;;;-1:-1:-1;24024:155:0;;;;;:::i;:::-;;:::i;25147:328::-;;;;;;;;;;-1:-1:-1;25147:328:0;;;;;:::i;:::-;;:::i;51080:134::-;;;;;;;;;;-1:-1:-1;51080:134:0;;;;;:::i;:::-;;:::i;50080:329::-;;;;;;;;;;-1:-1:-1;50080:329:0;;;;;:::i;:::-;;:::i;24250:164::-;;;;;;;;;;-1:-1:-1;24250:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24371:25:0;;;24347:4;24371:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24250:164;43864:201;;;;;;;;;;-1:-1:-1;43864:201:0;;;;;:::i;:::-;;:::i;51323:138::-;;;;;;;;;;;;;:::i;:::-;;;;6621:10:1;6658:15;;;6640:34;;6710:15;;;;6705:2;6690:18;;6683:43;6584:18;51323:138:0;6441:291:1;35747:224:0;35849:4;-1:-1:-1;;;;;;35873:50:0;;-1:-1:-1;;;35873:50:0;;:90;;;35927:36;35951:11;35927:23;:36::i;:::-;35866:97;35747:224;-1:-1:-1;;35747:224:0:o;22172:100::-;22226:13;22259:5;22252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22172:100;:::o;23731:221::-;23807:7;27074:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27074:16:0;23827:73;;;;-1:-1:-1;;;23827:73:0;;7324:2:1;23827:73:0;;;7306:21:1;7363:2;7343:18;;;7336:30;7402:34;7382:18;;;7375:62;-1:-1:-1;;;7453:18:1;;;7446:42;7505:19;;23827:73:0;;;;;;;;;-1:-1:-1;23920:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23920:24:0;;23731:221::o;23254:411::-;23335:13;23351:23;23366:7;23351:14;:23::i;:::-;23335:39;;23399:5;-1:-1:-1;;;;;23393:11:0;:2;-1:-1:-1;;;;;23393:11:0;;;23385:57;;;;-1:-1:-1;;;23385:57:0;;7737:2:1;23385:57:0;;;7719:21:1;7776:2;7756:18;;;7749:30;7815:34;7795:18;;;7788:62;-1:-1:-1;;;7866:18:1;;;7859:31;7907:19;;23385:57:0;7535:397:1;23385:57:0;16554:10;-1:-1:-1;;;;;23477:21:0;;;;:62;;-1:-1:-1;23502:37:0;23519:5;16554:10;24250:164;:::i;23502:37::-;23455:168;;;;-1:-1:-1;;;23455:168:0;;8139:2:1;23455:168:0;;;8121:21:1;8178:2;8158:18;;;8151:30;8217:34;8197:18;;;8190:62;8288:26;8268:18;;;8261:54;8332:19;;23455:168:0;7937:420:1;23455:168:0;23636:21;23645:2;23649:7;23636:8;:21::i;:::-;23324:341;23254:411;;:::o;24481:339::-;24676:41;16554:10;24709:7;24676:18;:41::i;:::-;24668:103;;;;-1:-1:-1;;;24668:103:0;;;;;;;:::i;:::-;24784:28;24794:4;24800:2;24804:7;24784:9;:28::i;48548:1090::-;47539:9;48751;:19;48743:53;;;;-1:-1:-1;;;48743:53:0;;8982:2:1;48743:53:0;;;8964:21:1;9021:2;9001:18;;;8994:30;-1:-1:-1;;;9040:18:1;;;9033:51;9101:18;;48743:53:0;8780:345:1;48743:53:0;48831:5;48815:13;36475:10;:17;;36387:113;48815:13;:21;48807:53;;;;-1:-1:-1;;;48807:53:0;;9332:2:1;48807:53:0;;;9314:21:1;9371:2;9351:18;;;9344:30;-1:-1:-1;;;9390:18:1;;;9383:49;9449:18;;48807:53:0;9130:343:1;48807:53:0;48894:15;48879:11;:30;;;;48871:53;;;;-1:-1:-1;;;48871:53:0;;9680:2:1;48871:53:0;;;9662:21:1;9719:2;9699:18;;;9692:30;-1:-1:-1;;;9738:18:1;;;9731:40;9788:18;;48871:53:0;9478:334:1;48871:53:0;48974:14;;48960:28;;-1:-1:-1;;;48974:14:0;;;;48960:11;:28;:::i;:::-;48941:47;;:15;:47;48937:395;;49013:13;49023:2;49013:9;:13::i;:::-;:18;49005:65;;;;-1:-1:-1;;;49005:65:0;;10384:2:1;49005:65:0;;;10366:21:1;10423:2;10403:18;;;10396:30;10462:34;10442:18;;;10435:62;-1:-1:-1;;;10513:18:1;;;10506:32;10555:19;;49005:65:0;10182:398:1;49005:65:0;49119:40;;;;;;10797:21:1;;;10854:2;10834:18;;;10827:30;-1:-1:-1;;;10873:18:1;;;10866:52;-1:-1:-1;;;;;10992:32:1;;10970:20;;;10963:62;;;;49085:21:0;;10935:19:1;;49119:40:0;;;-1:-1:-1;;49119:40:0;;;;;;;;;49109:51;;49119:40;49109:51;;;;49208:20;;;;49230;;49252;;;;49230;49183:90;;;;;;;;11263:25:1;;;11336:4;11324:17;;;11304:18;;;11297:45;;;;11358:18;;;11351:34;;;;11401:18;;;11394:34;49109:51:0;-1:-1:-1;;;;;;49277:23:0;49183:117;;:90;;11235:19:1;;49183:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49183:117:0;;49175:145;;;;-1:-1:-1;;;49175:145:0;;11641:2:1;49175:145:0;;;11623:21:1;11680:2;11660:18;;;11653:30;-1:-1:-1;;;11699:18:1;;;11692:45;11754:18;;49175:145:0;11439:339:1;49175:145:0;48990:342;48937:395;49374:24;;;-1:-1:-1;;;;;11975:32:1;;49374:24:0;;;11957:51:1;12024:18;;;12017:34;;;49344:17:0;;11930:18:1;;49374:24:0;;;;;;;;;;;;49364:35;;;;;;49344:55;;49410:14;49427:74;49437:9;49448:14;:16;;;49466:14;:16;;;49484:14;:16;;;49427:74;;;;;;;;;;;;;;;;;11263:25:1;;;11336:4;11324:17;;;;11319:2;11304:18;;11297:45;11373:2;11358:18;;11351:34;11416:2;11401:18;;11394:34;11250:3;11235:19;;11036:398;49427:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49410:91;;49530:21;-1:-1:-1;;;;;49520:31:0;:6;-1:-1:-1;;;;;49520:31:0;;49512:68;;;;-1:-1:-1;;;49512:68:0;;12264:2:1;49512:68:0;;;12246:21:1;12303:2;12283:18;;;12276:30;12342:26;12322:18;;;12315:54;12386:18;;49512:68:0;12062:348:1;49512:68:0;49591:39;49608:2;49620:8;49591:16;:39::i;:::-;48732:906;;48548:1090;;;;:::o;36055:256::-;36152:7;36188:23;36205:5;36188:16;:23::i;:::-;36180:5;:31;36172:87;;;;-1:-1:-1;;;36172:87:0;;12617:2:1;36172:87:0;;;12599:21:1;12656:2;12636:18;;;12629:30;12695:34;12675:18;;;12668:62;-1:-1:-1;;;12746:18:1;;;12739:41;12797:19;;36172:87:0;12415:407:1;36172:87:0;-1:-1:-1;;;;;;36277:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36055:256::o;24891:185::-;25029:39;25046:4;25052:2;25056:7;25029:39;;;;;;;;;;;;:16;:39::i;36577:233::-;36652:7;36688:30;36475:10;:17;;36387:113;36688:30;36680:5;:38;36672:95;;;;-1:-1:-1;;;36672:95:0;;13029:2:1;36672:95:0;;;13011:21:1;13068:2;13048:18;;;13041:30;13107:34;13087:18;;;13080:62;-1:-1:-1;;;13158:18:1;;;13151:42;13210:19;;36672:95:0;12827:408:1;36672:95:0;36785:10;36796:5;36785:17;;;;;;;;:::i;:::-;;;;;;;;;36778:24;;36577:233;;;:::o;21866:239::-;21938:7;21974:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21974:16:0;22009:19;22001:73;;;;-1:-1:-1;;;22001:73:0;;13574:2:1;22001:73:0;;;13556:21:1;13613:2;13593:18;;;13586:30;13652:34;13632:18;;;13625:62;-1:-1:-1;;;13703:18:1;;;13696:39;13752:19;;22001:73:0;13372:405:1;50827:161:0;50721:13;;-1:-1:-1;;;;;50721:13:0;50707:10;:27;50699:36;;;;;;-1:-1:-1;;;;;50908:29:0;::::1;50900:38;;;::::0;::::1;;50949:13;:31:::0;;-1:-1:-1;;;;;;50949:31:0::1;-1:-1:-1::0;;;;;50949:31:0;;;::::1;::::0;;;::::1;::::0;;50827:161::o;21596:208::-;21668:7;-1:-1:-1;;;;;21696:19:0;;21688:74;;;;-1:-1:-1;;;21688:74:0;;13984:2:1;21688:74:0;;;13966:21:1;14023:2;14003:18;;;13996:30;14062:34;14042:18;;;14035:62;-1:-1:-1;;;14113:18:1;;;14106:40;14163:19;;21688:74:0;13782:406:1;21688:74:0;-1:-1:-1;;;;;;21780:16:0;;;;;:9;:16;;;;;;;21596:208::o;43606:103::-;43028:6;;-1:-1:-1;;;;;43028:6:0;16554:10;43175:23;43167:68;;;;-1:-1:-1;;;43167:68:0;;14395:2:1;43167:68:0;;;14377:21:1;;;14414:18;;;14407:30;14473:34;14453:18;;;14446:62;14525:18;;43167:68:0;14193:356:1;43167:68:0;43671:30:::1;43698:1;43671:18;:30::i;:::-;43606:103::o:0;51545:218::-;50721:13;;-1:-1:-1;;;;;50721:13:0;50707:10;:27;50699:36;;;;;;51634:21:::1;51624:6;:31;;51616:40;;;::::0;::::1;;51730:25;::::0;51702:16:::1;::::0;-1:-1:-1;;;;;51730:17:0;::::1;::::0;:25;::::1;;;::::0;51748:6;;51667:24:::1;51730:25:::0;51667:24;51730:25;51748:6;51730:17;:25;::::1;;;;;;;;;;;;;::::0;::::1;;;;22341:104:::0;22397:13;22430:7;22423:14;;;;;:::i;24024:155::-;24119:52;16554:10;24152:8;24162;24119:18;:52::i;:::-;24024:155;;:::o;25147:328::-;25322:41;16554:10;25355:7;25322:18;:41::i;:::-;25314:103;;;;-1:-1:-1;;;25314:103:0;;;;;;;:::i;:::-;25428:39;25442:4;25448:2;25452:7;25461:5;25428:13;:39::i;:::-;25147:328;;;;:::o;51080:134::-;50721:13;;-1:-1:-1;;;;;50721:13:0;50707:10;:27;50699:36;;;;;;51179:26:::1;:16:::0;51198:7:::1;51179:26;:::i;:::-;51161:14;;:45;;;;;;;;;;;;;;;;;;51080:134:::0;:::o;50080:329::-;27050:4;27074:16;;;:7;:16;;;;;;50145:13;;-1:-1:-1;;;;;27074:16:0;50171:49;;;;-1:-1:-1;;;50171:49:0;;15023:2:1;50171:49:0;;;15005:21:1;15062:2;15042:18;;;15035:30;-1:-1:-1;;;15081:18:1;;;15074:50;15141:18;;50171:49:0;14821:344:1;50171:49:0;50231:21;50255:10;50048:16;;;;;;;;;;;;-1:-1:-1;;;50048:16:0;;;;;49939:133;50255:10;50301:39;;-1:-1:-1;;;50301:39:0;;;;;2319:25:1;;;50231:34:0;;-1:-1:-1;50276:22:0;;50301:8;;:21;;2292:18:1;;50301:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50301:39:0;;;;;;;;;;;;:::i;:::-;50276:64;;50382:7;50391:8;50365:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50351:50;;;;50080:329;;;:::o;43864:201::-;43028:6;;-1:-1:-1;;;;;43028:6:0;16554:10;43175:23;43167:68;;;;-1:-1:-1;;;43167:68:0;;14395:2:1;43167:68:0;;;14377:21:1;;;14414:18;;;14407:30;14473:34;14453:18;;;14446:62;14525:18;;43167:68:0;14193:356:1;43167:68:0;-1:-1:-1;;;;;43953:22:0;::::1;43945:73;;;::::0;-1:-1:-1;;;43945:73:0;;16677:2:1;43945:73:0::1;::::0;::::1;16659:21:1::0;16716:2;16696:18;;;16689:30;16755:34;16735:18;;;16728:62;-1:-1:-1;;;16806:18:1;;;16799:36;16852:19;;43945:73:0::1;16475:402:1::0;43945:73:0::1;44029:28;44048:8;44029:18;:28::i;:::-;43864:201:::0;:::o;51323:138::-;51438:14;;51376:6;;;;51411:11;;51424:28;;-1:-1:-1;;;51438:14:0;;;;51411:11;51424:28;:::i;:::-;51403:50;;;;51323:138;;:::o;21227:305::-;21329:4;-1:-1:-1;;;;;;21366:40:0;;-1:-1:-1;;;21366:40:0;;:105;;-1:-1:-1;;;;;;;21423:48:0;;-1:-1:-1;;;21423:48:0;21366:105;:158;;;-1:-1:-1;;;;;;;;;;19782:40:0;;;21488:36;19673:157;30967:174;31042:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31042:29:0;-1:-1:-1;;;;;31042:29:0;;;;;;;;:24;;31096:23;31042:24;31096:14;:23::i;:::-;-1:-1:-1;;;;;31087:46:0;;;;;;;;;;;30967:174;;:::o;27279:348::-;27372:4;27074:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27074:16:0;27389:73;;;;-1:-1:-1;;;27389:73:0;;17084:2:1;27389:73:0;;;17066:21:1;17123:2;17103:18;;;17096:30;17162:34;17142:18;;;17135:62;-1:-1:-1;;;17213:18:1;;;17206:42;17265:19;;27389:73:0;16882:408:1;27389:73:0;27473:13;27489:23;27504:7;27489:14;:23::i;:::-;27473:39;;27542:5;-1:-1:-1;;;;;27531:16:0;:7;-1:-1:-1;;;;;27531:16:0;;:51;;;;27575:7;-1:-1:-1;;;;;27551:31:0;:20;27563:7;27551:11;:20::i;:::-;-1:-1:-1;;;;;27551:31:0;;27531:51;:87;;;-1:-1:-1;;;;;;24371:25:0;;;24347:4;24371:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27586:32;27523:96;27279:348;-1:-1:-1;;;;27279:348:0:o;49646:285::-;49801:14;;49818:15;;49787:28;;-1:-1:-1;;;49801:14:0;;;;49787:11;:28;:::i;:::-;:46;;;49779:98;;;;-1:-1:-1;;;49779:98:0;;17497:2:1;49779:98:0;;;17479:21:1;17536:2;17516:18;;;17509:30;17575:34;17555:18;;;17548:62;-1:-1:-1;;;17626:18:1;;;17619:37;17673:19;;49779:98:0;17295:403:1;49779:98:0;49888:35;49905:4;49911:2;49915:7;49888:16;:35::i;27969:110::-;28045:26;28055:2;28059:7;28045:26;;;;;;;;;;;;:9;:26::i;44225:191::-;44318:6;;;-1:-1:-1;;;;;44335:17:0;;;-1:-1:-1;;;;;;44335:17:0;;;;;;;44368:40;;44318:6;;;44335:17;44318:6;;44368:40;;44299:16;;44368:40;44288:128;44225:191;:::o;31283:315::-;31438:8;-1:-1:-1;;;;;31429:17:0;:5;-1:-1:-1;;;;;31429:17:0;;;31421:55;;;;-1:-1:-1;;;31421:55:0;;17905:2:1;31421:55:0;;;17887:21:1;17944:2;17924:18;;;17917:30;17983:27;17963:18;;;17956:55;18028:18;;31421:55:0;17703:349:1;31421:55:0;-1:-1:-1;;;;;31487:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31487:46:0;;;;;;;;;;31549:41;;540::1;;;31549::0;;513:18:1;31549:41:0;;;;;;;31283:315;;;:::o;26357:::-;26514:28;26524:4;26530:2;26534:7;26514:9;:28::i;:::-;26561:48;26584:4;26590:2;26594:7;26603:5;26561:22;:48::i;:::-;26553:111;;;;-1:-1:-1;;;26553:111:0;;;;;;;:::i;30271:578::-;30430:4;-1:-1:-1;;;;;30403:31:0;:23;30418:7;30403:14;:23::i;:::-;-1:-1:-1;;;;;30403:31:0;;30395:85;;;;-1:-1:-1;;;30395:85:0;;18678:2:1;30395:85:0;;;18660:21:1;18717:2;18697:18;;;18690:30;18756:34;18736:18;;;18729:62;-1:-1:-1;;;18807:18:1;;;18800:39;18856:19;;30395:85:0;18476:405:1;30395:85:0;-1:-1:-1;;;;;30499:16:0;;30491:65;;;;-1:-1:-1;;;30491:65:0;;19088:2:1;30491:65:0;;;19070:21:1;19127:2;19107:18;;;19100:30;19166:34;19146:18;;;19139:62;-1:-1:-1;;;19217:18:1;;;19210:34;19261:19;;30491:65:0;18886:400:1;30491:65:0;30569:39;30590:4;30596:2;30600:7;30569:20;:39::i;:::-;30673:29;30690:1;30694:7;30673:8;:29::i;:::-;-1:-1:-1;;;;;30715:15:0;;;;;;:9;:15;;;;;:20;;30734:1;;30715:15;:20;;30734:1;;30715:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30746:13:0;;;;;;:9;:13;;;;;:18;;30763:1;;30746:13;:18;;30763:1;;30746:18;:::i;:::-;;;;-1:-1:-1;;30775:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30775:21:0;-1:-1:-1;;;;;30775:21:0;;;;;;;;;30814:27;;30775:16;;30814:27;;;;;;;30271:578;;;:::o;28306:321::-;28436:18;28442:2;28446:7;28436:5;:18::i;:::-;28487:54;28518:1;28522:2;28526:7;28535:5;28487:22;:54::i;:::-;28465:154;;;;-1:-1:-1;;;28465:154:0;;;;;;;:::i;32163:799::-;32318:4;-1:-1:-1;;;;;32339:13:0;;8789:20;8837:8;32335:620;;32375:72;;-1:-1:-1;;;32375:72:0;;-1:-1:-1;;;;;32375:36:0;;;;;:72;;16554:10;;32426:4;;32432:7;;32441:5;;32375:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32375:72:0;;;;;;;;-1:-1:-1;;32375:72:0;;;;;;;;;;;;:::i;:::-;;;32371:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32617:13:0;;32613:272;;32660:60;;-1:-1:-1;;;32660:60:0;;;;;;;:::i;32613:272::-;32835:6;32829:13;32820:6;32816:2;32812:15;32805:38;32371:529;-1:-1:-1;;;;;;32498:51:0;-1:-1:-1;;;32498:51:0;;-1:-1:-1;32491:58:0;;32335:620;-1:-1:-1;32939:4:0;32163:799;;;;;;:::o;37423:589::-;-1:-1:-1;;;;;37629:18:0;;37625:187;;37664:40;37696:7;38839:10;:17;;38812:24;;;;:15;:24;;;;;:44;;;38867:24;;;;;;;;;;;;38735:164;37664:40;37625:187;;;37734:2;-1:-1:-1;;;;;37726:10:0;:4;-1:-1:-1;;;;;37726:10:0;;37722:90;;37753:47;37786:4;37792:7;37753:32;:47::i;:::-;-1:-1:-1;;;;;37826:16:0;;37822:183;;37859:45;37896:7;37859:36;:45::i;37822:183::-;37932:4;-1:-1:-1;;;;;37926:10:0;:2;-1:-1:-1;;;;;37926:10:0;;37922:83;;37953:40;37981:2;37985:7;37953:27;:40::i;28963:382::-;-1:-1:-1;;;;;29043:16:0;;29035:61;;;;-1:-1:-1;;;29035:61:0;;20504:2:1;29035:61:0;;;20486:21:1;;;20523:18;;;20516:30;20582:34;20562:18;;;20555:62;20634:18;;29035:61:0;20302:356:1;29035:61:0;27050:4;27074:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27074:16:0;:30;29107:58;;;;-1:-1:-1;;;29107:58:0;;20865:2:1;29107:58:0;;;20847:21:1;20904:2;20884:18;;;20877:30;20943;20923:18;;;20916:58;20991:18;;29107:58:0;20663:352:1;29107:58:0;29178:45;29207:1;29211:2;29215:7;29178:20;:45::i;:::-;-1:-1:-1;;;;;29236:13:0;;;;;;:9;:13;;;;;:18;;29253:1;;29236:13;:18;;29253:1;;29236:18;:::i;:::-;;;;-1:-1:-1;;29265:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29265:21:0;-1:-1:-1;;;;;29265:21:0;;;;;;;;29304:33;;29265:16;;;29304:33;;29265:16;;29304:33;28963:382;;:::o;39526:988::-;39792:22;39842:1;39817:22;39834:4;39817:16;:22::i;:::-;:26;;;;:::i;:::-;39854:18;39875:26;;;:17;:26;;;;;;39792:51;;-1:-1:-1;40008:28:0;;;40004:328;;-1:-1:-1;;;;;40075:18:0;;40053:19;40075:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40126:30;;;;;;:44;;;40243:30;;:17;:30;;;;;:43;;;40004:328;-1:-1:-1;40428:26:0;;;;:17;:26;;;;;;;;40421:33;;;-1:-1:-1;;;;;40472:18:0;;;;;:12;:18;;;;;:34;;;;;;;40465:41;39526:988::o;40809:1079::-;41087:10;:17;41062:22;;41087:21;;41107:1;;41087:21;:::i;:::-;41119:18;41140:24;;;:15;:24;;;;;;41513:10;:26;;41062:46;;-1:-1:-1;41140:24:0;;41062:46;;41513:26;;;;;;:::i;:::-;;;;;;;;;41491:48;;41577:11;41552:10;41563;41552:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41657:28;;;:15;:28;;;;;;;:41;;;41829:24;;;;;41822:31;41864:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40880:1008;;;40809:1079;:::o;38313:221::-;38398:14;38415:20;38432:2;38415:16;:20::i;:::-;-1:-1:-1;;;;;38446:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38491:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38313:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:275;2891:2;2885:9;2956:2;2937:13;;-1:-1:-1;;2933:27:1;2921:40;;2991:18;2976:34;;3012:22;;;2973:62;2970:88;;;3038:18;;:::i;:::-;3074:2;3067:22;2820:275;;-1:-1:-1;2820:275:1:o;3100:644::-;3161:5;3209:4;3197:9;3192:3;3188:19;3184:30;3181:50;;;3227:1;3224;3217:12;3181:50;3260:2;3254:9;3302:4;3294:6;3290:17;3373:6;3361:10;3358:22;3337:18;3325:10;3322:34;3319:62;3316:88;;;3384:18;;:::i;:::-;3424:10;3420:2;3413:22;;3453:6;3444:15;;3496:9;3483:23;3475:6;3468:39;3568:2;3557:9;3553:18;3540:32;3535:2;3527:6;3523:15;3516:57;3625:2;3614:9;3610:18;3597:32;3673:4;3664:7;3660:18;3651:7;3648:31;3638:59;;3693:1;3690;3683:12;3638:59;3725:2;3713:15;;;;3706:32;3100:644;;-1:-1:-1;;3100:644:1:o;3749:514::-;3899:6;3907;3915;3923;3976:3;3964:9;3955:7;3951:23;3947:33;3944:53;;;3993:1;3990;3983:12;3944:53;4016:29;4035:9;4016:29;:::i;:::-;4006:39;;4092:2;4081:9;4077:18;4064:32;4054:42;;4115:61;4168:7;4163:2;4152:9;4148:18;4115:61;:::i;:::-;4105:71;;4195:62;4249:7;4243:3;4232:9;4228:19;4195:62;:::i;:::-;4185:72;;3749:514;;;;;;;:::o;4268:186::-;4327:6;4380:2;4368:9;4359:7;4355:23;4351:32;4348:52;;;4396:1;4393;4386:12;4348:52;4419:29;4438:9;4419:29;:::i;4459:347::-;4524:6;4532;4585:2;4573:9;4564:7;4560:23;4556:32;4553:52;;;4601:1;4598;4591:12;4553:52;4624:29;4643:9;4624:29;:::i;:::-;4614:39;;4703:2;4692:9;4688:18;4675:32;4750:5;4743:13;4736:21;4729:5;4726:32;4716:60;;4772:1;4769;4762:12;4716:60;4795:5;4785:15;;;4459:347;;;;;:::o;4811:186::-;4859:4;4892:18;4884:6;4881:30;4878:56;;;4914:18;;:::i;:::-;-1:-1:-1;4980:2:1;4959:15;-1:-1:-1;;4955:29:1;4986:4;4951:40;;4811:186::o;5002:888::-;5097:6;5105;5113;5121;5174:3;5162:9;5153:7;5149:23;5145:33;5142:53;;;5191:1;5188;5181:12;5142:53;5214:29;5233:9;5214:29;:::i;:::-;5204:39;;5262:38;5296:2;5285:9;5281:18;5262:38;:::i;:::-;5252:48;;5347:2;5336:9;5332:18;5319:32;5309:42;;5402:2;5391:9;5387:18;5374:32;5429:18;5421:6;5418:30;5415:50;;;5461:1;5458;5451:12;5415:50;5484:22;;5537:4;5529:13;;5525:27;-1:-1:-1;5515:55:1;;5566:1;5563;5556:12;5515:55;5602:2;5589:16;5627:48;5643:31;5671:2;5643:31;:::i;:::-;5627:48;:::i;:::-;5698:2;5691:5;5684:17;5738:7;5733:2;5728;5724;5720:11;5716:20;5713:33;5710:53;;;5759:1;5756;5749:12;5710:53;5814:2;5809;5805;5801:11;5796:2;5789:5;5785:14;5772:45;5858:1;5853:2;5848;5841:5;5837:14;5833:23;5826:34;5879:5;5869:15;;;;;5002:888;;;;;;;:::o;5895:276::-;5953:6;6006:2;5994:9;5985:7;5981:23;5977:32;5974:52;;;6022:1;6019;6012:12;5974:52;6061:9;6048:23;6111:10;6104:5;6100:22;6093:5;6090:33;6080:61;;6137:1;6134;6127:12;6176:260;6244:6;6252;6305:2;6293:9;6284:7;6280:23;6276:32;6273:52;;;6321:1;6318;6311:12;6273:52;6344:29;6363:9;6344:29;:::i;:::-;6334:39;;6392:38;6426:2;6415:9;6411:18;6392:38;:::i;:::-;6382:48;;6176:260;;;;;:::o;6737:380::-;6816:1;6812:12;;;;6859;;;6880:61;;6934:4;6926:6;6922:17;6912:27;;6880:61;6987:2;6979:6;6976:14;6956:18;6953:38;6950:161;;;7033:10;7028:3;7024:20;7021:1;7014:31;7068:4;7065:1;7058:15;7096:4;7093:1;7086:15;6950:161;;6737:380;;;:::o;8362:413::-;8564:2;8546:21;;;8603:2;8583:18;;;8576:30;8642:34;8637:2;8622:18;;8615:62;-1:-1:-1;;;8708:2:1;8693:18;;8686:47;8765:3;8750:19;;8362:413::o;9817:127::-;9878:10;9873:3;9869:20;9866:1;9859:31;9909:4;9906:1;9899:15;9933:4;9930:1;9923:15;9949:228;9988:3;10016:10;10053:2;10050:1;10046:10;10083:2;10080:1;10076:10;10114:3;10110:2;10106:12;10101:3;10098:21;10095:47;;;10122:18;;:::i;:::-;10158:13;;9949:228;-1:-1:-1;;;;9949:228:1:o;13240:127::-;13301:10;13296:3;13292:20;13289:1;13282:31;13332:4;13329:1;13322:15;13356:4;13353:1;13346:15;14554:262;14593:7;14625:10;14662:2;14659:1;14655:10;14692:2;14689:1;14685:10;14748:3;14744:2;14740:12;14735:3;14732:21;14725:3;14718:11;14711:19;14707:47;14704:73;;;14757:18;;:::i;:::-;14797:13;;14554:262;-1:-1:-1;;;;14554:262:1:o;15360:635::-;15440:6;15493:2;15481:9;15472:7;15468:23;15464:32;15461:52;;;15509:1;15506;15499:12;15461:52;15542:9;15536:16;15575:18;15567:6;15564:30;15561:50;;;15607:1;15604;15597:12;15561:50;15630:22;;15683:4;15675:13;;15671:27;-1:-1:-1;15661:55:1;;15712:1;15709;15702:12;15661:55;15741:2;15735:9;15766:48;15782:31;15810:2;15782:31;:::i;15766:48::-;15837:2;15830:5;15823:17;15877:7;15872:2;15867;15863;15859:11;15855:20;15852:33;15849:53;;;15898:1;15895;15888:12;15849:53;15911:54;15962:2;15957;15950:5;15946:14;15941:2;15937;15933:11;15911:54;:::i;:::-;15984:5;15360:635;-1:-1:-1;;;;;15360:635:1:o;16000:470::-;16179:3;16217:6;16211:13;16233:53;16279:6;16274:3;16267:4;16259:6;16255:17;16233:53;:::i;:::-;16349:13;;16308:16;;;;16371:57;16349:13;16308:16;16405:4;16393:17;;16371:57;:::i;18057:414::-;18259:2;18241:21;;;18298:2;18278:18;;;18271:30;18337:34;18332:2;18317:18;;18310:62;-1:-1:-1;;;18403:2:1;18388:18;;18381:48;18461:3;18446:19;;18057:414::o;19291:125::-;19331:4;19359:1;19356;19353:8;19350:34;;;19364:18;;:::i;:::-;-1:-1:-1;19401:9:1;;19291:125::o;19421:128::-;19461:3;19492:1;19488:6;19485:1;19482:13;19479:39;;;19498:18;;:::i;:::-;-1:-1:-1;19534:9:1;;19421:128::o;19554:489::-;-1:-1:-1;;;;;19823:15:1;;;19805:34;;19875:15;;19870:2;19855:18;;19848:43;19922:2;19907:18;;19900:34;;;19970:3;19965:2;19950:18;;19943:31;;;19748:4;;19991:46;;20017:19;;20009:6;19991:46;:::i;:::-;19983:54;19554:489;-1:-1:-1;;;;;;19554:489:1:o;20048:249::-;20117:6;20170:2;20158:9;20149:7;20145:23;20141:32;20138:52;;;20186:1;20183;20176:12;20138:52;20218:9;20212:16;20237:30;20261:5;20237:30;:::i;21020:127::-;21081:10;21076:3;21072:20;21069:1;21062:31;21112:4;21109:1;21102:15;21136:4;21133:1;21126:15

Swarm Source

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