Polygon Sponsored slots available. Book your slot here!
Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x923c7a77c3f88fcaaaaf8b5d12a271ea920a13a4014ac63d0bcc64da58506f28 | Mint | 33709981 | 181 days 17 hrs ago | 0xc03c79ce39fbae587a97cdcaa581d482818f97ce | IN | 0x429372d25b7fd16020d9ecd0723bc615c1a066a6 | 0 MATIC | 0.00072354 | |
0xc08f567877e9c003d5c237f842f7b9bb94fec93955363756880dd124a4320e15 | Mint | 33709973 | 181 days 17 hrs ago | 0xc03c79ce39fbae587a97cdcaa581d482818f97ce | IN | 0x429372d25b7fd16020d9ecd0723bc615c1a066a6 | 0 MATIC | 0.00072354 | |
0xbb6c7a45c0a719104e9777deff02baca8a7c9a5a9959a6c7858e302ee0efe04c | Whitelist Users | 33709954 | 181 days 17 hrs ago | 0xf2d96b56e60fa074714c04cb13ab15574152414e | IN | 0x429372d25b7fd16020d9ecd0723bc615c1a066a6 | 0 MATIC | 0.00218058624 | |
0x67af0f15088e1d509fa48efddcc9c9b2801f8b90d666d50956c9650671a52f36 | 0x60806040 | 33709867 | 181 days 17 hrs ago | 0xf2d96b56e60fa074714c04cb13ab15574152414e | IN | Create: NFT | 0 MATIC | 0.135259860072 |
[ Download CSV Export ]
Contract Name:
NFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-09-29 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (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); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/m00see.sol pragma solidity >=0.7.0 <0.9.0; contract NFT is ERC721Enumerable, Ownable { using Strings for uint256; mapping(address => bool) public freeMintClaimed; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.001 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 20; uint256 public nftPerAddressLimit = 2; bool public paused = true; bool public revealed = false; bool public onlyWhitelisted = true; address[] public whitelistedAddresses; mapping(address => uint256) public addressMintedBalance; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(_mintAmount > 0, "need to mint at least 1 NFT"); require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); //Check if the buyer have already claimed 1 token free if(!freeMintClaimed[_msgSender()]){ //The free token is not claimed yet if(_mintAmount>1){ //The buyer asked to mint N tokens, so he will pay N-1 tokens require(msg.value >= cost * (_mintAmount-1), 'Insufficient funds!'); } //Ok, this call is free but only this freeMintClaimed[_msgSender()]=true; }else{ // The buyer have already claimed a free token // so he have to pay for all N tokens he asked to mint require(msg.value >= cost * _mintAmount, 'Insufficient funds!'); } if (msg.sender != owner()) { if(onlyWhitelisted == true) { require(isWhitelisted(msg.sender), "user is not whitelisted"); uint256 ownerMintedCount = addressMintedBalance[msg.sender]; require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } require(msg.value >= cost * _mintAmount, "insufficient funds"); } for (uint256 i = 1; i <= _mintAmount; i++) { addressMintedBalance[msg.sender]++; _safeMint(msg.sender, supply + i); } } function isWhitelisted(address _user) public view returns (bool) { for (uint i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function reveal() public onlyOwner { revealed = true; } function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function pause(bool _state) public onlyOwner { paused = _state; } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function whitelistUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90805190602001906200005192919062000354565b5066038d7ea4c68000600f55612710601055601460115560026012556001601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff021916908315150217905550348015620000cb57600080fd5b5060405162005361380380620053618339818101604052810190620000f1919062000482565b838381600090805190602001906200010b92919062000354565b5080600190805190602001906200012492919062000354565b505050620001476200013b6200017360201b60201c565b6200017b60201b60201c565b62000158826200024160201b60201c565b62000169816200026d60201b60201c565b5050505062000777565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002516200029960201b60201c565b80600c90805190602001906200026992919062000354565b5050565b6200027d6200029960201b60201c565b80600e90805190602001906200029592919062000354565b5050565b620002a96200017360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002cf6200032a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031f9062000597565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000362906200065f565b90600052602060002090601f016020900481019282620003865760008555620003d2565b82601f10620003a157805160ff1916838001178555620003d2565b82800160010185558215620003d2579182015b82811115620003d1578251825591602001919060010190620003b4565b5b509050620003e19190620003e5565b5090565b5b8082111562000400576000816000905550600101620003e6565b5090565b60006200041b6200041584620005e2565b620005b9565b9050828152602081018484840111156200043a57620004396200072e565b5b6200044784828562000629565b509392505050565b600082601f83011262000467576200046662000729565b5b81516200047984826020860162000404565b91505092915050565b600080600080608085870312156200049f576200049e62000738565b5b600085015167ffffffffffffffff811115620004c057620004bf62000733565b5b620004ce878288016200044f565b945050602085015167ffffffffffffffff811115620004f257620004f162000733565b5b62000500878288016200044f565b935050604085015167ffffffffffffffff81111562000524576200052362000733565b5b62000532878288016200044f565b925050606085015167ffffffffffffffff81111562000556576200055562000733565b5b62000564878288016200044f565b91505092959194509250565b60006200057f60208362000618565b91506200058c826200074e565b602082019050919050565b60006020820190508181036000830152620005b28162000570565b9050919050565b6000620005c5620005d8565b9050620005d3828262000695565b919050565b6000604051905090565b600067ffffffffffffffff8211156200060057620005ff620006fa565b5b6200060b826200073d565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006495780820151818401526020810190506200062c565b8381111562000659576000848401525b50505050565b600060028204905060018216806200067857607f821691505b602082108114156200068f576200068e620006cb565b5b50919050565b620006a0826200073d565b810181811067ffffffffffffffff82111715620006c257620006c1620006fa565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614bda80620007876000396000f3fe60806040526004361061027d5760003560e01c80636c0360eb1161014f578063ba4e5c49116100c1578063da3ef23f1161007a578063da3ef23f14610992578063e0ec7c36146109bb578063e985e9c5146109f8578063edec5f2714610a35578063f2c4ce1e14610a5e578063f2fde38b14610a875761027d565b8063ba4e5c491461086e578063ba7d2c76146108ab578063c6682862146108d6578063c87b56dd14610901578063d0eb26b01461093e578063d5abeb01146109675761027d565b806395d89b411161011357806395d89b41146107935780639c70b512146107be578063a0712d68146107e9578063a22cb46514610805578063a475b5dd1461082e578063b88d4fde146108455761027d565b80636c0360eb146106c057806370a08231146106eb578063715018a6146107285780637f00c7a61461073f5780638da5cb5b146107685761027d565b80632f745c59116101f357806344a0d68a116101ac57806344a0d68a1461059e5780634f6ccce7146105c7578063518302271461060457806355f804b31461062f5780635c975abb146106585780636352211e146106835761027d565b80632f745c591461048b5780633af32abf146104c85780633c952764146105055780633ccfd60b1461052e57806342842e0e14610538578063438b6300146105615761027d565b8063095ea7b311610245578063095ea7b31461037b57806313faede6146103a457806318160ddd146103cf57806318cae269146103fa578063239c70ae1461043757806323b872dd146104625761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063081c8c4414610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a4919061365b565b610ab0565b6040516102b69190613d39565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e1919061362e565b610b2a565b005b3480156102f457600080fd5b506102fd610b4f565b60405161030a9190613d54565b60405180910390f35b34801561031f57600080fd5b5061033a600480360381019061033591906136fe565b610be1565b6040516103479190613cb0565b60405180910390f35b34801561035c57600080fd5b50610365610c27565b6040516103729190613d54565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d91906135a1565b610cb5565b005b3480156103b057600080fd5b506103b9610dcd565b6040516103c69190614076565b60405180910390f35b3480156103db57600080fd5b506103e4610dd3565b6040516103f19190614076565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061341e565b610de0565b60405161042e9190614076565b60405180910390f35b34801561044357600080fd5b5061044c610df8565b6040516104599190614076565b60405180910390f35b34801561046e57600080fd5b506104896004803603810190610484919061348b565b610dfe565b005b34801561049757600080fd5b506104b260048036038101906104ad91906135a1565b610e5e565b6040516104bf9190614076565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea919061341e565b610f03565b6040516104fc9190613d39565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061362e565b610fb2565b005b610536610fd7565b005b34801561054457600080fd5b5061055f600480360381019061055a919061348b565b61105f565b005b34801561056d57600080fd5b506105886004803603810190610583919061341e565b61107f565b6040516105959190613d17565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c091906136fe565b61112d565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906136fe565b61113f565b6040516105fb9190614076565b60405180910390f35b34801561061057600080fd5b506106196111b0565b6040516106269190613d39565b60405180910390f35b34801561063b57600080fd5b50610656600480360381019061065191906136b5565b6111c3565b005b34801561066457600080fd5b5061066d6111e5565b60405161067a9190613d39565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a591906136fe565b6111f8565b6040516106b79190613cb0565b60405180910390f35b3480156106cc57600080fd5b506106d56112aa565b6040516106e29190613d54565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d919061341e565b611338565b60405161071f9190614076565b60405180910390f35b34801561073457600080fd5b5061073d6113f0565b005b34801561074b57600080fd5b50610766600480360381019061076191906136fe565b611404565b005b34801561077457600080fd5b5061077d611416565b60405161078a9190613cb0565b60405180910390f35b34801561079f57600080fd5b506107a8611440565b6040516107b59190613d54565b60405180910390f35b3480156107ca57600080fd5b506107d36114d2565b6040516107e09190613d39565b60405180910390f35b61080360048036038101906107fe91906136fe565b6114e5565b005b34801561081157600080fd5b5061082c60048036038101906108279190613561565b6119a1565b005b34801561083a57600080fd5b506108436119b7565b005b34801561085157600080fd5b5061086c600480360381019061086791906134de565b6119dc565b005b34801561087a57600080fd5b50610895600480360381019061089091906136fe565b611a3e565b6040516108a29190613cb0565b60405180910390f35b3480156108b757600080fd5b506108c0611a7d565b6040516108cd9190614076565b60405180910390f35b3480156108e257600080fd5b506108eb611a83565b6040516108f89190613d54565b60405180910390f35b34801561090d57600080fd5b50610928600480360381019061092391906136fe565b611b11565b6040516109359190613d54565b60405180910390f35b34801561094a57600080fd5b50610965600480360381019061096091906136fe565b611c6a565b005b34801561097357600080fd5b5061097c611c7c565b6040516109899190614076565b60405180910390f35b34801561099e57600080fd5b506109b960048036038101906109b491906136b5565b611c82565b005b3480156109c757600080fd5b506109e260048036038101906109dd919061341e565b611ca4565b6040516109ef9190613d39565b60405180910390f35b348015610a0457600080fd5b50610a1f6004803603810190610a1a919061344b565b611cc4565b604051610a2c9190613d39565b60405180910390f35b348015610a4157600080fd5b50610a5c6004803603810190610a5791906135e1565b611d58565b005b348015610a6a57600080fd5b50610a856004803603810190610a8091906136b5565b611d84565b005b348015610a9357600080fd5b50610aae6004803603810190610aa9919061341e565b611da6565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b235750610b2282611e2a565b5b9050919050565b610b32611f0c565b80601360006101000a81548160ff02191690831515021790555050565b606060008054610b5e9061437f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8a9061437f565b8015610bd75780601f10610bac57610100808354040283529160200191610bd7565b820191906000526020600020905b815481529060010190602001808311610bba57829003601f168201915b5050505050905090565b6000610bec82611f8a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610c349061437f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c609061437f565b8015610cad5780601f10610c8257610100808354040283529160200191610cad565b820191906000526020600020905b815481529060010190602001808311610c9057829003601f168201915b505050505081565b6000610cc0826111f8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890613f96565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d50611fd5565b73ffffffffffffffffffffffffffffffffffffffff161480610d7f5750610d7e81610d79611fd5565b611cc4565b5b610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590613ed6565b60405180910390fd5b610dc88383611fdd565b505050565b600f5481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b60115481565b610e0f610e09611fd5565b82612096565b610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590614016565b60405180910390fd5b610e5983838361212b565b505050565b6000610e6983611338565b8210610eaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea190613d76565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601480549050811015610fa7578273ffffffffffffffffffffffffffffffffffffffff1660148281548110610f4357610f42614518565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f94576001915050610fad565b8080610f9f906143e2565b915050610f0b565b50600090505b919050565b610fba611f0c565b80601360026101000a81548160ff02191690831515021790555050565b610fdf611f0c565b6000610fe9611416565b73ffffffffffffffffffffffffffffffffffffffff164760405161100c90613c9b565b60006040518083038185875af1925050503d8060008114611049576040519150601f19603f3d011682016040523d82523d6000602084013e61104e565b606091505b505090508061105c57600080fd5b50565b61107a838383604051806020016040528060008152506119dc565b505050565b6060600061108c83611338565b905060008167ffffffffffffffff8111156110aa576110a9614547565b5b6040519080825280602002602001820160405280156110d85781602001602082028036833780820191505090505b50905060005b82811015611122576110f08582610e5e565b82828151811061110357611102614518565b5b602002602001018181525050808061111a906143e2565b9150506110de565b508092505050919050565b611135611f0c565b80600f8190555050565b6000611149610dd3565b821061118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190613fd6565b60405180910390fd5b6008828154811061119e5761119d614518565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b6111cb611f0c565b80600c90805190602001906111e192919061311b565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890613f76565b60405180910390fd5b80915050919050565b600c80546112b79061437f565b80601f01602080910402602001604051908101604052809291908181526020018280546112e39061437f565b80156113305780601f1061130557610100808354040283529160200191611330565b820191906000526020600020905b81548152906001019060200180831161131357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090613e76565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f8611f0c565b6114026000612392565b565b61140c611f0c565b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461144f9061437f565b80601f016020809104026020016040519081016040528092919081815260200182805461147b9061437f565b80156114c85780601f1061149d576101008083540402835291602001916114c8565b820191906000526020600020905b8154815290600101906020018083116114ab57829003601f168201915b5050505050905090565b601360029054906101000a900460ff1681565b601360009054906101000a900460ff1615611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c90613f36565b60405180910390fd5b600061153f610dd3565b905060008211611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90614036565b60405180910390fd5b6011548211156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613eb6565b60405180910390fd5b60105482826115d891906141b4565b1115611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613e96565b60405180910390fd5b600b6000611625611fd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661173b5760018211156116d7576001826116879190614295565b600f54611694919061423b565b3410156116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90614056565b60405180910390fd5b5b6001600b60006116e5611fd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061178c565b81600f54611749919061423b565b34101561178b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178290614056565b60405180910390fd5b5b611794611416565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119115760011515601360029054906101000a900460ff16151514156118c0576117eb33610f03565b61182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190613ff6565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601254838261187d91906141b4565b11156118be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b590613e16565b60405180910390fd5b505b81600f546118ce919061423b565b341015611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790613fb6565b60405180910390fd5b5b6000600190505b82811161199c57601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061196f906143e2565b919050555061198933828461198491906141b4565b612458565b8080611994906143e2565b915050611918565b505050565b6119b36119ac611fd5565b8383612476565b5050565b6119bf611f0c565b6001601360016101000a81548160ff021916908315150217905550565b6119ed6119e7611fd5565b83612096565b611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614016565b60405180910390fd5b611a38848484846125e3565b50505050565b60148181548110611a4e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b600d8054611a909061437f565b80601f0160208091040260200160405190810160405280929190818152602001828054611abc9061437f565b8015611b095780601f10611ade57610100808354040283529160200191611b09565b820191906000526020600020905b815481529060010190602001808311611aec57829003601f168201915b505050505081565b6060611b1c8261263f565b611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290613f56565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611c0957600e8054611b849061437f565b80601f0160208091040260200160405190810160405280929190818152602001828054611bb09061437f565b8015611bfd5780601f10611bd257610100808354040283529160200191611bfd565b820191906000526020600020905b815481529060010190602001808311611be057829003601f168201915b50505050509050611c65565b6000611c136126ab565b90506000815111611c335760405180602001604052806000815250611c61565b80611c3d8461273d565b600d604051602001611c5193929190613c6a565b6040516020818303038152906040525b9150505b919050565b611c72611f0c565b8060128190555050565b60105481565b611c8a611f0c565b80600d9080519060200190611ca092919061311b565b5050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d60611f0c565b60146000611d6e91906131a1565b818160149190611d7f9291906131c2565b505050565b611d8c611f0c565b80600e9080519060200190611da292919061311b565b5050565b611dae611f0c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1590613db6565b60405180910390fd5b611e2781612392565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ef557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f055750611f048261289e565b5b9050919050565b611f14611fd5565b73ffffffffffffffffffffffffffffffffffffffff16611f32611416565b73ffffffffffffffffffffffffffffffffffffffff1614611f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7f90613f16565b60405180910390fd5b565b611f938161263f565b611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc990613f76565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612050836111f8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806120a2836111f8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120e457506120e38185611cc4565b5b8061212257508373ffffffffffffffffffffffffffffffffffffffff1661210a84610be1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661214b826111f8565b73ffffffffffffffffffffffffffffffffffffffff16146121a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219890613dd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220890613e36565b60405180910390fd5b61221c838383612908565b612227600082611fdd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122779190614295565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122ce91906141b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461238d838383612a1c565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612472828260405180602001604052806000815250612a21565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90613e56565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125d69190613d39565b60405180910390a3505050565b6125ee84848461212b565b6125fa84848484612a7c565b612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090613d96565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600c80546126ba9061437f565b80601f01602080910402602001604051908101604052809291908181526020018280546126e69061437f565b80156127335780601f1061270857610100808354040283529160200191612733565b820191906000526020600020905b81548152906001019060200180831161271657829003601f168201915b5050505050905090565b60606000821415612785576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612899565b600082905060005b600082146127b75780806127a0906143e2565b915050600a826127b0919061420a565b915061278d565b60008167ffffffffffffffff8111156127d3576127d2614547565b5b6040519080825280601f01601f1916602001820160405280156128055781602001600182028036833780820191505090505b5090505b600085146128925760018261281e9190614295565b9150600a8561282d919061442b565b603061283991906141b4565b60f81b81838151811061284f5761284e614518565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561288b919061420a565b9450612809565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612913838383612c13565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129565761295181612c18565b612995565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612994576129938382612c61565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d8576129d381612dce565b612a17565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a1657612a158282612e9f565b5b5b505050565b505050565b612a2b8383612f1e565b612a386000848484612a7c565b612a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6e90613d96565b60405180910390fd5b505050565b6000612a9d8473ffffffffffffffffffffffffffffffffffffffff166130f8565b15612c06578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ac6611fd5565b8786866040518563ffffffff1660e01b8152600401612ae89493929190613ccb565b602060405180830381600087803b158015612b0257600080fd5b505af1925050508015612b3357506040513d601f19601f82011682018060405250810190612b309190613688565b60015b612bb6573d8060008114612b63576040519150601f19603f3d011682016040523d82523d6000602084013e612b68565b606091505b50600081511415612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba590613d96565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c0b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c6e84611338565b612c789190614295565b9050600060076000848152602001908152602001600020549050818114612d5d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612de29190614295565b9050600060096000848152602001908152602001600020549050600060088381548110612e1257612e11614518565b5b906000526020600020015490508060088381548110612e3457612e33614518565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e8357612e826144e9565b5b6001900381819060005260206000200160009055905550505050565b6000612eaa83611338565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8590613ef6565b60405180910390fd5b612f978161263f565b15612fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fce90613df6565b60405180910390fd5b612fe360008383612908565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461303391906141b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130f460008383612a1c565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546131279061437f565b90600052602060002090601f0160209004810192826131495760008555613190565b82601f1061316257805160ff1916838001178555613190565b82800160010185558215613190579182015b8281111561318f578251825591602001919060010190613174565b5b50905061319d9190613262565b5090565b50805460008255906000526020600020908101906131bf9190613262565b50565b828054828255906000526020600020908101928215613251579160200282015b8281111561325057823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906131e2565b5b50905061325e9190613262565b5090565b5b8082111561327b576000816000905550600101613263565b5090565b600061329261328d846140b6565b614091565b9050828152602081018484840111156132ae576132ad614585565b5b6132b984828561433d565b509392505050565b60006132d46132cf846140e7565b614091565b9050828152602081018484840111156132f0576132ef614585565b5b6132fb84828561433d565b509392505050565b60008135905061331281614b48565b92915050565b60008083601f84011261332e5761332d61457b565b5b8235905067ffffffffffffffff81111561334b5761334a614576565b5b60208301915083602082028301111561336757613366614580565b5b9250929050565b60008135905061337d81614b5f565b92915050565b60008135905061339281614b76565b92915050565b6000815190506133a781614b76565b92915050565b600082601f8301126133c2576133c161457b565b5b81356133d284826020860161327f565b91505092915050565b600082601f8301126133f0576133ef61457b565b5b81356134008482602086016132c1565b91505092915050565b60008135905061341881614b8d565b92915050565b6000602082840312156134345761343361458f565b5b600061344284828501613303565b91505092915050565b600080604083850312156134625761346161458f565b5b600061347085828601613303565b925050602061348185828601613303565b9150509250929050565b6000806000606084860312156134a4576134a361458f565b5b60006134b286828701613303565b93505060206134c386828701613303565b92505060406134d486828701613409565b9150509250925092565b600080600080608085870312156134f8576134f761458f565b5b600061350687828801613303565b945050602061351787828801613303565b935050604061352887828801613409565b925050606085013567ffffffffffffffff8111156135495761354861458a565b5b613555878288016133ad565b91505092959194509250565b600080604083850312156135785761357761458f565b5b600061358685828601613303565b92505060206135978582860161336e565b9150509250929050565b600080604083850312156135b8576135b761458f565b5b60006135c685828601613303565b92505060206135d785828601613409565b9150509250929050565b600080602083850312156135f8576135f761458f565b5b600083013567ffffffffffffffff8111156136165761361561458a565b5b61362285828601613318565b92509250509250929050565b6000602082840312156136445761364361458f565b5b60006136528482850161336e565b91505092915050565b6000602082840312156136715761367061458f565b5b600061367f84828501613383565b91505092915050565b60006020828403121561369e5761369d61458f565b5b60006136ac84828501613398565b91505092915050565b6000602082840312156136cb576136ca61458f565b5b600082013567ffffffffffffffff8111156136e9576136e861458a565b5b6136f5848285016133db565b91505092915050565b6000602082840312156137145761371361458f565b5b600061372284828501613409565b91505092915050565b60006137378383613c4c565b60208301905092915050565b61374c816142c9565b82525050565b600061375d8261413d565b613767818561416b565b935061377283614118565b8060005b838110156137a357815161378a888261372b565b97506137958361415e565b925050600181019050613776565b5085935050505092915050565b6137b9816142db565b82525050565b60006137ca82614148565b6137d4818561417c565b93506137e481856020860161434c565b6137ed81614594565b840191505092915050565b600061380382614153565b61380d8185614198565b935061381d81856020860161434c565b61382681614594565b840191505092915050565b600061383c82614153565b61384681856141a9565b935061385681856020860161434c565b80840191505092915050565b6000815461386f8161437f565b61387981866141a9565b9450600182166000811461389457600181146138a5576138d8565b60ff198316865281860193506138d8565b6138ae85614128565b60005b838110156138d0578154818901526001820191506020810190506138b1565b838801955050505b50505092915050565b60006138ee602b83614198565b91506138f9826145a5565b604082019050919050565b6000613911603283614198565b915061391c826145f4565b604082019050919050565b6000613934602683614198565b915061393f82614643565b604082019050919050565b6000613957602583614198565b915061396282614692565b604082019050919050565b600061397a601c83614198565b9150613985826146e1565b602082019050919050565b600061399d601c83614198565b91506139a88261470a565b602082019050919050565b60006139c0602483614198565b91506139cb82614733565b604082019050919050565b60006139e3601983614198565b91506139ee82614782565b602082019050919050565b6000613a06602983614198565b9150613a11826147ab565b604082019050919050565b6000613a29601683614198565b9150613a34826147fa565b602082019050919050565b6000613a4c602483614198565b9150613a5782614823565b604082019050919050565b6000613a6f603e83614198565b9150613a7a82614872565b604082019050919050565b6000613a92602083614198565b9150613a9d826148c1565b602082019050919050565b6000613ab5602083614198565b9150613ac0826148ea565b602082019050919050565b6000613ad8601683614198565b9150613ae382614913565b602082019050919050565b6000613afb602f83614198565b9150613b068261493c565b604082019050919050565b6000613b1e601883614198565b9150613b298261498b565b602082019050919050565b6000613b41602183614198565b9150613b4c826149b4565b604082019050919050565b6000613b6460008361418d565b9150613b6f82614a03565b600082019050919050565b6000613b87601283614198565b9150613b9282614a06565b602082019050919050565b6000613baa602c83614198565b9150613bb582614a2f565b604082019050919050565b6000613bcd601783614198565b9150613bd882614a7e565b602082019050919050565b6000613bf0602e83614198565b9150613bfb82614aa7565b604082019050919050565b6000613c13601b83614198565b9150613c1e82614af6565b602082019050919050565b6000613c36601383614198565b9150613c4182614b1f565b602082019050919050565b613c5581614333565b82525050565b613c6481614333565b82525050565b6000613c768286613831565b9150613c828285613831565b9150613c8e8284613862565b9150819050949350505050565b6000613ca682613b57565b9150819050919050565b6000602082019050613cc56000830184613743565b92915050565b6000608082019050613ce06000830187613743565b613ced6020830186613743565b613cfa6040830185613c5b565b8181036060830152613d0c81846137bf565b905095945050505050565b60006020820190508181036000830152613d318184613752565b905092915050565b6000602082019050613d4e60008301846137b0565b92915050565b60006020820190508181036000830152613d6e81846137f8565b905092915050565b60006020820190508181036000830152613d8f816138e1565b9050919050565b60006020820190508181036000830152613daf81613904565b9050919050565b60006020820190508181036000830152613dcf81613927565b9050919050565b60006020820190508181036000830152613def8161394a565b9050919050565b60006020820190508181036000830152613e0f8161396d565b9050919050565b60006020820190508181036000830152613e2f81613990565b9050919050565b60006020820190508181036000830152613e4f816139b3565b9050919050565b60006020820190508181036000830152613e6f816139d6565b9050919050565b60006020820190508181036000830152613e8f816139f9565b9050919050565b60006020820190508181036000830152613eaf81613a1c565b9050919050565b60006020820190508181036000830152613ecf81613a3f565b9050919050565b60006020820190508181036000830152613eef81613a62565b9050919050565b60006020820190508181036000830152613f0f81613a85565b9050919050565b60006020820190508181036000830152613f2f81613aa8565b9050919050565b60006020820190508181036000830152613f4f81613acb565b9050919050565b60006020820190508181036000830152613f6f81613aee565b9050919050565b60006020820190508181036000830152613f8f81613b11565b9050919050565b60006020820190508181036000830152613faf81613b34565b9050919050565b60006020820190508181036000830152613fcf81613b7a565b9050919050565b60006020820190508181036000830152613fef81613b9d565b9050919050565b6000602082019050818103600083015261400f81613bc0565b9050919050565b6000602082019050818103600083015261402f81613be3565b9050919050565b6000602082019050818103600083015261404f81613c06565b9050919050565b6000602082019050818103600083015261406f81613c29565b9050919050565b600060208201905061408b6000830184613c5b565b92915050565b600061409b6140ac565b90506140a782826143b1565b919050565b6000604051905090565b600067ffffffffffffffff8211156140d1576140d0614547565b5b6140da82614594565b9050602081019050919050565b600067ffffffffffffffff82111561410257614101614547565b5b61410b82614594565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141bf82614333565b91506141ca83614333565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141ff576141fe61445c565b5b828201905092915050565b600061421582614333565b915061422083614333565b9250826142305761422f61448b565b5b828204905092915050565b600061424682614333565b915061425183614333565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428a5761428961445c565b5b828202905092915050565b60006142a082614333565b91506142ab83614333565b9250828210156142be576142bd61445c565b5b828203905092915050565b60006142d482614313565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561436a57808201518184015260208101905061434f565b83811115614379576000848401525b50505050565b6000600282049050600182168061439757607f821691505b602082108114156143ab576143aa6144ba565b5b50919050565b6143ba82614594565b810181811067ffffffffffffffff821117156143d9576143d8614547565b5b80604052505050565b60006143ed82614333565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144205761441f61445c565b5b600182019050919050565b600061443682614333565b915061444183614333565b9250826144515761445061448b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b614b51816142c9565b8114614b5c57600080fd5b50565b614b68816142db565b8114614b7357600080fd5b50565b614b7f816142e7565b8114614b8a57600080fd5b50565b614b9681614333565b8114614ba157600080fd5b5056fea2646970667358221220fba3db74b13b119930f4d94a7934b83f54fed6955fd87ce53aef06f0ac783c7964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): NFT
Arg [1] : _symbol (string): NFT
Arg [2] : _initBaseURI (string): NFT
Arg [3] : _initNotRevealedUri (string): NFT
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4e46540000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4e46540000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 4e46540000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 4e46540000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
46238:4935:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40010:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50686:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26744:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28257:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46437:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27774:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46470:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40650:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46773:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46545:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28957:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40318:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48815:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50767:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51021:148;;;:::i;:::-;;29364:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49060:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50118:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40840:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46659:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50326:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46629:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26455:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46369:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26186:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;50204:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26913:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46692:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47228:1567;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28500:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49933:65;;;;;;;;;;;;;:::i;:::-;;29620:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46731:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46583;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46395;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49414:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50006:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46508:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50430:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46315:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28726:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50870:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50560:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40010:224;40112:4;40151:35;40136:50;;;:11;:50;;;;:90;;;;40190:36;40214:11;40190:23;:36::i;:::-;40136:90;40129:97;;40010:224;;;:::o;50686:73::-;4511:13;:11;:13::i;:::-;50747:6:::1;50738;;:15;;;;;;;;;;;;;;;;;;50686:73:::0;:::o;26744:100::-;26798:13;26831:5;26824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26744:100;:::o;28257:171::-;28333:7;28353:23;28368:7;28353:14;:23::i;:::-;28396:15;:24;28412:7;28396:24;;;;;;;;;;;;;;;;;;;;;28389:31;;28257:171;;;:::o;46437:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27774:417::-;27855:13;27871:23;27886:7;27871:14;:23::i;:::-;27855:39;;27919:5;27913:11;;:2;:11;;;;27905:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28013:5;27997:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28022:37;28039:5;28046:12;:10;:12::i;:::-;28022:16;:37::i;:::-;27997:62;27975:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28162:21;28171:2;28175:7;28162:8;:21::i;:::-;27844:347;27774:417;;:::o;46470:33::-;;;;:::o;40650:113::-;40711:7;40738:10;:17;;;;40731:24;;40650:113;:::o;46773:55::-;;;;;;;;;;;;;;;;;:::o;46545:33::-;;;;:::o;28957:336::-;29152:41;29171:12;:10;:12::i;:::-;29185:7;29152:18;:41::i;:::-;29144:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29257:28;29267:4;29273:2;29277:7;29257:9;:28::i;:::-;28957:336;;;:::o;40318:256::-;40415:7;40451:23;40468:5;40451:16;:23::i;:::-;40443:5;:31;40435:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40540:12;:19;40553:5;40540:19;;;;;;;;;;;;;;;:26;40560:5;40540:26;;;;;;;;;;;;40533:33;;40318:256;;;;:::o;48815:239::-;48874:4;48892:6;48901:1;48892:10;;48887:143;48908:20;:27;;;;48904:1;:31;48887:143;;;48982:5;48955:32;;:20;48976:1;48955:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;48951:72;;;49009:4;49002:11;;;;;48951:72;48937:3;;;;;:::i;:::-;;;;48887:143;;;;49043:5;49036:12;;48815:239;;;;:::o;50767:95::-;4511:13;:11;:13::i;:::-;50850:6:::1;50832:15;;:24;;;;;;;;;;;;;;;;;;50767:95:::0;:::o;51021:148::-;4511:13;:11;:13::i;:::-;51074:7:::1;51095;:5;:7::i;:::-;51087:21;;51116;51087:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51073:69;;;51157:2;51149:11;;;::::0;::::1;;51066:103;51021:148::o:0;29364:185::-;29502:39;29519:4;29525:2;29529:7;29502:39;;;;;;;;;;;;:16;:39::i;:::-;29364:185;;;:::o;49060:348::-;49135:16;49163:23;49189:17;49199:6;49189:9;:17::i;:::-;49163:43;;49213:25;49255:15;49241:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49213:58;;49283:9;49278:103;49298:15;49294:1;:19;49278:103;;;49343:30;49363:6;49371:1;49343:19;:30::i;:::-;49329:8;49338:1;49329:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;49315:3;;;;;:::i;:::-;;;;49278:103;;;;49394:8;49387:15;;;;49060:348;;;:::o;50118:80::-;4511:13;:11;:13::i;:::-;50184:8:::1;50177:4;:15;;;;50118:80:::0;:::o;40840:233::-;40915:7;40951:30;:28;:30::i;:::-;40943:5;:38;40935:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41048:10;41059:5;41048:17;;;;;;;;:::i;:::-;;;;;;;;;;41041:24;;40840:233;;;:::o;46659:28::-;;;;;;;;;;;;;:::o;50326:98::-;4511:13;:11;:13::i;:::-;50407:11:::1;50397:7;:21;;;;;;;;;;;;:::i;:::-;;50326:98:::0;:::o;46629:25::-;;;;;;;;;;;;;:::o;26455:222::-;26527:7;26547:13;26563:7;:16;26571:7;26563:16;;;;;;;;;;;;;;;;;;;;;26547:32;;26615:1;26598:19;;:5;:19;;;;26590:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;26664:5;26657:12;;;26455:222;;;:::o;46369:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26186:207::-;26258:7;26303:1;26286:19;;:5;:19;;;;26278:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26369:9;:16;26379:5;26369:16;;;;;;;;;;;;;;;;26362:23;;26186:207;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;50204:116::-;4511:13;:11;:13::i;:::-;50297:17:::1;50281:13;:33;;;;50204:116:::0;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;26913:104::-;26969:13;27002:7;26995:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26913:104;:::o;46692:34::-;;;;;;;;;;;;;:::o;47228:1567::-;47294:6;;;;;;;;;;;47293:7;47285:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;47334:14;47351:13;:11;:13::i;:::-;47334:30;;47393:1;47379:11;:15;47371:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47456:13;;47441:11;:28;;47433:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;47549:9;;47534:11;47525:6;:20;;;;:::i;:::-;:33;;47517:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47658:15;:29;47674:12;:10;:12::i;:::-;47658:29;;;;;;;;;;;;;;;;;;;;;;;;;47654:562;;47755:1;47743:11;:13;47740:182;;;47884:1;47872:11;:13;;;;:::i;:::-;47864:4;;:22;;;;:::i;:::-;47851:9;:35;;47843:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;47740:182;48005:4;47975:15;:29;47991:12;:10;:12::i;:::-;47975:29;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;47654:562;;;48173:11;48166:4;;:18;;;;:::i;:::-;48153:9;:31;;48145:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47654:562;48242:7;:5;:7::i;:::-;48228:21;;:10;:21;;;48224:416;;48284:4;48265:23;;:15;;;;;;;;;;;:23;;;48262:298;;;48313:25;48327:10;48313:13;:25::i;:::-;48305:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48381:24;48408:20;:32;48429:10;48408:32;;;;;;;;;;;;;;;;48381:59;;48497:18;;48482:11;48463:16;:30;;;;:::i;:::-;:52;;48455:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;48290:270;48262:298;48598:11;48591:4;;:18;;;;:::i;:::-;48578:9;:31;;48570:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48224:416;48657:9;48669:1;48657:13;;48652:138;48677:11;48672:1;:16;48652:138;;48706:20;:32;48727:10;48706:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;48749:33;48759:10;48780:1;48771:6;:10;;;;:::i;:::-;48749:9;:33::i;:::-;48690:3;;;;;:::i;:::-;;;;48652:138;;;;47278:1517;47228:1567;:::o;28500:155::-;28595:52;28614:12;:10;:12::i;:::-;28628:8;28638;28595:18;:52::i;:::-;28500:155;;:::o;49933:65::-;4511:13;:11;:13::i;:::-;49988:4:::1;49977:8;;:15;;;;;;;;;;;;;;;;;;49933:65::o:0;29620:323::-;29794:41;29813:12;:10;:12::i;:::-;29827:7;29794:18;:41::i;:::-;29786:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29897:38;29911:4;29917:2;29921:7;29930:4;29897:13;:38::i;:::-;29620:323;;;;:::o;46731:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46583:::-;;;;:::o;46395:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49414:497::-;49512:13;49553:16;49561:7;49553;:16::i;:::-;49537:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;49662:5;49650:17;;:8;;;;;;;;;;;:17;;;49647:62;;;49687:14;49680:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49647:62;49717:28;49748:10;:8;:10::i;:::-;49717:41;;49803:1;49778:14;49772:28;:32;:133;;;;;;;;;;;;;;;;;49840:14;49856:18;:7;:16;:18::i;:::-;49876:13;49823:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49772:133;49765:140;;;49414:497;;;;:::o;50006:104::-;4511:13;:11;:13::i;:::-;50098:6:::1;50077:18;:27;;;;50006:104:::0;:::o;46508:32::-;;;;:::o;50430:122::-;4511:13;:11;:13::i;:::-;50529:17:::1;50513:13;:33;;;;;;;;;;;;:::i;:::-;;50430:122:::0;:::o;46315:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;28726:164::-;28823:4;28847:18;:25;28866:5;28847:25;;;;;;;;;;;;;;;:35;28873:8;28847:35;;;;;;;;;;;;;;;;;;;;;;;;;28840:42;;28726:164;;;;:::o;50870:144::-;4511:13;:11;:13::i;:::-;50952:20:::1;;50945:27;;;;:::i;:::-;51002:6;;50979:20;:29;;;;;;;:::i;:::-;;50870:144:::0;;:::o;50560:120::-;4511:13;:11;:13::i;:::-;50659:15:::1;50642:14;:32;;;;;;;;;;;;:::i;:::-;;50560:120:::0;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;25817:305::-;25919:4;25971:25;25956:40;;;:11;:40;;;;:105;;;;26028:33;26013:48;;;:11;:48;;;;25956:105;:158;;;;26078:36;26102:11;26078:23;:36::i;:::-;25956:158;25936:178;;25817:305;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;36232:135::-;36314:16;36322:7;36314;:16::i;:::-;36306:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36232:135;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;35511:174::-;35613:2;35586:15;:24;35602:7;35586:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35669:7;35665:2;35631:46;;35640:23;35655:7;35640:14;:23::i;:::-;35631:46;;;;;;;;;;;;35511:174;;:::o;31744:264::-;31837:4;31854:13;31870:23;31885:7;31870:14;:23::i;:::-;31854:39;;31923:5;31912:16;;:7;:16;;;:52;;;;31932:32;31949:5;31956:7;31932:16;:32::i;:::-;31912:52;:87;;;;31992:7;31968:31;;:20;31980:7;31968:11;:20::i;:::-;:31;;;31912:87;31904:96;;;31744:264;;;;:::o;34767:625::-;34926:4;34899:31;;:23;34914:7;34899:14;:23::i;:::-;:31;;;34891:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35005:1;34991:16;;:2;:16;;;;34983:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35061:39;35082:4;35088:2;35092:7;35061:20;:39::i;:::-;35165:29;35182:1;35186:7;35165:8;:29::i;:::-;35226:1;35207:9;:15;35217:4;35207:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35255:1;35238:9;:13;35248:2;35238:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35286:2;35267:7;:16;35275:7;35267:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35325:7;35321:2;35306:27;;35315:4;35306:27;;;;;;;;;;;;35346:38;35366:4;35372:2;35376:7;35346:19;:38::i;:::-;34767:625;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;32350:110::-;32426:26;32436:2;32440:7;32426:26;;;;;;;;;;;;:9;:26::i;:::-;32350:110;;:::o;35828:315::-;35983:8;35974:17;;:5;:17;;;;35966:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36070:8;36032:18;:25;36051:5;36032:25;;;;;;;;;;;;;;;:35;36058:8;36032:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36116:8;36094:41;;36109:5;36094:41;;;36126:8;36094:41;;;;;;:::i;:::-;;;;;;;;35828:315;;;:::o;30824:313::-;30980:28;30990:4;30996:2;31000:7;30980:9;:28::i;:::-;31027:47;31050:4;31056:2;31060:7;31069:4;31027:22;:47::i;:::-;31019:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30824:313;;;;:::o;31450:127::-;31515:4;31567:1;31539:30;;:7;:16;31547:7;31539:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31532:37;;31450:127;;;:::o;47107:102::-;47167:13;47196:7;47189:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47107:102;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;17479:157::-;17564:4;17603:25;17588:40;;;:11;:40;;;;17581:47;;17479:157;;;:::o;41686:589::-;41830:45;41857:4;41863:2;41867:7;41830:26;:45::i;:::-;41908:1;41892:18;;:4;:18;;;41888:187;;;41927:40;41959:7;41927:31;:40::i;:::-;41888:187;;;41997:2;41989:10;;:4;:10;;;41985:90;;42016:47;42049:4;42055:7;42016:32;:47::i;:::-;41985:90;41888:187;42103:1;42089:16;;:2;:16;;;42085:183;;;42122:45;42159:7;42122:36;:45::i;:::-;42085:183;;;42195:4;42189:10;;:2;:10;;;42185:83;;42216:40;42244:2;42248:7;42216:27;:40::i;:::-;42185:83;42085:183;41686:589;;;:::o;38867:125::-;;;;:::o;32687:319::-;32816:18;32822:2;32826:7;32816:5;:18::i;:::-;32867:53;32898:1;32902:2;32906:7;32915:4;32867:22;:53::i;:::-;32845:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;32687:319;;;:::o;36931:853::-;37085:4;37106:15;:2;:13;;;:15::i;:::-;37102:675;;;37158:2;37142:36;;;37179:12;:10;:12::i;:::-;37193:4;37199:7;37208:4;37142:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37138:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37400:1;37383:6;:13;:18;37379:328;;;37426:60;;;;;;;;;;:::i;:::-;;;;;;;;37379:328;37657:6;37651:13;37642:6;37638:2;37634:15;37627:38;37138:584;37274:41;;;37264:51;;;:6;:51;;;;37257:58;;;;;37102:675;37761:4;37754:11;;36931:853;;;;;;;:::o;38356:126::-;;;;:::o;42998:164::-;43102:10;:17;;;;43075:15;:24;43091:7;43075:24;;;;;;;;;;;:44;;;;43130:10;43146:7;43130:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42998:164;:::o;43789:988::-;44055:22;44105:1;44080:22;44097:4;44080:16;:22::i;:::-;:26;;;;:::i;:::-;44055:51;;44117:18;44138:17;:26;44156:7;44138:26;;;;;;;;;;;;44117:47;;44285:14;44271:10;:28;44267:328;;44316:19;44338:12;:18;44351:4;44338:18;;;;;;;;;;;;;;;:34;44357:14;44338:34;;;;;;;;;;;;44316:56;;44422:11;44389:12;:18;44402:4;44389:18;;;;;;;;;;;;;;;:30;44408:10;44389:30;;;;;;;;;;;:44;;;;44539:10;44506:17;:30;44524:11;44506:30;;;;;;;;;;;:43;;;;44301:294;44267:328;44691:17;:26;44709:7;44691:26;;;;;;;;;;;44684:33;;;44735:12;:18;44748:4;44735:18;;;;;;;;;;;;;;;:34;44754:14;44735:34;;;;;;;;;;;44728:41;;;43870:907;;43789:988;;:::o;45072:1079::-;45325:22;45370:1;45350:10;:17;;;;:21;;;;:::i;:::-;45325:46;;45382:18;45403:15;:24;45419:7;45403:24;;;;;;;;;;;;45382:45;;45754:19;45776:10;45787:14;45776:26;;;;;;;;:::i;:::-;;;;;;;;;;45754:48;;45840:11;45815:10;45826;45815:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45951:10;45920:15;:28;45936:11;45920:28;;;;;;;;;;;:41;;;;46092:15;:24;46108:7;46092:24;;;;;;;;;;;46085:31;;;46127:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45143:1008;;;45072:1079;:::o;42576:221::-;42661:14;42678:20;42695:2;42678:16;:20::i;:::-;42661:37;;42736:7;42709:12;:16;42722:2;42709:16;;;;;;;;;;;;;;;:24;42726:6;42709:24;;;;;;;;;;;:34;;;;42783:6;42754:17;:26;42772:7;42754:26;;;;;;;;;;;:35;;;;42650:147;42576:221;;:::o;33342:439::-;33436:1;33422:16;;:2;:16;;;;33414:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33495:16;33503:7;33495;:16::i;:::-;33494:17;33486:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33557:45;33586:1;33590:2;33594:7;33557:20;:45::i;:::-;33632:1;33615:9;:13;33625:2;33615:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33663:2;33644:7;:16;33652:7;33644:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33708:7;33704:2;33683:33;;33700:1;33683:33;;;;;;;;;;;;33729:44;33757:1;33761:2;33765:7;33729:19;:44::i;:::-;33342:439;;:::o;7323:326::-;7383:4;7640:1;7618:7;:19;;;:23;7611:30;;7323:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17409:366;;;:::o;17781:::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:::-;18295:3;18316:67;18380:2;18375:3;18316:67;:::i;:::-;18309:74;;18392:93;18481:3;18392:93;:::i;:::-;18510:2;18505:3;18501:12;18494:19;;18153:366;;;:::o;18525:398::-;18684:3;18705:83;18786:1;18781:3;18705:83;:::i;:::-;18698:90;;18797:93;18886:3;18797:93;:::i;:::-;18915:1;18910:3;18906:11;18899:18;;18525:398;;;:::o;18929:366::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19301:::-;19443:3;19464:67;19528:2;19523:3;19464:67;:::i;:::-;19457:74;;19540:93;19629:3;19540:93;:::i;:::-;19658:2;19653:3;19649:12;19642:19;;19301:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20045:::-;20187:3;20208:67;20272:2;20267:3;20208:67;:::i;:::-;20201:74;;20284:93;20373:3;20284:93;:::i;:::-;20402:2;20397:3;20393:12;20386:19;;20045:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:108::-;21238:24;21256:5;21238:24;:::i;:::-;21233:3;21226:37;21161:108;;:::o;21275:118::-;21362:24;21380:5;21362:24;:::i;:::-;21357:3;21350:37;21275:118;;:::o;21399:589::-;21624:3;21646:95;21737:3;21728:6;21646:95;:::i;:::-;21639:102;;21758:95;21849:3;21840:6;21758:95;:::i;:::-;21751:102;;21870:92;21958:3;21949:6;21870:92;:::i;:::-;21863:99;;21979:3;21972:10;;21399:589;;;;;;:::o;21994:379::-;22178:3;22200:147;22343:3;22200:147;:::i;:::-;22193:154;;22364:3;22357:10;;21994:379;;;:::o;22379:222::-;22472:4;22510:2;22499:9;22495:18;22487:26;;22523:71;22591:1;22580:9;22576:17;22567:6;22523:71;:::i;:::-;22379:222;;;;:::o;22607:640::-;22802:4;22840:3;22829:9;22825:19;22817:27;;22854:71;22922:1;22911:9;22907:17;22898:6;22854:71;:::i;:::-;22935:72;23003:2;22992:9;22988:18;22979:6;22935:72;:::i;:::-;23017;23085:2;23074:9;23070:18;23061:6;23017:72;:::i;:::-;23136:9;23130:4;23126:20;23121:2;23110:9;23106:18;23099:48;23164:76;23235:4;23226:6;23164:76;:::i;:::-;23156:84;;22607:640;;;;;;;:::o;23253:373::-;23396:4;23434:2;23423:9;23419:18;23411:26;;23483:9;23477:4;23473:20;23469:1;23458:9;23454:17;23447:47;23511:108;23614:4;23605:6;23511:108;:::i;:::-;23503:116;;23253:373;;;;:::o;23632:210::-;23719:4;23757:2;23746:9;23742:18;23734:26;;23770:65;23832:1;23821:9;23817:17;23808:6;23770:65;:::i;:::-;23632:210;;;;:::o;23848:313::-;23961:4;23999:2;23988:9;23984:18;23976:26;;24048:9;24042:4;24038:20;24034:1;24023:9;24019:17;24012:47;24076:78;24149:4;24140:6;24076:78;:::i;:::-;24068:86;;23848:313;;;;:::o;24167:419::-;24333:4;24371:2;24360:9;24356:18;24348:26;;24420:9;24414:4;24410:20;24406:1;24395:9;24391:17;24384:47;24448:131;24574:4;24448:131;:::i;:::-;24440:139;;24167:419;;;:::o;24592:::-;24758:4;24796:2;24785:9;24781:18;24773:26;;24845:9;24839:4;24835:20;24831:1;24820:9;24816:17;24809:47;24873:131;24999:4;24873:131;:::i;:::-;24865:139;;24592:419;;;:::o;25017:::-;25183:4;25221:2;25210:9;25206:18;25198:26;;25270:9;25264:4;25260:20;25256:1;25245:9;25241:17;25234:47;25298:131;25424:4;25298:131;:::i;:::-;25290:139;;25017:419;;;:::o;25442:::-;25608:4;25646:2;25635:9;25631:18;25623:26;;25695:9;25689:4;25685:20;25681:1;25670:9;25666:17;25659:47;25723:131;25849:4;25723:131;:::i;:::-;25715:139;;25442:419;;;:::o;25867:::-;26033:4;26071:2;26060:9;26056:18;26048:26;;26120:9;26114:4;26110:20;26106:1;26095:9;26091:17;26084:47;26148:131;26274:4;26148:131;:::i;:::-;26140:139;;25867:419;;;:::o;26292:::-;26458:4;26496:2;26485:9;26481:18;26473:26;;26545:9;26539:4;26535:20;26531:1;26520:9;26516:17;26509:47;26573:131;26699:4;26573:131;:::i;:::-;26565:139;;26292:419;;;:::o;26717:::-;26883:4;26921:2;26910:9;26906:18;26898:26;;26970:9;26964:4;26960:20;26956:1;26945:9;26941:17;26934:47;26998:131;27124:4;26998:131;:::i;:::-;26990:139;;26717:419;;;:::o;27142:::-;27308:4;27346:2;27335:9;27331:18;27323:26;;27395:9;27389:4;27385:20;27381:1;27370:9;27366:17;27359:47;27423:131;27549:4;27423:131;:::i;:::-;27415:139;;27142:419;;;:::o;27567:::-;27733:4;27771:2;27760:9;27756:18;27748:26;;27820:9;27814:4;27810:20;27806:1;27795:9;27791:17;27784:47;27848:131;27974:4;27848:131;:::i;:::-;27840:139;;27567:419;;;:::o;27992:::-;28158:4;28196:2;28185:9;28181:18;28173:26;;28245:9;28239:4;28235:20;28231:1;28220:9;28216:17;28209:47;28273:131;28399:4;28273:131;:::i;:::-;28265:139;;27992:419;;;:::o;28417:::-;28583:4;28621:2;28610:9;28606:18;28598:26;;28670:9;28664:4;28660:20;28656:1;28645:9;28641:17;28634:47;28698:131;28824:4;28698:131;:::i;:::-;28690:139;;28417:419;;;:::o;28842:::-;29008:4;29046:2;29035:9;29031:18;29023:26;;29095:9;29089:4;29085:20;29081:1;29070:9;29066:17;29059:47;29123:131;29249:4;29123:131;:::i;:::-;29115:139;;28842:419;;;:::o;29267:::-;29433:4;29471:2;29460:9;29456:18;29448:26;;29520:9;29514:4;29510:20;29506:1;29495:9;29491:17;29484:47;29548:131;29674:4;29548:131;:::i;:::-;29540:139;;29267:419;;;:::o;29692:::-;29858:4;29896:2;29885:9;29881:18;29873:26;;29945:9;29939:4;29935:20;29931:1;29920:9;29916:17;29909:47;29973:131;30099:4;29973:131;:::i;:::-;29965:139;;29692:419;;;:::o;30117:::-;30283:4;30321:2;30310:9;30306:18;30298:26;;30370:9;30364:4;30360:20;30356:1;30345:9;30341:17;30334:47;30398:131;30524:4;30398:131;:::i;:::-;30390:139;;30117:419;;;:::o;30542:::-;30708:4;30746:2;30735:9;30731:18;30723:26;;30795:9;30789:4;30785:20;30781:1;30770:9;30766:17;30759:47;30823:131;30949:4;30823:131;:::i;:::-;30815:139;;30542:419;;;:::o;30967:::-;31133:4;31171:2;31160:9;31156:18;31148:26;;31220:9;31214:4;31210:20;31206:1;31195:9;31191:17;31184:47;31248:131;31374:4;31248:131;:::i;:::-;31240:139;;30967:419;;;:::o;31392:::-;31558:4;31596:2;31585:9;31581:18;31573:26;;31645:9;31639:4;31635:20;31631:1;31620:9;31616:17;31609:47;31673:131;31799:4;31673:131;:::i;:::-;31665:139;;31392:419;;;:::o;31817:::-;31983:4;32021:2;32010:9;32006:18;31998:26;;32070:9;32064:4;32060:20;32056:1;32045:9;32041:17;32034:47;32098:131;32224:4;32098:131;:::i;:::-;32090:139;;31817:419;;;:::o;32242:::-;32408:4;32446:2;32435:9;32431:18;32423:26;;32495:9;32489:4;32485:20;32481:1;32470:9;32466:17;32459:47;32523:131;32649:4;32523:131;:::i;:::-;32515:139;;32242:419;;;:::o;32667:::-;32833:4;32871:2;32860:9;32856:18;32848:26;;32920:9;32914:4;32910:20;32906:1;32895:9;32891:17;32884:47;32948:131;33074:4;32948:131;:::i;:::-;32940:139;;32667:419;;;:::o;33092:::-;33258:4;33296:2;33285:9;33281:18;33273:26;;33345:9;33339:4;33335:20;33331:1;33320:9;33316:17;33309:47;33373:131;33499:4;33373:131;:::i;:::-;33365:139;;33092:419;;;:::o;33517:::-;33683:4;33721:2;33710:9;33706:18;33698:26;;33770:9;33764:4;33760:20;33756:1;33745:9;33741:17;33734:47;33798:131;33924:4;33798:131;:::i;:::-;33790:139;;33517:419;;;:::o;33942:::-;34108:4;34146:2;34135:9;34131:18;34123:26;;34195:9;34189:4;34185:20;34181:1;34170:9;34166:17;34159:47;34223:131;34349:4;34223:131;:::i;:::-;34215:139;;33942:419;;;:::o;34367:222::-;34460:4;34498:2;34487:9;34483:18;34475:26;;34511:71;34579:1;34568:9;34564:17;34555:6;34511:71;:::i;:::-;34367:222;;;;:::o;34595:129::-;34629:6;34656:20;;:::i;:::-;34646:30;;34685:33;34713:4;34705:6;34685:33;:::i;:::-;34595:129;;;:::o;34730:75::-;34763:6;34796:2;34790:9;34780:19;;34730:75;:::o;34811:307::-;34872:4;34962:18;34954:6;34951:30;34948:56;;;34984:18;;:::i;:::-;34948:56;35022:29;35044:6;35022:29;:::i;:::-;35014:37;;35106:4;35100;35096:15;35088:23;;34811:307;;;:::o;35124:308::-;35186:4;35276:18;35268:6;35265:30;35262:56;;;35298:18;;:::i;:::-;35262:56;35336:29;35358:6;35336:29;:::i;:::-;35328:37;;35420:4;35414;35410:15;35402:23;;35124:308;;;:::o;35438:132::-;35505:4;35528:3;35520:11;;35558:4;35553:3;35549:14;35541:22;;35438:132;;;:::o;35576:141::-;35625:4;35648:3;35640:11;;35671:3;35668:1;35661:14;35705:4;35702:1;35692:18;35684:26;;35576:141;;;:::o;35723:114::-;35790:6;35824:5;35818:12;35808:22;;35723:114;;;:::o;35843:98::-;35894:6;35928:5;35922:12;35912:22;;35843:98;;;:::o;35947:99::-;35999:6;36033:5;36027:12;36017:22;;35947:99;;;:::o;36052:113::-;36122:4;36154;36149:3;36145:14;36137:22;;36052:113;;;:::o;36171:184::-;36270:11;36304:6;36299:3;36292:19;36344:4;36339:3;36335:14;36320:29;;36171:184;;;;:::o;36361:168::-;36444:11;36478:6;36473:3;36466:19;36518:4;36513:3;36509:14;36494:29;;36361:168;;;;:::o;36535:147::-;36636:11;36673:3;36658:18;;36535:147;;;;:::o;36688:169::-;36772:11;36806:6;36801:3;36794:19;36846:4;36841:3;36837:14;36822:29;;36688:169;;;;:::o;36863:148::-;36965:11;37002:3;36987:18;;36863:148;;;;:::o;37017:305::-;37057:3;37076:20;37094:1;37076:20;:::i;:::-;37071:25;;37110:20;37128:1;37110:20;:::i;:::-;37105:25;;37264:1;37196:66;37192:74;37189:1;37186:81;37183:107;;;37270:18;;:::i;:::-;37183:107;37314:1;37311;37307:9;37300:16;;37017:305;;;;:::o;37328:185::-;37368:1;37385:20;37403:1;37385:20;:::i;:::-;37380:25;;37419:20;37437:1;37419:20;:::i;:::-;37414:25;;37458:1;37448:35;;37463:18;;:::i;:::-;37448:35;37505:1;37502;37498:9;37493:14;;37328:185;;;;:::o;37519:348::-;37559:7;37582:20;37600:1;37582:20;:::i;:::-;37577:25;;37616:20;37634:1;37616:20;:::i;:::-;37611:25;;37804:1;37736:66;37732:74;37729:1;37726:81;37721:1;37714:9;37707:17;37703:105;37700:131;;;37811:18;;:::i;:::-;37700:131;37859:1;37856;37852:9;37841:20;;37519:348;;;;:::o;37873:191::-;37913:4;37933:20;37951:1;37933:20;:::i;:::-;37928:25;;37967:20;37985:1;37967:20;:::i;:::-;37962:25;;38006:1;38003;38000:8;37997:34;;;38011:18;;:::i;:::-;37997:34;38056:1;38053;38049:9;38041:17;;37873:191;;;;:::o;38070:96::-;38107:7;38136:24;38154:5;38136:24;:::i;:::-;38125:35;;38070:96;;;:::o;38172:90::-;38206:7;38249:5;38242:13;38235:21;38224:32;;38172:90;;;:::o;38268:149::-;38304:7;38344:66;38337:5;38333:78;38322:89;;38268:149;;;:::o;38423:126::-;38460:7;38500:42;38493:5;38489:54;38478:65;;38423:126;;;:::o;38555:77::-;38592:7;38621:5;38610:16;;38555:77;;;:::o;38638:154::-;38722:6;38717:3;38712;38699:30;38784:1;38775:6;38770:3;38766:16;38759:27;38638:154;;;:::o;38798:307::-;38866:1;38876:113;38890:6;38887:1;38884:13;38876:113;;;38975:1;38970:3;38966:11;38960:18;38956:1;38951:3;38947:11;38940:39;38912:2;38909:1;38905:10;38900:15;;38876:113;;;39007:6;39004:1;39001:13;38998:101;;;39087:1;39078:6;39073:3;39069:16;39062:27;38998:101;38847:258;38798:307;;;:::o;39111:320::-;39155:6;39192:1;39186:4;39182:12;39172:22;;39239:1;39233:4;39229:12;39260:18;39250:81;;39316:4;39308:6;39304:17;39294:27;;39250:81;39378:2;39370:6;39367:14;39347:18;39344:38;39341:84;;;39397:18;;:::i;:::-;39341:84;39162:269;39111:320;;;:::o;39437:281::-;39520:27;39542:4;39520:27;:::i;:::-;39512:6;39508:40;39650:6;39638:10;39635:22;39614:18;39602:10;39599:34;39596:62;39593:88;;;39661:18;;:::i;:::-;39593:88;39701:10;39697:2;39690:22;39480:238;39437:281;;:::o;39724:233::-;39763:3;39786:24;39804:5;39786:24;:::i;:::-;39777:33;;39832:66;39825:5;39822:77;39819:103;;;39902:18;;:::i;:::-;39819:103;39949:1;39942:5;39938:13;39931:20;;39724:233;;;:::o;39963:176::-;39995:1;40012:20;40030:1;40012:20;:::i;:::-;40007:25;;40046:20;40064:1;40046:20;:::i;:::-;40041:25;;40085:1;40075:35;;40090:18;;:::i;:::-;40075:35;40131:1;40128;40124:9;40119:14;;39963:176;;;;:::o;40145:180::-;40193:77;40190:1;40183:88;40290:4;40287:1;40280:15;40314:4;40311:1;40304:15;40331:180;40379:77;40376:1;40369:88;40476:4;40473:1;40466:15;40500:4;40497:1;40490:15;40517:180;40565:77;40562:1;40555:88;40662:4;40659:1;40652:15;40686:4;40683:1;40676:15;40703:180;40751:77;40748:1;40741:88;40848:4;40845:1;40838:15;40872:4;40869:1;40862:15;40889:180;40937:77;40934:1;40927:88;41034:4;41031:1;41024:15;41058:4;41055:1;41048:15;41075:180;41123:77;41120:1;41113:88;41220:4;41217:1;41210:15;41244:4;41241:1;41234:15;41261:117;41370:1;41367;41360:12;41384:117;41493:1;41490;41483:12;41507:117;41616:1;41613;41606:12;41630:117;41739:1;41736;41729:12;41753:117;41862:1;41859;41852:12;41876:117;41985:1;41982;41975:12;41999:102;42040:6;42091:2;42087:7;42082:2;42075:5;42071:14;42067:28;42057:38;;41999:102;;;:::o;42107:230::-;42247:34;42243:1;42235:6;42231:14;42224:58;42316:13;42311:2;42303:6;42299:15;42292:38;42107:230;:::o;42343:237::-;42483:34;42479:1;42471:6;42467:14;42460:58;42552:20;42547:2;42539:6;42535:15;42528:45;42343:237;:::o;42586:225::-;42726:34;42722:1;42714:6;42710:14;42703:58;42795:8;42790:2;42782:6;42778:15;42771:33;42586:225;:::o;42817:224::-;42957:34;42953:1;42945:6;42941:14;42934:58;43026:7;43021:2;43013:6;43009:15;43002:32;42817:224;:::o;43047:178::-;43187:30;43183:1;43175:6;43171:14;43164:54;43047:178;:::o;43231:::-;43371:30;43367:1;43359:6;43355:14;43348:54;43231:178;:::o;43415:223::-;43555:34;43551:1;43543:6;43539:14;43532:58;43624:6;43619:2;43611:6;43607:15;43600:31;43415:223;:::o;43644:175::-;43784:27;43780:1;43772:6;43768:14;43761:51;43644:175;:::o;43825:228::-;43965:34;43961:1;43953:6;43949:14;43942:58;44034:11;44029:2;44021:6;44017:15;44010:36;43825:228;:::o;44059:172::-;44199:24;44195:1;44187:6;44183:14;44176:48;44059:172;:::o;44237:223::-;44377:34;44373:1;44365:6;44361:14;44354:58;44446:6;44441:2;44433:6;44429:15;44422:31;44237:223;:::o;44466:249::-;44606:34;44602:1;44594:6;44590:14;44583:58;44675:32;44670:2;44662:6;44658:15;44651:57;44466:249;:::o;44721:182::-;44861:34;44857:1;44849:6;44845:14;44838:58;44721:182;:::o;44909:::-;45049:34;45045:1;45037:6;45033:14;45026:58;44909:182;:::o;45097:172::-;45237:24;45233:1;45225:6;45221:14;45214:48;45097:172;:::o;45275:234::-;45415:34;45411:1;45403:6;45399:14;45392:58;45484:17;45479:2;45471:6;45467:15;45460:42;45275:234;:::o;45515:174::-;45655:26;45651:1;45643:6;45639:14;45632:50;45515:174;:::o;45695:220::-;45835:34;45831:1;45823:6;45819:14;45812:58;45904:3;45899:2;45891:6;45887:15;45880:28;45695:220;:::o;45921:114::-;;:::o;46041:168::-;46181:20;46177:1;46169:6;46165:14;46158:44;46041:168;:::o;46215:231::-;46355:34;46351:1;46343:6;46339:14;46332:58;46424:14;46419:2;46411:6;46407:15;46400:39;46215:231;:::o;46452:173::-;46592:25;46588:1;46580:6;46576:14;46569:49;46452:173;:::o;46631:233::-;46771:34;46767:1;46759:6;46755:14;46748:58;46840:16;46835:2;46827:6;46823:15;46816:41;46631:233;:::o;46870:177::-;47010:29;47006:1;46998:6;46994:14;46987:53;46870:177;:::o;47053:169::-;47193:21;47189:1;47181:6;47177:14;47170:45;47053:169;:::o;47228:122::-;47301:24;47319:5;47301:24;:::i;:::-;47294:5;47291:35;47281:63;;47340:1;47337;47330:12;47281:63;47228:122;:::o;47356:116::-;47426:21;47441:5;47426:21;:::i;:::-;47419:5;47416:32;47406:60;;47462:1;47459;47452:12;47406:60;47356:116;:::o;47478:120::-;47550:23;47567:5;47550:23;:::i;:::-;47543:5;47540:34;47530:62;;47588:1;47585;47578:12;47530:62;47478:120;:::o;47604:122::-;47677:24;47695:5;47677:24;:::i;:::-;47670:5;47667:35;47657:63;;47716:1;47713;47706:12;47657:63;47604:122;:::o
Swarm Source
ipfs://fba3db74b13b119930f4d94a7934b83f54fed6955fd87ce53aef06f0ac783c79
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.