ERC-721
Overview
Max Total Supply
181 FRC
Holders
59
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FRCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // MIT // 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/extensions/[email protected] // MIT // 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/utils/[email protected] // MIT // OpenZeppelin Contracts (last updated v4.5.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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // MIT // 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 erc721a/contracts/[email protected] // MIT // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File @openzeppelin/contracts/access/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/security/[email protected] // MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } //MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File contracts/NFT.sol // GPL-3.0 pragma solidity ^0.8.0; error NotInWhitelist(); error InvalidAmountOfEthers(); error CantSendEthersToWallet(); error LimitExceeded(); error PrivateSaleNotStarted(); contract NFT is ERC721A, Ownable, Pausable { using Counters for Counters.Counter; uint256 public immutable totalNFTSupply; uint256 public immutable mintPrice; uint256 public constant _maxCountMint = 5; string private _baseURIAddress; address private immutable _wallet; address public _address_5 = 0xa106bFed8dC68537953e3FdAf9DfD878Bb143066; address public _address_95 = 0x67c7d06ED1AF133b96deE4399F249623E7F4E087; // whitelist bytes32 private _merkleRoot; bool public isPrivateSale; mapping(address => uint256) private _walletMintCount; constructor( string memory _name, string memory _symbol, uint256 _totalSupply, uint256 _mintPrice, address wallet_, string memory baseURIAddress_, bytes32 merkleRoot, bool isPrivate ) ERC721A(_name, _symbol) { totalNFTSupply = _totalSupply; mintPrice = _mintPrice; _wallet = wallet_; _baseURIAddress = baseURIAddress_; _merkleRoot = merkleRoot; isPrivateSale = isPrivate; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setMerkleRoot(bytes32 merkleRoot_) public onlyOwner { _merkleRoot = merkleRoot_; } function setPrivate() public onlyOwner { isPrivateSale = true; } function setPublic() public onlyOwner { isPrivateSale = false; } function getSaleStatus() public view returns (bool) { return isPrivateSale; } function changeBaseURI(string memory baseURI_) public onlyOwner { _baseURIAddress = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIAddress; } function getPrice(uint256 _count) public view returns (uint256) { return _count * mintPrice; } function getCountWalletNft() public view returns (uint) { return _walletMintCount[_msgSender()]; } function ownerMint(address _to, uint256 _count) public payable onlyOwner { _safeMint(_to, _count); } function privateMint(uint256 _count, bytes32[] calldata _merkleProof) public whenNotPaused payable validateProof(_merkleProof){ require((getCountWalletNft() + _count) <= _maxCountMint, "You cant by nft."); require((totalSupply() + _count) <= totalNFTSupply, "Total supply exceeded. Use less amount."); uint costWei = getPrice(_count); require(msg.value >= costWei, "Not enough ethers to buy"); _walletMintCount[_msgSender()] += _count; _safeMint(_msgSender(), _count); } function publicMint(uint256 _count) public whenNotPaused payable { require(!isPrivateSale, "Buying nft is only available for private"); require((getCountWalletNft() + _count) <= _maxCountMint, "You cant by nft."); require((totalSupply() + _count) <= totalNFTSupply, "Total supply exceeded. Use less amount."); uint costWei = getPrice(_count); require(msg.value >= costWei, "Not enough ethers to buy"); _walletMintCount[_msgSender()] += _count; _safeMint(_msgSender(), _count); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } modifier validateProof(bytes32[] calldata _merkleProof) { if (isPrivateSale) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); if (!MerkleProof.verify(_merkleProof, _merkleRoot, leaf)) { revert NotInWhitelist(); } } _; } function withdraw() public onlyOwner { uint bal = address(this).balance; uint _5_expenses = bal / 20; // 1/20 = 5% bal = bal -_5_expenses; require(payable(_address_5).send(_5_expenses)); require(payable(_address_95).send(bal)); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"address","name":"wallet_","type":"address"},{"internalType":"string","name":"baseURIAddress_","type":"string"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"bool","name":"isPrivate","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotInWhitelist","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_address_5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_address_95","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxCountMint","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":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCountWalletNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPrivateSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPrivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublic","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNFTSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405273a106bfed8dc68537953e3fdaf9dfd878bb143066600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507367c7d06ed1af133b96dee4399f249623e7f4e087600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bb57600080fd5b5060405162004922380380620049228339818101604052810190620000e1919062000458565b87878160029080519060200190620000fb929190620002ce565b50806003908051906020019062000114929190620002ce565b5062000125620001f760201b60201c565b60008190555050506200014d620001416200020060201b60201c565b6200020860201b60201c565b6000600860146101000a81548160ff02191690831515021790555085608081815250508460a081815250508373ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508260099080519060200190620001c7929190620002ce565b5081600c8190555080600d60006101000a81548160ff0219169083151502179055505050505050505050620007be565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002dc9062000667565b90600052602060002090601f0160209004810192826200030057600085556200034c565b82601f106200031b57805160ff19168380011785556200034c565b828001600101855582156200034c579182015b828111156200034b5782518255916020019190600101906200032e565b5b5090506200035b91906200035f565b5090565b5b808211156200037a57600081600090555060010162000360565b5090565b6000620003956200038f84620005a7565b6200057e565b905082815260208101848484011115620003b457620003b362000736565b5b620003c184828562000631565b509392505050565b600081519050620003da8162000756565b92915050565b600081519050620003f18162000770565b92915050565b60008151905062000408816200078a565b92915050565b600082601f83011262000426576200042562000731565b5b8151620004388482602086016200037e565b91505092915050565b6000815190506200045281620007a4565b92915050565b600080600080600080600080610100898b0312156200047c576200047b62000740565b5b600089015167ffffffffffffffff8111156200049d576200049c6200073b565b5b620004ab8b828c016200040e565b985050602089015167ffffffffffffffff811115620004cf57620004ce6200073b565b5b620004dd8b828c016200040e565b9750506040620004f08b828c0162000441565b9650506060620005038b828c0162000441565b9550506080620005168b828c01620003c9565b94505060a089015167ffffffffffffffff8111156200053a57620005396200073b565b5b620005488b828c016200040e565b93505060c06200055b8b828c01620003f7565b92505060e06200056e8b828c01620003e0565b9150509295985092959890939650565b60006200058a6200059d565b90506200059882826200069d565b919050565b6000604051905090565b600067ffffffffffffffff821115620005c557620005c462000702565b5b620005d08262000745565b9050602081019050919050565b6000620005ea8262000607565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200065157808201518184015260208101905062000634565b8381111562000661576000848401525b50505050565b600060028204905060018216806200068057607f821691505b60208210811415620006975762000696620006d3565b5b50919050565b620006a88262000745565b810181811067ffffffffffffffff82111715620006ca57620006c962000702565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200076181620005dd565b81146200076d57600080fd5b50565b6200077b81620005f1565b81146200078757600080fd5b50565b6200079581620005fd565b8114620007a157600080fd5b50565b620007af8162000627565b8114620007bb57600080fd5b50565b60805160a05160c05160601c61411f6200080360003960005050600081816111910152611b58015260008181610d030152818161190a0152611b32015261411f6000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a7d6eb87116100ab578063c87b56dd1161006f578063c87b56dd14610714578063e2c7928114610751578063e75722301461077c578063e985e9c5146107b9578063f2fde38b146107f65761021a565b8063a7d6eb871461064e578063b01335be14610679578063b88d4fde146106a4578063b977fe55146106cd578063c6a022d7146106e95761021a565b80638456cb59116100f25780638456cb591461058d5780638c3c4b34146105a45780638da5cb5b146105cf57806395d89b41146105fa578063a22cb465146106255761021a565b806370a08231146104f9578063715018a61461053657806377e563571461054d5780637cb64759146105645761021a565b80632db11544116101a657806342842e0e1161017557806342842e0e14610421578063484b973c1461044a5780635c975abb146104665780636352211e146104915780636817c76c146104ce5761021a565b80632db11544146103ae57806339a0c6f9146103ca5780633ccfd60b146103f35780633f4ba83a1461040a5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806314be77931461031857806318160ddd1461034357806321ef2daa1461036e57806323b872dd146103855761021a565b806301ffc9a71461021f57806302ff68fe1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906134c8565b61081f565b604051610253919061389d565b60405180910390f35b34801561026857600080fd5b50610271610901565b60405161027e9190613836565b60405180910390f35b34801561029357600080fd5b5061029c610927565b6040516102a991906138b8565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061356b565b6109b9565b6040516102e69190613836565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061345b565b610a35565b005b34801561032457600080fd5b5061032d610b40565b60405161033a919061389d565b60405180910390f35b34801561034f57600080fd5b50610358610b53565b60405161036591906139da565b60405180910390f35b34801561037a57600080fd5b50610383610b6a565b005b34801561039157600080fd5b506103ac60048036038101906103a79190613345565b610c03565b005b6103c860048036038101906103c3919061356b565b610c13565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190613522565b610e38565b005b3480156103ff57600080fd5b50610408610ece565b005b34801561041657600080fd5b5061041f611032565b005b34801561042d57600080fd5b5061044860048036038101906104439190613345565b6110b8565b005b610464600480360381019061045f919061345b565b6110d8565b005b34801561047257600080fd5b5061047b611162565b604051610488919061389d565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b3919061356b565b611179565b6040516104c59190613836565b60405180910390f35b3480156104da57600080fd5b506104e361118f565b6040516104f091906139da565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906132d8565b6111b3565b60405161052d91906139da565b60405180910390f35b34801561054257600080fd5b5061054b611283565b005b34801561055957600080fd5b5061056261130b565b005b34801561057057600080fd5b5061058b6004803603810190610586919061349b565b6113a4565b005b34801561059957600080fd5b506105a261142a565b005b3480156105b057600080fd5b506105b96114b0565b6040516105c6919061389d565b60405180910390f35b3480156105db57600080fd5b506105e46114c7565b6040516105f19190613836565b60405180910390f35b34801561060657600080fd5b5061060f6114f1565b60405161061c91906138b8565b60405180910390f35b34801561063157600080fd5b5061064c6004803603810190610647919061341b565b611583565b005b34801561065a57600080fd5b506106636116fb565b6040516106709190613836565b60405180910390f35b34801561068557600080fd5b5061068e611721565b60405161069b91906139da565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190613398565b611726565b005b6106e760048036038101906106e29190613598565b6117a2565b005b3480156106f557600080fd5b506106fe611a43565b60405161070b91906139da565b60405180910390f35b34801561072057600080fd5b5061073b6004803603810190610736919061356b565b611a91565b60405161074891906138b8565b60405180910390f35b34801561075d57600080fd5b50610766611b30565b60405161077391906139da565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e919061356b565b611b54565b6040516107b091906139da565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190613305565b611b89565b6040516107ed919061389d565b60405180910390f35b34801561080257600080fd5b5061081d600480360381019061081891906132d8565b611c1d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fa57506108f982611d15565b5b9050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606002805461093690613c94565b80601f016020809104026020016040519081016040528092919081815260200182805461096290613c94565b80156109af5780601f10610984576101008083540402835291602001916109af565b820191906000526020600020905b81548152906001019060200180831161099257829003601f168201915b5050505050905090565b60006109c482611d7f565b6109fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4082611179565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac7611dcd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af95750610af781610af2611dcd565b611b89565b155b15610b30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3b838383611dd5565b505050565b600d60009054906101000a900460ff1681565b6000610b5d611e87565b6001546000540303905090565b610b72611dcd565b73ffffffffffffffffffffffffffffffffffffffff16610b906114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd9061397a565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b610c0e838383611e90565b505050565b610c1b611162565b15610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061393a565b60405180910390fd5b600d60009054906101000a900460ff1615610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca29061391a565b60405180910390fd5b600581610cb6611a43565b610cc09190613abf565b1115610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf8906139ba565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610d2b610b53565b610d359190613abf565b1115610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d9061395a565b60405180910390fd5b6000610d8182611b54565b905080341015610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd9061399a565b60405180910390fd5b81600e6000610dd3611dcd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e1c9190613abf565b92505081905550610e34610e2e611dcd565b83612381565b5050565b610e40611dcd565b73ffffffffffffffffffffffffffffffffffffffff16610e5e6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061397a565b60405180910390fd5b8060099080519060200190610eca92919061303e565b5050565b610ed6611dcd565b73ffffffffffffffffffffffffffffffffffffffff16610ef46114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f419061397a565b60405180910390fd5b60004790506000601482610f5e9190613b15565b90508082610f6c9190613ba0565b9150600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610fce57600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061102e57600080fd5b5050565b61103a611dcd565b73ffffffffffffffffffffffffffffffffffffffff166110586114c7565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a59061397a565b60405180910390fd5b6110b661239f565b565b6110d383838360405180602001604052806000815250611726565b505050565b6110e0611dcd565b73ffffffffffffffffffffffffffffffffffffffff166110fe6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b9061397a565b60405180910390fd5b61115e8282612381565b5050565b6000600860149054906101000a900460ff16905090565b600061118482612441565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61128b611dcd565b73ffffffffffffffffffffffffffffffffffffffff166112a96114c7565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f69061397a565b60405180910390fd5b61130960006126d0565b565b611313611dcd565b73ffffffffffffffffffffffffffffffffffffffff166113316114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e9061397a565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b6113ac611dcd565b73ffffffffffffffffffffffffffffffffffffffff166113ca6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611420576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114179061397a565b60405180910390fd5b80600c8190555050565b611432611dcd565b73ffffffffffffffffffffffffffffffffffffffff166114506114c7565b73ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d9061397a565b60405180910390fd5b6114ae612796565b565b6000600d60009054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461150090613c94565b80601f016020809104026020016040519081016040528092919081815260200182805461152c90613c94565b80156115795780601f1061154e57610100808354040283529160200191611579565b820191906000526020600020905b81548152906001019060200180831161155c57829003601f168201915b5050505050905090565b61158b611dcd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115fd611dcd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116aa611dcd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ef919061389d565b60405180910390a35050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b611731848484611e90565b6117508373ffffffffffffffffffffffffffffffffffffffff16612839565b801561176557506117638484848461285c565b155b1561179c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117aa611162565b156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e19061393a565b60405180910390fd5b8181600d60009054906101000a900460ff16156118b25760003360405160200161181491906137f7565b60405160208183030381529060405280519060200120905061187a838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836129bc565b6118b0576040517f5b0aa2ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6005856118bd611a43565b6118c79190613abf565b1115611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff906139ba565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000085611932610b53565b61193c9190613abf565b111561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119749061395a565b60405180910390fd5b600061198886611b54565b9050803410156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c49061399a565b60405180910390fd5b85600e60006119da611dcd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a239190613abf565b92505081905550611a3b611a35611dcd565b87612381565b505050505050565b6000600e6000611a51611dcd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6060611a9c82611d7f565b611ad2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611adc6129d3565b9050600081511415611afd5760405180602001604052806000815250611b28565b80611b0784612a65565b604051602001611b18929190613812565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f000000000000000000000000000000000000000000000000000000000000000082611b829190613b46565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c25611dcd565b73ffffffffffffffffffffffffffffffffffffffff16611c436114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c909061397a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906138fa565b60405180910390fd5b611d12816126d0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611d8a611e87565b11158015611d99575060005482105b8015611dc6575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611e9b82612441565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ec2611dcd565b73ffffffffffffffffffffffffffffffffffffffff161480611ef55750611ef48260000151611eef611dcd565b611b89565b5b80611f3a5750611f03611dcd565b73ffffffffffffffffffffffffffffffffffffffff16611f22846109b9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fdc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612043576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120508585856001612bc6565b6120606000848460000151611dd5565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612311576000548110156123105782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461237a8585856001612bcc565b5050505050565b61239b828260405180602001604052806000815250612bd2565b5050565b6123a7611162565b6123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd906138da565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61242a611dcd565b6040516124379190613836565b60405180910390a1565b6124496130c4565b600082905080612457611e87565b11158015612466575060005481105b15612699576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161269757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461257b5780925050506126cb565b5b60011561269657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126915780925050506126cb565b61257c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279e611162565b156127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d59061393a565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612822611dcd565b60405161282f9190613836565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612882611dcd565b8786866040518563ffffffff1660e01b81526004016128a49493929190613851565b602060405180830381600087803b1580156128be57600080fd5b505af19250505080156128ef57506040513d601f19601f820116820180604052508101906128ec91906134f5565b60015b612969573d806000811461291f576040519150601f19603f3d011682016040523d82523d6000602084013e612924565b606091505b50600081511415612961576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000826129c98584612be4565b1490509392505050565b6060600980546129e290613c94565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0e90613c94565b8015612a5b5780601f10612a3057610100808354040283529160200191612a5b565b820191906000526020600020905b815481529060010190602001808311612a3e57829003601f168201915b5050505050905090565b60606000821415612aad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bc1565b600082905060005b60008214612adf578080612ac890613cf7565b915050600a82612ad89190613b15565b9150612ab5565b60008167ffffffffffffffff811115612afb57612afa613e51565b5b6040519080825280601f01601f191660200182016040528015612b2d5781602001600182028036833780820191505090505b5090505b60008514612bba57600182612b469190613ba0565b9150600a85612b559190613d64565b6030612b619190613abf565b60f81b818381518110612b7757612b76613e22565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bb39190613b15565b9450612b31565b8093505050505b919050565b50505050565b50505050565b612bdf8383836001612c59565b505050565b60008082905060005b8451811015612c4e576000858281518110612c0b57612c0a613e22565b5b60200260200101519050808311612c2d57612c268382613027565b9250612c3a565b612c378184613027565b92505b508080612c4690613cf7565b915050612bed565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cc6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d0e6000868387612bc6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ed85750612ed78773ffffffffffffffffffffffffffffffffffffffff16612839565b5b15612f9e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f4d600088848060010195508861285c565b612f83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ede578260005414612f9957600080fd5b61300a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f9f575b8160008190555050506130206000868387612bcc565b5050505050565b600082600052816020526040600020905092915050565b82805461304a90613c94565b90600052602060002090601f01602090048101928261306c57600085556130b3565b82601f1061308557805160ff19168380011785556130b3565b828001600101855582156130b3579182015b828111156130b2578251825591602001919060010190613097565b5b5090506130c09190613107565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613120576000816000905550600101613108565b5090565b600061313761313284613a1a565b6139f5565b90508281526020810184848401111561315357613152613e8f565b5b61315e848285613c52565b509392505050565b600061317961317484613a4b565b6139f5565b90508281526020810184848401111561319557613194613e8f565b5b6131a0848285613c52565b509392505050565b6000813590506131b781614076565b92915050565b60008083601f8401126131d3576131d2613e85565b5b8235905067ffffffffffffffff8111156131f0576131ef613e80565b5b60208301915083602082028301111561320c5761320b613e8a565b5b9250929050565b6000813590506132228161408d565b92915050565b600081359050613237816140a4565b92915050565b60008135905061324c816140bb565b92915050565b600081519050613261816140bb565b92915050565b600082601f83011261327c5761327b613e85565b5b813561328c848260208601613124565b91505092915050565b600082601f8301126132aa576132a9613e85565b5b81356132ba848260208601613166565b91505092915050565b6000813590506132d2816140d2565b92915050565b6000602082840312156132ee576132ed613e99565b5b60006132fc848285016131a8565b91505092915050565b6000806040838503121561331c5761331b613e99565b5b600061332a858286016131a8565b925050602061333b858286016131a8565b9150509250929050565b60008060006060848603121561335e5761335d613e99565b5b600061336c868287016131a8565b935050602061337d868287016131a8565b925050604061338e868287016132c3565b9150509250925092565b600080600080608085870312156133b2576133b1613e99565b5b60006133c0878288016131a8565b94505060206133d1878288016131a8565b93505060406133e2878288016132c3565b925050606085013567ffffffffffffffff81111561340357613402613e94565b5b61340f87828801613267565b91505092959194509250565b6000806040838503121561343257613431613e99565b5b6000613440858286016131a8565b925050602061345185828601613213565b9150509250929050565b6000806040838503121561347257613471613e99565b5b6000613480858286016131a8565b9250506020613491858286016132c3565b9150509250929050565b6000602082840312156134b1576134b0613e99565b5b60006134bf84828501613228565b91505092915050565b6000602082840312156134de576134dd613e99565b5b60006134ec8482850161323d565b91505092915050565b60006020828403121561350b5761350a613e99565b5b600061351984828501613252565b91505092915050565b60006020828403121561353857613537613e99565b5b600082013567ffffffffffffffff81111561355657613555613e94565b5b61356284828501613295565b91505092915050565b60006020828403121561358157613580613e99565b5b600061358f848285016132c3565b91505092915050565b6000806000604084860312156135b1576135b0613e99565b5b60006135bf868287016132c3565b935050602084013567ffffffffffffffff8111156135e0576135df613e94565b5b6135ec868287016131bd565b92509250509250925092565b61360181613bd4565b82525050565b61361861361382613bd4565b613d40565b82525050565b61362781613be6565b82525050565b600061363882613a7c565b6136428185613a92565b9350613652818560208601613c61565b61365b81613e9e565b840191505092915050565b600061367182613a87565b61367b8185613aa3565b935061368b818560208601613c61565b61369481613e9e565b840191505092915050565b60006136aa82613a87565b6136b48185613ab4565b93506136c4818560208601613c61565b80840191505092915050565b60006136dd601483613aa3565b91506136e882613ebc565b602082019050919050565b6000613700602683613aa3565b915061370b82613ee5565b604082019050919050565b6000613723602883613aa3565b915061372e82613f34565b604082019050919050565b6000613746601083613aa3565b915061375182613f83565b602082019050919050565b6000613769602783613aa3565b915061377482613fac565b604082019050919050565b600061378c602083613aa3565b915061379782613ffb565b602082019050919050565b60006137af601883613aa3565b91506137ba82614024565b602082019050919050565b60006137d2601083613aa3565b91506137dd8261404d565b602082019050919050565b6137f181613c48565b82525050565b60006138038284613607565b60148201915081905092915050565b600061381e828561369f565b915061382a828461369f565b91508190509392505050565b600060208201905061384b60008301846135f8565b92915050565b600060808201905061386660008301876135f8565b61387360208301866135f8565b61388060408301856137e8565b8181036060830152613892818461362d565b905095945050505050565b60006020820190506138b2600083018461361e565b92915050565b600060208201905081810360008301526138d28184613666565b905092915050565b600060208201905081810360008301526138f3816136d0565b9050919050565b60006020820190508181036000830152613913816136f3565b9050919050565b6000602082019050818103600083015261393381613716565b9050919050565b6000602082019050818103600083015261395381613739565b9050919050565b600060208201905081810360008301526139738161375c565b9050919050565b600060208201905081810360008301526139938161377f565b9050919050565b600060208201905081810360008301526139b3816137a2565b9050919050565b600060208201905081810360008301526139d3816137c5565b9050919050565b60006020820190506139ef60008301846137e8565b92915050565b60006139ff613a10565b9050613a0b8282613cc6565b919050565b6000604051905090565b600067ffffffffffffffff821115613a3557613a34613e51565b5b613a3e82613e9e565b9050602081019050919050565b600067ffffffffffffffff821115613a6657613a65613e51565b5b613a6f82613e9e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613aca82613c48565b9150613ad583613c48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b0a57613b09613d95565b5b828201905092915050565b6000613b2082613c48565b9150613b2b83613c48565b925082613b3b57613b3a613dc4565b5b828204905092915050565b6000613b5182613c48565b9150613b5c83613c48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b9557613b94613d95565b5b828202905092915050565b6000613bab82613c48565b9150613bb683613c48565b925082821015613bc957613bc8613d95565b5b828203905092915050565b6000613bdf82613c28565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c7f578082015181840152602081019050613c64565b83811115613c8e576000848401525b50505050565b60006002820490506001821680613cac57607f821691505b60208210811415613cc057613cbf613df3565b5b50919050565b613ccf82613e9e565b810181811067ffffffffffffffff82111715613cee57613ced613e51565b5b80604052505050565b6000613d0282613c48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d3557613d34613d95565b5b600182019050919050565b6000613d4b82613d52565b9050919050565b6000613d5d82613eaf565b9050919050565b6000613d6f82613c48565b9150613d7a83613c48565b925082613d8a57613d89613dc4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f427579696e67206e6674206973206f6e6c7920617661696c61626c6520666f7260008201527f2070726976617465000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f74616c20737570706c792065786365656465642e20557365206c6573732060008201527f616d6f756e742e00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865727320746f206275790000000000000000600082015250565b7f596f752063616e74206279206e66742e00000000000000000000000000000000600082015250565b61407f81613bd4565b811461408a57600080fd5b50565b61409681613be6565b81146140a157600080fd5b50565b6140ad81613bf2565b81146140b857600080fd5b50565b6140c481613bfc565b81146140cf57600080fd5b50565b6140db81613c48565b81146140e657600080fd5b5056fea2646970667358221220ba9a0f6a2b4d79b464aaf971ae6fab4904b58ca59d9648281bf4cafa0b8be79864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000014d000000000000000000000000000000000000000000000000030d98d59a96000000000000000000000000000067c7d06ed1af133b96dee4399f249623e7f4e0870000000000000000000000000000000000000000000000000000000000000180901baba65a5a506a5d302b970af987658ed2b5bfe7a8831caa97dba2c31d619900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000015467261676d656e74656420436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000034652430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6d696e742e667261676d656e746564636f6c6c656374696f6e2e636f6d2f0000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063a7d6eb87116100ab578063c87b56dd1161006f578063c87b56dd14610714578063e2c7928114610751578063e75722301461077c578063e985e9c5146107b9578063f2fde38b146107f65761021a565b8063a7d6eb871461064e578063b01335be14610679578063b88d4fde146106a4578063b977fe55146106cd578063c6a022d7146106e95761021a565b80638456cb59116100f25780638456cb591461058d5780638c3c4b34146105a45780638da5cb5b146105cf57806395d89b41146105fa578063a22cb465146106255761021a565b806370a08231146104f9578063715018a61461053657806377e563571461054d5780637cb64759146105645761021a565b80632db11544116101a657806342842e0e1161017557806342842e0e14610421578063484b973c1461044a5780635c975abb146104665780636352211e146104915780636817c76c146104ce5761021a565b80632db11544146103ae57806339a0c6f9146103ca5780633ccfd60b146103f35780633f4ba83a1461040a5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806314be77931461031857806318160ddd1461034357806321ef2daa1461036e57806323b872dd146103855761021a565b806301ffc9a71461021f57806302ff68fe1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906134c8565b61081f565b604051610253919061389d565b60405180910390f35b34801561026857600080fd5b50610271610901565b60405161027e9190613836565b60405180910390f35b34801561029357600080fd5b5061029c610927565b6040516102a991906138b8565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061356b565b6109b9565b6040516102e69190613836565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061345b565b610a35565b005b34801561032457600080fd5b5061032d610b40565b60405161033a919061389d565b60405180910390f35b34801561034f57600080fd5b50610358610b53565b60405161036591906139da565b60405180910390f35b34801561037a57600080fd5b50610383610b6a565b005b34801561039157600080fd5b506103ac60048036038101906103a79190613345565b610c03565b005b6103c860048036038101906103c3919061356b565b610c13565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190613522565b610e38565b005b3480156103ff57600080fd5b50610408610ece565b005b34801561041657600080fd5b5061041f611032565b005b34801561042d57600080fd5b5061044860048036038101906104439190613345565b6110b8565b005b610464600480360381019061045f919061345b565b6110d8565b005b34801561047257600080fd5b5061047b611162565b604051610488919061389d565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b3919061356b565b611179565b6040516104c59190613836565b60405180910390f35b3480156104da57600080fd5b506104e361118f565b6040516104f091906139da565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b91906132d8565b6111b3565b60405161052d91906139da565b60405180910390f35b34801561054257600080fd5b5061054b611283565b005b34801561055957600080fd5b5061056261130b565b005b34801561057057600080fd5b5061058b6004803603810190610586919061349b565b6113a4565b005b34801561059957600080fd5b506105a261142a565b005b3480156105b057600080fd5b506105b96114b0565b6040516105c6919061389d565b60405180910390f35b3480156105db57600080fd5b506105e46114c7565b6040516105f19190613836565b60405180910390f35b34801561060657600080fd5b5061060f6114f1565b60405161061c91906138b8565b60405180910390f35b34801561063157600080fd5b5061064c6004803603810190610647919061341b565b611583565b005b34801561065a57600080fd5b506106636116fb565b6040516106709190613836565b60405180910390f35b34801561068557600080fd5b5061068e611721565b60405161069b91906139da565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c69190613398565b611726565b005b6106e760048036038101906106e29190613598565b6117a2565b005b3480156106f557600080fd5b506106fe611a43565b60405161070b91906139da565b60405180910390f35b34801561072057600080fd5b5061073b6004803603810190610736919061356b565b611a91565b60405161074891906138b8565b60405180910390f35b34801561075d57600080fd5b50610766611b30565b60405161077391906139da565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e919061356b565b611b54565b6040516107b091906139da565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db9190613305565b611b89565b6040516107ed919061389d565b60405180910390f35b34801561080257600080fd5b5061081d600480360381019061081891906132d8565b611c1d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fa57506108f982611d15565b5b9050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606002805461093690613c94565b80601f016020809104026020016040519081016040528092919081815260200182805461096290613c94565b80156109af5780601f10610984576101008083540402835291602001916109af565b820191906000526020600020905b81548152906001019060200180831161099257829003601f168201915b5050505050905090565b60006109c482611d7f565b6109fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a4082611179565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa8576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac7611dcd565b73ffffffffffffffffffffffffffffffffffffffff1614158015610af95750610af781610af2611dcd565b611b89565b155b15610b30576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3b838383611dd5565b505050565b600d60009054906101000a900460ff1681565b6000610b5d611e87565b6001546000540303905090565b610b72611dcd565b73ffffffffffffffffffffffffffffffffffffffff16610b906114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdd9061397a565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b610c0e838383611e90565b505050565b610c1b611162565b15610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c529061393a565b60405180910390fd5b600d60009054906101000a900460ff1615610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca29061391a565b60405180910390fd5b600581610cb6611a43565b610cc09190613abf565b1115610d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf8906139ba565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d81610d2b610b53565b610d359190613abf565b1115610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d9061395a565b60405180910390fd5b6000610d8182611b54565b905080341015610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd9061399a565b60405180910390fd5b81600e6000610dd3611dcd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e1c9190613abf565b92505081905550610e34610e2e611dcd565b83612381565b5050565b610e40611dcd565b73ffffffffffffffffffffffffffffffffffffffff16610e5e6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061397a565b60405180910390fd5b8060099080519060200190610eca92919061303e565b5050565b610ed6611dcd565b73ffffffffffffffffffffffffffffffffffffffff16610ef46114c7565b73ffffffffffffffffffffffffffffffffffffffff1614610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f419061397a565b60405180910390fd5b60004790506000601482610f5e9190613b15565b90508082610f6c9190613ba0565b9150600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610fce57600080fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505061102e57600080fd5b5050565b61103a611dcd565b73ffffffffffffffffffffffffffffffffffffffff166110586114c7565b73ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a59061397a565b60405180910390fd5b6110b661239f565b565b6110d383838360405180602001604052806000815250611726565b505050565b6110e0611dcd565b73ffffffffffffffffffffffffffffffffffffffff166110fe6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b9061397a565b60405180910390fd5b61115e8282612381565b5050565b6000600860149054906101000a900460ff16905090565b600061118482612441565b600001519050919050565b7f000000000000000000000000000000000000000000000000030d98d59a96000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61128b611dcd565b73ffffffffffffffffffffffffffffffffffffffff166112a96114c7565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f69061397a565b60405180910390fd5b61130960006126d0565b565b611313611dcd565b73ffffffffffffffffffffffffffffffffffffffff166113316114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e9061397a565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b6113ac611dcd565b73ffffffffffffffffffffffffffffffffffffffff166113ca6114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611420576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114179061397a565b60405180910390fd5b80600c8190555050565b611432611dcd565b73ffffffffffffffffffffffffffffffffffffffff166114506114c7565b73ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d9061397a565b60405180910390fd5b6114ae612796565b565b6000600d60009054906101000a900460ff16905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461150090613c94565b80601f016020809104026020016040519081016040528092919081815260200182805461152c90613c94565b80156115795780601f1061154e57610100808354040283529160200191611579565b820191906000526020600020905b81548152906001019060200180831161155c57829003601f168201915b5050505050905090565b61158b611dcd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115fd611dcd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116aa611dcd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ef919061389d565b60405180910390a35050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b611731848484611e90565b6117508373ffffffffffffffffffffffffffffffffffffffff16612839565b801561176557506117638484848461285c565b155b1561179c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6117aa611162565b156117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e19061393a565b60405180910390fd5b8181600d60009054906101000a900460ff16156118b25760003360405160200161181491906137f7565b60405160208183030381529060405280519060200120905061187a838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836129bc565b6118b0576040517f5b0aa2ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6005856118bd611a43565b6118c79190613abf565b1115611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff906139ba565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000014d85611932610b53565b61193c9190613abf565b111561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119749061395a565b60405180910390fd5b600061198886611b54565b9050803410156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c49061399a565b60405180910390fd5b85600e60006119da611dcd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a239190613abf565b92505081905550611a3b611a35611dcd565b87612381565b505050505050565b6000600e6000611a51611dcd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6060611a9c82611d7f565b611ad2576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611adc6129d3565b9050600081511415611afd5760405180602001604052806000815250611b28565b80611b0784612a65565b604051602001611b18929190613812565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000014d81565b60007f000000000000000000000000000000000000000000000000030d98d59a96000082611b829190613b46565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c25611dcd565b73ffffffffffffffffffffffffffffffffffffffff16611c436114c7565b73ffffffffffffffffffffffffffffffffffffffff1614611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c909061397a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d00906138fa565b60405180910390fd5b611d12816126d0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611d8a611e87565b11158015611d99575060005482105b8015611dc6575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611e9b82612441565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ec2611dcd565b73ffffffffffffffffffffffffffffffffffffffff161480611ef55750611ef48260000151611eef611dcd565b611b89565b5b80611f3a5750611f03611dcd565b73ffffffffffffffffffffffffffffffffffffffff16611f22846109b9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611fdc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612043576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120508585856001612bc6565b6120606000848460000151611dd5565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612311576000548110156123105782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461237a8585856001612bcc565b5050505050565b61239b828260405180602001604052806000815250612bd2565b5050565b6123a7611162565b6123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd906138da565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61242a611dcd565b6040516124379190613836565b60405180910390a1565b6124496130c4565b600082905080612457611e87565b11158015612466575060005481105b15612699576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161269757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461257b5780925050506126cb565b5b60011561269657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126915780925050506126cb565b61257c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61279e611162565b156127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d59061393a565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612822611dcd565b60405161282f9190613836565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612882611dcd565b8786866040518563ffffffff1660e01b81526004016128a49493929190613851565b602060405180830381600087803b1580156128be57600080fd5b505af19250505080156128ef57506040513d601f19601f820116820180604052508101906128ec91906134f5565b60015b612969573d806000811461291f576040519150601f19603f3d011682016040523d82523d6000602084013e612924565b606091505b50600081511415612961576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000826129c98584612be4565b1490509392505050565b6060600980546129e290613c94565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0e90613c94565b8015612a5b5780601f10612a3057610100808354040283529160200191612a5b565b820191906000526020600020905b815481529060010190602001808311612a3e57829003601f168201915b5050505050905090565b60606000821415612aad576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bc1565b600082905060005b60008214612adf578080612ac890613cf7565b915050600a82612ad89190613b15565b9150612ab5565b60008167ffffffffffffffff811115612afb57612afa613e51565b5b6040519080825280601f01601f191660200182016040528015612b2d5781602001600182028036833780820191505090505b5090505b60008514612bba57600182612b469190613ba0565b9150600a85612b559190613d64565b6030612b619190613abf565b60f81b818381518110612b7757612b76613e22565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bb39190613b15565b9450612b31565b8093505050505b919050565b50505050565b50505050565b612bdf8383836001612c59565b505050565b60008082905060005b8451811015612c4e576000858281518110612c0b57612c0a613e22565b5b60200260200101519050808311612c2d57612c268382613027565b9250612c3a565b612c378184613027565b92505b508080612c4690613cf7565b915050612bed565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612cc6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612d01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d0e6000868387612bc6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612ed85750612ed78773ffffffffffffffffffffffffffffffffffffffff16612839565b5b15612f9e575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f4d600088848060010195508861285c565b612f83576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612ede578260005414612f9957600080fd5b61300a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612f9f575b8160008190555050506130206000868387612bcc565b5050505050565b600082600052816020526040600020905092915050565b82805461304a90613c94565b90600052602060002090601f01602090048101928261306c57600085556130b3565b82601f1061308557805160ff19168380011785556130b3565b828001600101855582156130b3579182015b828111156130b2578251825591602001919060010190613097565b5b5090506130c09190613107565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613120576000816000905550600101613108565b5090565b600061313761313284613a1a565b6139f5565b90508281526020810184848401111561315357613152613e8f565b5b61315e848285613c52565b509392505050565b600061317961317484613a4b565b6139f5565b90508281526020810184848401111561319557613194613e8f565b5b6131a0848285613c52565b509392505050565b6000813590506131b781614076565b92915050565b60008083601f8401126131d3576131d2613e85565b5b8235905067ffffffffffffffff8111156131f0576131ef613e80565b5b60208301915083602082028301111561320c5761320b613e8a565b5b9250929050565b6000813590506132228161408d565b92915050565b600081359050613237816140a4565b92915050565b60008135905061324c816140bb565b92915050565b600081519050613261816140bb565b92915050565b600082601f83011261327c5761327b613e85565b5b813561328c848260208601613124565b91505092915050565b600082601f8301126132aa576132a9613e85565b5b81356132ba848260208601613166565b91505092915050565b6000813590506132d2816140d2565b92915050565b6000602082840312156132ee576132ed613e99565b5b60006132fc848285016131a8565b91505092915050565b6000806040838503121561331c5761331b613e99565b5b600061332a858286016131a8565b925050602061333b858286016131a8565b9150509250929050565b60008060006060848603121561335e5761335d613e99565b5b600061336c868287016131a8565b935050602061337d868287016131a8565b925050604061338e868287016132c3565b9150509250925092565b600080600080608085870312156133b2576133b1613e99565b5b60006133c0878288016131a8565b94505060206133d1878288016131a8565b93505060406133e2878288016132c3565b925050606085013567ffffffffffffffff81111561340357613402613e94565b5b61340f87828801613267565b91505092959194509250565b6000806040838503121561343257613431613e99565b5b6000613440858286016131a8565b925050602061345185828601613213565b9150509250929050565b6000806040838503121561347257613471613e99565b5b6000613480858286016131a8565b9250506020613491858286016132c3565b9150509250929050565b6000602082840312156134b1576134b0613e99565b5b60006134bf84828501613228565b91505092915050565b6000602082840312156134de576134dd613e99565b5b60006134ec8482850161323d565b91505092915050565b60006020828403121561350b5761350a613e99565b5b600061351984828501613252565b91505092915050565b60006020828403121561353857613537613e99565b5b600082013567ffffffffffffffff81111561355657613555613e94565b5b61356284828501613295565b91505092915050565b60006020828403121561358157613580613e99565b5b600061358f848285016132c3565b91505092915050565b6000806000604084860312156135b1576135b0613e99565b5b60006135bf868287016132c3565b935050602084013567ffffffffffffffff8111156135e0576135df613e94565b5b6135ec868287016131bd565b92509250509250925092565b61360181613bd4565b82525050565b61361861361382613bd4565b613d40565b82525050565b61362781613be6565b82525050565b600061363882613a7c565b6136428185613a92565b9350613652818560208601613c61565b61365b81613e9e565b840191505092915050565b600061367182613a87565b61367b8185613aa3565b935061368b818560208601613c61565b61369481613e9e565b840191505092915050565b60006136aa82613a87565b6136b48185613ab4565b93506136c4818560208601613c61565b80840191505092915050565b60006136dd601483613aa3565b91506136e882613ebc565b602082019050919050565b6000613700602683613aa3565b915061370b82613ee5565b604082019050919050565b6000613723602883613aa3565b915061372e82613f34565b604082019050919050565b6000613746601083613aa3565b915061375182613f83565b602082019050919050565b6000613769602783613aa3565b915061377482613fac565b604082019050919050565b600061378c602083613aa3565b915061379782613ffb565b602082019050919050565b60006137af601883613aa3565b91506137ba82614024565b602082019050919050565b60006137d2601083613aa3565b91506137dd8261404d565b602082019050919050565b6137f181613c48565b82525050565b60006138038284613607565b60148201915081905092915050565b600061381e828561369f565b915061382a828461369f565b91508190509392505050565b600060208201905061384b60008301846135f8565b92915050565b600060808201905061386660008301876135f8565b61387360208301866135f8565b61388060408301856137e8565b8181036060830152613892818461362d565b905095945050505050565b60006020820190506138b2600083018461361e565b92915050565b600060208201905081810360008301526138d28184613666565b905092915050565b600060208201905081810360008301526138f3816136d0565b9050919050565b60006020820190508181036000830152613913816136f3565b9050919050565b6000602082019050818103600083015261393381613716565b9050919050565b6000602082019050818103600083015261395381613739565b9050919050565b600060208201905081810360008301526139738161375c565b9050919050565b600060208201905081810360008301526139938161377f565b9050919050565b600060208201905081810360008301526139b3816137a2565b9050919050565b600060208201905081810360008301526139d3816137c5565b9050919050565b60006020820190506139ef60008301846137e8565b92915050565b60006139ff613a10565b9050613a0b8282613cc6565b919050565b6000604051905090565b600067ffffffffffffffff821115613a3557613a34613e51565b5b613a3e82613e9e565b9050602081019050919050565b600067ffffffffffffffff821115613a6657613a65613e51565b5b613a6f82613e9e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613aca82613c48565b9150613ad583613c48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b0a57613b09613d95565b5b828201905092915050565b6000613b2082613c48565b9150613b2b83613c48565b925082613b3b57613b3a613dc4565b5b828204905092915050565b6000613b5182613c48565b9150613b5c83613c48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b9557613b94613d95565b5b828202905092915050565b6000613bab82613c48565b9150613bb683613c48565b925082821015613bc957613bc8613d95565b5b828203905092915050565b6000613bdf82613c28565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c7f578082015181840152602081019050613c64565b83811115613c8e576000848401525b50505050565b60006002820490506001821680613cac57607f821691505b60208210811415613cc057613cbf613df3565b5b50919050565b613ccf82613e9e565b810181811067ffffffffffffffff82111715613cee57613ced613e51565b5b80604052505050565b6000613d0282613c48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d3557613d34613d95565b5b600182019050919050565b6000613d4b82613d52565b9050919050565b6000613d5d82613eaf565b9050919050565b6000613d6f82613c48565b9150613d7a83613c48565b925082613d8a57613d89613dc4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f427579696e67206e6674206973206f6e6c7920617661696c61626c6520666f7260008201527f2070726976617465000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f74616c20737570706c792065786365656465642e20557365206c6573732060008201527f616d6f756e742e00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865727320746f206275790000000000000000600082015250565b7f596f752063616e74206279206e66742e00000000000000000000000000000000600082015250565b61407f81613bd4565b811461408a57600080fd5b50565b61409681613be6565b81146140a157600080fd5b50565b6140ad81613bf2565b81146140b857600080fd5b50565b6140c481613bfc565b81146140cf57600080fd5b50565b6140db81613c48565b81146140e657600080fd5b5056fea2646970667358221220ba9a0f6a2b4d79b464aaf971ae6fab4904b58ca59d9648281bf4cafa0b8be79864736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000014d000000000000000000000000000000000000000000000000030d98d59a96000000000000000000000000000067c7d06ed1af133b96dee4399f249623e7f4e0870000000000000000000000000000000000000000000000000000000000000180901baba65a5a506a5d302b970af987658ed2b5bfe7a8831caa97dba2c31d619900000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000015467261676d656e74656420436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000034652430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f6d696e742e667261676d656e746564636f6c6c656374696f6e2e636f6d2f0000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Fragmented Collection
Arg [1] : _symbol (string): FRC
Arg [2] : _totalSupply (uint256): 333
Arg [3] : _mintPrice (uint256): 220000000000000000
Arg [4] : wallet_ (address): 0x67c7d06ED1AF133b96deE4399F249623E7F4E087
Arg [5] : baseURIAddress_ (string): https://mint.fragmentedcollection.com/
Arg [6] : merkleRoot (bytes32): 0x901baba65a5a506a5d302b970af987658ed2b5bfe7a8831caa97dba2c31d6199
Arg [7] : isPrivate (bool): True
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 000000000000000000000000000000000000000000000000000000000000014d
Arg [3] : 000000000000000000000000000000000000000000000000030d98d59a960000
Arg [4] : 00000000000000000000000067c7d06ed1af133b96dee4399f249623e7f4e087
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [6] : 901baba65a5a506a5d302b970af987658ed2b5bfe7a8831caa97dba2c31d6199
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [9] : 467261676d656e74656420436f6c6c656374696f6e0000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 4652430000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [13] : 68747470733a2f2f6d696e742e667261676d656e746564636f6c6c656374696f
Arg [14] : 6e2e636f6d2f0000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.